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 all group across 1 directory with 8 updates #1266

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

Bumps the all group with 8 updates in the / directory:

Package From To
cloud.google.com/go/compute/metadata 0.5.2 0.6.0
github.com/secure-systems-lab/go-securesystemslib 0.8.0 0.9.0
github.com/sigstore/sigstore 1.8.10 1.8.11
github.com/sigstore/sigstore/pkg/signature/kms/aws 1.8.10 1.8.11
github.com/sigstore/sigstore/pkg/signature/kms/azure 1.8.10 1.8.11
github.com/sigstore/sigstore/pkg/signature/kms/gcp 1.8.10 1.8.11
github.com/sigstore/sigstore/pkg/signature/kms/hashivault 1.8.10 1.8.11
google.golang.org/grpc 1.68.1 1.69.0

Updates cloud.google.com/go/compute/metadata from 0.5.2 to 0.6.0

Release notes

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

compute/metadata: v0.6.0

0.6.0 (2024-12-13)

Features

Changelog

Sourced from cloud.google.com/go/compute/metadata'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 github.com/secure-systems-lab/go-securesystemslib from 0.8.0 to 0.9.0

Commits
  • 7d19192 Merge pull request #103 from secure-systems-lab/dependabot/go_modules/golang....
  • 21102fa chore(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0
  • 1fb13ff Merge pull request #102 from secure-systems-lab/dependabot/github_actions/act...
  • 4e1c22d chore(deps): bump actions/setup-go from 5.1.0 to 5.2.0
  • 847cabc Merge pull request #101 from secure-systems-lab/dependabot/go_modules/golang....
  • 06fac2f chore(deps): bump golang.org/x/crypto from 0.29.0 to 0.30.0
  • c1aadb2 Merge pull request #100 from secure-systems-lab/dependabot/go_modules/github....
  • 8fef2d7 chore(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0
  • c65f6c8 Merge pull request #99 from secure-systems-lab/dependabot/go_modules/golang.o...
  • 35b687d chore(deps): bump golang.org/x/crypto from 0.27.0 to 0.29.0
  • Additional commits viewable in compare view

Updates github.com/sigstore/sigstore from 1.8.10 to 1.8.11

Release notes

Sourced from github.com/sigstore/sigstore's releases.

v1.8.11

What's Changed

New Contributors

Full Changelog: sigstore/sigstore@v1.8.10...v1.8.11

Commits
  • 185deaa build(deps): Bump golang.org/x/crypto from 0.29.0 to 0.31.0 (#1903)
  • 7df71a7 build(deps): Bump cloud.google.com/go/kms (#1902)
  • f5270c4 build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (#1905)
  • 9bd2049 build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1906)
  • 4e58ea1 build(deps): Bump actions/cache from 4.1.2 to 4.2.0 in the all group (#1907)
  • 7addd3b build(deps): Bump localstack/localstack in /test/e2e in the all group (#1899)
  • cbdd139 build(deps): Bump the gomod group across 1 directory with 3 updates (#1900)
  • 8041744 build(deps): Bump github.com/stretchr/testify in /pkg/signature/kms/aws (#1893)
  • d66b91a build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1894)
  • fa4a76d build(deps): Bump github.com/stretchr/testify (#1895)
  • Additional commits viewable in compare view

Updates github.com/sigstore/sigstore/pkg/signature/kms/aws from 1.8.10 to 1.8.11

Release notes

Sourced from github.com/sigstore/sigstore/pkg/signature/kms/aws's releases.

v1.8.11

What's Changed

New Contributors

Full Changelog: sigstore/sigstore@v1.8.10...v1.8.11

Commits
  • 185deaa build(deps): Bump golang.org/x/crypto from 0.29.0 to 0.31.0 (#1903)
  • 7df71a7 build(deps): Bump cloud.google.com/go/kms (#1902)
  • f5270c4 build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (#1905)
  • 9bd2049 build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1906)
  • 4e58ea1 build(deps): Bump actions/cache from 4.1.2 to 4.2.0 in the all group (#1907)
  • 7addd3b build(deps): Bump localstack/localstack in /test/e2e in the all group (#1899)
  • cbdd139 build(deps): Bump the gomod group across 1 directory with 3 updates (#1900)
  • 8041744 build(deps): Bump github.com/stretchr/testify in /pkg/signature/kms/aws (#1893)
  • d66b91a build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1894)
  • fa4a76d build(deps): Bump github.com/stretchr/testify (#1895)
  • Additional commits viewable in compare view

Updates github.com/sigstore/sigstore/pkg/signature/kms/azure from 1.8.10 to 1.8.11

Release notes

Sourced from github.com/sigstore/sigstore/pkg/signature/kms/azure's releases.

v1.8.11

What's Changed

New Contributors

Full Changelog: sigstore/sigstore@v1.8.10...v1.8.11

Commits
  • 185deaa build(deps): Bump golang.org/x/crypto from 0.29.0 to 0.31.0 (#1903)
  • 7df71a7 build(deps): Bump cloud.google.com/go/kms (#1902)
  • f5270c4 build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (#1905)
  • 9bd2049 build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1906)
  • 4e58ea1 build(deps): Bump actions/cache from 4.1.2 to 4.2.0 in the all group (#1907)
  • 7addd3b build(deps): Bump localstack/localstack in /test/e2e in the all group (#1899)
  • cbdd139 build(deps): Bump the gomod group across 1 directory with 3 updates (#1900)
  • 8041744 build(deps): Bump github.com/stretchr/testify in /pkg/signature/kms/aws (#1893)
  • d66b91a build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1894)
  • fa4a76d build(deps): Bump github.com/stretchr/testify (#1895)
  • Additional commits viewable in compare view

Updates github.com/sigstore/sigstore/pkg/signature/kms/gcp from 1.8.10 to 1.8.11

Release notes

Sourced from github.com/sigstore/sigstore/pkg/signature/kms/gcp's releases.

v1.8.11

What's Changed

New Contributors

Full Changelog: sigstore/sigstore@v1.8.10...v1.8.11

Commits
  • 185deaa build(deps): Bump golang.org/x/crypto from 0.29.0 to 0.31.0 (#1903)
  • 7df71a7 build(deps): Bump cloud.google.com/go/kms (#1902)
  • f5270c4 build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (#1905)
  • 9bd2049 build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1906)
  • 4e58ea1 build(deps): Bump actions/cache from 4.1.2 to 4.2.0 in the all group (#1907)
  • 7addd3b build(deps): Bump localstack/localstack in /test/e2e in the all group (#1899)
  • cbdd139 build(deps): Bump the gomod group across 1 directory with 3 updates (#1900)
  • 8041744 build(deps): Bump github.com/stretchr/testify in /pkg/signature/kms/aws (#1893)
  • d66b91a build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1894)
  • fa4a76d build(deps): Bump github.com/stretchr/testify (#1895)
  • Additional commits viewable in compare view

Updates github.com/sigstore/sigstore/pkg/signature/kms/hashivault from 1.8.10 to 1.8.11

Release notes

Sourced from github.com/sigstore/sigstore/pkg/signature/kms/hashivault's releases.

v1.8.11

What's Changed

New Contributors

Full Changelog: sigstore/sigstore@v1.8.10...v1.8.11

Commits
  • 185deaa build(deps): Bump golang.org/x/crypto from 0.29.0 to 0.31.0 (#1903)
  • 7df71a7 build(deps): Bump cloud.google.com/go/kms (#1902)
  • f5270c4 build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (#1905)
  • 9bd2049 build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1906)
  • 4e58ea1 build(deps): Bump actions/cache from 4.1.2 to 4.2.0 in the all group (#1907)
  • 7addd3b build(deps): Bump localstack/localstack in /test/e2e in the all group (#1899)
  • cbdd139 build(deps): Bump the gomod group across 1 directory with 3 updates (#1900)
  • 8041744 build(deps): Bump github.com/stretchr/testify in /pkg/signature/kms/aws (#1893)
  • d66b91a build(deps): Bump google.golang.org/api in /pkg/signature/kms/gcp (#1894)
  • fa4a76d build(deps): Bump github.com/stretchr/testify (#1895)
  • Additional commits viewable in compare view

Updates google.golang.org/grpc from 1.68.1 to 1.69.0

Release notes

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

Release 1.69.0

Known Issues

  • The recently added grpc.NewClient function is incompatible with forward proxies, because it resolves the target hostname on the client instead of passing the hostname to the proxy. A fix is expected to be a part of grpc-go v1.70. (#7556)

New Features

  • stats/opentelemetry: Introduce new APIs to enable OpenTelemetry instrumentation for metrics on servers and clients (#7874)
  • xdsclient: add support to fallback to lower priority servers when higher priority ones are down (#7701)
  • dns: Add support for link local IPv6 addresses (#7889)
  • The new experimental pickfirst LB policy (disabled by default) supports Happy Eyeballs, interleaving IPv4 and IPv6 address as described in RFC-8305 section 4, to attempt connections to multiple backends concurrently. The experimental pickfirst policy can be enabled by setting the environment variable GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST to true. (#7725, #7742)
  • balancer/pickfirst: Emit metrics from the pick_first load balancing policy (#7839)
  • grpc: export MethodHandler, which is the type of an already-exported field in MethodDesc (#7796)

Bug Fixes

  • credentials/google: set scope for application default credentials (#7887)
  • xds: fix edge-case issues where some clients or servers would not initialize correctly or would not receive errors when resources are invalid or unavailable if another channel or server with the same target was already in use . (#7851, #7853)
  • examples: fix the debugging example, which was broken by a recent change (#7833)

Behavior Changes

  • client: update retry attempt backoff to apply jitter per updates to gRFC A6. (#7869)
  • balancer/weightedroundrobin: use the pick_first LB policy to manage connections (#7826)

API Changes

  • balancer: An internal method is added to the balancer.SubConn interface to force implementors to embed a delegate implementation. This requirement is present in the interface documentation, but wasn't enforced earlier. (#7840)

Performance Improvements

  • mem: implement a ReadAll() method for more efficient io.Reader consumption (#7653)
  • mem: use slice capacity instead of length to determine whether to pool buffers or directly allocate them (#7702)

Documentation

  • examples/csm_observability: Add xDS Credentials and switch server to be xDS enabled (#7875)
Commits
  • 317271b pickfirst: Register a health listener when used as a leaf policy (#7832)
  • 5565631 balancer/pickfirst: replace grpc.Dial with grpc.NewClient in tests (#7879)
  • 634497b test: Split import paths for generated message and service code (#7891)
  • 78aa51b pickfirst: Stop test servers without closing listeners (#7872)
  • 00272e8 dns: Support link local IPv6 addresses (#7889)
  • 17d08f7 scripts/gen-deps: filter out grpc modules (#7890)
  • ab189b0 examples/features/csm_observability: Add xDS Credentials (#7875)
  • 3ce87dd credentials/google: Add cloud-platform scope for ADC (#7887)
  • 3c0586a stats/opentelemetry: Cleanup OpenTelemetry API's before stabilization (#7874)
  • 4c07bca stream: add jitter to retry backoff in accordance with gRFC A6 (#7869)
  • Additional commits viewable in compare view

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 <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

Bumps the all group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.5.2` | `0.6.0` |
| [github.com/secure-systems-lab/go-securesystemslib](https://github.com/secure-systems-lab/go-securesystemslib) | `0.8.0` | `0.9.0` |
| [github.com/sigstore/sigstore](https://github.com/sigstore/sigstore) | `1.8.10` | `1.8.11` |
| [github.com/sigstore/sigstore/pkg/signature/kms/aws](https://github.com/sigstore/sigstore) | `1.8.10` | `1.8.11` |
| [github.com/sigstore/sigstore/pkg/signature/kms/azure](https://github.com/sigstore/sigstore) | `1.8.10` | `1.8.11` |
| [github.com/sigstore/sigstore/pkg/signature/kms/gcp](https://github.com/sigstore/sigstore) | `1.8.10` | `1.8.11` |
| [github.com/sigstore/sigstore/pkg/signature/kms/hashivault](https://github.com/sigstore/sigstore) | `1.8.10` | `1.8.11` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.68.1` | `1.69.0` |



Updates `cloud.google.com/go/compute/metadata` from 0.5.2 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@apps/v0.5.2...v0.6.0)

Updates `github.com/secure-systems-lab/go-securesystemslib` from 0.8.0 to 0.9.0
- [Release notes](https://github.com/secure-systems-lab/go-securesystemslib/releases)
- [Commits](secure-systems-lab/go-securesystemslib@v0.8.0...v0.9.0)

Updates `github.com/sigstore/sigstore` from 1.8.10 to 1.8.11
- [Release notes](https://github.com/sigstore/sigstore/releases)
- [Commits](sigstore/sigstore@v1.8.10...v1.8.11)

Updates `github.com/sigstore/sigstore/pkg/signature/kms/aws` from 1.8.10 to 1.8.11
- [Release notes](https://github.com/sigstore/sigstore/releases)
- [Commits](sigstore/sigstore@v1.8.10...v1.8.11)

Updates `github.com/sigstore/sigstore/pkg/signature/kms/azure` from 1.8.10 to 1.8.11
- [Release notes](https://github.com/sigstore/sigstore/releases)
- [Commits](sigstore/sigstore@v1.8.10...v1.8.11)

Updates `github.com/sigstore/sigstore/pkg/signature/kms/gcp` from 1.8.10 to 1.8.11
- [Release notes](https://github.com/sigstore/sigstore/releases)
- [Commits](sigstore/sigstore@v1.8.10...v1.8.11)

Updates `github.com/sigstore/sigstore/pkg/signature/kms/hashivault` from 1.8.10 to 1.8.11
- [Release notes](https://github.com/sigstore/sigstore/releases)
- [Commits](sigstore/sigstore@v1.8.10...v1.8.11)

Updates `google.golang.org/grpc` from 1.68.1 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.68.1...v1.69.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/secure-systems-lab/go-securesystemslib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/sigstore/sigstore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/sigstore/sigstore/pkg/signature/kms/aws
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/sigstore/sigstore/pkg/signature/kms/azure
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/sigstore/sigstore/pkg/signature/kms/gcp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/sigstore/sigstore/pkg/signature/kms/hashivault
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Used by dependabot - identifies all PRs created by dependabot kind/misc Categorizes issue or PR as a miscellaneuous one. 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 doesnt merit a release note. labels Dec 16, 2024
@tekton-robot
Copy link

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a tektoncd 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/test-infra repository.

@tekton-robot tekton-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Dec 16, 2024
@tekton-robot tekton-robot requested a review from lcarva December 16, 2024 14:38
@tekton-robot
Copy link

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
To complete the pull request process, please assign wlynch after the PR has been reviewed.
You can assign the PR to them by writing /assign @wlynch in a comment when ready.

The full list of commands accepted by this bot can be found 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

@tekton-robot tekton-robot requested a review from wlynch December 16, 2024 14:38
@tekton-robot
Copy link

@dependabot[bot]: The following tests 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-tekton-chains-build-tests 75eade4 link true /test pull-tekton-chains-build-tests
pull-tekton-chains-unit-tests 75eade4 link true /test pull-tekton-chains-unit-tests
pull-tekton-chains-integration-tests 75eade4 link true /test pull-tekton-chains-integration-tests

Full PR test history. Your PR dashboard.

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/test-infra repository. I understand the commands that are listed here.

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 17, 2024

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

@dependabot dependabot bot closed this Dec 17, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/all-2f48900300 branch December 17, 2024 14:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Used by dependabot - identifies all PRs created by dependabot kind/misc Categorizes issue or PR as a miscellaneuous one. 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 doesnt merit a release note. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant