agentty 0.9.3 → 0.9.5
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 +65 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,71 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.9.5] - 2026-05-28
|
|
11
|
+
|
|
12
|
+
This release supersedes `v0.9.4`, whose release workflow did not complete successfully.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- agentty: add Antigravity CLI backend support.
|
|
17
|
+
- Add SonarCloud, SonarQube, cargo-audit, Dependabot GitHub Actions update checks, and
|
|
18
|
+
rust-toolchain update checks to repository automation.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- agentty: adopt Claude Opus 4.8 as the active Opus model.
|
|
23
|
+
- agentty: deliver Antigravity prompts with `--print`, fix print-timeout flag ordering,
|
|
24
|
+
defer cancellation cleanup, support turn interruption, and sync linked review-request
|
|
25
|
+
metadata after auto-push.
|
|
26
|
+
- agentty: disallow commit creation guidance in session-turn protocol responses.
|
|
27
|
+
- Migrate release and crates.io workflows to scoped OIDC credentials, add reusable
|
|
28
|
+
GitHub Actions OIDC publishing workflow support for npm release jobs, and adjust
|
|
29
|
+
release workflow permissions so publish escalation can complete.
|
|
30
|
+
- Pin shared CI `prek` installs and hook calls to explicit `prek` v0.4.3 no-build mode,
|
|
31
|
+
normalize hyphenated GitHub Action inputs, and keep the security scan workflow on
|
|
32
|
+
read-only contents permissions.
|
|
33
|
+
- Bump workspace crate metadata and lockfile package versions to `0.9.5`.
|
|
34
|
+
|
|
35
|
+
### Removed
|
|
36
|
+
|
|
37
|
+
- agentty: remove the roadmap-backed `Tasks` tab.
|
|
38
|
+
|
|
39
|
+
### Contributors
|
|
40
|
+
|
|
41
|
+
- @dependabot
|
|
42
|
+
- @minev-dev
|
|
43
|
+
|
|
44
|
+
## [v0.9.4] - 2026-05-28
|
|
45
|
+
|
|
46
|
+
### Added
|
|
47
|
+
|
|
48
|
+
- agentty: add Antigravity CLI backend support.
|
|
49
|
+
- Add SonarCloud, SonarQube, cargo-audit, Dependabot GitHub Actions update checks, and
|
|
50
|
+
rust-toolchain update checks to repository automation.
|
|
51
|
+
|
|
52
|
+
### Changed
|
|
53
|
+
|
|
54
|
+
- agentty: adopt Claude Opus 4.8 as the active Opus model.
|
|
55
|
+
- agentty: deliver Antigravity prompts with `--print`, fix print-timeout flag ordering,
|
|
56
|
+
defer cancellation cleanup, support turn interruption, and sync linked review-request
|
|
57
|
+
metadata after auto-push.
|
|
58
|
+
- agentty: disallow commit creation guidance in session-turn protocol responses.
|
|
59
|
+
- Migrate release and crates.io workflows to scoped OIDC credentials and add reusable
|
|
60
|
+
GitHub Actions OIDC publishing workflow support for npm release jobs.
|
|
61
|
+
- Pin shared CI `prek` installs and hook calls to explicit `prek` v0.4.3 no-build mode,
|
|
62
|
+
normalize hyphenated GitHub Action inputs, and keep the security scan workflow on
|
|
63
|
+
read-only contents permissions.
|
|
64
|
+
- Bump workspace crate metadata and lockfile package versions to `0.9.4`.
|
|
65
|
+
|
|
66
|
+
### Removed
|
|
67
|
+
|
|
68
|
+
- agentty: remove the roadmap-backed `Tasks` tab.
|
|
69
|
+
|
|
70
|
+
### Contributors
|
|
71
|
+
|
|
72
|
+
- @dependabot
|
|
73
|
+
- @minev-dev
|
|
74
|
+
|
|
10
75
|
## [v0.9.3] - 2026-05-20
|
|
11
76
|
|
|
12
77
|
### Added
|
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.5"
|
|
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.5"
|
|
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.5"
|
|
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.5",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|