github sourcebot-dev/sourcebot v2.4.0

latest releases: v2.5.0, v2.4.4, v2.4.3...
16 days ago

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

Don't miss a new sourcebot release

NewReleases is sending notifications on new releases.