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 minor-and-patch group in /provider with 17 updates #266

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 4, 2024

Bumps the minor-and-patch group in /provider with 17 updates:

Package From To
cloud.google.com/go/auth 0.9.9 0.10.0
cloud.google.com/go/auth/oauth2adapt 0.2.4 0.2.5
cloud.google.com/go/storage 1.45.0 1.46.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp 1.24.3 1.25.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric 0.48.3 0.49.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping 0.48.3 0.49.0
github.com/aws/aws-sdk-go-v2 1.32.2 1.32.3
github.com/aws/aws-sdk-go-v2/config 1.28.0 1.28.1
github.com/aws/aws-sdk-go-v2/service/kms 1.37.2 1.37.3
github.com/charmbracelet/x/ansi 0.4.0 0.4.2
github.com/hashicorp/terraform-json 0.22.1 0.23.0
github.com/hashicorp/terraform-plugin-go 0.24.0 0.25.0
github.com/pulumi/schema-tools 0.1.2 0.6.0
google.golang.org/api 0.203.0 0.204.0
google.golang.org/genproto 0.0.0-20241015192408-796eee8c2d53 0.0.0-20241021214115-324edc3d5d38
google.golang.org/genproto/googleapis/api 0.0.0-20241007155032-5fefd90f89a9 0.0.0-20241015192408-796eee8c2d53
google.golang.org/genproto/googleapis/rpc 0.0.0-20241015192408-796eee8c2d53 0.0.0-20241021214115-324edc3d5d38

Updates cloud.google.com/go/auth from 0.9.9 to 0.10.0

Release notes

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

auth: v0.10.0

0.10.0 (2024-10-30)

Features

  • auth: Add universe domain support to credentials/impersonate (#10953) (e06cb64)
Changelog

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

v0.10.0

  • pubsub: Subscription.ModifyPushConfig replaced with Subscription.Update.

  • pubsub: Subscription.Receive now runs concurrently for higher throughput.

  • vision: cloud.google.com/go/vision is deprecated. Use cloud.google.com/go/vision/apiv1 instead.

  • translation: now stable.

  • trace: several changes to the surface. See the link below.

Code changes required from v0.9.0

  • pubsub: Replace

    sub.ModifyPushConfig(ctx, pubsub.PushConfig{Endpoint: "https://example.com/push"})
    

    with

    sub.Update(ctx, pubsub.SubscriptionConfigToUpdate{
        PushConfig: &pubsub.PushConfig{Endpoint: "https://example.com/push"},
    })
    
  • trace: traceGRPCServerInterceptor will be provided from *trace.Client. Given an initialized *trace.Client named tc, instead of

    s := grpc.NewServer(grpc.UnaryInterceptor(trace.GRPCServerInterceptor(tc)))
    

    write

    s := grpc.NewServer(grpc.UnaryInterceptor(tc.GRPCServerInterceptor()))
    
  • trace trace.GRPCClientInterceptor will also provided from *trace.Client. Instead of

    conn, err := grpc.Dial(srv.Addr, grpc.WithUnaryInterceptor(trace.GRPCClientInterceptor()))
    

    write

... (truncated)

Commits
  • a5913b3 pubsub: add Subscription.Update; remove Subcription.ModifyPushConfig
  • 1bfb4aa storage: fix reference to CopyFrom in doc comment
  • 05b84c5 pubsub: add test for ModifyPushConfig
  • 328063a pubsub: fix data races in stream tests
  • 927c812 pubsub: pull messages concurrently
  • 7c205da add video intelligence to README
  • f6bedb5 bigtable: Add InstanceInfo admin method.
  • 1a5f48f vision: deprecate manual client
  • 1dd9a1e spanner: increase code coverage
  • 2b81b39 translate: mark stable
  • Additional commits viewable in compare view

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

Commits
  • 86ec5c0 chore: release main (#9511)
  • a74cbbe docs(netapp): mark optional fields explicitly in Storage Pool (#9513)
  • 9bba269 feat(pubsub): support kinesis ingestion admin (#9458)
  • 5ca0271 feat(logging/logadmin): allow logging PageSize to override (#9409)
  • e68777c chore(main): release spanner 1.58.0 (#9423)
  • 6deb969 docs(pubsub): check for nil responses for receive examples (#9516)
  • e54989e chore: remove old samples that no longer compile (#9510)
  • 1cf28f6 docs(run): clarify some defaults and required or optional values (#9505)
  • dbd8f28 chore(main): release firestore 1.15.0 (#8918)
  • d320daa doc(datastore): Add document around FitlerField (#7536)
  • Additional commits viewable in compare view

Updates cloud.google.com/go/storage from 1.45.0 to 1.46.0

Release notes

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

storage: v1.46.0

1.46.0 (2024-10-31)

Features

  • storage: Add grpc metrics experimental options (#10984) (5b7397b)

Bug Fixes

  • storage: Skip only specific transport tests. (#11016) (d40fbff)
  • storage: Update google.golang.org/api to v0.203.0 (8bb87d5)
  • storage: 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)

Miscellaneous Chores

  • storage/internal: Remove notification, service account, and hmac RPCS. These API have been migrated to Storage Control and are available via the JSON API. (#11008) (e0759f4)

pubsub: v1.45.1

1.45.1 (2024-10-24)

Bug Fixes

  • pubsub: Update google.golang.org/api to v0.203.0 (8bb87d5)
  • pubsub: 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. (8bb87d5)

Documentation

  • pubsub: Add doc links to top level package doc (#11029) (fe2ec56)
Commits
  • dd8829a chore(main): release spanner 1.46.0 (#7894)
  • 1dd53b8 chore(internal/gensnippets): remove unused module internal/gensnippets (#7920)
  • ee10cfd feat(maps/places): start generating apiv1 (#7919)
  • 83870f5 feat(spanner/admin/database): Add support for UpdateDatabase in Cloud Spanner...
  • 5c9e185 chore(maps/places): add config to generate apiv1 (#7918)
  • 4474523 chore(deps): bump github.com/cloudflare/circl from 1.1.0 to 1.3.3 in /interna...
  • b573226 chore(deps): bump github.com/cloudflare/circl in /internal/gapicgen (#7916)
  • d0d3755 feat(spanner): make leader aware routing default enabled for supported RPC re...
  • 151908a chore(main): release pubsublite 1.8.1 (#7891)
  • 4a68b61 chore(compute): restore smoke_test (#7914)
  • Additional commits viewable in compare view

Updates github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp from 1.24.3 to 1.25.0

Release notes

Sourced from github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp's releases.

v1.5.1 and v0.29.1

What's Changed

Full Changelog: GoogleCloudPlatform/opentelemetry-operations-go@v1.5.0...v1.5.1

v1.5.0 and v0.29.0

What's Changed

Full Changelog: GoogleCloudPlatform/opentelemetry-operations-go@v1.4.0...v1.5.0

v1.4.0 and v0.28.0

What's Changed

... (truncated)

Commits
  • d637680 prepare for v1.25.0 and v0.49.0 (#909)
  • fe7c5d2 remove dependency on prometheus translation package (#908)
  • f63ac9b Update google cloud client dependencies (#905)
  • 8ed7574 fix onGKE to use the cluster location, as name may be registered (#907)
  • dcf7039 Add performance tuning notes to exporter readme (#903)
  • See full diff in compare view

Updates github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric from 0.48.3 to 0.49.0

Commits
  • d637680 prepare for v1.25.0 and v0.49.0 (#909)
  • fe7c5d2 remove dependency on prometheus translation package (#908)
  • f63ac9b Update google cloud client dependencies (#905)
  • 8ed7574 fix onGKE to use the cluster location, as name may be registered (#907)
  • dcf7039 Add performance tuning notes to exporter readme (#903)
  • See full diff in compare view

Updates github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping from 0.48.3 to 0.49.0

Commits
  • d637680 prepare for v1.25.0 and v0.49.0 (#909)
  • fe7c5d2 remove dependency on prometheus translation package (#908)
  • f63ac9b Update google cloud client dependencies (#905)
  • 8ed7574 fix onGKE to use the cluster location, as name may be registered (#907)
  • dcf7039 Add performance tuning notes to exporter readme (#903)
  • See full diff in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.32.2 to 1.32.3

Commits
  • 6b53348 Release 2024-10-28
  • 784d2d3 Regenerated Clients
  • 7258bd2 Update endpoints model
  • f322198 Update API model
  • b65b80a Merge pull request #2852 from RanVaknin/signature-header-parsing-fix
  • 803614d Fixing changelog description and implementation to use TrimSpace
  • b12c8cf adding changelog
  • f0caa97 patching GetSignedRequestSignature to cover edge cases with the signature
  • e058903 drop service/nimble (#2851)
  • 896793a Release 2024-10-25
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/config from 1.28.0 to 1.28.1

Commits
  • 6b53348 Release 2024-10-28
  • 784d2d3 Regenerated Clients
  • 7258bd2 Update endpoints model
  • f322198 Update API model
  • b65b80a Merge pull request #2852 from RanVaknin/signature-header-parsing-fix
  • 803614d Fixing changelog description and implementation to use TrimSpace
  • b12c8cf adding changelog
  • f0caa97 patching GetSignedRequestSignature to cover edge cases with the signature
  • e058903 drop service/nimble (#2851)
  • 896793a Release 2024-10-25
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/service/kms from 1.37.2 to 1.37.3

Commits
  • 6b53348 Release 2024-10-28
  • 784d2d3 Regenerated Clients
  • 7258bd2 Update endpoints model
  • f322198 Update API model
  • b65b80a Merge pull request #2852 from RanVaknin/signature-header-parsing-fix
  • 803614d Fixing changelog description and implementation to use TrimSpace
  • b12c8cf adding changelog
  • f0caa97 patching GetSignedRequestSignature to cover edge cases with the signature
  • e058903 drop service/nimble (#2851)
  • 896793a Release 2024-10-25
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/x/ansi from 0.4.0 to 0.4.2

Commits
  • e01e068 fix(ansi): ensure OSC command number is parsed when needed
  • 08d1601 chore(deps): bump github.com/charmbracelet/x/ansi in /input (#227)
  • 8315017 fix: compat layer for ansi 0.3->0.4 migration (#225)
  • 1032e03 fix: lint issue
  • 244ed57 ci(lint): remove deprecated linter
  • e3a3eae chore(cellbuf): merge pull request #224 from charmbracelet/cellbuf2
  • 9c548f1 chore(deps): cellbuf: bump ansi from 0.3.2 to 0.4.0
  • 1c2bac8 refactor(cellbuf): rename grid to screen and clean up
  • 1db682b chore(deps): bump github.com/charmbracelet/x/ansi in /input
  • 59f28b9 chore(deps): bump github.com/charmbracelet/bubbletea in /exp/teatest (#223)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-json from 0.22.1 to 0.23.0

Release notes

Sourced from github.com/hashicorp/terraform-json's releases.

v0.23.0

ENHANCEMENTS:

INTERNAL:

Full Changelog: hashicorp/terraform-json@v0.22.1...v0.23.0

Commits
  • 888d47a build(deps): Bump workflows to latest trusted versions (#140)
  • 76bdbbf build(deps): Bump workflows to latest trusted versions (#139)
  • 51492df Add support for ephemeral resources (#138)
  • 3b3d508 Merge pull request #137 from imakewebthings/ct/backstage-catalog-info
  • c285c1a Add a catalog-info.yaml file for Backstage
  • db693d5 build(deps): Bump workflows to latest trusted versions (#136)
  • 0104004 Bump github.com/zclconf/go-cty from 1.14.4 to 1.15.0 (#135)
  • bb8c49e Add action forget (#126)
  • 7d39b02 build(deps): Bump workflows to latest trusted versions (#134)
  • 9e856e8 Bump github.com/hashicorp/go-version from 1.6.0 to 1.7.0 (#133)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-go from 0.24.0 to 0.25.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-go's releases.

v0.25.0

NOTES:

  • tfprotov5+tfprotov6: An upcoming release will require the EphemeralResourceServer implementation as part of ProviderServer. (#441)

FEATURES:

  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new ephemeral resource type (#441)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-go's changelog.

0.25.0 (October 30, 2024)

NOTES:

  • tfprotov5+tfprotov6: An upcoming release will require the EphemeralResourceServer implementation as part of ProviderServer. (#441)

FEATURES:

  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new ephemeral resource type (#441)
Commits
  • 3cebe39 Update changelog
  • 879185f tfprotov5+tfprotov6: Initial ephemeral resource type implementation (#441)
  • 8e75df6 Result of tsccr-helper -log-level=info gha update -latest . (#439)
  • ed475eb build(deps): Bump github.com/hashicorp/go-plugin from 1.6.1 to 1.6.2 (#440)
  • 4bb130f build(deps): Bump google.golang.org/protobuf from 1.34.2 to 1.35.1 (#437)
  • 9ad05a3 Result of tsccr-helper -log-level=info gha update -latest . (#438)
  • 47d2cbf Result of tsccr-helper -log-level=info gha update -latest . (#436)
  • e20c6d1 build(deps): Bump google.golang.org/grpc from 1.67.0 to 1.67.1 (#435)
  • e814129 build(deps): Bump google.golang.org/grpc from 1.66.2 to 1.67.0 (#434)
  • See full diff in compare view

Updates github.com/pulumi/schema-tools from 0.1.2 to 0.6.0

Release notes

Sourced from github.com/pulumi/schema-tools's releases.

v0.6.0

What's Changed

Full Changelog: pulumi/schema-tools@v0.5.1...v0.6.0

v0.5.1

What's Changed

New Contributors

Full Changelog: pulumi/schema-tools@v0.5.0...v0.5.1

v0.5.0

No release notes provided.

v0.4.0

What's Changed

New Contributors

Full Changelog: pulumi/schema-tools@v0.3.0...v0.4.0

v0.3.0

No release notes provided.

v0.2.2

No release notes provided.

v0.2.1

No release notes provided.

v0.2.0

No release notes provided.

v0.1.3

No release notes provided.

Commits
  • fcab997 Warn on breaking function signatures (#49)
  • f5d7b04 Fix breaking changes count (#48)
  • 4416eea Add missing severity levels (#45)
  • c59b585 Merge pull request #47 from pulumi/friel/license
  • 9faefcb Add Apache-2 license file
  • c7ca835 Update to support providers in various git repository locations (#43)
  • 9459e0b Merge pull request #44 from pulumi/mikhailshilkov/squeeze-order
  • 85bb12e Order API versions in squeeze to prefer stable over preview
  • ab46109 Bump github.com/cloudflare/circl from 1.1.0 to 1.3.3 (#39)
  • 6778829 Add rich text output (#41)
  • Additional commits viewable in compare view

Updates google.golang.org/api from 0.203.0 to 0.204.0

Release notes

Sourced from google.golang.org/api's releases.

v0.204.0

0.204.0 (2024-10-31)

Features

Bug Fixes

  • transport/grpc: Pass through cert source to new auth lib (#2840) (c67e7c0)

Documentation

Changelog

Sourced from google.golang.org/api's changelog.

0.204.0 (2024-10-31)

Features

Bug Fixes

  • transport/grpc: Pass through cert source to new auth lib (#2840) (c67e7c0)

Documentation

Commits

Bumps the minor-and-patch group in /provider with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/auth](https://github.com/googleapis/google-cloud-go) | `0.9.9` | `0.10.0` |
| [cloud.google.com/go/auth/oauth2adapt](https://github.com/googleapis/google-cloud-go) | `0.2.4` | `0.2.5` |
| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.45.0` | `1.46.0` |
| [github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go) | `1.24.3` | `1.25.0` |
| [github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go) | `0.48.3` | `0.49.0` |
| [github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go) | `0.48.3` | `0.49.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.2` | `1.32.3` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.28.0` | `1.28.1` |
| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.2` | `1.37.3` |
| [github.com/charmbracelet/x/ansi](https://github.com/charmbracelet/x) | `0.4.0` | `0.4.2` |
| [github.com/hashicorp/terraform-json](https://github.com/hashicorp/terraform-json) | `0.22.1` | `0.23.0` |
| [github.com/hashicorp/terraform-plugin-go](https://github.com/hashicorp/terraform-plugin-go) | `0.24.0` | `0.25.0` |
| [github.com/pulumi/schema-tools](https://github.com/pulumi/schema-tools) | `0.1.2` | `0.6.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.203.0` | `0.204.0` |
| [google.golang.org/genproto](https://github.com/googleapis/go-genproto) | `0.0.0-20241015192408-796eee8c2d53` | `0.0.0-20241021214115-324edc3d5d38` |
| [google.golang.org/genproto/googleapis/api](https://github.com/googleapis/go-genproto) | `0.0.0-20241007155032-5fefd90f89a9` | `0.0.0-20241015192408-796eee8c2d53` |
| [google.golang.org/genproto/googleapis/rpc](https://github.com/googleapis/go-genproto) | `0.0.0-20241015192408-796eee8c2d53` | `0.0.0-20241021214115-324edc3d5d38` |


Updates `cloud.google.com/go/auth` from 0.9.9 to 0.10.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.9.9...v0.10.0)

Updates `cloud.google.com/go/auth/oauth2adapt` from 0.2.4 to 0.2.5
- [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.4...netapp/v0.2.5)

Updates `cloud.google.com/go/storage` from 1.45.0 to 1.46.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@pubsub/v1.45.0...spanner/v1.46.0)

Updates `github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp` from 1.24.3 to 1.25.0
- [Release notes](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/releases)
- [Commits](GoogleCloudPlatform/opentelemetry-operations-go@detectors/gcp/v1.24.3...detectors/gcp/v1.25.0)

Updates `github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric` from 0.48.3 to 0.49.0
- [Release notes](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/releases)
- [Commits](GoogleCloudPlatform/opentelemetry-operations-go@v0.48.3...v0.49.0)

Updates `github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping` from 0.48.3 to 0.49.0
- [Release notes](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/releases)
- [Commits](GoogleCloudPlatform/opentelemetry-operations-go@v0.48.3...v0.49.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.32.2 to 1.32.3
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.32.2...v1.32.3)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.28.0 to 1.28.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.28.0...config/v1.28.1)

Updates `github.com/aws/aws-sdk-go-v2/service/kms` from 1.37.2 to 1.37.3
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ssm/v1.37.2...service/kms/v1.37.3)

Updates `github.com/charmbracelet/x/ansi` from 0.4.0 to 0.4.2
- [Release notes](https://github.com/charmbracelet/x/releases)
- [Commits](charmbracelet/x@ansi/v0.4.0...ansi/v0.4.2)

Updates `github.com/hashicorp/terraform-json` from 0.22.1 to 0.23.0
- [Release notes](https://github.com/hashicorp/terraform-json/releases)
- [Commits](hashicorp/terraform-json@v0.22.1...v0.23.0)

Updates `github.com/hashicorp/terraform-plugin-go` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-go/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-go/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-go@v0.24.0...v0.25.0)

Updates `github.com/pulumi/schema-tools` from 0.1.2 to 0.6.0
- [Release notes](https://github.com/pulumi/schema-tools/releases)
- [Changelog](https://github.com/pulumi/schema-tools/blob/master/.goreleaser.yml)
- [Commits](pulumi/schema-tools@v0.1.2...v0.6.0)

Updates `google.golang.org/api` from 0.203.0 to 0.204.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.203.0...v0.204.0)

Updates `google.golang.org/genproto` from 0.0.0-20241015192408-796eee8c2d53 to 0.0.0-20241021214115-324edc3d5d38
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20241007155032-5fefd90f89a9 to 0.0.0-20241015192408-796eee8c2d53
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20241015192408-796eee8c2d53 to 0.0.0-20241021214115-324edc3d5d38
- [Commits](https://github.com/googleapis/go-genproto/commits)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/auth
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: cloud.google.com/go/auth/oauth2adapt
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: cloud.google.com/go/storage
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/service/kms
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/charmbracelet/x/ansi
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/hashicorp/terraform-json
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/hashicorp/terraform-plugin-go
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/pulumi/schema-tools
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: google.golang.org/api
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: google.golang.org/genproto
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 4, 2024
@belfhi belfhi merged commit 23ad6f6 into main Nov 4, 2024
1 check passed
@dependabot dependabot bot deleted the dependabot/go_modules/provider/minor-and-patch-5caf35f8fa branch November 4, 2024 09:37
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.

1 participant