@timo972/cc-router 0.12.2-rc.1 → 0.12.2
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 +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,10 @@ 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.2] — 2026-09-16
|
|
14
|
+
|
|
11
15
|
### Added
|
|
12
16
|
|
|
13
17
|
- Privacy-bounded OpenTelemetry and PostHog EU telemetry: 10%-sampled proxy
|
|
@@ -25,6 +29,20 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
25
29
|
- Aptabase telemetry has been removed. An existing persisted opt-out remains
|
|
26
30
|
off after upgrade; no PostHog Person profiles are created and GeoIP
|
|
27
31
|
enrichment is disabled.
|
|
32
|
+
- `cc-router telemetry status` now explains the effective consent state,
|
|
33
|
+
signal inventory, installation pseudonym, and network privacy boundary.
|
|
34
|
+
Re-enabling telemetry requires restarting a daemon that started disabled.
|
|
35
|
+
- Expanded the telemetry and security guides, added diagnostic-ID guidance for
|
|
36
|
+
reporting setup and runtime failures, and included the telemetry inventory
|
|
37
|
+
in the published package.
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
|
|
41
|
+
- Sanitized exceptions retain validated error names and stack function names
|
|
42
|
+
for more useful error grouping and diagnosis, while omitting raw messages
|
|
43
|
+
and removing machine-specific paths.
|
|
44
|
+
- Builds clean stale compiled output before compiling, preventing removed
|
|
45
|
+
modules from remaining in release artifacts.
|
|
28
46
|
|
|
29
47
|
---
|
|
30
48
|
|
|
@@ -739,6 +757,7 @@ cache-aware session routing and a round of security hardening.
|
|
|
739
757
|
- `http-proxy-middleware` 3.0.5 → 3.0.7 for GHSA-gcq2-9pq2-cxqm (high). The
|
|
740
758
|
affected APIs are not used here.
|
|
741
759
|
|
|
760
|
+
[0.12.2]: https://github.com/Timo972/cc-router/releases/tag/v0.12.2
|
|
742
761
|
[0.12.1]: https://github.com/Timo972/cc-router/releases/tag/v0.12.1
|
|
743
762
|
[0.12.0]: https://github.com/Timo972/cc-router/releases/tag/v0.12.0
|
|
744
763
|
[0.11.0]: https://github.com/Timo972/cc-router/releases/tag/v0.11.0
|
package/package.json
CHANGED