@lanegrid/agtrace 0.6.0 → 0.7.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 +38 -0
- package/README.md +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,44 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.7.0] - 2026-01-25
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- *(providers)* Use camelCase for ProgressData field names ([6ccff66](https://github.com/lanegrid/agtrace/commit/6ccff66df30a03277e54f350550800805a6da934))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
- Add git-workflow skill rule to project rules ([c3ef2ec](https://github.com/lanegrid/agtrace/commit/c3ef2ec42eb5bf34e51ac790dc00acebe6c15ed9))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- *(types,core)* Add RepositoryHash type for git worktree support ([76c5d9c](https://github.com/lanegrid/agtrace/commit/76c5d9c086828e7ffe61a7a2a627704818fabb97))
|
|
20
|
+
|
|
21
|
+
- *(index)* Add repository_hash to session data model for worktree support ([ebdc8e0](https://github.com/lanegrid/agtrace/commit/ebdc8e06d33c78cbaeb0864d275cdd83f3b071d4))
|
|
22
|
+
|
|
23
|
+
- *(cli)* Add --all-worktrees flag for cross-worktree session listing ([f565b8c](https://github.com/lanegrid/agtrace/commit/f565b8c067eaae6f9afb7a30597b35b58499e933))
|
|
24
|
+
|
|
25
|
+
- *(providers)* Add Claude Code new log format support (progress, queue-operation, system, summary) ([c3036a2](https://github.com/lanegrid/agtrace/commit/c3036a2156f60cae5d00e390e0c63d42ad482142))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Miscellaneous Tasks
|
|
29
|
+
|
|
30
|
+
- Add git-workflow SKILL ([ac4de76](https://github.com/lanegrid/agtrace/commit/ac4de76090d03109be9c8a7eb493b47cdb6a3164))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Performance
|
|
34
|
+
|
|
35
|
+
- *(index)* Cache repository_hash per project_root during indexing ([6d35d9f](https://github.com/lanegrid/agtrace/commit/6d35d9f602834c3e80698e736857d52494cbef7f))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Styling
|
|
39
|
+
|
|
40
|
+
- Apply cargo fmt ([60d38de](https://github.com/lanegrid/agtrace/commit/60d38dec72b8df45d1395ecb473fc53cafef0ee3))
|
|
41
|
+
|
|
42
|
+
|
|
5
43
|
## [0.6.0] - 2026-01-10
|
|
6
44
|
|
|
7
45
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -76,7 +76,7 @@ If you're building your own IDE plugin, dashboard, or observability tool:
|
|
|
76
76
|
|
|
77
77
|
```toml
|
|
78
78
|
[dependencies]
|
|
79
|
-
agtrace-sdk = "0.
|
|
79
|
+
agtrace-sdk = "0.6"
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
See [SDK Documentation](https://docs.rs/agtrace-sdk) and [Examples](crates/agtrace-sdk/examples/).
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT OR Apache-2.0",
|
|
25
25
|
"name": "@lanegrid/agtrace",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.7.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -515,5 +515,5 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"requires": true,
|
|
518
|
-
"version": "0.
|
|
518
|
+
"version": "0.7.0"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/lanegrid/agtrace/releases/download/v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/lanegrid/agtrace/releases/download/v0.7.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"agtrace": "run-agtrace.js"
|
|
5
5
|
},
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"zipExt": ".tar.xz"
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
-
"version": "0.
|
|
96
|
+
"version": "0.7.0",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|