Skip to content

Commit b95c002

Browse files
fix: resolve merge conflict in ModeSelector; use scroll container and selected item refs
2 parents 3f6e5d7 + 08d7f80 commit b95c002

File tree

91 files changed

+1346
-689
lines changed

Some content is hidden

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

91 files changed

+1346
-689
lines changed

CHANGELOG.md

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

3+
## [3.28.1] - 2025-09-11
4+
5+
![3.28.1 Release - Kangaroo riding rocket to the clouds](/releases/3.28.1-release.png)
6+
7+
- Announce Roo Code Cloud!
8+
- Add cloud task button for opening tasks in Roo Code Cloud (thanks @app/roomote!)
9+
- Make Posthog telemetry the default (thanks @mrubens!)
10+
- Show notification when the checkpoint initialization fails (thanks @app/roomote!)
11+
- Bust cache in generated image preview (thanks @mrubens!)
12+
- Fix: Center active mode in selector dropdown on open (#7882 by @hannesrudolph, PR by @app/roomote)
13+
- Fix: Preserve first message during conversation condensing (thanks @daniel-lxs!)
14+
315
## [3.28.0] - 2025-09-10
416

517
![3.28.0 Release - Continue tasks in Roo Code Cloud](/releases/3.28.0-release.png)

PRIVACY.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Roo Code Privacy Policy
22

3-
**Last Updated: August 20th, 2025**
3+
**Last Updated: September 11th, 2025**
44

55
Roo Code respects your privacy and is committed to transparency about how we handle your data. Below is a simple breakdown of where key pieces of data go—and, importantly, where they don’t.
66

@@ -10,19 +10,19 @@ Roo Code respects your privacy and is committed to transparency about how we han
1010
- **Commands**: Any commands executed through Roo Code happen on your local environment. However, when you use AI-powered features, the relevant code and context from your commands may be transmitted to your chosen AI model provider (e.g., OpenAI, Anthropic, OpenRouter) to generate responses. We do not have access to or store this data, but AI providers may process it per their privacy policies.
1111
- **Prompts & AI Requests**: When you use AI-powered features, your prompts and relevant project context are sent to your chosen AI model provider (e.g., OpenAI, Anthropic, OpenRouter) to generate responses. We do not store or process this data. These AI providers have their own privacy policies and may store data per their terms of service. If you choose Roo Code Cloud as the provider (proxy mode), prompts may transit Roo Code servers only to forward them to the upstream model and are not stored.
1212
- **API Keys & Credentials**: If you enter an API key (e.g., to connect an AI model), it is stored locally on your device and never sent to us or any third party, except the provider you have chosen.
13-
- **Telemetry (Usage Data)**: We only collect feature usage and error data if you explicitly opt-in. This telemetry is powered by PostHog and helps us understand feature usage to improve Roo Code. This includes your VS Code machine ID and feature usage patterns and exception reports. We do **not** collect personally identifiable information, your code, or AI prompts.
14-
- **Marketplace Requests**: When you browse or search the Marketplace for Model Configuration Profiles (MCPs) or Custom Modes, Roo Code makes a secure API call to Roo Codes backend servers to retrieve listing information. These requests send only the query parameters (e.g., extension version, search term) necessary to fulfill the request and do not include your code, prompts, or personally identifiable information.
13+
- **Telemetry (Usage Data)**: We collect anonymous feature usage and error data to help us improve Roo Code. This telemetry is powered by PostHog and includes your VS Code machine ID, feature usage patterns, and exception reports. This telemetry does **not** collect personally identifiable information, your code, or AI prompts. You can opt out of this telemetry at any time through the settings.
14+
- **Marketplace Requests**: When you browse or search the Marketplace for Model Configuration Profiles (MCPs) or Custom Modes, Roo Code makes a secure API call to Roo Code's backend servers to retrieve listing information. These requests send only the query parameters (e.g., extension version, search term) necessary to fulfill the request and do not include your code, prompts, or personally identifiable information.
1515

1616
### **How We Use Your Data (If Collected)**
1717

18-
- If you opt-in to telemetry, we use it to understand feature usage and improve Roo Code.
18+
- We use telemetry to understand feature usage and improve Roo Code.
1919
- We do **not** sell or share your data.
2020
- We do **not** train any models on your data.
2121

2222
### **Your Choices & Control**
2323

2424
- You can run models locally to prevent data being sent to third-parties.
25-
- By default, telemetry collection is off and if you turn it on, you can opt out of telemetry at any time.
25+
- Telemetry collection is enabled by default to help us improve Roo Code, but you can opt out at any time through the settings.
2626
- You can delete Roo Code to stop all data collection.
2727

2828
### **Security & Updates**

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,6 @@ Check out the [CHANGELOG](CHANGELOG.md) for detailed updates and fixes.
4949

5050
---
5151

52-
## 🎉 Roo Code 3.25 Released
53-
54-
Roo Code 3.25 brings powerful new features and significant improvements to enhance your development workflow!
55-
56-
- **Message Queueing** - Queue multiple messages while Roo is working, allowing you to continue planning your workflow without interruption.
57-
- **Custom Slash Commands** - Create personalized slash commands for quick access to frequently used prompts and workflows, with full UI management.
58-
- **Enhanced Gemini Tools** - New URL context and Google Search grounding capabilities provide Gemini models with real-time web information and enhanced research abilities.
59-
60-
---
61-
6252
## What Can Roo Code Do?
6353

6454
- 🚀 **Generate Code** from natural language descriptions

packages/telemetry/src/TelemetryService.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ export class TelemetryService {
3636

3737
/**
3838
* Updates the telemetry state based on user preferences and VSCode settings
39-
* @param didUserOptIn Whether the user has explicitly opted into telemetry
39+
* @param isOptedIn Whether the user is opted into telemetry
4040
*/
41-
public updateTelemetryState(didUserOptIn: boolean): void {
41+
public updateTelemetryState(isOptedIn: boolean): void {
4242
if (!this.isReady) {
4343
return
4444
}
4545

46-
this.clients.forEach((client) => client.updateTelemetryState(didUserOptIn))
46+
this.clients.forEach((client) => client.updateTelemetryState(isOptedIn))
4747
}
4848

4949
/**

packages/types/src/telemetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export interface TelemetryClient {
242242

243243
setProvider(provider: TelemetryPropertiesProvider): void
244244
capture(options: TelemetryEvent): Promise<void>
245-
updateTelemetryState(didUserOptIn: boolean): void
245+
updateTelemetryState(isOptedIn: boolean): void
246246
isTelemetryEnabled(): boolean
247247
shutdown(): Promise<void>
248248
}

0 commit comments

Comments
 (0)