-
Notifications
You must be signed in to change notification settings - Fork 8
upstream/v3.17.2 #85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
upstream/v3.17.2 #85
Conversation
* changeset version bump * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Chris Estreich <cestreich@gmail.com>
* changeset version bump * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Chris Estreich <cestreich@gmail.com>
feat: optimize code block rendering performance Memoize CodeBlock components to prevent unnecessary re-renders: - Add MemoizedCodeContent for syntax highlighted HTML - Add MemoizedStyledPre for container element - Properly type all component props - Reduce React reconciliation work for complex code blocks Signed-off-by: Eric Wheeler <roo-code@z.ewheeler.org> Co-authored-by: Eric Wheeler <roo-code@z.ewheeler.org>
* changeset version bump * Updating CHANGELOG.md format * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: R00-B0T <github-actions@github.com> Co-authored-by: Chris Estreich <cestreich@gmail.com>
* Add support for tests that use ESM libraries * Disable win32 for this test for now
* Tidy up the Cline class a bit * Clean up more comments
… lines (RooCodeInc#3087) Co-authored-by: Eric Wheeler <roo-code@z.ewheeler.org>
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: DEON NEL <deonnel@M-XIB-DeoN01.local> Co-authored-by: cte <cestreich@gmail.com>
…#2862) Co-authored-by: Eric Wheeler <roo-code@z.ewheeler.org>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: Chris Estreich <cestreich@gmail.com>
Co-authored-by: Chris Estreich <cestreich@gmail.com>
… to connect (RooCodeInc#1441) Co-authored-by: cte <cestreich@gmail.com>
…hropic Claude 3.5 (RooCodeInc#2722) Co-authored-by: cte <cestreich@gmail.com>
Co-authored-by: Matt Rubens <mrubens@users.noreply.github.com>
This commit refines the custom instructions for the 'ask' mode. The changes aim to provide clearer guidance to the AI, emphasizing thoroughness in answering questions and caution against prematurely switching to code implementation. Specifically, the instructions were updated as follows: - Changed "Make sure to answer the user's questions" to "Always answer the user’s questions thoroughly" - Changed "don't rush to switch to implementing code" to "do not switch to implementing code unless explicitly requested by the user" - Changed "Include Mermaid diagrams if they help make your response clearer" to "Include Mermaid diagrams when they clarify your response" These changes are reflected in both [`src/shared/modes.ts`](src/shared/modes.ts:80) and its corresponding snapshot file [`src/core/prompts/__tests__/__snapshots__/system.test.ts.snap`](src/core/prompts/__tests__/__snapshots__/system.test.ts.snap:5458).
…Inc#3586) The description for the `new_task` tool has been simplified for clarity. Additionally, the example modes listed for the `mode` parameter have been updated to include "debug" instead of "ask".
Co-authored-by: mrubens <mrubens@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…Inc#3418) Co-authored-by: Matt Rubens <mrubens@users.noreply.github.com>
Co-authored-by: Eric Wheeler <roo-code@z.ewheeler.org>
…odeInc#3582) Co-authored-by: Matt Rubens <mrubens@users.noreply.github.com>
Co-authored-by: mrubens <mrubens@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Matt Rubens <mrubens@users.noreply.github.com>
The Changelog link in `locales/ja/README.md` and other localized READMEswas pointing to a broken relative path, resulting in 404s.This commit updates the link to use a correct relative path (`../../CHANGELOG.md`)so that it works across all locales.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: R00-B0T <github-actions@github.com> Co-authored-by: Chris Estreich <cestreich@gmail.com>
|
||
expect(result).toEqual({ | ||
"Content-Type": "application/json", | ||
Authorization: "Bearer token123", |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
authorization header
|
||
expect(result).toEqual({ | ||
"Content-Type": "application/json", | ||
Authorization: "Bearer token123", |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
authorization header
|
||
expect(result).toEqual({ | ||
"Content-Type": "application/json", | ||
Authorization: "Bearer token123", |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
authorization header
expect(result["Content-Type"]).toBe("application/xml") | ||
expect(result).toEqual({ | ||
"Content-Type": "application/xml", | ||
Authorization: "Bearer token123", |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
mrubens 2 good