SAP / component-operator

A Kubernetes operator to deploy components into Kubernetes clusters. Components can be described as Kustomizations or Helm charts.
Apache License 2.0
0 stars 0 forks source link

fix(deps): update non-minor dependencies #15

Open renovate[bot] opened 2 months ago

renovate[bot] commented 2 months ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/getsops/sops/v3 v3.9.0 -> v3.9.1 age adoption passing confidence require patch
github.com/sap/component-operator-runtime v0.3.45 -> v0.3.49 age adoption passing confidence require patch
go (source) 1.23.2 -> 1.23.3 age adoption passing confidence golang patch
k8s.io/apiextensions-apiserver v0.31.1 -> v0.31.2 age adoption passing confidence require patch
k8s.io/apimachinery v0.31.1 -> v0.31.2 age adoption passing confidence require patch
k8s.io/client-go v0.31.1 -> v0.31.2 age adoption passing confidence require patch
k8s.io/code-generator v0.31.1 -> v0.31.2 age adoption passing confidence require patch
k8s.io/kube-aggregator v0.31.1 -> v0.31.2 age adoption passing confidence require patch
sigs.k8s.io/controller-runtime v0.19.0 -> v0.19.1 age adoption passing confidence require patch
sigs.k8s.io/controller-runtime/tools/setup-envtest 3854680 -> c1331a5 age adoption passing confidence require digest
sigs.k8s.io/controller-tools v0.16.2 -> v0.16.5 age adoption passing confidence require patch

Release Notes

getsops/sops (github.com/getsops/sops/v3) ### [`v3.9.1`](https://redirect.github.com/getsops/sops/releases/tag/v3.9.1) [Compare Source](https://redirect.github.com/getsops/sops/compare/v3.9.0...v3.9.1) #### Installation To install `sops`, download one of the pre-built binaries provided for your platform from the artifacts attached to this release. For instance, if you are using Linux on an AMD64 architecture: ```shell ### Download the binary curl -LO https://github.com/getsops/sops/releases/download/v3.9.1/sops-v3.9.1.linux.amd64 ### Move the binary in to your PATH mv sops-v3.9.1.linux.amd64 /usr/local/bin/sops ### Make the binary executable chmod +x /usr/local/bin/sops ``` ##### Verify checksums file signature The checksums file provided within the artifacts attached to this release is signed using [Cosign](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of this file, run the following commands: ```shell ### Download the checksums file, certificate and signature curl -LO https://github.com/getsops/sops/releases/download/v3.9.1/sops-v3.9.1.checksums.txt curl -LO https://github.com/getsops/sops/releases/download/v3.9.1/sops-v3.9.1.checksums.pem curl -LO https://github.com/getsops/sops/releases/download/v3.9.1/sops-v3.9.1.checksums.sig ### Verify the checksums file cosign verify-blob sops-v3.9.1.checksums.txt \ --certificate sops-v3.9.1.checksums.pem \ --signature sops-v3.9.1.checksums.sig \ --certificate-identity-regexp=https://github.com/getsops \ --certificate-oidc-issuer=https://token.actions.githubusercontent.com ``` ##### Verify binary integrity To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature: ```shell ### Verify the binary using the checksums file sha256sum -c sops-v3.9.1.checksums.txt --ignore-missing ``` ##### Verify artifact provenance The [SLSA provenance](https://slsa.dev/provenance/v0.2) of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an [in-toto](https://in-toto.io/) link metadata file named `sops-v3.9.1.intoto.jsonl`. To verify the provenance of an artifact, you can utilize the [`slsa-verifier`](https://redirect.github.com/slsa-framework/slsa-verifier#artifacts) tool: ```shell ### Download the metadata file curl -LO https://github.com/getsops/sops/releases/download/v3.9.1/sops-v3.9.1.intoto.jsonl ### Verify the provenance of the artifact slsa-verifier verify-artifact \ --provenance-path sops-v3.9.1.intoto.jsonl \ --source-uri github.com/getsops/sops \ --source-tag v3.9.1 ``` #### Container Images The `sops` binaries are also available as container images, based on Debian (slim) and Alpine Linux. The Debian-based container images include any dependencies which may be required to make use of certain key services, such as GnuPG, AWS KMS, Azure Key Vault, and Google Cloud KMS. The Alpine-based container images are smaller in size, but do not include these dependencies. These container images are available for the following architectures: `linux/amd64` and `linux/arm64`. ##### GitHub Container Registry - `ghcr.io/getsops/sops:v3.9.1` - `ghcr.io/getsops/sops:v3.9.1-alpine` ##### Quay.io - `quay.io/getsops/sops:v3.9.1` - `quay.io/getsops/sops:v3.9.1-alpine` ##### Verify container image signature The container images are signed using [Cosign](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of an image, run the following command: ```shell cosign verify ghcr.io/getsops/sops:v3.9.1 \ --certificate-identity-regexp=https://github.com/getsops \ --certificate-oidc-issuer=https://token.actions.githubusercontent.com \ -o text ``` ##### Verify container image provenance The container images include [SLSA provenance](https://slsa.dev/provenance/v0.2) attestations. For more information around the verification of this, please refer to the [`slsa-verifier` documentation](https://redirect.github.com/slsa-framework/slsa-verifier#containers). #### Software Bill of Materials The Software Bill of Materials (SBOM) for each binary is accessible within the artifacts enclosed with this release. It is presented as an [SPDX](https://spdx.dev/) JSON file, formatted as `.spdx.sbom.json`. #### What's Changed - Explicitly mark goreleaser's version, to avoid confusion with the Go version by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1548](https://redirect.github.com/getsops/sops/pull/1548) - build(deps): Bump the go group with 8 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1550](https://redirect.github.com/getsops/sops/pull/1550) - build(deps): Bump github/codeql-action from 3.25.10 to 3.25.11 in the ci group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1551](https://redirect.github.com/getsops/sops/pull/1551) - Fix the URL used for determining the latest SOPS version by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1553](https://redirect.github.com/getsops/sops/pull/1553) - build(deps): Bump the ci group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1555](https://redirect.github.com/getsops/sops/pull/1555) - build(deps): Bump the go group with 11 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1554](https://redirect.github.com/getsops/sops/pull/1554) - build(deps): Bump the go group with 10 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1558](https://redirect.github.com/getsops/sops/pull/1558) - build(deps): Bump the ci group with 3 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1559](https://redirect.github.com/getsops/sops/pull/1559) - build(deps): Bump the go group with 5 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1562](https://redirect.github.com/getsops/sops/pull/1562) - build(deps): Bump the ci group across 1 directory with 5 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1564](https://redirect.github.com/getsops/sops/pull/1564) - build(deps): Bump the go group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1565](https://redirect.github.com/getsops/sops/pull/1565) - build(deps): Bump github/codeql-action from 3.25.13 to 3.25.15 in the ci group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1566](https://redirect.github.com/getsops/sops/pull/1566) - build(deps): Bump github.com/docker/docker from 27.0.1+incompatible to 27.1.0+incompatible by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1568](https://redirect.github.com/getsops/sops/pull/1568) - build(deps): Bump the go group with 5 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1575](https://redirect.github.com/getsops/sops/pull/1575) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1574](https://redirect.github.com/getsops/sops/pull/1574) - build(deps): Bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1581](https://redirect.github.com/getsops/sops/pull/1581) - build(deps): Bump the ci group with 3 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1584](https://redirect.github.com/getsops/sops/pull/1584) - Note on the name of the configuration file by [@​ErraticMaker](https://redirect.github.com/ErraticMaker) in [https://github.com/getsops/sops/pull/1569](https://redirect.github.com/getsops/sops/pull/1569) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1586](https://redirect.github.com/getsops/sops/pull/1586) - build(deps): Bump the go group across 1 directory with 15 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1589](https://redirect.github.com/getsops/sops/pull/1589) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1590](https://redirect.github.com/getsops/sops/pull/1590) - build(deps): Bump the go group with 7 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1593](https://redirect.github.com/getsops/sops/pull/1593) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1592](https://redirect.github.com/getsops/sops/pull/1592) - tests: ignore env var SOPS_AGE_KEY_FILE by [@​duthils](https://redirect.github.com/duthils) in [https://github.com/getsops/sops/pull/1595](https://redirect.github.com/getsops/sops/pull/1595) - build(deps): Bump the go group with 12 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1602](https://redirect.github.com/getsops/sops/pull/1602) - build(deps): Bump github.com/opencontainers/runc from 1.1.13 to 1.1.14 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1603](https://redirect.github.com/getsops/sops/pull/1603) - updatekeys subcommand: actually use option `--shamir-secret-sharing-threshold` by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1608](https://redirect.github.com/getsops/sops/pull/1608) - Added example of having age recipients in .sops.yaml by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1607](https://redirect.github.com/getsops/sops/pull/1607) - GitHub Actions linter for Rust formatting by [@​duthils](https://redirect.github.com/duthils) in [https://github.com/getsops/sops/pull/1604](https://redirect.github.com/getsops/sops/pull/1604) - github actions: set rust version globally by [@​duthils](https://redirect.github.com/duthils) in [https://github.com/getsops/sops/pull/1612](https://redirect.github.com/getsops/sops/pull/1612) - Fix `--config` being ignored by `loadConfig` by [@​lopter](https://redirect.github.com/lopter) in [https://github.com/getsops/sops/pull/1613](https://redirect.github.com/getsops/sops/pull/1613) - build(deps): Bump the go group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1618](https://redirect.github.com/getsops/sops/pull/1618) - build(deps): Bump github/codeql-action from 3.26.6 to 3.26.7 in the ci group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1619](https://redirect.github.com/getsops/sops/pull/1619) - unit tests: add coverage for unset by [@​duthils](https://redirect.github.com/duthils) in [https://github.com/getsops/sops/pull/1617](https://redirect.github.com/getsops/sops/pull/1617) - sops_test: homogenize use of asserts by [@​duthils](https://redirect.github.com/duthils) in [https://github.com/getsops/sops/pull/1622](https://redirect.github.com/getsops/sops/pull/1622) - sops_test: add more tests on errors by [@​duthils](https://redirect.github.com/duthils) in [https://github.com/getsops/sops/pull/1624](https://redirect.github.com/getsops/sops/pull/1624) - Add 'check' task to CI that makes sure everything is green by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1621](https://redirect.github.com/getsops/sops/pull/1621) - build(deps): Bump the go group with 10 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1629](https://redirect.github.com/getsops/sops/pull/1629) - build(deps): Bump github/codeql-action from 3.26.7 to 3.26.8 in the ci group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1628](https://redirect.github.com/getsops/sops/pull/1628) - refactor: specify missing file in error message by [@​t3hmrman](https://redirect.github.com/t3hmrman) in [https://github.com/getsops/sops/pull/1625](https://redirect.github.com/getsops/sops/pull/1625) - CI: Build with Go 1.22 and 1.23; update Vault to 1.14 by [@​reneleonhardt](https://redirect.github.com/reneleonhardt) in [https://github.com/getsops/sops/pull/1531](https://redirect.github.com/getsops/sops/pull/1531) - Allow edit subcommand to create files by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1596](https://redirect.github.com/getsops/sops/pull/1596) - Build release with Go 1.22.x by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1615](https://redirect.github.com/getsops/sops/pull/1615) - GHA: fix checkout action version by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1630](https://redirect.github.com/getsops/sops/pull/1630) - Do not encrypt if a key group is empty, or there are no key groups by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1600](https://redirect.github.com/getsops/sops/pull/1600) - updatekeys subcommand: show changes in shamir_threshold by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1609](https://redirect.github.com/getsops/sops/pull/1609) - Dependabot: fix config for Docker, add config for Rust/Cargo by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1632](https://redirect.github.com/getsops/sops/pull/1632) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1634](https://redirect.github.com/getsops/sops/pull/1634) - build(deps): Bump the go group with 7 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1635](https://redirect.github.com/getsops/sops/pull/1635) - Add Cargo.lock for better reproducability of functional tests by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1637](https://redirect.github.com/getsops/sops/pull/1637) - build(deps): Bump the go group with 7 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1639](https://redirect.github.com/getsops/sops/pull/1639) - build(deps): Bump the rust group in /functional-tests with 5 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1638](https://redirect.github.com/getsops/sops/pull/1638) - Update all go deps with 'go get -t -u ./...' by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1640](https://redirect.github.com/getsops/sops/pull/1640) - Do not ignore errors when trying to parse a config file by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1614](https://redirect.github.com/getsops/sops/pull/1614) - Release 3.9.1 by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1642](https://redirect.github.com/getsops/sops/pull/1642) #### New Contributors - [@​ErraticMaker](https://redirect.github.com/ErraticMaker) made their first contribution in [https://github.com/getsops/sops/pull/1569](https://redirect.github.com/getsops/sops/pull/1569) - [@​lopter](https://redirect.github.com/lopter) made their first contribution in [https://github.com/getsops/sops/pull/1613](https://redirect.github.com/getsops/sops/pull/1613) - [@​t3hmrman](https://redirect.github.com/t3hmrman) made their first contribution in [https://github.com/getsops/sops/pull/1625](https://redirect.github.com/getsops/sops/pull/1625) - [@​reneleonhardt](https://redirect.github.com/reneleonhardt) made their first contribution in [https://github.com/getsops/sops/pull/1531](https://redirect.github.com/getsops/sops/pull/1531) **Full Changelog**: https://github.com/getsops/sops/compare/v3.9.0...v3.9.1
sap/component-operator-runtime (github.com/sap/component-operator-runtime) ### [`v0.3.49`](https://redirect.github.com/sap/component-operator-runtime/compare/v0.3.48...v0.3.49) [Compare Source](https://redirect.github.com/sap/component-operator-runtime/compare/v0.3.48...v0.3.49) ### [`v0.3.48`](https://redirect.github.com/sap/component-operator-runtime/compare/v0.3.47...v0.3.48) [Compare Source](https://redirect.github.com/sap/component-operator-runtime/compare/v0.3.47...v0.3.48) ### [`v0.3.47`](https://redirect.github.com/sap/component-operator-runtime/compare/v0.3.46...v0.3.47) [Compare Source](https://redirect.github.com/sap/component-operator-runtime/compare/v0.3.46...v0.3.47) ### [`v0.3.46`](https://redirect.github.com/sap/component-operator-runtime/compare/v0.3.45...v0.3.46) [Compare Source](https://redirect.github.com/sap/component-operator-runtime/compare/v0.3.45...v0.3.46)
golang/go (go) ### [`v1.23.3`](https://redirect.github.com/golang/go/compare/go1.23.2...go1.23.3)
kubernetes/apiextensions-apiserver (k8s.io/apiextensions-apiserver) ### [`v0.31.2`](https://redirect.github.com/kubernetes/apiextensions-apiserver/compare/v0.31.1...v0.31.2) [Compare Source](https://redirect.github.com/kubernetes/apiextensions-apiserver/compare/v0.31.1...v0.31.2)
kubernetes/apimachinery (k8s.io/apimachinery) ### [`v0.31.2`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.31.1...v0.31.2) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.31.1...v0.31.2)
kubernetes/client-go (k8s.io/client-go) ### [`v0.31.2`](https://redirect.github.com/kubernetes/client-go/compare/v0.31.1...v0.31.2) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.31.1...v0.31.2)
kubernetes/code-generator (k8s.io/code-generator) ### [`v0.31.2`](https://redirect.github.com/kubernetes/code-generator/compare/v0.31.1...v0.31.2) [Compare Source](https://redirect.github.com/kubernetes/code-generator/compare/v0.31.1...v0.31.2)
kubernetes/kube-aggregator (k8s.io/kube-aggregator) ### [`v0.31.2`](https://redirect.github.com/kubernetes/kube-aggregator/compare/v0.31.1...v0.31.2) [Compare Source](https://redirect.github.com/kubernetes/kube-aggregator/compare/v0.31.1...v0.31.2)
kubernetes-sigs/controller-runtime (sigs.k8s.io/controller-runtime) ### [`v0.19.1`](https://redirect.github.com/kubernetes-sigs/controller-runtime/releases/tag/v0.19.1) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-runtime/compare/v0.19.0...v0.19.1) #### What's Changed - \[release-0.19] 🌱 Verify PR titles with shell script by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2947](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2947) - \[release-0.19] 🐛 Fakeclient: preserve TypeMeta for PartialObjectMeta resources by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2951](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2951) - \[release-0.19] 🌱 pr-verify: use env var for passing the PR title by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2962](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2962) - \[release-0.19] 🌱 pr-verify: use env var for passing the PR title by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2965](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2965) - \[release-0.19] 🌱 Fix PR verify action by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2974](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2974) - \[release-0.19] :bug: Fakeclient: Fix TOCTOU races by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/2992](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2992) **Full Changelog**: https://github.com/kubernetes-sigs/controller-runtime/compare/v0.19.0...v0.19.1
kubernetes-sigs/controller-tools (sigs.k8s.io/controller-tools) ### [`v0.16.5`](https://redirect.github.com/kubernetes-sigs/controller-tools/releases/tag/v0.16.5) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-tools/compare/v0.16.4...v0.16.5) #### What's Changed - 🐛 pkg/crd: fix a missed type casting panic with new \*types.Alias by [@​mtardy](https://redirect.github.com/mtardy) in [https://github.com/kubernetes-sigs/controller-tools/pull/1079](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1079) - 🐛 pkg/crd: support validation on type alias to basic types by [@​mtardy](https://redirect.github.com/mtardy) in [https://github.com/kubernetes-sigs/controller-tools/pull/1078](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1078) - 🐛 Fix item validation for unhashable markers by [@​sbueringer](https://redirect.github.com/sbueringer) in [https://github.com/kubernetes-sigs/controller-tools/pull/1080](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1080) #### Dependencies - :seedling: Bump actions/checkout from 4.2.0 to 4.2.1 in the all-github-actions group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1075](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1075) - :seedling: Bump the all-go-mod-patch-and-minor group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1082](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1082) - :seedling: Bump the all-github-actions group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1083](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1083) **Full Changelog**: https://github.com/kubernetes-sigs/controller-tools/compare/v0.16.4...v0.16.5 ### [`v0.16.4`](https://redirect.github.com/kubernetes-sigs/controller-tools/releases/tag/v0.16.4) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-tools/compare/v0.16.3...v0.16.4) #### What's Changed - 🏃 Verify PR titles with shell script by [@​sbueringer](https://redirect.github.com/sbueringer) in [https://github.com/kubernetes-sigs/controller-tools/pull/1057](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1057) - 📖 github: update PR template by [@​chrischdi](https://redirect.github.com/chrischdi) in [https://github.com/kubernetes-sigs/controller-tools/pull/1060](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1060) - 🌱 OWNERS: Promote chrischdi for being a reviewer by [@​chrischdi](https://redirect.github.com/chrischdi) in [https://github.com/kubernetes-sigs/controller-tools/pull/1059](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1059) - 🐛 pkg/crd: fix type casting panic with new default `*types.Alias` with Go 1.23 by [@​mtardy](https://redirect.github.com/mtardy) in [https://github.com/kubernetes-sigs/controller-tools/pull/1061](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1061) - :sparkles: Add selectablefield marker by [@​everesio](https://redirect.github.com/everesio) in [https://github.com/kubernetes-sigs/controller-tools/pull/1050](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1050) - 🌱 pr-verify: use env var for passing the PR title by [@​chrischdi](https://redirect.github.com/chrischdi) in [https://github.com/kubernetes-sigs/controller-tools/pull/1067](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1067) #### Dependencies - :seedling: Bump the all-go-mod-patch-and-minor group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1055](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1055) - :seedling: Bump peter-evans/create-pull-request from 7.0.1 to 7.0.2 in the all-github-actions group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1056](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1056) - :seedling: Bump github.com/gobuffalo/flect from 1.0.2 to 1.0.3 in the all-go-mod-patch-and-minor group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1065](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1065) - :seedling: Bump the all-github-actions group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1066](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1066) - :seedling: Bump actions/checkout from 4.1.7 to 4.2.0 in the all-github-actions group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1070](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1070) - :seedling: Bump golang.org/x/tools from 0.25.0 to 0.26.0 in the all-go-mod-patch-and-minor group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1072](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1072) - :seedling: Bump the all-github-actions group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1073](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1073) #### New Contributors - [@​mtardy](https://redirect.github.com/mtardy) made their first contribution in [https://github.com/kubernetes-sigs/controller-tools/pull/1061](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1061) - [@​everesio](https://redirect.github.com/everesio) made their first contribution in [https://github.com/kubernetes-sigs/controller-tools/pull/1050](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1050) **Full Changelog**: https://github.com/kubernetes-sigs/controller-tools/compare/v0.16.3...v0.16.4 ### [`v0.16.3`](https://redirect.github.com/kubernetes-sigs/controller-tools/releases/tag/v0.16.3) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-tools/compare/v0.16.2...v0.16.3) Published binaries on previous v0.16.x releases were reporting an incorrect version. #### What's Changed - :bug: Allow CLI binaries to set a version by [@​josvazg](https://redirect.github.com/josvazg) in [https://github.com/kubernetes-sigs/controller-tools/pull/1049](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1049) - ✨ Allow customizing generated webhook configuration's name by [@​davidxia](https://redirect.github.com/davidxia) in [https://github.com/kubernetes-sigs/controller-tools/pull/1002](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1002) #### Dependencies - :seedling: Bump github.com/onsi/gomega from 1.34.1 to 1.34.2 in the all-go-mod-patch-and-minor group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1047](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1047) - :seedling: Bump tj-actions/changed-files from 45.0.0 to 45.0.1 in the all-github-actions group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1048](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1048) - :seedling: Bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 in the all-github-actions group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/kubernetes-sigs/controller-tools/pull/1052](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1052) #### New Contributors - [@​josvazg](https://redirect.github.com/josvazg) made their first contribution in [https://github.com/kubernetes-sigs/controller-tools/pull/1049](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1049) - [@​davidxia](https://redirect.github.com/davidxia) made their first contribution in [https://github.com/kubernetes-sigs/controller-tools/pull/1002](https://redirect.github.com/kubernetes-sigs/controller-tools/pull/1002) **Full Changelog**: https://github.com/kubernetes-sigs/controller-tools/compare/v0.16.2...v0.16.3

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

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



This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] commented 2 months ago

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

Details:

Package Change
cloud.google.com/go v0.115.0 -> v0.115.1
cloud.google.com/go/auth v0.6.0 -> v0.9.7
cloud.google.com/go/auth/oauth2adapt v0.2.2 -> v0.2.4
cloud.google.com/go/compute/metadata v0.3.0 -> v0.5.2
cloud.google.com/go/iam v1.1.8 -> v1.2.1
cloud.google.com/go/kms v1.18.0 -> v1.20.0
cloud.google.com/go/longrunning v0.5.7 -> v0.6.1
cloud.google.com/go/storage v1.42.0 -> v1.43.0
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0 -> v1.14.0
github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 -> v1.10.0
github.com/ProtonMail/go-crypto v1.1.0-alpha.3-proton -> v1.1.0-beta.0-proton
github.com/aws/aws-sdk-go-v2 v1.30.0 -> v1.31.0
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 -> v1.6.5
github.com/aws/aws-sdk-go-v2/config v1.27.21 -> v1.27.39
github.com/aws/aws-sdk-go-v2/credentials v1.17.21 -> v1.17.37
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.8 -> v1.16.14
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.1 -> v1.17.25
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.12 -> v1.3.18
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.12 -> v2.6.18
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 -> v1.8.1
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.12 -> v1.3.18
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 -> v1.11.5
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.14 -> v1.3.20
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.14 -> v1.11.20
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.12 -> v1.17.18
github.com/aws/aws-sdk-go-v2/service/kms v1.34.1 -> v1.36.3
github.com/aws/aws-sdk-go-v2/service/s3 v1.56.1 -> v1.63.3
github.com/aws/aws-sdk-go-v2/service/sso v1.21.1 -> v1.23.3
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.25.1 -> v1.27.3
github.com/aws/aws-sdk-go-v2/service/sts v1.29.1 -> v1.31.3
github.com/aws/smithy-go v1.20.2 -> v1.21.0
github.com/cloudflare/circl v1.3.9 -> v1.4.0
github.com/cpuguy83/go-md2man/v2 v2.0.4 -> v2.0.5
github.com/fatih/color v1.17.0 -> v1.18.0
github.com/go-jose/go-jose/v4 v4.0.2 -> v4.0.4
github.com/go-openapi/jsonpointer v0.20.2 -> v0.21.0
github.com/go-openapi/swag v0.22.9 -> v0.23.0
github.com/gobuffalo/flect v1.0.2 -> v1.0.3
github.com/google/s2a-go v0.1.7 -> v0.1.8
github.com/googleapis/enterprise-certificate-proxy v0.3.2 -> v0.3.4
github.com/googleapis/gax-go/v2 v2.12.5 -> v2.13.0
github.com/hashicorp/go-sockaddr v1.0.6 -> v1.0.7
github.com/hashicorp/vault/api v1.14.0 -> v1.15.0
github.com/prometheus/client_golang v1.20.4 -> v1.20.5
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.55.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 -> v0.55.0
go.opentelemetry.io/otel v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.28.0
golang.org/x/mod v0.20.0 -> v0.21.0
golang.org/x/net v0.28.0 -> v0.30.0
golang.org/x/oauth2 v0.21.0 -> v0.23.0
golang.org/x/sys v0.24.0 -> v0.26.0
golang.org/x/term v0.23.0 -> v0.25.0
golang.org/x/text v0.17.0 -> v0.19.0
golang.org/x/time v0.7.0 -> v0.8.0
golang.org/x/tools v0.24.0 -> v0.26.0
google.golang.org/api v0.186.0 -> v0.199.0
google.golang.org/genproto v0.0.0-20240624140628-dc46fd24d27d -> v0.0.0-20240930140551-af27646dc61f
google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d -> v0.0.0-20240930140551-af27646dc61f
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240930140551-af27646dc61f
google.golang.org/grpc v1.65.0 -> v1.67.1
google.golang.org/protobuf v1.34.2 -> v1.35.1
k8s.io/api v0.31.1 -> v0.31.2
k8s.io/gengo/v2 v2.0.0-20240228010128-51d4e06bde70 -> v2.0.0-20240826214909-a7b603a56eb7
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 -> v0.0.0-20240827152857-f7e401e7b4c2
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 -> v0.0.0-20241104100929-3ea5e8cea738
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd -> v0.0.0-20241010143419-9aa6b5e7a4b3
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 -> v4.4.2