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 across 1 directory with 8 updates #151

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

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

Package From To
cloud.google.com/go/auth 0.4.2 0.5.0
github.com/aws/aws-sdk-go 1.53.10 1.53.12
github.com/charmbracelet/x/ansi 0.1.1 0.1.2
github.com/charmbracelet/x/input 0.1.0 0.1.1
github.com/hashicorp/go-retryablehttp 0.7.6 0.7.7
google.golang.org/api 0.181.0 0.182.0

Updates cloud.google.com/go/auth from 0.4.2 to 0.5.0

Release notes

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

ai: v0.5.0

0.5.0 (2024-05-09)

Features

  • ai/generativelanguage: Add FileState to File (3e25053)

auth: v0.5.0

0.5.0 (2024-05-28)

Features

  • auth: Adds X509 workload certificate provider (#10233) (17a9db7)
Changelog

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

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
        }
      }
      
      See the announcement for more details.
    • Contexts no longer hold namespaces; instead you must set a key's namespace explicitly. Also, key functions have been changed and renamed.
    • The WithNamespace function has been removed. To specify a namespace in a Query, use the Query.Namespace method:
      q := datastore.NewQuery("Kind").Namespace("ns")
      
    • All the fields of Key are exported. That means you can construct any Key with a struct literal:
      k := &Key{Kind: "Kind",  ID: 37, Namespace: "ns"}
      
    • As a result of the above, the Key methods Kind, ID, d.Name, Parent, SetParent and Namespace have been removed.
    • NewIncompleteKey has been removed, replaced by IncompleteKey. Replace
      NewIncompleteKey(ctx, kind, parent)
      
      with
      IncompleteKey(kind, parent)
      
      and if you do use namespaces, make sure you set the namespace on the returned key.
    • NewKey has been removed, replaced by NameKey and IDKey. Replace
      NewKey(ctx, kind, name, 0, parent)
      NewKey(ctx, kind, "", id, parent)
      
      with
      NameKey(kind, name, parent)
      

... (truncated)

Commits
  • 7959a9f bigquery: support struct field parameters
  • a64eb5d bigquery: support array query parameters
  • 2861f2e bigquery: support scalar query parameters
  • a2e776e civil: civil time types
  • 918f8d5 fields: test that a tagged field takes precedence
  • e86221f bigtable/bttest: RowKeyFilter support in emulator.
  • 648bc87 bigquery: support BYTES data type
  • 7bb67ec bigtable/bttest: TimestampRangeFilter improvements
  • 8b767ae fields: simplify dominantField
  • 8ee8376 fields: add Match optimizations
  • Additional commits viewable in compare view


Updates github.com/aws/aws-sdk-go from 1.53.10 to 1.53.12

Release notes

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

Release v1.53.12 (2024-05-29)

Service Client Updates

  • service/athena: Updates service API and documentation
    • Throwing validation errors on CreateNotebook with Name containing /,:,\
  • service/codebuild: Updates service API and documentation
    • AWS CodeBuild now supports manually creating GitHub webhooks
  • service/connect: Updates service API and documentation
  • service/glue: Updates service API and documentation
    • Add optional field JobMode to CreateJob and UpdateJob APIs.
  • service/securityhub: Updates service API

Release v1.53.11 (2024-05-28)

Service Client Updates

  • service/dynamodb: Updates service API, documentation, waiters, paginators, and examples
    • Doc-only update for DynamoDB. Specified the IAM actions needed to authorize a user to create a table with a resource-based policy.
  • service/ec2: Updates service API and documentation
    • Providing support to accept BgpAsnExtended attribute
  • service/kafka: Updates service API and documentation
  • service/swf: Updates service API and documentation
    • This release adds new APIs for deleting activity type and workflow type resources.
Commits


Updates github.com/charmbracelet/x/ansi from 0.1.1 to 0.1.2

Commits
  • 6f71142 feat(ansi): add NoConceal style attr
  • 77596eb docs(readme): minor copyedit
  • ff83003 feat(ansi): add last csi seq test
  • 68b3840 docs(readme): fix GoDocs links
  • 54e9144 docs(readme): add links to GoDocs, per-package
  • 75cd6ff chore(ci): enable gofumpt
  • 23081fb feat(teatest): use escape golden model diff
  • 74800c0 feat(golden): escape sequences
  • 394a367 chore(deps): bump github.com/charmbracelet/x/input in /term
  • 47cd60e fix(input): multiple window-size-events
  • Additional commits viewable in compare view


Updates github.com/charmbracelet/x/input from 0.1.0 to 0.1.1

Commits
  • fb066ab fix(ansi): return opaque colors
  • 0126bdc feat: adds getter for program field in TestModel (#54)
  • 36f8ff3 ci: generate windows syscalls
  • 0343bf5 fix(ci): windows generate ci
  • e4dc77a feat(ci): generate windows api on push
  • 3624ce5 fix(windows): GetKeyboardLayout/ToUnicodeEx don't return errors
  • ac1a4af chore(deps): bump github.com/charmbracelet/x/term in /xpty
  • e66de7a fix(term): a file can read/write/close
  • 599eee7 fix(ci): run termios-goos on push to main
  • e48c874 chore: go mod tidy
  • Additional commits viewable in compare view


Updates github.com/charmbracelet/x/windows from 0.1.0 to 0.1.2

Commits
  • 6f71142 feat(ansi): add NoConceal style attr
  • 77596eb docs(readme): minor copyedit
  • ff83003 feat(ansi): add last csi seq test
  • 68b3840 docs(readme): fix GoDocs links
  • 54e9144 docs(readme): add links to GoDocs, per-package
  • 75cd6ff chore(ci): enable gofumpt
  • 23081fb feat(teatest): use escape golden model diff
  • 74800c0 feat(golden): escape sequences
  • 394a367 chore(deps): bump github.com/charmbracelet/x/input in /term
  • 47cd60e fix(input): multiple window-size-events
  • Additional commits viewable in compare view


Updates github.com/hashicorp/go-retryablehttp from 0.7.6 to 0.7.7

Changelog

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

0.7.7 (May 30, 2024)

BUG FIXES:

  • client: avoid potentially leaking URL-embedded basic authentication credentials in logs (#158)
Commits
  • 1542b31 v0.7.7
  • defb9f4 v0.7.7
  • a99f07b Merge pull request #158 from dany74q/danny/redacted-url-in-logs
  • 8a28c57 Merge branch 'main' into danny/redacted-url-in-logs
  • 86e852d Merge pull request #227 from hashicorp/dependabot/github_actions/actions/chec...
  • 47fe99e Bump actions/checkout from 4.1.5 to 4.1.6
  • 490fc06 Merge pull request #226 from testwill/ioutil
  • f3e9417 chore: remove refs to deprecated io/ioutil
  • See full diff in compare view


Updates google.golang.org/api from 0.181.0 to 0.182.0

Release notes

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

v0.182.0

0.182.0 (2024-05-28)

Features

Changelog

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

0.182.0 (2024-05-28)

Features

Commits


Updates google.golang.org/genproto/googleapis/rpc from 0.0.0-20240520151616-dc85e6b867a5 to 0.0.0-20240521202816-d264139d666e

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.