You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Ask the user what three areas should be highlighted.
68
59
- 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`.
69
60
- Ask the user to confirm the English announcement before proceeding.
70
61
- Arrange translation updates for all supported locales affected by README, announcement, or package localization changes.
71
62
72
-
9. Create the release branch:
63
+
8. Create the release branch:
73
64
74
65
```bash
75
66
git checkout -b release/v[version]
76
67
```
77
68
78
-
10. Generate the final release state on that branch:
69
+
9. Generate the final release state on that branch:
79
70
80
71
```bash
81
72
pnpm changeset:version
@@ -84,23 +75,23 @@ mode: code
84
75
- This should update `src/package.json`, `CHANGELOG.md`, and `src/CHANGELOG.md`, then consume the `.changeset` file.
85
76
- Review the generated version and changelog before opening the PR.
86
77
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.
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]
96
87
```
97
88
98
89
- There is no separate version-bump PR in this flow.
99
90
- The release PR should already contain the final version number and generated changelog updates.
100
91
- If the release includes translated README or package-localization updates, include those files in the same PR.
101
92
- Let the release validation workflow and normal PR checks run before merge.
102
93
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.
104
95
105
96
```bash
106
97
git switch main
@@ -115,7 +106,7 @@ mode: code
115
106
- Share that review summary, including `REVIEWED_SHA`, with the user and waitfor explicit confirmation before creating the tag.
116
107
- Do not create the tag or trigger publishing until the user says to proceed.
117
108
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:
119
110
120
111
```bash
121
112
git tag v[version] "$REVIEWED_SHA"
@@ -124,7 +115,7 @@ mode: code
124
115
125
116
- If `main` advances after the review pause, keep using the pinned `REVIEWED_SHA`for the tag instead of silently tagging a newer commit.
126
117
127
-
14. The stable publish workflow runs from the `v[version]` tag.
118
+
13. The stable publish workflow runs from the `v[version]` tag.
128
119
129
120
- Do not create the tag before the release PR is merged.
130
121
- The publish workflow validates that the tag version matches `src/package.json`.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# Zoo Code Changelog
2
2
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
+
3
9
All notable changes to Zoo Code will be documented in this file.
4
10
5
11
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).
Copy file name to clipboardExpand all lines: README.md
+7-12Lines changed: 7 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,18 +53,13 @@
53
53
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)
54
54
for this exact support, so if you are having problems or if you have question, jump on and ask.
55
55
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
0 commit comments