agentty 0.8.9 → 0.8.10
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 +43 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,49 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and
|
|
6
6
|
this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [v0.8.10] - 2026-04-28
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- agentty: add `gemini-3.1-flash-lite-preview` as a selectable Gemini model with parser,
|
|
15
|
+
provider metadata, docs, and E2E model-picker coverage.
|
|
16
|
+
- agentty: add a project-scoped `Review` tab that lists open GitHub pull requests and
|
|
17
|
+
GitLab merge requests requesting the current user's review, with refresh handling,
|
|
18
|
+
navigation, help text, docs, and E2E coverage.
|
|
19
|
+
- testty: `PtySessionBuilder::args` forwards CLI arguments to the spawned binary so
|
|
20
|
+
non-interactive subcommand flows such as `--help` and `--version` are testable through
|
|
21
|
+
the existing builder pipeline.
|
|
22
|
+
- testty: add GIF freshness modes, hash sidecars, read-only check mode, forced
|
|
23
|
+
regeneration, public API re-exports, and `TESTTY_GIF_MODE` support in the agentty
|
|
24
|
+
feature-test harness.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- agentty: start new session worktrees from the active local branch, keep published
|
|
29
|
+
session rebases on the remote base ref, remove unused upstream lookup plumbing, and
|
|
30
|
+
keep git command execution non-interactive.
|
|
31
|
+
- agentty: reuse existing open same-branch GitHub pull requests or GitLab merge requests
|
|
32
|
+
for review requests, and keep requested-review cache refreshes fresher.
|
|
33
|
+
- agentty: route `Esc` in question mode as an end-turn shortcut when no `@`-mention
|
|
34
|
+
overlay is open, while keeping overlay dismissal on `Esc`.
|
|
35
|
+
- agentty: preserve legacy plain-`Enter` encoding under tmux on ghostty by keeping kitty
|
|
36
|
+
keyboard enhancement flags to disambiguation and alternate-key reporting.
|
|
37
|
+
- Bump workspace crate metadata and lockfile package versions to `0.8.10`.
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
|
|
41
|
+
- testty: `Frame::row_text`, `Frame::all_text`, and `Frame::text_in_region` skip
|
|
42
|
+
wide-character continuation cells so wide glyphs stay contiguous with their neighbors,
|
|
43
|
+
while real blank columns are preserved as spaces so substring searches cannot collapse
|
|
44
|
+
text across distant columns.
|
|
45
|
+
|
|
46
|
+
### Contributors
|
|
47
|
+
|
|
48
|
+
- @andagaev
|
|
49
|
+
- @minev-dev
|
|
50
|
+
|
|
8
51
|
## [v0.8.9] - 2026-04-27
|
|
9
52
|
|
|
10
53
|
### Changed
|
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.8.
|
|
26
|
+
"version": "0.8.10"
|
|
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.8.
|
|
545
|
+
"version": "0.8.10"
|
|
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.8.
|
|
3
|
+
"https://github.com/agentty-xyz/agentty/releases/download/v0.8.10"
|
|
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.8.
|
|
71
|
+
"version": "0.8.10",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|