Audio engine rewrite, audiobook session model, podcast auto-refresh recovery, functional settings, and the stream/QoL hardening from this cycle. Full notes in CHANGELOG.md.
129 KiB
Changelog
All notable changes to Kima will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased] - nightly
[1.9.0] - 2026-06-15
A reliability release built around a ground-up rewrite of the audio playback engine. After an end-to-end audit of the player turned up 30 issues across the frontend and backend, the tangle of overlapping recovery mechanisms was replaced with a single, predictable engine; audiobooks became proper sessions; and a long-dead podcast auto-refresh was brought back. Several settings that looked functional but did nothing now actually work.
Changed
- The audio player is now driven by one state machine instead of four competing recovery mechanisms. The old controller had a 3-second stall watchdog, a 10-second stall grace, a network-retry loop, and a reload-on-error path all running at once with inconsistent thresholds. They are replaced by a single engine with one recovery ladder: every wait has a deadline, every state has a way out, and the play/pause button is never disabled -- so the "endless spinner you can't even pause" state is no longer possible. iOS's noisy
stalledevent (which fired over a thousand times during healthy playback in a real trace) is now ignored entirely. - Audiobooks are handled as sessions, not loose URLs. All book-time math goes through one place backed by a verified per-file track map, so a multi-file book can no longer seek to the wrong file or mark itself finished partway through.
Fixed
- Multi-file audiobooks could wipe your place and mark themselves finished. Started from the series or list page, a multi-file book had no file map, so it seeked the first file to a book-absolute position, hit the end, and the player treated that as "book complete" -- overwriting saved progress. The track map is now cached server-side and carried on every surface, and a book is never marked finished without a confirmed last file.
- Chapter taps did nothing when the book wasn't already playing. Tapping a chapter started playback and then seeked against state that hadn't committed yet, so the seek was discarded. The chapter position now rides the load itself.
- Podcasts stopped pulling new episodes. A corrupted background job left a stuck marker that silently blocked every future refresh; the refresh button appeared to work but couldn't dislodge it. Failed jobs are now cleared so a refresh can recover, and a refresh that fails backs off instead of retrying in a tight loop. The same dedup trap was fixed on the artist, track, and embedding queues.
- Pausing from the lock screen could un-pause itself when you reopened the app. A lock-screen pause wasn't recorded as a deliberate pause, so the next time the app came to the foreground it resumed on its own (and could play through the speaker if earbuds had been removed). Lock-screen pause is now a real pause and is respected.
- A long-idle session could stop playing after about a day. The stream token expired and the next request failed silently; the player now refreshes the token before it expires and recovers a stream at its saved position instead of tearing down. A transient network blip no longer logs you out.
- Subsonic "star" could silently fail. A third-party app could star a track that never saved because every error was swallowed and success was reported regardless. Genuine failures now surface; missing tracks are skipped; partial successes are kept.
- "Clear Caches" did nothing. The handler used the wrong Redis client API and threw on every call. It now works and clears all rebuildable caches while leaving queue and control-plane state untouched.
Added
- Settings that used to be inert now work. The transcode-cache-size slider is honored on restart, and the "Auto sync library" toggle now drives a periodic library scan (every 6 hours) so music added outside the download pipeline gets picked up automatically.
Backend
- Stream lifecycle hardening: removed a per-user stream cap that could truncate the track you were listening to; added server socket timeouts so dead mobile connections can't accumulate; bounded the Audiobookshelf proxy with a real timeout and cached its track lookups so seeks stop paying a round-trip each; ran transcodes through a real concurrency queue with a kill-switch; aligned HTTP range handling (416 vs full-file) across the music, audiobook, podcast, share, and Subsonic routes; and shortened the year-long cache header so a replaced file isn't served stale.
[1.8.2] - 2026-06-10
A playback-reliability release: faster track starts, audiobook progress that survives backgrounding and updates, and a round of audiobook and podcast fixes.
Fixed
- iOS audiobooks lost their place after an app update or a long screen-off session: progress was saved off the
timeupdateevent, which iOS throttles when the PWA is backgrounded, so a screen-off listening session was never checkpointed and reverted to where the screen was locked. Progress now saves on a 15-second wall-clock timer while playing, independent of the throttled event. - An iOS interruption (call/notification) could leave audio paused, and audio could restart through the speaker after pulling earbuds: an auto-resume-after-interruption attempt was removed after a device trace proved its safeguard could not work (iOS never emits the route-change event the guard relied on, so it could not tell an earbud unplug from an interruption ending). The audio session is still re-claimed when an interruption ends, but playback is never auto-restarted, so the earbud-to-speaker case cannot occur.
- Slow track starts: the streaming route did play-history logging and a settings lookup before sending the first byte. Those now run in parallel and in the background, so playback starts sooner. Default quality with no settings row is now
original(no transcode) to match the schema default. - Audiobook seek past the end of a file returned a 500: a seek using a stale file size made Audiobookshelf return 416, which surfaced as a server error. It now returns a clean 416 instead of piping an error body to the player.
- Mis-cataloged Audiobookshelf libraries imported as a single multi-thousand-hour "audiobook": sync now skips items with more than 1000 audio files, which are libraries mistaken for one book (they broke seeking and the player).
- Podcast detail page stuck on an infinite loading spinner (#168): a slow or unreachable feed hung the preview request with no error. The preview is now time-bounded on both ends, so a slow feed returns partial data and a dead feed surfaces an error instead of spinning forever.
[1.8.1] - 2026-06-05
Added
- Optional slskd backend for Soulseek (#205, by gossip31): a
soulseekModesetting routes Soulseek through an external slskd instance instead of the built-in client. slskd holds its own Soulseek account, so this mode needs no Kima-side username or password. The built-in client stays the default and is unchanged.
Fixed
- Audio analyzer crash-loop on corrupt files (#204, by gossip31): a handful of malformed files take an uncatchable native crash inside Essentia's decoder, which kills the worker before the failure can be counted, so those files looped forever and each crash left a large core dump behind. An ffmpeg integrity probe now screens files before Essentia decodes them, so a bad one fails cleanly and quarantines after the normal retry limit. As a backstop, the stale-processing recovery counts a worker crash as a retry, so any crash the probe can't predict still quarantines instead of looping.
[1.8.0] - 2026-06-04
iOS playback reliability rebuilt from a stable baseline, Vibe search hardened against Redis pressure, the first phase of the Discover Weekly correctness rework, and a dependency pin that unbreaks the build.
Added
- iOS audio diagnostics: the installed iOS PWA keeps a small rolling log of audio events on your own server to make playback bug reports actionable. Bounded and on-device; groundwork for a forthcoming general support-bundle export.
Fixed
- iOS earbud / lock-screen resume produced no audio and lost the session to another app: three successive patches on the iOS AudioContext backgrounding bridge had compounded into a regression -- the worst awaited the context resume before
audio.play()and returned early on a non-running context, so an earbud/lock-screen resume did nothing and, after a few attempts, iOS handed the audio session to the next app (a sleep-sounds app would start playing). The three patches were reverted to the proven bridge baseline (resume the context in parallel, always attemptaudio.play(), gesture preserved), and the real gaps were fixed on top: the "playback" audio-session category is re-claimed on every explicit resume (not just the first), so iOS can't leave it with an app that grabbed it during an interruption, and an AudioContextstatechangelistener re-claims it when the OS ends an interruption. No background auto-resume was added, so the v1.7.12 earbud-unplug-through-speaker regression stays fixed. Installed iOS PWA only. - Vibe text search crashed with "Stream isn't writeable" under load (#197): the text-embedding Redis bridge inherited the shared client's fail-fast options (
enableOfflineQueue:false), so it threw whenever a connection was mid-reconnect, and a rejected promise was cached -- breaking Vibe search until restart. The first fix hardened only the subscriber; this hardens the whole path: the publisher uses its own buffered connection, dead connections are cleaned up instead of leaking or silently dropping responses, subscribe and publish are time-bounded so an unreachable Redis fails fast instead of hanging, analyzer failures are rejected cleanly instead of 500ing, and the analyzer reports internal errors immediately. - Release build broke on a
transformersupdate:transformerswas unpinned and resolved to a version that needs a newertorchthan the pinnedtorch==2.5.1(it referencestorch.float8_e8m0fnu, added in torch 2.7), failing the analyzer image build. Pinned totransformers==5.8.1, the version proven against torch 2.5.1. - Discover Weekly never showed (and silently auto-deleted) the generated playlist -- Phase 1 of the rework: the Sunday cron tagged records with the ending week, so
GET /current(which looked for the current week with exact equality) found nothing, and the next run's cleanup then deleted the invisible records. This phase fixes the core correctness path (no schema migration): generation now tags the upcoming week via a centralized week helper; the cron moves to Monday 05:00 with a dedup key aligned to the batch week;/currentresolves from the latest completed batch (bounded, with astaleflag) so drifted records are visible;buildFinalPlaylistmarks the batch failed on a transaction error instead of hanging inscanning; retry-unavailable routes through the shared completion flow so retried albums actually enter the playlist; cancelling a batch marks itfailed(not a false "successful empty week"); album deletes are wrapped in transactions with an atomic claim guard so a concurrent "like" can't lose its album (and/likeis symmetric); a same-rgMbidLIBRARYalbum is never deleted; and the BullMQ job hash is cleared before re-enqueue so a retry after a failure isn't silently dropped.TZ=UTCis pinned for deterministic week math.
[1.7.15] - 2026-06-01
A frontend quality and UX overhaul (accessibility, theming, and UX refinements) plus two playback fixes.
Added
- Collection "Refine" panel: filtering, sorting, and items-per-page are consolidated into one popover, with clearer "In your library" vs "Recommended" labels.
- Mobile vibe track operations: match-vibe, find-similar, and Song Path are now reachable on touch via a panel sheet; the vibe map gained a first-run hint, and "Drift" was renamed "Song Path" with outcome-focused tooltips.
- Discover Weekly clarity: a clearer generate CTA, disk-usage disclosure before generation, and two-phase progress.
- Safer destructive settings: cache/enrichment resets now require a confirmation dialog; maintenance actions are grouped and section labels corrected.
- Onboarding: per-integration test/result state and clearer admin-account vs integration copy.
- Playlist virtualization: large playlists render a windowed subset of rows (load-tested ~33,700 -> ~1,260 DOM nodes for a 1,000-track playlist) for smooth scrolling.
- Mini-player gesture hint: a one-time hint explains the swipe gestures (behavior unchanged).
Fixed
- iOS playback stopping after almost every song when backgrounded: the silent-playback watchdog (added in v1.7.13) was armed on every automatic track transition and judged "silent" purely from whether a
timeupdateevent arrived within 2.5s. iOS throttles that event when the installed PWA is backgrounded, so after most songs the watchdog wrongly paused healthy playback and surfaced a "Tap play to resume" error. It now judges liveness byaudio.currentTimeadvancement, never tears down while the document is hidden, and only the genuine deep-suspension case (suspended/interrupted AudioContext) still prompts -- restored via an explicit foreground check. Installed iOS PWA only. - Desktop Discover settings / lyrics not opening in the rebuilt sidebar: the desktop
UnifiedPanelnever read the externally-registered settings content, so the Discover settings gear (and lyrics) opened the panel to the activity feed instead of the settings. The panel now renders the registered content and returns to the feed on collapse. Pre-existing since the sidebar rewrite. - Keyboard focus squaring off rounded controls: the global
:focus-visiblerule setborder-radiuson the focused element (not the outline), distorting circular and rounded buttons/modals on keyboard focus; removed (browsers already round the outline viaoutline-offset). - Library search silently capped at 10 results; now renders all matches.
- Real-bug batch: an invisible refresh button (invalid color class), a dead
?tab=link parameter, a non-functional queue drag handle, and several silently-swallowed errors (radio, podcasts) now surface. - Playlist scroll correctness: the virtualizer offset is measured against the real scroll container and re-measured on reflow.
logoutreturn type corrected toPromise<void>;aria-expandednow stays in sync across every panel close path; removed a nested-interactive ARIA role on the mini-player.
Changed
- Accessibility (WCAG AA): muted text raised to 4.81:1 contrast, a global brand focus ring restored on keyboard navigation app-wide, ARIA labels/landmarks across remaining routes, and 44px minimum touch targets.
- Brand color consolidated to the official amber (
#fca200); the legacy green accent was removed. - Internal theming: hard-coded hex colors migrated to design tokens, and redundant tokens that merely aliased Tailwind values were dropped in favor of Tailwind utilities (no visual change).
[1.7.14] - 2026-05-27
Fixed
- Podcast refresh silently stuck (#81): BullMQ retains completed-job hashes, so re-adding a refresh job with the same id was silently deduplicated and dropped. Completed jobs are now cleaned before re-queue, so podcast refresh works repeatedly.
[1.7.13] - 2026-05-14
iOS audio reliability overhaul plus audiobook, Soulseek, and podcast fixes.
Fixed
- iOS audio survival and resume: the audio element is bridged through an AudioContext to survive backgrounding; the next track's source is swapped synchronously on track-end to preserve the iOS autoplay grant; foreground resume uses a
wasPlayingflag; AudioContext resume is awaited with silent-playback detection; and audio route-change pauses are now observable. Restored the standalone PWA on iOS so Safari chrome stops covering the UI. - Audiobook chapter ordering (#184): chapters/tracks are resolved by logical chapter number and sorted defensively by offset; sync failures now show the backend's actual error message.
- Soulseek download errors (#192): errors propagate to the awaiting promise instead of crashing the backend; service-layer error listeners carry file context.
- Podcasts (#168): an error UI is rendered instead of an infinite spinner, and state resets on navigation so errors don't stick across podcasts.
Added
- iOS audio forensics (opt-in via
?ios_debug=1): an audio-event ring buffer, MediaSession and lifecycle instrumentation, and a/debug/ios-logviewer with a backend archival endpoint.
Changed
- Pinned Next.js to
^16.2.2to match the container's resolved version.
[1.7.12] - 2026-04-16
Added
- Persist UMAP map positions to the database: The vibe galaxy map previously cached its UMAP projection in Redis with a 24h TTL; on every expiry (or container restart) the worker recomputed the full projection, taking ~30s on an 8k-track library. Positions are deterministic once the embedding set is fixed, so they now live in
track_embeddings.map_x/map_y. The map loader tries Redis first, then hydrates from the DB when at least 98% of embeddings have persisted positions (uncovered tracks get patched byappendTrackToProjectionas they analyze), and only falls back to full UMAP recompute when coverage drops below that threshold. Cold-Redis hydrate is a single indexed join (~100ms) instead of a 30s worker run. The migration is a metadata-onlyADD COLUMNon PG 11+, zero downtime, safe fordocker compose pullon existing deployments. - Deezer as fallback source for podcast search: iTunes Search API had an outage that broke all podcast discovery. The
/podcasts/discover/*and/search?type=podcastsendpoints now fan out to both iTunes and Deezer in parallel viaPromise.allSettledwith title-based dedupe. Deezer results fill gaps when iTunes is down; iTunes results are preferred when available (they carry thefeedUrlneeded for subscription). The preview endpoint can resolve Deezer-only podcasts by looking up the feed URL via iTunes name match.
Fixed
- iOS earbud disconnect routing audio to the phone speaker: The 1-second auto-resume in the audio-controller pause handler (added in v1.7.7) could not distinguish a system pause worth resuming (notification) from one that is not (audio route change when earbuds unplug or Bluetooth disconnects) -- iOS fires an identical pause event for both. When the timer fired
play()after a route change, iOS routed audio to the loudspeaker, startling the user mid-listen. The original Control Center pause-then-play bug that the auto-resume targeted remained reproducible, so the timer was providing no benefit while causing this regression. Removed the timer and all interruption-flag state; the Media Session play action handler inuseMediaSessionalready covers the Control Center path with areloadAndPlayfallback gated on a user gesture, which is the only safe way to resume on iOS. Network retry, stall watchdog,AbortError-> reload,NotAllowedError-> needs-resume prompt, and visibility/pageshow foreground resume are all preserved. - Vibe galaxy showing a black screen on load: A single
kima_galaxy_camerasessionStoragekey was shared across the 2D (orthographic) and 3D (perspective) viewing modes. Restoring a 3D flight position +zoom = 1(thePerspectiveCameradefault) into theOrthographicCameraon the next mount placed the ortho view far from the points with no zoom, producing a black screen. Each mode now has its own storage key and only restores state captured in that same mode. The legacy single-key entry is removed on mount so any user stuck in the bad state unsticks automatically without needing a cache clear. - Podcast previews when iTunes resolves via Deezer: The preview handler now accepts Deezer-only results and resolves their feed URL through an iTunes name lookup, so subscriptions still work when the primary source was Deezer.
Changed
- Removed the PodcastIndex scaffold: The PodcastIndex service was referencing
SystemSettingscolumns that do not exist in the current Prisma schema -- it would have thrown on first call. No production caller invoked it except the now-removed reset hook insystemSettings. Dropped the service, its only cache-reset call site, and thepodcast-index-apidependency (last published 2021).
[1.7.11] - 2026-04-08
Fixed
- Docker build failure on linux/arm64 (v1.7.10 hotfix): The torch/torchaudio/torchvision pins added in v1.7.10 (PR #178) used the
+cpulocal version suffix, which exists on the pytorch CPU index for amd64 but not for arm64 at torch < 2.6.0. The arm64 build step 7/41 failed withERROR: Could not find a version that satisfies the requirement torch==2.5.1+cpu. Dropped the+cpusuffix -- PEP 440 matches versions without a local tag against any local variant, so the same pin resolves to2.5.1+cpuon amd64 and2.5.1on arm64. - CLAP model not loading (#165, properly this time): The v1.7.6 fix closed this issue but was actually dead code -- it edited
services/audio-analyzer-clap/requirements.txt, but the main Dockerfile only copiesanalyzer.pyfrom that directory and never installs from requirements.txt. CLAP was broken in every release from when the feature shipped until v1.7.10's pins landed (which would have fixed it if the arm64 build had not failed). Root cause: unpinnedtorch torchaudio torchvisionlet pip's resolver install mismatched versions (torch 2.5.1+cpu paired with torchaudio 2.11.0+cpu -- ABI-incompatible), and unpinned scipy/pandas were installed at latest versions needing numpy>=1.26, which tensorflow-cpu 2.13 then downgraded to 1.24.3, breaking scipy'sfrom numpy.exceptions import AxisError. Fixed by the torch+cpu suffix correction above plus PR #178's (now-effective) numpy/scipy/pandas pins. Verified by reproducing the full CLAP + transformers + laion_clap + tensorflow + essentia import chain in the published v1.7.9 image and confirming the fix resolves all errors.
[1.7.10] - 2026-04-07
Added
- Disc numbers and subtitles for multi-disc albums (#157, #170): The scanner now reads
disk.noanddiscsubtitletags from file metadata. Album views group tracks by disc with a header when multiple discs are present, and show compact1-05/2-08track labels for multi-disc releases. Single-disc albums are unchanged. Subsonic clients receive thediscNumberattribute on songs and tracks are ordered by[disc, trackNo]across every code path (library, offline, share, and all Subsonic endpoints). A new additive migration adds two nullable columns (Track.discNumber,Track.discSubtitle) -- no rescan is required, but rescanning a library picks up the new fields. Thanks @loskutov.
Fixed
- Deezer preview CORS/ORB in hardened browsers (#173, #178): Previews were failing in LibreWolf, hardened Firefox, and Brave because Deezer's CDN doesn't send cross-origin headers and strict browsers block the direct
<audio>load via Opaque Response Blocking. Previews now route through new backend proxy endpoints (/api/artists/preview/.../streamand/api/playlists/.../preview/stream) so audio loads same-origin with properCache-Control: no-store, 10s upstream timeout, and upstream-stream cleanup on client disconnect. The cached 24h preview URL lookup is bypassed for streaming (using a newgetFreshTrackPreview()helper) so the Akamai token expiry that caused #172 no longer bites playback. The ownership check on pending-track preview uses a single generic "not found" message for both missing and wrong-playlist cases to avoid leaking existence of other users' track IDs. Thanks @cachamber. - Artist sorting ignores "The" and is now case-insensitive (#174, #175): Library artist sort used raw SQL ordering with no normalization, so "alt-J" sorted to the end and "The Beatles" sorted under T. Both backend (
backend/src/routes/library/artists.tsvia parameterizedPrisma.sql) and frontend (frontend/app/collection/page.tsx) now strip a leading "The " (case-insensitive) and compare case-insensitively, with a stable ID tiebreaker. Server-side ordering matches the UI and is applied before pagination. Thanks @cachamber. - Album track order regression for NULL disc numbers: The new
orderBy [discNumber asc, trackNo asc]in #170 relied on Prisma's default sort behavior, which in Postgres puts NULLs LAST. On upgrade-without-rescan, all tracks havediscNumber = NULL, which stayed correct; but for partially-rescanned libraries where some tracks gained a disc number and others did not, NULL-disc tracks would end up dumped at the end of the album instead of interleaved in track order. All six orderBy call sites (library/albums, offline, share, and three in subsonic/library) now use{ sort: "asc", nulls: "first" }to preserve pre-migration order. - Finamp removed from README client list (#167): Finamp is a Jellyfin-only client and does not support the Subsonic/OpenSubsonic API. The README's two mentions of it were incorrect. Thanks @Chaphasilor.
Changed
- Docker build: pin CLAP/PyTorch stack to known-compatible versions (#178): Docker image now pins
torch==2.5.1+cpu,torchaudio==2.5.1+cpu,torchvision==0.20.1+cpu,numpy==1.24.4,scipy==1.10.1,pandas==2.0.3and adds a build-time sanity check that importstorch,torchaudio,numpy,scipy,pandas,laion_clap, andtransformers.BertModel. Prevents silent ML dependency resolution drift between builds. Thanks @cachamber. - Security audit cleanup: Removed ~553 lines of stale/vulnerable transitive dependencies from
backend/package-lock.jsonandfrontend/package-lock.json(4 high/1 critical backend, 3 high frontend). Lockfile-only changes, no package.json dependency bumps. - Preview stream cleanup: Both Deezer preview proxy endpoints now destroy the upstream axios stream on client disconnect (
res.on("close", ...)), matching the existing audiobook stream pattern.
[1.7.9] - 2026-04-06
Fixed
- Multi-track audiobooks auto-complete after first file: Audiobooks stored as multiple audio files (e.g., one MP3 per CD/chapter) were being marked
isFinished=trueand stopping playback as soon as the first file ended -- typically within a few minutes -- with no way to resume. Root cause:streamAudiobook()hardcodedtracks[0], and the frontend'shandleEndedhandler treated any file end as the entire book finishing. Fix: backend now accepts atrackIndexquery parameter and exposes the fulltracks[]array (withstartOffsetandduration) in the audiobook detail response; frontend player tracks the active file, advances to the next track onended, handles cross-track seeks, and applies atrackOffsetso all displayed/saved positions reflect total-book time. Single-file audiobooks are unaffected.
[1.7.8] - 2026-03-31
Fixed
- iOS PWA background audio: Control Center pause/resume produces no sound (WebKit #261858): Standalone PWAs on iOS use WKWebView, which suspends the audio session when backgrounded and cannot reactivate it from Control Center —
play()resolves but produces no sound. Confirmed via on-device debugging with ios-webkit-debug-proxy. Fix: iOS "Add to Home Screen" now creates a Safari bookmark (display: browser) instead of a standalone WKWebView app, giving full audio session support. Desktop and Android retain the standalone PWA experience. Dynamic manifest route serves platform-appropriate display mode based on User-Agent.
[1.7.7] - 2026-03-31
Fixed
- iOS audio not resuming after notification or Control Center pause: On iPhone, audio would stop when a notification came in or when paused from Control Center, and tapping play showed "playing" but produced no sound. Root cause: the foreground recovery handler checked
isPlaying()(always false after iOS interrupts audio) instead of tracking whether playback was interrupted by the system. Added three-layer recovery: (1) 1-second auto-resume timer for brief notification interruptions, (2) robust Media Session play handler that reloads the audio source on failure, (3) foreground recovery that detects system-interrupted state and resumes when app returns to focus. Also handlesAbortError(iOS audio session invalidated) by reloading the source, andNotAllowedErrorby prompting the user to tap play.
[1.7.6] - 2026-03-30
Fixed
- SSRF blocking admin-configured integration URLs, CLAP numpy version floor (#165, #166)
[1.7.5] - 2026-03-29
Fixed
- Onboarding validation rejects disabled integrations, hide audiobooks when disabled (#162)
[1.7.4] - 2026-03-21
Fixed
- Search returns no results for common words ("the", "a", etc.): PostgreSQL FTS drops English stop words, so
to_tsquery('english', 'the:*')silently returns zero rows without raising an error -- meaning the ILIKE fallback never triggered. All three search paths (artists, albums, tracks) now fall through to ILIKE when FTS returns an empty result set. /healthendpoint returns no diagnostic detail: Both/healthand/api/healthpreviously returned only{"status":"ok"}regardless of dependency state. They now ping PostgreSQL and Redis, returnuptime,version,db, andredisfields, and respond with HTTP 503 when either dependency is unavailable.
Changed
- TypeScript strict mode enabled (frontend):
"strict": trueinfrontend/tsconfig.json. Fixed 31 implicit-any and strictNullChecks errors across album/artist/podcast pages, MetadataEditor, AlbumHero, ArtistHero, ArtistActionBar, AvailableAlbums, useDiscoverData, LibraryAlbumsGrid, LibraryTracksList, UnifiedSongsList, CacheSection, useQueries, useTVNavigation. - Redis client consolidation: Removed
redis(node-redis v4) dependency entirely. All ~30 backend files now useioredisexclusively. Eliminated the dual-client footgun. Pub/sub intextEmbeddingBridgerewritten to ioredis event-based API. - routes/library.ts split: 4364-line god-file split into
routes/library/sub-routers:artists,albums,tracks,streaming,coverArt,scan,backfill. Each file has a single clear responsibility.library.tsis now a 10-line re-export barrel. - services/programmaticPlaylists.ts split: 3842-line god-file split into
services/mixes/sub-modules:genreMixes,moodMixes,timeMixes,discoveryMixes,helpers,index.programmaticPlaylists.tsis now a 7-line re-export barrel. - Startup task consolidation: Three concurrent IIFE startup tasks (audiobook sync, artist counts backfill, image backfill) consolidated into a sequential
runStartupTasks()function to avoid overwhelming DB connections at startup. - Dead code removal: Removed unused
ffmpeg-staticdependency (not imported anywhere); addedprebuildscript to cleandist/before each build.
Fixed (internal)
- enrichmentStateMachine tests: Updated mock for
enrichmentStateServiceto includepublishToChannelmethod. Tests for Python analyzer C2 bridge now correctly assert againstpublishToChannelinstead of raw Redispublish(which was never called after the ioredis consolidation refactored the channel through the service layer).
Tests
- Tier 1 backend test coverage added: New test suites for
services/search.ts(22 tests --queryToTsquerylogic, special char handling, search service),routes/share.ts(17 tests -- share token lifecycle, play counting, unauthenticated access),routes/webhooks.ts(14 tests -- Lidarr webhook events, secret validation, error handling),services/musicScanner.ts(49 tests -- pure parsing helpers, path normalization, metadata extraction),routes/library/albums.ts(17 tests -- pagination, filtering, delete). Total test count: 307 (up from 173).
[1.7.3] - 2026-03-20
Fixed
- Cover art 404s after volume wipe or permission change (#149): Artist enrichment and album cover fetch now check if native cover files actually exist on disk before preserving stale DB paths. Added
nativeFileExists()utility,repairBrokenCovers()service, andPOST /enrichment/repair-coversendpoint to scan and clear broken cover paths for re-fetch. - ARM64 Docker builds missing core Python dependencies (#1):
tensorflow-cpuhas no Linux ARM64 wheels, and all pip installs were chained -- so tensorflow failure prevented redis, bullmq, and other core deps from installing. Split into three layers: core deps (always succeed), ML deps (torch/CLAP -- works on ARM64), and tensorflow/essentia (gracefully degrades on ARM64 with log message). - Misleading "Remove docker-compose.override.yml" message on non-Docker installs (#147): Replaced Docker-specific text with generic "Service not detected" message for Audio Analysis and Vibe Similarity on Proxmox LXC and bare metal installs.
- Unused
artistHeroUrlparameter in enrichAlbumCovers: Cleaned up dead parameter that was passed but never used.
[1.7.2] - 2026-03-18
Fixed
- Multi-container docker-compose: fresh install shows login instead of setup wizard (#158): Next.js rewrites were compiled at build time with
127.0.0.1:3006baked in becauseNEXT_PUBLIC_BACKEND_URLwas never passed as a build arg. In multi-container mode the frontend container can't reach127.0.0.1:3006(that's the backend container). Fix: addedNEXT_PUBLIC_BACKEND_URLas a Dockerfile build arg, defaulting tohttp://backend:3006in docker-compose.yml. The reporter's CORS issue was a secondary symptom -- once the proxy works, all requests are same-origin. - Audiobookshelf sync silently skips books: Books with no title returned early without throwing, but
syncAllcounted them as synced. NowsyncAudiobookreturns a boolean; skipped books incrementresult.skippedinstead ofresult.synced. - Audiobookshelf sync notification hides failures: The "Synced N audiobooks" notification now includes failed/skipped counts when non-zero.
- Audiobookshelf cover download can hang indefinitely:
downloadCover()had no fetch timeout. AddedAbortSignal.timeout(10_000)to prevent a single slow cover from stalling the entire sync. - Audiobookshelf book size includes non-audio files: Changed
book.sizetobook.media?.sizefor audio-only size.
Added
- Sync button on audiobooks page: Users can now sync audiobooks directly from the audiobooks page without going through settings or triggering a full enrichment cycle. Shows synced/failed/skipped counts in a toast and refreshes the grid automatically.
[1.7.1] - 2026-03-17
Fixed
- Playlist track count not updating live: Adding a track to a playlist from the album page or library (collection) no longer requires a page refresh. The React Query cache is now invalidated at all three
addTrackToPlaylistcall sites (album/[id]/page.tsx,useLibraryActions,useAddToPlaylistMutation). Closes #157. - Settings: stale restart-required modal removed: The "Restart Required" modal was a remnant of an old architecture -- services reinitialize live when settings are saved. The modal and all supporting state (
changedServices,originalSettings) have been removed. Closes #158. - YouTube / YouTube Music playlist import broken:
/api/browse/playlists/parsenow handlesyoutube.comandmusic.youtube.comURLs in addition to the shortyoutu.beform. Closes #155. - Lidarr MBID mismatch (album MBID sent to artist endpoint):
verifyArtistNamewas incorrectly receiving the album MBID from Lidarr search results and passing it to the MusicBrainz/artist/{id}endpoint, causing 404s on every verification. Closes #156. - Hardcoded port-3030 in API base URL detection:
getApiBaseUrlno longer hard-codes port 3030 as the "frontend" port. It now returns a relative URL by default, making Kima work behind any reverse proxy or non-standard port mapping. Closes #154.
Changed
- Dead code removed: unused
setIsBulkAdd/setIsAddingToPlayliststate on album page; unuseduseSearchParams()call in settings page.
[1.7.0] - 2026-03-16
Added
- Vibe 3D galaxy view: New immersive "galaxy" toggle on the Vibe page renders your library as a navigable 3D star field using React Three Fiber + Three.js. Tracks are positioned by their vibe embeddings, lit by a dynamic space grid with depth lines, and colored by mood. Double-click any point to play. Camera uses map controls with smooth zoom and pan. Rendered in a dedicated
GravityGridScenewith cluster label billboards, optimized point instancing, and post-processing disabled for GPU performance. - Vibe map pre-compute and KNN acceleration: Map data is now pre-computed on the backend at enrichment completion rather than on first page load. KNN graph is built incrementally (100-at-a-time) against a pre-sorted index, cutting cold-start time from seconds to milliseconds on large libraries.
- GitHub Actions CI pipeline: Full multi-stage CI across all PRs and pushes to main. Stages: lint + typecheck (frontend + backend), unit tests (Jest), security scan (CodeQL + secrets), E2E predeploy tests (Playwright against a real Docker build), nightly build + push to Docker Hub and GHCR.
- E2E enrichment cycle spec: Playwright test that wipes all enrichment data, triggers a full re-enrich, polls until completion, then asserts track success rate >= 80%, vibe map populated, vibe search returning results, and failure rate < 20%. Skips gracefully when the library has fewer than 10 tracks (CI containers). Companion shell script (
scripts/run-enrichment-memory-test.sh) captures host SUnreclaim and container RSS before/after and fails the run if slab growth exceeds 1 GB. - E2E vibe spec: Playwright test covering vibe map load, track selection, song path generation, vibe search, alchemy (track blending), and similar-tracks suggestions.
- PWA offline fallback: Service worker now serves a cached offline page when navigation requests fail. Cached on install alongside the app shell.
- PWA update banner: App detects when a new service worker is waiting and shows a non-blocking "Update available" banner. Clicking it activates the new worker and reloads.
- Web app manifest fixes:
display_overridewithwindow-controls-overlayfor desktop PWA title bar space. Correctedscope,start_url, andidfields. Addededge_side_paneland screenshot metadata.
Fixed
- Enrichment: audio counter stale at completion:
audio.completedin the Redis state snapshot was frozen at the value from the lastaudioQueued > 0cycle. Once all tracks were queued, the update block was skipped while Essentia continued processing in the background, leaving the counter stuck (e.g. 171/232). The counter is now flushed from the live DB count at theisFullyCompletetransition before going idle. - Security: double authentication in system settings:
requireAdminalready enforces authentication, so the redundantrequireAuthcall before it was removed. - Security: OOM from Next.js VMA accumulation: The App Router's map-style routes allocate ~15 TB of virtual memory, causing
anon_vma_chainslab exhaustion on the host kernel. Mitigations: Docker memory cap (mem_limit: 6g,memswap_limit: 8g) in both compose files; Node 22 in the Dockerfile (V8 improvements reduce anonymous VMAs);MALLOC_ARENA_MAX=1for the frontend process (fewer glibc arenas);NODE_OPTIONS=--max-old-space-size=512for the frontend (bounds heap to reduce GC-driven VMAs). - Security: DoS vectors patched: Unbounded enrichment queue, unguarded bulk endpoints, and routes missing rate limits addressed in the production hardening pass.
- Security: SSRF vector in webhook callback validation: Callback URLs are now validated against an allowlist of configured hosts before being followed.
- Vibe map accuracy: SLERP interpolation corrected, similarity formula made consistent between search and map. Distinct mood colors assigned per cluster. ARIA labels added to interactive elements.
- Vibe map timer leak:
setIntervalpolling the map data endpoint was not cleared on unmount. Replaced with React Query cache with explicitstaleTime. - Vibe request ref cleanup:
vibeRequestRefwas not cleaned up on component unmount, causing stale abort signals on re-mount. - Mobile: full-height vibe page rendering: CSS height chain corrected from
html/bodythrough layout to vibe page so the map fills the viewport without overflow or clipping on mobile. - Subsonic:
.viewsuffix normalization: Requests from clients that append.viewto endpoint names (e.g.getCoverArt.view) are now normalized before routing. Expanded OpenSubsonic endpoint compatibility. - Service worker: stale styles after rebuild: SW was caching HTML and CSS documents, causing users to see outdated styles until manual cache clear. HTML and CSS are now excluded from the SW cache entirely.
- dead
sourceTrackvariable: Removed dead variable from vibe request path. - Abort signal not wired to vibe fetch: Cancelling a vibe search now properly aborts the in-flight fetch.
Changed
- vibe-test prototype page removed: The
/vibe-testdev sandbox page and its associated R3F prototype components (VibeUniverse,TrackCloud,TrackTooltip,universeUtils) have been removed. The production galaxy view lives inGravityGridScene. - NowPlayingTab simplified: Removed legacy MusicCNN sections from the vibe sidebar -- radar chart (recharts), mood spectrum bars, audio features grid (BPM/key/energy/danceability/valence/arousal), and match score badge. These all showed "--" because
audioFeaturesis no longer populated since the vibe system moved to CLAP. The tab now shows album art and track info only. - README: Vibe section rewritten with Map, Galaxy, Drift, and Blend subsections and fresh screenshots. All 19 screenshots retaken at 1440x900 desktop / 390x844 mobile with correct logo rendering.
Removed
rechartsdependency (zero usages after NowPlayingTab cleanup).- Dead dev artifacts:
backend/test_dedup_manual.ts,backend/src/scripts/testDataCleanup.ts.
[1.6.4] - 2026-03-12
Fixes #152. Addresses #145.
Fixed
- Version display (#152): Frontend and backend package.json were not bumped for 1.6.3. Both now read from package.json dynamically
- Long track playback stalling (#145): Added playback watchdog that monitors currentTime progress every 1s. If no advancement for 3s while playing, automatically reloads the stream at the saved position and resumes playback. Supplementary stalled event listener with 10s grace timer as fallback recovery path. Recovery limited to 3 attempts before surfacing an error
- Page refresh kills playback (#145): After a page refresh, pressing play now reloads the stream for the restored track/audiobook/podcast instead of doing nothing. Audiobook and podcast progress is seeked to saved position
- Network retry improvements: Exponential backoff (1s/2s/4s) replaces linear (2s/4s), max retries bumped from 2 to 3. Network retries and stall recoveries now auto-resume playback instead of requiring manual "Tap play to resume"
- Stream cache validation: Added ETag and Last-Modified headers to audio streaming responses, enabling browser If-Range optimization for efficient reconnection after stalls
Changed
- Centralized User-Agent version: All backend HTTP clients now use a shared USER_AGENT constant from config.ts (derived from package.json) instead of hardcoded version strings scattered across 12 files
[1.6.2] - 2026-03-05
Closes #32. Partially addresses #25, #90, #124, #139.
Added
-
Skip MusicBrainz when Lidarr disabled (#90, #124): Playlist imports no longer call MusicBrainz for MBID resolution when Lidarr is not configured. Soulseek searches by artist+album+track text and never uses MBIDs, so MB API calls were pure waste for Soulseek-only users. A 170-song import that took ~15 minutes now generates its preview in seconds. Albums without MBIDs route directly to Soulseek instead of being blocked or misrouted to track-based acquisition.
-
Import cancellation with AbortSignal: Cancelling a playlist import now immediately aborts all in-flight and queued Soulseek searches and downloads. Previously,
cancelJob()only marked DB records as failed while rate-limiter-queued searches continued executing for minutes. AbortSignal threads fromcancelJob()through the PQueue album pipeline, acquisition service, rate limiter, search strategies, and download retry loop. -
Background playlist imports: Importing a playlist URL no longer navigates to a full-page progress screen. Imports fire in the background with a toast notification, and the user stays on their current page. Completion, failure, and cancellation show toast notifications via SSE events.
-
Import URL dedup: Submitting the same playlist URL while an import is already active returns the existing job instead of creating a duplicate. URLs are normalized (host + pathname, trailing slashes stripped) for reliable matching.
-
Imports management tab: New "Imports" tab in the Activity Panel shows all active and past imports with real-time progress bars, status badges, cancel buttons, and links to created playlists.
-
Import page reconnect: Refreshing
/import/playlistwhile an import is running reconnects to the active job's progress instead of showing a blank form. -
Early playlist name resolution: Quick imports now fetch the real playlist name from Spotify/Deezer before enqueueing, so the Imports tab shows the actual name immediately instead of a generic placeholder.
-
Playlist action hub: Create, Import URL, Import File (M3U), and Browse buttons directly on the playlists page. No more navigating through Browse to import.
-
Sidebar create playlist: The "+" button in the sidebar now opens an inline create dialog instead of navigating away.
-
M3U playlist import: Upload
.m3u/.m3u8playlist files to create playlists by matching entries against your library. 4-tier matching: file path, filename, exact metadata, fuzzy metadata (fuzzball). -
Multi-playlist add: The "Add to Playlist" picker in the full player now supports selecting multiple playlists at once with checkboxes and a confirm button. Existing single-select callers are unchanged.
-
Playlist visibility toggle: Globe/Lock button on the playlist detail page lets owners toggle public/private visibility. Previously required database editing for imported playlists.
-
BullMQ import queue: Playlist imports (Spotify, Deezer, M3U) now run via a dedicated
playlist-importBullMQ queue instead of fire-and-forget async. Provides crash recovery, visibility in Bull Board admin panel, and proper queue semantics. -
Podcast refresh buttons: RefreshCw button on podcast detail page checks for new episodes. "Refresh All" button on main podcasts page queues refresh for all subscriptions via BullMQ.
-
Custom RSS feed subscription: "Add RSS Feed" button on the main podcasts page lets users subscribe to any podcast by pasting a direct RSS feed URL, without needing to find it on Apple Podcasts.
-
Conditional GET for feed refresh: Podcast feed fetches now send
If-Modified-SinceandETagheaders, receiving 304 Not Modified when feeds haven't changed. Reduces bandwidth and server load for hourly auto-refresh.
Changed
- Route rename:
/libraryis now/collection(redirects preserved)./import/spotifyis now/import/playlist(redirects preserved with query params). - Onboarding simplified to 2 steps: Removed the informational step 3 (enrichment/analysis features). Onboarding is now Account + Integrations, with "Complete Setup" finishing directly from step 2.
- Smoother sync progress bar: SSE events now emit every 1% instead of 2%, and polling fallback tightened from 2s to 500ms. Progress bar reflects real scan data at higher resolution.
- Import cancel cleanup: Cancelling an import now fully removes all DB records, Redis cache entries, and BullMQ jobs. Failed imports with zero matched tracks also clean up automatically. Partial failures preserve matched tracks.
Fixed
- Security: hardcoded Last.fm API key removed: Default fallback API key removed from source code.
LASTFM_API_KEYenvironment variable is now required for Last.fm enrichment.
Removed
-
Dead code cleanup: removed 3 unused service files (
openai.ts,fileValidator.ts,Skeleton.tsx), 16 unused exports across utils/middleware/workers, and debug console.logs from Soulseek search hook. -
Spotify 100-track pagination: Anonymous Spotify tokens cap
tracks.totalat 100, preventing pagination from triggering. Now speculatively fetches additional pages when a full page of results is received, bypassing the cap for playlists of any size. -
Playlist partial update schema:
PUT /playlists/:idpreviously requirednamein every request body (using create schema). Now uses a dedicated update schema where bothnameandisPublicare optional, supporting partial updates without resetting unrelated fields. -
Artist MBID race condition: Concurrent enrichment workers could both check that an MBID was free, then both try to claim it, crashing the second worker with a unique constraint violation. All four MBID write sites now catch Prisma
P2002errors and gracefully skip the MBID update while preserving other enrichment data. -
Double import on page refresh: Refreshing
/import/playlistwhile an import was running fired a second import for the same URL. Removed auto-start behavior; the page now checks for active imports and reconnects to them.
[1.6.1] - 2026-03-03
Closes #121, #125, #136, #138. Partially addresses #139, #25, #108, #30.
Added
- Share links: Generate shareable URLs for playlists, tracks, and albums. Public playback page with built-in audio player, no account required. Token-based access with optional expiry and play count limits. Share popover in playlist page with copy-to-clipboard and revoke.
- Playlist inline rename: Click playlist title to edit in place. Enter to save, Escape to cancel, click-away to save. Input stays open on save failure for retry.
- Player queue and add-to-playlist buttons: Queue navigation button and add-current-track-to-playlist button in the full player bar.
- Local artist images: Library scanner discovers
artist.jpg/folder.jpg/.png/.webpin music directories and copies them to the image cache. Enrichment preserves local images over external URLs. - Playback queue expanded to 2000 items: Queue storage increased from 100 to 2000 tracks (frontend and backend).
- GHCR publishing: Docker images now published to GitHub Container Registry alongside Docker Hub on tagged releases. Credit to @SupremeMortal (#48).
- #134 Lidarr batch album fetching: Large Lidarr libraries no longer crash with V8 string overflow -- albums are fetched in paginated batches. Credit to @cachamber.
- #132 Preview volume sync: Preview audio volume now syncs with the global player volume. Credit to @cachamber.
- Safari audio session hint: Explicitly sets
navigator.audioSession.type = "playback"on Safari 16.4+ to ensure the correct AVAudioSession category before first playback.
Fixed
- Security: path traversal in cover art serving:
getLocalImagePathandgetResizedImagePathlacked path containment checks. Addedpath.resolve+startsWithguards matching the existingvalidateCoverPathpattern. Removed deadlocalImageExistsfunction. - Security: share stream missing error handlers: Raw
createReadStream.pipe(res)replaced withstreamFileWithRangeSupportutility for proper stream error handling and file descriptor cleanup on client disconnect. - Security: global JSON body limit too broad: 5mb limit applied to all routes. Replaced with conditional middleware -- 5mb for playback state only, 1mb for everything else.
- Enrichment: manual enrich overwrites local artist images:
applyArtistEnrichmentunconditionally replacedheroUrlwith external URLs. Added DB re-read + native path guard matching the background worker. - Enrichment: stale heroUrl reference in download fallback: Removed misleading
artist.heroUrlcheck on stale function parameter. The downstream DB re-read handles native path preservation. - Scanner: wrong artist image in deep directory structures: Directory iteration went shallow-to-deep, matching genre-level
folder.jpgbefore artist-level. Reversed to deep-to-shallow. - UI: playlist rename and add-to-playlist fail silently: Added try/catch with toast errors. Rename input stays open on failure for retry.
- Mobile: double-tap to play tracks not working:
onDoubleClickon track rows does not fire on touch devices. Addedtouch-action: manipulationand custom double-tap detection viaonTouchEndwith 300ms window across all 7 track list components. Desktop double-click preserved. - Mobile lyrics: text clipped by album art container: Lyrics crawl rendered above album art but was clipped by the parent's
overflow-hidden. Replaced with a full lyrics view that swaps out the album art when active. Synced lyrics auto-scroll to the active line; plain lyrics are freely scrollable. - Enrichment: audio analysis and vibe embeddings running simultaneously: Both ML models (Essentia + CLAP) competed for CPU/GPU, causing UI flickering. Vibe phase now defers until audio analysis is fully idle. Removed per-track vibe job queuing from the audio completion subscriber --
executeVibePhasesweep is now the sole queuing path. - UI: activity panel reopens after closing:
useEffectdependency on the fullactivityPanelobject caused event listener teardown/re-register on every open/close. Destructured to stableuseCallbackrefs. - UI: silent failures on playlist operations:
handleRemoveTrack,handleToggleHide,handleRemovePendingTrack, andhandleDeletePlaylistcaught errors with onlyconsole.error. Addedtoast.errorto all four. - Player: dead
handleSeekwrappers: Removed pass-through wrappers in FullPlayer, OverlayPlayer, and MiniPlayer.seekpassed directly toSeekSlider. - Artist page popular tracks: Improved title matching with three-tier fallback (exact, normalized, aggressively stripped) so remaster/deluxe variants match correctly as owned. Unowned tracks now show artist hero image instead of gray placeholder.
- Card hover overlay regression: Dark gradient overlays caused blackout effect on album art hover. Made overlay conditional on playable cards, softened opacity on grid cards.
- Album navigation delay: First click to album pages felt unresponsive due to
prefetch={false}on all card Links. Enabled Next.js prefetching for instant navigation. - GHCR image name casing:
github.repository_ownerpreserves uppercase but GHCR requires all-lowercase. Compute image name at runtime with bash lowercase conversion. - #128 Subsonic rate limit too low for Symfonium sync: Large libraries (2000+ songs) hit the 300 req/min rate limit during Symfonium sync. Bumped to 1500 req/min -- self-hosted service behind auth, no brute-force risk.
- Mobile: lock screen always shows "playing" / steals Bluetooth/CarPlay: Removed the silence keepalive system that looped near-silent audio to maintain the OS audio session while paused.
- Mobile: resumeWithGesture shows "playing" when blocked by OS: Now awaits confirmation and reverts on failure.
- Audiobook progress overwritten on track end: Completion flag was immediately overwritten by the pause-triggered progress save. Fixed ordering.
- Duplicate "play" event firing: Now emits only on
playing(when audio is actually producing sound). - MediaSession metadata unnecessary re-renders: Removed
isPlayingfrom metadata effect deps. - Mobile: lock screen stuck on "playing" after errors: Added
errorevent to MediaSession playbackState listeners. - Mobile: audio stops silently in background: Network retry now emits proper error for UI recovery.
- Mobile: foreground recovery too narrow: Clears error on foreground return.
- Podcast progress bar reverts on pause: Now updates React state after API save.
- Mobile: permanent pause after phone call/Siri: Tracks pre-interruption state and attempts auto-resume.
- Enrichment:
isPausedpermanently stuck after Stop: MovedisStoppinghandler to top of cycle. - Enrichment: vibe re-run doesn't restart cycle: Now calls
triggerEnrichmentNow()and cleans completed BullMQ jobs. - Enrichment: BullMQ jobId dedup silently drops re-queued vibe tracks: Added
vibeQueue.clean(0, 0, 'completed')beforeaddBulk(). - Enrichment: stale failure records inflate "View Failures" count: CLAP analyzer resolves failures on success.
Removed
- Swagger API documentation: Removed
swagger-jsdoc,swagger-ui-express, and all 16@openapiannotations. 30 packages eliminated. - Debug logging: Removed 20 debug
console.log/console.warnstatements. - Unused dependencies: Removed
react-virtuoso,silence-keepalive.ts, deadpauseRef.
Changed
-
Audio state context cleanup: Removed unused exports
isRepeat,lastServerSync,setLastServerSync,isHydratedfrom context type and provider value. -
Frontend query keys standardized: Raw
["playlist", id]string arrays replaced with centralizedqueryKeyshelpers across the playlist page. -
Share API
entityTypetyped: Parameter typed as"playlist" | "track" | "album"union instead ofstring. -
Playlist mutations use React Query: Track removal and playlist deletion now use mutation hooks with automatic cache invalidation instead of direct API calls.
-
AuthenticatedLayout: Public path matching changed from exact match to prefix match for
/share/*routes. -
Playlist import performance: Parallelized MusicBrainz lookups via Promise.all. Batch-loaded all library tracks -- reduced ~3000 per-track DB queries to 2 batch queries.
-
Dependencies: Updated safe patches -- @bull-board 6.20.3, axios 1.13.6, bullmq 5.70.1, ioredis 5.10.0, fast-xml-parser 5.4.1 (stack overflow CVE fix), tailwindcss 4.2.1, framer-motion 12.34.3, tailwind-merge 3.5.0. Fixed npm audit vulnerabilities.
[1.6.0] - 2026-03-02
Fixed
- Enrichment: failure count inflation: Python audio analyzer recorded EnrichmentFailure on every attempt, not just after max retries. Removed Python writer; Node.js audioAnalysisCleanup is now the sole writer. Added success resolution in
_save_results()for immediate cleanup instead of hourly sweep lag. - Enrichment: isPaused permanently stuck after Stop: Stop control message set
isPaused=truewhich was never cleared becauseshouldHaltCycle()was unreachable from the early return. MovedisStoppinghandler to top ofrunEnrichmentCycle(). AddeduserStoppedflag to prevent auto-restart via timer while allowing explicit re-run/enrich actions. - Enrichment: Stop doesn't reach Python analyzer:
enrichmentState.stop()only published toenrichment:control. Now also publishespausetoaudio:analysis:control(notstop, which would exit the process). Resume publishesresumeto both channels. All re-run functions resume the Python analyzer viaclearPauseState(). - Enrichment: state sync stopping deadlock: If
enrichment:controlmessage was lost but state service showedstopping, the sync setisPaused=truewith noisStoppingto clear it. State sync now handlesstoppingdirectly by transitioning to idle. - Enrichment: reverse sync for missed resume: If local
isPausedwas stale but state service showedrunning, the cycle stayed paused. Added reverse sync to detect and clear the mismatch. - Enrichment: crash recovery gaps: Startup now resets artists stuck in
enrichingstatus and tracks with_queuedsentinel inlastfmTags, in addition to existing audio/vibe processing resets. - Import: duplicate playlists on large imports:
checkImportCompletion(),buildPlaylistAfterScan(), andbuildPlaylist()lacked idempotency guards. Late download callbacks and queueCleaner re-queued scans that each created a new playlist. Added status guards at all three layers. - Import: processImport overwrites cancel: Setting
status="downloading"without checking if already cancelled. Added cancel guard. - Enrichment failures: TOCTOU race in recordFailure: Find-then-create pattern replaced with atomic
prisma.enrichmentFailure.upsert(). Also resetsresolved=falseon re-failure (previously hidden from UI). - Enrichment failures: Python/Node.js Track status race: Added
WHERE analysisStatus='processing'optimistic lock to_save_results()and_save_failed(). Prevents stale writes when cleanup resets a track near the 15-minute threshold. - Discovery: duplicate Discover Weekly jobs:
discoverQueue.add()now uses deterministicjobIdbased on userId + week, preventing cron/manual trigger overlap. - Discovery: checkBatchCompletion race: Re-reads batch status after 60s Lidarr wait. Added
expectedStatusparameter toupdateBatchStatusoptimistic locking for belt-and-suspenders protection. - Discovery: album status reset on regeneration:
discoveryAlbum.upsert()update branch no longer setsstatus: "ACTIVE", preserving user's LIKED/DELETED decisions. - Scanner: ownedAlbum duplicate constraint violation: Replaced
create()withupsert()using compound key. - Streaming: transcodedFile duplicate constraint violation: Replaced
create()withupsert()oncachePath. - Downloads: notification retry creates duplicates: Added dedup check before
downloadJob.create()at all 3 retry handlers. - Webhook: unnecessary Lidarr API calls: Skip reconciliation when no processing download jobs exist.
- Infrastructure: audio-analyzer supervisor autorestart: Changed from
unexpectedtotrue(matching backend fix). - Infrastructure: Redis startup race: Added Redis readiness loop to
wait-for-db.shwith separate counter. Backend supervisor changed toautorestart=true. - Python: deprecated datetime.utcnow(): Replaced with
datetime.now(timezone.utc).
Added
- 37 new tests across 9 test files covering enrichment state machine, idempotency guards, queue dedup, notification dedup, and Python optimistic locking.
[1.6.0-pre.2] - 2026-03-01 (nightly)
Fixed
- Enrichment: vibe progress jumps 0% to 100%: CLAP analyzer reported completion via internal HTTP callbacks but never emitted SSE events. Added
enrichment:progressSSE event type with broadcast support (userId: "*"), emitted from vibe success/failure endpoints. Frontend SSE handler invalidates theenrichment-progressquery on each event for immediate re-fetch. - SSRF protection: Added
validateUrlForFetch()to podcast stream and download paths to block requests to internal networks. - CORS enforcement: Reject unlisted CORS origins instead of allowing all.
- Encryption KDF: Always derive encryption key via SHA-256 with legacy fallback.
- Query limits: Clamp
/playslimit to max 200. - Webhook secret comparison: Use
crypto.timingSafeEqualfor timing-safe webhook secret validation. - Webhook log spam: Rate-limit missing webhook secret warning to once per process.
- Stream TTL sweep: Add 1-hour TTL sweep for stale
activeStreamsentries. - Transcode race condition: Deduplicate concurrent transcodes via in-flight map.
- Streaming singleton: Make
AudioStreamingServicea singleton to prevent duplicate instances. - Enrichment reset: Exclude processing tracks from full enrichment reset.
- Image cache eviction: Add LRU eviction to
useImageColorlocalStorage cache (max 500 entries). - Preview audio leak: Remove old preview audio elements from map when switching tracks.
- Keyboard shortcut re-renders: Move keyboard shortcut deps to refs for stable effect.
- Player polling loop: Move
lastServerSync/queue/index/shuffle to refs in poll effect. - Queue desync on track removal: Handle removing current track from middle of queue.
- Overlay re-open on auto-advance: Don't re-open overlay on auto-advance after first play.
- Previous track restart: Restart current track if position > 3s on previous button press.
- Podcast detection: Split podcast composite ID before URL comparison.
[1.6.0] - 2026-02-28
Added
- Synchronized lyrics: LRCLIB integration fetches timed
.lrclyrics during library scan. Full-player and overlay-player display synced lyrics with a 3-line stacked view (previous/current/next). Lyrics toggle in activity panel with owner-based priority so Discovery settings don't override an active lyrics view. - LRCLIB rate limiting: Lyrics API calls go through the global rate limiter (2 req/s, concurrency 1) to respect upstream limits.
Fixed
- Enrichment pipeline: Fixed 7 issues -- vibe re-run no-ops (dedup cache not cleared), completion notification never firing (dead in-memory counters replaced with DB query), infinite artist retry loop (final attempt reset status to pending), phantom state after shutdown, podcast failures excluded from counts, orphaned frontend type, and removed dead vibe reset endpoint.
- Feature flags go stale: Now polls every 60s instead of fetching once on mount.
- Mood mixer threshold mismatch: Frontend threshold now matches backend minimum (8 tracks).
- iOS Safari audio playback: Reset stale network retry count on preload swap, removed competing silence keepalive from resume gesture, guarded redundant
play()calls, pre-set track ref for deterministic deduplication, and capped error cascade at 3 consecutive failures. - iOS AirPod/lock-screen resume: Silence keepalive
prime()in the MediaSession play handler consumed the iOS user gesture budget before the actual audio resume. Moved keepalive priming to the pause handler so the play handler's full gesture is available fortryResume(). - Audio analyzer retry loop: Failed tracks had retry count reset to 0 on re-queue, bypassing the max-retries guard. Now preserves count so broken tracks are excluded after 3 attempts.
- CLAP search timeouts: Model unloaded after 10s idle when all tracks were embedded, causing ~20s cold-start on every vibe search. Now uses standard 5-minute idle timeout. Backend search timeout increased to 60s.
[1.5.11] - 2026-02-27
Added
- #25 Full playlist pagination for Spotify and Deezer imports -- playlists of any size are now fully imported instead of silently capping at 100 (Spotify) or 25 (Deezer) tracks. Paginated fetch with rate limit handling, partial result recovery, and SSE progress reporting ("Fetching tracks: X of Y...").
- #8 Configurable Lidarr quality and metadata profiles -- previously hardcoded to profile ID 1. New dropdowns in Settings > Download Services appear after a successful connection test, populated from Lidarr's API. Stored in system settings and used for all artist/album additions.
[1.5.10] - 2026-02-27
Added
- #122
DISABLE_CLAP=trueenvironment variable to disable the CLAP audio embedding analyzer on startup in the all-in-one container (useful for low-memory deployments) - #123 Foobar2000-style track title formatting in Settings > Playback -- configure a format string with
%field%,[conditional blocks],$if2(),$filepart()syntax; applied in playlist view - #124 Cancelling a playlist import now creates a partial playlist from all tracks already matched to your library, instead of discarding progress
Fixed
- #124 Cancel button previously promised "Playlist will be created with tracks downloaded so far" but discarded all progress -- now delivers on that promise
- iOS lock screen controls inverted: MediaSession
playbackStatewas driven by ReactuseEffectonisPlayingstate, which fires asynchronously after render -- not synchronously with the actual audio state change. This caused lock screen controls to show the opposite state (play when playing, pause when paused). Rewrote MediaSession to driveplaybackStatedirectly fromaudioEngineevents, call the engine directly from action handlers to preserve iOS user-gesture context, and use ref-based one-time handler registration to avoid re-registration churn. - Favicon showing old Lidify icon or wrong Kima logo: Browser tab showed the pre-rebrand Lidify favicon. Replaced with the waveform-only icon generated from
kima-black.webpas a proper multi-size ICO (16/32/48/64/128/256px) with tight cropping so the waveform fills the tab space. - Enrichment pipeline: no periodic vibe sweep: The enrichment cycle had no phase for queueing vibe/CLAP embedding jobs. The only automatic path was a lossy pub/sub event from Essentia completion -- if missed (crash, restart, migration wipe), tracks were orphaned forever. Added Phase 5 that sweeps for tracks with completed audio but missing embedding rows via LEFT JOIN.
- Enrichment pipeline: crash recovery dead end: Crash recovery reset
vibeAnalysisStatusfromprocessingtonull, which nothing in the regular cycle re-queued. Changed to reset topendingso the periodic sweep picks them up. - Enrichment pipeline: CLAP analyzer permanent death: When enrichment was stopped, the backend sent a stop command causing the CLAP analyzer to exit cleanly (code 0). Supervisor's
autorestart=unexpectedtreated this as expected and never restarted. Changed toautorestart=trueand removed the stop signal entirely -- the analyzer has its own idle timeout. - Enrichment pipeline: completion never triggers:
isFullyCompleterequiredclapCompleted + clapFailed >= trackTotal, which was impossible aftertrack_embeddingswas wiped by migration. Now checks for actual un-embedded tracks via LEFT JOIN. - Enrichment pipeline: "Reset Vibe Embeddings" incomplete:
reRunVibeEmbeddingsOnly()resetvibeAnalysisStatusbut did not delete existingtrack_embeddingsrows, so the re-queue query (which uses LEFT JOIN) silently skipped tracks that already had embeddings. Now deletes all embeddings first for full regeneration. - Feature detection: CLAP reported available when disabled: When
DISABLE_CLAP=truewas set,checkCLAP()skipped the file-existence check but still fell through to heartbeat and data checks. If old embeddings existed in the database, it returnedtrue, causing the vibe sweep to queue jobs that no CLAP worker would ever process. Now returnsfalseimmediately when disabled. - docker-compose.server.yml healthcheck using removed tool: Healthcheck used
wgetwhich is removed from the production image during security hardening. Changed tonode /app/healthcheck.jsto match docker-compose.prod.yml. - #126 Subsonic JSON
getGenres.viewbreaking Symfonium: Genre responses used#textfor the genre name in JSON output -- correct for XML but violates the Subsonic JSON convention which usesvalue. Symfonium's strict JSON parser rejected the response. FixedstripAttrPrefix()to map#texttovaluein all JSON responses. - #126 Subsonic
getBookmarks.viewnot implemented: Symfonium callsgetBookmarks.viewduring sync and expects a valid response with abookmarkskey. The endpoint hit the catch-all "not implemented" handler, returning an error without the required key. Added an empty stub returning{ bookmarks: {} }. - #91 Artist page only showing 5 popular tracks: Frontend sliced popular tracks to 5 even though the backend returned 10. Now displays all 10.
- #63 MusicBrainz base URL hardcoded: MusicBrainz API URL was hardcoded, preventing use of self-hosted mirrors. Now configurable via
MUSICBRAINZ_BASE_URLenvironment variable (defaults tohttps://musicbrainz.org/ws/2).
[1.5.8] - 2026-02-26
Fixed
- Mobile playback: infinite network retry loop: On mobile networks, transient
MEDIA_ERR_NETWORKerrors triggered a retry cycle that never terminated --canplayandplayingevents reset the retry counter to 0 on every cycle, andaudio.load()resetcurrentTimeto 0, causing the "2-3 seconds then starts over" symptom. Fixed by removing the premature counter resets (counter now only resets on new track load) and saving/restoring playback position across retries. - Mobile playback: silence keepalive running during active playback: The silence keepalive element (used to hold the iOS/Android audio session while paused in background) was started via
prime()from a non-gesture context, thenstop()failed to pause it because theplay()promise hadn't resolved yet, makingel.pausedstill true. Fixed by adding proper async play-promise tracking with apendingStopflag, and removing the non-gestureprime()/stop()calls from the audio engine'splayingevent handler. - Mobile playback: play button tap fails to resume on iOS: All in-app play buttons called
resume()which only set React state; the actualaudio.play()ran in auseEffectafter re-render, outside the iOS user-gesture activation window. Fixed by adding aresumeWithGesture()helper that callsaudioEngine.tryResume()andsilenceKeepalive.prime()synchronously within the gesture context -- the same pattern already used by MediaSession lock-screen handlers. Applied across all 13 play/resume call sites. - Mobile playback: lock screen / notification controls unresponsive after app restore: MediaSession action handlers were never registered when the app loaded with a server-restored track because the
hasPlayedLocallyRefguard blocked registration, and the handler registration effect's dependency array was missingisPlaying, so it never re-ran when the flag was set. Fixed by addingisPlayingto the dependency array. - Cover art proxy transient fetch errors: External cover art fetches that hit transient TCP errors (
ECONNRESET,ETIMEDOUT,UND_ERR_SOCKET) now retry once with a 500ms delay before failing.
Security
- Error message leakage: All ~82 backend route catch blocks replaced with a
safeError()helper that logs the full error server-side but returns only"Internal server error"to the client. Prevents stack traces, file paths, and internal details from leaking to users. - SSRF protection on cover art proxy: The cover-art proxy endpoint now validates URLs before fetching -- blocks private/loopback IPs, non-HTTP schemes, and resolves DNS to check for rebinding attacks. Audiobook cover paths also block directory traversal.
- Login timing side-channel: Login endpoint previously returned early on user-not-found, allowing username enumeration via response timing. Now runs a dummy bcrypt compare against an invalid hash to normalize response times regardless of whether the user exists.
- Device link code generation: Replaced
Math.random()withcrypto.randomInt()for cryptographically secure device link codes. - Unscoped user queries: Added
selectclauses to all Prisma user queries that previously loaded full rows (includingpasswordHash) when only the ID or specific fields were needed. - Metrics endpoint authentication:
/api/metricsnow requires authentication. - Registration gate: Added
registrationOpensystem setting (default: closed) and rate limiter on the registration endpoint. After the first user is created, new registrations require an admin to explicitly open registration. - Admin password reset role check: Fixed case mismatch (
"ADMIN"vs"admin") that could allow non-admin users to trigger password resets.
Housekeeping
- Removed unused
sectionIndexvariables in audiobooks, home, and podcasts pages. - Removed dead commented-out album cover grid code and unused imports in DiscoverHero.
- Fixed missing
useCallbackwrapper forloadPresetsin MoodMixer. - Added missing
previewLoadStateto effect dependency array in usePodcastData.
[1.5.7] - 2026-02-23
Added
- BullMQ enrichment infrastructure: Rewrote the entire enrichment pipeline on top of BullMQ v5, replacing the custom BLPOP/Redis queue loops. Artist, track, and podcast enrichment all run as proper BullMQ Worker instances with job-level pause, resume, and stop support. All queues are visible in the Bull Board admin dashboard. The orchestrator pushes jobs into BullMQ and uses a sentinel pattern to track when all jobs in a phase have completed before advancing.
- Reactive vibe queuing: The Essentia audio analyzer now publishes an
audio:analysis:completeevent to Redis when each track finishes. The CLAP service subscribes and immediately queues a vibe embedding job for that track — eliminating the previous polling-based approach where CLAP scanned the database on a fixed interval looking for newly-completed Essentia tracks.
Fixed
- PWA background audio session lost on iOS and Android: Pausing from lock-screen / notification controls while the app was backgrounded caused iOS to reclaim the audio session, blocking any subsequent
audio.play()call until the app was foregrounded. Fixes two related symptoms: (1) resuming from lock-screen controls appeared to do nothing until the app was opened, (2) music stopped after extended background playback during track transitions. Fixed by: callingaudioEngine.tryResume()synchronously inside the MediaSessionplayhandler (within the user-activation window iOS grants to MediaSession callbacks); adding a silent looping audio keepalive (silence-keepalive.ts) that holds the OS audio session while user audio is paused and the app is backgrounded; loading the next track directly from theendedevent handler to eliminate the inter-track silence gap that triggered session reclaim; and addingvisibilitychange/pageshowforeground recovery to retry playback if the engine is paused when the app returns to the foreground. - Discovery "Retry All" importing entire albums already in library: The
POST /discover/retry-unavailableendpoint fetched all rawUnavailableAlbumrecords for the week without applying the same three-level filter theGET /currentendpoint uses before displaying them. As a result, clicking "Retry All" triggered full re-downloads of albums that were already present in the library (matched by discovery MBID, library MBID, or fuzzy title+artist). The retry handler now applies all three filters before creating download jobs, and deletes staleUnavailableAlbumrecords for albums already in the library so they do not reappear. Closes #34. - Mood-tags phase silently skipping all tracks:
lastfmTagswasNULLfor tracks that had been enriched before the column was added. The mood-tags enrichment phase queriesWHERE lastfmTags != '{}', which never matchesNULL— so every track was silently skipped every cycle. Migration backfills allNULLvalues to'{}'and sets the column default, so newly enriched tracks are never NULL. - Docker image size (28.4 GB → 12.2 GB): Removed all CUDA and NVIDIA dependencies from the Docker image. The
audio-analyzerandaudio-analyzer-clapservices now run on CPU-only PyTorch and TensorFlow. Changed pip installs to use the CPU-only PyTorch wheel index (--index-url https://download.pytorch.org/whl/cpu), replacedtensorflowwithtensorflow-cpu, and installedessentia-tensorflow --no-depsto prevent pip from pulling the GPU TensorFlow variant as a transitive dependency. Removednvidia-cudnn-cu12,torchvision(not imported), the/opt/cudnn8CUDA layer, and all NVIDIA library paths from the supervisorLD_LIBRARY_PATH. No regressions: TensorFlow confirmed running on CPU, all 9 MusiCNN classification heads load normally. - Docker build context bloat:
frontend/node_modules/(598 MB) andfrontend/.next/(313 MB) were not excluded from the Docker build context. The.dockerignorenode_modulespattern only matched root-level; changed to**/node_modules. Added**/.next. Combined these reduced theCOPY frontend/ ./layer from 946 MB to ~50 MB. - Cover art fetch errors for temp-MBID albums: Albums with temporary MBIDs (temp-*) were being passed to the Cover Art Archive API, causing 400 errors. Added validation to skip temp-MBIDs in artist enrichment and data cache.
- VIBE-VOCAB vocabulary file missing: The vocabulary JSON file wasn't being copied to the Docker image because TypeScript doesn't copy .json files automatically. Added explicit import to force tsc to copy it.
- Redis memory overcommit warning: Added
vm.overcommit_memory=1sysctl to docker-compose.prod.yml and docker-compose.server.yml. - Z-index stacking order: MiniPlayer was z-50 (same tier as modals), causing it to appear above open dialogs due to DOM ordering. Established a consistent stacking hierarchy: MiniPlayer z-[45] → TopBar z-50 → VibeOverlay/toasts z-[55] → MobileSidebar backdrop z-[60] / drawer z-[70] → all modals z-[80] → nested confirm z-[85] → toast z-[100] → OverlayPlayer z-[9999]. MobileSidebar was also using non-standard
z-100which is not a valid Tailwind class. - API token display overflowing viewport on iPhone: The newly-generated token
<code>block extended beyond the screen on narrow viewports due to missingmin-w-0/overflow-hiddenon its flex container; added both. - CLAP BullMQ worker crash on startup:
import psycopg2does not implicitly importpsycopg2.pool; the BullMQ vibe worker was crashing immediately becausepsycopg2.pool.ThreadedConnectionPoolwas referenced without the submodule being imported. Added explicitimport psycopg2.pool. - EnrichmentStateService Redis disconnect error: Calling
disconnect()on an already-closed Redis connection raised an unhandled error. The disconnect is now silenced when the connection is already in a closed state. - CLAP worker thread-safety: All PostgreSQL calls in the CLAP BullMQ worker are now wrapped in
run_in_executorso they execute on a thread-pool thread rather than blocking the asyncio event loop. Connection pool is initialized once per process and shared safely across concurrent jobs.
[1.5.5] - 2026-02-21
Added
- OpenSubsonic / Subsonic API: Native client support for Amperfy, Symfonium, DSub, Ultrasonic, Finamp, and any other Subsonic-compatible app
- Full Subsonic REST API v1.16.1 compatibility, with OpenSubsonic extensions declared
- MD5 token auth — standard Subsonic auth now supported; enter your Kima API token as the password in your client app; the server verifies
md5(token + salt)against stored API keys, avoiding any need to store plaintext login passwords - OpenSubsonic
apiKeyauth — generate per-client tokens in Settings > Native Apps; tokens can be named and revoked individually - Endpoints implemented:
ping,getArtists,getIndexes,getArtist,getAlbum,getSong,getAlbumList2,getAlbumList,getGenres,search3,search2,getRandomSongs,stream,download,getCoverArt,scrobble,getPlaylists,getPlaylist,createPlaylist,updatePlaylist,deletePlaylist,getUser,getStarred,getStarred2,star,unstar,getArtistInfo2 - Enrichment-aware genres — genre fields on albums, songs, and search results are sourced from Last.fm-enriched artist tags rather than static file tags;
getGenresaggregates across the enriched artist catalogue - Enrichment-aware biographies —
getArtistInfo2returns the user-edited summary when present, otherwise the Last.fm biography - HTTP 206 range support on
stream.viewfor seek-capable clients and Firefox/Safari - Scrobbles recorded as
SUBSONIClisten source - DISCOVER-location albums are excluded from all library views
- Named API tokens — Settings > Native Apps token generator now accepts a client name (e.g., "Amperfy", "Symfonium"); previously all tokens were named "Subsonic"
- Public server URL setting — admins can pin a persistent server URL in Settings > Storage; the Native Apps panel reads this URL and falls back to the browser origin when unset
Fixed
- Subsonic
contentTypeandsuffixwrong for FLAC/MP3: The library scanner stores codec names (FLAC,MPEG 1 Layer 3) rather than MIME types. AddednormalizeMime()to translate codec names to proper MIME types before surfacing them to clients — fixes clients that refused to play tracks due to unrecognised content types createPlaylistreturned empty response: Per OpenSubsonic spec (since 1.14.0),createPlaylistmust return the full playlist object. Now returns the same shape asgetPlaylist- DISCOVER albums leaking into search and random:
getRandomSongsraw SQL and thesearch3/search2shared service had no location filter, allowing DISCOVER-only albums to appear in results. Both are now filtered toLIBRARYlocation only - PWA icons: Replaced placeholder icons with the Kima brand — amber diagonal gradient with radial bloom; solid black background for maskable variants;
apple-touch-iconadded; MediaSession fallback artwork wired up - Frontend lint errors (pre-existing):
let sectionIndexchanged toconstin three pages;setPreviewLoadStatemoved inside the async function to avoid calling setState synchronously in auseEffect - Vibe orphaned-completed tracks: Tracks where
vibeAnalysisStatus = 'completed'but no embedding row exists (left over from thereduce_embedding_dimensionmigration) are now detected and reset each enrichment cycle so they re-enter the CLAP queue
[1.5.4] - 2026-02-21
Fixed
- Vibe embeddings never starting:
queueVibeEmbeddingsonly checked forNULLor'failed'status, but theadd_vibe_analysis_fieldsmigration set the column default to'pending'— every track was silently skipped forever. Added'pending'to the WHERE clause. - CLAP infinite retry: Added
VIBE_MAX_RETRIESSQL guard toqueueVibeEmbeddingsso permanently-failed tracks (retry count ≥ 3) are never re-queued. Fixed off-by-one: cleanup used>=(giving 2 resets) instead of>(giving the correct 3). - Null byte crash in music scanner: ASCII control characters in ID3 tags (e.g. embedded null bytes) caused PostgreSQL query failures.
sanitizeTagString()now strips control chars from title, artist, and album tags before any DB write. - Soulseek stuck downloads cycling: Downloads removed from the active list on timeout or stream error were not removed from
SlskClient.downloads, causing the slot to be permanently occupied. AddedremoveDownload()and called it in all three error paths (timeout, download stream error, write stream error). - Artist enrichment duplicate MBID race condition: Two artists resolving to the same real MBID simultaneously caused a Prisma
P2002unique constraint violation, leaving one artist stuck inprocessing. The error is now caught specifically — the duplicate is immediately markedunresolvablewith a warning log. - Admin vibe retry silently skipping tracks:
POST /vibe/retryresetEnrichmentFailure.retryCountbut leftTrack.vibeAnalysisRetryCountat its max value, causing the SQL guard inqueueVibeEmbeddingsto silently skip the track forever. Both counts are now reset together. - Preview job missing ownership check: Spotify preview jobs stored in Redis had no
userId— any authenticated user could read or consume another user's preview result.userIdis now stored in the Redis payload and validated on bothGET /preview/:jobIdandPOST /import. - Playlist import DB pool exhaustion:
matchTrackinsidestartImportused an unboundedPromise.all, saturating the connection pool on large playlists. Wrapped withpLimit(8). - PWA safe area double-inset on iOS:
bodypadding andAuthenticatedLayoutmargin both appliedenv(safe-area-inset-*), doubling the inset gap. Replaced with--standalone-safe-area-top/bottomCSS custom properties that default to0pxin browser mode and are set to the real env values only inside@media (display-mode: standalone). Fixes both the double-inset on iOS PWA and the Vivaldi browser over-inset. - Mobile bottom content gap: Removed the 96px bottom padding (
pb-24) reserved for the mini player. The player is swipeable so the padding is no longer needed.
[1.5.3] - 2026-02-18
Fixed
- Circuit breaker
circuitOpenedAtdrift:failureCount >= CIRCUIT_BREAKER_THRESHOLDstayed true after threshold failures, resettingcircuitOpenedAton every subsequentonFailure()call — the same rolling-timestamp problem aslastFailureTime. Added&& this.circuitOpenedAt === nullto enforce the single-write invariant. - Circuit breaker deadlock:
shouldAttemptReset()measured time since last failure, which resets every cleanup cycle, so the 5-minute recovery window never expired. Fixed by recordingcircuitOpenedAtat the moment the breaker first opens and measuring from that fixed point. recordSuccess()race condition: Success detection bracketed onlycleanupStaleProcessing()— a millisecond window that never captured Python completions (~14s batch cadence). Replaced withaudioLastCycleCompletedCounttracked across cycles;recordSuccess()fires whenever the completed count grows since the previous cycle.- CLAP vibe queue self-heal:
queueVibeEmbeddingsfilteredvibeAnalysisStatus = 'pending', skipping thousands of tracks left as'completed'after thereduce_embedding_dimensionmigration dropped their embeddings. Changed filter to<> 'processing'sote.track_id IS NULL(actual embedding existence) is the source of truth.
[1.5.2] - 2026-02-18
Fixed
- Audio analysis enrichment deadlock: Three compounding bugs caused enrichment to deadlock after 12+ hours of operation.
runFullEnrichmentresetanalysisStatustopendingwithout clearinganalysisRetryCount, silently orphaning tracks the Python analyzer would never pick up (it ignores tracks withretryCount >= MAX_RETRIES).queueAudioAnalysishad noretryCountfilter, queuing tracks Python ignores — these timed out and fed false positives to the circuit breaker.- The circuit breaker fired on
permanentlyFailedCount > 0, which is expected cleanup behavior, making it permanently unrecoverable — it reopened immediately on everyHALF_OPENattempt.
[1.5.1] - 2026-02-18
Fixed
- SSE streaming through Next.js proxy: SSE events were buffered by Next.js rewrites, breaking real-time Soulseek search results and download progress in production. Added a dedicated Next.js API route (
app/api/events/route.ts) that streams SSE responses directly, bypassing the buffering rewrite proxy. - CLAP analyzer startup contention: CLAP model loaded eagerly on container boot (~20s of CPU/memory), competing with the Essentia audio analyzer during startup. Model now loads lazily on first job, which only arrives after audio analysis completes.
[1.5.0] - 2026-02-17
Changed
- REBRAND: Project renamed from Lidify to Kima
- Repository moved to
kima-hubon GitHub - Docker images now published as
chevron7locked/kima - All user-facing references updated across codebase
- First official release under Kima branding
- Soulseek credential changes: Settings and onboarding now reset and reconnect Soulseek immediately instead of just disconnecting
- Soulseek search timeout: Reduced from 45s to 10s for faster UI response (200+ results stream well within that window)
- Search result streaming: Low-quality results (< 128kbps MP3) filtered before streaming to UI, capped at 200 streamed results per search
Added
- Album-level Soulseek search: Discovery downloads use a single album-wide search query with directory grouping and fuzzy title matching, reducing download time from ~15 minutes to ~15-30 seconds
- SSE-based Soulseek search: Search results stream to the browser in real-time via Server-Sent Events instead of waiting for the full search to complete
- Multi-tab audio sync: BroadcastChannel API prevents multiple browser tabs from playing audio simultaneously -- new tab claims playback, other tabs pause
- Network error retry: Audio engine retries on network errors with exponential backoff (2s, 4s) before surfacing the failure
- Stream eviction notification: Users see "Playback interrupted -- stream may have been taken by another session" instead of a generic error
- Stuck discovery batch recovery: Batches stuck in scanning state are automatically recovered after 10 minutes and force-failed after 30 minutes
- Stuck Spotify import recovery: Spotify imports stuck in scanning or downloading states are automatically detected and recovered by the queue cleaner
- Manual download activity feed: Soulseek manual downloads now emit
download:completeevents and appear in the activity feed - Critical Reliability Fixes: Eliminated Soulseek connection race conditions with distributed locks
- 100% Webhook Reliability: Event sourcing with PostgreSQL persistence
- Download Deduplication: Database unique constraint prevents duplicate jobs
- Discovery Batch Locking: Optimistic locking with version field
- Redis State Persistence: Search sessions, blocklists, and cache layer
- Prometheus Metrics: Full instrumentation at
/metricsendpoint - Automatic Data Cleanup: 30-60 day retention policies
- Database-First Configuration: Encrypted sensitive credentials with runtime updates
- Automatic Database Baselining: Seamless migration for existing databases
- Complete Type Safety: Eliminated all
as anyassertions - Typed Error Handling: User-friendly error messages with proper HTTP codes
Fixed
- Discovery download timeout: Album-level search eliminates the per-track search overhead (13 tracks x 5 strategies x 15s) that caused 300s acquisition timeouts
- Worker scheduling starvation:
setTimeoutrescheduling moved intofinallyblocks so worker cycles always reschedule, even when pile-up guards cause early return - Concurrent discovery generation: Distributed lock (
discover:generate:{userId}, 30s TTL) prevents duplicate batches when the generate button is clicked rapidly - Recovery scan routing: Fixed source strings (
"discover-weekly-completion","spotify-import") so recovered stuck scans trigger the correct post-scan handlers instead of silently completing - Unbounded scan re-queuing: Added deduplication flags so stuck batches aren't re-queued by the queue cleaner every 30 seconds
- buildFinalPlaylist idempotency: Early return guard prevents duplicate playlist generation if the method is called multiple times for the same batch
- MediaError SSR safety: Replaced browser-only
MediaError.MEDIA_ERR_NETWORKwith literal value2for Next.js server-side rendering compatibility - Soulseek search session leak: Sessions capped at 50 with oldest-eviction to prevent unbounded Map growth
- Soulseek cooldown Map leak: Added 5-minute periodic cleanup of expired entries from connection cooldown Maps, cleared on both
disconnect()andforceDisconnect() - Unhandled promise rejection: Wrapped fire-and-forget search
.then()/.catch()handler bodies in try/catch - Batch download fault tolerance: Replaced
Promise.allwithPromise.allSettledin album search download phase and per-track batch search/download phases so one failure doesn't abort the entire batch - SSE connection establishment: Added
res.flushHeaders()and per-messageflush()calls to ensure SSE data reaches the client immediately through reverse proxies
Removed
- Debug
console.logstatements from SSE event route and Soulseek search route - Dead
playback-releasedBroadcastChannel broadcast code from audio player - Animated search background gradient (replaced with cleaner static layout)
Infrastructure
- Redis-based distributed locking for race condition prevention
- Webhook event store with automatic retry and reconciliation
- Comprehensive type definitions for Lidarr and Soulseek APIs
- Architecture Decision Records (ADRs) documenting key technical choices
[1.4.3] - 2026-02-08
Fixed
- Backend unresponsiveness after hours of uptime: Replaced
setIntervalwith self-reschedulingsetTimeoutfor the 2-minute reconciliation cycle and 5-minute Lidarr cleanup cycle inworkers/index.ts. Previously,setIntervalfired unconditionally every 2/5 minutes regardless of whether the previous cycle had completed. SincewithTimeout()resolves viaPromise.racebut never cancels the underlying operation, timed-out operations continued running as zombies. Over hours, hundreds of concurrent zombie operations accumulated, starving the event loop and exhausting database connections and network sockets. Each cycle now waits for the previous one to fully complete before scheduling the next, making pile-up impossible.
[1.4.2] - 2026-02-07
Added
- GPU acceleration: CLAP vibe embeddings use GPU when available (NVIDIA Container Toolkit required); MusicCNN stays on CPU where it performs better due to small model size
- GPU documentation: README section with install commands for NVIDIA Container Toolkit (Fedora/Nobara/RHEL and Ubuntu/Debian), docker-compose GPU config, and verification steps
- Model idle unloading: Both MusicCNN and CLAP analyzers unload ML models after idle timeout, freeing 2-4 GB of RAM when not processing
- Immediate model unload: Analyzers detect when all work is complete and unload models immediately instead of waiting for the idle timeout
- CLAP progress reporting: Enrichment progress endpoint now includes CLAP processing count and queue length for accurate UI status
- Discovery similar artists: Search discover endpoint returns musically similar artists (via Last.fm
getSimilar) separately from text-match results - Alias resolution banner: UI banner shown when Last.fm resolves an artist name alias (e.g., "of mice" -> "Of Mice & Men")
Fixed
- Case-sensitive artist search (#64): Added PostgreSQL tsvector search with ILIKE fallback; all artist/album/track searches are now case-insensitive
- Circuit breaker false trips: Audio analysis cleanup circuit breaker now counts cleanup runs instead of individual tracks, preventing premature breaker trips on large batches of stale tracks
- DB reconciliation race condition: Analyzer marks tracks as
processingin the database before pushing to Redis queue, preventing the backend from double-queuing the same tracks - Enrichment completion detection:
isFullyCompletenow checks CLAP processing count and queue length, not just completed vs total - Search special characters:
queryToTsquerystrips non-word characters and filters empty terms, preventing PostgreSQL syntax errors on queries like"&"or"..." - NaN pagination limit: Search endpoints guard against
NaNlimit values from malformed query params - Discovery cache key collisions: Normalized cache keys (lowercase, trimmed, collapsed whitespace) prevent duplicate cache entries for equivalent queries
- Worker resize pool churn: Added 5-second debounce to worker count changes from the UI slider, preventing rapid pool destroy/recreate cycles
Performance
- malloc_trim memory recovery: Both analyzers call
malloc_trim(0)after unloading models, forcing glibc to return freed pages to the OS (6.5 GB active -> 2.0 GB idle) - MusicCNN worker pool auto-shutdown: Worker pool shuts down when no pending work remains, freeing process pool memory without waiting for idle timeout
- Enrichment queue batch size: Reduced from 50 to 10 to match analyzer batch size, preventing buildup of stale
processingtracks - Search with tsvector indexes: Artist, album, and track tables now have generated tsvector columns with GIN indexes for fast full-text search
- Discovery endpoint parallelized: Artist search, similar artists, and Deezer image lookups run concurrently instead of sequentially
Changed
- Audio streaming range parser: Replaced Express
res.sendFile()with custom range parser supporting suffix ranges (bytes=-N) and proper 416 responses -- fixes Firefox/Safari streaming issues on large FLAC files - Similar artists separation: Discovery results now split into
results(text matches) andsimilarArtists(musically similar via Last.fm), replacing the mixed array - Last.fm search tightened: Removed
getSimilarArtistspadding fromsearchArtists()and raised fuzzy match threshold from 50 to 75 to reduce false positives (e.g., "Gothica" matching "Mothica")
Removed
- Dead enrichment worker (
backend/src/workers/enrichment.ts) and mood bucket worker (backend/src/workers/moodBucketWorker.ts) -- functionality consolidated into unified enrichment worker - Unused
useDebouncedValuehook (replaced byuseDebouncefrom search hooks)
Contributors
- @Allram - Soulseek import fix (#85)
[1.4.1] - 2026-02-06
Fixed
- Doubled audio stream on next-track: Fixed race condition where clicking next/previous played two streams simultaneously by making track-change cleanup synchronous and guarding the play/pause effect during loading
- Soulseek download returns 400 (#101): Frontend now sends parsed title to the download endpoint; backend derives artist/title from filename when not provided instead of rejecting the request
- Admin password reset (#97): Added
ADMIN_RESET_PASSWORDenvironment variable support -- set it and restart to reset the admin password, then remove the variable - Retry failed audio analysis UI (#79): Added "Retry Failed Analysis" button in Settings that resets permanently failed tracks back to pending for re-processing
- Podcast auto-refresh (#81): Podcasts now automatically refresh during the enrichment cycle (hourly), checking RSS feeds for new episodes without manual intervention
- Compilation track matching (#70): Added title-only fallback matching strategy for playlist reconciliation -- when album artist doesn't match (e.g. "Various Artists" compilations), tracks are matched by title with artist similarity scoring
- Soulseek documentation (#27): Expanded README with detailed Soulseek integration documentation covering setup, search, download workflow, and limitations
- Admin route hardening: Added
requireAdminmiddleware to onboarding config routes and stale job cleanup endpoint - 2FA userId leak: Removed userId from 2FA challenge response (information disclosure)
- Queue bugs: Fixed cancelJob/refreshJobMatches not persisting state, clear button was no-op, reorder not restarting track, shuffle indices not updating on removeFromQueue
- Infinite re-render: Fixed useAlbumData error handling causing infinite re-render loop
- 2FA status not loading: Fixed AccountSection not loading 2FA status on mount
- Password change error key mismatch: Fixed error key mismatch in AccountSection password change handler
- Discovery polling leak: Fixed polling never stopping on batch failure
- Timer leak: Fixed withTimeout not clearing timer in enrichment worker
- Audio play rejection: Fixed unhandled promise rejection on audio.play()
- Library tab validation: Added tab parameter validation in library page
- Onboarding state: Separated success/error state in onboarding page
- Audio analysis race condition (#79): CLAP analyzer was clobbering Essentia's
analysisStatusfield, causing completed tracks to be reset and permanently failed after 3 cycles; both Python analyzers now check for existing embeddings before resetting - Enrichment completion check:
isFullyCompletenow includes CLAP vibe embeddings, not just audio analysis - Enrichment UI resilience: Added
keepPreviousDataand loading/error states to enrichment progress query so the settings block doesn't vanish on failed refetch
Performance
- Recommendation N+1 queries: Eliminated N+1 queries in all 3 recommendation endpoints (60+ queries down to 3-5)
- Idle worker pool shutdown: Essentia analyzer shuts down its 8-worker process pool (~5.6 GB) after idle period, lazily restarts when work arrives
Changed
- Shared utility consolidation: Replaced 10 inline
formatDurationcopies with sharedformatTime/formatDuration, extractedformatNumberto shared utility, consolidated inline Fisher-Yates shuffle with sharedshuffleArray - Player hook extraction: Extracted shared
useMediaInfohook, eliminating ~120 lines of duplicated media info logic across MiniPlayer, FullPlayer, and OverlayPlayer - Preview hook consolidation: Consolidated artist/album preview hooks into shared
useTrackPreview - Redundant logging cleanup: Removed console.error calls redundant with toast notifications or re-thrown errors
Removed
- Dead player files: VibeOverlay, VibeGraph, VibeOverlayContainer, enhanced-vibe-test page
- Dead code: trackEnrichment.ts, discover/types/index.ts, unused artist barrel file
- Unused exports:
playTrackfrom useLibraryActions,useTrackDisplayData/TrackDisplayDatafrom useMetadataDisplay - Unused
streamLimitermiddleware - Deprecated
radiosByGenrefrom browse API (Deezer radio requires account; internal library radio used instead)
[1.4.0] - 2026-02-05
Performance
- Sequential audio/vibe enrichment: Vibe phase skips when audio analysis is still running, preventing concurrent CPU-intensive Python analyzers from competing for resources
- Faster enrichment cycles: Reduced cycle interval from 30s to 5s; the rate limiter already handles API throttling, making the extra delay redundant
- GPU auto-detection (CLAP): PyTorch-based CLAP vibe embeddings auto-detect and use GPU when available, falling back to CPU
- GPU auto-detection (Essentia): TensorFlow-based audio analysis detects GPU with memory growth enabled, with device logging on startup
Changed
- Enrichment orchestration simplified: Replaced 4 phase functions with duplicated stop/pause handling with a generic
runPhase()executor andshouldHaltCycle()helper
Fixed
- Docker frontend routing: Fixed
NEXT_PUBLIC_BACKEND_URLbuild-time env var in Dockerfile so the frontend correctly proxies API requests to the backend - Next.js rewrite proxy: Updated rewrite config to use
NEXT_PUBLIC_BACKEND_URLfor consistent build-time/runtime behavior - False lite mode on startup: Feature detection now checks for analyzer scripts on disk, preventing false "lite mode" display before analyzers send their first heartbeat
- Removed playback error banner: Removed the red error bar from all player components (FullPlayer, MiniPlayer, OverlayPlayer) that displayed raw Howler.js error codes
- Enrichment failure notifications: Replaced aggressive per-cycle error banner with a single notification through the notification system when enrichment completes with failures
[1.3.9] - 2026-02-04
Fixed
- Audio analysis cleanup: Fixed race condition in audio analysis cleanup that could reset tracks still being processed
[1.3.8] - 2026-02-03
Fixed
- Enrichment: CLAP queue and failure cleanup fixes for enrichment debug mode
[1.3.7] - 2026-02-01
Added
CLAP Audio Analyzer (Major Feature)
New ML-based audio analysis using CLAP (Contrastive Language-Audio Pretraining) embeddings for semantic audio understanding.
- CLAP Analyzer Service: Python-based analyzer using Microsoft's CLAP model for generating audio embeddings
- pgvector Integration: Added PostgreSQL vector extension for efficient similarity search on embeddings
- Vibe Similarity: "Find similar tracks" feature using hybrid similarity (CLAP embeddings + BPM/key matching)
- Vibe Explorer UI: Test page for exploring audio similarity at
/vibe-ui-test - Settings Integration: CLAP embeddings progress display and configurable worker count in Settings
- Enrichment Phase 4: CLAP embedding generation integrated into enrichment pipeline
Feature Detection
Automatic detection of available analyzers with graceful degradation.
- Feature Detection Service: Backend service that monitors analyzer availability via Redis heartbeats
- Features API: New
/api/system/featuresendpoint exposes available features to frontend - FeaturesProvider: React context for feature availability throughout the app
- Graceful UI: Vibe button hidden when embeddings unavailable; analyzer controls greyed out in Settings
- Onboarding: Shows detected features instead of manual toggles
Docker & Deployment
- Lite Mode: New
docker-compose.lite.ymloverride for running without optional analyzers - All-in-One Image: CLAP analyzer and pgvector included in main Docker image
- Analyzer Profiles: Optional services can be enabled/disabled via compose overrides
Other
- Local Image Storage: Artist images stored locally with artist counts
- Hybrid Similarity Service: Combines CLAP embeddings with BPM and musical key for better matches
- BPM/Key Similarity Functions: Database functions for musical attribute matching
Fixed
- CLAP Queue Name: Corrected queue name to
audio:clap:queue - CLAP Large Files: Handle large audio files by chunking to avoid memory issues
- CLAP Dependencies: Added missing torchvision dependency and fixed model path
- Embedding Index: Added missing IVFFlat index to embedding migration for query performance
- Library Page Performance: Artist images now cache properly - removed JWT tokens from cover-art URLs that were breaking Service Worker and HTTP cache (tokens only added for CORS canvas access on detail pages)
- Service Worker: Increased image cache limit from 500 to 2000 entries for better coverage of large libraries
Performance
- CLAP Extraction: Always extract middle 60s of audio for efficient embedding generation
- CLAP Duration: Pass duration from database to avoid file probe overhead
- Vibe Query: Use CTE to avoid duplicate embedding lookup in similarity queries
- PopularArtistsGrid: Added
memo()wrapper to prevent unnecessary re-renders when parent state changes - FeaturedPlaylistsGrid: Added
memo()wrapper anduseCallbackfor click handler to ensure childPlaylistCardmemoization works correctly - Scan Reconciliation: Fixed N+1 database query pattern - replaced per-job album lookups with single batched query, reducing ~250 queries to ~3 queries for 100 pending jobs
Security
- Vibe API: Added internal auth to vibe failure endpoint
Changed
- Docker Profiles: Replaced Docker profiles with override file approach for better compatibility
- Mood Columns: Marked as legacy in schema - may be derived from CLAP embeddings in future
[1.3.5] - 2026-01-22
Fixed
- Audio preload: Emit preload 'load' event asynchronously to prevent race condition during gapless playback
[1.3.4] - 2026-01-22
Added
- Gapless playback: Preload infrastructure and next-track preloading for seamless transitions
- Infinite scroll: Library artists, albums, and tracks now use infinite query pagination
- CachedImage: Migrated to Next.js Image component with proper type support
Fixed
- CSS hover performance: Fixed hover state performance issues
- Audio analyzer: Fixed Enhanced mode detection
- Onboarding: Accessibility improvements
- Audio format detection: Simplified to prevent wrong decoder attempts
- Audio cleanup: Improved Howl instance cleanup to prevent memory leaks
- Audio cleanup tracking: Use Set for pending cleanup tracking
- Redis connections: Disconnect enrichmentStateService connections on shutdown
Changed
- Library page: Optimized data fetching with tab-based queries and memoized delete handlers
[1.3.3] - 2026-01-18
Comprehensive patch release addressing critical stability issues, performance improvements, and production readiness fixes. This release includes community-contributed fixes and extensive internal code quality improvements.
Fixed
Critical (P1)
- Docker: PostgreSQL/Redis bind mount permission errors on Linux hosts (#59) - @arsaboo via #62
- Audio Analyzer: Memory consumption/OOM crashes with large libraries (#21, #26) - @rustyricky via #53
- LastFM: ".map is not a function" crashes with obscure artists (#37) - @RustyJonez via #39
- Wikidata: 403 Forbidden errors from missing User-Agent header (#57)
- Downloads: Singles directory creation race conditions (#58)
- Firefox: FLAC playback stopping at ~4:34 mark on large files (#42, #17)
- Downloads: "Skip Track" fallback setting ignored, incorrectly falling back to Lidarr (#68)
- Auth: Login "Internal Server Error" and "socket hang up" on NAS hardware (#75)
- Podcasts: Seeking backward causing player crash and backend container hang
- API: Rate limiter crash with "trust proxy" validation error causing socket hang up
- Downloads: Duplicate download jobs created due to race condition (database-level locking fix)
Quality of Life (P2)
- Desktop UI: Added missing "Releases" link to desktop sidebar navigation (#41)
- iPhone: Dynamic Island/notch overlapping TopBar buttons (#54)
- Album Discovery: Cover Art Archive timeouts causing slow page loads (2s timeout added)
- Wikimedia: Image proxy 429 rate limiting due to incomplete User-Agent header
Added
- Selective Enrichment Controls: Individual "Re-run" buttons for Artists, Mood Tags, and Audio Analysis in Settings
- XSS Protection: DOMPurify sanitization for artist biography HTML content
- AbortController: Proper fetch request cleanup on component unmount across all hooks
Changed
- Performance: Removed on-demand image fetching from library endpoints (faster page loads)
- Performance: Added concurrency limit to Deezer preview fetching (prevents rate limiting)
- Performance: Corrected batching for on-demand artist image fetching
- Soulseek: Connection stability improvements with auto-disconnect on credential changes
- Backend: Production build now uses compiled JavaScript instead of tsx transpilation (faster startup, lower memory on NAS)
Security
- XSS Prevention: Artist bios now sanitized with DOMPurify before rendering
- Race Conditions: Database-level locking prevents duplicate download job creation
Technical Details
Community Fixes
- Docker Permissions (#62): Creates
/data/postgresand/data/redisdirectories with proper ownership; validates write permissions at startup usinggosu <user> test -w - Audio Analyzer Memory (#53): TensorFlow GPU memory growth enabled;
MAX_ANALYZE_SECONDSconfigurable (default 90s); explicit garbage collection in finally blocks - LastFM Normalization (#39):
normalizeToArray()utility wraps single-object API responses; protects 5 locations in artist discovery endpoints
Hotfixes
- Wikidata User-Agent (#57): All 4 API endpoints now use configured axios client with proper User-Agent header
- Singles Directory (#58): Replaced TOCTOU
existsSync()+mkdirSync()pattern with idempotentmkdir({recursive: true}) - Firefox FLAC (#42): Replaced Express
res.sendFile()with manual range request handling viafs.createReadStream()with properContent-Rangeheaders - Skip Track (#68): Auto-fallback logic now only activates for undefined/null settings, respecting explicit "none" (Skip Track) preference
- NAS Login (#75): Backend now built with
tscand runs withnode dist/index.js; proxy trust setting updated; session secret standardized - Podcast Seek: AbortController cancels upstream requests on client disconnect; stream error handlers prevent crashes
- Rate Limiter: All rate limiter configurations disable proxy validation (
validate: { trustProxy: false }) - Wikimedia Proxy: User-Agent standardized to
"Lidify/1.0.0 (https://github.com/Chevron7Locked/kima-hub)"across all external API calls
Production Readiness Improvements
Internal code quality and stability fixes discovered during production readiness review:
Security:
- ReDoS guard on
stripAlbumEdition()regex (500 char input limit) - Rate limiter path matching uses precise patterns instead of vulnerable
includes()checks
Race Conditions:
- Spotify token refresh uses promise singleton pattern
- Import job state re-fetched after
checkImportCompletion() - useSoulseekSearch has cancellation flag pattern
Memory Leaks:
- failedUsers Map periodic cleanup (every 5 min)
- jobLoggers Map cleanup on all completion/failure paths
Code Quality:
- Async executor anti-pattern removed from Soulseek
searchTrack() - Timeout cleanup in catch blocks
- Proper error type narrowing (
catch (error: unknown)) - Null guards in artistNormalization functions
- Fisher-Yates shuffle replaces biased
Math.random()sort - Debug console.log statements removed/converted
- Empty catch blocks now have proper error handling
- Stale closures fixed with refs in event handlers
- Dead code and unused imports removed
CSS:
- Tailwind arbitrary value syntax corrected
- Duplicate z-index values removed
Infrastructure:
- Explicit database connection pool configuration
- Deezer album lookups routed through global rate limiter
- Consistent toast system usage
Deferred to Future Release
- PR #49 - Playlist visibility toggle (needs PR review)
- PR #47 - Mood bucket tags (already implemented, verify and close)
- PR #36 - Docker --user flag (needs security review)
Contributors
Thanks to everyone who contributed to this release:
- @arsaboo - Docker bind mount permissions fix (#62)
- @rustyricky - Audio analyzer memory limits (#53)
- @RustyJonez - LastFM array normalization (#39)
- @tombatossals - Testing and validation
- @zeknurn - Skip Track bug report (#68)
[1.3.2] - 2025-01-07
Fixed
- Mobile scrolling blocked by pull-to-refresh component
- Pull-to-refresh component temporarily disabled (will be properly fixed in v1.4)
Technical Details
- Root cause: CSS flex chain break (
h-full) and touch event interference - Implemented early return to bypass problematic wrapper while preserving child rendering
- TODO: Re-enable in v1.4 with proper CSS fix (
flex-1 flex flex-col min-h-0)
[1.3.1] - 2025-01-07
Fixed
- Production database schema mismatch causing SystemSettings endpoints to fail
- Added missing
downloadSourceandprimaryFailureFallbackcolumns to SystemSettings table
Database Migrations
20260107000000_add_download_source_columns- Idempotent migration adds missing columns with defaults
Technical Details
- Root cause: Migration gap between squashed init migration and production database setup
- Uses PostgreSQL IF NOT EXISTS pattern for safe deployment across all environments
- Default values:
downloadSource='soulseek',primaryFailureFallback='none'
[1.3.0] - 2026-01-06
Added
- Multi-source download system with configurable Soulseek/Lidarr primary source and fallback options
- Configurable enrichment speed control (1-5x concurrency) in Settings > Cache & Automation
- Stale job cleanup button in Settings to clear stuck Discovery batches and downloads
- Mobile touch drag support for seek sliders on all player views
- Skip +/-30s buttons for audiobooks/podcasts on mobile players
- iOS PWA media controls support (Control Center and Lock Screen)
- Artist name alias resolution via Last.fm (e.g., "of mice" -> "Of Mice & Men")
- Library grid now supports 8 columns on ultra-wide displays (2xl breakpoint)
- Artist discography sorting options (Year/Date Added)
- Enrichment failure notifications with retry/skip modal
- Download history deduplication to prevent duplicate entries
- Utility function for normalizing API responses to arrays (
normalizeToArray) - @tombatossals - Keyword-based mood scoring for standard analysis mode tracks - @RustyJonez
- Global and route-level error boundaries for better error handling
- React Strict Mode for development quality checks
- Next.js image optimization enabled by default
- Mobile-aware animation rendering (GalaxyBackground disables particles on mobile)
- Accessibility motion preferences support (
prefers-reduced-motion) - Lazy loading for heavy components (MoodMixer, VibeOverlay, MetadataEditor)
- Bundle analyzer tooling (
npm run analyze) - Loading states for all 10 priority routes
- Skip links for keyboard navigation (WCAG 2.1 AA compliance)
- ARIA attributes on all interactive controls and navigation elements
- Toast notifications with ARIA live regions for screen readers
- Bull Board admin dashboard authentication (requires admin user)
- Lidarr webhook signature verification with configurable secret
- Encryption key validation on startup (prevents insecure defaults)
- Session cookie security (httpOnly, sameSite=strict, secure in production)
- Swagger API documentation authentication in production
- JWT token expiration (24h access tokens, 30d refresh tokens)
- JWT refresh token endpoint (
/api/auth/refresh) - Token version validation (password changes invalidate existing tokens)
- Download queue reconciliation on server startup (marks stale jobs as failed)
- Redis batch operations for cache warmup (MULTI/EXEC pipelining)
- Memory-efficient database-level shuffle (
ORDER BY RANDOM() LIMIT n) - Dynamic import caching in queue cleaner (lazy-load pattern)
- Database index for
DownloadJob.targetMbidfield - PWA install prompt dismissal persistence (7-day cooldown)
Fixed
- Critical: Audio analyzer crashes on libraries with non-ASCII filenames (#6)
- Critical: Audio analyzer BrokenProcessPool after ~1900 tracks (#21)
- Critical: Audio analyzer OOM kills with aggressive worker auto-scaling (#26)
- Critical: Audio analyzer model downloads and volume mount conflicts (#2)
- Radio stations playing songs from wrong decades due to remaster dates (#43)
- Manual metadata editing failing with 500 errors (#9)
- Active downloads not resolving after Lidarr successfully imports (#31)
- Discovery playlist downloads failing for artists with large catalogs (#34)
- Discovery batches stuck in "downloading" status indefinitely
- Audio analyzer rhythm extraction failures on short/silent audio (#13)
- "Of Mice & Men" artist name truncated to "Of Mice" during scanning
- Edition variant albums (Remastered, Deluxe) failing with "No releases available"
- Downloads stuck in "Lidarr #1" state for 5 minutes before failing
- Download duplicate prevention race condition causing 10+ duplicate jobs
- Lidarr downloads incorrectly cancelled during temporary network issues
- Discovery Weekly track durations showing "NaN:NaN"
- Artist name search ampersand handling ("Earth, Wind & Fire")
- Vibe overlay display issues on mobile devices
- Pagination scroll behavior (now scrolls to top instead of bottom)
- LastFM API crashes when receiving single objects instead of arrays (#37) - @tombatossals
- Mood bucket infinite loop for tracks analyzed in standard mode (#40) - @RustyJonez
- Playlist visibility toggle not properly syncing hide/show state - @tombatossals
- Audio player time display showing current time exceeding total duration (e.g., "58:00 / 54:34")
- Progress bar could exceed 100% for long-form media with stale metadata
- Enrichment P2025 errors when retrying enrichment for deleted entities
- Download settings fallback not resetting when changing primary source
- SeekSlider touch events bubbling to parent OverlayPlayer swipe handlers
- Audiobook/podcast position showing 0:00 after page refresh instead of saved progress
- Volume slider showing no visual fill indicator for current level
- PWA install prompt reappearing after user dismissal
Changed
- Audio analyzer default workers reduced from auto-scale to 2 (memory conservative)
- Audio analyzer Docker memory limits: 6GB limit, 2GB reservation
- Download status polling intervals: 5s (active) / 10s (idle) / 30s (none), previously 15s
- Library pagination options changed to 24/40/80/200 (divisible by 8-column grid)
- Lidarr download failure detection now has 90-second grace period (3 checks)
- Lidarr catalog population timeout increased from 45s to 60s
- Download notifications now use API-driven state instead of local pending state
- Enrichment stop button now gracefully finishes current item before stopping
- Per-album enrichment triggers immediately instead of waiting for batch completion
- Lidarr edition variant detection now proactive (enables
anyReleaseOkbefore first search) - Discovery system now uses AcquisitionService for unified album/track acquisition
- Podcast and audiobook time display now shows time remaining instead of total duration
- Edition variant albums automatically fall back to base title search when edition-specific search fails
- Stale pending downloads cleaned up after 2 minutes (was indefinite)
- Download source detection now prioritizes actual service availability over user preference
Removed
- Artist delete buttons hidden on mobile to prevent accidental deletion
- Audio analyzer models volume mount (shadowed built-in models)
Database Migrations Required
# Run Prisma migrations
cd backend
npx prisma migrate deploy
New Schema Fields:
Album.originalYear- Stores original release year (separate from remaster dates)SystemSettings.enrichmentConcurrency- User-configurable enrichment speed (1-5)SystemSettings.downloadSource- Primary download source selectionSystemSettings.primaryFailureFallback- Fallback behavior on primary source failureSystemSettings.lidarrWebhookSecret- Shared secret for Lidarr webhook signature verificationUser.tokenVersion- Version number for JWT token invalidation on password changeDownloadJob.targetMbid- Index added for improved query performance
Backfill Script (Optional):
# Backfill originalYear for existing albums
cd backend
npx ts-node scripts/backfill-original-year.ts
Breaking Changes
- None - All changes are backward compatible
Security
- Critical: Bull Board admin dashboard now requires authenticated admin user
- Critical: Lidarr webhooks verify signature/secret before processing requests
- Critical: Encryption key validation on startup prevents insecure defaults
- Session cookies use secure settings in production (httpOnly, sameSite=strict, secure)
- Swagger API documentation requires authentication in production (unless
DOCS_PUBLIC=true) - JWT tokens have proper expiration (24h access, 30d refresh) with refresh token support
- Password changes invalidate all existing tokens via tokenVersion increment
- Transaction-based download job creation prevents race conditions
- Enrichment stop control no longer bypassed by worker state
- Download queue webhook handlers use Serializable isolation transactions
- Webhook race conditions protected with exponential backoff retry logic
Release Notes
When deploying this update:
- Backup your database before running migrations
- Set required environment variable (if not already set):
# Generate secure encryption key SETTINGS_ENCRYPTION_KEY=$(openssl rand -base64 32) - Run
npx prisma migrate deployin the backend directory - Optionally run the originalYear backfill script for era mix accuracy:
cd backend npx ts-node scripts/backfill-original-year.ts - Clear Docker volumes for audio-analyzer if experiencing model issues:
docker volume rm lidify_audio_analyzer_models 2>/dev/null || true docker compose build audio-analyzer --no-cache - Review Settings > Downloads for new multi-source download options
- Review Settings > Cache for new enrichment speed control
- Configure Lidarr webhook secret in Settings for webhook signature verification (recommended)
- Review Settings > Security for JWT token settings
Known Issues
- Pre-existing TypeScript errors in spotifyImport.ts matchTrack method (unrelated to this release)
- Simon & Garfunkel artist name may be truncated due to short second part (edge case, not blocking)
Contributors
Big thanks to everyone who contributed, tested, and helped make this release happen:
- @tombatossals - LastFM API normalization utility (#39), playlist visibility toggle fix (#49)
- @RustyJonez - Mood bucket standard mode keyword scoring (#47)
- @iamiq - Audio analyzer crash reporting (#2)
- @volcs0 - Memory pressure testing (#26)
- @Osiriz - Long-running analysis testing (#21)
- @hessonam - Non-ASCII character testing (#6)
- @niles - RhythmExtractor edge case reporting (#13)
- @TheChrisK - Metadata editor bug reporting (#9)
- @lizar93 - Discovery playlist testing (#34)
- @brokenglasszero - Mood tags feature verification (#35)
And all users who reported bugs, tested fixes, and provided feedback!
For detailed technical implementation notes, see docs/PENDING_DEPLOY-2.md.