@agentty-xyz/testty 0.13.5 → 0.13.7
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 +64 -0
- package/README.md +9 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,70 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.13.7] - 2026-07-27
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: add `claude-opus-5` to the Claude model picker.
|
|
15
|
+
- agentty: add workspace personalities, personality-aware session prompts, source
|
|
16
|
+
details in slash-command results, and a code-improver agent.
|
|
17
|
+
- agentty: add a frontend-neutral session lifecycle API through the new `ag-session`
|
|
18
|
+
crate.
|
|
19
|
+
- agentty: render cyclic Mermaid flowcharts in markdown previews.
|
|
20
|
+
- ag-harness: add the initial harness crate for backend compatibility testing.
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- agentty: preserve session diffs across refreshes and forks, resolve stacked review
|
|
25
|
+
parents from their worktrees, and allow slash commands while working on those parents.
|
|
26
|
+
- agentty: improve prompt file mentions, highlighted file lookups, session rendering,
|
|
27
|
+
and personality summary loading.
|
|
28
|
+
- agentty: preserve manually linked review-request metadata and handle outdated review
|
|
29
|
+
threads and explicit no-change outcomes.
|
|
30
|
+
- ag-agent: parse Claude structured output, pass reasoning effort to Antigravity, and
|
|
31
|
+
refresh npm-global Gemini CLI installations.
|
|
32
|
+
- ci: move E2E tooling into a verified Podman container, compile-check database queries,
|
|
33
|
+
and update grouped GitHub Actions dependencies.
|
|
34
|
+
- docs: rename the `README.md` project title to Agentty ADE.
|
|
35
|
+
- deps: update `agent-client-protocol` to `1.3.0`, `async-trait` to `0.1.91`, `clap` to
|
|
36
|
+
`4.6.4`, `ignore` to `0.4.31`, `serde_json` to `1.0.151`, `thiserror` to `2.0.19`,
|
|
37
|
+
`time` to `0.3.54`, `tokio` to `1.53.1`, and `x11rb` to `0.14.0`.
|
|
38
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.7`.
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- agentty: keep `Esc` from ending question turns and correct the draft continuation
|
|
43
|
+
shortcut.
|
|
44
|
+
|
|
45
|
+
### Contributors
|
|
46
|
+
|
|
47
|
+
- @andagaev
|
|
48
|
+
- @dependabot
|
|
49
|
+
- @minev-dev
|
|
50
|
+
|
|
51
|
+
## [v0.13.6] - 2026-07-22
|
|
52
|
+
|
|
53
|
+
### Added
|
|
54
|
+
|
|
55
|
+
- agentty: batch linked review comments by marking each actionable thread to address or
|
|
56
|
+
deny before submitting one session-agent turn.
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
|
|
60
|
+
- agentty: replace Gemini 3.5 Flash and Gemini 3.1 Flash-Lite with Gemini 3.6 Flash and
|
|
61
|
+
Gemini 3.5 Flash-Lite, migrating persisted selections to their replacements.
|
|
62
|
+
- agentty: centralize review comment selection and grouped-row presentation.
|
|
63
|
+
- testty: refresh the `README.md` header layout.
|
|
64
|
+
- ci: run E2E workflows in a pinned Linux/amd64 image and update the Zizmor action from
|
|
65
|
+
`0.5.7` to `0.6.0`.
|
|
66
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.6`.
|
|
67
|
+
|
|
68
|
+
### Contributors
|
|
69
|
+
|
|
70
|
+
- @andagaev
|
|
71
|
+
- @dependabot
|
|
72
|
+
- @minev-dev
|
|
73
|
+
|
|
10
74
|
## [v0.13.5] - 2026-07-21
|
|
11
75
|
|
|
12
76
|
### Added
|
package/README.md
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
<h1>Testty</h1>
|
|
2
4
|
|
|
3
5
|
[](https://crates.io/crates/testty)
|
|
4
6
|
[](https://docs.rs/testty)
|
|
5
7
|
[](../../LICENSE)
|
|
6
8
|
|
|
7
|
-
[Documentation](docs/README.md) | [API reference](https://docs.rs/testty)
|
|
8
|
-
|
|
9
9
|
testty is a framework for end-to-end testing of terminal apps. It launches your real app
|
|
10
10
|
and checks what shows up on screen — text, colors, and highlights — with a single Rust
|
|
11
11
|
API.
|
|
12
12
|
|
|
13
|
+
[Documentation](docs/README.md) · [API reference](https://docs.rs/testty)
|
|
14
|
+
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
______________________________________________________________________
|
|
18
|
+
|
|
13
19
|
## Installation
|
|
14
20
|
|
|
15
21
|
```toml
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"name": "@agentty-xyz/testty",
|
|
26
|
-
"version": "0.13.
|
|
26
|
+
"version": "0.13.7"
|
|
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.13.
|
|
545
|
+
"version": "0.13.7"
|
|
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.13.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.13.7"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"testty": "run-testty.js"
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"zipExt": ".tar.xz"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
|
-
"version": "0.13.
|
|
80
|
+
"version": "0.13.7",
|
|
81
81
|
"volta": {
|
|
82
82
|
"node": "18.14.1",
|
|
83
83
|
"npm": "9.5.0"
|