Releases Release 6.3
MAY 23, 2025

Sourcegraph 6.3

A newer version of Sourcegraph is available: Sourcegraph 6.12.

Highlights

New models available in Cody Gateway

Details

Improvements

  • Code Search Default search context for all Code Search users
  • Code Search Diff comparison page UI enhancements
    • Users can now filter diffs on the diff comparison page
      Backport a2725da3281de64d2d2e41438222d0f38700e441 from #4398
  • Code Search Expose ENVs for search jobs config

    We've added new configuration options to help customers better manage search jobs:

    • Control how frequently the system checks for new search jobs to process (SRC_SEARCH_JOB_WORKER_INTERVAL, default: 1s)
    • Set a maximum time limit for how long a search job can run (SRC_SEARCH_JOB_MAXIMUM_RUNTIME_PER_JOB, default: 5h)
    • Adjust how many search jobs can run simultaneously (SRC_SEARCH_JOB_NUM_HANDLERS, default: 5)
  • Code Search Add support for chaining multiple filePaths in URL
    • Add support for chaining multiple filePaths together in URL
  • Cody New models available in Cody Gateway
  • Agents Allow grader to rewrite or relocate diagnostics [AGENT-302]

    The grader service can now fix broken diagnostics that come out of a review, hopefully improving quality.

  • Agents Add default rules
    • New default for the review setting rules: ['builtin-rules', 'repo-rules']. Builtin rules allow you to start using the review agent without creating any *.rule.md files.
  • Agents Grade diagnostics before posting [AGENT-196]

    Adds reflection to the review process to filter out bad diagnostics before posting.

  • Release Add a sg release steps command
    • new internal release command sg release steps to be used in pipeline gen
  • Source Adapt Gitaly's stats package and adapt test suite to run in our codebase

    N/A

  • Workspaces Show admin analytics menulink


    Backport 0b9ee7390bca046462737172c39d8ad2e13b99fb from #4652

  • Uncategorized Syntactic indexing support for C++

    Adds support for syntactic indexing for C++

  • Uncategorized Unsigned commits warning

    It is possible for users to have rejectUnverifiedCommits site configuration enabled, and also apply changesets without having the necessary configurations for commit signing. This change provides a warning banner during the batch set preview stage in such a case.

    With commit signing fully configured Warning showing because no GitHub commit signing configured
    image image

Fixes

  • GitHub Synchronize at least 100 GitHub issue/PR comments, not 30
    • When syncing conversations from GitHub, we now fetch 100 comments by default instead of the default 30 comments
  • Release Set development branch name by default

    NA

  • Source Fix error that happens when adding an existing GitHub App

    Fixed an error where Sourcegraph would display an error when an existing GitHub App was added in Site Admin, even though the adding succeeded.

  • Uncategorized [SRCH-1387] workspace refresh caching using incorrect key

    Fixes issue https://linear.app/sourcegraph/issue/SRCH-1387/chime-workspaces-not-updating

    The workspace preview components rely on the apollo client cache to coordinate the state. Queries are made in two places;

    • /client/web/src/enterprise/batches/batch-spec/edit/workspaces-preview/useWorkspacesPreview.ts
    • /client/web/src/enterprise/batches/batch-spec/edit/workspaces-preview/useWorkspaces.ts

    The desired effect is that both queries are cached under the same cache-key by apollo, and so when a query finds new results it triggers a component refresh with the new data.

    The problem is that there is a subtle difference in the variables passed to the query - one has after: null and on does not provide the after field. This means that they are treated as different queries and the cache entries for the queries are separate.

  • Uncategorized Update auto-updating script to use correct scip-typescript Docker tag

    Switch to Debian-based auto-indexing Docker image for scip-typescript, and official Node builds. The new image is compatible with recent Node versions (verified: 23.11.0).

Self-hosted resources