Skip to content
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 #555

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

chore: update go dependencies #555

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cloud.google.com/go/profiler v0.3.0 -> v0.4.0 age adoption passing confidence require minor
cloud.google.com/go/storage v1.36.0 -> v1.41.0 age adoption passing confidence require minor
github.com/99designs/gqlgen v0.17.43 -> v0.17.47 age adoption passing confidence require patch
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.21.0 -> v1.23.0 age adoption passing confidence require minor
github.com/avast/retry-go/v4 v4.0.4 -> v4.6.0 age adoption passing confidence require minor
github.com/aws/aws-sdk-go-v2 v1.25.3 -> v1.27.0 age adoption passing confidence require minor
github.com/aws/aws-sdk-go-v2/config v1.27.7 -> v1.27.16 age adoption passing confidence require patch
github.com/aws/aws-sdk-go-v2/service/s3 v1.52.0 -> v1.54.3 age adoption passing confidence require minor
github.com/gavv/httpexpect/v2 v2.3.1 -> v2.16.0 age adoption passing confidence require minor
github.com/joho/godotenv v1.4.0 -> v1.5.1 age adoption passing confidence require minor
github.com/labstack/echo/v4 v4.11.4 -> v4.12.0 age adoption passing confidence require minor
github.com/paulmach/go.geojson v1.4.0 -> v1.5.0 age adoption passing confidence require minor
github.com/stretchr/testify v1.8.4 -> v1.9.0 age adoption passing confidence require minor
github.com/twpayne/go-kml v1.5.2 -> v3.1.0 age adoption passing confidence require major
github.com/vektah/gqlparser/v2 v2.5.11 -> v2.5.12 age adoption passing confidence require patch
github.com/zitadel/oidc v1.13.5 -> v3.24.0 age adoption passing confidence require major
go (source) 1.21.0 -> 1.22.3 age adoption passing confidence toolchain minor
go (source) 1.21 -> 1.22.3 age adoption passing confidence golang minor
go.mongodb.org/mongo-driver v1.13.1 -> v1.15.0 age adoption passing confidence require minor
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.32.0 -> v0.52.0 age adoption passing confidence require minor
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.32.0 -> v0.52.0 age adoption passing confidence require minor
go.opentelemetry.io/otel v1.22.0 -> v1.27.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk v1.22.0 -> v1.27.0 age adoption passing confidence require minor
golang.org/x/net v0.20.0 -> v0.25.0 age adoption passing confidence require minor
golang.org/x/oauth2 v0.16.0 -> v0.20.0 age adoption passing confidence require minor
golang.org/x/text v0.14.0 -> v0.15.0 age adoption passing confidence require minor
golang.org/x/tools v0.17.0 -> v0.21.0 age adoption passing confidence require minor
google.golang.org/api v0.161.0 -> v0.181.0 age adoption passing confidence require minor

Release Notes

googleapis/google-cloud-go (cloud.google.com/go/profiler)

v0.4.0

  • bigquery:
    -NewGCSReference is now a function, not a method on Client.

    • Table.LoaderFrom now accepts a ReaderSource, enabling
      loading data into a table from a file or any io.Reader.
    • Client.Table and Client.OpenTable have been removed.
      Replace

      client.OpenTable("project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table")
    • Client.CreateTable has been removed.
      Replace

      client.CreateTable(ctx, "project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table").Create(ctx)
    • Dataset.ListTables have been replaced with Dataset.Tables.
      Replace

      tables, err := ds.ListTables(ctx)

      with

      it := ds.Tables(ctx)
      for {
          table, err := it.Next()
          if err == iterator.Done {
              break
          }
          if err != nil {
              // TODO: Handle error.
          }
          // TODO: use table.
      }
    • Client.Read has been replaced with Job.Read, Table.Read and Query.Read.
      Replace

      it, err := client.Read(ctx, job)

      with

      it, err := job.Read(ctx)

      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

      for it.Next(ctx) {
          var vals ValueList
          if err := it.Get(&vals); err != nil {
              // TODO: Handle error.
          }
          // TODO: use vals.
      }
      if err := it.Err(); err != nil {
          // TODO: Handle error.
      }

      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, write

      it.PageInfo().MaxSize = n

      Instead of the StartIndex(i) option, write

      it.StartIndex = i
    • ValueLoader.Load now takes a Schema in addition to a slice of Values.
      Replace

      func (vl *myValueLoader) Load(v []bigquery.Value)

      with

      func (vl *myValueLoader) Load(v []bigquery.Value, s bigquery.Schema)
    • Table.Patch is replace by Table.Update.
      Replace

      p := table.Patch()
      p.Description("new description")
      metadata, err := p.Apply(ctx)

      with

      metadata, err := table.Update(ctx, bigquery.TableMetadataToUpdate{
          Description: "new description",
      })
    • 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

        client.Copy(ctx, table, gcsRef)

        with

        table.LoaderFrom(gcsRef).Run(ctx)

        Instead of passing options to Copy, set fields on the Loader:

        loader := table.LoaderFrom(gcsRef)
        loader.WriteDisposition = bigquery.WriteTruncate
      • To extract data from a table into Google Cloud Storage, use
        Table.ExtractorTo. Set fields on the returned Extractor instead of
        passing options.

        Replace

        client.Copy(ctx, gcsRef, table)

        with

        table.ExtractorTo(gcsRef).Run(ctx)
      • 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

        client.Copy(ctx, dstTable, srcTable)

        with

        dst.Table.CopierFrom(srcTable).Run(ctx)
      • To start a query job, create a Query and call its Run method. Set fields
        on the query instead of passing options.

        Replace

        client.Copy(ctx, table, query)

        with

        query.Run(ctx)
    • Table.NewUploader has been renamed to Table.Uploader. Instead of options,
      configure an Uploader by setting its fields.
      Replace

      u := table.NewUploader(bigquery.UploadIgnoreUnknownValues())

      with

      u := table.NewUploader(bigquery.UploadIgnoreUnknownValues())
      u.IgnoreUnknownValues = true
  • pubsub: remove pubsub.Done. Use iterator.Done instead, where iterator is the package
    google.golang.org/api/iterator.

99designs/gqlgen (github.com/99designs/gqlgen)

v0.17.47

Compare Source

What's Changed

Full Changelog: 99designs/gqlgen@v0.17.46...v0.17.47

v0.17.46

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.45...v0.17.46

v0.17.45

Compare Source

a854eb65 Bump golang.org/x/tools from 0.18.0 to 0.19.0 (#​2963)
  • Bump golang.org/x/tools from 0.18.0 to 0.19.0

Bumps golang.org/x/tools from 0.18.0 to 0.19.0.


updated-dependencies:

  • dependency-name: golang.org/x/tools
    dependency-type: direct:production
    update-type: version-update:semver-minor
    ...
  • Go mod tidy examples and websocket

908498e3 Bump typescript from 5.3.3 to 5.4.2 in /integration (#​2960)

Bumps typescript from 5.3.3 to 5.4.2.


updated-dependencies:

  • dependency-name: typescript
    dependency-type: direct:development
    update-type: version-update:semver-minor
    ...
6e77359b Bump vite from 5.1.4 to 5.1.5 in /integration (#​2961)

Bumps vite from 5.1.4 to 5.1.5.


updated-dependencies:

  • dependency-name: vite
    dependency-type: direct:development
    update-type: version-update:semver-patch
    ...
361cb189 Bump [@​apollo](https://togithub.com/apollo)/client from 3.9.5 to 3.9.6 in /integration (#​2962)

updated-dependencies:
dependency-type: direct:development
update-type: version-update:semver-patch
...

d2271d8f Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 (#​2964)

Bumps google.golang.org/protobuf from 1.32.0 to 1.33.0.


updated-dependencies:

  • dependency-name: google.golang.org/protobuf
    dependency-type: direct:production
    update-type: version-update:semver-minor
    ...
  • caf1faa Add case for resolvers_always_return_pointers:false (#​2966)

  • 0d24aa9 handle models in federation pkg (#​2965)

  • 2aa9bbb fix(docs): convert an unnecessarily capitalized word in the middle of sentences to lowercase (#​2959)

  • bc72cd8 Add option to omit resolver fields from models (#​2957)

95f9dc79 Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#​2953)

Bumps github.com/stretchr/testify from 1.8.4 to 1.9.0.


updated-dependencies:

  • dependency-name: github.com/stretchr/testify
    dependency-type: direct:production
    update-type: version-update:semver-minor
    ...
fbcceec2 Bump github.com/PuerkitoBio/goquery from 1.9.0 to 1.9.1 (#​2954)
  • Bump github.com/PuerkitoBio/goquery from 1.9.0 to 1.9.1

Bumps github.com/PuerkitoBio/goquery from 1.9.0 to 1.9.1.


updated-dependencies:

  • dependency-name: github.com/PuerkitoBio/goquery
    dependency-type: direct:production
    update-type: version-update:semver-patch
    ...
  • mod tidy examples

c15af8ce Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /_examples (#​2955)

Bumps github.com/stretchr/testify from 1.8.4 to 1.9.0.


updated-dependencies:

  • dependency-name: github.com/stretchr/testify
    dependency-type: direct:production
    update-type: version-update:semver-minor
    ...
1993b3aa Bump vitest from 1.3.0 to 1.3.1 in /integration (#​2946)

Bumps vitest from 1.3.0 to 1.3.1.


updated-dependencies:

  • dependency-name: vitest
    dependency-type: direct:development
    update-type: version-update:semver-patch
    ...
d16c6adc Bump github.com/PuerkitoBio/goquery from 1.8.1 to 1.9.0 (#​2943)
  • Bump github.com/PuerkitoBio/goquery from 1.8.1 to 1.9.0

Bumps github.com/PuerkitoBio/goquery from 1.8.1 to 1.9.0.


updated-dependencies:

  • dependency-name: github.com/PuerkitoBio/goquery
    dependency-type: direct:production
    update-type: version-update:semver-minor
    ...
  • Tidy examples

be74b6a0 Bump [@​graphql](https://togithub.com/graphql)-codegen/client-preset from 4.2.2 to 4.2.4 in /integration (#​2945)

updated-dependencies:
dependency-type: direct:development
update-type: version-update:semver-patch
...

90aa9243 Bump [@​graphql](https://togithub.com/graphql)-codegen/introspection from 4.0.2 to 4.0.3 in /integration (#​2944)

updated-dependencies:
dependency-type: direct:development
update-type: version-update:semver-patch
...

137ddbd3 Bump vite from 5.1.3 to 5.1.4 in /integration (#​2947)

Bumps vite from 5.1.3 to 5.1.4.


updated-dependencies:

  • dependency-name: vite
    dependency-type: direct:development
    update-type: version-update:semver-patch
    ...
15cef76f Optionally render entity requires populator function for advanced [@​requires](https://togithub.com/requires) use cases (#​2884) (closes #​1)
  • Adding generation of new functions to populate requires representations. WIP.

  • Something.

  • Adding config option for Package to allow for enabling flags. Added flag to render explicit requires function.

  • Adding explicit requires testsing and make requires follow federation package.

  • Fix test failure.

  • Using embeded template like federation gotpl. Fix rewriter not using correct dir.

  • Update generated code.

  • Adding initial docs for explicit r

@renovate renovate bot requested a review from rot1024 as a code owner July 4, 2023 00:56
@netlify
Copy link

netlify bot commented Jul 4, 2023

Deploy Preview for reearth-web ready!

Name Link
🔨 Latest commit 110cd2d
🔍 Latest deploy log https://app.netlify.com/sites/reearth-web/deploys/6650262901e82d00080fc5ff
😎 Deploy Preview https://deploy-preview-555--reearth-web.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@github-actions github-actions bot added the server label Jul 4, 2023
@renovate renovate bot force-pushed the renovate/gomod branch 20 times, most recently from d441bd8 to 1d0a051 Compare July 10, 2023 12:31
@renovate renovate bot force-pushed the renovate/gomod branch 7 times, most recently from 7212b26 to f5fb762 Compare July 12, 2023 00:41
@renovate renovate bot force-pushed the renovate/gomod branch 9 times, most recently from 99774cc to 42108e9 Compare May 14, 2024 21:42
@renovate renovate bot force-pushed the renovate/gomod branch 12 times, most recently from 55b70c7 to db2c60c Compare May 21, 2024 22:11
@renovate renovate bot force-pushed the renovate/gomod branch 7 times, most recently from bdc5e29 to 7343956 Compare May 24, 2024 04:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants