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 #1027

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

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.2
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.117.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

Release notes

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

compute/metadata: v0.6.0

0.6.0 (2024-12-13)

Features

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.2

Release notes

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

webrisk: v1.10.2

1.10.2 (2024-10-23)

Bug Fixes

  • webrisk: Update google.golang.org/api to v0.203.0 (8bb87d5)
  • webrisk: WARNING: On approximately Dec 1, 2024, an update to Protobuf will change service registration function signatures to use an interface instead of a concrete type in generated .pb.go files. This change is expected to affect very few if any users of this client library. For more information, see googleapis/google-cloud-go#11020. (2b8ca4b)
Commits
  • 559b86a chore: release main (#8706)
  • 174da47 fix(all): update golang.org/x/net to v0.17.0 (#8705)
  • 89eeeff chore: release main (#8664)
  • 0e43b40 feat(shopping): new clients (#8699)
  • 9c502c2 fix: Update go_package and Go importpath (#8667)
  • 4284639 chore(ci): update Go version to 1.21 (#8695)
  • c73963f fix(bigquery): handle storage read api Recv call errors (#8666)
  • 65cb8bd chore(all): update module golang.org/x/net to v0.17.0 [SECURITY] (#8691)
  • 7b19ae2 chore(internal/postprocessor): add config for shopping/type (#8690)
  • 45d4f21 chore(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 in /internal/example...
  • 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.117.0

Release notes

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

v0.117.0

0.117.0 (2024-12-16)

Features

Changelog

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

0.117.0 (2024-12-16)

Features

Commits

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

Release notes

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

auth: v0.12.1

0.12.1 (2024-12-10)

Bug Fixes

shopping: v0.12.1

0.12.1 (2024-12-04)

Documentation

  • shopping/css: Fix comment on list account labels (d3de944)

auth: v0.12.0

0.12.0 (2024-12-04)

Features

Bug Fixes

auth: v0.11.0

0.11.0 (2024-11-21)

Features

gkeconnect: v0.12.0

0.12.0 (2024-11-14)

Features

  • gkeconnect/gateway: Update default transport type for Connect Gateway v1 client to "rest" (f329c4c)
  • gkeconnect/gateway: Update default transport type for Connect Gateway v1beta1 client to "rest" (#11108) (380e7d2)

auth: v0.10.2

0.10.2 (2024-11-12)

... (truncated)

Changelog

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

Changes

0.117.0 (2024-12-16)

Features

0.116.0 (2024-10-09)

Features

0.115.1 (2024-08-13)

Bug Fixes

0.115.0 (2024-06-12)

Features

Bug Fixes

  • internal/postprocessor: Use approved image tag (#10341) (a388fe5)

0.114.0 (2024-05-23)

Features

  • civil: Add Compare method to Date, Time, and DateTime (#10193) (c2920d7)

Bug Fixes

  • internal/postprocessor: Add scopes to all appropriate commit lines (#10192) (c21399b)

0.113.0 (2024-05-08)

... (truncated)

Commits
  • 7d7fb03 chore(main): release auth 0.12.1 (#11253)
  • 76266a6 feat(compute): Update Compute Engine API to revision 20241201 (#966) (#11250)
  • af6fb46 fix(auth): correct typo in link (#11160)
  • f05b7b8 ci(spanner): emulator test should run only when env is set already (#11252)
  • 1f906a3 ci(spanner): emulator test should run only when env is set already (#11244)
  • 279350e fix(shopping/merchant/products): Changed repeated flag of an existing field `...
  • ca8d4c3 feat(chat): Add missing field annotations in space.proto, message.proto, reac...
  • 38385d4 docs(orchestration/airflow/service): add examples for kubernetes secret (#11236)
  • b0fd518 test(bigquery): remove defunct opencensus test (#11241)
  • 0d1ac87 feat(transport): remove deprecated EXPERIMENTAL OpenCensus trace context prop...
  • 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

Release notes

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

auth/oauth2adapt: v0.2.6

0.2.6 (2024-11-21)

Bug Fixes

auth/oauth2adapt: v0.2.5

0.2.5 (2024-10-30)

Bug Fixes

  • auth/oauth2adapt: Convert token metadata where possible (#11062) (34bf1c1)
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

Release notes

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

auth/oauth2adapt: v0.2.6

0.2.6 (2024-11-21)

Bug Fixes

auth/oauth2adapt: v0.2.5

0.2.5 (2024-10-30)

Bug Fixes

  • auth/oauth2adapt: Convert token metadata where possible (#11062) (34bf1c1)
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

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.2` |
| [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.117.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.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@kms/v1.10.1...dlp/v1.10.2)

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.117.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.117.0)

Updates `cloud.google.com/go/auth` from 0.10.1 to 0.12.1
- [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...auth/v0.12.1)

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 Dec 16, 2024
@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Dec 16, 2024
@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 tyuchn for approval. For more information see the Kubernetes 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 Dec 16, 2024
@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 2a66d8f link true /test pull-gcp-filestore-csi-driver-unit
pull-gcp-filestore-csi-driver-sanity 2a66d8f link true /test pull-gcp-filestore-csi-driver-sanity
pull-gcp-filestore-csi-driver-verify 2a66d8f link true /test pull-gcp-filestore-csi-driver-verify
pull-gcp-filestore-csi-driver-kubernetes-integration 2a66d8f link true /test pull-gcp-filestore-csi-driver-kubernetes-integration
pull-gcp-filestore-csi-driver-e2e 2a66d8f 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.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 6, 2025

Superseded by #1034.

@dependabot dependabot bot closed this Jan 6, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/github-dependencies-33dfe4ada6 branch January 6, 2025 21:32
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