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 16 updates #1798

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 20, 2025

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

Package From To
github.com/google/cel-go 0.21.0 0.22.1
github.com/gorilla/mux 1.8.0 1.8.1
github.com/spf13/cobra 1.7.0 1.8.1
github.com/tektoncd/pipeline 0.65.0 0.66.0
github.com/tidwall/sjson 1.2.4 1.2.5
golang.org/x/oauth2 0.22.0 0.25.0
golang.org/x/sync 0.8.0 0.10.0
google.golang.org/grpc 1.67.0 1.69.4
k8s.io/api 0.29.6 0.29.13
k8s.io/apiextensions-apiserver 0.29.2 0.29.13
knative.dev/eventing 0.30.1-0.20220407170245-58865afba92c 0.30.3
knative.dev/serving 0.39.0 0.39.4

Updates github.com/google/cel-go from 0.21.0 to 0.22.1

Release notes

Sourced from github.com/google/cel-go's releases.

Release v0.22.1

Fixes

New Contributors

Full Changelog: google/cel-go@v0.22.0...v0.22.1

Release v0.22.0

What's Changed

Core CEL

Policy

... (truncated)

Commits
  • 933f926 Fix nil-type when two-var comprehension has a dyn range (#1077)
  • ff1302f Fix optional test to be functional (#1076)
  • 4b73ba3 Add two-variable comprehension support to cel-policy (#1074)
  • ba74bf6 Additional nil-safety checks with corresponding test updates (#1073)
  • 72e0977 Rename conformance proto import for ease of syncing (#1071)
  • 24ec244 Fix format string issue (#1072)
  • 7184cb0 Update docs on IO methods (#1070)
  • da44524 Expose public methods to convert function and variable decl to v1 Decl (#1069)
  • f8ecaa2 Harden legacy macros, add support for existsOne macro (#1064)
  • 8ad600b Ensure variables in comprehensions don't collide (#1062)
  • Additional commits viewable in compare view

Updates github.com/gorilla/mux from 1.8.0 to 1.8.1

Release notes

Sourced from github.com/gorilla/mux's releases.

Release v1.8.1

What's Changed

New Contributors

Full Changelog: gorilla/mux@v1.8.0...v1.8.1

Commits

Updates github.com/spf13/cobra from 1.7.0 to 1.8.1

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.8.1

✨ Features

🐛 Bug fixes

🔧 Maintenance

🧪 Testing & CI/CD

✏️ Documentation

... (truncated)

Commits

Updates github.com/tektoncd/pipeline from 0.65.0 to 0.66.0

Release notes

Sourced from github.com/tektoncd/pipeline's releases.

Tekton Pipeline release v0.66.0 "American Curl AL-76"

-Docs @ v0.66.0 -Examples @ v0.66.0

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.66.0/release.yaml

Attestation

The Rekor UUID for this release is 108e9186e8c5677aaef800dc5c82c7e8a7dc72d7ed947dc0e166c29c7bfd9f2b6edca989022cb90c

Obtain the attestation:

REKOR_UUID=108e9186e8c5677aaef800dc5c82c7e8a7dc72d7ed947dc0e166c29c7bfd9f2b6edca989022cb90c
rekor-cli get --uuid $REKOR_UUID --format json | jq -r .Attestation | jq .

Verify that all container images in the attestation are in the release file:

RELEASE_FILE=https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.66.0/release.yaml
REKOR_UUID=108e9186e8c5677aaef800dc5c82c7e8a7dc72d7ed947dc0e166c29c7bfd9f2b6edca989022cb90c
Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGES=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | jq -r '.subject[]|.name + ":v0.66.0@sha256:" + .digest.sha256')
Download the release file
curl "$RELEASE_FILE" > release.yaml
For each image in the attestation, match it to the release file
for image in $REKOR_ATTESTATION_IMAGES; do
printf $image; grep -q $image release.yaml && echo " ===> ok" || echo " ===> no match";
done

Changes

Features

  • ✨ Fix StepAction support in Cluster resolver (#8382)

... (truncated)

Changelog

Sourced from github.com/tektoncd/pipeline's changelog.

Tekton Pipeline Releases

Release Frequency

Tekton Pipelines follows the Tekton community [release policy][release-policy] as follows:

  • Versions are numbered according to semantic versioning: vX.Y.Z
  • A new release is produced on a monthly basis
  • Four releases a year are chosen for long term support (LTS). All remaining releases are supported for approximately 1 month (until the next release is produced)
    • LTS releases take place in January, April, July and October every year
    • The first Tekton Pipelines LTS release will be v0.41.0 in October 2022
    • Releases happen towards the middle of the month, between the 13th and the 20th, depending on week-ends and readiness

Tekton Pipelines produces nightly builds, publicly available on gcr.io/tekton-nightly.

Transition Process

Before release v0.41 Tekton Pipelines has worked on the basis of an undocumented support period of four months, which will be maintained for the releases between v0.37 and v0.40.

Release Process

Tekton Pipeline releases are made of YAML manifests and container images. Manifests are published to cloud object-storage as well as [GitHub][tekton-pipeline-releases]. Container images are signed by [Sigstore][sigstore] via [Tekton Chains][tekton-chains]; signatures can be verified through the [public key][chains-public-key] hosted by the Tekton Chains project.

Further documentation available:

  • The Tekton Pipeline [release process][tekton-releases-docs]
  • [Installing Tekton][tekton-installation]
  • Standard for [release notes][release-notes-standards]

Release

v0.66

  • Latest Release: [v0.66.0][v0.66-0] (2024-12-04) ([docs][v0.66-0-docs], [examples][v0.66-0-examples])
  • Initial Release: [v0.66.0][v0.66-0] (2024-12-04)
  • Estimated End of Life: 2024-12-28
  • Patch Releases: [v0.66.0][v0.66-0]

v0.65 (LTS)

... (truncated)

Commits
  • 1dd488e build(deps): bump github/codeql-action from 3.27.4 to 3.27.5
  • 1f50ecd build(deps): bump the all group in /tekton with 2 updates
  • 0f2d9f1 Fixes git-resolver configuration for serverUrl and scmType
  • cfc5c7b build(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0
  • 27c87f0 build(deps): bump the all group in /tekton with 2 updates
  • bfe7b03 build(deps): bump github.com/golangci/golangci-lint in /tools
  • 3714d4f build(deps): bump step-security/harden-runner from 2.10.1 to 2.10.2
  • 85dc300 fix: add missing stepaction RBAC permission for resolver
  • 0d39e02 build(deps): bump the all group in /tekton with 2 updates
  • ccf8cfb build(deps): bump github/codeql-action from 3.27.1 to 3.27.4
  • Additional commits viewable in compare view

Updates github.com/tidwall/sjson from 1.2.4 to 1.2.5

Commits

Updates golang.org/x/oauth2 from 0.22.0 to 0.25.0

Commits
  • 49a531d all: make method and struct comments match the names
  • 22134a4 README: don't recommend go get
  • 3e64809 x/oauth2: add Token.ExpiresIn
  • 16a9973 jwt: rename example to avoid vet error
  • b52af7d endpoints: add GitLab DeviceAuthURL
  • See full diff in compare view

Updates golang.org/x/sync from 0.8.0 to 0.10.0

Commits

Updates google.golang.org/grpc from 1.67.0 to 1.69.4

Release notes

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

Release 1.69.4

Bug Fixes

  • rbac: fix support for :path header matchers, which would previously never successfully match (#7965).

Documentation

  • examples/features/csm_observability: update example client and server to use the helloworld service instead of echo service (#7945).

Release 1.69.3 was accidentally tagged on the master branch and will be deleted. Please update to 1.69.4 instead.

Release 1.69.2

Bug Fixes

  • stats/experimental: add type aliases for symbols (Metrics/etc) that were moved to the stats package (#7929).
  • client: set user-agent string to the correct version.

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)

... (truncated)

Commits

Updates google.golang.org/protobuf from 1.34.2 to 1.35.1

Updates k8s.io/api from 0.29.6 to 0.29.13

Commits
  • a51490a Update dependencies to v0.29.13 tag
  • 403c853 Merge pull request #126157 from xyz-li/cherry-pick-124568-129
  • 7c71f3c Merge pull request #126060mimowo/automated-cherry-pick-of-#126046
  • 0e08277 api: fix ValidatingAdmissionPolicyList json tag
  • a63486c Use omitempty for optional fields in Job Pod Failure Policy
  • See full diff in compare view

Updates k8s.io/apiextensions-apiserver from 0.29.2 to 0.29.13

Commits

Updates k8s.io/apimachinery from 0.29.7 to 0.29.13

Commits

Updates k8s.io/client-go from 0.29.6 to 0.29.13

Commits

Updates k8s.io/code-generator from 0.29.7 to 0.29.13

Commits

Updates knative.dev/eventing from 0.30.1-0.20220407170245-58865afba92c to 0.30.3

Commits

Updates knative.dev/serving from 0.39.0 to 0.39.4

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 <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 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.21.0` | `0.22.1` |
| [github.com/gorilla/mux](https://github.com/gorilla/mux) | `1.8.0` | `1.8.1` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.7.0` | `1.8.1` |
| [github.com/tektoncd/pipeline](https://github.com/tektoncd/pipeline) | `0.65.0` | `0.66.0` |
| [github.com/tidwall/sjson](https://github.com/tidwall/sjson) | `1.2.4` | `1.2.5` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.22.0` | `0.25.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.8.0` | `0.10.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.67.0` | `1.69.4` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.29.6` | `0.29.13` |
| [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) | `0.29.2` | `0.29.13` |
| [knative.dev/eventing](https://github.com/knative/eventing) | `0.30.1-0.20220407170245-58865afba92c` | `0.30.3` |
| [knative.dev/serving](https://github.com/knative/serving) | `0.39.0` | `0.39.4` |



Updates `github.com/google/cel-go` from 0.21.0 to 0.22.1
- [Release notes](https://github.com/google/cel-go/releases)
- [Commits](google/cel-go@v0.21.0...v0.22.1)

Updates `github.com/gorilla/mux` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/gorilla/mux/releases)
- [Commits](gorilla/mux@v1.8.0...v1.8.1)

Updates `github.com/spf13/cobra` from 1.7.0 to 1.8.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.7.0...v1.8.1)

Updates `github.com/tektoncd/pipeline` from 0.65.0 to 0.66.0
- [Release notes](https://github.com/tektoncd/pipeline/releases)
- [Changelog](https://github.com/tektoncd/pipeline/blob/main/releases.md)
- [Commits](tektoncd/pipeline@v0.65.0...v0.66.0)

Updates `github.com/tidwall/sjson` from 1.2.4 to 1.2.5
- [Commits](tidwall/sjson@v1.2.4...v1.2.5)

Updates `golang.org/x/oauth2` from 0.22.0 to 0.25.0
- [Commits](golang/oauth2@v0.22.0...v0.25.0)

Updates `golang.org/x/sync` from 0.8.0 to 0.10.0
- [Commits](golang/sync@v0.8.0...v0.10.0)

Updates `google.golang.org/grpc` from 1.67.0 to 1.69.4
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.67.0...v1.69.4)

Updates `google.golang.org/protobuf` from 1.34.2 to 1.35.1

Updates `k8s.io/api` from 0.29.6 to 0.29.13
- [Commits](kubernetes/api@v0.29.6...v0.29.13)

Updates `k8s.io/apiextensions-apiserver` from 0.29.2 to 0.29.13
- [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases)
- [Commits](kubernetes/apiextensions-apiserver@v0.29.2...v0.29.13)

Updates `k8s.io/apimachinery` from 0.29.7 to 0.29.13
- [Commits](kubernetes/apimachinery@v0.29.7...v0.29.13)

Updates `k8s.io/client-go` from 0.29.6 to 0.29.13
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.29.6...v0.29.13)

Updates `k8s.io/code-generator` from 0.29.7 to 0.29.13
- [Commits](kubernetes/code-generator@v0.29.7...v0.29.13)

Updates `knative.dev/eventing` from 0.30.1-0.20220407170245-58865afba92c to 0.30.3
- [Release notes](https://github.com/knative/eventing/releases)
- [Commits](https://github.com/knative/eventing/commits/v0.30.3)

Updates `knative.dev/serving` from 0.39.0 to 0.39.4
- [Release notes](https://github.com/knative/serving/releases)
- [Commits](knative/serving@v0.39.0...v0.39.4)

---
updated-dependencies:
- dependency-name: github.com/google/cel-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/gorilla/mux
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/tektoncd/pipeline
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/tidwall/sjson
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/oauth2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: k8s.io/apiextensions-apiserver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: k8s.io/code-generator
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: knative.dev/eventing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: knative.dev/serving
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 Jan 20, 2025
@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 savitaashture after the PR has been reviewed.
You can assign the PR to them by writing /assign @savitaashture 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
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/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Jan 20, 2025
@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-triggers-integration-tests 6d3c6b5 link true /test pull-tekton-triggers-integration-tests
pull-tekton-triggers-build-tests 6d3c6b5 link true /test pull-tekton-triggers-build-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.

@khrm
Copy link
Contributor

khrm commented Jan 23, 2025

@dependabot rebase

@tekton-robot tekton-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jan 23, 2025
@tekton-robot
Copy link

@dependabot[bot]: 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/test-infra repository.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 23, 2025

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

@dependabot dependabot bot closed this Jan 23, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/all-79452c97d7 branch January 23, 2025 07:08
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. 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 doesnt 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.

2 participants