agentty 0.9.5 → 0.9.6
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 +28 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.9.6] - 2026-06-01
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: show linked review request URLs in session headers.
|
|
15
|
+
- agentty: persist merged review hashes so continuation can keep review context.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- agentty: reject progress-style generated session titles and tighten the title
|
|
20
|
+
generation prompt.
|
|
21
|
+
- agentty: restrict continuation to completed sessions; canceled sessions remain
|
|
22
|
+
terminal read-only.
|
|
23
|
+
- Refresh the README demo GIF for the current interface.
|
|
24
|
+
- testty: complete the explicit-import migration across docs, tests, and upgrade
|
|
25
|
+
guidance.
|
|
26
|
+
- Bump workspace crate metadata and lockfile package versions to `0.9.6`.
|
|
27
|
+
|
|
28
|
+
### Contributors
|
|
29
|
+
|
|
30
|
+
- @andagaev
|
|
31
|
+
- @minev-dev
|
|
32
|
+
|
|
10
33
|
## [v0.9.5] - 2026-05-28
|
|
11
34
|
|
|
12
35
|
This release supersedes `v0.9.4`, whose release workflow did not complete successfully.
|
|
@@ -66,6 +89,11 @@ This release supersedes `v0.9.4`, whose release workflow did not complete succes
|
|
|
66
89
|
### Removed
|
|
67
90
|
|
|
68
91
|
- agentty: remove the roadmap-backed `Tasks` tab.
|
|
92
|
+
- testty: remove the `testty::prelude` wildcard re-export module. Public items are now
|
|
93
|
+
reached only through their owning module paths (for example,
|
|
94
|
+
`use testty::scenario::Scenario;`); see
|
|
95
|
+
[`crates/testty/docs/upgrading.md`](crates/testty/docs/upgrading.md) for the migration
|
|
96
|
+
note.
|
|
69
97
|
|
|
70
98
|
### Contributors
|
|
71
99
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"name": "agentty",
|
|
26
|
-
"version": "0.9.
|
|
26
|
+
"version": "0.9.6"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"engines": {
|
|
@@ -542,5 +542,5 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"requires": true,
|
|
545
|
-
"version": "0.9.
|
|
545
|
+
"version": "0.9.6"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/agentty-xyz/agentty/releases/download/v0.9.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.9.6"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentty": "run-agentty.js"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"zipExt": ".tar.xz"
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"version": "0.9.
|
|
71
|
+
"version": "0.9.6",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|