Skip to content

Commit e3f3203

Browse files
authored
Merge branch 'main' into task-stats-view
2 parents e44b804 + 6d0f08f commit e3f3203

File tree

147 files changed

+8270
-3953
lines changed

Some content is hidden

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

147 files changed

+8270
-3953
lines changed

.changeset/five-pigs-talk.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Organize provider settings into separate components

.changeset/pretty-peaches-bake.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Split Cline.getEnvironmentDetails out into a standalone function

.github/workflows/code-qa.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ jobs:
7878
run: npm run install:all
7979
- name: Compile (to build and copy WASM files)
8080
run: npm run compile
81-
- name: Run unit tests
81+
- name: Run jest unit tests
8282
run: npx jest --silent
83+
- name: Run vitest unit tests
84+
run: npx vitest run --silent
8385

8486
test-webview:
8587
runs-on: ${{ matrix.os }}

evals/packages/types/src/roo-code.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,6 @@ export const providerSettingsSchema = z.object({
355355
awsRegion: z.string().optional(),
356356
awsUseCrossRegionInference: z.boolean().optional(),
357357
awsUsePromptCache: z.boolean().optional(),
358-
awspromptCacheId: z.string().optional(),
359358
awsProfile: z.string().optional(),
360359
awsUseProfile: z.boolean().optional(),
361360
awsCustomArn: z.string().optional(),
@@ -455,7 +454,6 @@ const providerSettingsRecord: ProviderSettingsRecord = {
455454
awsRegion: undefined,
456455
awsUseCrossRegionInference: undefined,
457456
awsUsePromptCache: undefined,
458-
awspromptCacheId: undefined,
459457
awsProfile: undefined,
460458
awsUseProfile: undefined,
461459
awsCustomArn: undefined,

0 commit comments

Comments
 (0)