agentty 0.9.3 → 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 CHANGED
@@ -7,6 +7,99 @@ 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
+
33
+ ## [v0.9.5] - 2026-05-28
34
+
35
+ This release supersedes `v0.9.4`, whose release workflow did not complete successfully.
36
+
37
+ ### Added
38
+
39
+ - agentty: add Antigravity CLI backend support.
40
+ - Add SonarCloud, SonarQube, cargo-audit, Dependabot GitHub Actions update checks, and
41
+ rust-toolchain update checks to repository automation.
42
+
43
+ ### Changed
44
+
45
+ - agentty: adopt Claude Opus 4.8 as the active Opus model.
46
+ - agentty: deliver Antigravity prompts with `--print`, fix print-timeout flag ordering,
47
+ defer cancellation cleanup, support turn interruption, and sync linked review-request
48
+ metadata after auto-push.
49
+ - agentty: disallow commit creation guidance in session-turn protocol responses.
50
+ - Migrate release and crates.io workflows to scoped OIDC credentials, add reusable
51
+ GitHub Actions OIDC publishing workflow support for npm release jobs, and adjust
52
+ release workflow permissions so publish escalation can complete.
53
+ - Pin shared CI `prek` installs and hook calls to explicit `prek` v0.4.3 no-build mode,
54
+ normalize hyphenated GitHub Action inputs, and keep the security scan workflow on
55
+ read-only contents permissions.
56
+ - Bump workspace crate metadata and lockfile package versions to `0.9.5`.
57
+
58
+ ### Removed
59
+
60
+ - agentty: remove the roadmap-backed `Tasks` tab.
61
+
62
+ ### Contributors
63
+
64
+ - @dependabot
65
+ - @minev-dev
66
+
67
+ ## [v0.9.4] - 2026-05-28
68
+
69
+ ### Added
70
+
71
+ - agentty: add Antigravity CLI backend support.
72
+ - Add SonarCloud, SonarQube, cargo-audit, Dependabot GitHub Actions update checks, and
73
+ rust-toolchain update checks to repository automation.
74
+
75
+ ### Changed
76
+
77
+ - agentty: adopt Claude Opus 4.8 as the active Opus model.
78
+ - agentty: deliver Antigravity prompts with `--print`, fix print-timeout flag ordering,
79
+ defer cancellation cleanup, support turn interruption, and sync linked review-request
80
+ metadata after auto-push.
81
+ - agentty: disallow commit creation guidance in session-turn protocol responses.
82
+ - Migrate release and crates.io workflows to scoped OIDC credentials and add reusable
83
+ GitHub Actions OIDC publishing workflow support for npm release jobs.
84
+ - Pin shared CI `prek` installs and hook calls to explicit `prek` v0.4.3 no-build mode,
85
+ normalize hyphenated GitHub Action inputs, and keep the security scan workflow on
86
+ read-only contents permissions.
87
+ - Bump workspace crate metadata and lockfile package versions to `0.9.4`.
88
+
89
+ ### Removed
90
+
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.
97
+
98
+ ### Contributors
99
+
100
+ - @dependabot
101
+ - @minev-dev
102
+
10
103
  ## [v0.9.3] - 2026-05-20
11
104
 
12
105
  ### Added
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "agentty",
26
- "version": "0.9.3"
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.3"
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"
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.3",
71
+ "version": "0.9.6",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"