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(deps): update gomod #2593

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

chore(deps): update gomod #2593

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 7, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cloud.google.com/go/compute/metadata v0.2.3 -> v0.3.0 age adoption passing confidence require minor
github.com/alicebob/miniredis/v2 v2.31.1 -> v2.32.1 age adoption passing confidence require minor
github.com/coreos/go-oidc/v3 v3.9.0 -> v3.10.0 age adoption passing confidence require minor
github.com/golang-jwt/jwt/v5 v5.2.0 -> v5.2.1 age adoption passing confidence require patch
github.com/oauth2-proxy/tools/reference-gen 56ffd73 -> d3b50d1 age adoption passing confidence require digest
github.com/ohler55/ojg v1.21.1 -> v1.22.0 age adoption passing confidence require minor
github.com/onsi/gomega v1.30.0 -> v1.33.1 age adoption passing confidence require minor
github.com/pierrec/lz4/v4 v4.1.19 -> v4.1.21 age adoption passing confidence require patch
github.com/prometheus/client_golang v1.18.0 -> v1.19.1 age adoption passing confidence require minor
github.com/redis/go-redis/v9 v9.4.0 -> v9.5.1 age adoption passing confidence require minor
github.com/stretchr/testify v1.8.4 -> v1.9.0 age adoption passing confidence require minor
golang.org/x/crypto v0.19.0 -> v0.23.0 age adoption passing confidence require minor
golang.org/x/exp 814bf88 -> 23cca88 age adoption passing confidence require digest
golang.org/x/oauth2 v0.17.0 -> v0.20.0 age adoption passing confidence require minor
golang.org/x/sync v0.6.0 -> v0.7.0 age adoption passing confidence require minor
google.golang.org/api v0.164.0 -> v0.182.0 age adoption passing confidence require minor
k8s.io/apimachinery v0.29.1 -> v0.30.1 age adoption passing confidence require minor

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

googleapis/google-cloud-go (cloud.google.com/go/compute/metadata)

v0.3.0

  • storage:

    • AdminClient replaced by methods on Client.
      Replace

      adminClient.CreateBucket(ctx, bucketName, attrs)

      with

      client.Bucket(bucketName).Create(ctx, projectID, attrs)
    • BucketHandle.List replaced by BucketHandle.Objects.
      Replace

      for query != nil {
          objs, err := bucket.List(d.ctx, query)
          if err != nil { ... }
          query = objs.Next
          for _, obj := range objs.Results {
              fmt.Println(obj)
          }
      }

      with

      iter := bucket.Objects(d.ctx, query)
      for {
          obj, err := iter.Next()
          if err == iterator.Done {
              break
          }
          if err != nil { ... }
          fmt.Println(obj)
      }

      (The iterator package is at google.golang.org/api/iterator.)

      Replace Query.Cursor with ObjectIterator.PageInfo().Token.

      Replace Query.MaxResults with ObjectIterator.PageInfo().MaxSize.

    • ObjectHandle.CopyTo replaced by ObjectHandle.CopierFrom.
      Replace

      attrs, err := src.CopyTo(ctx, dst, nil)

      with

      attrs, err := dst.CopierFrom(src).Run(ctx)

      Replace

      attrs, err := src.CopyTo(ctx, dst, &storage.ObjectAttrs{ContextType: "text/html"})

      with

      c := dst.CopierFrom(src)
      c.ContextType = "text/html"
      attrs, err := c.Run(ctx)
    • ObjectHandle.ComposeFrom replaced by ObjectHandle.ComposerFrom.
      Replace

      attrs, err := dst.ComposeFrom(ctx, []*storage.ObjectHandle{src1, src2}, nil)

      with

      attrs, err := dst.ComposerFrom(src1, src2).Run(ctx)
    • ObjectHandle.Update's ObjectAttrs argument replaced by ObjectAttrsToUpdate.
      Replace

      attrs, err := obj.Update(ctx, &storage.ObjectAttrs{ContextType: "text/html"})

      with

      attrs, err := obj.Update(ctx, storage.ObjectAttrsToUpdate{ContextType: "text/html"})
    • ObjectHandle.WithConditions replaced by ObjectHandle.If.
      Replace

      obj.WithConditions(storage.Generation(gen), storage.IfMetaGenerationMatch(mgen))

      with

      obj.Generation(gen).If(storage.Conditions{MetagenerationMatch: mgen})

      Replace

      obj.WithConditions(storage.IfGenerationMatch(0))

      with

      obj.If(storage.Conditions{DoesNotExist: true})
    • storage.Done replaced by iterator.Done (from package google.golang.org/api/iterator).

  • Package preview/logging deleted. Use logging instead.

alicebob/miniredis (github.com/alicebob/miniredis/v2)

v2.32.1

Compare Source

  • support for SINTERCARD (thanks @​s-barr-fetch)
  • support for EXPIRETIME and PEXPIRETIME (thanks @​wszaranski)
  • fix GEO* units to be case insensitive
coreos/go-oidc (github.com/coreos/go-oidc/v3)

v3.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: coreos/go-oidc@v3.9.0...v3.10.0

golang-jwt/jwt (github.com/golang-jwt/jwt/v5)

v5.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: golang-jwt/jwt@v5.2.0...v5.2.1

ohler55/ojg (github.com/ohler55/ojg)

v1.22.0

Compare Source

v1.21.5

Compare Source

v1.21.4

Compare Source

v1.21.3

Compare Source

What's Changed

Full Changelog: ohler55/ojg@v1.21.2...v1.21.3

v1.21.2

Compare Source

onsi/gomega (github.com/onsi/gomega)

v1.33.1

Compare Source

1.33.1

Fixes
  • fix confusing eventually docs [3a66379]
Maintenance
  • Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2 [e9bc35a]

v1.33.0

Compare Source

1.33.0

Features

Receive not accepts Receive(<POINTER>, MATCHER>), allowing you to pick out a specific value on the channel that satisfies the provided matcher and is stored in the provided pointer.

Maintenance

v1.32.0

Compare Source

1.32.0

Maintenance
  • Migrate github.com/golang/protobuf to google.golang.org/protobuf [436a197]

    This release drops the deprecated github.com/golang/protobuf and adopts google.golang.org/protobuf. Care was taken to ensure the release is backwards compatible (thanks @​jbduncan !). Please open an issue if you run into one.

  • chore: test with Go 1.22 (#​733) [32ef35e]

  • Bump golang.org/x/net from 0.19.0 to 0.20.0 (#​717) [a0d0387]

  • Bump github-pages and jekyll-feed in /docs (#​732) [b71e477]

  • docs: fix typo and broken anchor link to gstruct [f460154]

  • docs: fix HaveEach matcher signature [a2862e4]

v1.31.1

Compare Source

1.31.1

Fixes
  • Inverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999]
  • Update test in case keeping msg is desired [ad1a367]
Maintenance
  • Show how to import the format sub package [24e958d]
  • tidy up go.sum [26661b8]
  • bump dependencies [bde8f7a]

v1.31.0

Compare Source

1.31.0

Features
  • Async assertions include context cancellation cause if present [121c37f]
Maintenance
pierrec/lz4 (github.com/pierrec/lz4/v4)

v4.1.21

Compare Source

v4.1.20

Compare Source

prometheus/client_golang (github.com/prometheus/client_golang)

v1.19.1

Compare Source

What's Changed

  • Security patches for golang.org/x/sys and google.golang.org/protobuf

New Contributors

Full Changelog: prometheus/client_golang@v1.19.0...v1.19.1

v1.19.0

Compare Source

What's Changed

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See https://github.com/prometheus/client_golang/pull/1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #​1445 #​1449
  • [FEATURE] collectors: Add version collector. #​1422 #​1427

New Contributors

Full Changelog: prometheus/client_golang@v1.18.0...v1.19.0

redis/go-redis (github.com/redis/go-redis/v9)

v9.5.1: 9.5.1

Compare Source

Changes

Note: This release fixes the SETINFO issue from 9.5.0. This release restores connections to redis versions that do not have SETINFO. Thank you to our amazing community for their help with this issue

🐛 Bug Fixes

  • bug: Fix SETINFO ensuring it is set-and-forget (#​2915)

🧰 Maintenance

  • docs: README update to highlight how to disable sending client identification (#​2913)

Contributors

We'd like to thank all the contributors who worked on this release!

@​ofekshenawa

v9.5.0: 9.5.0

Compare Source

Changes

Note: This release implements SETINFO by default, and currently breaks with Redis versions prior to 7.2 due to the way the change was implemented. It should have failed silently, but did not. 9.5.1 will fix this. To disable this behaviour, with this release, please DisableIdentity: true in your RedisOptions struct.

🚀 New Features

  • Add object fraq command (#​2844)
  • Speed up connections by sending SetInfo via a pipeline (#​2880)
  • Add helpers to set libinfo without panic (#​2724)

🧰 Maintenance

  • Remove unnecessary Node project definition file (#​2863)
  • Add support for specifying bitcount unit as byte or bit, byte default (#​2887)
  • fix ConnPool race in newConn (#​2885)

📚 Documentation & Testing

  • Docs: update features (#​2846)
  • Docs: add bytes in scan struct example (#​2836)
  • Tests: add ut for util_test (#​2840)

⚙️ Dependencies & Infrastructure

  • chore: update OpenTelemetry and Uptrace to the latest version (#​2864)
  • chore(deps): bump release-drafter/release-drafter from 5 to 6 (#​2883)
  • chore(deps): bump rojopolis/spellcheck-github-actions from 0.35.0 to 0.36.0 (#​2889)
  • chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#​2890)
  • Change RE image to 7.2.4-108 (#​2884)
  • Add CredentialsProvider to ClusterOptions (#​2791)

Contributors

We'd like to thank all the contributors who worked on this release!

@​OlegStotsky, @​abusizhishen, @​dependabot, @​dependabot[bot], @​johnduhart, @​limotley, @​ofekshenawa, @​peczenyj, @​rfyiamcool, and @​vmihailenco

stretchr/testify (github.com/stretchr/testify)

v1.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.8.4...v1.9.0

googleapis/google-api-go-client (google.golang.org/api)

v0.182.0

Compare Source

Features

v0.181.0

Compare Source

Features

v0.180.0

Compare Source

Features

v0.179.0

Compare Source

Features
Bug Fixes

v0.178.0

Compare Source

Features
Documentation

[v0.177.0](https://togithub.com/googleapis/goog


Configuration

📅 Schedule: Branch creation - "after 8am on sunday" (UTC), Automerge - 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner April 7, 2024 08:27
@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Apr 7, 2024
@renovate renovate bot force-pushed the renovate/gomod branch 4 times, most recently from 2224552 to fa37152 Compare April 12, 2024 18:43
@renovate renovate bot force-pushed the renovate/gomod branch 11 times, most recently from 7b17d40 to c7236cc Compare April 22, 2024 16:42
@renovate renovate bot force-pushed the renovate/gomod branch 5 times, most recently from e521dfa to 60ba22c Compare April 30, 2024 04:31
@renovate renovate bot force-pushed the renovate/gomod branch 8 times, most recently from e40ace0 to 7811aaa Compare May 2, 2024 21:23
@renovate renovate bot force-pushed the renovate/gomod branch 10 times, most recently from 7a40c7d to 8496e5d Compare May 10, 2024 19:03
@renovate renovate bot force-pushed the renovate/gomod branch 8 times, most recently from c8bc7e2 to 6e9e42e Compare May 16, 2024 22:05
@renovate renovate bot force-pushed the renovate/gomod branch 10 times, most recently from 88c6bb7 to c755208 Compare May 29, 2024 01:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants