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 cloud-go group across 1 directory with 8 updates #1796

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 29, 2024

Bumps the cloud-go group with 2 updates in the / directory: cloud.google.com/go/compute/metadata and cloud.google.com/go/kms.

Updates cloud.google.com/go/compute/metadata from 0.3.0 to 0.5.0

Release notes

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

parallelstore: v0.4.1

0.4.1 (2024-07-24)

Bug Fixes

  • parallelstore: Update dependencies (257c40b)

grafeas: v0.3.9

0.3.9 (2024-07-24)

Bug Fixes

  • grafeas: Update dependencies (257c40b)
Changelog

Sourced from cloud.google.com/go/compute/metadata'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 cloud.google.com/go/kms from 1.17.1 to 1.18.4

Release notes

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

kms: v1.18.4

1.18.4 (2024-07-24)

Bug Fixes

  • kms: Update dependencies (257c40b)

retail: v1.17.4

1.17.4 (2024-07-24)

Bug Fixes

  • retail: Update dependencies (257c40b)

security: v1.17.4

1.17.4 (2024-07-24)

Bug Fixes

  • security: Update dependencies (257c40b)
Commits

Updates cloud.google.com/go/resourcemanager from 1.9.7 to 1.9.9

Commits
  • dbd3f0a chore: release main (#10490)
  • 74b07fd chore: run goimports (#10534)
  • 3b9a830 feat(compute/metadata): add sys check for windows OnGCE (#10521)
  • f4cc536 feat(containeranalysis): add GetVulnerabilityOccurrencesSummary RPC (#10533)
  • 8ecc4e9 chore: bump deps (#10529)
  • 11d7272 chore(privilegedaccessmanager): add config to generate apiv1 (#10530)
  • 9e5707a chore(main): release auth/oauth2adapt 0.2.3 (#10523)
  • c3e2618 chore(storage): remove x-goog-api-client header merging from invoke (#10514)
  • fd16a17 feat(bigtable): add column family type to FamilyInfo in TableInfo (#10520)
  • f46b747 feat(aiplatform): enable rest_numeric_enums for aiplatform v1 and v1beta1 (#1...
  • Additional commits viewable in compare view

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

Changelog

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

0.115.0 (2024-06-12)

Features

Bug Fixes

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

Updates cloud.google.com/go/auth from 0.5.1 to 0.7.2

Release notes

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

longrunning: v0.5.11

0.5.11 (2024-07-24)

Bug Fixes

  • longrunning: Update dependencies (257c40b)
Changelog

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

Changes

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)

Features

  • civil: Add Compare method to Date, Time, and DateTime (#10010) (34455c1)

Bug Fixes

  • all: Bump x/net to v0.24.0 (#10000) (ba31ed5)
  • debugger: Add internaloption.WithDefaultEndpointTemplate (3b41408)
  • internal/aliasfix: Handle import paths correctly (#10097) (fafaf0d)
  • rpcreplay: Properly unmarshal dynamic message (#9774) (53ccb20), refs #9773

Documentation

  • testing: Switch deprecated WithInsecure to WithTransportCredentials (#10091) (2b576ab)

0.112.2 (2024-03-27)

Bug Fixes

... (truncated)

Commits
  • 2be32b6 chore(main): release auth 0.7.2 (#10552)
  • 6525341 chore(main): release ai 0.8.1 (#10467)
  • 33a4ad3 test(storage/transfermanager): add CRC to test (#10568)
  • 245d2ea feat(storage): add full object checksum to reader.Attrs (#10538)
  • 29b52dc feat(spanner): Add RESOURCE_EXHAUSTED to retryable transaction codes (#10412)
  • a880fb8 chore(internal/detect): export project sentinel value (#10560)
  • 037e9ef fix(bigquery): reduce default backoffs (#10558)
  • 4e180f4 fix(spanner): fix negative values for max_in_use_sessions metrics #10449 (#10...
  • 25c5cbe docs(bigquery): update description of query preview feature (#10554)
  • d9046fd fix(auth): use default client for universe metadata lookup (#10551)
  • Additional commits viewable in compare view

Updates cloud.google.com/go/auth/oauth2adapt from 0.2.2 to 0.2.3

Commits

Updates cloud.google.com/go/iam from 1.1.8 to 1.1.10

Commits

Updates cloud.google.com/go/longrunning from 0.5.7 to 0.5.9

Commits

You can trigger a rebase of this PR 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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the cloud-go group with 2 updates in the / directory: [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) and [cloud.google.com/go/kms](https://github.com/googleapis/google-cloud-go).


Updates `cloud.google.com/go/compute/metadata` from 0.3.0 to 0.5.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.3.0...v0.5.0)

Updates `cloud.google.com/go/kms` from 1.17.1 to 1.18.4
- [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.17.1...kms/v1.18.4)

Updates `cloud.google.com/go/resourcemanager` from 1.9.7 to 1.9.9
- [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@iap/v1.9.7...iap/v1.9.9)

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

Updates `cloud.google.com/go/auth` from 0.5.1 to 0.7.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.5.1...auth/v0.7.2)

Updates `cloud.google.com/go/auth/oauth2adapt` from 0.2.2 to 0.2.3
- [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.2.2...netapp/v0.2.3)

Updates `cloud.google.com/go/iam` from 1.1.8 to 1.1.10
- [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.1.8...iam/v1.1.10)

Updates `cloud.google.com/go/longrunning` from 0.5.7 to 0.5.9
- [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.7...longrunning/v0.5.9)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cloud-go
- dependency-name: cloud.google.com/go/kms
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cloud-go
- dependency-name: cloud.google.com/go/resourcemanager
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cloud-go
- dependency-name: cloud.google.com/go
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cloud-go
- dependency-name: cloud.google.com/go/auth
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: cloud-go
- dependency-name: cloud.google.com/go/auth/oauth2adapt
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cloud-go
- dependency-name: cloud.google.com/go/iam
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cloud-go
- dependency-name: cloud.google.com/go/longrunning
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: cloud-go
...

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 Jul 29, 2024
@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Jul 29, 2024
@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 Jul 29, 2024
@k8s-ci-robot k8s-ci-robot requested a review from tyuchn July 29, 2024 10:45
@tyuchn
Copy link
Contributor

tyuchn commented Jul 29, 2024

/lgtm
/approve
/retest

@k8s-ci-robot k8s-ci-robot added lgtm "Looks good to me", indicates that a PR is ready to be merged. approved Indicates a PR has been approved by an approver from all required OWNERS files. labels Jul 29, 2024
@amacaskill
Copy link
Member

/retest
/lgtm
/approve

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: amacaskill, dependabot[bot], tyuchn

The full list of commands accepted by this bot can be found here.

The pull request process is described 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

@dependabot[bot]: The following test 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-compute-persistent-disk-csi-driver-e2e 01b7d98 link true /test pull-gcp-compute-persistent-disk-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.

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Aug 27, 2024
@k8s-ci-robot
Copy link
Contributor

PR needs rebase.

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. 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. lgtm "Looks good to me", indicates that a PR is ready to be merged. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. 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.

3 participants