This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Update dependency io_bazel_rules_go to v0.23.8 #37
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/io_bazel_rules_go-0.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
592ae6e
to
4f1c7de
Compare
4f1c7de
to
df0cfff
Compare
df0cfff
to
10ed5c6
Compare
10ed5c6
to
ef0dc11
Compare
ef0dc11
to
60160ee
Compare
60160ee
to
d9f8c39
Compare
d9f8c39
to
bdbf44c
Compare
bdbf44c
to
a3690e7
Compare
a3690e7
to
d3aeedf
Compare
d3aeedf
to
527776b
Compare
527776b
to
a60a0cc
Compare
a60a0cc
to
048bf1a
Compare
048bf1a
to
054d12b
Compare
054d12b
to
9b1eedf
Compare
9b1eedf
to
9d40146
Compare
9d40146
to
7fd8d95
Compare
7fd8d95
to
b1a815f
Compare
b1a815f
to
85963fc
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
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
v0.23.7
Compare Source
New Go versions
Go 1.14.7 and 1.13.15 are now supported.
WORKSPACE code
v0.23.6
Compare Source
Bug fixes
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
v0.23.5
Compare Source
New Go versions
Go 1.14.6 and 1.13.14 are now supported.
WORKSPACE code
v0.23.4
Compare Source
New Go versions
Go 1.14.5 and 1.13.13 are now supported.
Bug fixes
libstdc++
.atomic
when race detection is enabled.race
andmsan
are disabled whenpure
mode is enabled.go tool dist list
.WORKSPACE code
v0.23.3
Compare Source
New Go versions
Go 1.14.4 and 1.13.12 are now supported.
WORKSPACE code
v0.23.2
Compare Source
Bug fixes
race
andmsan
instrumentation is now disabled whenpure
mode is enabled.Both kinds of instrumentation require cgo, so they're not compatible with
pure
.atomic
whenrace
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 arespecially built for compatibility with APIv2.
WORKSPACE code
v0.23.1
Compare Source
New Go versions
Go 1.14.3 and 1.13.11 are now supported.
WORKSPACE code
v0.23.0
Compare Source
Changes
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.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.--features=race
, you can now use flags like--@​io_bazel_rules_go//go/config:race
.go_binary
andgo_test
mode attributes such asrace
,pure
,goos
, andgoarch
have been reimplemented using transitions. Conditional dependencies chosen withselect
should now work correctly.go_binary
andgo_test
now support agotags
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
.//tests/core/go_binary:hello
creates the filebazel-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
searchpaths
andsearchpath
fields have been removed fromGoArchive
andGoArchiveData
.Updated dependencies
platforms
is updated tomaster
as of 2020-05-12.rules_cc
is updated tomaster
as of 2020-05-12.org_golang_x_tools
is updated tomaster
as of 2020-05-12.org_golang_x_xerrors
(golang.org/x/xerrors) is added atmaster
as of 2020-05-12. It's needed byorg_golang_x_tools
.org_golang_google_protobuf
(google.golang.org/protobuf) is added atv1.22.0
, latest as of 2020-05-12.com_github_golang_protobuf
is updated tov1.4.1
, latest as of 2020-05-12.org_golang_google_genproto
is updated tomaster
as of 2020-05-12.go_googleapis
is updated tomaster
as of 2020-05-12.WORKSPACE code
v0.22.11
Compare Source
New Go versions
Go 1.15 is now supported.
WORKSPACE code
v0.22.10
Compare Source
New Go versions
Go 1.14.7 and 1.13.15 are now supported.
WORKSPACE code
v0.22.9
Compare Source
Bug fixes
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
v0.22.8
Compare Source
New Go versions
Go 1.14.6 and 1.13.14 are now supported.
WORKSPACE code
v0.22.7
Compare Source
New Go versions
Go 1.14.5 and 1.13.13 are now supported.
Bug fixes
libstdc++
.atomic
when race detection is enabled.race
andmsan
are disabled whenpure
mode is enabled.go tool dist list
.WORKSPACE code
v0.22.6
Compare Source
New Go versions
Go 1.14.4 and 1.13.12 are now supported.
WORKSPACE code
v0.22.5
Compare Source
New Go versions
Go 1.14.3 and 1.13.11 are now supported.
WORKSPACE code
v0.22.4
Compare Source
Bug fixes
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 ofprotobuf
.cgocall
analyzer is disabled intools_nogo
due to lack of support.go_embed_data
can now correctly embed.c
,.go
, and other source files.WORKSPACE code
v0.22.3
Compare Source
New Go versions
Go 1.14.2 and 1.13.10 are now supported.
WORKSPACE code
v0.22.2
Compare Source
New Go versions
Go 1.14.1 and 1.13.9 are now supported.
WORKSPACE code
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.
This PR has been generated by WhiteSource Renovate. View repository job log here.