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

chore(deps): update dependency io_bazel_rules_go to v0.45.1 #569

Merged
merged 1 commit into from
Jan 22, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 2, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
io_bazel_rules_go http_archive minor v0.41.0 -> v0.45.1

Release Notes

bazelbuild/rules_go (io_bazel_rules_go)

v0.45.1

Compare Source

WORKSPACE code

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

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

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

go_rules_dependencies()

go_register_toolchains(version = "1.21.6")

What's Changed

Full Changelog: bazelbuild/rules_go@v0.45.0...v0.45.1

v0.45.0

Compare Source

WORKSPACE code

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

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

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

go_rules_dependencies()

go_register_toolchains(version = "1.21.6")

What's Changed

New Contributors

Full Changelog: bazelbuild/rules_go@v0.44.2...v0.45.0

v0.44.2

Compare Source

WORKSPACE code

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

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

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

go_rules_dependencies()

go_register_toolchains(version = "1.21.5")

What's Changed

Full Changelog: bazelbuild/rules_go@v0.44.1...v0.44.2

v0.44.1

Compare Source

Why a patch release

This patch release is to include bazelbuild/rules_go@43c40a9 which reverts a change to forcefully upgrade genproto transitively, which is causing linker failures since google.golang.org/genproto/googleapis/rpc was separated from google.golang.org/genproto

WORKSPACE code

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

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

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

go_rules_dependencies()

go_register_toolchains(version = "1.21.5")

What's Changed

Full Changelog: bazelbuild/rules_go@v0.44.0...v0.44.1

v0.44.0

Compare Source

IMPORTANT CHANGES

Tests now call panic() when they timeout

This means there is a running goroutine (which will fail goleak detection)

[Goroutine 26 in state chan receive, with github.com/bazelbuild/rules_go/go/tools/bzltestutil.RegisterTimeoutHandler.func1 on top of the

This also means there may be some different behavior when calling SIGTERM directly from within a test.

For more information see: https://github.com/bazelbuild/rules_go/pull/3749

Bzlmod support for nogo

This can be added in your MODULE.bazel file:

go_sdk = use_extension("@​rules_go//go:extensions.bzl", "go_sdk")
go_sdk.download(
    name = "go_sdk",
    ...
)
go_sdk.nogo(
    nogo = "//:default_nogo",
)

For more information see https://github.com/bazelbuild/rules_go/pull/3782

WORKSPACE code

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

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

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

go_rules_dependencies()

go_register_toolchains(version = "1.21.5")

What's Changed

New Contributors

Full Changelog: bazelbuild/rules_go@v0.43.0...v0.44.0

v0.43.0

Compare Source

Breaking x/tools upgrade

This change includes a breaking upgrade to golang.org/x/tools

Please make sure to upgrade x/tools to version v0.15.0 to ensure compatibility with rules_go's NoGo.

If you need to use an older version of x/tools (v0.13.0 or earlier), apply the following patch to rules_go:
x-tools.patch

What's Changed

New Contributors

Full Changelog: bazelbuild/rules_go@v0.42.0...v0.43.0

v0.42.0

Compare Source

What's Changed

Added patches to go_download_sdk:

Patches can now be applied to the standard library using go_download_sdk (and go_sdk.download for Bzlmod).

Example:

    go_download_sdk(
        name = "go_sdk",
        sdks = {
            "linux_amd64": (
                "go{}.linux-amd64.mirror6598503.tar.gz".format(go_version),
                "3f5c50e592d8845d30eebd08ddb9c670fd2d909e032b6c2b83ecf97afb34660c",
            ),
            "darwin_arm64": (
                "go{}.darwin-arm64.mirror6598503.tar.gz".format(go_version),
                "fbe78beee7861da09de9319498a1521bc41a8b79d3ead2218ce307b9fa5503e5",
            ),
        },
        patches = [
            "//patches:golang_osx_dns_workaround.patch",
        ],
        urls = ["https://dl.google.com/go/{}"],
        version = go_version,
    )

Other changes included:

Full Changelog: bazelbuild/rules_go@v0.41.0...v0.42.0

WORKSPACE code

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

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

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

go_rules_dependencies()

go_register_toolchains(version = "1.21.1")

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the deps Renovate PRs label Oct 2, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 8 times, most recently from e0e2e0c to cf1bd7f Compare October 10, 2023 17:43
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 6 times, most recently from e61f212 to 8321213 Compare October 16, 2023 22:45
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 5 times, most recently from ec941ad to e817bae Compare October 25, 2023 05:21
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 4 times, most recently from dd509fa to b6198b4 Compare November 1, 2023 16:01
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 3 times, most recently from 83fd568 to b9e7081 Compare November 8, 2023 18:56
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 2 times, most recently from d608ca4 to e0e201f Compare November 14, 2023 16:48
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 4 times, most recently from 680f509 to 8dffbaf Compare December 22, 2023 23:08
@renovate renovate bot changed the title chore(deps): update dependency io_bazel_rules_go to v0.44.0 chore(deps): update dependency io_bazel_rules_go to v0.44.1 Dec 29, 2023
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 2 times, most recently from 26d1b5d to 950456a Compare January 3, 2024 08:17
@renovate renovate bot changed the title chore(deps): update dependency io_bazel_rules_go to v0.44.1 chore(deps): update dependency io_bazel_rules_go to v0.44.2 Jan 3, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 7 times, most recently from 0d399d1 to 1b212bb Compare January 10, 2024 19:17
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 1b212bb to 9d0b46c Compare January 10, 2024 23:07
@renovate renovate bot changed the title chore(deps): update dependency io_bazel_rules_go to v0.44.2 chore(deps): update dependency io_bazel_rules_go to v0.45.0 Jan 12, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch 7 times, most recently from edf9efa to ff0f105 Compare January 18, 2024 21:23
@renovate renovate bot changed the title chore(deps): update dependency io_bazel_rules_go to v0.45.0 chore(deps): update dependency io_bazel_rules_go to v0.45.1 Jan 19, 2024
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from ff0f105 to a614613 Compare January 19, 2024 16:51
@jbedard jbedard merged commit 045ed3d into main Jan 22, 2024
70 checks passed
@jbedard jbedard deleted the renovate/io_bazel_rules_go-0.x branch January 22, 2024 18:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deps Renovate PRs
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

None yet

1 participant