Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [1.48.1.0] - 2026-05-28

**`playwright` bumped to `^1.60.0` — fixes indefinite setup hang on Node 24.16+ and Node 26.x.**

`./setup` calls `playwright install chromium`. On Node 24.16+ and Node 26.x a yauzl extraction bug in Playwright < 1.60.0 causes the download to stall indefinitely after completing. Users would see 100% download progress and then nothing — no error, no prompt, no timeout. The fix is a one-line version bump from `^1.58.2` to `^1.60.0`. Closes #1703.

### The numbers that matter

| Item | Before | After |
|------|--------|-------|
| Playwright version floor | ^1.58.2 | ^1.60.0 |
| Node 24.16+ / Node 26.x setup | hangs indefinitely after download | completes normally |

### Itemized changes

#### Fixed
- `package.json`: `playwright` bumped from `^1.58.2` to `^1.60.0`. Resolves yauzl extraction hang on Node 24.16+ (and Node 26.x) that caused `./setup` to stall forever after the Chromium download completed.

## [1.48.0.0] - 2026-05-26

## **Agents stop dropping AskUserQuestion options when there are 5+.** A new canonical preamble rule + runtime gate makes Conductor's 4-option cap a split-or-batch decision, not a silent trim.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.48.0.0
1.48.1.0
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gstack",
"version": "1.48.0.0",
"version": "1.48.1.0",
"description": "Garry's Stack — Claude Code skills + fast headless browser. One repo, one install, entire AI engineering workflow.",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -47,7 +47,7 @@
"@ngrok/ngrok": "^1.7.0",
"diff": "^7.0.0",
"marked": "^18.0.2",
"playwright": "^1.58.2",
"playwright": "^1.60.0",
"puppeteer-core": "^24.40.0",
"socks": "^2.8.8"
},
Expand Down