agentty 0.9.6 → 0.10.1
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 +68 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,74 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.10.1] - 2026-06-09
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: add requested review detail navigation.
|
|
15
|
+
- agentty: add Claude Fable 5 model support.
|
|
16
|
+
- testty: add `proof::junit::JunitBackend`, a `ProofBackend` that renders a
|
|
17
|
+
`ProofReport` to JUnit-XML so non-Rust CIs can ingest testty proof results as test
|
|
18
|
+
cases and failures.
|
|
19
|
+
- testty: add a proof gallery that aggregates run artifacts into an index page.
|
|
20
|
+
- testty: the `testty` crate now ships the language-agnostic `testty` command-line
|
|
21
|
+
binary (`cargo install testty`), folding in the previously separate, never-published
|
|
22
|
+
`testty-cli` crate. The command tree is in place but the verbs remain stubbed.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- agentty: colorize reasoning labels and show session size markers as title prefixes in
|
|
27
|
+
the session list.
|
|
28
|
+
- agentty: expand Antigravity model selection to individual Gemini model variants.
|
|
29
|
+
- agentty: preserve popup clearing semantics for overlay backgrounds.
|
|
30
|
+
- agentty: retire `gpt-5.4` Codex model selection and promote `gpt-5.5` as the default.
|
|
31
|
+
- agentty: route project sync through a shared orchestrator.
|
|
32
|
+
- agentty: use non-interactive Codex app-server approvals.
|
|
33
|
+
- Bump GitHub Actions and version-update automation dependencies.
|
|
34
|
+
- Bump workspace crate metadata and lockfile package versions to `0.10.1`.
|
|
35
|
+
- testty: `ProofBackend::render` now takes a single `RenderContext` argument instead of
|
|
36
|
+
`(&ProofReport, &Path)`, so future render inputs can be added without breaking
|
|
37
|
+
external backends. Callers using `ProofReport::save` are unaffected. (Breaking for
|
|
38
|
+
custom `ProofBackend` implementations.)
|
|
39
|
+
- testty: `ProofError` is now `#[non_exhaustive]`. (Breaking for exhaustive matches.)
|
|
40
|
+
- testty: gate the CLI binary tests in the source-test hook.
|
|
41
|
+
|
|
42
|
+
### Removed
|
|
43
|
+
|
|
44
|
+
- agentty: remove the sessions list header bottom margin.
|
|
45
|
+
- testty: `CellStyle::from_cell` is no longer public; it leaked the `vt100::Cell`
|
|
46
|
+
implementation-detail type. Use `TerminalFrame::cell_style` instead. (Breaking.)
|
|
47
|
+
|
|
48
|
+
### Contributors
|
|
49
|
+
|
|
50
|
+
- @andagaev
|
|
51
|
+
- @dependabot
|
|
52
|
+
- @minev-dev
|
|
53
|
+
|
|
54
|
+
## [v0.10.0] - 2026-06-02
|
|
55
|
+
|
|
56
|
+
### Added
|
|
57
|
+
|
|
58
|
+
- agentty: add stacked draft session lineage and restack behavior.
|
|
59
|
+
- agentty: show reasoning levels next to model names in the session list.
|
|
60
|
+
|
|
61
|
+
### Changed
|
|
62
|
+
|
|
63
|
+
- agentty: beautify provider command failure output.
|
|
64
|
+
- agentty: select protocol schema guidance by provider capability and require temporary
|
|
65
|
+
artifact cleanup in protocol prompts.
|
|
66
|
+
- agentty: preserve the Antigravity session worktree as the first `agy --add-dir` root.
|
|
67
|
+
- agentty: skip published-branch auto-push while follow-up messages are queued.
|
|
68
|
+
- agentty: move the runtime render throttle behind the shared `Clock` trait boundary.
|
|
69
|
+
- Bump GitHub Actions and version-update automation dependencies.
|
|
70
|
+
- Bump workspace crate metadata and lockfile package versions to `0.10.0`.
|
|
71
|
+
|
|
72
|
+
### Contributors
|
|
73
|
+
|
|
74
|
+
- @andagaev
|
|
75
|
+
- @dependabot
|
|
76
|
+
- @minev-dev
|
|
77
|
+
|
|
10
78
|
## [v0.9.6] - 2026-06-01
|
|
11
79
|
|
|
12
80
|
### 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.
|
|
26
|
+
"version": "0.10.1"
|
|
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.
|
|
545
|
+
"version": "0.10.1"
|
|
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.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.10.1"
|
|
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.
|
|
71
|
+
"version": "0.10.1",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|