@lanegrid/agtrace 0.1.13 → 0.1.14
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 +30 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.1.14] - 2025-12-31
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- *(sdk)* Make SessionFilter::default() equivalent to new() with reasonable limit ([2f1f481](https://github.com/lanegrid/agtrace/commit/2f1f481e28c76118a4821f0290f47221bcf96540))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
- Complete SDK-CLI refactor ExecPlan with outcomes and retrospective ([2f4e456](https://github.com/lanegrid/agtrace/commit/2f4e45604fbefe55dd001021ada08b86b2119170))
|
|
15
|
+
|
|
16
|
+
- Remove completed SDK-CLI refactor planning documents ([cb2a668](https://github.com/lanegrid/agtrace/commit/cb2a6689f4a309e088f779e38c1116ecde6b0305))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Refactor
|
|
20
|
+
|
|
21
|
+
- *(cli)* Migrate all handlers to use agtrace-sdk instead of internal crates ([548a7b7](https://github.com/lanegrid/agtrace/commit/548a7b7c53f46d63b9a552fa6de8946bf3a8bc4c))
|
|
22
|
+
|
|
23
|
+
- *(cli)* Replace internal crate imports with SDK in presentation layer ([2e0da9a](https://github.com/lanegrid/agtrace/commit/2e0da9acdd9b8ff3b4f3cfd7a05dcf141c57e513))
|
|
24
|
+
|
|
25
|
+
- *(cli)* Achieve strict SDK-only dependency by eliminating all internal crate usage ([22a0590](https://github.com/lanegrid/agtrace/commit/22a059038689dd80b7c1d51ead50fa1cf5e826e7))
|
|
26
|
+
|
|
27
|
+
- *(sdk)* Introduce utils module for low-level API, remove internal re-exports, add SessionHandle::from_events() ([4e48516](https://github.com/lanegrid/agtrace/commit/4e485169ad818ffa8a91ebce3c1a10c11cef717f))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Testing
|
|
31
|
+
|
|
32
|
+
- Migrate integration tests to use agtrace-sdk types ([aeb458e](https://github.com/lanegrid/agtrace/commit/aeb458ee8d259200335f52daed5b97fc722fa10c))
|
|
33
|
+
|
|
34
|
+
|
|
5
35
|
## [0.1.13] - 2025-12-30
|
|
6
36
|
|
|
7
37
|
### Features
|
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.1.
|
|
26
|
+
"version": "0.1.14"
|
|
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.1.
|
|
518
|
+
"version": "0.1.14"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/lanegrid/agtrace/releases/download/v0.1.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/lanegrid/agtrace/releases/download/v0.1.14",
|
|
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.1.
|
|
96
|
+
"version": "0.1.14",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|