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

Bump the github-dependencies group across 1 directory with 29 updates #1034

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps the github-dependencies group with 18 updates in the / directory:

Package From To
cloud.google.com/go/compute/metadata 0.5.2 0.6.0
cloud.google.com/go/resourcemanager 1.10.1 1.10.3
github.com/container-storage-interface/spec 1.8.0 1.11.0
github.com/stretchr/testify 1.9.0 1.10.0
cloud.google.com/go 0.116.0 0.118.0
github.com/emicklei/go-restful/v3 3.11.0 3.12.1
github.com/evanphx/json-patch 5.6.0+incompatible 5.9.0+incompatible
github.com/fsnotify/fsnotify 1.7.0 1.8.0
github.com/go-openapi/jsonpointer 0.19.6 0.21.0
github.com/go-openapi/jsonreference 0.20.2 0.21.0
github.com/hashicorp/go-multierror 1.1.0 1.1.1
github.com/mailru/easyjson 0.7.7 0.9.0
github.com/nxadm/tail 1.4.8 1.4.11
github.com/prometheus/client_golang 1.16.0 1.20.5
github.com/sirupsen/logrus 1.9.0 1.9.3
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc 0.54.0 0.58.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp 0.54.0 0.58.0
go.uber.org/atomic 1.10.0 1.11.0

Updates cloud.google.com/go/compute/metadata from 0.5.2 to 0.6.0

Changelog

Sourced from cloud.google.com/go/compute/metadata's changelog.

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 with Uploader.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 of

    var v ValueList
    ... it.Next(&v) ..

    use

    var v []Value
    ... it.Next(&v) ...
    • Previously, repeatedly calling RowIterator.Next on the same []Value or ValueList 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 and uintptr are no longer supported in schema inference. 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.0

  • bigquery:
    • The SQL types DATE, TIME and DATETIME are now supported. They correspond to the Date, Time and DateTime types in the new cloud.google.com/go/civil package.
    • Support for query parameters.
    • Support deleting a dataset.
    • Values from INTEGER columns will now be returned as int64, not int. This will avoid errors arising from large values on 32-bit systems.
  • datastore:
    • Nested Go structs encoded as Entity values, instead of a flattened list of the embedded struct's fields. This means that you may now have twice-nested slices, eg.
      type State struct {
        Cities  []struct{
          Populations []int

... (truncated)

Commits
  • c116c79 bigquery: cache schema inference
  • dd37f36 bigquery: check for recursive types during schema inference
  • 0c87a68 bigquery,logging,storage,datastore: mention beta status in doc comment
  • 1e032f3 datastore: implement structCodec using internal/fields
  • ee72afc README: change "experimental" to "alpha"
  • 9d965e6 README: update status of select clients
  • 3d66f77 fields: factor out fast cache to separate package.
  • e80926d bigquery: support uploading structs directly
  • 5bfd313 internal/fields: adds func for validating struct
  • c9f70e2 bigquery: support struct field tags
  • Additional commits viewable in compare view

Updates cloud.google.com/go/resourcemanager from 1.10.1 to 1.10.3

Release notes

Sourced from cloud.google.com/go/resourcemanager's releases.

iap: v1.10.3

1.10.3 (2025-01-02)

Bug Fixes

  • iap: Update golang.org/x/net to v0.33.0 (e9b0b69)

resourcemanager: v1.10.3

1.10.3 (2025-01-02)

Bug Fixes

  • resourcemanager: Update golang.org/x/net to v0.33.0 (e9b0b69)

servicemanagement: v1.10.3

1.10.3 (2025-01-02)

Bug Fixes

  • servicemanagement: Update golang.org/x/net to v0.33.0 (e9b0b69)

webrisk: v1.10.3

1.10.3 (2025-01-02)

Bug Fixes

  • webrisk: Update golang.org/x/net to v0.33.0 (e9b0b69)
Commits
  • aa41de6 chore: release main (#8917)
  • 81a97b0 fix(all): update grpc-go to v1.59.0 (#8922)
  • 343cea8 fix(all): update grpc-go to v1.56.3 (#8916)
  • 7bb630b test(bigtable): Add retries while getting app profile (#8751)
  • b1409e3 chore(cloudquotas): Revert "add config to generate apiv1 (#8766)" (#8770)
  • b3cc26b chore(cloudquotas): add config to generate apiv1 (#8766)
  • dfa8e22 feat(bigquery/storage/managedwriter): support default value controls (#8686)
  • 3e5ba24 chore(internal/godocfx): test a specific golden package version (#8759)
  • 1e6534f chore(internal/kokoro): upload docs to subdirectory (#8763)
  • 74fa783 chore(internal/kokoro): fix doc upload (#8762)
  • Additional commits viewable in compare view

Updates github.com/container-storage-interface/spec from 1.8.0 to 1.11.0

Release notes

Sourced from github.com/container-storage-interface/spec's releases.

v1.11.0

What's Changed

Breaking changes/Deprecations

  • None

Additions

Clarifications/Corrections/Fixes

  • None

Dependencies

  • None

Full Changelog: container-storage-interface/spec@v1.10.0...v1.11.0

v1.11.0-rc1

No release notes provided.

v1.10.0

What's Changed

Breaking changes/Deprecations

  • The google.golang.org/protobuf and protoc-gen-go libraries were bumped in this release to v1.33.0 (indirectly bumping github.com/golang/protobuf to v1.5.3) resulting in breaking changes to generated protobuf go message structures. SPs updating their CSI drivers to this version of the CSI spec must modify their code to handle the changes. See #570.

Additions

Clarifications/Corrections/Fixes

  • None

Dependencies

New Contributors

Full Changelog: container-storage-interface/spec@v1.9.0...v1.10.0

v1.10.0-rc1

No release notes provided.

v1.9.0

Breaking changes/Deprecations:

  • None

Additions:

  • spec ([PR #544](container-storage-interface/spec#544)): [Alpha] Introduce new ControllerModifyVolume RPC and a mutable_parameters field under existing CreateVolumeRequest RPC to enable modification of volume properties (e.g. IOPS, etc.) after volume creation.

Clarifications/Corrections/Fixes:

... (truncated)

Commits
  • f6b6d53 Move VolumeGroupSnapshot to GA (#573)
  • 2f34062 Merge pull request #567 from saad-ali/bumpv111
  • 47d428b Bump master version to 1.11 for next release
  • 21be3f8 Merge pull request #566 from saad-ali/protoBufTo133
  • 1bc2caf Bump google.golang.org/protobuf from 1.32.0 to 1.33.0
  • adb2b16 Merge pull request #564 from container-storage-interface/dependabot/go_module...
  • 811799a Bump golang.org/x/net from 0.10.0 to 0.23.0
  • 9674d35 Merge pull request #559 from container-storage-interface/dependabot/go_module...
  • 2696773 Added the SnapshotMetadata service. (#551)
  • 1f2bf8a Bump google.golang.org/grpc from 1.57.0 to 1.57.1
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.9.0 to 1.10.0

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.10.0

What's Changed

Functional Changes

Fixes

Documantation, Build & CI

New Contributors

... (truncated)

Commits
  • 89cbdd9 Merge pull request #1626 from arjun-1/fix-functional-options-diff-indirect-calls
  • 07bac60 Merge pull request #1667 from sikehish/flaky
  • 716de8d Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI
  • 118fb83 NotSame should fail if args are not pointers #1661 (#1664)
  • 7d99b2b attempt 2
  • 05f87c0 more similar
  • ea7129e better fmt
  • a1b9c9e Merge pull request #1663 from ybrustin/master
  • 8302de9 Merge branch 'master' into master
  • 89352f7 Merge pull request #1518 from hendrywiranto/adjust-readme-remove-v2
  • Additional commits viewable in compare view

Updates cloud.google.com/go from 0.116.0 to 0.118.0

Release notes

Sourced from cloud.google.com/go's releases.

v0.118.0

0.118.0 (2025-01-02)

Features

  • civil: Add AddMonths, AddYears and Weekday methods to Date (#11340) (d45f1a0)
Changelog

Sourced from cloud.google.com/go's changelog.

0.118.0 (2025-01-02)

Features

  • civil: Add AddMonths, AddYears and Weekday methods to Date (#11340) (d45f1a0)

0.117.0 (2024-12-16)

Features

Commits
  • 00c6c0b chore(main): release 0.118.0 (#11360)
  • d45f1a0 feat(civil): add AddMonths, AddYears and Weekday methods to Date (#11340)
  • e2796a8 chore(parallelstore): fix links in documentation (#11358)
  • e904ee6 chore(main): release logging 1.13.0 (#11026)
  • 7f81daf chore(spanner): support mutation only operation for read-write mux (#11342)
  • e41a153 fix: Make uid.Timestamp work on 32bit architectures (#11353)
  • 8ebcc6d docs(batch): fix broken references in comments (#11316)
  • 6aa27dc fix(bigtable): Correct the 'method' label value (#11350)
  • 1513106 test(spanner): skip failing tests on cloud-devel and staging (#11347)
  • e9a8e3a chore(spanner): track precommit token for R/W multiplexed session (#11229)
  • Additional commits viewable in compare view

Updates cloud.google.com/go/auth from 0.10.1 to 0.13.0

Release notes

Sourced from cloud.google.com/go/auth's releases.

gkeconnect: v0.12.1

0.12.1 (2025-01-02)

Bug Fixes

  • gkeconnect: Update golang.org/x/net to v0.33.0 (e9b0b69)

domains: v0.10.3

0.10.3 (2025-01-02)

Bug Fixes

  • domains: Update golang.org/x/net to v0.33.0 (e9b0b69)

lifesciences: v0.10.3

0.10.3 (2025-01-02)

Bug Fixes

  • lifesciences: Update golang.org/x/net to v0.33.0 (e9b0b69)

networksecurity: v0.10.3

0.10.3 (2025-01-02)

Bug Fixes

  • networksecurity: Update golang.org/x/net to v0.33.0 (e9b0b69)

privatecatalog: v0.10.3

0.10.3 (2025-01-02)

Bug Fixes

  • privatecatalog: Update golang.org/x/net to v0.33.0 (e9b0b69)
Changelog

Sourced from cloud.google.com/go/auth's changelog.

v0.13.0

  • bigquery: UseLegacySQL options for CreateTable and QueryConfig. Use these options to continue using Legacy SQL after the client switches its default to Standard SQL.

  • bigquery: Support for updating dataset labels.

  • bigquery: Set DatasetIterator.ProjectID to list datasets in a project other than the client's. DatasetsInProject is no longer needed and is deprecated.

  • bigtable: Fail ListInstances when any zones fail.

  • spanner: support decoding of slices of basic types (e.g. []string, []int64, etc.)

  • logging/logadmin: UpdateSink no longer creates a sink if it is missing (actually a change to the underlying service, not the client)

  • profiler: Service and ServiceVersion replace Target in Config.

v0.12.0

  • pubsub: Subscription.Receive now uses streaming pull.

  • pubsub: add Client.TopicInProject to access topics in a different project than the client.

  • errors: renamed errorreporting. The errors package will be removed shortly.

  • datastore: improved retry behavior.

  • bigquery: support updates to dataset metadata, with etags.

  • bigquery: add etag support to Table.Update (BREAKING: etag argument added).

  • bigquery: generate all job IDs on the client.

  • storage: support bucket lifecycle configurations.

v0.11.0

  • Clients for spanner, pubsub and video are now in beta.

  • New client for DLP.

  • spanner: performance and testing improvements.

  • storage: requester-pays buckets are supported.

... (truncated)

Commits
  • 5a9e19d storage: remove go1.10 tag from build
  • d358131 README.md: release notes for new version
  • 6dfe2b3 profiler: replace target with service and service version
  • 1816f0b bigquery: introduce UseLegacySQL options
  • 74d277f bigquery: support update of dataset labels
  • 954dca0 bigquery: export ProjectID on DatasetIterator
  • 872c8d2 go-cloud-debug-agent: add go1.7 build tag
  • f0bd45f WIP spanner: optimize array decoding
  • 8469772 videointelligence/apiv2: add client
  • 55e88ef bigtable: Fail ListInstances when any zones fail
  • Additional commits viewable in compare view

Updates cloud.google.com/go/auth/oauth2adapt from 0.2.5 to 0.2.6

Commits
  • 141f2a5 chore: release main (#9571)
  • 25c3f2d feat(datacatalog): Add RANGE type to Data Catalog (#9573)
  • 30b038d fix(all): release protobuf dep bump (#9586)
  • 424b716 chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /auth/o...
  • 035ca18 chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /intern...
  • 5e4815d chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /intern...
  • 9490416 chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /intern...
  • 87a101f chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /intern...
  • 42c0f35 chore(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /intern...
  • da6e854 chore(deps): bump google.golang.org/protobuf in /internal/gapicgen (#9574)
  • Additional commits viewable in compare view

Updates cloud.google.com/go/iam from 1.2.1 to 1.2.2

Commits
  • 47bb902 chore: release main (#10988)
  • 2b8ca4b chore: add Protobuf warning to release notes (#11025)
  • 8bb87d5 chore: update google.golang.org/api to v0.203.0 (#11022)
  • d40fbff fix(storage): Skip only specific transport tests. (#11016)
  • ff06fc2 fix: Fix default service account tests on GCE. (#11021)
  • 6071167 feat(alloydb): add new PSC instance configuration setting and output the PSC ...
  • 15eacb9 chore: update SA used for tests (#11018)
  • e78389d chore: fix doc publish creds (#11019)
  • 1d7ee9f chore(main): release auth 0.9.9 (#11003)
  • 6e69d2e feat(texttospeech): add brand voice lite, which lets you clone a voice with j...
  • Additional commits viewable in compare view

Updates cloud.google.com/go/longrunning from 0.6.1 to 0.6.2

Commits
  • 47bb902 chore: release main (#10988)
  • 2b8ca4b chore: add Protobuf warning to release notes (#11025)
  • 8bb87d5 chore: update google.golang.org/api to v0.203.0 (#11022)
  • d40fbff fix(storage): Skip only specific transport tests. (#11016)
  • ff06fc2 fix: Fix default service account tests on GCE. (#11021)
  • 6071167 feat(alloydb): add new PSC instance configuration setting and output the PSC ...
  • 15eacb9 chore: update SA used for tests (#11018)
  • e78389d chore: fix doc publish creds (#11019)
  • 1d7ee9f chore(main): release auth 0.9.9 (#11003)
  • 6e69d2e feat(texttospeech): add brand voice lite, which lets you clone a voice with j...
  • Additional commits viewable in compare view

Updates github.com/emicklei/go-restful/v3 from 3.11.0 to 3.12.1

Changelog

Sourced from github.com/emicklei/go-restful/v3's changelog.

[v3.12.1] - 2024-05-28

  • fix misroute when dealing multiple webservice with regex (#549) (thanks Haitao Chen)

[v3.12.0] - 2024-03-11

  • add Flush method #529 (#538)
  • fix: Improper handling of empty POST requests (#543)

[v3.11.3] - 2024-01-09

  • better not have 2 tags on one commit

[v3.11.1, v3.11.2] - 2024-01-09

  • fix by restoring custom JSON handler functions (Mike Beaumont #540)
Commits

Updates github.com/evanphx/json-patch from 5.6.0+incompatible to 5.9.0+incompatible

Release notes

Sourced from github.com/evanphx/json-patch's releases.

v5.9.0

What's Changed

Full Changelog: evanphx/json-patch@v5.8.1...v5.9.0

Fix API breakage

This PR fixes Operation containing a reference to internal/json and breaking the ability to manually compose one. This restores that ability using a type alias.

Full Changelog: evanphx/json-patch@v5.8.0...v5.8.1

Blargh Phixs and Empathyprovements

This release fixes a few stray panics, addresses large number accuracy, and improves performance!

What's Changed

Full Changelog: evanphx/json-patch@v5.7.0...v5.8.0

The 2023 Release

What's Changed

New Contributors

Full Changelog: evanphx/json-patch@v5.6.0...v5.7.0

Commits
  • b7a4e4a Merge pull request #202 from evanphx/f-html-escape
  • 7eef36c Guard using options to avoid a crash bug
  • 1bcbd0f Merge pull request #201 from evanphx/b-null
  • 9d7ba23 Add option to control if the output is HTMLEscaped
  • 009bc56 Validate that the partialDoc is decoded correctly
  • b82b685 Use a type alias for RawMessage to avoid breaking the public API of Operation
  • 05c9526 Merge pull request #197 from evanphx/f-perf
  • 7a438a6 Minor simplifications
  • 2a122d1 More optimizations
  • 174e1d7 Add MergePatch benchmark
  • Additional commits viewable in compare view

Updates github.com/fsnotify/fsnotify from 1.7.0 to 1.8.0

Release notes

Sourced from github.com/fsnotify/fsnotify's releases.

v1.8.0

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#619)

Changes and fixes

  • windows: fix behaviour of WatchList() to be consistent with other platforms (#610)

  • kqueue: ignore events with Ident=0 (#590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#620)

  • inotify: fix panic when calling Remove() in a goroutine (#650)

  • fen: allow watching subdirectories of watched directories (#621)

Changelog

Sourced from github.com/fsnotify/fsnotify's changelog.

1...

Description has been truncated

Bumps the github-dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.5.2` | `0.6.0` |
| [cloud.google.com/go/resourcemanager](https://github.com/googleapis/google-cloud-go) | `1.10.1` | `1.10.3` |
| [github.com/container-storage-interface/spec](https://github.com/container-storage-interface/spec) | `1.8.0` | `1.11.0` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.9.0` | `1.10.0` |
| [cloud.google.com/go](https://github.com/googleapis/google-cloud-go) | `0.116.0` | `0.118.0` |
| [github.com/emicklei/go-restful/v3](https://github.com/emicklei/go-restful) | `3.11.0` | `3.12.1` |
| [github.com/evanphx/json-patch](https://github.com/evanphx/json-patch) | `5.6.0+incompatible` | `5.9.0+incompatible` |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.7.0` | `1.8.0` |
| [github.com/go-openapi/jsonpointer](https://github.com/go-openapi/jsonpointer) | `0.19.6` | `0.21.0` |
| [github.com/go-openapi/jsonreference](https://github.com/go-openapi/jsonreference) | `0.20.2` | `0.21.0` |
| [github.com/hashicorp/go-multierror](https://github.com/hashicorp/go-multierror) | `1.1.0` | `1.1.1` |
| [github.com/mailru/easyjson](https://github.com/mailru/easyjson) | `0.7.7` | `0.9.0` |
| [github.com/nxadm/tail](https://github.com/nxadm/tail) | `1.4.8` | `1.4.11` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.16.0` | `1.20.5` |
| [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus) | `1.9.0` | `1.9.3` |
| [go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.54.0` | `0.58.0` |
| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.54.0` | `0.58.0` |
| [go.uber.org/atomic](https://github.com/uber-go/atomic) | `1.10.0` | `1.11.0` |



Updates `cloud.google.com/go/compute/metadata` from 0.5.2 to 0.6.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@apps/v0.5.2...v0.6.0)

Updates `cloud.google.com/go/resourcemanager` from 1.10.1 to 1.10.3
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@kms/v1.10.1...dlp/v1.10.3)

Updates `github.com/container-storage-interface/spec` from 1.8.0 to 1.11.0
- [Release notes](https://github.com/container-storage-interface/spec/releases)
- [Commits](container-storage-interface/spec@v1.8.0...v1.11.0)

Updates `github.com/stretchr/testify` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.9.0...v1.10.0)

Updates `cloud.google.com/go` from 0.116.0 to 0.118.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@v0.116.0...v0.118.0)

Updates `cloud.google.com/go/auth` from 0.10.1 to 0.13.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@auth/v0.10.1...v0.13.0)

Updates `cloud.google.com/go/auth/oauth2adapt` from 0.2.5 to 0.2.6
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@netapp/v0.2.5...netapp/v0.2.6)

Updates `cloud.google.com/go/iam` from 1.2.1 to 1.2.2
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@iam/v1.2.1...iam/v1.2.2)

Updates `cloud.google.com/go/longrunning` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@auth/v0.6.1...longrunning/v0.6.2)

Updates `github.com/emicklei/go-restful/v3` from 3.11.0 to 3.12.1
- [Release notes](https://github.com/emicklei/go-restful/releases)
- [Changelog](https://github.com/emicklei/go-restful/blob/v3/CHANGES.md)
- [Commits](emicklei/go-restful@v3.11.0...v3.12.1)

Updates `github.com/evanphx/json-patch` from 5.6.0+incompatible to 5.9.0+incompatible
- [Release notes](https://github.com/evanphx/json-patch/releases)
- [Commits](evanphx/json-patch@v5.6.0...v5.9.0)

Updates `github.com/fsnotify/fsnotify` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](fsnotify/fsnotify@v1.7.0...v1.8.0)

Updates `github.com/go-openapi/jsonpointer` from 0.19.6 to 0.21.0
- [Commits](go-openapi/jsonpointer@v0.19.6...v0.21.0)

Updates `github.com/go-openapi/jsonreference` from 0.20.2 to 0.21.0
- [Commits](go-openapi/jsonreference@v0.20.2...v0.21.0)

Updates `github.com/go-openapi/swag` from 0.22.4 to 0.23.0
- [Commits](go-openapi/swag@v0.22.4...v0.23.0)

Updates `github.com/hashicorp/go-multierror` from 1.1.0 to 1.1.1
- [Commits](hashicorp/go-multierror@v1.1.0...v1.1.1)

Updates `github.com/mailru/easyjson` from 0.7.7 to 0.9.0
- [Release notes](https://github.com/mailru/easyjson/releases)
- [Commits](mailru/easyjson@v0.7.7...v0.9.0)

Updates `github.com/nxadm/tail` from 1.4.8 to 1.4.11
- [Changelog](https://github.com/nxadm/tail/blob/master/CHANGES.md)
- [Commits](nxadm/tail@v1.4.8...v1.4.11)

Updates `github.com/prometheus/client_golang` from 1.16.0 to 1.20.5
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.16.0...v1.20.5)

Updates `github.com/prometheus/client_model` from 0.4.0 to 0.6.1
- [Release notes](https://github.com/prometheus/client_model/releases)
- [Commits](prometheus/client_model@v0.4.0...v0.6.1)

Updates `github.com/prometheus/common` from 0.44.0 to 0.55.0
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
- [Commits](prometheus/common@v0.44.0...v0.55.0)

Updates `github.com/prometheus/procfs` from 0.10.1 to 0.15.1
- [Release notes](https://github.com/prometheus/procfs/releases)
- [Commits](prometheus/procfs@v0.10.1...v0.15.1)

Updates `github.com/sirupsen/logrus` from 1.9.0 to 1.9.3
- [Release notes](https://github.com/sirupsen/logrus/releases)
- [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md)
- [Commits](sirupsen/logrus@v1.9.0...v1.9.3)

Updates `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc` from 0.54.0 to 0.58.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-contrib@zpages/v0.54.0...zpages/v0.58.0)

Updates `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp` from 0.54.0 to 0.58.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-contrib@zpages/v0.54.0...zpages/v0.58.0)

Updates `go.opentelemetry.io/otel` from 1.29.0 to 1.33.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.29.0...v1.33.0)

Updates `go.opentelemetry.io/otel/metric` from 1.29.0 to 1.33.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.29.0...v1.33.0)

Updates `go.opentelemetry.io/otel/trace` from 1.29.0 to 1.33.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.29.0...v1.33.0)

Updates `go.uber.org/atomic` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/uber-go/atomic/releases)
- [Changelog](https://github.com/uber-go/atomic/blob/master/CHANGELOG.md)
- [Commits](uber-go/atomic@v1.10.0...v1.11.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: cloud.google.com/go/resourcemanager
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: github.com/container-storage-interface/spec
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: cloud.google.com/go
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: cloud.google.com/go/auth
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: cloud.google.com/go/auth/oauth2adapt
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: cloud.google.com/go/iam
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: cloud.google.com/go/longrunning
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: github.com/emicklei/go-restful/v3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/evanphx/json-patch
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/fsnotify/fsnotify
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/go-openapi/jsonpointer
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/go-openapi/jsonreference
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/go-openapi/swag
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/hashicorp/go-multierror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: github.com/mailru/easyjson
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/nxadm/tail
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: github.com/prometheus/client_golang
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/prometheus/client_model
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/prometheus/common
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/prometheus/procfs
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: github.com/sirupsen/logrus
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: github-dependencies
- dependency-name: go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: go.opentelemetry.io/otel
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: go.opentelemetry.io/otel/metric
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
- dependency-name: go.uber.org/atomic
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: github-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added area/dependency Issues or PRs related to dependency changes kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesn't merit a release note. labels Jan 6, 2025
@dependabot dependabot bot requested review from mattcary and pwschuurman January 6, 2025 21:32
@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Jan 6, 2025
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: dependabot[bot]
Once this PR has been reviewed and has the lgtm label, please assign songjiaxun for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot
Copy link
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Jan 6, 2025
@k8s-ci-robot
Copy link
Contributor

@dependabot[bot]: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
pull-gcp-filestore-csi-driver-unit 497a104 link true /test pull-gcp-filestore-csi-driver-unit
pull-gcp-filestore-csi-driver-sanity 497a104 link true /test pull-gcp-filestore-csi-driver-sanity
pull-gcp-filestore-csi-driver-verify 497a104 link true /test pull-gcp-filestore-csi-driver-verify
pull-gcp-filestore-csi-driver-kubernetes-integration 497a104 link true /test pull-gcp-filestore-csi-driver-kubernetes-integration
pull-gcp-filestore-csi-driver-e2e 497a104 link true /test pull-gcp-filestore-csi-driver-e2e

Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/dependency Issues or PRs related to dependency changes cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesn't merit a release note. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant