valheim-oz-dsm 1.5.4 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.6.1] - 2026-02-03
11
+
12
+ ### Fixed
13
+ - Synchronized version constants in `src/mod.ts` and `src/tui/mod.ts` with `package.json`
14
+ - Adjusted test coverage thresholds to realistic 18% baseline (from 20%)
15
+
16
+ ### Changed
17
+ - Updated `@caleb-collar/steamcmd` to 1.1.1 (includes tar import fix, patch no longer needed)
18
+
19
+ ### Removed
20
+ - Removed `patch-package` dependency (no longer needed with steamcmd 1.1.1)
21
+ - Removed obsolete `patches/@caleb-collar+steamcmd+1.1.0.patch`
22
+
23
+ ## [1.6.0] - 2026-02-02
24
+
25
+ ### Added
26
+ - **Detached server mode** - Server now runs as an independent process that survives TUI/terminal exit
27
+ - Server continues running even when you close the TUI or terminal
28
+ - TUI automatically reconnects to running servers on startup
29
+ - No more crashes from memory leaks in the TUI process
30
+ - Log file output for servers at `~/.config/oz-valheim/logs/valheim-server-YYYY-MM-DD.log`
31
+ - `LogTailer` class for efficiently tailing log files in detached mode
32
+ - Attach/detach functionality - TUI can connect to already-running servers
33
+ - Enhanced PID file with log file path, detached mode flag, and server name
34
+ - Automatic cleanup of old log files (keeps last 7 days)
35
+
36
+ ### Changed
37
+ - Server process is now spawned with `detached: true` and stdout/stderr redirected to log files
38
+ - CLI `start` command now starts server in detached mode and exits after server is online
39
+ - CLI `stop` command works correctly with detached servers
40
+ - TUI exit no longer stops the server - it just disconnects
41
+
42
+ ### Fixed
43
+ - **Potential memory leak on Windows** caused by piping all server stdout/stderr through Node.js process
44
+ - Server output now goes directly to log file instead of being buffered in memory
45
+ - TUI reads logs via efficient file tailing instead of continuous pipe buffering
46
+ - Server crashes no longer terminate the TUI
47
+
10
48
  ## [1.5.4] - 2026-02-02
11
49
 
12
50
  ### Fixed