Skip to content

Commit e73b4c8

Browse files
authored
Merge branch 'main' into feature/internal-feature-flags
2 parents b2459de + c673569 commit e73b4c8

Some content is hidden

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

73 files changed

+1422
-856
lines changed

.github/workflows/changeset-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
REPO_PATH: ${{ github.repository }}
1111
GIT_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'main' }}
12-
NODE_VERSION: 20.18.1
12+
NODE_VERSION: 20.19.2
1313
PNPM_VERSION: 10.8.1
1414

1515
jobs:

.github/workflows/code-qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches: [main]
1010

1111
env:
12-
NODE_VERSION: 20.18.1
12+
NODE_VERSION: 20.19.2
1313
PNPM_VERSION: 10.8.1
1414

1515
jobs:

.github/workflows/marketplace-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
GIT_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'main' }}
10-
NODE_VERSION: 20.18.1
10+
NODE_VERSION: 20.19.2
1111
PNPM_VERSION: 10.8.1
1212

1313
jobs:

.github/workflows/nightly-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch: # Allows manual triggering.
1010

1111
env:
12-
NODE_VERSION: 20.18.1
12+
NODE_VERSION: 20.19.2
1313
PNPM_VERSION: 10.8.1
1414

1515
jobs:

.github/workflows/update-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch: # Allows manual triggering
88

99
env:
10-
NODE_VERSION: 20.18.1
10+
NODE_VERSION: 20.19.2
1111
PNPM_VERSION: 10.8.1
1212

1313
jobs:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.19.2
1+
v20.19.2

CHANGELOG.md

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

3+
## [3.19.2] - 2025-06-01
4+
5+
- Add support for Streamable HTTP Transport MCP servers (thanks @taylorwilsdon!)
6+
- Add cached read and writes to stats and cost calculation for LiteLLM provider (thanks @mollux!)
7+
- Prevent dump of an entire file into the context on user edit (thanks @KJ7LNW!)
8+
- Fix directory link handling in markdown (thanks @KJ7LNW!)
9+
- Prevent start_line/end_line in apply_diff REPLACE (thanks @KJ7LNW!)
10+
- Unify history item UI with TaskItem and TaskItemHeader (thanks @KJ7LNW!)
11+
- Fix the label of the OpenAI-compatible API keys
12+
- Fix Virtuoso footer re-rendering issue (thanks @kiwina!)
13+
- Optimize ChatRowContent layout and styles (thanks @zhangtony239!)
14+
- Release memory in apply diff (thanks @xyOz-dev!)
15+
- Upgrade Node.js to v20.19.2 for security enhancements (thanks @PeterDaveHello!)
16+
- Fix typos (thanks @noritaka1166!)
17+
318
## [3.19.1] - 2025-05-30
419

520
- Experimental feature to allow reading multiple files at once (thanks @samhvw8!)

README.md

Lines changed: 31 additions & 30 deletions
Large diffs are not rendered by default.

evals/scripts/setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,16 +176,16 @@ for i in "${!options[@]}"; do
176176
case "${plugin}" in
177177
"nodejs")
178178
if ! command -v node &>/dev/null; then
179-
asdf install nodejs 20.18.1 || exit 1
180-
asdf set nodejs 20.18.1 || exit 1
179+
asdf install nodejs 20.19.2 || exit 1
180+
asdf set nodejs 20.19.2 || exit 1
181181
NODE_VERSION=$(node --version)
182182
echo "✅ Node.js is installed ($NODE_VERSION)"
183183
else
184184
NODE_VERSION=$(node --version)
185185
echo "✅ Node.js is installed ($NODE_VERSION)"
186186
fi
187187

188-
if [[ $(node --version) != "v20.18.1" ]]; then
188+
if [[ $(node --version) != "v20.19.2" ]]; then
189189
NODE_VERSION=$(node --version)
190190
echo "🚨 You have the wrong version of node installed ($NODE_VERSION)."
191191
echo "💡 If you are using nvm then run 'nvm install' to install the version specified by the repo's .nvmrc."

locales/ca/README.md

Lines changed: 23 additions & 22 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)