Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Update dependency io_bazel_rules_go to v0.23.8 #37

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 13, 2019

This PR contains the following updates:

Package Type Update Change
io_bazel_rules_go http_archive minor v0.22.1 -> v0.23.8

Release Notes

bazelbuild/rules_go

v0.23.8

Compare Source

New Go versions

Go 1.15 is now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "2697f6bc7c529ee5e6a2d9799870b9ec9eaeb3ee7d70ed50b87a2c2c97e13d9e",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.23.7

Compare Source

New Go versions

Go 1.14.7 and 1.13.15 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "0310e837aed522875791750de44408ec91046c630374990edd51827cb169f616",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.7/rules_go-v0.23.7.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.7/rules_go-v0.23.7.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.23.6

Compare Source

Bug fixes

  • The builder will invoke the Go compiler and linker using response files when the length of arguments exceeds operating system limits.
  • go_test will now recompile packages imported by external tests that transitively import the library under test. To avoid conflicts with the Go 1.15 linker (which has a stricter export data check), it's necessary to recompile these packages against the internal test archive.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "8663604808d2738dc615a2c3eb70eba54a9a982089dd09f6ffe5d0e75771bc4f",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.6/rules_go-v0.23.6.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.6/rules_go-v0.23.6.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.23.5

Compare Source

New Go versions

Go 1.14.6 and 1.13.14 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "2d536797707dd1697441876b2e862c58839f975c8fc2f0f96636cbd428f45866",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.5/rules_go-v0.23.5.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.5/rules_go-v0.23.5.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.23.4

Compare Source

New Go versions

Go 1.14.5 and 1.13.13 are now supported.

Bug fixes

  • Package conflicts are now detected more reliably during linking, and diagnostic messages are clearer. These are still not hard failures (though they will be in the future), but they'll be printed as warnings.
  • Better static linking with libstdc++.
  • Coverage mode is set to atomic when race detection is enabled.
  • race and msan are disabled when pure mode is enabled.
  • Added missing platforms from go tool dist list.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "e5de048e72612598c45f564202f6a3c74616be4ffd2dbd6f7bc75045f8ecbdce",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.4/rules_go-v0.23.4.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.4/rules_go-v0.23.4.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.23.3

Compare Source

New Go versions

Go 1.14.4 and 1.13.12 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "a8d6b1b354d371a646d2f7927319974e0f9e52f73a2452d2b3877118169eb6bb",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.3/rules_go-v0.23.3.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.3/rules_go-v0.23.3.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.23.2

Compare Source

Bug fixes

  • race and msan instrumentation is now disabled when pure mode is enabled.
    Both kinds of instrumentation require cgo, so they're not compatible with
    pure.
  • The coverage mode is set to atomic when race instrumentation is enabled.
    (Thanks to @​linzhp)
  • go_proto_library targets for well known types in
    @io_bazel_rules_go//proto/wkt now compile pre-generated sources, which are
    specially built for compatibility with APIv2.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "0c10738a488239750dbf35336be13252bad7c74348f867d30c3c3e0001906096",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.2/rules_go-v0.23.2.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.2/rules_go-v0.23.2.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.23.1

Compare Source

New Go versions

Go 1.14.3 and 1.13.11 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "87f0fb9747854cb76a0a82430adccb6269f7d394237104a4523b51061c469171",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.1/rules_go-v0.23.1.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.1/rules_go-v0.23.1.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.23.0

Compare Source

Changes

  • rules_go now supports the new API for protocol buffers.
    • To summarize the announcement, there's a new protobuf module, google.golang.org/protobuf (APIv2). The old module, github.com/golang/protobuf (APIv1) has been re-implemented in terms of the new module. Using either API is fine.
    • rules_go will continue to use protoc-gen-go from APIv1 for now, since the APIv2 does not support gRPC, and there is no gRPC generator yet. See the note on gRPC support in the v1.20.0 release notes.
    • Code generated with either module should work with both APIs. However, code generated with older versions of APIv1 will not not work with the latest version of either module.
  • rules_go has migrated to Starlark build settings and configuration transitions.
    • Instead of using feature flags like --features=race, you can now use flags like --@​io_bazel_rules_go//go/config:race.
    • go_binary and go_test mode attributes such as race, pure, goos, and goarch have been reimplemented using transitions. Conditional dependencies chosen with select should now work correctly.
    • go_binary and go_test now support a gotags attribute, which lets a binary and its dependencies be built with a list of build constraints. This can also be set on the command line with --@​io_bazel_rules_go//go/config:tags.
    • Output file paths no longer include extra configuration data. For example, //tests/core/go_binary:hello creates the file bazel-bin/tests/core/go_binary/hello_/hello. Note that output file paths are still not stable and should not be depended on unless the "out" attribute is set explicitly (for rules that support it).

Compatibility

  • The minimum supported version of Bazel is now 2.2.0. This version bump was needed to take advantage of support for build settings and configuration transitions.
  • Go versions older than 1.13 are no longer supported.
  • The deprecated searchpaths and searchpath fields have been removed from GoArchive and GoArchiveData.

Updated dependencies

  • platforms is updated to master as of 2020-05-12.
  • rules_cc is updated to master as of 2020-05-12.
  • org_golang_x_tools is updated to master as of 2020-05-12.
  • org_golang_x_xerrors (golang.org/x/xerrors) is added at master as of 2020-05-12. It's needed by org_golang_x_tools.
  • org_golang_google_protobuf (google.golang.org/protobuf) is added at v1.22.0, latest as of 2020-05-12.
  • com_github_golang_protobuf is updated to v1.4.1, latest as of 2020-05-12.
  • org_golang_google_genproto is updated to master as of 2020-05-12.
  • go_googleapis is updated to master as of 2020-05-12.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "6a68e269802911fa419abb940c850734086869d7fe9bc8e12aaf60a09641c818",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.0/rules_go-v0.23.0.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.23.0/rules_go-v0.23.0.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.11

Compare Source

New Go versions

Go 1.15 is now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "e02b302e8b6cb4a771feba99d36d04b13947ef22f51bea38632c0ab885cabe12",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.11/rules_go-v0.22.11.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.11/rules_go-v0.22.11.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.10

Compare Source

New Go versions

Go 1.14.7 and 1.13.15 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "ebb9bcbb2526a5072957ca729d269b43406f672f32e3b3aa4d7f1a4ae7f433fe",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.10/rules_go-v0.22.10.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.10/rules_go-v0.22.10.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.9

Compare Source

Bug fixes

  • The builder will invoke the Go compiler and linker using response files when the length of arguments exceeds operating system limits.
  • go_test will now recompile packages imported by external tests that transitively import the library under test. To avoid conflicts with the Go 1.15 linker (which has a stricter export data check), it's necessary to recompile these packages against the internal test archive.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "ae6814b6a8e09e7a9f5b20c1add51ada6a2cc664d4659aeca2921c10674e24e3",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.9/rules_go-v0.22.9.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.9/rules_go-v0.22.9.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.8

Compare Source

New Go versions

Go 1.14.6 and 1.13.14 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "38392eb0617c1a9fdff17c4a284f012da13e4feefbaf87d04b3579b107902e9b",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.8/rules_go-v0.22.8.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.8/rules_go-v0.22.8.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.7

Compare Source

New Go versions

Go 1.14.5 and 1.13.13 are now supported.

Bug fixes

  • Package conflicts are now detected more reliably during linking, and diagnostic messages are clearer. These are still not hard failures (though they will be in the future), but they'll be printed as warnings.
  • Better static linking with libstdc++.
  • Coverage mode is set to atomic when race detection is enabled.
  • race and msan are disabled when pure mode is enabled.
  • Added missing platforms from go tool dist list.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "d9d71a5fdfcf5f5326f1ffc4bcaea6519cb4fcfe0aaee6ae68c7440ee8b46bc8",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.7/rules_go-v0.22.7.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.7/rules_go-v0.22.7.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.6

Compare Source

New Go versions

Go 1.14.4 and 1.13.12 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "e0d2e3d92ef8b3704f26ac19231ef9aba66c8a3bdec4aca91a22ad7d6e6f3ef7",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.6/rules_go-v0.22.6.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.6/rules_go-v0.22.6.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.5

Compare Source

New Go versions

Go 1.14.3 and 1.13.11 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "dbde93957f2a96e6c97edb74e29107b7de1b2b57608b8304401e10326e02c66d",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.5/rules_go-v0.22.5.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.5/rules_go-v0.22.5.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.4

Compare Source

Bug fixes

  • A patch for com_github_golang_protobuf has been updated to no longer touch testdata files that were deleted in later versions upstream. This should make it easier to use newer versions of protobuf.
  • The cgocall analyzer is disabled in tools_nogo due to lack of support.
  • Some missing platforms and toolchains are added.
  • go_embed_data can now correctly embed .c, .go, and other source files.

WORKSPACE code

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

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

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

go_rules_dependencies()

go_register_toolchains()

v0.22.3

Compare Source

New Go versions

Go 1.14.2 and 1.13.10 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "db2b2d35293f405430f553bc7a865a8749a8ef60c30287e90d2b278c32771afe",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.3/rules_go-v0.22.3.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.3/rules_go-v0.22.3.tar.gz",
    ],
)

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

go_rules_dependencies()

go_register_toolchains()

v0.22.2

Compare Source

New Go versions

Go 1.14.1 and 1.13.9 are now supported.

WORKSPACE code

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

http_archive(
    name = "io_bazel_rules_go",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.2/rules_go-v0.22.2.tar.gz",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.22.2/rules_go-v0.22.2.tar.gz",
    ],
    sha256 = "142dd33e38b563605f0d20e89d9ef9eda0fc3cb539a14be1bdb1350de2eda659",
)

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

go_rules_dependencies()

go_register_toolchains()

Renovate configuration

📅 Schedule: 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 has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 592ae6e to 4f1c7de Compare January 15, 2020 13:30
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.19.5 Update dependency io_bazel_rules_go to v0.21.0 Jan 15, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 4f1c7de to df0cfff Compare January 28, 2020 20:40
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.21.0 Update dependency io_bazel_rules_go to v0.21.1 Jan 28, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from df0cfff to 10ed5c6 Compare February 3, 2020 19:24
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.21.1 Update dependency io_bazel_rules_go to v0.21.2 Feb 3, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 10ed5c6 to ef0dc11 Compare February 13, 2020 19:50
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.21.2 Update dependency io_bazel_rules_go to v0.21.3 Feb 13, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from ef0dc11 to 60160ee Compare February 26, 2020 17:34
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.21.3 Update dependency io_bazel_rules_go to v0.22.0 Feb 26, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 60160ee to d9f8c39 Compare February 26, 2020 21:39
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.22.0 Update dependency io_bazel_rules_go to v0.22.1 Feb 26, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from d9f8c39 to bdbf44c Compare March 19, 2020 21:40
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.22.1 Update dependency io_bazel_rules_go to v0.22.2 Mar 19, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from bdbf44c to a3690e7 Compare March 27, 2020 16:01
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from a3690e7 to d3aeedf Compare April 9, 2020 13:58
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.22.2 Update dependency io_bazel_rules_go to v0.22.3 Apr 9, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from d3aeedf to 527776b Compare April 14, 2020 15:57
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.22.3 Update dependency io_bazel_rules_go to v0.22.4 Apr 14, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 527776b to a60a0cc Compare May 13, 2020 22:35
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.22.4 Update dependency io_bazel_rules_go to v0.23.0 May 13, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from a60a0cc to 048bf1a Compare May 15, 2020 22:39
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.23.0 Update dependency io_bazel_rules_go to v0.23.1 May 15, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 048bf1a to 054d12b Compare June 19, 2020 12:56
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.23.1 Update dependency io_bazel_rules_go to v0.23.3 Jun 19, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 054d12b to 9b1eedf Compare July 14, 2020 21:24
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.23.3 Update dependency io_bazel_rules_go to v0.23.4 Jul 14, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 9b1eedf to 9d40146 Compare July 17, 2020 15:05
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.23.4 Update dependency io_bazel_rules_go to v0.23.5 Jul 17, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 9d40146 to 7fd8d95 Compare July 23, 2020 17:30
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.23.5 Update dependency io_bazel_rules_go to v0.23.6 Jul 23, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from 7fd8d95 to b1a815f Compare August 6, 2020 21:13
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.23.6 Update dependency io_bazel_rules_go to v0.23.7 Aug 6, 2020
@renovate renovate bot force-pushed the renovate/io_bazel_rules_go-0.x branch from b1a815f to 85963fc Compare August 12, 2020 14:42
@renovate renovate bot changed the title Update dependency io_bazel_rules_go to v0.23.7 Update dependency io_bazel_rules_go to v0.23.8 Aug 12, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant