Skip to content

v2.4.0

Choose a tag to compare

@brendan-kellam brendan-kellam released this 07 Nov 02:48
· 453 commits to main since this release

What's Changed

Added support for indexing and searching repositories across multiple revisions (branch or tag). To get started, specify the revisions property in your config:

{
    "$schema": "https://raw.githubusercontent.com/sourcebot-dev/sourcebot/main/schemas/v2/index.json",
    "repos": [
        {
            "type": "github",
            "revisions": {
                 // Specify branches to index...
                "branches": [
                    "main",
                    "release/*"
                ],
                // ... or specify tags
                "tags": [
                    "v*.*.*"
                ]
            },
            // For each repo (repoa, repob), Sourcebot will index all branches and tags in the repo
            // matching the `branches` and `tags` patterns above. Any branches or tags that don't
            // match the patterns will be ignored and not indexed.
            "repos": [
                "org/repoa",
                "org/repob"
            ]
        }
   ]
}

To search on a specific revision, use the revision filter in the search bar:
revisions_filter_dark

Full Changelog: v2.3.0...v2.4.0