-
Notifications
You must be signed in to change notification settings - Fork 47
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: update go dependencies #1329
Conversation
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
✅ Deploy Preview for reearth-web canceled.
|
a7aae1d
to
918eef0
Compare
75967dc
to
8ece31f
Compare
7ec572c
to
ecc3b08
Compare
eecc56d
to
b97e50d
Compare
b97e50d
to
5ab33b0
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
92c04b1
to
784d91d
Compare
Update Step I did1. I had a error like this.
So, run go get go.mongodb.org/[email protected]
go get github.com/oklog/[email protected] 2. I had a error like this.
So, run go get github.com/twpayne/[email protected]
go get github.com/zitadel/[email protected] 3. I run
4. I had version conflict Errors
So I grade down
other packages depend on 5. I had error application error
So I fix like this 6. I had some go-lint errorlike this So I fixed on this commit. 7. I had test error because of updating testifyBecause NotSame method is fixed by this update on testify. On our code test, we want to test whether I can deepClone. 7. I had test error because of updating httpexpectIn this update, this return nil.
But brefore test code, passed this test. I fixed like this. 8. I got go-lint erros again9. change gqlgen's behaviorAny resolver file was not generated by before config.
Since resolve file is generated by before config on new version, |
a60d13a
to
c9c5712
Compare
c9c5712
to
5b4217b
Compare
This PR contains the following updates:
v0.3.0
->v0.4.2
v1.36.0
->v1.50.0
v0.17.43
->v0.17.64
v1.21.0
->v1.26.0
v4.0.4
->v4.6.0
v1.25.3
->v1.34.0
v1.27.7
->v1.29.2
v1.52.0
->v1.74.1
v2.3.1
->v2.16.0
v1.11.3
->v1.15.15
v1.4.0
->v1.5.1
v3.2.0
->v3.4.1
v4.11.4
->v4.13.3
v1.3.1
->v2.1.0
v0.15.0
->v0.17.0
v1.39.0
->v1.49.1
v1.11.0
->v1.12.0
v1.8.4
->v1.10.0
v1.5.2
->v3.2.1
v2.5.11
->v2.5.22
v1.13.5
->v3.34.1
1.23.4
->1.23.5
v1.13.1
->v2.0.0
v0.32.0
->v0.59.0
v0.32.0
->v0.59.0
v1.22.0
->v1.34.0
v1.22.0
->v1.34.0
v0.20.0
->v0.34.0
v0.16.0
->v0.25.0
v0.14.0
->v0.21.0
v0.17.0
->v0.29.0
v0.161.0
->v0.219.0
Release Notes
googleapis/google-cloud-go (cloud.google.com/go/profiler)
v0.4.0
bigquery:
-
NewGCSReference
is now a function, not a method onClient
.Table.LoaderFrom
now 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
for {
var vals ValueList
err := it.Next(&vals)
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: use vals.
}
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.Done
instead, whereiterator
is the packagegoogle.golang.org/api/iterator
.99designs/gqlgen (github.com/99designs/gqlgen)
v0.17.64
Compare Source
v0.17.63
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.62...v0.17.63
v0.17.62
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.61...v0.17.62
v0.17.61
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.60...v0.17.61
v0.17.60
Compare Source
What's Changed
Full Changelog: 99designs/gqlgen@v0.17.59...v0.17.60
v0.17.59
Compare Source
What's Changed
Full Changelog: 99designs/gqlgen@v0.17.58...v0.17.59
v0.17.58
Compare Source
What's Changed
//nolint
directives by @alexandear in https://github.com/99designs/gqlgen/pull/3391New Contributors
Full Changelog: 99designs/gqlgen@v0.17.57...v0.17.58
v0.17.57
Compare Source
What's Changed
worker_limit
option for server code generation by @OldBigBuddha in https://github.com/99designs/gqlgen/pull/3376New Contributors
Full Changelog: 99designs/gqlgen@v0.17.56...v0.17.57
v0.17.56
Compare Source
What's Changed
multipart/mixed
transport support for deferred queries by @giulio-opal in https://github.com/99designs/gqlgen/pull/3341