Skip to content

Commit 704ae9d

Browse files
authored
chore(release): 0.1.1-beta.4
Bump agent-tty to 0.1.1-beta.4.
1 parent 3819f19 commit 704ae9d

5 files changed

Lines changed: 30 additions & 10 deletions

File tree

.github/workflows/release-changelog.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,12 @@ jobs:
4545
shell: bash
4646
env:
4747
BASE_REF: ${{ github.base_ref }}
48+
GH_TOKEN: ${{ github.token }}
4849
run: |
4950
set -euo pipefail
50-
git fetch --no-tags origin \
51+
auth_header="$(printf 'x-access-token:%s' "$GH_TOKEN" | base64 | tr -d '\n')"
52+
git -c "http.https://github.com/.extraheader=AUTHORIZATION: basic ${auth_header}" \
53+
fetch --no-tags origin \
5154
"refs/heads/$BASE_REF:refs/remotes/origin/$BASE_REF"
5255
5356
node --input-type=module <<'EOF'
@@ -150,7 +153,8 @@ jobs:
150153
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
151154
git add CHANGELOG.md
152155
git commit -m "docs: update changelog for ${RELEASE_TAG}"
153-
git -c "http.https://github.com/.extraheader=AUTHORIZATION: bearer ${GH_TOKEN}" \
156+
auth_header="$(printf 'x-access-token:%s' "$GH_TOKEN" | base64 | tr -d '\n')"
157+
git -c "http.https://github.com/.extraheader=AUTHORIZATION: basic ${auth_header}" \
154158
push "https://github.com/${GITHUB_REPOSITORY}.git" "HEAD:${GITHUB_HEAD_REF}"
155159
echo 'pushed=true' >> "$GITHUB_OUTPUT"
156160

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,12 @@ jobs:
6767
- name: Fetch default branch for release ancestry checks
6868
env:
6969
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
70+
GH_TOKEN: ${{ github.token }}
7071
run: |
7172
set -euo pipefail
72-
git fetch --no-tags origin \
73+
auth_header="$(printf 'x-access-token:%s' "$GH_TOKEN" | base64 | tr -d '\n')"
74+
git -c "http.https://github.com/.extraheader=AUTHORIZATION: basic ${auth_header}" \
75+
fetch --no-tags origin \
7376
"refs/heads/$DEFAULT_BRANCH:refs/remotes/origin/$DEFAULT_BRANCH"
7477
7578
- name: Validate release tag commit is on the default branch

CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,25 @@
22

33
## [Unreleased]
44

5+
## [v0.1.1-beta.4](https://github.com/coder/agent-tty/releases/tag/v0.1.1-beta.4) - 2026-04-25
6+
57
### Added
68

7-
- Release automation now uses Communique to update release PR changelog entries and compose GitHub Release notes while preserving install, checksum, and tarball fallback guidance.
8-
- CI now runs GitHub Actions workflow linting with `actionlint` and `zizmor` through the shared `mise run workflow-lint` task.
9-
- CI now installs mise-managed tools from the committed `mise.lock` so tool archive URLs and checksums are stable across release automation.
10-
- The package engine range now allows Node 25 in addition to Node 24.
9+
- Selectable `libghostty-vt` renderer backend support with backend-selection plumbing for live commands, offline replay, screenshots, snapshots, waits, and WebM export, plus dogfood coverage for the fallback path (#42).
10+
- Skills eval authoring and reporting DX, including workspace presets, reporter lifecycle hooks, token usage snapshots, and stronger statistical guidance for measuring skill changes (#33, #35, #36, #37).
11+
- Communique-powered release changelog and GitHub Release note automation, locked `mise` tooling, and GitHub Actions workflow linting with `actionlint` and `zizmor` (#32, #39).
12+
- Apache license and reorganized repository documentation for release, roadmap, design, dogfood, contributor, and maintainer workflows (#40, #41, #43).
13+
14+
### Changed
15+
16+
- The package engine range now allows Node 25 in addition to Node 24 (#39).
17+
- Development dependency maintenance updated PostCSS (#44).
18+
19+
### Fixed
20+
21+
- `agent-tty --help` now points users at `agent-tty skills list` for bundled skill discovery (#38).
22+
- Release workflows now authenticate protected branch fetches so private-repository release automation can read base/default branch refs (#45).
23+
- Eval scoring, reporting, verifier calibration, and anti-pattern checks were hardened with additional unit coverage (#34, #36).
1124

1225
## [v0.1.1-beta.3](https://github.com/coder/agent-tty/releases/tag/v0.1.1-beta.3) - 2026-04-24
1326

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-tty",
3-
"version": "0.1.1-beta.3",
3+
"version": "0.1.1-beta.4",
44
"description": "Terminal automation CLI for AI agents and humans",
55
"license": "Apache-2.0",
66
"keywords": [

0 commit comments

Comments
 (0)