Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bazel-contrib/bazel-gazelle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.27.0
Choose a base ref
...
head repository: bazel-contrib/bazel-gazelle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.28.0
Choose a head ref
  • 18 commits
  • 152 files changed
  • 12 contributors

Commits on Sep 19, 2022

  1. language/proto: gen_known_imports creates structs instead of function…

    … calls (#1333)
    
    * Modify gen_known_imports to directly create structs
    
    The previous system, which generated calls to label.New(), was creating Go binaries that were over 80MB in size due to all the garbage collector metadata needed.
    
    This PR instead generates struct literals, which reduces that to ~10MB total (in our configuration). There are probably still better ways to include the known imports maps, but this resolves the immediate issue for us.
    eric-skydio authored Sep 19, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e046297 View commit details

Commits on Sep 22, 2022

  1. Add DoneGeneratingRules language hook (#1325)

    This allows for an explicit notification that it's safe to release
    resources needed only for generation (e.g. shutting down background
    servers).
    illicitonion authored Sep 22, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ddd4fa7 View commit details

Commits on Sep 23, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    505a93f View commit details

Commits on Sep 25, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2c9eb7c View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1cab969 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    05f5493 View commit details

Commits on Oct 5, 2022

  1. language/go should consider default_visibility set by OtherGen (#783) (

    …#1341)
    
    Previously, the implementation of the language/go extension's GenerateRules method only considered args.File, and therefore missed scenarios where another extension (as recommended in the Issue) creates a package(default_visibility = ...)
    dnathe4th authored Oct 5, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d201190 View commit details

Commits on Oct 6, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    fe1935f View commit details

Commits on Oct 14, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4603d6c View commit details
  2. bzlmod: Simplify go_grpc_library support (#1346)

    Also raise the module version to match the latest release.
    fmeum authored Oct 14, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    36eba65 View commit details

Commits on Oct 16, 2022

  1. Upgrade Go to 1.19 (#1349)

    linzhp authored Oct 16, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1c1c208 View commit details
  2. bzlmod: Add support for custom go_proto_library compilers (#1348)

    These changes are required to allow users of `rules_go` to use all the
    custom `go_proto_library` compilers defined in its `//proto` package
    **if they provide their own definitions of them**:
    * Make `gazelle` and `protobuf` visible to `go_repository` targets under
      their legacy `WORKSPACE` names.
    * Expose `build_file_proto_mode` on `go_deps.module`.
    fmeum authored Oct 16, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    234130f View commit details

Commits on Oct 17, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2cf6877 View commit details
  2. Add visibility extension to support recursive default_visibility conf…

    …iguration (#783) (#1343)
    
    Under a new /bazel/ subdirectory, this language-agnostic extension allows a directive to control the default_visibility templated out to all BUILD.bazel files in or under the directory. This feature is intended to allow large codebases to define hierarchical visibility defaults.
    dnathe4th authored Oct 17, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4c0a486 View commit details

Commits on Oct 18, 2022

  1. fix: Make gazelle_generation_test respect build out suffix when gen…

    …erating golden files (#1352)
    
    Co-authored-by: Borja Lorente <blorente@apple.com>
    blorente and Borja Lorente authored Oct 18, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cd1b313 View commit details
  2. Add size argument to gazelle_generation_test (#1351)

    * Add size argument to gazelle integration test macro
    charlesoconor authored Oct 18, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c4ec776 View commit details

Commits on Oct 25, 2022

  1. bzlmod: Update deps and Bazel pin (#1358)

    Also pin Bazel in `.bazelversion`, which appears to override the
    `bazel_version` specified in the CI script.
    fmeum authored Oct 25, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5943130 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0e33093 View commit details
Showing with 48,355 additions and 11,497 deletions.
  1. +2 −2 .bazelci/presubmit.yml
  2. +1 −0 .bcr/config.yml
  3. +12 −0 .bcr/metadata.template.json
  4. +18 −0 .bcr/presubmit.yml
  5. +4 −0 .bcr/source.template.json
  6. +1 −0 .gitignore
  7. +1 −0 BUILD.bazel
  8. +11 −3 MODULE.bazel
  9. +5 −3 README.rst
  10. +1 −1 WORKSPACE
  11. +6 −0 cmd/gazelle/fix-update.go
  12. +10 −3 def.bzl
  13. +18 −18 deps.bzl
  14. +4 −1 extend.md
  15. +6 −6 go.mod
  16. +17 −11 go.sum
  17. +22 −2 internal/bzlmod/go_deps.bzl
  18. +1 −0 internal/bzlmod/go_mod.bzl
  19. +3 −0 internal/generationtest/generation_test.go
  20. +6 −2 internal/generationtest/generationtest.bzl
  21. +2 −20 internal/go_repository.bzl
  22. +5 −0 internal/go_repository_tools_srcs.bzl
  23. +4 −0 internal/language/test_filegroup/BUILD.bazel
  24. +21 −1 internal/language/test_filegroup/lang.go
  25. +1 −0 language/BUILD.bazel
  26. +2 −0 language/base.go
  27. +9 −0 language/bazel/BUILD.bazel
  28. +51 −0 language/bazel/visibility/BUILD.bazel
  29. +64 −0 language/bazel/visibility/config.go
  30. +52 −0 language/bazel/visibility/lang.go
  31. +175 −0 language/bazel/visibility/lang_test.go
  32. +32 −0 language/bazel/visibility/resolve.go
  33. +16 −1 language/go/generate.go
  34. +29 −0 language/go/generate_test.go
  35. +12 −0 language/lang.go
  36. +1 −1 language/proto/gen/gen_known_imports.go
  37. +415 −415 language/proto/known_go_imports.go
  38. +4,252 −4,252 language/proto/known_imports.go
  39. +4,252 −4,252 language/proto/known_proto_imports.go
  40. +1 −1 tests/bcr/.bazelversion
  41. +1 −1 tests/bcr/MODULE.bazel
  42. +6 −0 tests/visibility_attr/BUILD.bazel
  43. +6 −0 tests/visibility_attr/child/BUILD.bazel
  44. +5 −2 testtools/files.go
  45. +19 −16 vendor/github.com/bazelbuild/buildtools/build/rule.go
  46. +5 −5 vendor/github.com/fsnotify/fsnotify/.gitignore
  47. +0 −62 vendor/github.com/fsnotify/fsnotify/AUTHORS
  48. +113 −0 vendor/github.com/fsnotify/fsnotify/CHANGELOG.md
  49. +19 −53 vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md
  50. +22 −25 vendor/github.com/fsnotify/fsnotify/LICENSE
  51. +123 −82 vendor/github.com/fsnotify/fsnotify/README.md
  52. +162 −0 vendor/github.com/fsnotify/fsnotify/backend_fen.go
  53. +459 −0 vendor/github.com/fsnotify/fsnotify/backend_inotify.go
  54. +707 −0 vendor/github.com/fsnotify/fsnotify/backend_kqueue.go
  55. +66 −0 vendor/github.com/fsnotify/fsnotify/backend_other.go
  56. +746 −0 vendor/github.com/fsnotify/fsnotify/backend_windows.go
  57. +0 −38 vendor/github.com/fsnotify/fsnotify/fen.go
  58. +46 −34 vendor/github.com/fsnotify/fsnotify/fsnotify.go
  59. +0 −36 vendor/github.com/fsnotify/fsnotify/fsnotify_unsupported.go
  60. +0 −351 vendor/github.com/fsnotify/fsnotify/inotify.go
  61. +0 −187 vendor/github.com/fsnotify/fsnotify/inotify_poller.go
  62. +0 −535 vendor/github.com/fsnotify/fsnotify/kqueue.go
  63. +208 −0 vendor/github.com/fsnotify/fsnotify/mkdoc.zsh
  64. +0 −4 vendor/github.com/fsnotify/fsnotify/{open_mode_bsd.go → system_bsd.go}
  65. +0 −4 vendor/github.com/fsnotify/fsnotify/{open_mode_darwin.go → system_darwin.go}
  66. +0 −586 vendor/github.com/fsnotify/fsnotify/windows.go
  67. +2 −2 vendor/golang.org/x/mod/module/module.go
  68. +30 −0 vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go
  69. +31 −0 vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s
  70. +2 −2 vendor/golang.org/x/sys/unix/dirent.go
  71. +18 −5 vendor/golang.org/x/sys/unix/mkall.sh
  72. +2 −2 vendor/golang.org/x/sys/unix/mkerrors.sh
  73. +0 −32 vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go
  74. +0 −100 vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go
  75. +90 −0 vendor/golang.org/x/sys/unix/syscall_darwin.go
  76. +0 −106 vendor/golang.org/x/sys/unix/syscall_illumos.go
  77. +11 −2 vendor/golang.org/x/sys/unix/syscall_linux.go
  78. +2 −2 vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go
  79. +42 −0 vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go
  80. +42 −0 vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go
  81. +104 −0 vendor/golang.org/x/sys/unix/syscall_solaris.go
  82. +8 −4 vendor/golang.org/x/sys/unix/syscall_unix.go
  83. +2 −4 vendor/golang.org/x/sys/unix/syscall_unix_gc.go
  84. +172 −1 vendor/golang.org/x/sys/unix/syscall_zos_s390x.go
  85. +1,905 −0 vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go
  86. +1,904 −0 vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go
  87. +0 −40 vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go
  88. +0 −25 vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.s
  89. +29 −3 vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go
  90. +18 −3 vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s
  91. +0 −40 vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go
  92. +0 −25 vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.s
  93. +29 −3 vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go
  94. +18 −3 vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s
  95. +1 −27 vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go
  96. +10 −0 vendor/golang.org/x/sys/unix/zsyscall_linux.go
  97. +2,221 −0 vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go
  98. +796 −0 vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s
  99. +2,221 −0 vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go
  100. +796 −0 vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s
  101. +27 −1 vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
  102. +281 −0 vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go
  103. +282 −0 vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go
  104. +218 −0 vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go
  105. +219 −0 vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go
  106. +0 −42 vendor/golang.org/x/sys/unix/ztypes_illumos_amd64.go
  107. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_386.go
  108. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go
  109. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
  110. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go
  111. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go
  112. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_mips.go
  113. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go
  114. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
  115. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go
  116. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go
  117. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
  118. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go
  119. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go
  120. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go
  121. +6 −0 vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
  122. +571 −0 vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go
  123. +571 −0 vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go
  124. +35 −0 vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go
  125. +10 −1 vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go
  126. +13 −0 vendor/golang.org/x/sys/windows/aliases.go
  127. +416 −0 vendor/golang.org/x/sys/windows/dll_windows.go
  128. +9 −0 vendor/golang.org/x/sys/windows/empty.s
  129. +54 −0 vendor/golang.org/x/sys/windows/env_windows.go
  130. +21 −0 vendor/golang.org/x/sys/windows/eventlog.go
  131. +178 −0 vendor/golang.org/x/sys/windows/exec_windows.go
  132. +48 −0 vendor/golang.org/x/sys/windows/memory_windows.go
  133. +70 −0 vendor/golang.org/x/sys/windows/mkerrors.bash
  134. +27 −0 vendor/golang.org/x/sys/windows/mkknownfolderids.bash
  135. +10 −0 vendor/golang.org/x/sys/windows/mksyscall.go
  136. +31 −0 vendor/golang.org/x/sys/windows/race.go
  137. +26 −0 vendor/golang.org/x/sys/windows/race0.go
  138. +1,444 −0 vendor/golang.org/x/sys/windows/security_windows.go
  139. +247 −0 vendor/golang.org/x/sys/windows/service.go
  140. +1,425 −0 vendor/golang.org/x/sys/windows/setupapi_windows.go
  141. +23 −0 vendor/golang.org/x/sys/windows/str.go
  142. +105 −0 vendor/golang.org/x/sys/windows/syscall.go
  143. +1,815 −0 vendor/golang.org/x/sys/windows/syscall_windows.go
  144. +3,260 −0 vendor/golang.org/x/sys/windows/types_windows.go
  145. +35 −0 vendor/golang.org/x/sys/windows/types_windows_386.go
  146. +34 −0 vendor/golang.org/x/sys/windows/types_windows_amd64.go
  147. +35 −0 vendor/golang.org/x/sys/windows/types_windows_arm.go
  148. +34 −0 vendor/golang.org/x/sys/windows/types_windows_arm64.go
  149. +9,468 −0 vendor/golang.org/x/sys/windows/zerrors_windows.go
  150. +149 −0 vendor/golang.org/x/sys/windows/zknownfolderids_windows.go
  151. +4,302 −0 vendor/golang.org/x/sys/windows/zsyscall_windows.go
  152. +8 −6 vendor/modules.txt
4 changes: 2 additions & 2 deletions .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
@@ -13,9 +13,9 @@ tasks:
ubuntu1804_bcr_tests:
name: BCR test module
platform: ubuntu1804
# Includes https://github.com/bazelbuild/bazel/commit/4e439689db73a12b9c8a1f9f1a5f8023e09d40b0,
# Includes https://github.com/bazelbuild/bazel/commit/3f92232c17bf4aad51880c811c291ba4b5b42721,
# which will eventually be released in Bazel 5.3.0.
bazel_version: 4e439689db73a12b9c8a1f9f1a5f8023e09d40b0
bazel_version: 3f92232c17bf4aad51880c811c291ba4b5b42721
working_directory: tests/bcr
build_targets:
- "//..."
1 change: 1 addition & 0 deletions .bcr/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fixedReleaser: fmeum
12 changes: 12 additions & 0 deletions .bcr/metadata.template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"homepage": "https://github.com/bazelbuild/bazel-gazelle",
"maintainers": [
{
"email": "fabian@meumertzhe.im",
"github": "fmeum",
"name": "Fabian Meumertzheim"
}
],
"versions": [],
"yanked_versions": {}
}
18 changes: 18 additions & 0 deletions .bcr/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
bcr_test_module:
module_path: tests/bcr
matrix:
platform:
- centos7
- debian10
- ubuntu2004
- macos
- windows
tasks:
run_test_module:
name: Run test module
platform: ${{ platform }}
build_targets:
- //...
- //:gazelle
test_targets:
- //...
4 changes: 4 additions & 0 deletions .bcr/source.template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"integrity": "",
"url": "https://github.com/{OWNER}/{REPO}/releases/download/{TAG}/{REPO}-{TAG}.tar.gz"
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -6,3 +6,4 @@
/tests/bcr/bazel-bin
/tests/bcr/bazel-out
/tests/bcr/bazel-testlogs
.DS_STORE
1 change: 1 addition & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@ load("//:def.bzl", "gazelle", "gazelle_binary")
# gazelle:exclude vendor
# gazelle:exclude third_party
# gazelle:exclude .bazelci
# gazelle:exclude .bcr
# gazelle:exclude .idea
# gazelle:exclude .github
# gazelle:exclude .vscode
14 changes: 11 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
module(
name = "gazelle",
version = "0.26.0",
version = "0.27.0",
repo_name = "bazel_gazelle",
)

print("WARNING: The bazel_gazelle Bazel module is still highly experimental and subject to change at any time. Only use it to try out bzlmod for now.")

bazel_dep(name = "bazel_skylib", version = "1.2.0")
bazel_dep(name = "rules_go", version = "0.33.0", repo_name = "io_bazel_rules_go")
bazel_dep(name = "bazel_skylib", version = "1.3.0")
bazel_dep(name = "protobuf", version = "3.19.6", repo_name = "com_google_protobuf")
bazel_dep(name = "rules_go", version = "0.35.0", repo_name = "io_bazel_rules_go")
bazel_dep(name = "rules_proto", version = "4.0.0")

go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
@@ -22,6 +24,12 @@ use_repo(
"bazel_gazelle_go_repository_tools",
)

rules_go_non_module_deps = use_extension("@io_bazel_rules_go//go/private:extensions.bzl", "non_module_dependencies")
use_repo(
rules_go_non_module_deps,
"go_googleapis",
)

go_deps = use_extension("//:extensions.bzl", "go_deps")
go_deps.from_file(go_mod = "//:go.mod")
use_repo(
8 changes: 5 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -155,10 +155,10 @@ should look like this:
http_archive(
name = "bazel_gazelle",
sha256 = "5982e5463f171da99e3bdaeff8c0f48283a7a5f396ec5282910b9e8a49c0dd7e",
sha256 = "efbbba6ac1a4fd342d5122cbdfdb82aeb2cf2862e35022c752eaddffada7c3f3",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.25.0/bazel-gazelle-v0.25.0.tar.gz",
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.25.0/bazel-gazelle-v0.25.0.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.27.0/bazel-gazelle-v0.27.0.tar.gz",
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.27.0/bazel-gazelle-v0.27.0.tar.gz",
],
)
@@ -322,6 +322,8 @@ you're using a compatible version.
+---------------------+------------------------------+------------------------------+
| 0.27 | 0.29 | n/a |
+---------------------+------------------------------+------------------------------+
| 0.28 | 0.35 | n/a |
+---------------------+------------------------------+------------------------------+

Usage
-----
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ go_rules_dependencies()

go_register_toolchains(
nogo = "@bazel_gazelle//:nogo",
version = "1.18.3",
version = "1.19.2",
)

load("//:deps.bzl", "gazelle_dependencies")
6 changes: 6 additions & 0 deletions cmd/gazelle/fix-update.go
Original file line number Diff line number Diff line change
@@ -360,6 +360,12 @@ func runFixUpdate(wd string, cmd command, args []string) (err error) {
}
})

for _, lang := range languages {
if finishable, ok := lang.(language.FinishableLanguage); ok {
finishable.DoneGeneratingRules()
}
}

// Finish building the index for dependency resolution.
ruleIndex.Finish()

13 changes: 10 additions & 3 deletions def.bzl
Original file line number Diff line number Diff line change
@@ -96,7 +96,7 @@ _gazelle_runner = rule(
"gazelle": attr.label(
default = "//cmd/gazelle",
executable = True,
cfg = "host",
cfg = "exec",
),
"command": attr.string(
values = [
@@ -135,14 +135,21 @@ def gazelle(name, **kwargs):
fail("{}: both args and extra_args were provided".format(name))
kwargs["extra_args"] = kwargs["args"]
kwargs.pop("args")

visibility = kwargs.pop("visibility", default = None)

tags_set = {t: "" for t in kwargs.pop("tags", [])}
tags_set["manual"] = ""
tags = [k for k in tags_set.keys()]
runner_name = name + "-runner"
_gazelle_runner(
name = runner_name,
tags = ["manual"],
tags = tags,
**kwargs
)
native.sh_binary(
name = name,
srcs = [runner_name],
tags = ["manual"],
tags = tags,
visibility = visibility,
)
36 changes: 18 additions & 18 deletions deps.bzl
Original file line number Diff line number Diff line change
@@ -93,8 +93,8 @@ def gazelle_dependencies(
go_repository,
name = "com_github_bazelbuild_buildtools",
importpath = "github.com/bazelbuild/buildtools",
sum = "h1:7xSt0nPZ74liqR8jjBYmjentrQVrdQEhoW4/+4BrmoM=",
version = "v0.0.0-20220907133145-b9bfff5d7f91",
sum = "h1:jhiMzJ+8unnLRtV8rpbWBFE9pFNzIqgUTyZU5aA++w8=",
version = "v0.0.0-20221004120235-7186f635531b",
build_naming_convention = "go_default_library",
)
_maybe(
@@ -171,8 +171,8 @@ def gazelle_dependencies(
go_repository,
name = "com_github_fsnotify_fsnotify",
importpath = "github.com/fsnotify/fsnotify",
sum = "h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI=",
version = "v1.5.4",
sum = "h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY=",
version = "v1.6.0",
)
_maybe(
go_repository,
@@ -276,8 +276,8 @@ def gazelle_dependencies(
go_repository,
name = "org_golang_x_crypto",
importpath = "golang.org/x/crypto",
sum = "h1:7I4JAnoQBe7ZtJcBaYHi5UtiO8tQHbUSXxL+pnGRANg=",
version = "v0.0.0-20210921155107-089bfa567519",
sum = "h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU=",
version = "v0.1.0",
)
_maybe(
go_repository,
@@ -297,15 +297,15 @@ def gazelle_dependencies(
go_repository,
name = "org_golang_x_mod",
importpath = "golang.org/x/mod",
sum = "h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s=",
version = "v0.6.0-dev.0.20220419223038-86c51ed26bb4",
sum = "h1:b9gGHsz9/HhJ3HF5DHQytPpuwocVTChQJK3AvoLRD5I=",
version = "v0.6.0",
)
_maybe(
go_repository,
name = "org_golang_x_net",
importpath = "golang.org/x/net",
sum = "h1:PxfKdU9lEEDYjdIzOtC4qFWgkU2rGHdKlKowJSMN9h0=",
version = "v0.0.0-20220722155237-a158d28d115b",
sum = "h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0=",
version = "v0.1.0",
)
_maybe(
go_repository,
@@ -318,29 +318,29 @@ def gazelle_dependencies(
go_repository,
name = "org_golang_x_sync",
importpath = "golang.org/x/sync",
sum = "h1:0SH2R3f1b1VmIMG7BXbEZCBUu2dKmHschSmjqGUrW8A=",
version = "v0.0.0-20220907140024-f12130a52804",
sum = "h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=",
version = "v0.1.0",
)
_maybe(
go_repository,
name = "org_golang_x_sys",
importpath = "golang.org/x/sys",
sum = "h1:PuvuRMeLWqsf/ZdT1UUZz0syhioyv1mzuFZsXs4fvhw=",
version = "v0.0.0-20220913175220-63ea55921009",
sum = "h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U=",
version = "v0.1.0",
)
_maybe(
go_repository,
name = "org_golang_x_text",
importpath = "golang.org/x/text",
sum = "h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=",
version = "v0.3.7",
sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=",
version = "v0.3.0",
)
_maybe(
go_repository,
name = "org_golang_x_tools",
importpath = "golang.org/x/tools",
sum = "h1:VveCTK38A2rkS8ZqFY25HIDFscX5X9OoEhJd3quQmXU=",
version = "v0.1.12",
sum = "h1:G6AHpWxTMGY1KyEYoAQ5WTtIekUUvDNjan3ugu60JvE=",
version = "v0.2.0",
)
_maybe(
go_repository,
5 changes: 4 additions & 1 deletion extend.md
Original file line number Diff line number Diff line change
@@ -144,7 +144,8 @@ proto extension stores metadata in hidden attributes of generated
## gazelle_generation_test

<pre>
gazelle_generation_test(<a href="#gazelle_generation_test-name">name</a>, <a href="#gazelle_generation_test-gazelle_binary">gazelle_binary</a>, <a href="#gazelle_generation_test-test_data">test_data</a>, <a href="#gazelle_generation_test-build_in_suffix">build_in_suffix</a>, <a href="#gazelle_generation_test-build_out_suffix">build_out_suffix</a>)
gazelle_generation_test(<a href="#gazelle_generation_test-name">name</a>, <a href="#gazelle_generation_test-gazelle_binary">gazelle_binary</a>, <a href="#gazelle_generation_test-test_data">test_data</a>, <a href="#gazelle_generation_test-build_in_suffix">build_in_suffix</a>, <a href="#gazelle_generation_test-build_out_suffix">build_out_suffix</a>,
<a href="#gazelle_generation_test-gazelle_timeout_seconds">gazelle_timeout_seconds</a>, <a href="#gazelle_generation_test-size">size</a>)
</pre>

gazelle_generation_test is a macro for testing gazelle against workspaces.
@@ -178,5 +179,7 @@ To update the expected files, run `UPDATE_SNAPSHOTS=true bazel run //path/to:the
| <a id="gazelle_generation_test-test_data"></a>test_data | A list of target of the test data files you will pass to the test. This can be a https://bazel.build/reference/be/general#filegroup. | none |
| <a id="gazelle_generation_test-build_in_suffix"></a>build_in_suffix | The suffix for the input BUILD.bazel files. Defaults to .in. By default, will use files named BUILD.in as the BUILD files before running gazelle. | <code>".in"</code> |
| <a id="gazelle_generation_test-build_out_suffix"></a>build_out_suffix | The suffix for the expected BUILD.bazel files after running gazelle. Defaults to .out. By default, will use files named check the results of the gazelle run against files named BUILD.out. | <code>".out"</code> |
| <a id="gazelle_generation_test-gazelle_timeout_seconds"></a>gazelle_timeout_seconds | <p align="center"> - </p> | <code>2</code> |
| <a id="gazelle_generation_test-size"></a>size | Specifies a test target's "heaviness": how much time/resources it needs to run. | <code>None</code> |


12 changes: 6 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -3,16 +3,16 @@ module github.com/bazelbuild/bazel-gazelle
go 1.18

require (
github.com/bazelbuild/buildtools v0.0.0-20220907133145-b9bfff5d7f91
github.com/bazelbuild/buildtools v0.0.0-20221004120235-7186f635531b
github.com/bazelbuild/rules_go v0.35.0
github.com/bmatcuk/doublestar/v4 v4.2.0
github.com/fsnotify/fsnotify v1.5.4
github.com/fsnotify/fsnotify v1.6.0
github.com/google/go-cmp v0.5.9
github.com/pelletier/go-toml v1.9.5
github.com/pmezard/go-difflib v1.0.0
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4
golang.org/x/sync v0.0.0-20220907140024-f12130a52804
golang.org/x/tools v0.1.12
golang.org/x/mod v0.6.0
golang.org/x/sync v0.1.0
golang.org/x/tools v0.2.0
)

require golang.org/x/sys v0.0.0-20220913175220-63ea55921009 // indirect
require golang.org/x/sys v0.1.0 // indirect
Loading