Open
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
|
|
||
| expect(result).toEqual({ | ||
| "Content-Type": "application/json", | ||
| Authorization: "Bearer token123", |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
|
|
||
| expect(result).toEqual({ | ||
| "Content-Type": "application/json", | ||
| Authorization: "Bearer token123", |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
| 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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
mrubens 2 good