chore(deps): update docker.io/deluan/navidrome docker tag to v0.60.3#231
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update docker.io/deluan/navidrome docker tag to v0.60.3#231renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
630e6dc to
03caeb2
Compare
03caeb2 to
6dd5519
Compare
6dd5519 to
38fd6a3
Compare
38fd6a3 to
fe665ce
Compare
fe665ce to
0c16791
Compare
0c16791 to
1c03d5c
Compare
a51a71d to
1c03d5c
Compare
1c03d5c to
98383f0
Compare
98383f0 to
49ad9cd
Compare
67648b2 to
1625530
Compare
1625530 to
99fcfef
Compare
99fcfef to
3df1004
Compare
3df1004 to
d9951ba
Compare
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.54.5→0.60.3Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
navidrome/navidrome (docker.io/deluan/navidrome)
v0.60.3Compare Source
Changelog
New Features
34c6f12: feat(server): add explicit status support in smart playlists (#5031) (@kgarner7)Bug fixes
408aa78: fix(scanner): log warning when metadata extraction fails (@deluan)ed79a88: fix(scanner): pass filename hint to gotaglib's OpenStream for format detection (#5012) (@deluan)fd09ca1: fix(scanner): resolve data race on conf.Server access in getScanner (@deluan)0a47228: fix(subsonic): validate JSONP callback parameter (@deluan)eb9ebc3: fix(ui): add missing keys in Danish translation (#5011) (@denisarissa)62f9c3a: fix: linux service should restart when upgrading (#5001) (@mintsoft)e05a7e2: fix: prevent data race on conf.Server during cleanup in e2e tests (@deluan)bee0305: fix: split reflex -R flags to preserve directory exclusion optimization (@deluan)Other work
302d99a: chore(deps): update dependencies in go.mod and go.sum (@deluan)c80ef8a: chore: ignore _test.go files in reflex conf (@deluan)8319905: test(subsonic): add comprehensive e2e test suite for Subsonic API (#5003) (@deluan)Full Changelog: navidrome/navidrome@v0.60.2...v0.60.3
Helping out
This release is only possible thanks to the support of some awesome people!
Want to be one of them?
You can sponsor, pay me a Ko-fi, or contribute with code.
Where to go next?
v0.60.2Compare Source
This release expands ListenBrainz integration with artist URLs and top/similar songs, adds OpenSubsonic readonly and validUntil properties for playlists, and includes several bug fixes for the UI, scanner, and plugin system.
Added
Backend Features:
API Features:
readonlyandvalidUntilproperties to playlists. (#4993 by @kgarner7)Plugin Features:
CallRawmethod to SubsonicAPI host function with support for binary responses. (#4982 by @deluan)Fixed
UI:
Scanner:
Server:
Full Changelog: navidrome/navidrome@v0.60.0...v0.60.2
Helping out
This release is only possible thanks to the support of some awesome people!
Want to be one of them?
You can sponsor, pay me a Ko-fi, or contribute with code.
Where to go next?
v0.60.0Compare Source
Plugins
This release introduces a major rewrite of the experimental Plugin System, now with multi-language PDK support, enabling developers to extend Navidrome's functionality using WebAssembly-based plugins written in Go, Rust, Python or JavaScript. Plugins run in a secure sandbox and can provide additional metadata sources, custom integrations, and server-side enhancements. Users can now easily configure plugins directly from the UI through a new JSONForms-based configuration interface.
A couple of working plugins are already available:
For more plugins, keep an eye on the tag navidrome-plugins in GitHub.
More details and instructions on how to use and manage plugins can be found in our documentation.
New documentation will soon be added with details on how to create new plugins.
Metadata Extraction
Additionally, this version includes a pure-Go metadata extractor built on top of the new
go-tagliblibrary. This is a significant step toward removing the C++ TagLib dependency, which will simplify cross-platform builds and packaging in future releases. The new extractor is activated by default, but in case of any issues you can revert to the previous implementation by settingScanner.Extractor="legacy-taglib"configuration option.Instant Mix
The Instant Mix feature generates a playlist of similar songs based on a selected track. By default, it retrieves similar songs from Last.fm (if configured with an API key) or falls back to Deezer. It can also be configured to use external plugins, like AudioMuse-AI for sonic analysis-based similarity recommendations.
New and Changed Configuration Options
Plugin System Options
Plugins.EnabledtruePlugins.Folder""$DataFolder/PluginsPlugins.CacheSize"200MB"Plugins.AutoReloadfalsePlugins.LogLevel""Subsonic API Options
Subsonic.MinimalClients""Subsonic.EnableAverageRatingtrueMetadata & Matching Options
SimilarSongsMatchThreshold85LastFM.Language"en""de,fr,en") for metadata fallbackDeezer.Language"en"Renamed Options (Deprecation Notice)
The following options have been renamed. The old names still work but will be removed in a future release:
HTTPSecurityHeaders.CustomFrameOptionsValueHTTPHeaders.FrameOptionsSecurity
Added
Plugins:
Server:
go-taglib) as alternative to FFmpeg-based extraction. (#4902 by @deluan)Subsonic.MinimalClientsconfiguration option for improved compatibility with minimal Subsonic clients. Default list is"SubMusic"(#4850 by @typhoon2099)UI Features:
Subsonic API:
avgRatingfield from Subsonic spec. (#4900 by @terry90)Insights:
Changed
HTTPSecurityHeaders.CustomFrameOptionsValuetoHTTPHeaders.FrameOptions. (7ccf44b by @deluan)Fixed
Playlists:
UI:
Scanner:
FullScanInProgressnot reflecting current scan request during interrupted scans. (8c80be5 by @deluan)Subsonic API:
getUserendpoint. (6ed6524 by @deluan)getNowPlayingendpoint to always be enabled regardless of configuration. (603cccd by @deluan)Server:
starred=falsefilter, handlehas_rating=false. (#4921 by @kgarner7)scrobbleandupdateNowPlayingmethods should send parameters in request body. (51026de by @deluan)New Contributors
Full Changelog: navidrome/navidrome@v0.59.0...v0.60.0
Helping out
This release is only possible thanks to the support of some awesome people!
Want to be one of them?
You can sponsor, pay me a Ko-fi, or contribute with code.
Where to go next?
v0.59.0Compare Source
This release brings significant improvements and new features:
Added
UI Features:
Backend Features:
DevPreserveUnicodeInExternalCalls(defaultfalse). (#4277 by @deluan)EnableTranscodingCancellation(defaultfalse). (#4411 by @deluan)Rated Atfield. (#4660 by @zacaj)DevOptimizeDBflag to control whether apply SQLite optimization (defaulttrue). (ca83ebbb5 by @deluan)Scanner Features:
Plugins:
Changed
UI:
Server:
;as values in ini files. (c21aee736 by @deluan)Fixed
UI:
Scanner:
Server:
Lastfm.ScrobbleFirstArtistOnlyalso only scrobbles the first artist of the album. (#4762 by @maya-doshi)cover.jpgovercover.1.jpg. (#4684 by @deluan)Plugins:
New Contributors
Full Changelog: navidrome/navidrome@v0.58.5...v0.59.0
Helping out
This release is only possible thanks to the support of some awesome people!
Want to be one of them?
You can sponsor, pay me a Ko-fi, or contribute with code.
Where to go next?
v0.58.5Compare Source
This release focuses on stability improvements and bug fixes, with several important fixes for UI themes, translations, database operations, and scanner functionality. Notable improvements include fixes for ARM64 crashes, playlist sorting, and new Bosnian translation.
Added
UI Features:
Subsonic API:
Insights:
Changed
Fixed
UI:
Scanner:
Server:
Database:
Docker:
New Contributors
Full Changelog: navidrome/navidrome@v0.58.0...v0.58.5
Helping out
This release is only possible thanks to the support of some awesome people!
Want to be one of them?
You can sponsor, pay me a Ko-fi, or contribute with code.
Where to go next?
v0.58.0Compare Source
Navidrome v0.58.0 Release Notes
Navidrome v0.58.0 introduces Multi-library Support, a major architectural enhancement that enables users to organize and manage multiple music collections with proper permission controls and complete UI integration. This long-requested feature allows you to create separate libraries for different music collections (e.g., personal music, family music, audiobooks) while maintaining proper access controls and data isolation.
For full documentation on how to use it, see the new Multi-library page in the documentation website.
Full Scan
Although this release does not force a full scan on upgrade, you should do it as soon as possible. This is because the multi-library changes affect the move/rename/retag detection and can potentially make you lose annotations (stars, playcounts, playlist references). During the full scan, it will duplicate all your albums, but that's expected. It will remove the duplicates at the end of the scan.
Database Migration Warning
This release includes database schema changes that are NOT reversible by simply downgrading to a previous version of Navidrome.
Before installing this version:
navidrome.dbfileIf you need to rollback:
Added
Multi-Library Support
Create and manage multiple music libraries with separate music folders. (#4181 by @deluan)
UI Features
Plugin Features
API Features
Changed
Fixed
UI
Scanner
Server
Subsonic API
Plugins
Testing
Code Quality
New Contributors
Full Changelog: navidrome/navidrome@v0.57.0...v0.58.0
Helping out
This release is only possible thanks to the support of some awesome people!
Want to be one of them?
You can sponsor, pay me a Ko-fi, or contribute with code.
Where to go next?
v0.57.0Compare Source
A big thank you to all the contributors who made this release possible!
Added
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 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 this update again.
This PR was generated by Mend Renovate. View the repository job log.