Skip to content

Releases: owine/radarr-go

Radarr Go v0.10.0-beta.1

02 Sep 19:19
b7285d6
Compare
Choose a tag to compare
Pre-release

Radarr Go v0.10.0-beta.1

🚀 Release Information

  • Version: v0.10.0-beta.1
  • Build Date: 2025-09-02_20:04:46
  • Commit SHA: b5a47b42c161
  • Release Type: Pre-release
  • Versioning Strategy: Semantic Versioning 2.0.0 (Pre-1.0 phase: breaking changes allowed in minor versions) - Beta release (feature-complete, focused on stability)
  • API Compatibility: Radarr v3 (100% compatible)

🐳 Docker Images

📦 Container Registry

  • Registry: ghcr.io
  • Repository: owine/radarr-go
  • Image Digest: sha256:3724d38f35769d5f487b0bdc75344f3ab3f4a0f8d4a8e09cbf5e2c6943967921

🏷️ Available Tags

The following tags are available for this release:

ghcr.io/owine/radarr-go:v0.10.0-beta.1
ghcr.io/owine/radarr-go:v0.10.0-beta.1-multi-db
ghcr.io/owine/radarr-go:v0.10.0-beta.1-postgres
ghcr.io/owine/radarr-go:v0.10.0-beta.1-mariadb
ghcr.io/owine/radarr-go:testing
ghcr.io/owine/radarr-go:testing-v0.10.0-beta.1
ghcr.io/owine/radarr-go:prerelease
ghcr.io/owine/radarr-go:beta
ghcr.io/owine/radarr-go:testing-beta

🔒 Security & Verification

Image Digest Pinning (Recommended for Production)

For maximum security, pin to the specific image digest:

# Pin to exact digest (immutable)
docker pull ghcr.io/owine/radarr-go@sha256:3724d38f35769d5f487b0bdc75344f3ab3f4a0f8d4a8e09cbf5e2c6943967921
docker run -d -p 7878:7878 ghcr.io/owine/radarr-go@sha256:3724d38f35769d5f487b0bdc75344f3ab3f4a0f8d4a8e09cbf5e2c6943967921

Tag-based Usage (Convenient for Development)

# Latest stable release
docker pull ghcr.io/owine/radarr-go:latest
docker run -d -p 7878:7878 ghcr.io/owine/radarr-go:latest

# Specific version
docker pull ghcr.io/owine/radarr-go:v0.10.0-beta.1
docker run -d -p 7878:7878 ghcr.io/owine/radarr-go:v0.10.0-beta.1

# Database-specific variants
docker pull ghcr.io/owine/radarr-go:v0.10.0-beta.1-postgres    # Optimized for PostgreSQL
docker pull ghcr.io/owine/radarr-go:v0.10.0-beta.1-mariadb     # Optimized for MariaDB
docker pull ghcr.io/owine/radarr-go:v0.10.0-beta.1-multi-db    # Supports both databases

🎯 Production Deployment Examples

Docker Compose with Digest Pinning

services:
  radarr:
    image: ghcr.io/owine/radarr-go@sha256:3724d38f35769d5f487b0bdc75344f3ab3f4a0f8d4a8e09cbf5e2c6943967921
    ports:
      - "7878:7878"
    volumes:
      - ./data:/data
    environment:
      - RADARR_DATABASE_TYPE=postgres
    restart: unless-stopped

Kubernetes Deployment with Digest Pinning

apiVersion: apps/v1
kind: Deployment
metadata:
  name: radarr
spec:
  template:
    spec:
      containers:
      - name: radarr
        image: ghcr.io/owine/radarr-go@sha256:3724d38f35769d5f487b0bdc75344f3ab3f4a0f8d4a8e09cbf5e2c6943967921
        ports:
        - containerPort: 7878

🔍 Image Verification

Verify the image authenticity using cosign (when available):

# Verify image signature (if signed)
cosign verify ghcr.io/owine/radarr-go:v0.10.0-beta.1

# Verify SBOM attestation
cosign verify-attestation --type spdxjson ghcr.io/owine/radarr-go:v0.10.0-beta.1

📦 Binary Downloads

Download pre-compiled binaries for your platform:

Platform Architecture Download

🔐 Binary Verification

Each binary includes a SHA256 checksum for verification:

# Example: Verify Linux amd64 binary
wget https://github.com/owine/radarr-go/releases/download/v0.10.0-beta.1/radarr-v0.10.0-beta.1-linux-amd64.tar.gz
wget https://github.com/owine/radarr-go/releases/download/v0.10.0-beta.1/radarr-v0.10.0-beta.1-linux-amd64.tar.gz.sha256
sha256sum -c radarr-v0.10.0-beta.1-linux-amd64.tar.gz.sha256

🏗️ Build Information

This release was built using our optimized CI/CD pipeline:

  • 85% cost reduction through consolidated runners
  • 60% speed improvement via parallel compilation
  • Multi-platform support: linux/amd64, linux/arm64, darwin/amd64, darwin/arm64, windows/amd64, freebsd/amd64, freebsd/arm64
  • Enhanced security: SBOM generation and provenance attestation

📋 Full Tag Reference

Production Tags (Full Releases Only)

  • latest - Always points to the latest stable release
  • release - Alias for latest stable release
  • stable - Long-term stable tag
  • v0.10.0-beta.1 - Specific version tag (immutable)

Database-Specific Tags

  • postgres - Optimized configuration for PostgreSQL
  • mariadb - Optimized configuration for MariaDB
  • multi-db - Universal configuration supporting both databases

Development Tags (Pre-releases Only)

  • testing - Latest pre-release for testing
  • prerelease - Alias for latest pre-release

🔒 Security Note: For production deployments, always use digest pinning (@sha256:3724d38f35769d5f487b0bdc75344f3ab3f4a0f8d4a8e09cbf5e2c6943967921) instead of tags for immutable, secure deployments.

📖 Documentation: Visit our documentation for detailed setup and configuration guides.