agentty 0.9.5 → 0.10.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 CHANGED
@@ -7,6 +7,53 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [v0.10.0] - 2026-06-02
11
+
12
+ ### Added
13
+
14
+ - agentty: add stacked draft session lineage and restack behavior.
15
+ - agentty: show reasoning levels next to model names in the session list.
16
+
17
+ ### Changed
18
+
19
+ - agentty: beautify provider command failure output.
20
+ - agentty: select protocol schema guidance by provider capability and require temporary
21
+ artifact cleanup in protocol prompts.
22
+ - agentty: preserve the Antigravity session worktree as the first `agy --add-dir` root.
23
+ - agentty: skip published-branch auto-push while follow-up messages are queued.
24
+ - agentty: move the runtime render throttle behind the shared `Clock` trait boundary.
25
+ - Bump GitHub Actions and version-update automation dependencies.
26
+ - Bump workspace crate metadata and lockfile package versions to `0.10.0`.
27
+
28
+ ### Contributors
29
+
30
+ - @andagaev
31
+ - @dependabot
32
+ - @minev-dev
33
+
34
+ ## [v0.9.6] - 2026-06-01
35
+
36
+ ### Added
37
+
38
+ - agentty: show linked review request URLs in session headers.
39
+ - agentty: persist merged review hashes so continuation can keep review context.
40
+
41
+ ### Changed
42
+
43
+ - agentty: reject progress-style generated session titles and tighten the title
44
+ generation prompt.
45
+ - agentty: restrict continuation to completed sessions; canceled sessions remain
46
+ terminal read-only.
47
+ - Refresh the README demo GIF for the current interface.
48
+ - testty: complete the explicit-import migration across docs, tests, and upgrade
49
+ guidance.
50
+ - Bump workspace crate metadata and lockfile package versions to `0.9.6`.
51
+
52
+ ### Contributors
53
+
54
+ - @andagaev
55
+ - @minev-dev
56
+
10
57
  ## [v0.9.5] - 2026-05-28
11
58
 
12
59
  This release supersedes `v0.9.4`, whose release workflow did not complete successfully.
@@ -66,6 +113,11 @@ This release supersedes `v0.9.4`, whose release workflow did not complete succes
66
113
  ### Removed
67
114
 
68
115
  - agentty: remove the roadmap-backed `Tasks` tab.
116
+ - testty: remove the `testty::prelude` wildcard re-export module. Public items are now
117
+ reached only through their owning module paths (for example,
118
+ `use testty::scenario::Scenario;`); see
119
+ [`crates/testty/docs/upgrading.md`](crates/testty/docs/upgrading.md) for the migration
120
+ note.
69
121
 
70
122
  ### Contributors
71
123
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.9.5"
26
+ "version": "0.10.0"
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.5"
545
+ "version": "0.10.0"
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.5"
3
+ "https://github.com/agentty-xyz/agentty/releases/download/v0.10.0"
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.5",
71
+ "version": "0.10.0",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"