relayburn 3.4.0 → 4.0.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 +5 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to `relayburn`.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [4.0.0] - 2026-06-23
|
|
8
|
+
|
|
9
|
+
- `burn compare` cost figures now use canonical decimal rounding (`{:.N}`/`toFixed` semantics), so cells/totals/buckets can shift by one in the last reported digit at exact ties.
|
|
10
|
+
- `fidelity` blocks in `summary` / `compare` JSON now emit `byClass` / `byGranularity` / `missingCoverage` keys in a stable order, so output is reproducible across runs.
|
|
11
|
+
|
|
7
12
|
## [3.4.0] - 2026-06-20
|
|
8
13
|
|
|
9
14
|
- Added `--bucket <DURATION>` to `burn summary` and `burn compare` for a per-bucket time-series across the `--since` window (`{ bucketSeconds, buckets: [...] }` in `--json`). Grammar: `30s`/`5m`(minutes)/`1h`/`12h`/`1d`/`7d`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "relayburn",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Token usage & cost attribution for agent CLIs (installs the `burn` command). Resolves a prebuilt Rust binary from the `@relayburn/cli-<platform>` packages.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"node": ">=22"
|
|
20
20
|
},
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@relayburn/cli-darwin-arm64": "
|
|
23
|
-
"@relayburn/cli-darwin-x64": "
|
|
24
|
-
"@relayburn/cli-linux-arm64-gnu": "
|
|
25
|
-
"@relayburn/cli-linux-x64-gnu": "
|
|
22
|
+
"@relayburn/cli-darwin-arm64": "4.0.0",
|
|
23
|
+
"@relayburn/cli-darwin-x64": "4.0.0",
|
|
24
|
+
"@relayburn/cli-linux-arm64-gnu": "4.0.0",
|
|
25
|
+
"@relayburn/cli-linux-x64-gnu": "4.0.0"
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|