Using Bzlmod
bazel_dep(name = "gazelle", version = "2.0.0-3")Using WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel-gazelle",
sha256 = "1bce1b841fe40f4e863f085892ab05fec66fd84fe26aef5a98307093754ce55d",
url = "https://github.com/bazel-contrib/bazel-gazelle/releases/download/v2.0.0-3/bazel-gazelle-v2.0.0-3.tar.gz",
)
load("@bazel-gazelle//:deps.bzl", "gazelle_dependencies")
gazelle_dependencies()What's Changed
- docs: update Gazelle and rules_go releases by @tyler-french in #2380
- fix releases for immutable GitHub releases by @tyler-french in #2381
- Fix cgo race detection by @keith in #2383
- Simplify gazelle_binary by @dzbarsky in #2386
- Relocatable go env by @badumbatish in #2385
- go_deps: add a unit testing framework by @jayconrod in #2388
- Use ephemeral GOMODCACHE for module-mode fetches by @blampe in #2389
- go_repository_config: move bzlmod version to its own file by @jayconrod in #2390
- fix: register configured map_kind mappings before resolution by @jbedard in #2391
- go_deps: compute environment outside of go_repository_cache by @jayconrod in #2392
- perf(language/go): read Go files once during analysis by @blico-v2 in #2399
- perf: avoid temp arrays in sortExprLabels by @jbedard in #2395
- perf(merger): reuse load indexes across BUILD files by @blico-v2 in #2402
- perf(language/go): parse build tags without Scanner by @blico-v2 in #2401
New Contributors
- @badumbatish made their first contribution in #2385
- @blampe made their first contribution in #2389
- @blico-v2 made their first contribution in #2399
Full Changelog: v0.52.2...v2.0.0-3