@agentty-xyz/testty 0.13.0 → 0.13.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 +45 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,51 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v0.13.1] - 2026-07-15
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- testty: add `feature::Redaction` and `FeatureDemo::redact` so callers can declare
|
|
15
|
+
generated tokens the GIF freshness hash must ignore.
|
|
16
|
+
- testty: add `Redaction::literal` for exact-string redaction, such as the version an
|
|
17
|
+
application paints in its header.
|
|
18
|
+
- agentty: declare the `wt/<hash>` session worktree redaction in feature tests, so a
|
|
19
|
+
session's random worktree name no longer makes every recorded GIF look stale.
|
|
20
|
+
- agentty: redact the `Agentty v<version>` header in feature tests so release bumps do
|
|
21
|
+
not stale every committed GIF hash.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- agentty: make `TESTTY_GIF_MODE=check` and `check-only` run freshness checks for
|
|
26
|
+
published feature GIFs instead of silently disabling GIF hashing, including failures
|
|
27
|
+
for invalid committed hash sidecars.
|
|
28
|
+
- testty: distinguish missing and invalid feature GIF hash sidecars in
|
|
29
|
+
`GifStatus::Stale`.
|
|
30
|
+
- testty: use a stable FNV-1a feature GIF frame hash so committed sidecars compare
|
|
31
|
+
consistently across local machines and CI.
|
|
32
|
+
- testty (breaking): `feature::compute_frame_hash` now takes the caller's redaction
|
|
33
|
+
rules as a second argument. Pass `&[]` to keep the previous behavior.
|
|
34
|
+
- agentty: nest the E2E test project and worktree directories under the test `HOME` so
|
|
35
|
+
the TUI paints home-collapsed paths (`~/test-project`, `~/.agentty/wt/<hash>`) and
|
|
36
|
+
feature GIF frame hashes reproduce across macOS and Linux CI.
|
|
37
|
+
- agentty: stub every supported agent CLI in E2E test environments — not just `claude` —
|
|
38
|
+
so the default agent a new session resolves is identical on developer machines and CI.
|
|
39
|
+
- agentty: run feature tests and VHS recordings with color disabled so GIF hashes remain
|
|
40
|
+
stable across local shells and CI.
|
|
41
|
+
- agentty: preserve prompt and question drafts while chat output is focused for
|
|
42
|
+
scrolling, and clarify the related footer shortcuts and send labels.
|
|
43
|
+
- agentty: accept and queue follow-up prompts while sessions are rebasing.
|
|
44
|
+
- agentty: preserve review-request publishing progress across session refreshes.
|
|
45
|
+
- agentty: place queued synchronization notices after the active turn and before
|
|
46
|
+
follow-up messages.
|
|
47
|
+
- ci: run coverage checks in presubmit and postsubmit workflows.
|
|
48
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.1`.
|
|
49
|
+
|
|
50
|
+
### Contributors
|
|
51
|
+
|
|
52
|
+
- @andagaev
|
|
53
|
+
- @minev-dev
|
|
54
|
+
|
|
10
55
|
## [v0.13.0] - 2026-07-14
|
|
11
56
|
|
|
12
57
|
### Added
|
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.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.13.
|
|
545
|
+
"version": "0.13.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.13.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.13.1"
|
|
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.1",
|
|
81
81
|
"volta": {
|
|
82
82
|
"node": "18.14.1",
|
|
83
83
|
"npm": "9.5.0"
|