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

chore(deps): update all dependencies (main) #470

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

Conversation

redhat-renovate-bot
Copy link
Collaborator

@redhat-renovate-bot redhat-renovate-bot commented Jul 24, 2024

This PR contains the following updates:

Package Type Update Change
fedora final major 41 -> 42
github.com/onsi/ginkgo/v2 require minor v2.20.1 -> v2.22.1
github.com/onsi/gomega require minor v1.34.2 -> v1.36.1
github.com/openshift/api replace digest ae4f370 -> b88d067
github.com/openshift/client-go replace digest b054aa7 -> 35abaf5
github.com/tektoncd/pipeline require minor v0.65.2 -> v0.66.0
k8s.io/api require minor v0.31.2 -> v0.32.0
k8s.io/apimachinery require minor v0.31.2 -> v0.32.0
k8s.io/cli-runtime require minor v0.31.2 -> v0.32.0
k8s.io/client-go replace minor v0.31.2 -> v0.32.0
k8s.io/kube-openapi replace digest 3c01b74 -> 2c72e55
k8s.io/kubectl replace minor v0.31.2 -> v0.32.0
k8s.io/utils require digest 18e509b -> 24370be
knative.dev/pkg require digest 4355f0c -> 40afb7c
kubevirt.io/containerdisks require digest ea2e8bf -> 0a8f968
kubevirt.io/containerized-data-importer require minor v1.59.1 -> v1.61.0
kubevirt.io/containerized-data-importer replace minor v1.59.1 -> v1.61.0
kubevirt.io/containerized-data-importer-api require minor v1.60.3 -> v1.61.0
kubevirt.io/containerized-data-importer-api replace minor v1.59.1 -> v1.61.0

Release Notes

onsi/ginkgo (github.com/onsi/ginkgo/v2)

v2.22.1

Compare Source

2.22.1

Fixes

Fix CSV encoding

Maintenance
  • ensure *.test files are gitignored so we don't accidentally commit compiled tests again [c88c634]
  • remove golang.org/x/net/context in favour of stdlib context [4df44bf]

v2.22.0

Compare Source

2.22.0

Features
  • Add label to serial nodes [0fcaa08]

This allows serial tests to be filtered using the label-filter

Maintenance

Various doc fixes

v2.21.0

Compare Source

2.21.0

Features
  • add support for GINKGO_TIME_FORMAT [a69eb39]
  • add GINKGO_NO_COLOR to disable colors via environment variables [bcab9c8]
Fixes
  • increase threshold in timeline matcher [e548367]
  • Fix the document by replacing SpecsThatWillBeRun with SpecsThatWillRun
    [c2c4d3c]
Maintenance
  • bump various dependencies [7e65a00]

v2.20.2

Compare Source

2.20.2

Require Go 1.22+

Maintenance
onsi/gomega (github.com/onsi/gomega)

v1.36.1

Compare Source

1.36.1

Fixes

v1.36.0

Compare Source

1.36.0

Features
  • new: make collection-related matchers Go 1.23 iterator aware [4c964c6]
Maintenance
  • Replace min/max helpers with built-in min/max [ece6872]
  • Fix some typos in docs [8e924d7]

v1.35.1

Compare Source

1.35.1

Fixes
  • Export EnforceDefaultTimeoutsWhenUsingContexts and DisableDefaultTimeoutsWhenUsingContext [ca36da1]

v1.35.0

Compare Source

1.35.0

Features
  • You can now call EnforceDefaultTimeoutsWhenUsingContexts() to have Eventually honor the default timeout when passed a context. (prior to this you had to expclility add a timeout) [e4c4265]
  • You can call StopTrying(message).Successfully() to abort a Consistently early without failure [eeca931]
Fixes
  • Stop memoizing the result of HaveField to avoid unexpected errors when used with async assertions. [3bdbc4e]
Maintenance
tektoncd/pipeline (github.com/tektoncd/pipeline)

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

Compare Source

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

Fix StepAction support in Cluster resolver

  • ✨ Expose Resolvers Controller performance tuning configurations (#​8344)

We can specify custom performance tuning values in the watcher's deployment - controller container via threads-per-controller, kube-api-qps and kube-api-burst flags.

Fixes
  • 🐛 fix: add missing stepaction RBAC permission for resolver (#​8397)

fix: include missing RBAC permission to allow cluster resolver to get and list StepActions

  • 🐛 Use io.ReadFull to read the bundle content (#​8389)

ix an issue on bundle list command with relatively big bundles that couldn't be parsed (truncated data)

  • 🐛 Fix StepAction support in Cluster resolver (#​8382)

Fix StepAction support in Cluster resolver

  • 🐛 Fixes git-resolver configuration for serverUrl and scmType (#​8401)
  • 🐛 Add Failed Validation group in message for the status message in PipelineRun (#​8356)
  • 🐛 Run finally pipeline even if task is failed at the validation (#​8314)
Misc
  • 🔨 build(deps): bump the all group in /tekton with 2 updates (#​8408)
  • 🔨 build(deps): bump the all group in /tekton with 2 updates (#​8406)
  • 🔨 build(deps): bump github.com/golangci/golangci-lint from 1.62.0 to 1.62.2 in /tools (#​8405)
  • 🔨 build(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0 (#​8404)
  • 🔨 build(deps): bump github/codeql-action from 3.27.4 to 3.27.5 (#​8403)
  • 🔨 build(deps): bump step-security/harden-runner from 2.10.1 to 2.10.2 (#​8402)
  • 🔨 build(deps): bump the all group in /tekton with 2 updates (#​8395)
  • 🔨 build(deps): bump github/codeql-action from 3.27.1 to 3.27.4 (#​8394)
  • 🔨 build(deps): bump github.com/golangci/golangci-lint from 1.61.0 to 1.62.0 in /tools (#​8386)
  • 🔨 build(deps): bump github/codeql-action from 3.27.0 to 3.27.1 (#​8385)
  • 🔨 build(deps): bump the all group in /tekton with 3 updates (#​8384)
  • 🔨 build(deps): bump tj-actions/changed-files from 45.0.3 to 45.0.4 (#​8383)
  • 🔨 build(deps): bump the all group in /tekton with 4 updates (#​8363)
  • 🔨 build(deps): bump the all group in /tekton with 4 updates (#​8354)
  • 🔨 build(deps): bump actions/dependency-review-action from 4.3.4 to 4.4.0 (#​8353)
  • 🔨 build(deps): bump actions/setup-go from 5.0.2 to 5.1.0 (#​8351)
  • 🔨 build(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#​8350)
  • 🔨 build(deps): bump github/codeql-action from 3.26.13 to 3.27.0 (#​8349)
Docs
  • 📖 Update release.md with v0.65.0 (#​8355)

Thanks

Thanks to these contributors who contributed to v0.66.0!

Extra shout-out for awesome release notes:

v0.65.4: Tekton Pipeline release v0.65.4 "Sokoke Herbie"

Compare Source

-Docs @​ v0.65.4
-Examples @​ v0.65.4

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677ac23b9e3d80fbd75881d628aa04d6e3ed7f6d21ea46c94c4856d01cdba23ae798

Obtain the attestation:

REKOR_UUID=108e9186e8c5677ac23b9e3d80fbd75881d628aa04d6e3ed7f6d21ea46c94c4856d01cdba23ae798
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.65.4/release.yaml
REKOR_UUID=108e9186e8c5677ac23b9e3d80fbd75881d628aa04d6e3ed7f6d21ea46c94c4856d01cdba23ae798

### 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.65.4@​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

Fixes
  • 🐛 [release-v0.65.x] Fixes git-resolver configuration for serverUrl and scmType (#​8409)
Misc
Docs

Thanks

Thanks to these contributors who contributed to v0.65.4!

Extra shout-out for awesome release notes:

v0.65.3: Tekton Pipeline release v0.65.3 "Sokoke Herbie"

Compare Source

-Docs @​ v0.65.3
-Examples @​ v0.65.3

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a0f1febc6adf68f4220edd3a81c9a0da1f7185512b481667c6a0f076eaed75b4d

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a0f1febc6adf68f4220edd3a81c9a0da1f7185512b481667c6a0f076eaed75b4d
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.65.3/release.yaml
REKOR_UUID=108e9186e8c5677a0f1febc6adf68f4220edd3a81c9a0da1f7185512b481667c6a0f076eaed75b4d

### 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.65.3@​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

Fixes
  • 🐛 [release-v0.65.x] fix: add missing stepaction RBAC permission for resolver (#​8400)

ix: include missing RBAC permission to allow cluster resolver to get and list StepActions

Misc
Docs

Thanks

Thanks to these contributors who contributed to v0.65.3!

Extra shout-out for awesome release notes:

kubernetes/api (k8s.io/api)

v0.32.0

Compare Source

v0.31.4

Compare Source

v0.31.3

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.32.0

Compare Source

v0.31.4

Compare Source

v0.31.3

Compare Source

kubernetes/cli-runtime (k8s.io/cli-runtime)

v0.32.0

Compare Source

v0.31.4

Compare Source

v0.31.3

Compare Source

kubernetes/client-go (k8s.io/client-go)

v0.32.0

Compare Source

v0.31.4

Compare Source

v0.31.3

Compare Source

kubernetes/kubectl (k8s.io/kubectl)

v0.32.0

Compare Source

v0.31.4

Compare Source

v0.31.3

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@redhat-renovate-bot redhat-renovate-bot added the release-note-none Denotes a PR that doesn't merit a release note. label Jul 24, 2024
@kubevirt-bot kubevirt-bot requested a review from jcanocan July 24, 2024 00:03
@kubevirt-bot kubevirt-bot added the dco-signoff: yes Indicates the PR's author has DCO signed all their commits. label Jul 24, 2024
@kubevirt-bot kubevirt-bot requested a review from ksimon1 July 24, 2024 00:03
@kubevirt-bot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign ksimon1 for approval. For more information see the Kubernetes Code Review Process.

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

@openshift-ci openshift-ci bot requested a review from akrejcir July 24, 2024 00:03
@jcanocan
Copy link
Contributor

/lgtm

@kubevirt-bot kubevirt-bot added the lgtm Indicates that a PR is ready to be merged. label Jul 24, 2024
@redhat-renovate-bot redhat-renovate-bot changed the title chore(deps): update github.com/openshift/api digest to 442f06d (main) chore(deps): update github.com/openshift/api digest to 84047ef (main) Jul 24, 2024
@kubevirt-bot kubevirt-bot removed the lgtm Indicates that a PR is ready to be merged. label Jul 24, 2024
@jcanocan
Copy link
Contributor

/retest
/lgtm

@kubevirt-bot kubevirt-bot added the lgtm Indicates that a PR is ready to be merged. label Jul 25, 2024
@redhat-renovate-bot redhat-renovate-bot changed the title chore(deps): update github.com/openshift/api digest to 84047ef (main) chore(deps): update all dependencies (main) Jul 25, 2024
@kubevirt-bot
Copy link
Contributor

New changes are detected. LGTM label has been removed.

@kubevirt-bot kubevirt-bot removed lgtm Indicates that a PR is ready to be merged. size/XS labels Jul 25, 2024
Copy link

openshift-ci bot commented Jul 25, 2024

New changes are detected. LGTM label has been removed.

@redhat-renovate-bot
Copy link
Collaborator Author

redhat-renovate-bot commented Jul 26, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 15 additional dependencies were updated

Details:

Package Change
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 -> v0.0.0-20240727154555-813a5fbdbec8
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.21.0
golang.org/x/crypto v0.25.0 -> v0.26.0
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 -> v0.0.0-20240808152545-0cdaa3abc0fa
golang.org/x/net v0.27.0 -> v0.28.0
golang.org/x/oauth2 v0.21.0 -> v0.22.0
golang.org/x/sync v0.7.0 -> v0.8.0
golang.org/x/sys v0.22.0 -> v0.24.0
golang.org/x/term v0.22.0 -> v0.23.0
golang.org/x/text v0.16.0 -> v0.17.0
golang.org/x/time v0.5.0 -> v0.6.0
golang.org/x/tools v0.23.0 -> v0.24.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240808171019-573a1156607a
google.golang.org/genproto/googleapis/rpc v0.0.0-20240722135656-d784300faade -> v0.0.0-20240808171019-573a1156607a
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0 -> v0.0.0-20240711033017-18e509b52bc8

@jcanocan
Copy link
Contributor

/retest-required

@redhat-renovate-bot redhat-renovate-bot force-pushed the renovate/main-all branch 8 times, most recently from 16073e3 to 1be16c1 Compare December 12, 2024 17:07
Copy link

openshift-ci bot commented Dec 12, 2024

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: redhat-renovate-bot
Once this PR has been reviewed and has the lgtm label, please assign ksimon1 for approval. For more information see the Code Review Process.

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

@redhat-renovate-bot redhat-renovate-bot force-pushed the renovate/main-all branch 18 times, most recently from b50d2b6 to 3b5d28c Compare December 19, 2024 23:05
Copy link

openshift-ci bot commented Dec 20, 2024

@redhat-renovate-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
ci/prow/win11-pipeline-example-test 549aac7 link true /test win11-pipeline-example-test
ci/prow/images 549aac7 link true /test images
ci/prow/win2k25-pipeline-example-test 549aac7 link true /test win2k25-pipeline-example-test
ci/prow/win10-pipeline-example-test 549aac7 link true /test win10-pipeline-example-test
ci/prow/e2e-tests 549aac7 link true /test e2e-tests
ci/prow/win2k22-pipeline-example-test 549aac7 link true /test win2k22-pipeline-example-test

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dco-signoff: yes Indicates the PR's author has DCO signed all their commits. do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. release-note-none Denotes a PR that doesn't merit a release note. size/M
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants