ldrouter 1.6.0 → 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 +11 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to this project are documented here. The format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/) and the project adheres to
|
|
5
5
|
[Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [1.6.1] - 2026-08-30
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Interactive console UI: `ldrouter --tui` boots the gateway and shows a
|
|
11
|
+
zero-dependency terminal menu (open dashboard, check/apply updates, exit)
|
|
12
|
+
with live uptime; falls back to the plain server when stdout is not a TTY.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- CI: npm tarball verification prints the full pack output with explicit
|
|
16
|
+
per-file error messages; the redundant `prepack` build hook was removed.
|
|
17
|
+
|
|
7
18
|
## [1.6.0] - 2026-08-30
|
|
8
19
|
|
|
9
20
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ldrouter",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "LateDev Router — lightweight self-hosted LLM gateway with admin UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -125,4 +125,4 @@
|
|
|
125
125
|
"node": ">=22.0.0"
|
|
126
126
|
},
|
|
127
127
|
"packageManager": "pnpm@11.24.0"
|
|
128
|
-
}
|
|
128
|
+
}
|