github aquantumofdonuts/mixarr v1.1.2

latest releases: v2.1.5, v2.1.4, v2.1.3...
3 months ago

v1.1.2 Release Notes

Docker Image:

docker pull ghcr.io/aquantumofdonuts/mixarr:latest

Docker Usage:

docker run -d \
  --name mixarr \
  -p 3443:443 \
  -v ~/mixarr-data:/data \
  -e SESSION_SECRET="$(openssl rand -hex 32)" \
  -e FRONTEND_URL="https://YOUR-SERVER-IP:3443" \
  -e BASE_URL="https://YOUR-SERVER-IP:3443" \
  ghcr.io/aquantumofdonuts/mixarr:latest

Bugfixes

  1. Fixed subscription scheduler bug

    • Issue: subscription schedules other than "manual" failed to save
    • Fix: Corrected schedule handling logic in subscription schema and routes
  2. Fixed failing Spotify subscription types

    • Issue: Some Spotify Playlist and Category subscription types were failing due to incorrect field validation
    • Fix: Updated the subscription schema to correctly validate Spotify Playlist and Category subscription fields

    NOTE: Failing subscriptions need to be removed and re-added after the update.

  3. Fixed Issue #16 "Spotify Spotify Subscription - Please fill in all required fields"

    • Issue: Spotify subscriptions were failing with a "Please fill in all required fields" error
    • Fix: Corrected validation logic for Spotify subscription fields

Upgrade Instructions

From Docker Compose

cd mixarr
git fetch --tags
git checkout v1.1.2
docker compose up -d --build

From Docker Run

docker pull ghcr.io/aquantumofdonuts/mixarr:v1.1.2
docker stop mixarr
docker rm mixarr
docker run -d \
  --name mixarr \
  -p 3443:443 \
  -v ~/mixarr-data:/data \
  -e SESSION_SECRET="your-existing-secret" \
  -e FRONTEND_URL="https://YOUR-SERVER-IP:3443" \
  -e BASE_URL="https://YOUR-SERVER-IP:3443" \
  ghcr.io/aquantumofdonuts/mixarr:v1.1.2

Full Changelog

See v1.0.0...v1.1.2

Don't miss a new mixarr release

NewReleases is sending notifications on new releases.