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 across 1 directory with 36 updates #223

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 22, 2024

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

Package From To
cloud.google.com/go 0.115.0 0.115.1
cloud.google.com/go/auth 0.8.0 0.9.0
cloud.google.com/go/iam 1.1.13 1.2.0
cloud.google.com/go/kms 1.18.5 1.19.0
cloud.google.com/go/longrunning 0.5.12 0.6.0
dario.cat/mergo 1.0.0 1.0.1
github.com/aws/aws-sdk-go-v2 1.30.3 1.30.4
github.com/aws/aws-sdk-go-v2/config 1.27.27 1.27.28
github.com/aws/aws-sdk-go-v2/service/kms 1.35.3 1.35.4
github.com/charmbracelet/bubbles 0.18.0 0.19.0
github.com/charmbracelet/lipgloss 0.12.1 0.13.0
github.com/charmbracelet/x/ansi 0.1.4 0.2.3
github.com/charmbracelet/x/input 0.1.3 0.2.0
github.com/charmbracelet/x/term 0.1.1 0.2.0
github.com/cloudflare/circl 1.3.9 1.4.0
github.com/hashicorp/go-getter 1.7.5 1.7.6
github.com/pulumi/schema-tools 0.1.2 0.6.0
gocloud.dev 0.38.0 0.39.0
gocloud.dev/secrets/hashivault 0.38.0 0.39.0

Updates cloud.google.com/go from 0.115.0 to 0.115.1

Changelog

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

0.115.1 (2024-08-13)

Bug Fixes

Commits
  • 8c009ad chore(main): release 0.115.1 (#10531)
  • 578ce14 docs(batch): Batch CentOS images and HPC CentOS images are EOS (#10680)
  • 598b31d chore(github): pin staticcheck in vet.yml to v0.4.7 (#10681)
  • fab520d fix(bigtable): Use new auth library (#10670)
  • 6593c0d feat(spanner/admin/database): Add resource reference annotation to backup sch...
  • 99322dd chore(main): release auth 0.8.1 (#10676)
  • 60ad7f3 fix(bigquery): processStream check ctx done when queuing non retryable err (#...
  • 1afb9ee fix(auth): make default client creation more lenient (#10669)
  • 2ca6e9d refactor(bigquery): single ctx usage with storage read (#10673)
  • ab9a961 fix(bigquery): remove retry on FailedPrecondition (#10671)
  • Additional commits viewable in compare view

Updates cloud.google.com/go/auth from 0.8.0 to 0.9.0

Release notes

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

dataqna: v0.9.0

0.9.0 (2024-08-20)

Features

  • dataqna: Add support for Go 1.23 iterators (84461c0)

gkeconnect: v0.9.0

0.9.0 (2024-08-20)

Features

  • gkeconnect: Add support for Go 1.23 iterators (84461c0)

mediatranslation: v0.9.0

0.9.0 (2024-08-20)

Features

  • mediatranslation: Add support for Go 1.23 iterators (84461c0)

phishingprotection: v0.9.0

0.9.0 (2024-08-20)

Features

  • phishingprotection: Add support for Go 1.23 iterators (84461c0)

recommendationengine: v0.9.0

0.9.0 (2024-08-20)

Features

  • recommendationengine: Add support for Go 1.23 iterators (84461c0)

shopping: v0.9.0

0.9.0 (2024-08-20)

Features

  • shopping: Add support for Go 1.23 iterators (84461c0)
Changelog

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

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

    conn, err := grpc.Dial(srv.Addr, grpc.WithUnaryInterceptor(tc.GRPCClientInterceptor()))
    
  • trace: We removed the deprecated trace.EnableGRPCTracing. Use the gRPC interceptor as a dial option as shown below when initializing Cloud package clients:

    c, err := pubsub.NewClient(ctx, "project-id", option.WithGRPCDialOption(grpc.WithUnaryInterceptor(tc.GRPCClientInterceptor())))
    if err != nil {
        ...
    

... (truncated)

Commits
  • d4f8670 BREAKING: all: regenerate toolkit client
  • 23179f2 readme: document Trace and Error Reporting clients
  • c2e00bb trace: switch to grpc-trace-bin for gRPC calls
  • 1de0ed4 rpcreplay: Fprintf functions
  • 8878988 bigtable/bttest: Return proper error code when entity already exists
  • e432073 bigtable: Don't retry on INTERNAL errors.
  • 84bf648 rpcreplay: responses to code review comments from previous CL
  • e687f27 rpcreplay: replay of unary RPCs
  • 9da216d spanner: more integration tests
  • a089e75 logging: document that Close flushes the loggers
  • Additional commits viewable in compare view

Updates cloud.google.com/go/iam from 1.1.13 to 1.2.0

Release notes

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

edgenetwork: v1.2.0

1.2.0 (2024-08-20)

Features

  • edgenetwork: Add support for Go 1.23 iterators (84461c0)

iam: v1.2.0

1.2.0 (2024-08-20)

Features

  • iam: Add support for Go 1.23 iterators (84461c0)

securesourcemanager: v1.2.0

1.2.0 (2024-08-20)

Features

  • securesourcemanager: Add support for Go 1.23 iterators (84461c0)
Changelog

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

1.2.0 (2022-02-11)

Features

  • documentai: add file for tracking version (17b36ea)
  • documentai: add question_id field in ReviewDocumentOperationMetadata (2fae584)

1.1.0 (2022-02-03)

Features

  • documentai: add question_id field in ReviewDocumentOperationMetadata (6e56077)

1.0.1 (2022-01-13)

Bug Fixes

  • documentai: add ancillary service bindings to service_yaml (3bbe8c0)

1.0.0

Stabilize GA surface.

v0.1.0

This is the first tag to carve out documentai as its own module. See Add a module to a multi-module repository.

Commits

Updates cloud.google.com/go/kms from 1.18.5 to 1.19.0

Release notes

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

functions: v1.19.0

1.19.0 (2024-08-20)

Features

  • functions: Add support for Go 1.23 iterators (84461c0)

kms: v1.19.0

1.19.0 (2024-08-20)

Features

  • kms: Add support for Go 1.23 iterators (84461c0)
Changelog

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

1.19.0 (2023-05-30)

Features

  • documentai: Update all direct dependencies (b340d03)

1.18.1 (2023-05-08)

Bug Fixes

  • documentai: Update grpc to v1.55.0 (1147ce0)

1.18.0 (2023-03-22)

Features

  • documentai: Add ImportProcessorVersion in v1beta3 (c967961)

1.17.0 (2023-03-15)

Features

  • documentai: Added hints.language_hints field in OcrConfig (#7522) (b2c40c3)

1.16.0 (2023-02-22)

Features

1.15.0 (2023-02-14)

⚠ BREAKING CHANGES

  • documentai: The TrainProcessorVersion parent was incorrectly annotated.

Features

  • documentai: Add REST client (06a54a1)
  • documentai: Added advanced_ocr_options field in OcrConfig (45c70e3)
  • documentai: Added EvaluationReference to evaluation.proto (#7290) (4623db8)
  • documentai: Added field_mask field in DocumentOutputConfig.GcsOutputConfig in document_io.proto (2a0b1ae)
  • documentai: Added font_family to document.proto feat: added ImageQualityScores message to document.proto feat: added PropertyMetadata and EntityTypeMetadata to document_schema.proto (9c5d6c8)
  • documentai: Added TrainProcessorVersion, EvaluateProcessorVersion, GetEvaluation, and ListEvaluations v1beta3 APIs feat: added evaluation.proto feat: added document_schema field in ProcessorVersion processor.proto feat: added image_quality_scores field in Document.Page in document.proto feat: added font_family field in Document.Style in document.proto (ac0c5c2)

... (truncated)

Commits

Updates cloud.google.com/go/longrunning from 0.5.12 to 0.6.0

Release notes

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

longrunning: v0.6.0

0.6.0 (2024-08-20)

Features

  • longrunning: Add support for Go 1.23 iterators (84461c0)

parallelstore: v0.6.0

0.6.0 (2024-08-20)

Features

  • parallelstore: Add support for Go 1.23 iterators (84461c0)
Changelog

Sourced from cloud.google.com/go/longrunning'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 dario.cat/mergo from 1.0.0 to 1.0.1

Release notes

Sourced from dario.cat/mergo's releases.

v1.0.1

What's Changed

New Contributors

Full Changelog: darccio/mergo@v1.0.0...v1.0.1

Commits

Updates github.com/aws/aws-sdk-go-v2 from 1.30.3 to 1.30.4

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.27.27 to 1.27.28

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.17.27 to 1.17.28

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/ec2/imds from 1.16.11 to 1.16.12

Commits

Updates github.com/aws/aws-sdk-go-v2/internal/configsources from 1.3.15 to 1.3.16

Commits

Updates github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 from 2.6.15 to 2.6.16

Commits

Updates github.com/aws/aws-sdk-go-v2/internal/ini from 1.8.0 to 1.8.1

Changelog

Sourced from github.com/aws/aws-sdk-go-v2/internal/ini's changelog.

Release (2021-08-19)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/apigateway: v1.6.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/apigatewayv2: v1.5.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/appflow: v1.6.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/applicationautoscaling: v1.5.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/cloud9: v1.6.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/clouddirectory: v1.4.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs: v1.6.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/codebuild: v1.8.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/configservice: v1.7.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/costexplorer: v1.8.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/customerprofiles: v1.8.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/databrew: v1.8.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/directoryservice: v1.4.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.14.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/elasticache: v1.9.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/emr: v1.6.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/iotsitewise: v1.10.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/lambda: v1.7.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/licensemanager: v1.6.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/memorydb: v1.0.0
    • Release: New AWS service client module
  • github.com/aws/aws-sdk-go-v2/service/quicksight: v1.8.0
    • Feature: API client updated
  • github.com/aws/aws-sdk-go-v2/service/route53: v1.10.0
    • Feature: API client updated

... (truncated)

Commits

Updates github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding from 1.11.3 to 1.11.4

Commits
  • 6911981 Release 2022-04-25
  • 1bd13c6 Regenerated Clients
  • 82cbcb0 Update API model
  • b0a3c24 Adds Policy and Duration parameters to stscreds.WebIdentityRoleOptions ...
  • da333d3 internal/sync/singleflight: Update version of singleflight (#1679)
  • 7065f83 Add make command for listing the SDK's complete set of Go dependencies (#1677)
  • d27c530 Release 2022-04-22
  • 67f8605 Regenerated Clients
  • 4e2def0 Update API model
  • aa725de Update smithy-go to smithy 1.21.0 (#1615)
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/service/internal/presigned-url from 1.11.17 to 1.11.18

Commits

Updates github.com/aws/aws-sdk-go-v2/service/kms from 1.35.3 to 1.35.4

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sso from 1.22.4 to 1.22.5

Commits
  • f2706c8 Release 2023-12-08
  • 1dac0c9 Regenerated Clients
  • cbd9216 Update API model
  • c7357bb fix: reinstate presence of retryer when functional opts run but still respect...
  • c5c34b3 fix: translation of ini service sections into shared config (#2416)
  • b3c7fbf update express cache key (#2414)
  • 9b90af4 fix: add non-vhostable buckets to path when using legacy endpoint resolver (#...
  • See full diff in compare view

Updates github.com/aws/aws-sdk-go-v2/service/ssooidc from 1.26.4 to 1.26.5

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sts from 1.30.3 to 1.30.4

Commits

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

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go](https://github.com/googleapis/google-cloud-go) | `0.115.0` | `0.115.1` |
| [cloud.google.com/go/auth](https://github.com/googleapis/google-cloud-go) | `0.8.0` | `0.9.0` |
| [cloud.google.com/go/iam](https://github.com/googleapis/google-cloud-go) | `1.1.13` | `1.2.0` |
| [cloud.google.com/go/kms](https://github.com/googleapis/google-cloud-go) | `1.18.5` | `1.19.0` |
| [cloud.google.com/go/longrunning](https://github.com/googleapis/google-cloud-go) | `0.5.12` | `0.6.0` |
| [dario.cat/mergo](https://github.com/imdario/mergo) | `1.0.0` | `1.0.1` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.3` | `1.30.4` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.27.27` | `1.27.28` |
| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.35.3` | `1.35.4` |
| [github.com/charmbracelet/bubbles](https://github.com/charmbracelet/bubbles) | `0.18.0` | `0.19.0` |
| [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) | `0.12.1` | `0.13.0` |
| [github.com/charmbracelet/x/ansi](https://github.com/charmbracelet/x) | `0.1.4` | `0.2.3` |
| [github.com/charmbracelet/x/input](https://github.com/charmbracelet/x) | `0.1.3` | `0.2.0` |
| [github.com/charmbracelet/x/term](https://github.com/charmbracelet/x) | `0.1.1` | `0.2.0` |
| [github.com/cloudflare/circl](https://github.com/cloudflare/circl) | `1.3.9` | `1.4.0` |
| [github.com/hashicorp/go-getter](https://github.com/hashicorp/go-getter) | `1.7.5` | `1.7.6` |
| [github.com/pulumi/schema-tools](https://github.com/pulumi/schema-tools) | `0.1.2` | `0.6.0` |
| [gocloud.dev](https://github.com/google/go-cloud) | `0.38.0` | `0.39.0` |
| [gocloud.dev/secrets/hashivault](https://github.com/google/go-cloud) | `0.38.0` | `0.39.0` |



Updates `cloud.google.com/go` from 0.115.0 to 0.115.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@v0.115.0...v0.115.1)

Updates `cloud.google.com/go/auth` from 0.8.0 to 0.9.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.8.0...v0.9.0)

Updates `cloud.google.com/go/iam` from 1.1.13 to 1.2.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md)
- [Commits](googleapis/google-cloud-go@iam/v1.1.13...iot/v1.2.0)

Updates `cloud.google.com/go/kms` from 1.18.5 to 1.19.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md)
- [Commits](googleapis/google-cloud-go@kms/v1.18.5...kms/v1.19.0)

Updates `cloud.google.com/go/longrunning` from 0.5.12 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@longrunning/v0.5.12...v0.6.0)

Updates `dario.cat/mergo` from 1.0.0 to 1.0.1
- [Release notes](https://github.com/imdario/mergo/releases)
- [Commits](darccio/mergo@v1.0.0...v1.0.1)

Updates `github.com/aws/aws-sdk-go-v2` from 1.30.3 to 1.30.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.30.3...v1.30.4)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.27 to 1.27.28
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.27.27...config/v1.27.28)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.27 to 1.17.28
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.27...credentials/v1.17.28)

Updates `github.com/aws/aws-sdk-go-v2/feature/ec2/imds` from 1.16.11 to 1.16.12
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.16.11...v1.16.12)

Updates `github.com/aws/aws-sdk-go-v2/internal/configsources` from 1.3.15 to 1.3.16
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@internal/ini/v1.3.15...internal/ini/v1.3.16)

Updates `github.com/aws/aws-sdk-go-v2/internal/endpoints/v2` from 2.6.15 to 2.6.16
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@internal/endpoints/v2.6.15...internal/endpoints/v2.6.16)

Updates `github.com/aws/aws-sdk-go-v2/internal/ini` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/v1.8.1/CHANGELOG.md)
- [Commits](aws/aws-sdk-go-v2@v1.8.0...v1.8.1)

Updates `github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding` from 1.11.3 to 1.11.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/oam/v1.11.3...service/dax/v1.11.4)

Updates `github.com/aws/aws-sdk-go-v2/service/internal/presigned-url` from 1.11.17 to 1.11.18
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/dax/v1.11.17...service/dax/v1.11.18)

Updates `github.com/aws/aws-sdk-go-v2/service/kms` from 1.35.3 to 1.35.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ivs/v1.35.3...service/kms/v1.35.4)

Updates `github.com/aws/aws-sdk-go-v2/service/sso` from 1.22.4 to 1.22.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/pi/v1.22.4...service/pi/v1.22.5)

Updates `github.com/aws/aws-sdk-go-v2/service/ssooidc` from 1.26.4 to 1.26.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.26.4...config/v1.26.5)

Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.30.3 to 1.30.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.30.3...v1.30.4)

Updates `github.com/aws/smithy-go` from 1.20.3 to 1.20.4
- [Release notes](https://github.com/aws/smithy-go/releases)
- [Changelog](https://github.com/aws/smithy-go/blob/main/CHANGELOG.md)
- [Commits](aws/smithy-go@v1.20.3...v1.20.4)

Updates `github.com/charmbracelet/bubbles` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/charmbracelet/bubbles/releases)
- [Changelog](https://github.com/charmbracelet/bubbles/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/bubbles@v0.18.0...v0.19.0)

Updates `github.com/charmbracelet/bubbletea` from 0.26.6 to 0.27.0
- [Release notes](https://github.com/charmbracelet/bubbletea/releases)
- [Changelog](https://github.com/charmbracelet/bubbletea/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/bubbletea@v0.26.6...v0.27.0)

Updates `github.com/charmbracelet/lipgloss` from 0.12.1 to 0.13.0
- [Release notes](https://github.com/charmbracelet/lipgloss/releases)
- [Changelog](https://github.com/charmbracelet/lipgloss/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/lipgloss@v0.12.1...v0.13.0)

Updates `github.com/charmbracelet/x/ansi` from 0.1.4 to 0.2.3
- [Release notes](https://github.com/charmbracelet/x/releases)
- [Commits](charmbracelet/x@ansi/v0.1.4...ansi/v0.2.3)

Updates `github.com/charmbracelet/x/input` from 0.1.3 to 0.2.0
- [Release notes](https://github.com/charmbracelet/x/releases)
- [Commits](charmbracelet/x@ansi/v0.1.3...ansi/v0.2.0)

Updates `github.com/charmbracelet/x/term` from 0.1.1 to 0.2.0
- [Release notes](https://github.com/charmbracelet/x/releases)
- [Commits](charmbracelet/x@ansi/v0.1.1...ansi/v0.2.0)

Updates `github.com/cloudflare/circl` from 1.3.9 to 1.4.0
- [Release notes](https://github.com/cloudflare/circl/releases)
- [Commits](cloudflare/circl@v1.3.9...v1.4.0)

Updates `github.com/hashicorp/go-getter` from 1.7.5 to 1.7.6
- [Release notes](https://github.com/hashicorp/go-getter/releases)
- [Changelog](https://github.com/hashicorp/go-getter/blob/main/.goreleaser.yml)
- [Commits](hashicorp/go-getter@v1.7.5...v1.7.6)

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 `gocloud.dev` from 0.38.0 to 0.39.0
- [Release notes](https://github.com/google/go-cloud/releases)
- [Commits](google/go-cloud@v0.38.0...v0.39.0)

Updates `gocloud.dev/secrets/hashivault` from 0.38.0 to 0.39.0
- [Release notes](https://github.com/google/go-cloud/releases)
- [Commits](google/go-cloud@v0.38.0...v0.39.0)

Updates `golang.org/x/xerrors` from 0.0.0-20231012003039-104605ab7028 to 0.0.0-20240716161551-93cc26a95ae9
- [Commits](https://github.com/golang/xerrors/commits)

Updates `google.golang.org/api` from 0.191.0 to 0.193.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.191.0...v0.193.0)

Updates `google.golang.org/genproto` from 0.0.0-20240730163845-b1a4ccb954bf to 0.0.0-20240814211410-ddb44dafa142
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20240725223205-93522f1f2a9f to 0.0.0-20240814211410-ddb44dafa142
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20240730163845-b1a4ccb954bf to 0.0.0-20240814211410-ddb44dafa142
- [Commits](https://github.com/googleapis/go-genproto/commits)

---
updated-dependencies:
- dependency-name: cloud.google.com/go
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- 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/iam
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: cloud.google.com/go/kms
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: cloud.google.com/go/longrunning
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: dario.cat/mergo
  dependency-type: indirect
  update-type: version-update:semver-patch
  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/credentials
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/ec2/imds
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/internal/configsources
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/internal/endpoints/v2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/internal/ini
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/service/internal/presigned-url
  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/aws/aws-sdk-go-v2/service/sso
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ssooidc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sts
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/smithy-go
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/charmbracelet/bubbles
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/charmbracelet/bubbletea
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/charmbracelet/lipgloss
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/charmbracelet/x/ansi
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/charmbracelet/x/input
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/charmbracelet/x/term
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/cloudflare/circl
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/hashicorp/go-getter
  dependency-type: indirect
  update-type: version-update:semver-patch
  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: gocloud.dev
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: gocloud.dev/secrets/hashivault
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: golang.org/x/xerrors
  dependency-type: indirect
  update-type: version-update:semver-patch
  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 Aug 22, 2024
@belfhi belfhi merged commit 34ed6d1 into main Aug 22, 2024
1 check passed
@dependabot dependabot bot deleted the dependabot/go_modules/provider/minor-and-patch-7564ea0087 branch August 22, 2024 06:34
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