vatesfr / pulumi-xenorchestra

A Pulumi provider for Xen Orchestra
Apache License 2.0
1 stars 0 forks source link

Bump the minor-and-patch group in /provider with 4 updates #124

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the minor-and-patch group in /provider with 4 updates: cloud.google.com/go/auth, github.com/aws/aws-sdk-go, github.com/pulumi/schema-tools and google.golang.org/api.

Updates cloud.google.com/go/auth from 0.3.0 to 0.4.0

Release notes

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

auth: v0.4.0

0.4.0 (2024-05-07)

Features

Bug Fixes

grafeas: v0.3.6

0.3.6 (2024-05-01)

Bug Fixes

  • grafeas: Bump x/net to v0.24.0 (ba31ed5)
Changelog

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

v0.4.0

  • bigquery: -NewGCSReference is now a function, not a method on Client.
    • Table.LoaderFrom now accepts a ReaderSource, enabling loading data into a table from a file or any io.Reader.
    • Client.Table and Client.OpenTable have been removed. Replace

      client.OpenTable("project", "dataset", "table")
      

      with

      client.DatasetInProject("project", "dataset").Table("table")
      
    • Client.CreateTable has been removed. Replace

      client.CreateTable(ctx, "project", "dataset", "table")
      

      with

      client.DatasetInProject("project", "dataset").Table("table").Create(ctx)
      
    • Dataset.ListTables have been replaced with Dataset.Tables. Replace

      tables, err := ds.ListTables(ctx)
      

      with

      it := ds.Tables(ctx)
      for {
          table, err := it.Next()
          if err == iterator.Done {
              break
          }
          if err != nil {
              // TODO: Handle error.
          }
          // TODO: use table.
      }
      
    • Client.Read has been replaced with Job.Read, Table.Read and Query.Read. Replace

      it, err := client.Read(ctx, job)
      

... (truncated)

Commits
  • 8c2dc61 logging: check for exact # of logs in tests
  • 4791784 logadmin: use generated iterators
  • 384ca55 storage: use pointer receiver for ObjectAttrs
  • bd8a5e8 datastore: add new key functions
  • 09d95d9 bigtable/bttest: add emulator support for DeleteCellsInFamily
  • 7ee19e7 bigquery: restore semantics of ForceZeroQuote
  • f7f94a2 bigquery: clean up implementation of LoadSource
  • f9c9ec4 storage: always send destination in compose request
  • 67f57c5 storage: readObject method for tests
  • 28994ff bigtable: Use connection pool by default for data client.
  • Additional commits viewable in compare view


Updates github.com/aws/aws-sdk-go from 1.52.3 to 1.52.4

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.52.4 (2024-05-07)

Service Client Updates

  • service/b2bi: Updates service documentation
  • service/budgets: Updates service API and documentation
    • This release adds tag support for budgets and budget actions.
  • service/resiliencehub: Updates service API, documentation, and paginators
  • service/route53profiles: Updates service API and documentation
Commits


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: https://github.com/pulumi/schema-tools/compare/v0.5.1...v0.6.0

v0.5.1

What's Changed

New Contributors

Full Changelog: https://github.com/pulumi/schema-tools/compare/v0.5.0...v0.5.1

v0.5.0

No release notes provided.

v0.4.0

What's Changed

New Contributors

Full Changelog: https://github.com/pulumi/schema-tools/compare/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.177.0 to 0.178.0

Release notes

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

v0.178.0

0.178.0 (2024-05-07)

Features

Documentation

Changelog

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

0.178.0 (2024-05-07)

Features

Documentation

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 1 month ago

Looks like these dependencies are updatable in another way, so this is no longer needed.