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:
0.8.5
->0.9.1
v1.2.2
->v1.3.0
v1.1.11
->v1.3.0
v0.5.10
->v0.6.3
v1.16.0
->v1.17.0
v0.16.0
->v0.21.0
v0.209.0
->v0.210.0
e639e21
->e6fa225
d784300
->e6fa225
d784300
->e6fa225
e639e21
->e6fa225
d784300
->e6fa225
v1.67.1
->v1.68.1
v1.34.2
->v1.35.2
Release Notes
bazel-contrib/setup-bazel (bazel-contrib/setup-bazel)
v0.9.1
Compare Source
What's Changed
New Contributors
Full Changelog: bazel-contrib/setup-bazel@0.9.0...0.9.1
v0.9.0
Compare Source
What's Changed
New Contributors
Full Changelog: bazel-contrib/setup-bazel@0.8.5...0.9.0
googleapis/google-cloud-go (cloud.google.com/go/longrunning)
v0.6.0
Beta release of BigQuery, DataStore, Logging and Storage. See the
blog post.
bigquery:
struct support. Read a row directly into a struct with
RowIterator.Next
, and upload a row directly from a struct withUploader.Put
.You can also use field tags. See the [package documentation][cloud-bigquery-ref]
for details.
The
ValueList
type was removed. It is no longer necessary. Instead ofuse
Previously, repeatedly calling
RowIterator.Next
on the same[]Value
orValueList
would append to the slice. Now each call resets the size to zero first.Schema inference will infer the SQL type BYTES for a struct field of
type []byte. Previously it inferred STRING.
The types
uint
,uint64
anduintptr
are no longer supported in schemainference. BigQuery's integer type is INT64, and those types may hold values
that are not correctly represented in a 64-bit signed integer.
jhump/protoreflect (github.com/jhump/protoreflect)
v1.17.0
Compare Source
This release deprecates some packages that have newer alternatives in the Protobuf runtime. It also includes some small additions to the
grpcreflect
anddesc/sourceinfo
packages. The rest of the changes are bug fixes."github.com/jhump/protoreflect/desc"
Changes:
"google.golang.org/protobuf/reflect/protoreflect"
package in the Protobuf runtime. In a v2 of this repo, this package will no longer be present.MessageDescriptor.FindFieldByName
method."github.com/jhump/protoreflect/desc/protoparse"
Changes and bugfixes:
"github.com/bufbuild/protocompile"
package. There are some behavioral differences that we hope to address with additional API and enhancements toprotocompile
. But theprotoparse
package here is just a veneer on top ofprotocompile
and we plan to do as little maintenance as possible here. In a v2 of this repo, this package will no longer be present.protocompile
dependency has been updated to use a more recent version of that package. This addresses potential panics when callingParser.ParseButDontLink
."github.com/jhump/protoreflect/desc/sourceinfo"
Changes and bugfixes:
sourceinfo.GlobalFiles.FindDescriptorByName
has been fixed.sourceinfo.GlobalFiles
registry or from the variousWrap*
functions could induce panics in user code if querying for non-existent elements. For example, callingmessageDescriptor.Fields().ByNumber(123)
could return a typed-nil value on failure, instead of a nil interface. This would result in nil-dereference panics if methods were called on this later. These have been fixed.sourceinfo.GlobalFiles
registry and from the variousWrap*
functions had concrete types defined in this package, not in the Protobuf runtime. But theprotoreflect.Descriptor
interface has a "do not implement" marker, indicating that concrete types implementing the interface should not be implemented outside of that module. To avoid future issues with the Protobuf runtime, there are no more implementations in this repo. Instead of wrapping other descriptor implementations (via embedding, and then overriding some methods), this package now builds new descriptors, using theprotodesc
package in the Protobuf runtime module.Wrap*
functions are now deprecated. The name is no longer accurate since they no longer return wrapper values. Also the new implementation, which builds new descriptors, can fail (though unlikely), but the existing signature of these functions did not allow for returning an error. So these functions could possibly panic in the face of malformed input descriptors. Users should use the newAddSourceInfoTo*
versions of these functions instead.Additions:
AddSourceInfoTo*
functions to replace theWrap*
functions. These functions augment the input descriptors by adding source code information to them."github.com/jhump/protoreflect/dynamic"
Changes:
"google.golang.org/protobuf/types/dynamicpb"
package in the Protobuf runtime. In a v2 of this repo, this package will no longer be present."github.com/jhump/protoreflect/grpcreflect"
Additions:
NewClientV1
function to return a client that uses v1 of the server reflection service. This fills the gap in the existing factory functions,NewClientV1Alpha
andNewClientAuto
.AllowFallbackResolver
method to the*grpcreflect.Client
type. This allows the client to be configured with an alternate resolver that can be used as a backup when trying to satisfy dependencies, for cases where the remote server is non-authoritative and unable to provide all of them.googleapis/google-api-go-client (google.golang.org/api)
v0.210.0
Compare Source
Features
Bug Fixes
grpc/grpc-go (google.golang.org/grpc)
v1.68.1
: Release 1.68.1Compare Source
Bug Fixes
Dependencies
go1.22.7
togo1.22
. (#7831)v1.68.0
: Release 1.68.0Compare Source
Behavior Changes
ClientConn.Close()
now closes transports simultaneously and waits for transports to be closed before returning. (#7666)NewTLS
that usetls.Config.GetConfigForClient
will now have CipherSuites, supported TLS versions and ALPN configured automatically. These were previously only set for configs not using theGetConfigForClient
option. (#7709)Bug Fixes
Dependencies
go1.22.7
. (#7624)v1.67.2
: Release 1.67.2Compare Source
Bug Fixes
protocolbuffers/protobuf-go (google.golang.org/protobuf)
v1.35.2
Compare Source
Full Changelog: protocolbuffers/protobuf-go@v1.35.1...v1.35.2
Maintenance:
CL/623115: proto: refactor equal_test from explicit table to use makeMessages()
CL/623116: encoding/prototext: use testmessages_test.go approach, too
CL/623117: internal/testprotos/test: add nested message field with [lazy=true]
CL/624415: proto: switch messageset_test to use makeMessages() injection point
CL/624416: internal/impl: fix TestMarshalMessageSetLazyRace (was a no-op!)
User-visible changes:
CL/618395: encoding/protojson: allow missing value for Any of type Empty
CL/618979: all: implement strip_enum_prefix editions feature
CL/622575: testing/protocmp: document behavior when combining Ignore and Sort
v1.35.1
Compare Source
Full Changelog: protocolbuffers/protobuf-go@v1.34.2...v1.35.1
Maintenance:
User-visible changes:
Bug fixes:
v1.35.0
Compare Source
Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.