relayburn 3.3.0 → 3.4.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 +4 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to `relayburn`.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [3.4.0] - 2026-06-20
|
|
8
|
+
|
|
9
|
+
- 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`.
|
|
10
|
+
|
|
7
11
|
## [3.1.0] - 2026-05-29
|
|
8
12
|
|
|
9
13
|
- `burn update` now upgrades npm installs through `npm install -g relayburn@latest`: the launcher tags the install channel so the binary picks the right package manager.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "relayburn",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.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": "3.
|
|
23
|
-
"@relayburn/cli-darwin-x64": "3.
|
|
24
|
-
"@relayburn/cli-linux-arm64-gnu": "3.
|
|
25
|
-
"@relayburn/cli-linux-x64-gnu": "3.
|
|
22
|
+
"@relayburn/cli-darwin-arm64": "3.4.0",
|
|
23
|
+
"@relayburn/cli-darwin-x64": "3.4.0",
|
|
24
|
+
"@relayburn/cli-linux-arm64-gnu": "3.4.0",
|
|
25
|
+
"@relayburn/cli-linux-x64-gnu": "3.4.0"
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|