Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency io_bazel_rules_go to v0.51.0 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 22, 2022

This PR contains the following updates:

Package Type Update Change
io_bazel_rules_go http_archive minor v0.30.0 -> v0.51.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

bazelbuild/rules_go (io_bazel_rules_go)

v0.51.0

Compare Source

Breaking changes

In order to reduce CPU and memory usage in the analysis phase and to improve the maintainability of the codebase, this release contains a number of breaking changes.
As the bulk of these changes are to the Go context API, users of the go_* rules should not be affected (with a very minor exception below).

The maintainers would like to give a special thanks to @​dzbarsky for numerous contributions to this release!

Changes to rules

  • Support for inferring an importpath for libraries named go_default_library has been removed. Modern versions of Gazelle do not generate this target name, please ensure you are up to date. (c8a7ebca3)

Changes to the Go context API and behavior

  • Converted SDK files to depsets (go.sdk.tools, go.sdk.headers, go.sdk.libs, go.sdk.srcs). To migrate, either call to_list() on those properties or, preferably, use them as depsets in your downstream actions. To remain compatible with older versions, consider a conditional conversion such as depset_or_list if type(depset_or_list) == type([]) else depset_or_list.to_list() (3994841a)

  • go.sdk_files has been removed and can be replaced with depset(direct = [go.sdk.go], transitive = [go.sdk.srcs, go.sdk.headers, go.sdk.libs, go.sdk.tools]) (which is a depset). Wherever possible, try to use only the subset of those files that's actually needed.

  • GoSource and GoLibrary providers have been merged and renamed to GoInfo. The previous names are now aliases, but can result in errors about duplicate providers when both are returned from the same rule. go.new_library and go.library_to_source are now deprecated. To migrate, use go.new_go_info. To remain compatible with older versions that require both providers, consider checking whether GoSource != GoLibrary. (564f8204)

  • Some fields on the Go context object are marked deprecated. go_context will still add them to the context object, unless it is invoked with include_deprecated_properties = False. This default will be flipped in the future and eventually this codepath will be removed. (aa96a1174) You can migrate as follows:

    • go.root -> go.env["GOROOT"]
    • go.go -> go.sdk.go
    • go.sdk_root -> go.sdk.root_file
    • go.sdk_tools -> go.sdk.tools
    • go.package_list -> go.sdk.package_list
    • go.tags -> go.mode.tags
    • go.stamp -> go.mode.stamp
    • go.cover_format -> go.mode.cover_format
    • go.pgoprofile -> go.mode.pgoprofile
  • Removed get_nogo from the Go context object (0f88f8c8)

  • Removed exe_extension and shared_extension from the Go context object. (c419453a)

  • Removed GoSource.cc_info. If you need to access the CcInfo from a Go target, you will need to apply the _go_cc_aspect from go/private/rules/binary.bzl. Please let us know if it's needed and we can move it to public API. (a01ba7c72)

  • go_binary and go_test targets no longer expose GoInfo, GoSource or GoLibrary providers. If you need a dedicated provider to attach an aspect to, please let us know. (2d2266)

  • The Go context's mode property is now a GoConfigInfo provider instead of a bare struct. go.mode.link has been renamed to go.mode.linkmode (5933f872)

  • If you are relying on go_context to read an _stdlib attribute from your attrs, please ensure the attribute is not transitioned, as it will no longer handle a list value. (9214edcd126)

  • go_context now accepts keyword arguments for the following fields: go_context_data, importpath, importmap, embed, importpath_aliases. If these properties are omitted, the function will continue to fall back to reading them from attr. Consider passing these explicitly to improve code clarity and analysis phase performance. (6749a3819, f3029e2a8)

Changes to providers

GoSource

  • Removed cgo_deps, use cdeps instead (56d415d)

  • Removed orig_srcs (520bee50)

  • Removed cgo_exports (86c3f3ae97)

  • Converted cover to a depset (692d008c96)

  • deps is now a list of GoArchives instead of Targets (a32f3e1)

GoArchive

  • Removed mode, use source.mode instead (bfd99a663)

GoArchiveData

  • Removed data_files, use with runfiles instead, which is a runfiles object (60f55c91ce)

CgoContextInfo

  • Converted cc_toolchain_files to a depset (3994841)

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "0936c9bc3c4321ee372cb8f66dd972d368cb940ed01a9ba9fd7debcf0093f09b",
    urls = [
        "https://mirror.bazel.build/github.com/bazel-contrib/rules_go/releases/download/v0.51.0/rules_go-v0.51.0.zip",
        "https://github.com/bazel-contrib/rules_go/releases/download/v0.51.0/rules_go-v0.51.0.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.23.4")

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_go@v0.50.1...v0.51.0

v0.50.1

Compare Source

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "f4a9314518ca6acfa16cc4ab43b0b8ce1e4ea64b81c38d8a3772883f153346b8",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.50.1/rules_go-v0.50.1.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.50.1/rules_go-v0.50.1.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.23.0")

Fixes Included:

#​4081
#​4082
#​4083

Full Changelog: bazel-contrib/rules_go@v0.50.0...v0.50.1

v0.50.0

Compare Source

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "67b4d1f517ba73e0a92eb2f57d821f2ddc21f5bc2bd7a231573f11bd8758192e",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.50.0/rules_go-v0.50.0.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.50.0/rules_go-v0.50.0.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.23.0")

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_go@release-0.49...release-0.50

v0.49.0

Compare Source

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "d93ef02f1e72c82d8bb3d5169519b36167b33cf68c252525e3b9d3d5dd143de7",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.49.0/rules_go-v0.49.0.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.49.0/rules_go-v0.49.0.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.22.5")

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_go@v0.48.0...v0.49.0

v0.48.1

Compare Source

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "b2038e2de2cace18f032249cb4bb0048abf583a36369fa98f687af1b3f880b26",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.48.1/rules_go-v0.48.1.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.48.1/rules_go-v0.48.1.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.22.4")

Full Changelog: bazel-contrib/rules_go@v0.48.0...v0.48.1

v0.48.0

Compare Source

Important Changes!

--incompatible_enable_proto_toolchain_resolution is now supported in rules_go. This means that protoc should now be supplied as a toolchain. protoc can be registered using https://github.com/aspect-build/toolchains_protoc, or a local proto toolchain can be added.

rules_proto 6.0.0 is required to use Go proto rules.

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "33acc4ae0f70502db4b893c9fc1dd7a9bf998c23e7ff2c4517741d4049a976f8",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.22.3")

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_go@v0.47.1...v0.48.0

v0.47.1

Compare Source

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "f74c98d6df55217a36859c74b460e774abc0410a47cc100d822be34d5f990f16",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.47.1/rules_go-v0.47.1.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.47.1/rules_go-v0.47.1.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.22.2")

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_go@v0.47.0...v0.47.1

v0.47.0

Compare Source

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "af47f30e9cbd70ae34e49866e201b3f77069abb111183f2c0297e7e74ba6bbc0",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.47.0/rules_go-v0.47.0.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.47.0/rules_go-v0.47.0.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.22.2")

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_go@v0.46.0...v0.47.0

v0.46.0

Compare Source

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "80a98277ad1311dacd837f9b16db62887702e9f1d1c4c9f796d0121a46c8e184",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.46.0/rules_go-v0.46.0.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.46.0/rules_go-v0.46.0.zip",
    ],
)

load("@​io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.22.0")

What's Changed


Configuration

📅 Schedule: Branch creation - "before 5am every weekday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.31.0 Update dependency io_bazel_rules_go to v0.32.0 May 15, 2022
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from c61f5cf to 90893d5 Compare May 15, 2022 19:33
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 90893d5 to 512bcd3 Compare June 23, 2022 22:23
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.32.0 Update dependency io_bazel_rules_go to v0.33.0 Jun 23, 2022
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 512bcd3 to 69609c0 Compare September 25, 2022 10:57
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.33.0 Update dependency io_bazel_rules_go to v0.35.0 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 69609c0 to 80cc80b Compare March 17, 2023 05:43
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.35.0 Update dependency io_bazel_rules_go to v0.38.1 Mar 17, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 80cc80b to 344db32 Compare March 30, 2023 11:58
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.38.1 Update dependency io_bazel_rules_go to v0.39.0 Mar 30, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 344db32 to c416679 Compare May 29, 2023 23:59
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.39.0 Update dependency io_bazel_rules_go to v0.39.1 May 29, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from c416679 to 9725335 Compare June 23, 2023 05:12
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.39.1 Update dependency io_bazel_rules_go to v0.40.0 Jun 23, 2023
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.40.0 Update dependency io_bazel_rules_go to v0.40.1 Jun 28, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 9725335 to efd6d2c Compare June 28, 2023 23:44
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from efd6d2c to 589a504 Compare July 11, 2023 23:32
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.40.1 Update dependency io_bazel_rules_go to v0.41.0 Jul 11, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 589a504 to 9d9fed3 Compare September 30, 2023 02:36
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.41.0 Update dependency io_bazel_rules_go to v0.42.0 Sep 30, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 9d9fed3 to 36be5d0 Compare November 21, 2023 20:20
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.42.0 Update dependency io_bazel_rules_go to v0.43.0 Nov 21, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 36be5d0 to 6946465 Compare December 20, 2023 05:43
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.43.0 Update dependency io_bazel_rules_go to v0.44.0 Dec 20, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 6946465 to ec76c75 Compare December 30, 2023 02:45
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.44.0 Update dependency io_bazel_rules_go to v0.44.1 Dec 30, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from ec76c75 to 3fe0c21 Compare January 4, 2024 05:21
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.44.1 Update dependency io_bazel_rules_go to v0.44.2 Jan 4, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 3fe0c21 to 23544a3 Compare January 13, 2024 11:37
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.44.2 Update dependency io_bazel_rules_go to v0.45.0 Jan 13, 2024
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.45.0 Update dependency io_bazel_rules_go to v0.45.1 Jan 20, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 23544a3 to fd7bbc5 Compare January 20, 2024 17:34
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from fd7bbc5 to 28f7ef6 Compare February 10, 2024 05:26
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.45.1 Update dependency io_bazel_rules_go to v0.46.0 Feb 10, 2024
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.46.0 Update dependency io_bazel_rules_go to v0.47.0 Apr 23, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 28f7ef6 to 6ec98ef Compare April 23, 2024 23:28
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 6ec98ef to d9e0d76 Compare May 7, 2024 02:33
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.47.0 Update dependency io_bazel_rules_go to v0.47.1 May 7, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from d9e0d76 to 85accf6 Compare May 22, 2024 23:29
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.47.1 Update dependency io_bazel_rules_go to v0.48.0 May 22, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 85accf6 to ccff5a5 Compare June 20, 2024 05:38
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.48.0 Update dependency io_bazel_rules_go to v0.48.1 Jun 20, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from ccff5a5 to d2802ab Compare July 14, 2024 15:00
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.48.1 Update dependency io_bazel_rules_go to v0.49.0 Jul 14, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from d2802ab to b44d3e6 Compare August 31, 2024 02:47
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.49.0 Update dependency io_bazel_rules_go to v0.50.0 Aug 31, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from b44d3e6 to d03068a Compare September 6, 2024 08:44
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.50.0 Update dependency io_bazel_rules_go to v0.50.1 Sep 6, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from d03068a to c64b772 Compare December 16, 2024 02:58
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.50.1 Update dependency io_bazel_rules_go to v0.51.0 Dec 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants