@timo972/cc-router 0.12.0-rc.1 → 0.12.0
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 +53 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,23 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## [0.12.0-rc.1] — 2026-08-30
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- OpenAI Responses function calls and their outputs remain top-level input
|
|
18
|
+
items across the Anthropic Messages bridge. JSON and SSE responses now
|
|
19
|
+
preserve call IDs, streamed or atomic arguments, refusal text, and
|
|
20
|
+
`tool_use` stop reasons. Invalid metadata, malformed arguments, and tool
|
|
21
|
+
streams that end before completion fail closed instead of fabricating a
|
|
22
|
+
successful assistant turn.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## [0.12.0-rc.0] — 2026-08-30
|
|
27
|
+
|
|
11
28
|
### Added
|
|
12
29
|
|
|
13
30
|
- `cc-router cli claude` and `cc-router cli codex` toggle Claude Code / Codex
|
|
@@ -22,6 +39,33 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
22
39
|
is focused).
|
|
23
40
|
- Status dashboard `rst` column shows Codex banked usage-limit reset count
|
|
24
41
|
(`0` = none available); Claude cells are `—`.
|
|
42
|
+
- Grok subscriptions are first-class accounts: device login and token import,
|
|
43
|
+
persisted account records, live plan/usage refresh, CLI account management,
|
|
44
|
+
allowance reporting, and grouped dashboard rows with credits and reset data.
|
|
45
|
+
|
|
46
|
+
### Changed
|
|
47
|
+
|
|
48
|
+
- Codex configuration rewrites now use TOML-aware parsing and validation rather
|
|
49
|
+
than line-oriented edits, including safe CLI start/stop toggles for the
|
|
50
|
+
managed block.
|
|
51
|
+
- The status dashboard uses compact provider groups, keeps account headers
|
|
52
|
+
visible in short terminals, and exposes the fleet-wide weekly-full count.
|
|
53
|
+
|
|
54
|
+
### Fixed
|
|
55
|
+
|
|
56
|
+
- `/v1/models` reports real context windows and includes bare `gpt-*` slugs used
|
|
57
|
+
by the Codex CLI.
|
|
58
|
+
- Codex routing accepts both dashed session-header spellings, logs route
|
|
59
|
+
reasons, and includes calendar dates in proxy log timestamps.
|
|
60
|
+
- Grok overview fixtures resolve portably across local and CI working
|
|
61
|
+
directories.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## [0.11.0] — 2026-08-30
|
|
66
|
+
|
|
67
|
+
### Added
|
|
68
|
+
|
|
25
69
|
- Automatic upstream failover and retry on both providers. A 429 or 5xx
|
|
26
70
|
received before any response byte is relayed no longer passes straight
|
|
27
71
|
through to the client: the router applies the existing cooldown/affinity
|
|
@@ -125,6 +169,12 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
125
169
|
during an idle stretch with nothing routing or polling in the meantime. A
|
|
126
170
|
model-scoped limit never emits one, since the account kept serving every
|
|
127
171
|
other family and so never left the rotation to rejoin.
|
|
172
|
+
- Codex cache accounting separates cached and uncached input before updating
|
|
173
|
+
shared activity and aggregate totals, preventing cached tokens from being
|
|
174
|
+
counted twice in cache-hit percentages and token totals.
|
|
175
|
+
- `/v1/responses` accepts JSON request bodies up to 32 MiB, so long-running
|
|
176
|
+
Codex sessions with large retained tool outputs are not rejected locally by
|
|
177
|
+
Express's former 10 MiB parser limit.
|
|
128
178
|
|
|
129
179
|
---
|
|
130
180
|
|
|
@@ -620,6 +670,9 @@ cache-aware session routing and a round of security hardening.
|
|
|
620
670
|
- `http-proxy-middleware` 3.0.5 → 3.0.7 for GHSA-gcq2-9pq2-cxqm (high). The
|
|
621
671
|
affected APIs are not used here.
|
|
622
672
|
|
|
673
|
+
[0.12.0-rc.1]: https://github.com/Timo972/cc-router/releases/tag/v0.12.0-rc.1
|
|
674
|
+
[0.12.0-rc.0]: https://github.com/Timo972/cc-router/releases/tag/v0.12.0-rc.0
|
|
675
|
+
[0.11.0]: https://github.com/Timo972/cc-router/releases/tag/v0.11.0
|
|
623
676
|
[0.9.0]: https://github.com/Timo972/cc-router/releases/tag/v0.9.0
|
|
624
677
|
[0.8.3]: https://github.com/Timo972/cc-router/releases/tag/v0.8.3
|
|
625
678
|
[0.8.2]: https://github.com/Timo972/cc-router/releases/tag/v0.8.2
|
package/package.json
CHANGED