From 8c103c4ce2e60affdf30b3ffe5c08eb6e65b2b6b Mon Sep 17 00:00:00 2001 From: karan Date: Tue, 1 Apr 2025 16:36:28 -0700 Subject: [PATCH 1/3] update change log --- docs/changelog.md | 42 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index e200f30b..b0170209 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -5,13 +5,51 @@ description: The latest updates and changes to CodeRabbit. sidebar_position: 13 --- +## April 1, 2025 + +### Code Graph Analysis + +Code reviews automatically analyze dependencies across multiple files to enhance the context from code definitions (e.g., types) to improve accuracy and reduce false positives. + +This is a very powerful feature that gathers context behind code changes in one file that have dependencies in another file. + +🔍 See it in action: Review details → Additional context used → Code definitions +In the review status message. It is automatically enabled for all users. + +### Automatically Run a Web Query to Include Latest Information + +CodeRabbit now performs Web Queries automatically to include the most recent publicly available information — even if it wasn’t included in the latest LLM update. This feature is enabled by default for all users, and you may notice it being used in review comments and chat responses. + +Web Queries allow CodeRabbit to fetch the latest documentation and external content to improve the accuracy and relevance of its output. You can disable this feature by setting web_search: false in your knowledge_base settings. + +### CodeRabbit Auto-Resolve + +CodeRabbit can now detect when suggested changes have been implemented and automatically resolve the related review threads on your behalf. + +### Dashboard Redesign + +```mdx-code-block +import ProPlanNotice from "@site/src/components/ProPlanNotice.mdx" + + +``` + +New and Improved Dashboards to provide more useful feedback such as: + +- Avgerage PR Merge Time +- Weekly Pull Request Activity +- Number of PRs Reviewed +- Acceptance rate of CodeRabbit Suggestions +- Tool Findings +- Review Feedback Breakdown + +and much more! Check out the new dashboard to view these metrics about your organization. + ## February 25, 2025 ### Docstrings ```mdx-code-block -import ProPlanNotice from '@site/src/components/ProPlanNotice.mdx'; - ``` From b0e5fe14b05d9227b9566b3c7344aee6cce69e58 Mon Sep 17 00:00:00 2001 From: karan Date: Tue, 1 Apr 2025 16:55:32 -0700 Subject: [PATCH 2/3] add howon's agentic flow announcement --- docs/changelog.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index b0170209..43deb7dd 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -45,6 +45,14 @@ New and Improved Dashboards to provide more useful feedback such as: and much more! Check out the new dashboard to view these metrics about your organization. +### Multi-Step Agent Chat + +```mdx-code-block + +``` + +We're thrilled to introduce agentic planning on GitHub for CodeRabbit chat as an Experimental feature for Early Access users. This enhancement lets you make more advanced requests that span multiple files. Just add a review comment on any pull request tagging `@coderabbitai` along with your natural language request for a code change, and the chat will develop a plan for complex modifications. Upon reviewing the plan and getting your consent, CodeRabbit will emit a stacked PR to your PR for those code changes. + ## February 25, 2025 ### Docstrings From ce9527fc09953ae3abfabdfb03870469f301584f Mon Sep 17 00:00:00 2001 From: karan Date: Tue, 1 Apr 2025 16:57:41 -0700 Subject: [PATCH 3/3] add comment on agentic chat --- docs/guides/agent_chat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/agent_chat.md b/docs/guides/agent_chat.md index afc5484f..f3289b81 100644 --- a/docs/guides/agent_chat.md +++ b/docs/guides/agent_chat.md @@ -53,7 +53,7 @@ When facing complex coding challenges, CodeRabbit Chat supports multi-step agent CodeRabbit cannot perform further modifications to opened pull requests. From there, it's your turn to checkout the branch and improve it to satisfaction. We believe that this workflow provides a significant headstart to implementing code. -Multi-step agentic flows are currently only available on Github. Multi-step agentic flows are an early access product currently. +Multi-step agentic flows are currently only available on Github pull request review comments. Multi-step agentic flows are an early access product currently. ### Configuration Changes