feat(container-image): update ghcr.io/foxxmd/multi-scrobbler ( 0.14.2 → 0.15.0 ) - #1523
Merged
Merged
Conversation
Contributor
Author
Kustomization diff@@ spec.values.controllers.multi-scrobbler.containers.app.image.tag @@
# helm.toolkit.fluxcd.io/v2/HelmRelease/media/multi-scrobbler
! ± value change
- 0.14.2@sha256:b116e68f1937d5cb0edad0ff8d7af3a1eee56b979529e098fbc7c196adde5d39
+ 0.15.0@sha256:23a9620b1ae83e1dbba7168f0cf1ce65dc4ed125a029b5a004ec9fa0e83b5b93
HelmRelease diff@@ spec.template.spec.containers.app.image @@
# apps/v1/Deployment/media/multi-scrobbler
! ± value change
- ghcr.io/foxxmd/multi-scrobbler:0.14.2@sha256:b116e68f1937d5cb0edad0ff8d7af3a1eee56b979529e098fbc7c196adde5d39
+ ghcr.io/foxxmd/multi-scrobbler:0.15.0@sha256:23a9620b1ae83e1dbba7168f0cf1ce65dc4ed125a029b5a004ec9fa0e83b5b93
Diff created by flate — Workflow run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.14.2→0.15.0Release Notes
FoxxMD/multi-scrobbler (ghcr.io/foxxmd/multi-scrobbler)
v0.15.0Compare Source
What's New?
Apple Music Source
Thanks to the efforts of @Exerra , Apple Music is now implemented as a Source for Multi-Scrobbler!
Exerra, the primary developer of
node-musickit-api, discovered that the API access required for MS to monitor listening activity only needs credentials that can be acquired from the browser of a logged in user. Critically, this bypasses the long-standing assumption that a paid apple developer account was required to access these APIs.Exerra also contributed the entire Apple Music Source implementation to Multi-Scrobbler 👑 If you end up using this Source please consider sponsoring them as a thank you for all this hard work!
Improved Subsonic Playback Reporting
The OpenSubsonic API recently finalized a new spec for Playback Reporting that, when implemented by both the client and server, enables realtime player position reporting/states. This allows MS to track Subsonic players with the same level of accuracy as Spotfy, Jellyfin, and other first-class Sources!
Huge thanks to @JannisPohle for the initial PR on cleaning up subsonic players ( #640 ) but then stepping up to also implement this playback functionality ( #590 ) 👑
As emphasized above, this new functionality requires that both the Subsonic server and the client you use to play music from that server both implement Playback Reporting. An informational tooltip in the UI Preview will indicate if enhanced reporting is available.
Data Directories Standardization
Previously, all persistent data was stored in the directory defined by the
CONFIG_DIRENV, or defaulted to{projectDir}/config.Now, these locations are configurable by data type and fallback to OS-standard locations:
config.json,jellyfin.json, etc...) usesCONFIG_DIRENV or OS-standard locations like$XDG_CONFIG_HOME/multi-scrobblerms.db, logs folder, stored credentials, etc...) usesDATA_DIRENV or OS-standard locations like$XDG_DATA_HOME/multi-scrobblerUpgrading
If you are using a Docker installation with default volume mounting to
/configthen no change is required. For backwards compatibility, the docker image installation defaults both of these ENVs to/config.For users using the nodejs/local installation, you will likely want to explicitly set both ENVs for your start command. For instance, if you are currently storing everything in the
configfolder within the cloned repository and the working directory is also the repository folder then add these ENVs to the beginning of your command:See the Config and Data Directories section in the installation docs to find the OS-standard locations MS will use when these ENVs are not set.
Monitoring Behavior
In preparation for wider usage, the feature known as "Should Scrobble Behavior" has been renamed to "Monitoring Behavior". The configuration naming has been changed to reflect this.
Upgrading
If you are an Icecast or Azuracast user who has
systemScrobblein your File/AIO configoptions, rename this property toautoMonitor. The behavior for this property remains the same.Example
Old:
[ { "name": "Station 1", "id": "myIceStation1", "data": { "url": "http://myIcecast.com/radio" }, "options": { "systemScrobble": true } } ]New:
[ { "name": "Station 1", "id": "myIceStation1", "data": { "url": "http://myIcecast.com/radio" }, "options": { "autoMonitor": true } } ]Config Improvements
Internally, config has undergone a complete overhaul and is now entirely built using Zod. This is a huge improvement over the hacky typescript-types-to-json-schema generator that was being used because the config shape now fully dictates validation, rather than there being a reflection middle step. It additionally removes the
ajvlibrary and saves almost 30MB in the docker image when uncompressed.With the overhaul, a simplification of the config reduced development complexity and made the config explorer in docs clearer, at the expensive of a few, potential breaking changes.
Upgrading
User Stage Transforms
If you have User Stage transforms and they do not already have a
"type": "user"property, you need to now add this property or validation will throw an error.Example
Previous User Transform config could be untyped like
Now, all user transforms must be typed like all other transforms or config parsing will throw an error:
Removed Deprecated Cache Config
Cache Configuration was simplified in 0.14.0 but using pre-0.14.0 configuration only caused a deprecation warning. Now, these deprecations have been removed and using the old configuration will cause an error.
Node Native Runtime
Multi-Scrobbler has been refactored to remove the dependency on tsx as the runtime. Now, MS uses Nodejs' type stripping so that it can directly run the source typescript files without needing the typescript runtime or any compilation steps.
This reduces packaging, tooling, and local run complexity:
npmscripts for running MSIf you are currently running MS without using
npm run startand have questions about how to migrate please open a discussion.UI Preview Improvements
The New UI Preview introduced in 0.14.2 has seen several rounds of refinement thanks to user feedback. It is still in "read-only" mode for this release but the next release will begin to introduce write functionality. Check out the preview on your instance:
and share your feedback in the github issue!
Other Changelog Highlights
🐛 Bug Fixes
🧪 Testing
Changes Since RC1
⛰️ Features
🐛 Bug Fixes
📚 Documentation
Configuration
📅 Schedule: (in timezone America/New_York)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Mend Renovate.