Skip to content

Commit 45088a7

Browse files
[Fix] API requests hang indefinitely on VS Code 1.122.0+ (Zoo-Code-Org#383)
* chore: prepare v3.55.1 release * chore: drop release image references * fix: localize v3.55.1 marketplace notes --------- Co-authored-by: Roomote <roomote@roocode.com>
1 parent 5d0d6e7 commit 45088a7

21 files changed

Lines changed: 74 additions & 150 deletions

File tree

.roo/commands/release.md

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -53,29 +53,20 @@ mode: code
5353
- Order the list from most important to least important.
5454
- Include every PR in the release window. Count the PRs and cross-reference the list before continuing.
5555
56-
7. If an image generation tool is available, create a release image at `releases/[version]-release.png`.
57-
58-
- The image should relate to the main release highlight and fit the existing release-image style.
59-
- Add the generated image to `.changeset/v[version].md` before the list of changes:
60-
61-
```md
62-
![X.Y.Z Release - Description](/releases/X.Y.Z-release.png)
63-
```
64-
65-
8. For a major or minor release:
56+
7. For a major or minor release:
6657
6758
- Ask the user what three areas should be highlighted.
6859
- Update relevant announcement files and documentation, including `webview-ui/src/components/chat/Announcement.tsx`, `README.md`, and the `latestAnnouncementId` in `src/core/webview/ClineProvider.ts`.
6960
- Ask the user to confirm the English announcement before proceeding.
7061
- Arrange translation updates for all supported locales affected by README, announcement, or package localization changes.
7162
72-
9. Create the release branch:
63+
8. Create the release branch:
7364
7465
```bash
7566
git checkout -b release/v[version]
7667
```
7768
78-
10. Generate the final release state on that branch:
69+
9. Generate the final release state on that branch:
7970
8071
```bash
8172
pnpm changeset:version
@@ -84,23 +75,23 @@ mode: code
8475
- This should update `src/package.json`, `CHANGELOG.md`, and `src/CHANGELOG.md`, then consume the `.changeset` file.
8576
- Review the generated version and changelog before opening the PR.
8677
87-
11. Open a single release PR with the fully generated release state.
78+
10. Open a single release PR with the fully generated release state.
8879
8980
```bash
9081
git add CHANGELOG.md src/CHANGELOG.md src/package.json README.md locales/*/README.md src/package.nls*.json
9182
# If generated or updated:
92-
git add releases/[version]-release.png webview-ui/src/components/chat/Announcement.tsx src/core/webview/ClineProvider.ts
83+
git add webview-ui/src/components/chat/Announcement.tsx src/core/webview/ClineProvider.ts
9384
git commit -m "chore: prepare v[version] release"
9485
git push origin release/v[version]
95-
gh pr create --title "Release v[version]" --body "Release preparation for v[version]. This PR includes the final version bump, changelog updates, Marketplace README updates, and any release assets or announcement changes." --base main --head release/v[version]
86+
gh pr create --title "Release v[version]" --body "Release preparation for v[version]. This PR includes the final version bump, changelog updates, Marketplace README updates, and any announcement changes." --base main --head release/v[version]
9687
```
9788
9889
- There is no separate version-bump PR in this flow.
9990
- The release PR should already contain the final version number and generated changelog updates.
10091
- If the release includes translated README or package-localization updates, include those files in the same PR.
10192
- Let the release validation workflow and normal PR checks run before merge.
10293
103-
12. After the release PR is merged, stop for a release review on the resulting `main` commit.
94+
11. After the release PR is merged, stop for a release review on the resulting `main` commit.
10495
10596
```bash
10697
git switch main
@@ -115,7 +106,7 @@ mode: code
115106
- Share that review summary, including `REVIEWED_SHA`, with the user and wait for explicit confirmation before creating the tag.
116107
- Do not create the tag or trigger publishing until the user says to proceed.
117108
118-
13. Only after explicit confirmation, create the release tag on that reviewed `main` commit:
109+
12. Only after explicit confirmation, create the release tag on that reviewed `main` commit:
119110
120111
```bash
121112
git tag v[version] "$REVIEWED_SHA"
@@ -124,7 +115,7 @@ mode: code
124115
125116
- If `main` advances after the review pause, keep using the pinned `REVIEWED_SHA` for the tag instead of silently tagging a newer commit.
126117
127-
14. The stable publish workflow runs from the `v[version]` tag.
118+
13. The stable publish workflow runs from the `v[version]` tag.
128119
129120
- Do not create the tag before the release PR is merged.
130121
- The publish workflow validates that the tag version matches `src/package.json`.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Zoo Code Changelog
22

3+
## 3.55.1
4+
5+
### Patch Changes
6+
7+
- Fix API requests hanging indefinitely on VS Code 1.122.0+ when Zoo Code could not find the bundled ripgrep binary after the `@vscode/ripgrep-universal` rename (#381 by @greatgradz-svg, PR #248 by @0xMink).
8+
39
All notable changes to Zoo Code will be documented in this file.
410

511
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and Zoo Code uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

README.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,13 @@
5353
You can find a quick guide for migrating from Roo Code to Zoo Code in the [Roo→Zoo migration guide](https://docs.zoocode.dev/roo-to-zoo-migration). We plan to try and help users as they transition over, we have our [Reddit](https://www.reddit.com/r/ZooCode) and [Discord](https://discord.gg/VxfP4Vx3gX)
5454
for this exact support, so if you are having problems or if you have question, jump on and ask.
5555

56-
## What's New in v3.55.0
57-
58-
**Zoo Code's first feature release** builds on the marketplace handoff with a
59-
new provider, the upstream sunset merge, and a round of user-facing fixes
60-
across chat, provider settings, and rendering.
61-
62-
- Add Xiaomi MiMo as a first-class API provider
63-
- Pull in the upstream Roo Code sunset merge and related platform updates
64-
- Fix MCP sign-in copy, Gemini full-tool requests, and OpenAI temperature
65-
handling for unsupported models
66-
- Fix Markdown single-tilde rendering and diagnostics temp-file naming
67-
- Improve provider defaults and region coverage for Z.AI, GLM, and Vertex AI
56+
## What's New in v3.55.1
57+
58+
**This hotfix release** restores prompt execution on newer VS Code builds that
59+
ship ripgrep under `@vscode/ripgrep-universal`.
60+
61+
- Fix API requests hanging indefinitely on VS Code 1.122.0+ after the ripgrep
62+
package rename
6863

6964
<details>
7065
<summary>🌐 Available languages</summary>

locales/ca/README.md

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

locales/de/README.md

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

locales/es/README.md

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

locales/fr/README.md

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

locales/hi/README.md

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

locales/id/README.md

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

locales/it/README.md

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

0 commit comments

Comments
 (0)