Skip to content

prebuilt-v0.0.20

Choose a tag to compare

@github-actions github-actions released this 10 Jun 19:53
· 56 commits to main since this release
Immutable release. Only release title and notes can be modified.
11ae19c

Note

aspect_gazelle_prebuilt is the only module you need — every language and
extension is already compiled into the prebuilt binary. The other
aspect_gazelle_* modules (aspect_gazelle_js, aspect_gazelle_kotlin,
aspect_gazelle_orion, aspect_gazelle_runner, ...) are only used when
building the Gazelle binary from source.

Add to your MODULE.bazel:

bazel_dep(name = "aspect_gazelle_prebuilt", version = "0.0.20")

Then in your BUILD.bazel:

load("@aspect_gazelle_prebuilt//:def.bzl", "aspect_gazelle")

aspect_gazelle(
    name = "gazelle",
    languages = ["js", "python"],
    extensions = ["//tools/gazelle:my_rule.star"],
)

What's Changed

  • chore: upgrade publish-to-bcr to use new module_roots feature by @jbedard in #375
  • fix(orion): match import provider when resolving symbol-db imports by @jbedard in #376

Full Changelog: js-v1.1.0...prebuilt-v0.0.20