This release brings an experimental Jellyfin Music API, so Jellyfin-compatible music clients like Finamp and Jellify can now connect to Navidrome. Artwork got a new background pipeline with blurred low-quality placeholders and a diagnostic CLI. Under the hood, all IDs move to a uniform canonical 128-bit format, genre and artist filtering is now index-backed, and playlist import on large libraries is dramatically faster. There is also natural sort order, playlist favourites, Refresh Metadata actions, new Catppuccin themes, and many fixes across scanning, transcoding and scrobbling.
⚠️ Breaking Changes / Migration Notes
- All internal IDs are re-encoded to a single canonical 128-bit base62 format. The migration touches every table, so back up your database before upgrading. Clients that cache item IDs (for example, offline downloads) may need to re-sync. (#5824)
- Plugin authors: Extism's built-in HTTP is disabled. Calls through
pdk.NewHTTPRequest(Go),http::request(Rust) or the equivalent in other PDKs now fail withHTTP request ... is not allowed. Plugins must use the host HTTP service instead:host.HTTPSend(Go) ornd_pdk::host::http::send(Rust). Also, plugin HTTP and WebSocket connections to private or loopback addresses are now blocked for named hosts; to reach a LAN service, list its IP or CIDR in the manifest'srequiredHosts, or use a bare"*". (1a8463f7d, 276d767ce) - Shares are always owned by the user who creates them. Admins can no longer create shares on behalf of another user via
userId. (1a8463f7d) - Configuration durations are now validated. Negative values are rejected at startup. (#6002)
- Navidrome now warns about unrecognized options in the config file, so typos no longer fail silently. (#5870)
Security
This release fixes several reported vulnerabilities. We thank the security researchers who responsibly disclosed them.
- Fix SQL injection via the artist
rolesort and filter parameters in the Native API by validating the role against the known list. (4168377b6, GHSA-hm54-32q6-3rcr, reported and fixed by @Sudo-Ivan) - Fix share-ownership spoofing (IDOR) that let a client-supplied
userIdon share creation expose other users' private libraries, and fix a plugin HTTP client SSRF guard bypass via DNS names and redirects by disabling Extism's built-in HTTP and checking the resolved IP at dial time. (1a8463f7d, GHSA-82gh-4ggp-gfg5, reported by @gigioneggiando) - Fix the same SSRF bypass in the plugin WebSocket host service by adding the private-address guard it was missing. (276d767ce, GHSA-pr2j-mfc8-qjcc, reported by @qrn12580)
- Fix login rate limit bypass via spoofed
X-Forwarded-For,X-Real-IPandTrue-Client-IPheaders by keying the limit on the trust-aware client IP. (#6124, GHSA-f295-6wp9-qqfg, reported by @gehan-psbc and @skarn958) - Fix memory exhaustion via a negative
sizeparameter ongetCoverArtand share images, which bypassed the artwork size clamp, by rejecting negative and oversized dimensions before decoding. (#5847, GHSA-f22h-6qxh-rqq2, reported by @arpitjain099) - Enforce track membership on public share streams so a share can only stream the tracks it contains. (#5769 by @deluan)
- Validate every resource ID in a share, load share metadata as the owner, cap login request bodies, create the log file with mode 0600, and stop logging the Last.fm auth token. (#6098 by @deluan)
- Confine plugin filesystem mounts to their root and reject plugin IDs that are unusable as directory names. (#5881, #5886 by @deluan)
- Redact sensitive auth headers from request logs. (82b9a44a1 by @deluan)
Note: Several of the advisories linked above are still in draft on GitHub at the time of writing. Their links will become publicly accessible once the advisories are published. The fixes themselves are already included in this release.
Configuration Changes
| Status | Option | Description | Default |
|---|---|---|---|
| New | Jellyfin.Enabled |
Enable the experimental Jellyfin Music API. (#5730) | false |
| New | Jellyfin.ServerName |
Server name advertised to Jellyfin clients. (#5730) | Navidrome <version> |
| New | Jellyfin.ExposedPublicUsers |
Comma-separated usernames advertised on the unauthenticated public users endpoint. (#5730) | "" |
| New | Jellyfin.MaxConcurrentStreams |
Bounds how many Jellyfin collection responses can stream at once. (#5783) | max(2, MaxOpenConns/2) |
| New | EnableNaturalSorting |
Sort names and titles naturally (e.g. "Track 2" before "Track 10"). (#6015) | false |
| New | MaxImageSize |
Cap on the size of artwork images Navidrome will decode. (#5931) | 20MB |
| New | EnableScheduledDBAnalyze |
Periodically run a full ANALYZE to keep query planner statistics fresh. (#5740) |
true |
For a complete list of all configuration options, see the Configuration Options documentation.
Jellyfin API (Experimental)
- Add an experimental Jellyfin Music API, enabling Jellyfin-compatible music clients to connect to Navidrome. Enable it with
Jellyfin.Enabled = true. (#5730 by @deluan) - Supports library browsing, search, favorites and ratings, playlists, lyrics, Instant Mix (album, playlist and genre sources), ReplayGain normalization, and filtering by year and record label. (#5791, #5948, #5815, #5817 by @deluan, #5809 by @kgarner7)
- Jellyfin clients get sonic similarity features (similar tracks, sonic path) when a sonic similarity plugin is installed, backed by the same engine already exposed over the Subsonic API. (#5782 by @deluan)
- Jellyfin tokens never expire, are scoped to the Jellyfin API, and are revoked when the user changes their password. (#6013 by @deluan)
Artwork
- New artwork pipeline: artwork resolves in the background and pages show a blurred Low Quality Image Placeholder until the real image arrives. External providers are rate-limited and guarded by a circuit breaker, and missing artwork is rechecked slowly instead of on every request. (#5847 by @deluan)
- Make the artwork image size cap configurable. (#5931 by @deluan)
- Fix artist folder being promoted to album folder. (#5856 by @kgarner7)
- Fix Deezer picking the wrong artist among same-name matches, and treat an exhausted Deezer quota as a throttle instead of a missing artist. (#5808, #6068 by @deluan)
UI
- Add Refresh Metadata action to album and artist pages and context menus. (#6036, #6078 by @deluan)
- Add playlist favourites: heart button, list filter, and a sidebar favourites-only toggle. (#5805 by @deluan)
- Add Catppuccin Mocha and Frappé themes, and update Macchiato to match the official palette. (#5835 by @cmyksoda)
- Add Artists, Songs, Playlists and Radio to the Default View options. (#5754, #5801 by @deluan)
- Add Share and Download actions to the Artist detail page. (#5944 by @deluan)
- Show translation completion percentage in the language selector. (#5979 by @deluan)
- Remember the "items per page" selection across sessions. (#5819 by @deluan)
- Give visual feedback when downloading from a share. (#5865 by @deluan)
- Fix logins sometimes showing the wrong user. (#5882 by @deluan, #5767 by @apkatsikas)
- Fix each page's scroll position not being restored when navigating back. (#5892 by @deluan)
- Fix playback starting when closing the disc cover lightbox. (#5901 by @deluan)
- Fix playlist not reloading after rating or loving a track. (#6009 by @polybjorn)
- Fix the album grid resizing in Safari when top menus open. (#6125 by @york9675)
- Fix the album grid hover overlay corners in the Nautiline theme. (#6115 by @deluan)
- Fix transcoding Default Bit Rate not accepting 0. (8d77a49b3 by @deluan)
- Fix the Last.fm link not always showing on the artist details page. (b0e1943d8 by @deluan)
Playlists & Smart Playlists
- Add album-level fields for sorting and filtering in smart playlists. (#5899 by @deluan)
- Add per-playlist
refreshDelayfor stable daily or weekly smart playlists. (#5790 by @deluan) - Store playlist stars and ratings per user. (#5749 by @deluan)
- Make playlist import much faster on large libraries. (#6055 by @deluan)
- Fix in-place playlist edits not being detected by the scanner. (#5914 by @junkerderprovinz)
- Fix track edits being allowed on synced playlists via some APIs. (#5984 by @deluan)
- Fix smart playlist song count being lost on re-import. (#5908 by @deluan)
- Fix deleting many tracks from a playlist at once failing. (#5977 by @deluan)
- Fix the
changedtimestamp not being updated when renaming a smart playlist. (#6082 by @deluan)
Scanner
- Add optional natural sort order for names and titles. (#6015 by @deluan)
- Support the
[bg:]tag and skip unknown tags in LRC lyrics files. (#5966 by @deluan) - Fix album tags being sorted alphabetically instead of keeping the order from the files. (#5872 by @deluan)
- Fix file creation time not being read on Linux. (#6046 by @deluan)
Subsonic API
- Implement the OpenSubsonic
topSongsByArtistIdextension. (#5853 by @kgarner7) - Expose album-level ReplayGain. (#5816 by @deluan)
- Fix
createShareignoringDefaultDownloadableShare. (#6121 by @deluan) - Fix double brackets when appending subtitle or version to titles. (#5832 by @deluan)
Transcoding & Streaming
- Fix sources already in the player's forced format being re-encoded, and make piped FLAC transcodes seekable. (#6105 by @deluan)
- Fix truncated transcoded streams being delivered as complete. (#6035 by @deluan)
- Fix AAC streams being reported as
audio/mp4instead ofaudio/aac. (#5998 by @justadityaraj) - Fix bit depth being reported for lossy transcode targets. (#5768 by @deluan)
Scrobbling
- Add a per-user scrobble filter. (#5964 by @deluan)
- Add a scrobble history Native API. (#5761 by @kgarner7)
- Use exponential backoff for scrobble retries during provider outages, and honor a provider's request to back off. (#5818, #6028 by @deluan)
- Fix out-of-order playback reports being rejected. (#5793 by @deluan)
Plugins
- Add plugin-specific storage. (#5839 by @kgarner7)
- Add scrobble access to the plugin SDK. (#5795 by @kgarner7)
- Surface the valid agent names in logs and the Plugins UI. (#5910 by @deluan)
- Fix plugin agents not being loaded in CLI commands. (#5959 by @deluan)
- Fix public URLs built by plugins pointing at localhost instead of the caller's address. (#6059 by @deluan)
CLI
- Add an
artworkcommand group (explain,refresh,cancel) for diagnosing and re-driving artwork resolution. (#5957 by @deluan) - Add
missing listandmissing fixsubcommands to deal with files that moved. (#5928 by @zerovox) - Add
doctorandsearch rebuildcommands to detect and recover from search index corruption. (#6069 by @deluan) - Fix
restorewiping the database when the backup file does not exist. (#6085 by @Huang-404-Q) - Fix selective scan
--targetrejecting absolute paths. (#5947 by @deluan) - Fix
pls -pwriting playlist output to stderr instead of stdout. (#5996 by @deluan)
Server
- Make genre and artist filtering much faster across all APIs by using indexed join tables. (#5940, #5930 by @deluan)
- Report the app store or hosting platform via
ND_PLATFORMin insights. (#5956 by @deluan) - Send the Navidrome User-Agent in all outgoing requests. (#6020 by @mintsoft)
- Fix
getScanStatusreportingcount=0for scans not started through the API, fix the folder watcher hanging when it cannot start, and fix startup failing whenMusicFoldercontains a single quote. (#6098 by @deluan)
Database
Packaging & Build
- Upgrade to Go 1.27. (#5990 by @deluan)
- Upgrade the Docker base image to Alpine 3.22, and add
curlto the container image. (#6048 by @deluan, #6116 by @miguelallopes) - Bump TagLib to 2.3.2. (#6088 by @deluan)
- Windows MSI: remember install properties across upgrades. (#5333 by @mintsoft)
- Fix a missing hyphen in the OpenRC script that caused crashes on startup. (#5906 by @alinxviso)
- Fix a typo in the
--prometheus.enableddescription. (#5878 by @0mp)
Translations
- Update Chinese (Simplified) translation. (#5779, #5873 by @fxj368)
- Update Italian translation. (#5848 by @McCio)
- Update Japanese translation. (#6080 by @karigane-cha)
- Update German, Greek, Finnish, Galician, Polish, Portuguese (BR), Thai, Ukrainian and Chinese (Traditional) translations from POEditor. (#5833, #6128 by @deluan)
New Contributors
- @McCio made their first contribution in #5848
- @0mp made their first contribution in #5878
- @alinxviso made their first contribution in #5906
- @IgorPolyakov made their first contribution in #5867
- @junkerderprovinz made their first contribution in #5916
- @justadityaraj made their first contribution in #5998
- @polybjorn made their first contribution in #6009
- @karigane-cha made their first contribution in #6080
- @Shxiao101 made their first contribution in #6097
- @cmyksoda made their first contribution in #5835
- @miguelallopes made their first contribution in #6116
- @Huang-404-Q made their first contribution in #6085
- @zerovox made their first contribution in #5928
- @Sudo-Ivan made their first contribution in 4168377b6
Full Changelog: https://github.com/navidrome/navidrome/compare/v0.63.2...v0.64.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.