Skip to content

Commit 327de93

Browse files
committed
Merge upstream/main @ e921f9d21eb48dacf3d1523d892f34e296c27292
1 parent ead4fed commit 327de93

504 files changed

Lines changed: 17549 additions & 52494 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ body:
6464
attributes:
6565
value: |
6666
---
67-
Optional (for contributors): You can stop here if you're just proposing the improvement.
67+
Optional: You can stop here if you're just proposing the improvement.
6868
6969
- type: textarea
7070
id: acceptance-criteria

.github/workflows/evals.yml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/workflows/update-contributors.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,7 +1292,6 @@ The entries below are preserved from the upstream Roo Code project history befor
12921292
- Reposition Add Image button inside ChatTextArea (thanks @roomote!)
12931293
- Bring back a way to temporarily and globally pause auto-approve without losing your toggle state (thanks @brunobergher!)
12941294
- Makes text area buttons appear only when there's text (thanks @brunobergher!)
1295-
- CONTRIBUTING.md tweaks and issue template rewrite (thanks @hannesrudolph!)
12961295
- Bump axios from 1.9.0 to 1.12.0 (thanks @dependabot!)
12971296

12981297
## [3.28.2] - 2025-09-14
@@ -1752,7 +1751,6 @@ The entries below are preserved from the upstream Roo Code project history befor
17521751
- Fix Claude model detection by name for API protocol selection (thanks @daniel-lxs!)
17531752
- Move marketplace icon from overflow menu to top navigation
17541753
- Optional setting to prevent completion with open todos
1755-
- Added YouTube to website footer (thanks @thill2323!)
17561754

17571755
## [3.23.14] - 2025-07-17
17581756

@@ -2146,7 +2144,6 @@ The entries below are preserved from the upstream Roo Code project history befor
21462144
- Fix bug with context condensing in Amazon Bedrock
21472145
- Fix UTF-8 encoding in ExecaTerminalProcess (thanks @mr-ryan-james!)
21482146
- Set sidebar name bugfix (thanks @chrarnoldus!)
2149-
- Fix link to CONTRIBUTING.md in feature request template (thanks @cannuri!)
21502147
- Add task metadata to Unbound and improve caching logic (thanks @pugazhendhi-m!)
21512148

21522149
## [3.19.0] - 2025-05-29
@@ -3114,7 +3111,6 @@ The entries below are preserved from the upstream Roo Code project history befor
31143111
- Ask and Architect modes can now edit markdown files
31153112
- Custom modes can now be restricted to specific file patterns (for example, a technical writer who can only edit markdown files 👋)
31163113
- Support for configuring the Bedrock provider with AWS Profiles
3117-
- New Roo Code community Discord at https://roocode.com/discord!
31183114

31193115
## [3.2.8]
31203116

@@ -3154,8 +3150,6 @@ The entries below are preserved from the upstream Roo Code project history befor
31543150
- Create specialized assistants for any workflow
31553151
- Just type "Create a new mode for <X>" or visit the Prompts tab in the top menu to get started
31563152

3157-
Join us at https://www.reddit.com/r/RooCode to share your custom modes and be part of our next chapter!
3158-
31593153
## [3.1.7]
31603154

31613155
- DeepSeek-R1 support (thanks @philipnext!)
@@ -3203,12 +3197,8 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
32033197

32043198
## [3.0.1]
32053199

3206-
- Fix the reddit link and a small visual glitch in the chat input
3207-
32083200
## [3.0.0]
32093201

3210-
- This release adds chat modes! Now you can ask Roo Code questions about system architecture or the codebase without immediately jumping into writing code. You can even assign different API configuration profiles to each mode if you prefer to use different models for thinking vs coding. Would love feedback in the new Roo Code Reddit! https://www.reddit.com/r/RooCode
3211-
32123202
## [2.2.46]
32133203

32143204
- Only parse @-mentions in user input (not in files)

apps/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"test:coverage": "vitest run --coverage",
1717
"test:integration": "tsx scripts/integration/run.ts",
1818
"build": "tsup",
19-
"build:extension": "pnpm --filter ./src bundle",
20-
"dev": "ROO_AUTH_BASE_URL=https://app.roocode.com ROO_SDK_BASE_URL=https://cloud-api.roocode.com ROO_CODE_PROVIDER_URL=https://api.roocode.com/proxy tsx src/index.ts",
21-
"dev:local": "ROO_AUTH_BASE_URL=http://localhost:3000 ROO_SDK_BASE_URL=http://localhost:3001 ROO_CODE_PROVIDER_URL=http://localhost:8080/proxy tsx src/index.ts",
19+
"build:extension": "pnpm --filter zoo-code bundle",
20+
"dev": "tsx src/index.ts",
21+
"dev:local": "tsx src/index.ts",
2222
"clean": "rimraf dist .turbo"
2323
},
2424
"dependencies": {

apps/cli/scripts/integration/cases/create-with-session-id-resume-loads-correct-session.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ async function createSessionWithCustomId(
8888
"dev",
8989
"--print",
9090
"--provider",
91-
"roo",
91+
"openrouter",
9292
"--output-format",
9393
"stream-json",
9494
"--workspace",
@@ -148,7 +148,7 @@ async function resumeSessionAndSendMarker(
148148
"--print",
149149
"--stdin-prompt-stream",
150150
"--provider",
151-
"roo",
151+
"openrouter",
152152
"--output-format",
153153
"stream-json",
154154
"--workspace",

apps/cli/scripts/integration/lib/stream-harness.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export async function runStreamCase(options: RunStreamCaseOptions): Promise<void
6969

7070
const child = execa(
7171
"pnpm",
72-
["dev", "--print", "--stdin-prompt-stream", "--provider", "roo", "--output-format", "stream-json"],
72+
["dev", "--print", "--stdin-prompt-stream", "--provider", "openrouter", "--output-format", "stream-json"],
7373
{
7474
cwd: cliRoot,
7575
stdin: "pipe",

apps/cli/src/commands/auth/__tests__/auth-commands.test.ts

Lines changed: 0 additions & 76 deletions
This file was deleted.

apps/cli/src/commands/auth/index.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

apps/cli/src/commands/auth/logout.ts

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)