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.26.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.27.0
Choose a head ref
  • 20 commits
  • 240 files changed
  • 8 contributors

Commits on Jun 28, 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
    75b35c8 View commit details

Commits on Jul 6, 2022

  1. Use repo-relative labels everywhere (#1294)

    This makes it possible to load gazelle under any repo name, not
    necessarily bazel_gazelle. This opens up the possibility to call the
    gazelle Bazel module "gazelle".
    fmeum authored Jul 6, 2022

    Verified

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

Commits on Jul 9, 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
    4e8ece8 View commit details

Commits on Jul 10, 2022

  1. bzlmod prototype (#1266)

    * Prototype of bzlmod-powered transitive dependencies
    
    Modules can use the `go_deps` module extension to define Go dependencies.
    
    Only Go module dependencies are supported for now (`go_deps.module`).
    
    HTTP and VCS Go repositories can be implemented for the root module only
    using the new bazel_module.is_root field added in
    bazelbuild/bazel#15792 has been merged. They
    should follow the semantics of archive_override/git_override.
    
    * Update internal/bzlmod/go_deps.bzl
    
    Co-authored-by: Zhongpeng Lin <zplin@uber.com>
    
    Co-authored-by: Zhongpeng Lin <zplin@uber.com>
    fmeum and linzhp authored Jul 10, 2022

    Verified

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

Commits on Jul 15, 2022

  1. bzlmod: Do not create a repository with an invalid name (#1304)

    Since bazelbuild/bazel@263c24e,
    repositories created by modules and module extensions must have names
    that start with a letter - underscores are no longer allowed.
    fmeum authored Jul 15, 2022

    Verified

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

Commits on Jul 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
    35b00c2 View commit details

Commits on Jul 18, 2022

  1. Unwrap go list -m -json errors correctly (#1301)

    Previously, such errors would lead to the following error message:
    
    ```
    gazelle: json: cannot unmarshal object into Go struct field moduleFromList.Error of type string
    ```
    
    This is fixed by changing the definition of the `Error` field to be an
    object with an Err field of type string, as described at:
    https://go.dev/ref/mod#go-list-m
    
    Also fixes an incorrect test stub.
    fmeum authored Jul 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
    f46349d View commit details

Commits on Jul 26, 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
    814f572 View commit details
  2. bzlmod: Add go_deps.from_file (#1300)

    * bzlmod: Rename go_deps.module importpath parameter to path
    
    Go itself calls this a "module path" rather than an "import path" - it
    will rarely be a valid import path anyway.
    
    * bzlmod: Add a go.mod/go.sum parser
    
    * bzlmod: Add go_deps.from_file
    
    With go_deps.from_file, dependencies can be parsed from a go.mod/go.sum
    pair directly by the go_deps module extension. Users only have to
    declare visibility for their *direct* dependencies in their
    MODULE.bazel.
    
    * bzlmod: Make go mod and gazelle ignore tests/bcr/
    fmeum authored Jul 26, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2abe220 View commit details
  3. language: add BaseLang (#1303)

    In order to help folks extend Gazelle quicker and easier, provide a base
    implementation of the language.Language interface where everything is
    no-ops.
    
    End users then can simply compose their downstream struct with this
    to have a valid implementation to iterate upon.
    sluongng authored Jul 26, 2022

    Verified

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

Commits on Aug 3, 2022

  1. Allow adding arguments to Rules (#1310)

    This allows supporting patterns like `maybe`, which take a
    rule-to-instantiate as a positional argument.
    illicitonion authored Aug 3, 2022

    Verified

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

Commits on Aug 22, 2022

  1. Register and parse flags before calling Kinds/Loads (#1318)

    This allows languages to configure their Kinds/Loads calls based on
    command line flags.
    
    Closes #1274
    Fixes #1275
    illicitonion authored Aug 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
    984e821 View commit details

Commits on Aug 26, 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
    cec40e3 View commit details
  2. bzlmod: Fix canonical label literal after Bazel change (#1322)

    Necessary after bazelbuild/bazel@7f9de9e
    
    Also switches the Bazel version to last_green to learn of new potential
    breakages faster.
    fmeum authored Aug 26, 2022

    Verified

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

Commits on Aug 29, 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
    50455ff View commit details

Commits on Aug 30, 2022

  1. [merger] Look in call args for loadable symbols (#1317)

    Since #1310 we can add
    arguments to rules - this PR allows symbols to be loaded for these
    arguments.
    illicitonion authored Aug 30, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cfbfdff 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
    3df57af View commit details

Commits on Sep 9, 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
    2ba5ecf View commit details
  2. bzlmod: Depend on rules_proto (#1331)

    This is required to allow repositories generated for Go modules to see
    proto_library.
    
    Work towards bazel-contrib/rules_go#3265
    fmeum authored Sep 9, 2022
    Copy the full SHA
    55ba8e3 View commit details

Commits on Sep 14, 2022

  1. release new version of gazelle (#1323)

    Co-authored-by: Tyler French <66684063+tfrench-uber@users.noreply.github.com>
    tyler-french and tyler-french authored Sep 14, 2022
    Copy the full SHA
    06b821c View commit details
Loading