chore: update go dependencies - #185
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Contributor
Author
|
renovate
Bot
force-pushed
the
renovate/gomod
branch
3 times, most recently
from
August 4, 2026 04:00
2b714a2 to
a037535
Compare
renovate
Bot
force-pushed
the
renovate/gomod
branch
20 times, most recently
from
August 10, 2026 22:31
247916f to
5770e26
Compare
renovate
Bot
force-pushed
the
renovate/gomod
branch
from
August 12, 2026 00:50
5770e26 to
dbed2c4
Compare
renovate
Bot
force-pushed
the
renovate/gomod
branch
6 times, most recently
from
August 14, 2026 09:55
5afcae2 to
404b755
Compare
renovate
Bot
force-pushed
the
renovate/gomod
branch
from
August 14, 2026 22:39
404b755 to
a193fdf
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.3.0→v0.6.0v1.36.0→v1.64.0v0.17.43→v0.17.94v1.21.0→v1.35.0v4.0.4→v5.0.0v1.41.5→v1.43.4v1.43.6(+1)v1.27.7→v1.32.35v1.32.37(+1)v1.97.3→v1.107.0v1.107.2(+1)v2.3.1→v2.17.0v1.11.3→v1.19.2v1.3.1→v1.4.2v3.2.0→v3.5.2v4.11.4→v5.3.1v1.4.0→v1.5.0v0.15.0→v0.19.0v1.39.0→v1.53.0v1.11.0→v1.15.0v1.5.2→v3.6.0v2.5.14→v2.5.36v1.13.5→v3.49.21.25.0→1.26.51.26.6v1.13.1→v2.8.0v0.44.0→v0.70.0v0.32.0→v0.70.0v1.32.0→v1.45.0v0.54.0→v0.57.0v0.58.0v0.37.0→v0.40.0v0.41.0v0.44.0→v0.48.0v0.49.0v0.161.0→v0.292.0v0.293.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
googleapis/google-cloud-go (cloud.google.com/go/profiler)
v0.6.0Compare Source
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
ValueListtype was removed. It is no longer necessary. Instead ofuse
Previously, repeatedly calling
RowIterator.Nexton the same[]ValueorValueListwould 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,uint64anduintptrare 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.
v0.5.0the
Date,TimeandDateTimetypes in the newcloud.google.com/go/civilpackage.
will avoid errors arising from large values on 32-bit systems.
flattened list of the embedded struct's fields. This means that you may now have twice-nested slices, eg.
more details.
explicitly. Also, key functions have been changed and renamed.
NewIncompleteKeyhas been removed, replaced byIncompleteKey. ReplaceNewKeyhas been removed, replaced byNameKeyandIDKey. ReplaceDonevariable has been removed. Replacedatastore.Donewithiterator.Done, from the packagegoogle.golang.org/api/iterator.Client.Closemethod will have a return type of error. It will return the result of closing the underlying gRPC connection.more details.
v0.4.0bigquery:
-
NewGCSReferenceis now a function, not a method onClient.Table.LoaderFromnow accepts aReaderSource, enablingloading data into a table from a file or any
io.Reader.Client.Table and Client.OpenTable have been removed.
Replace
with
Client.CreateTable has been removed.
Replace
with
Dataset.ListTables have been replaced with Dataset.Tables.
Replace
with
Client.Read has been replaced with Job.Read, Table.Read and Query.Read.
Replace
with
and similarly for reading from tables or queries.
The iterator returned from the Read methods is now named RowIterator. Its
behavior is closer to the other iterators in these libraries. It no longer
supports the Schema method; see the next item.
Replace
with
Instead of the
RecordsPerRequest(n)option, writeInstead of the
StartIndex(i)option, writeValueLoader.Load now takes a Schema in addition to a slice of Values.
Replace
with
Table.Patch is replace by Table.Update.
Replace
with
Client.Copy is replaced by separate methods for each of its four functions.
All options have been replaced by struct fields.
To load data from Google Cloud Storage into a table, use Table.LoaderFrom.
Replace
with
Instead of passing options to Copy, set fields on the Loader:
To extract data from a table into Google Cloud Storage, use
Table.ExtractorTo. Set fields on the returned Extractor instead of
passing options.
Replace
with
To copy data into a table from one or more other tables, use
Table.CopierFrom. Set fields on the returned Copier instead of passing options.
Replace
with
To start a query job, create a Query and call its Run method. Set fields
on the query instead of passing options.
Replace
with
Table.NewUploader has been renamed to Table.Uploader. Instead of options,
configure an Uploader by setting its fields.
Replace
with
pubsub: remove
pubsub.Done. Useiterator.Doneinstead, whereiteratoris the packagegoogle.golang.org/api/iterator.99designs/gqlgen (github.com/99designs/gqlgen)
v0.17.94Compare Source
v0.17.93Compare Source
What's Changed
Full Changelog: 99designs/gqlgen@v0.17.92...v0.17.93
v0.17.92Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.91...v0.17.92
v0.17.91Compare Source
What's Changed
_federationRequiresfor all parents (#4192) by @atzedus in #4193New Contributors
Full Changelog: 99designs/gqlgen@v0.17.90...v0.17.91
v0.17.90Compare Source
What's Changed
follow-schemacode generation by @StevenACoffman in #4141New Contributors
Full Changelog: 99designs/gqlgen@v0.17.89...v0.17.90
v0.17.89Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.88...v0.17.89
v0.17.88Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.87...v0.17.88
v0.17.87Compare Source
What's Changed