@khanglvm/llm-router 2.4.0 → 2.4.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,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.4.1] - 2026-04-19
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- The published production web console bundle now rebuilds before packing so Claude Code shows the shared web-search provider selector added in `2.4.0` instead of serving a stale prebuilt client.
|
|
14
|
+
|
|
10
15
|
## [2.4.0] - 2026-04-18
|
|
11
16
|
|
|
12
17
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanglvm/llm-router",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "LLM Router: single gateway endpoint for multi-provider LLMs with unified OpenAI+Anthropic format and seamless fallback",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"llm-router",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"deploy": "wrangler deploy",
|
|
27
27
|
"tail": "wrangler tail",
|
|
28
28
|
"build:web-console": "node ./scripts/build-web-console.mjs",
|
|
29
|
+
"prepack": "npm run build:web-console",
|
|
29
30
|
"start": "node ./src/cli-entry.js start",
|
|
30
31
|
"config": "node ./src/cli-entry.js config",
|
|
31
32
|
"deploy:worker": "node ./src/cli-entry.js deploy",
|