@agentty-xyz/testty 0.12.9 → 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 +109 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,115 @@ 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
|
+
|
|
55
|
+
## [v0.13.0] - 2026-07-14
|
|
56
|
+
|
|
57
|
+
### Added
|
|
58
|
+
|
|
59
|
+
- agentty: add a `p` project switcher popup to the `Sessions` view that lists registered
|
|
60
|
+
projects in most-recently-opened order and switches the active project in place.
|
|
61
|
+
- agentty: display assigned GitHub issue details, group issues by assignment, and style
|
|
62
|
+
assigned issue borders.
|
|
63
|
+
- agentty: let `Tab` move prompt composer focus to the chat transcript for scrolling
|
|
64
|
+
without losing the current draft.
|
|
65
|
+
- agentty: show a shared vertical scrollbar for overflowing session and `Diff` output,
|
|
66
|
+
including padding that keeps wrapped content clear of the scrollbar.
|
|
67
|
+
- docs: add a homepage roadmap covering the Harness, Orchestrator, Assistant, and Cloud
|
|
68
|
+
tracks through 2027.
|
|
69
|
+
- docs: add SonarCloud quality badges to `README.md`.
|
|
70
|
+
|
|
71
|
+
### Changed
|
|
72
|
+
|
|
73
|
+
- agentty: serialize running-session sync through the active worker so queued sync runs
|
|
74
|
+
after the current turn and before later chat messages.
|
|
75
|
+
- agentty: represent summaries, reviews, workflow notices, and published-branch sync
|
|
76
|
+
output with typed transient slots, explicit lifecycles, and content-keyed caches.
|
|
77
|
+
- agentty: keep completed transcripts and summaries visible while branch workflows
|
|
78
|
+
update their transient status.
|
|
79
|
+
- agentty: refine focused review output with compact sections, verification-gated
|
|
80
|
+
`/apply` hints, and loading, ready, and failure states that survive session refreshes.
|
|
81
|
+
- agentty: run manual branch and review-request publishing in the background, preserve
|
|
82
|
+
durable PR and MR creation notices, and serialize publishing with auto-push work.
|
|
83
|
+
- agentty: enforce timeouts for forge and cleanup-critical git commands, and run merged
|
|
84
|
+
session cleanup as bounded background work.
|
|
85
|
+
- agentty: require Clippy checks and installed pre-commit hooks in commit workflows, and
|
|
86
|
+
warn without blocking when configured hooks are missing during session workflows.
|
|
87
|
+
- agentty: report stacked child sync failures as transient session notices.
|
|
88
|
+
- agentty: rename the green color theme's internal and persisted name from `hacker` to
|
|
89
|
+
`green`, migrating existing settings so users keep their selected theme.
|
|
90
|
+
- ag-agent: apply provider-specific structured-output schema requirements, remove raw
|
|
91
|
+
provider payloads from errors, and bound long CLI and transcript error details.
|
|
92
|
+
- ag-tui-text: bound grouped Mermaid edge generation.
|
|
93
|
+
- testty: make feature GIF recording opt-in, stabilize deterministic recording, batch
|
|
94
|
+
PTY proof steps, and run parallel E2E feature validation in presubmit.
|
|
95
|
+
- docs: refresh the website and documentation experience with responsive layouts,
|
|
96
|
+
accessibility improvements, static feature posters, and shared search.
|
|
97
|
+
- deps: bump `tachyonfx` from `0.25.0` to `0.25.1`.
|
|
98
|
+
- ci: bump `taiki-e/install-action` from `2.82.8` to `2.82.10`.
|
|
99
|
+
- release: bump workspace crate metadata and lockfile package versions to `0.13.0`.
|
|
100
|
+
|
|
101
|
+
### Removed
|
|
102
|
+
|
|
103
|
+
- agentty: remove the review-comments preview from the `Diff` view.
|
|
104
|
+
- agentty: remove the process-local `Logs` tab and its in-memory logging pipeline.
|
|
105
|
+
|
|
106
|
+
### Fixed
|
|
107
|
+
|
|
108
|
+
- agentty: refresh assigned issue views when observable issue state changes.
|
|
109
|
+
- agentty: prevent stale `InProgress` session state from starting a duplicate worker.
|
|
110
|
+
- agentty: treat punctuated empty focused-review suggestions as empty.
|
|
111
|
+
- agentty: align session-output wrapping and scroll metrics with the scrollbar gutter.
|
|
112
|
+
|
|
113
|
+
### Contributors
|
|
114
|
+
|
|
115
|
+
- @andagaev
|
|
116
|
+
- @dependabot
|
|
117
|
+
- @minev-dev
|
|
118
|
+
|
|
10
119
|
## [v0.12.9] - 2026-07-11
|
|
11
120
|
|
|
12
121
|
The `v0.12.8` release was not successful, so `v0.12.9` includes all changes originally
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
80
|
+
"version": "0.13.1",
|
|
81
81
|
"volta": {
|
|
82
82
|
"node": "18.14.1",
|
|
83
83
|
"npm": "9.5.0"
|