@agentty-xyz/testty 0.12.9 → 0.13.0

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 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.0] - 2026-07-14
11
+
12
+ ### Added
13
+
14
+ - agentty: add a `p` project switcher popup to the `Sessions` view that lists registered
15
+ projects in most-recently-opened order and switches the active project in place.
16
+ - agentty: display assigned GitHub issue details, group issues by assignment, and style
17
+ assigned issue borders.
18
+ - agentty: let `Tab` move prompt composer focus to the chat transcript for scrolling
19
+ without losing the current draft.
20
+ - agentty: show a shared vertical scrollbar for overflowing session and `Diff` output,
21
+ including padding that keeps wrapped content clear of the scrollbar.
22
+ - docs: add a homepage roadmap covering the Harness, Orchestrator, Assistant, and Cloud
23
+ tracks through 2027.
24
+ - docs: add SonarCloud quality badges to `README.md`.
25
+
26
+ ### Changed
27
+
28
+ - agentty: serialize running-session sync through the active worker so queued sync runs
29
+ after the current turn and before later chat messages.
30
+ - agentty: represent summaries, reviews, workflow notices, and published-branch sync
31
+ output with typed transient slots, explicit lifecycles, and content-keyed caches.
32
+ - agentty: keep completed transcripts and summaries visible while branch workflows
33
+ update their transient status.
34
+ - agentty: refine focused review output with compact sections, verification-gated
35
+ `/apply` hints, and loading, ready, and failure states that survive session refreshes.
36
+ - agentty: run manual branch and review-request publishing in the background, preserve
37
+ durable PR and MR creation notices, and serialize publishing with auto-push work.
38
+ - agentty: enforce timeouts for forge and cleanup-critical git commands, and run merged
39
+ session cleanup as bounded background work.
40
+ - agentty: require Clippy checks and installed pre-commit hooks in commit workflows, and
41
+ warn without blocking when configured hooks are missing during session workflows.
42
+ - agentty: report stacked child sync failures as transient session notices.
43
+ - agentty: rename the green color theme's internal and persisted name from `hacker` to
44
+ `green`, migrating existing settings so users keep their selected theme.
45
+ - ag-agent: apply provider-specific structured-output schema requirements, remove raw
46
+ provider payloads from errors, and bound long CLI and transcript error details.
47
+ - ag-tui-text: bound grouped Mermaid edge generation.
48
+ - testty: make feature GIF recording opt-in, stabilize deterministic recording, batch
49
+ PTY proof steps, and run parallel E2E feature validation in presubmit.
50
+ - docs: refresh the website and documentation experience with responsive layouts,
51
+ accessibility improvements, static feature posters, and shared search.
52
+ - deps: bump `tachyonfx` from `0.25.0` to `0.25.1`.
53
+ - ci: bump `taiki-e/install-action` from `2.82.8` to `2.82.10`.
54
+ - release: bump workspace crate metadata and lockfile package versions to `0.13.0`.
55
+
56
+ ### Removed
57
+
58
+ - agentty: remove the review-comments preview from the `Diff` view.
59
+ - agentty: remove the process-local `Logs` tab and its in-memory logging pipeline.
60
+
61
+ ### Fixed
62
+
63
+ - agentty: refresh assigned issue views when observable issue state changes.
64
+ - agentty: prevent stale `InProgress` session state from starting a duplicate worker.
65
+ - agentty: treat punctuated empty focused-review suggestions as empty.
66
+ - agentty: align session-output wrapping and scroll metrics with the scrollbar gutter.
67
+
68
+ ### Contributors
69
+
70
+ - @andagaev
71
+ - @dependabot
72
+ - @minev-dev
73
+
10
74
  ## [v0.12.9] - 2026-07-11
11
75
 
12
76
  The `v0.12.8` release was not successful, so `v0.12.9` includes all changes originally
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "Apache-2.0",
25
25
  "name": "@agentty-xyz/testty",
26
- "version": "0.12.9"
26
+ "version": "0.13.0"
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.12.9"
545
+ "version": "0.13.0"
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.12.9"
3
+ "https://github.com/agentty-xyz/agentty/releases/download/v0.13.0"
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.12.9",
80
+ "version": "0.13.0",
81
81
  "volta": {
82
82
  "node": "18.14.1",
83
83
  "npm": "9.5.0"