9beb287cbe2a831e87fdecef4d9b39786fecf068
362 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
955bd964c2 | chore(flux): update image metallb-config 8.4.1 → 8.5.0 (clustertool) (#31203) | ||
|
|
093aa18446 | chore(flux): update image volsync 2.7.0 → 2.8.0 (clustertool) (#31209) | ||
|
|
b0eb46c429 | chore(flux): update image snapshot-controller 3.6.0 → 3.7.0 (clustertool) (#31205) | ||
|
|
d79b6d3c65 | chore(flux): update image traefik-crds 3.4.0 → 3.5.0 (clustertool) (#31207) | ||
|
|
3c4d944e13 | chore(flux): update image traefik 30.3.2 → 30.4.1 (clustertool) (#31206) | ||
|
|
c751abcd70 | chore(flux): update image kubernetes-reflector 6.4.0 → 6.5.0 (clustertool) (#31202) | ||
|
|
3b3ffd7ce4 | chore(flux): update image kubelet-csr-approver 1.3.2 → 1.4.0 (clustertool) (#31200) | ||
|
|
d5ceb5632c | chore(flux): update image kubernetes-dashboard 1.12.1 → 1.13.0 (clustertool) (#31201) | ||
|
|
442baf8839 | chore(flux): update image blocky 16.11.0 → 16.12.0 (clustertool) (#31196) | ||
|
|
f14b4056a1 | chore(flux): update image cert-manager 6.4.2 → 6.5.1 (clustertool) (#31197) | ||
|
|
a47b25ef3b |
chore(flux): update image clusterissuer 9.4.1 → 9.5.0 (clustertool) (#31198)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [clusterissuer](https://truecharts.org/charts/premium/clusterissuer) ([source](https://cert-manager.io/)) | minor | `9.4.1` -> `9.5.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
1c8ffdc793 |
fix(deps): update module github.com/getsops/sops/v3 v3.9.3 → v3.9.4 (clustertool) (#31194)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/getsops/sops/v3](https://redirect.github.com/getsops/sops) | replace | patch | `v3.9.3` -> `v3.9.4` | | [github.com/getsops/sops/v3](https://redirect.github.com/getsops/sops) | require | patch | `v3.9.3` -> `v3.9.4` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>getsops/sops (github.com/getsops/sops/v3)</summary> ### [`v3.9.4`](https://redirect.github.com/getsops/sops/releases/tag/v3.9.4) [Compare Source](https://redirect.github.com/getsops/sops/compare/v3.9.3...v3.9.4) ##### 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.4/sops-v3.9.4.linux.amd64 ##### Move the binary in to your PATH mv sops-v3.9.4.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.4/sops-v3.9.4.checksums.txt curl -LO https://github.com/getsops/sops/releases/download/v3.9.4/sops-v3.9.4.checksums.pem curl -LO https://github.com/getsops/sops/releases/download/v3.9.4/sops-v3.9.4.checksums.sig ##### Verify the checksums file cosign verify-blob sops-v3.9.4.checksums.txt \ --certificate sops-v3.9.4.checksums.pem \ --signature sops-v3.9.4.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.4.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.4.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.4/sops-v3.9.4.intoto.jsonl ##### Verify the provenance of the artifact slsa-verifier verify-artifact <artifact> \ --provenance-path sops-v3.9.4.intoto.jsonl \ --source-uri github.com/getsops/sops \ --source-tag v3.9.4 ``` ##### 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.4` - `ghcr.io/getsops/sops:v3.9.4-alpine` ##### Quay.io - `quay.io/getsops/sops:v3.9.4` - `quay.io/getsops/sops:v3.9.4-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.4 \ --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 `<binary>.spdx.sbom.json`. ##### What's Changed - build(deps): Bump the go group with 5 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1727](https://redirect.github.com/getsops/sops/pull/1727) - build(deps): Bump tempfile from 3.14.0 to 3.15.0 in /functional-tests in the rust group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1728](https://redirect.github.com/getsops/sops/pull/1728) - build(deps): Bump the go group with 16 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1732](https://redirect.github.com/getsops/sops/pull/1732) - build(deps): Bump the ci group with 3 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1730](https://redirect.github.com/getsops/sops/pull/1730) - build(deps): Bump serde_json from 1.0.134 to 1.0.135 in /functional-tests in the rust group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1731](https://redirect.github.com/getsops/sops/pull/1731) - build(deps): Bump the go group with 12 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1734](https://redirect.github.com/getsops/sops/pull/1734) - build(deps): Bump serde_json from 1.0.135 to 1.0.137 in /functional-tests in the rust group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1735](https://redirect.github.com/getsops/sops/pull/1735) - Fix ToString for AWS KMS to include role, context, and profile by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1733](https://redirect.github.com/getsops/sops/pull/1733) - build(deps): Bump the ci group with 3 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1738](https://redirect.github.com/getsops/sops/pull/1738) - build(deps): Bump the go group with 6 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/getsops/sops/pull/1739](https://redirect.github.com/getsops/sops/pull/1739) - Release 3.9.4 by [@​felixfontein](https://redirect.github.com/felixfontein) in [https://github.com/getsops/sops/pull/1740](https://redirect.github.com/getsops/sops/pull/1740) **Full Changelog**: https://github.com/getsops/sops/compare/v3.9.3...v3.9.4 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
4cd744dd52 | chore(flux): update image cert-manager 6.4.1 → 6.4.2 (clustertool) (#31165) | ||
|
|
30d7091d6c |
fix(deps): update module sigs.k8s.io/controller-runtime v0.19.5 → v0.20.1 (clustertool) (#31123)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sigs.k8s.io/controller-runtime](https://redirect.github.com/kubernetes-sigs/controller-runtime) | require | minor | `v0.19.5` -> `v0.20.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>kubernetes-sigs/controller-runtime (sigs.k8s.io/controller-runtime)</summary> ### [`v0.20.1`](https://redirect.github.com/kubernetes-sigs/controller-runtime/releases/tag/v0.20.1) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-runtime/compare/v0.20.0...v0.20.1) #### What's Changed - 🐛 Check to see if custom source implements fmt.Stringer when logging by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/3077](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3077) - 🐛 cache: clone maps to prevent data race when concurrently creating caches using the same options by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/3079](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3079) - 🐛 support WaitForSync in custom TypedSyncingSource by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/3086](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3086) - 🌱 Add debug logging for the state of the priority queue by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/3088](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3088) - 🐛 Priorityqueue: Yet another queue_depth metric fix by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/3089](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3089) **Full Changelog**: https://github.com/kubernetes-sigs/controller-runtime/compare/v0.20.0...v0.20.1 ### [`v0.20.0`](https://redirect.github.com/kubernetes-sigs/controller-runtime/releases/tag/v0.20.0) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-runtime/compare/v0.19.5...v0.20.0) #### Highlights - Based on k8s.io/\* v1.32 libraries and minimum Go version is now v1.23 - New experimental priority queue feature - More details in [#​3013](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3013) and [#​2374](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2374) - Can be enabled via manager.Options.Controller.UsePriorityQueue - Please give it a try and provide feedback in [#​2374](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2374) - [AggregatedDiscovery](https://redirect.github.com/kubernetes/enhancements/issues/3352) is automatically used when available ([#​2901](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2901)) - As usual, many improvements to the fake client #### Changes since v0.19.0 #### ⚠️ Breaking Changes - Bump to k8s.io/\* v1.32 libraries ([#​2971](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2971) [#​2990](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2990) [#​3001](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3001) [#​3007](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3007) [#​3029](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3029) [#​3043](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3043)) - logging: Stop deduplicating API warnings by default ([#​2953](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2953)) - webhook: Stop deleting unknown fields in CustomDefaulter ([#​2982](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2982) [#​3056](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3056)) - webhook: Remove deprecated Defaulter and Validator ([#​2877](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2877) [#​2945](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2945)) - cluster: Remove deprecated SyncPeriod option ([#​2970](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2970)) #### ✨ New Features - cache: Add EnableWatchBookmarks option (defaults to true) ([#​3017](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3017)) - cache: Export NewInformer option ([#​3061](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3061)) - cert-watcher: Add polling ([#​3020](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3020) [#​3050](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3050)) - controller: Add experimental priority queue (off per default) ([#​3013](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3013) [#​3014](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3014) [#​3060](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3060) [#​3066](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3066)) - fake client: Allow adding indexes at runtime ([#​3021](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3021)) - fake client: Add support for ServiceAccountToken subresource ([#​2969](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2969)) - restmapper: Use AggregatedDiscovery if available ([#​2901](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2901)) - util: Add HasOwnerReference func ([#​2882](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2882)) - webhook: Add custom path option ([#​2998](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2998)) #### 🐛 Bug Fixes - controller: Error when source.Start() never returns ([#​2997](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2997) [#​3006](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3006) [#​3008](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3008)) - fake client: Don't return items on invalid selector ([#​3022](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3022)) - fake client: Fix TOCTOU races ([#​2980](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2980)) - fake client: Preserve TypeMeta during Get call with PartialObjectMeta ([#​2949](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2949)) - fake client: Preserve TypeMeta during List call with UnstructuredList ([#​3074](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3074)) - manager: Fix RenewDeadline typo in leader election ([#​3032](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3032)) - manager: Use leader elector with client timeout ([#​3028](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3028) [#​3034](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3034)) #### 🌱 Others - cache: Switch to Go 1.23+ stdlib `maps`/`slices` packages ([#​3012](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3012)) - controller: Log the syncing source when WaitForSync fails ([#​3016](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3016)) - setup-envtest: drop support for GCS ([#​2915](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2915)) - Some fixes for typos ([#​3011](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3011) [#​3033](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3033) [#​2993](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2993)) #### 🌱 CI - PR-verify: Verify PR titles with shell script ([#​2944](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2944) [#​2961](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2961) [#​2964](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2964) [#​2973](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2973)) - Remove gosec linter ([#​3064](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3064)) - Upgrade golangci-lint to v1.61.0 ([#​2950](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2950)) 📖 Additionally, there have been 7 contributions to our documentation. ([#​2942](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2942), [#​2985](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2985), [#​2996](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2996), [#​3002](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3002), [#​3039](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3039), [#​3062](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3062)) #### Dependencies ##### Added *Nothing has changed.* ##### Changed - cel.dev/expr: v0.15.0 → v0.18.0 - github.com/Azure/go-ansiterm: [d185dfc → 306776e](https://redirect.github.com/Azure/go-ansiterm/compare/d185dfc...306776e) - github.com/go-openapi/jsonpointer: [v0.19.6 → v0.21.0](https://redirect.github.com/go-openapi/jsonpointer/compare/v0.19.6...v0.21.0) - github.com/go-openapi/swag: [v0.22.4 → v0.23.0](https://redirect.github.com/go-openapi/swag/compare/v0.22.4...v0.23.0) - github.com/google/btree: [v1.0.1 → v1.1.3](https://redirect.github.com/google/btree/compare/v1.0.1...v1.1.3) - github.com/google/cel-go: [v0.20.1 → v0.22.0](https://redirect.github.com/google/cel-go/compare/v0.20.1...v0.22.0) - github.com/google/pprof: [4bfdf5a → d1b30fe](https://redirect.github.com/google/pprof/compare/4bfdf5a...d1b30fe) - github.com/gregjones/httpcache: [9cad4c3 → 901d907](https://redirect.github.com/gregjones/httpcache/compare/9cad4c3...901d907) - github.com/jonboulle/clockwork: [v0.2.2 → v0.4.0](https://redirect.github.com/jonboulle/clockwork/compare/v0.2.2...v0.4.0) - github.com/moby/spdystream: [v0.4.0 → v0.5.0](https://redirect.github.com/moby/spdystream/compare/v0.4.0...v0.5.0) - github.com/onsi/ginkgo/v2: [v2.19.0 → v2.21.0](https://redirect.github.com/onsi/ginkgo/compare/v2.19.0...v2.21.0) - github.com/onsi/gomega: [v1.33.1 → v1.35.1](https://redirect.github.com/onsi/gomega/compare/v1.33.1...v1.35.1) - github.com/stoewer/go-strcase: [v1.2.0 → v1.3.0](https://redirect.github.com/stoewer/go-strcase/compare/v1.2.0...v1.3.0) - github.com/xiang90/probing: [43a291a → a49e3df](https://redirect.github.com/xiang90/probing/compare/43a291a...a49e3df) - go.etcd.io/bbolt: v1.3.9 → v1.3.11 - go.etcd.io/etcd/api/v3: v3.5.14 → v3.5.16 - go.etcd.io/etcd/client/pkg/v3: v3.5.14 → v3.5.16 - go.etcd.io/etcd/client/v2: v2.305.13 → v2.305.16 - go.etcd.io/etcd/client/v3: v3.5.14 → v3.5.16 - go.etcd.io/etcd/pkg/v3: v3.5.13 → v3.5.16 - go.etcd.io/etcd/raft/v3: v3.5.13 → v3.5.16 - go.etcd.io/etcd/server/v3: v3.5.13 → v3.5.16 - go.uber.org/zap: v1.26.0 → v1.27.0 - golang.org/x/crypto: v0.24.0 → v0.28.0 - golang.org/x/exp: [`f3d0a9c`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/f3d0a9c) → [`8a7402a`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/8a7402a) - golang.org/x/mod: v0.17.0 → v0.21.0 - golang.org/x/net: v0.26.0 → v0.30.0 - golang.org/x/oauth2: v0.21.0 → v0.23.0 - golang.org/x/sync: v0.7.0 → v0.8.0 - golang.org/x/sys: v0.21.0 → v0.26.0 - golang.org/x/telemetry: [`f48c80b`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/f48c80b) → [`bda5523`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/bda5523) - golang.org/x/term: v0.21.0 → v0.25.0 - golang.org/x/text: v0.16.0 → v0.19.0 - golang.org/x/time: v0.3.0 → v0.7.0 - golang.org/x/tools: [`e35e4cc`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/e35e4cc) → v0.26.0 - golang.org/x/xerrors: [`04be3eb`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/04be3eb) → [`5ec99f8`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/5ec99f8) - google.golang.org/genproto/googleapis/api: [`5315273`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/5315273) → [`f6391c0`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/f6391c0) - google.golang.org/genproto/googleapis/rpc: [`f6361c8`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/f6361c8) → [`f6391c0`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/f6391c0) - google.golang.org/genproto: [`b8732ec`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/b8732ec) → [`ef43131`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/ef43131) - google.golang.org/protobuf: v1.34.2 → v1.35.1 - k8s.io/api: v0.31.0 → v0.32.0 - k8s.io/apiextensions-apiserver: v0.31.0 → v0.32.0 - k8s.io/apimachinery: v0.31.0 → v0.32.0 - k8s.io/apiserver: v0.31.0 → v0.32.0 - k8s.io/client-go: v0.31.0 → v0.32.0 - k8s.io/code-generator: v0.31.0 → v0.32.0 - k8s.io/component-base: v0.31.0 → v0.32.0 - k8s.io/gengo/v2: [`51d4e06`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/51d4e06) → [`2b36238`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/2b36238) - k8s.io/kms: v0.31.0 → v0.32.0 - k8s.io/kube-openapi: [`70dd376`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/70dd376) → [`32ad38e`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/32ad38e) - k8s.io/utils: [`18e509b`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/18e509b) → [`3ea5e8c`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/3ea5e8c) - sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.30.3 → v0.31.0 - sigs.k8s.io/json: [`bc3834c`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/bc3834c) → [`9aa6b5e`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/9aa6b5e) - sigs.k8s.io/structured-merge-diff/v4: v4.4.1 → v4.4.2 ##### Removed - github.com/golang/groupcache: [41bb18b](https://redirect.github.com/golang/groupcache/tree/41bb18b) - github.com/imdario/mergo: [v0.3.6](https://redirect.github.com/imdario/mergo/tree/v0.3.6) *Thanks to all our contributors!* 😊 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
0b265129fb | chore(flux): update image prometheus-operator 9.3.0 → 9.4.0 (clustertool) (#31150) | ||
|
|
a1dccc96cb |
chore(flux): update image blocky 16.10.1 → 16.11.0 (clustertool) (#31149)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [blocky](https://truecharts.org/charts/premium/blocky) ([source](https://0xerr0r.github.io/blocky/)) | minor | `16.10.1` -> `16.11.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
ff92b0ce2a | chore(flux): update image traefik 30.3.1 → 30.3.2 (clustertool) (#31141) | ||
|
|
5c95ff4072 |
chore(deps): update ghcr.io/siderolabs/installer docker tag to v1.9.2 (clustertool) (#30992)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/siderolabs/installer](https://redirect.github.com/siderolabs/talos) | patch | `v1.9.1` -> `v1.9.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (ghcr.io/siderolabs/installer)</summary> ### [`v1.9.2`](https://redirect.github.com/siderolabs/talos/releases/tag/v1.9.2) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.9.1...v1.9.2) ##### [Talos 1.9.2](https://redirect.github.com/siderolabs/talos/releases/tag/v1.9.2) (2025-01-16) Welcome to the v1.9.2 release of Talos! Please try out the release binaries and report any issues at https://github.com/siderolabs/talos/issues. ##### auditd Kernel parameter `talos.auditd.disabled=1` can be used to disable Talos built-in `auditd` service. ##### kube-apiserver Authorization Config When using `.cluster.apiServer.authorizationConfig` the user provided order for the authorizers is honoured and `Node` and `RBAC` authorizers are always added to the end if not explicitly specified. Eg: If user provides only `Webhook` authorizer, the final order will be `Webhook`, `Node`, `RBAC`. To provide a specific order for `Node` or `RBAC` explicitly, user can provide the authorizer in the order they want. Eg: ```yaml cluster: apiServer: authorizationConfig: - type: Node name: Node - type: Webhook name: Webhook webhook: connectionInfo: type: InClusterConfig ... - type: RBAC name: rbac ``` Usage of `authorization-mode` CLI argument will not support this form of customization. ##### Component Updates - Linux: 6.12.9 - runc: 1.2.4 - containerd: 2.0.2 Talos is built with Go 1.23.4. ##### Contributors - Andrey Smirnov - Dmitry Sharshakov - L.J. Hanson - Noel Georgi - Skyler Mäntysaari - TomyLobo ##### Changes <details><summary>18 commits</summary> <p> - [@​`09758b3`](https://redirect.github.com/siderolabs/talos/commit/09758b3f6) release(v1.9.2): prepare release - [@​`207f863`](https://redirect.github.com/siderolabs/talos/commit/207f86320) feat: update containerd to 2.0.2 - [@​`582064d`](https://redirect.github.com/siderolabs/talos/commit/582064d9c) fix: add informer resync period for node status watcher - [@​`244fd6e`](https://redirect.github.com/siderolabs/talos/commit/244fd6e43) feat: add a kernel parameter to disable built-in auditd - [@​`28327e0`](https://redirect.github.com/siderolabs/talos/commit/28327e001) fix: kube-apiserver authorizers order - [@​`ff9aa80`](https://redirect.github.com/siderolabs/talos/commit/ff9aa806a) fix: a couple of imager panics/crashes - [@​`44e2cc9`](https://redirect.github.com/siderolabs/talos/commit/44e2cc91a) feat: update Linux to 6.12.9 - [@​`9fd295b`](https://redirect.github.com/siderolabs/talos/commit/9fd295b5f) fix: detect GPT before ZFS - [@​`7b59573`](https://redirect.github.com/siderolabs/talos/commit/7b59573de) fix: extfs repair and resize - [@​`5f6bfe0`](https://redirect.github.com/siderolabs/talos/commit/5f6bfe02a) fix: merge of VolumeConfig documents with sizes - [@​`0c05e1c`](https://redirect.github.com/siderolabs/talos/commit/0c05e1cd3) feat: update Linux to 6.12.8 - [@​`b61ab0a`](https://redirect.github.com/siderolabs/talos/commit/b61ab0a3d) fix: partition alignment on disks with 4k sectors - [@​`c4a69d3`](https://redirect.github.com/siderolabs/talos/commit/c4a69d386) fix: yet another dashboard panic - [@​`dec3c6e`](https://redirect.github.com/siderolabs/talos/commit/dec3c6e5b) fix: disable NRI plugin in a different way - [@​`dfb54c8`](https://redirect.github.com/siderolabs/talos/commit/dfb54c872) fix: request previous IP address in discovery - [@​`6b1fe3d`](https://redirect.github.com/siderolabs/talos/commit/6b1fe3df3) fix: mount selinuxfs only when SELinux is enabled - [@​`5e893e1`](https://redirect.github.com/siderolabs/talos/commit/5e893e1f5) fix: update field name for bus path disk selector - [@​`9219fc0`](https://redirect.github.com/siderolabs/talos/commit/9219fc017) fix: exclude disks with empty transport for disk selector </p> </details> ##### Changes from siderolabs/pkgs <details><summary>6 commits</summary> <p> - [siderolabs/pkgs@`c1f06e5`](https://redirect.github.com/siderolabs/pkgs/commit/c1f06e5) feat: update containerd to v2.0.2 - [siderolabs/pkgs@`ef38c38`](https://redirect.github.com/siderolabs/pkgs/commit/ef38c38) feat: update Linux to 6.12.9 - [siderolabs/pkgs@`a7487d6`](https://redirect.github.com/siderolabs/pkgs/commit/a7487d6) fix: adjust kernel options around ACPI/PCI/EFI - [siderolabs/pkgs@`376259a`](https://redirect.github.com/siderolabs/pkgs/commit/376259a) feat: update Linux to 6.12.8 - [siderolabs/pkgs@`8e435cd`](https://redirect.github.com/siderolabs/pkgs/commit/8e435cd) fix: update config-arm64 to add Rasperry Pi watchdog support - [siderolabs/pkgs@`daabb47`](https://redirect.github.com/siderolabs/pkgs/commit/daabb47) fix: dvb was missing I2C_MUX support and si2168 driver </p> </details> ##### Dependency Changes - **github.com/siderolabs/go-blockdevice/v2** v2.0.9 -> v2.0.11 - **github.com/siderolabs/pkgs** v1.9.0-15-g45c4ba4 -> v1.9.0-21-gc1f06e5 - **github.com/siderolabs/talos/pkg/machinery** v1.9.1 -> v1.9.2 Previous release can be found at [v1.9.1](https://redirect.github.com/siderolabs/talos/releases/tag/v1.9.1) ##### Images ghcr.io/siderolabs/flannel:v0.26.1 registry.k8s.io/coredns/coredns:v1.12.0 gcr.io/etcd-development/etcd:v3.5.17 registry.k8s.io/kube-apiserver:v1.32.0 registry.k8s.io/kube-controller-manager:v1.32.0 registry.k8s.io/kube-scheduler:v1.32.0 registry.k8s.io/kube-proxy:v1.32.0 ghcr.io/siderolabs/kubelet:v1.32.0 ghcr.io/siderolabs/installer:v1.9.2 registry.k8s.io/pause:3.10 </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiLCJzeXN0ZW0tdXBncmFkZSIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
45b9ad7982 |
chore(deps): update ghcr.io/siderolabs/kubelet docker tag to v1.32.1 (clustertool) (#30993)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/siderolabs/kubelet](https://redirect.github.com/siderolabs/kubelet) | patch | `v1.32.0` -> `v1.32.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/kubelet (ghcr.io/siderolabs/kubelet)</summary> ### [`v1.32.1`](https://redirect.github.com/siderolabs/kubelet/compare/v1.32.0...v1.32.1) [Compare Source](https://redirect.github.com/siderolabs/kubelet/compare/v1.32.0...v1.32.1) </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiLCJzeXN0ZW0tdXBncmFkZSIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
ebe8a041d2 |
fix(deps): update module sigs.k8s.io/controller-runtime v0.19.4 → v0.19.5 (clustertool) (#31094)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sigs.k8s.io/controller-runtime](https://redirect.github.com/kubernetes-sigs/controller-runtime) | require | patch | `v0.19.4` -> `v0.19.5` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>kubernetes-sigs/controller-runtime (sigs.k8s.io/controller-runtime)</summary> ### [`v0.19.5`](https://redirect.github.com/kubernetes-sigs/controller-runtime/releases/tag/v0.19.5) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-runtime/compare/v0.19.4...v0.19.5) #### What's Changed - 🐛 cache: clone maps to prevent data race when concurrently creating caches using the same options by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [https://github.com/kubernetes-sigs/controller-runtime/pull/3080](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3080) - 🐛 support WaitForSync in custom TypedSyncingSource by [@​tareksha](https://redirect.github.com/tareksha) in [https://github.com/kubernetes-sigs/controller-runtime/pull/3087](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3087) **Full Changelog**: https://github.com/kubernetes-sigs/controller-runtime/compare/v0.19.4...v0.19.5 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
2e678bc8c6 |
fix(deps): update module sigs.k8s.io/kustomize/api v0.18.0 → v0.19.0 (clustertool) (#30922)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sigs.k8s.io/kustomize/api](https://redirect.github.com/kubernetes-sigs/kustomize) | require | minor | `v0.18.0` -> `v0.19.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
d77eaa266d |
fix(deps): update module github.com/go-git/go-git/v5 v5.13.1 → v5.13.2 (clustertool) (#31093)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/go-git/go-git/v5](https://redirect.github.com/go-git/go-git) | require | patch | `v5.13.1` -> `v5.13.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>go-git/go-git (github.com/go-git/go-git/v5)</summary> ### [`v5.13.2`](https://redirect.github.com/go-git/go-git/releases/tag/v5.13.2) [Compare Source](https://redirect.github.com/go-git/go-git/compare/v5.13.1...v5.13.2) #### What's Changed - plumbing: use the correct user agent string. Fixes [#​883](https://redirect.github.com/go-git/go-git/issues/883) by [@​uragirii](https://redirect.github.com/uragirii) in [https://github.com/go-git/go-git/pull/1364](https://redirect.github.com/go-git/go-git/pull/1364) - build: bump golang.org/x/sys from 0.28.0 to 0.29.0 in the golang-org group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1365](https://redirect.github.com/go-git/go-git/pull/1365) - build: bump the golang-org group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1367](https://redirect.github.com/go-git/go-git/pull/1367) - build: bump github.com/ProtonMail/go-crypto from 1.1.3 to 1.1.4 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1368](https://redirect.github.com/go-git/go-git/pull/1368) - build: bump github.com/go-git/go-billy/v5 from 5.6.1 to 5.6.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1378](https://redirect.github.com/go-git/go-git/pull/1378) - build: bump github/codeql-action from 3.28.0 to 3.28.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1376](https://redirect.github.com/go-git/go-git/pull/1376) - build: bump github.com/elazarl/goproxy from 1.2.3 to 1.4.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1377](https://redirect.github.com/go-git/go-git/pull/1377) - git: worktree, fix restoring dot slash files (backported to v5). Fixes [#​1176](https://redirect.github.com/go-git/go-git/issues/1176) by [@​BeChris](https://redirect.github.com/BeChris) in [https://github.com/go-git/go-git/pull/1361](https://redirect.github.com/go-git/go-git/pull/1361) - build: bump github.com/pjbgf/sha1cd from 0.3.0 to 0.3.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1392](https://redirect.github.com/go-git/go-git/pull/1392) - git: worktree_status, fix adding dot slash files to working tree (backported to v5). Fixes [#​1150](https://redirect.github.com/go-git/go-git/issues/1150) by [@​BeChris](https://redirect.github.com/BeChris) in [https://github.com/go-git/go-git/pull/1359](https://redirect.github.com/go-git/go-git/pull/1359) - build: bump github.com/ProtonMail/go-crypto from 1.1.4 to 1.1.5 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1383](https://redirect.github.com/go-git/go-git/pull/1383) **Full Changelog**: https://github.com/go-git/go-git/compare/v5.13.1...v5.13.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
1ced9e0181 |
fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.14 → v3.0.16 (clustertool) (#31092)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/budimanjojo/talhelper/v3](https://redirect.github.com/budimanjojo/talhelper) | require | patch | `v3.0.14` -> `v3.0.16` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>budimanjojo/talhelper (github.com/budimanjojo/talhelper/v3)</summary> ### [`v3.0.16`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.16) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.15...v3.0.16) #### Changelog - [`0367148`](https://redirect.github.com/budimanjojo/talhelper/commit/0367148de6cb16b90df6275d5b97412a5b8cdded) feat: update Scoop for talhelper version v3.0.15 - [`43414c9`](https://redirect.github.com/budimanjojo/talhelper/commit/43414c92fcca8493b5e262a6aa5d415656587499) feat: update flake ([#​808](https://redirect.github.com/budimanjojo/talhelper/issues/808)) - [`5084e42`](https://redirect.github.com/budimanjojo/talhelper/commit/5084e42f154ca1c87e111f517c96b46ffab7408c) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.15 - [`d4bd660`](https://redirect.github.com/budimanjojo/talhelper/commit/d4bd6600fcdc1b64be0616999add7623781c25b9) fix: use the commit where `busPath` is not broken ### [`v3.0.15`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.15) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.14...v3.0.15) #### Changelog - [`7783fb2`](https://redirect.github.com/budimanjojo/talhelper/commit/7783fb21f4785aefad0fce9d6d5b971058698b2a) chore(container): update alpine docker tag to v3.21.2 - [`c1f69ec`](https://redirect.github.com/budimanjojo/talhelper/commit/c1f69ec68bf46fe35d082e7aef036f1263b5fd91) chore(container): update bitnami/kubectl docker tag to v1.32.1 - [`fc7e91f`](https://redirect.github.com/budimanjojo/talhelper/commit/fc7e91f97eb44ae93f0f3abf754e3f17953402b8) chore(container): update ghcr.io/getsops/sops docker tag to v3.9.3 - [`9278998`](https://redirect.github.com/budimanjojo/talhelper/commit/927899891b87f117a8d4785416b110057e4dba8e) chore(container): update ghcr.io/siderolabs/talosctl docker tag to v1.9.2 - [`6e68ba9`](https://redirect.github.com/budimanjojo/talhelper/commit/6e68ba91953c0668d07a0ee8c7433d613b059dfc) chore(container): update golangci/golangci-lint docker tag to v1.63.3 - [`588bafa`](https://redirect.github.com/budimanjojo/talhelper/commit/588bafaddaee6621bdfcdf6e52cb896102e6947c) chore(container): update golangci/golangci-lint docker tag to v1.63.4 - [`2920825`](https://redirect.github.com/budimanjojo/talhelper/commit/2920825b232847f1aed10510a3eeba02c35952b6) chore(container): update goreleaser/goreleaser docker tag to v2.5.1 - [`4972d55`](https://redirect.github.com/budimanjojo/talhelper/commit/4972d5583dad91892985e895c208146ffd3451e8) chore(deps): update dependency siderolabs/talos to v1.9.2 - [`de942ea`](https://redirect.github.com/budimanjojo/talhelper/commit/de942ea79a2b1c6ee7ac8c36ed16a526b53cd39f) chore(github-action): update renovatebot/github-action action to v41.0.8 - [`5add3f2`](https://redirect.github.com/budimanjojo/talhelper/commit/5add3f2994c40d6b91f8b1a11712dd3e0b165e52) chore(github-action): update renovatebot/github-action action to v41.0.9 - [`389f130`](https://redirect.github.com/budimanjojo/talhelper/commit/389f13086a9e8f25de82d0f52d704cc73833ecbe) chore(schema): update talconfig.yaml JSON schema ([#​788](https://redirect.github.com/budimanjojo/talhelper/issues/788)) - [`0d864a6`](https://redirect.github.com/budimanjojo/talhelper/commit/0d864a61e62b4c7b7f2e76c45ced1b484c87772a) chore(schema): update talconfig.yaml JSON schema ([#​797](https://redirect.github.com/budimanjojo/talhelper/issues/797)) - [`b6a4040`](https://redirect.github.com/budimanjojo/talhelper/commit/b6a4040e8c2fd4fe8c2bc316d9ddd355eb94bc5b) chore(schema): update talos-extensions.yaml JSON schema - [`7efa54c`](https://redirect.github.com/budimanjojo/talhelper/commit/7efa54ca8b97fa72655695d06d51d742ec256aff) chore(schema): update talos-extensions.yaml JSON schema - [`17b4c61`](https://redirect.github.com/budimanjojo/talhelper/commit/17b4c6130a6bc345e15d0a033d97e7554f0bbf5a) chore(schema): update talos-extensions.yaml JSON schema - [`2364766`](https://redirect.github.com/budimanjojo/talhelper/commit/2364766ec80fdeb72cb5c551e392dd1ed0a46202) chore(schema): update talos-extensions.yaml JSON schema ([#​796](https://redirect.github.com/budimanjojo/talhelper/issues/796)) - [`4101114`](https://redirect.github.com/budimanjojo/talhelper/commit/4101114e41b525a443c134594f3698e9e318d715) chore(schema): update talos-extensions.yaml JSON schema ([#​799](https://redirect.github.com/budimanjojo/talhelper/issues/799)) - [`7fa9b87`](https://redirect.github.com/budimanjojo/talhelper/commit/7fa9b87d5be9dc459b4ea8fd40c78f7adc60e2c3) feat(config)!: rename `isoSchematic` to `imageSchematic` - [`51c2516`](https://redirect.github.com/budimanjojo/talhelper/commit/51c2516c67e97f638ad2aac2e886e2e25a47f20e) feat(config): ad `volumes` field for `VolumeConfig` manifest - [`2566bb6`](https://redirect.github.com/budimanjojo/talhelper/commit/2566bb656c28fd00b10695a6570b647629cfec5e) feat(genurl)!: replace `genurl iso` subcommand with `genurl image` - [`4609a14`](https://redirect.github.com/budimanjojo/talhelper/commit/4609a14824574a6593858626f5ca05a2af54420b) feat(readme): thank you [@​roachmanfp](https://redirect.github.com/roachmanfp) for the sponsor! - [`4e864b0`](https://redirect.github.com/budimanjojo/talhelper/commit/4e864b08383295f7eda97b738203aefdaec0143a) feat: add v1.10 to supported version - [`5216fc9`](https://redirect.github.com/budimanjojo/talhelper/commit/5216fc925cf54960d3fab897190ecf59836805ba) feat: update Scoop for talhelper version v3.0.14 - [`8a66fb0`](https://redirect.github.com/budimanjojo/talhelper/commit/8a66fb0f75db0877ba9c5a41c78e25dd2ce26ea1) feat: update flake ([#​777](https://redirect.github.com/budimanjojo/talhelper/issues/777)) - [`d642e01`](https://redirect.github.com/budimanjojo/talhelper/commit/d642e01d4c934eea58a5786633af20b109b77f2d) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.14 - [`6bc01d2`](https://redirect.github.com/budimanjojo/talhelper/commit/6bc01d25e4f462df2d67ff8af2ba1a559503b835) fix(deps): update module github.com/getsops/sops/v3 to v3.9.3 - [`c6a2d12`](https://redirect.github.com/budimanjojo/talhelper/commit/c6a2d12a0aee8a0b47b9882a0de0fee4fc632029) fix(deps): update module github.com/google/go-containerregistry to v0.20.3 - [`161a46a`](https://redirect.github.com/budimanjojo/talhelper/commit/161a46a0b91341fb881a55ea48b50e5ccd02cfbd) fix(deps): update module github.com/invopop/jsonschema to v0.13.0 - [`96aef7c`](https://redirect.github.com/budimanjojo/talhelper/commit/96aef7c32c7535045c0014acf31f005c57158e83) fix(go): fix go refusing to run </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
d3d9291ea4 |
chore(flux): update helm release longhorn 1.7.2 → 1.8.0 (clustertool) (#31096)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [longhorn](https://redirect.github.com/longhorn/longhorn) ([source](https://redirect.github.com/longhorn/charts)) | minor | `1.7.2` -> `1.8.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>longhorn/charts (longhorn)</summary> ### [`v1.8.0`](https://redirect.github.com/longhorn/charts/releases/tag/longhorn-1.8.0) [Compare Source](https://redirect.github.com/longhorn/charts/compare/longhorn-1.7.2...longhorn-1.8.0) Longhorn is a distributed block storage system for Kubernetes. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
5e83495689 |
fix(deps): update kubernetes packages v0.32.0 → v0.32.1 (clustertool) (patch) (#31091)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [k8s.io/api](https://redirect.github.com/kubernetes/api) | require | patch | `v0.32.0` -> `v0.32.1` | | [k8s.io/apimachinery](https://redirect.github.com/kubernetes/apimachinery) | require | patch | `v0.32.0` -> `v0.32.1` | | [k8s.io/client-go](https://redirect.github.com/kubernetes/client-go) | require | patch | `v0.32.0` -> `v0.32.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>kubernetes/api (k8s.io/api)</summary> ### [`v0.32.1`](https://redirect.github.com/kubernetes/api/compare/v0.32.0...v0.32.1) [Compare Source](https://redirect.github.com/kubernetes/api/compare/v0.32.0...v0.32.1) </details> <details> <summary>kubernetes/apimachinery (k8s.io/apimachinery)</summary> ### [`v0.32.1`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.32.0...v0.32.1) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.32.0...v0.32.1) </details> <details> <summary>kubernetes/client-go (k8s.io/client-go)</summary> ### [`v0.32.1`](https://redirect.github.com/kubernetes/client-go/compare/v0.32.0...v0.32.1) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.32.0...v0.32.1) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
e4f6300e26 | chore(flux): update image metallb-config 8.4.0 → 8.4.1 (clustertool) (#31068) | ||
|
|
63ae6a2b6a | chore(flux): update image spegel 2.2.1 → 2.2.2 (clustertool) (#31069) | ||
|
|
5edd0795cb | chore(flux): update image traefik 30.3.0 → 30.3.1 (clustertool) (#31070) | ||
|
|
3f03284d8d |
chore(flux): update image clusterissuer 9.4.0 → 9.4.1 (clustertool) (#31067)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [clusterissuer](https://truecharts.org/charts/premium/clusterissuer) ([source](https://cert-manager.io/)) | patch | `9.4.0` -> `9.4.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
b69fc4cd35 |
fix(deps): update module helm.sh/helm/v3 v3.16.4 → v3.17.0 (clustertool) (#30966)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [helm.sh/helm/v3](https://redirect.github.com/helm/helm) | require | minor | `v3.16.4` -> `v3.17.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>helm/helm (helm.sh/helm/v3)</summary> ### [`v3.17.0`](https://redirect.github.com/helm/helm/releases/tag/v3.17.0): Helm v3.17.0 [Compare Source](https://redirect.github.com/helm/helm/compare/v3.16.4...v3.17.0) Helm v3.17.0 is a feature release. Users are encouraged to upgrade for the best experience. The community keeps growing, and we'd love to see you there! - Join the discussion in [Kubernetes Slack](https://kubernetes.slack.com): - for questions and just to hang out - for discussing PRs, code, and bugs - Hang out at the Public Developer Call: Thursday, 9:30 Pacific via [Zoom](https://zoom.us/j/696660622) - Test, debug, and contribute charts: [ArtifactHub/packages](https://artifacthub.io/packages/search?kind=0) #### Notable Changes - Allow pulling and installation by OCI digest - Annotations and dependencies are now in chart metadata output - New `--take-ownership` flag for install and upgrade commands - SDK: Authorizer and registry authorizer are now configurable - Removed the Kubernetes configuration file permissions check - Added username/password to helm push and dependency build/update subcommands - Added `toYamlPretty` template function #### Installation and Upgrading Download Helm v3.17.0. The common platform binaries are here: - [MacOS amd64](https://get.helm.sh/helm-v3.17.0-darwin-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-darwin-amd64.tar.gz.sha256sum) / 0d5fd51cf51eb4b9712d52ecd8f2a3cd865680595cca57db38ee01802bd466ea) - [MacOS arm64](https://get.helm.sh/helm-v3.17.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-darwin-arm64.tar.gz.sha256sum) / 5db292c69ba756ddbf139abb623b02860feef15c7f1a4ea69b77715b9165a261) - [Linux amd64](https://get.helm.sh/helm-v3.17.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-amd64.tar.gz.sha256sum) / fb5d12662fde6eeff36ac4ccacbf3abed96b0ee2de07afdde4edb14e613aee24) - [Linux arm](https://get.helm.sh/helm-v3.17.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-arm.tar.gz.sha256sum) / a388478049bf4ad440fa394f28421aa43cec3631ba197a8203c485edbec3e3fe) - [Linux arm64](https://get.helm.sh/helm-v3.17.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-arm64.tar.gz.sha256sum) / c4d4be8e80082b7eaa411e3e231d62cf05d01cddfef59b0d01006a7901e11ee4) - [Linux i386](https://get.helm.sh/helm-v3.17.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-386.tar.gz.sha256sum) / af89be03bb15175cd27573b48f4b9621e08982ab7788dd36e073baac988d6b2e) - [Linux ppc64le](https://get.helm.sh/helm-v3.17.0-linux-ppc64le.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-ppc64le.tar.gz.sha256sum) / 32833acf72b240e9ca78a3eac630a0ba420e073b02df3030c369a287b8bdc769) - [Linux s390x](https://get.helm.sh/helm-v3.17.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-s390x.tar.gz.sha256sum) / 4b002d673ef35d78843c45cc169faf1040eec75937f19fccce41d2074f459653) - [Linux riscv64](https://get.helm.sh/helm-v3.17.0-linux-riscv64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.17.0-linux-riscv64.tar.gz.sha256sum) / 38297aca2046fd13f2e0415ecc9cdb006f4008b286467f5f217187647dbbab5b) - [Windows amd64](https://get.helm.sh/helm-v3.17.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.17.0-windows-amd64.zip.sha256sum) / 0625e51437107991922f76adbec4a4f12a4438942182677399ab758a3ec8bdc5) - [Windows arm64](https://get.helm.sh/helm-v3.17.0-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.17.0-windows-arm64.zip.sha256sum) / 5fd16dde353aa5909562f127befea8db3879ecf63050fea3fb106ff8bfdd1a9c) This release was signed with 208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155 and can be found at [@​r6by](https://redirect.github.com/r6by) [keybase account](https://keybase.io/r6by). Please use the attached signatures for verifying this release using gpg. The [Quickstart Guide](https://helm.sh/docs/intro/quickstart/) will get you going from there. For **upgrade instructions** or detailed installation notes, check the [install guide](https://helm.sh/docs/intro/install/). You can also use a [script to install](https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3) on any system with `bash`. #### What's Next - 3.17.1 is the next patch release and will be on February 12, 2025 - 3.18.0 is the next minor release and will be on May 14, 2025 #### Changelog - bump version to v3.17.0 [`301108e`](https://redirect.github.com/helm/helm/commit/301108edc7ac2a8ba79e4ebf5701b0b6ce6a31e4) (Matt Farina) - fix: make ORAS reference private [`949b2e6`](https://redirect.github.com/helm/helm/commit/949b2e604067a43797c640db4d6ed69af7aa3e5b) (Terry Howe) - fix: issue with helm template and oci chart [`aba95b9`](https://redirect.github.com/helm/helm/commit/aba95b9cb4827fe932e5eebabd55513333543d7c) (Terry Howe) - feat: allow installation by OCI digest [`c3e5217`](https://redirect.github.com/helm/helm/commit/c3e5217d85f37ba6adb570c3f2ff78dc7dfb343c) (Terry Howe) - Bump the k8s-io group with 7 updates [`33a0ee7`](https://redirect.github.com/helm/helm/commit/33a0ee7b9ac19d5578ef315cb4c220fe5ab069f1) (dependabot\[bot]) - Upgrade golang.org/x/net to v0.33.0 to address CVE-2024-45338 [`79993d2`](https://redirect.github.com/helm/helm/commit/79993d2e5bb05a1eba5978353db084f1ca9cb7ac) (cx) - Update golangci-lint version [`037c18a`](https://redirect.github.com/helm/helm/commit/037c18af3521c78cff41cfb84db01fb5847a98fb) (Matt Farina) - Update to Go 1.23 [`9f620b8`](https://redirect.github.com/helm/helm/commit/9f620b857a30ab377473ae626d68f3b3125ac928) (Matt Farina) - ref(create): don't render empty resource fields [`ba180a3`](https://redirect.github.com/helm/helm/commit/ba180a3b6a82c8ae279e6cd51df78004c9de8a40) (dnskr) - Add annotations and dependencies to get metadata output The output of helm get metadata includes a subset of the fields contained in the chart.Metadata struct. This change adds the values of the annotations field and the dependencies field to the output. [`7321579`](https://redirect.github.com/helm/helm/commit/7321579092a5e84258c2f295031f175971700abe) (Niladri Halder) - Run `build-test` action on `dev-v3` branch [`2042f7d`](https://redirect.github.com/helm/helm/commit/2042f7d35ab5bdd7a2090c8ed9b1e0881cc18aa2) (George Jenkins) - Fix dev-v3 from take ownership changes [`a3a9e4f`](https://redirect.github.com/helm/helm/commit/a3a9e4f6432f7732f2e802962b8cea19c34817b8) (Matt Farina) - Bump github.com/rubenv/sql-migrate from 1.7.0 to 1.7.1 [`c7cd177`](https://redirect.github.com/helm/helm/commit/c7cd1772c788c4ea84f2912479484da477d07195) (dependabot\[bot]) - Bump github.com/cyphar/filepath-securejoin from 0.3.4 to 0.3.6 [`ca61226`](https://redirect.github.com/helm/helm/commit/ca61226c0313de9bdbc6a3db25ebc6c3d7086428) (dependabot\[bot]) - Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 [`9421fac`](https://redirect.github.com/helm/helm/commit/9421fac58f190bd1aca4b411614aed6098d5ed4a) (dependabot\[bot]) - Bump github.com/containerd/containerd from 1.7.23 to 1.7.24 [`562eb54`](https://redirect.github.com/helm/helm/commit/562eb54fff03c9e8199500b78102ce6e00aa21b2) (dependabot\[bot]) - Bump golang.org/x/crypto from 0.30.0 to 0.31.0 [`6ba4c6e`](https://redirect.github.com/helm/helm/commit/6ba4c6e000395403952c83668e47991139b656ad) (dependabot\[bot]) - Bump the k8s-io group with 7 updates [`ac16258`](https://redirect.github.com/helm/helm/commit/ac162584190b898a12620b8b9a28a98a4c1e395b) (dependabot\[bot]) - fix test output [`edf7b66`](https://redirect.github.com/helm/helm/commit/edf7b66ae92b16f84d86fb98bc1508d66be7bcfb) (Mayank Shah) - fix test [`b9d58a1`](https://redirect.github.com/helm/helm/commit/b9d58a19f1fdb58da7cb84370e60bcd29cc534f6) (Mayank Shah) - fix upgrade [`2541e46`](https://redirect.github.com/helm/helm/commit/2541e465c402002a973682918ac8ee14bc8d7784) (Mayank Shah) - Shadow ORAS remote.Client interface [`c40cf00`](https://redirect.github.com/helm/helm/commit/c40cf00a06b85d36856e0113733d385f38e02789) (George Jenkins) - Make the authorizer and registry authorizer configurable [`3c2ab91`](https://redirect.github.com/helm/helm/commit/3c2ab912637234635a614cbc34b349fa21db7cc0) (Ryan Nowak) - Rename CAFile to CaFile for consistency [`7a22dd2`](https://redirect.github.com/helm/helm/commit/7a22dd28d13b02c6cd15bea19c35825f4f420caf) (Evans Mungai) - Update cmd/helm/upgrade.go [`885e938`](https://redirect.github.com/helm/helm/commit/885e938793203383abb9331b4a0662df85d2cbeb) (Mayank Shah) - Update cmd/helm/install.go [`7efa286`](https://redirect.github.com/helm/helm/commit/7efa2862ad48be335b5e2346f53db36bfe7bbcb2) (Mayank Shah) - Add --take-ownership flag for install and upgrade commands [`c3a5f27`](https://redirect.github.com/helm/helm/commit/c3a5f27c7742991a81c6bbc7bb8e15478f68a20d) (Mayank Shah) - Adding CI for dev-v3 branch [`b5a83ea`](https://redirect.github.com/helm/helm/commit/b5a83ea8214b84cbe845319943ad641d91d02867) (Matt Farina) - Bump golang.org/x/crypto from 0.28.0 to 0.29.0 [`a2d289f`](https://redirect.github.com/helm/helm/commit/a2d289f569786ab5ae81277c5d12cc83ce8aab41) (dependabot\[bot]) - fix: fix label name [`e4062e7`](https://redirect.github.com/helm/helm/commit/e4062e7e000f54f6251c233329ef04f5d0799d59) (wangjingcun) - Updating subchart load error to be more descriptive [`6f2f7d4`](https://redirect.github.com/helm/helm/commit/6f2f7d4781752325ef8cd94d59caa73509ceeb84) (Taylor Jasko) - Add tests to `helm/pkg/kube/client_test.go` to cover `wait.go` [`9fd943b`](https://redirect.github.com/helm/helm/commit/9fd943b481ef7ca8126e78787b06ed0e2e854331) (Alex Johnson) - Fix typo in pkg/lint/rules/chartfile_test.go [`0cc78c6`](https://redirect.github.com/helm/helm/commit/0cc78c6ac34790698d66d419f22531040a3bf738) (Zach Burgess) - Increasing the size of the runner used for releases. [`029e983`](https://redirect.github.com/helm/helm/commit/029e98324163aa7fd505bb8aab37337ef84d5830) (Matt Farina) - fix(hooks): correct hooks delete order [`f4f4a6b`](https://redirect.github.com/helm/helm/commit/f4f4a6b81fbdb90412bd906fa5458482e94625bd) (Suleiman Dibirov) - Allow tests to run on loong64 [`a51ea6e`](https://redirect.github.com/helm/helm/commit/a51ea6ec73f69c59ae13e228f27b006ad6efc54b) (Tianle Xu) - Bump actions/checkout from 4.2.1 to 4.2.2 [`f983342`](https://redirect.github.com/helm/helm/commit/f983342597dc5fc02bb3874956452186c3a7457a) (dependabot\[bot]) - Bump actions/setup-go from 5.0.2 to 5.1.0 [`c867af8`](https://redirect.github.com/helm/helm/commit/c867af8e11c51af1aa00d1b2a56f0514fbf59e90) (dependabot\[bot]) - chore: fix some function names in comment [`de9e138`](https://redirect.github.com/helm/helm/commit/de9e138ec172c823788554f65710d103b9ac2388) (wangjingcun) - Bump the k8s-io group with 7 updates [`e4304bd`](https://redirect.github.com/helm/helm/commit/e4304bd758aeaa8a620ed8b251e054617f2dfe1b) (dependabot\[bot]) - removing duplicate empty test [`7e6b34d`](https://redirect.github.com/helm/helm/commit/7e6b34d7dda28fa63b59ffdf6325cdf763dadf16) (Robert Sirchia) - fixing unit test as per Matt [`16a4e37`](https://redirect.github.com/helm/helm/commit/16a4e37f20910caa8830c223235a065029b8e8cb) (Robert Sirchia) - Ensure test fails without causing panic [`bdaa93b`](https://redirect.github.com/helm/helm/commit/bdaa93b969f246119c4fd14267d286b041fb8f7f) (Evans Mungai) - Fix failing tests [`3c4d0bb`](https://redirect.github.com/helm/helm/commit/3c4d0bb06138713bd009b3daf34f34a18a0850d7) (Evans Mungai) - Remove unnecessary function arguments [`d25b0d9`](https://redirect.github.com/helm/helm/commit/d25b0d9056fe1d7ff60280aa1c19f1771d687b9d) (Evans Mungai) - chore: Check tar is installed install script [`3a5805e`](https://redirect.github.com/helm/helm/commit/3a5805ea7e8aa385cce278e0026656baa68fa83d) (Evans Mungai) - adding more unit test [`a205af7`](https://redirect.github.com/helm/helm/commit/a205af755e4ab33109ebd728e4f58840c606029d) (Robert Sirchia) - Cleanup redundant GO11MODULE [`4a15cc3`](https://redirect.github.com/helm/helm/commit/4a15cc3385ade513ce28ca0c9f44440dab9627e2) (George Jenkins) - adding test coverage for ready.go [`999b851`](https://redirect.github.com/helm/helm/commit/999b85145aaa0c300dab69cdd7742699cf873ab2) (Robert Sirchia) - fix(helm): Retry Conflict error for createResource, deleteResource [`79a1f2c`](https://redirect.github.com/helm/helm/commit/79a1f2c80117cc4d9db7c48d80a7fc76d3d479ca) (Andreas Karis) - minor spelling fix [`ca58464`](https://redirect.github.com/helm/helm/commit/ca584648ee3776591d4d438c7a2d67310d35c424) (Jon Olsson) - Bump github.com/containerd/containerd from 1.7.12 to 1.7.23 [`fe4d0d9`](https://redirect.github.com/helm/helm/commit/fe4d0d94da4e7f75f2f22f8449860c82756eb336) (dependabot\[bot]) - Reorder triage ids [`8b85934`](https://redirect.github.com/helm/helm/commit/8b85934ec3a8cc41b21ff8f87f7f69f6f7553938) (Evans Mungai) - chore: Add Evans to OWNERS file [`75c124a`](https://redirect.github.com/helm/helm/commit/75c124ade1f4ccdfa0e9faeca4d2e9df19195a73) (Evans Mungai) - Bump github.com/cyphar/filepath-securejoin from 0.3.1 to 0.3.4 [`b45680c`](https://redirect.github.com/helm/helm/commit/b45680c762228cd15bd82a3b6f4bc1b14a4893e9) (dependabot\[bot]) - chore(deps): bump actions/stale from 3.0.14 to 9.0.0 [`140a376`](https://redirect.github.com/helm/helm/commit/140a376539dd52d8a0c1609da478adc26439aa23) (dependabot\[bot]) - chore: Make retryingRoundTripper type public [`ab3c589`](https://redirect.github.com/helm/helm/commit/ab3c589809a163cb4227063c04da706e3a60ca2a) (Luis Davim) - Bump actions/checkout from 4.2.0 to 4.2.1 [`d517450`](https://redirect.github.com/helm/helm/commit/d517450a11ce7ce51445c34d354669895bd44bae) (dependabot\[bot]) - Doc: add Flox as an installation option. [`30de3bb`](https://redirect.github.com/helm/helm/commit/30de3bbdc2b11172aa0028871ba9a7256c2f5b4c) (Bryan Honof) - Move jdolitsky to emeritus [`076bb1f`](https://redirect.github.com/helm/helm/commit/076bb1fbd0296a69a701ac6c2ca704c1eba446cd) (Josh Dolitsky) - verbs [`f5fcae8`](https://redirect.github.com/helm/helm/commit/f5fcae8356046a7b4861d231a2427dbf6e96b08c) (George Jenkins) - fix: Use chart archive modifed time for OCI push [`02ef83f`](https://redirect.github.com/helm/helm/commit/02ef83fe28f123c57bdb3893740d64a63a01be22) (George Jenkins) - Bump golang.org/x/crypto from 0.27.0 to 0.28.0 [`4c54d15`](https://redirect.github.com/helm/helm/commit/4c54d15a86677659143c4c734b412454f99a3917) (dependabot\[bot]) - Revering change unrelated to issue [#​13176](https://redirect.github.com/helm/helm/issues/13176) [`cdbef2b`](https://redirect.github.com/helm/helm/commit/cdbef2b7d1862e6fe4253e39740afbc5ec405679) (ricardo.bartels@telekom.de) - Bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 [`9e192b2`](https://redirect.github.com/helm/helm/commit/9e192b28ebadaea39bbfe7b35ab439c05b31e13b) (dependabot\[bot]) - updating owners file [`36f0b42`](https://redirect.github.com/helm/helm/commit/36f0b42de383ad2de553291ee899531737e3f313) (Robert Sirchia) - Bump the k8s-io group with 7 updates [`d5df067`](https://redirect.github.com/helm/helm/commit/d5df06728363ac9c83d06e80fb3516c0714aa4d4) (dependabot\[bot]) - Bump golang/govulncheck-action from 1.0.3 to 1.0.4 [`7925733`](https://redirect.github.com/helm/helm/commit/79257331c2ac1cccd142a0acbed230e7306e9e87) (dependabot\[bot]) - Move gjenkins to maintainer [`9c36d1f`](https://redirect.github.com/helm/helm/commit/9c36d1f7b567c93348b6e2ecd4611a8742b26bfb) (George Jenkins) - Bump actions/checkout from 4.1.7 to 4.2.0 [`2cd8d54`](https://redirect.github.com/helm/helm/commit/2cd8d54c83f7e8c7970d0876bb3d226f383be7d4) (dependabot\[bot]) - fix: add missing formatChartName call [`de18ac1`](https://redirect.github.com/helm/helm/commit/de18ac16027201bb201c4cfe8736202d9feda8cd) (Terry Howe) - Update history.go [`4735f2b`](https://redirect.github.com/helm/helm/commit/4735f2be9b7669e4f7a1bdf4a6dc4522c4bdfe64) (myeunee) - adding toplevel permissions to workflows missing them [`a8750f4`](https://redirect.github.com/helm/helm/commit/a8750f4ce991b0aa3e40116091171afa5d359fed) (Robert Sirchia) - add strvals fuzzer from cncf-fuzzing [`b203cc1`](https://redirect.github.com/helm/helm/commit/b203cc17c85e47134dc553ec731e4ae5f21d7596) (Adam Korczynski) - add chart fuzz tests [`e432f39`](https://redirect.github.com/helm/helm/commit/e432f39ea727875284e578a380e176b61075cfb9) (Adam Korczynski) - Remove the Kubernetes configuration file permissions check [`49cb14a`](https://redirect.github.com/helm/helm/commit/49cb14a15ce9299a4c5cf2a51c4b97982276caba) (Yarden Shoham) - Grammar fixes [`ef85fa7`](https://redirect.github.com/helm/helm/commit/ef85fa7f2ddc0a7a810007e283846c123f486748) (Nathan Baulch) - Fix typos [`ff9dd26`](https://redirect.github.com/helm/helm/commit/ff9dd262e394a48b689e3e1a33456dc18a1f4f47) (Nathan Baulch) - removing testing trigger from govulncheck action [`62069eb`](https://redirect.github.com/helm/helm/commit/62069eb7b511e7480fd16271e5f0c5ce3455a3c6) (Robert Sirchia) - adding top-level permissions [`114db17`](https://redirect.github.com/helm/helm/commit/114db17898f942cff6529c4ac1075e66f8e3b5fe) (Robert Sirchia) - Fixing the action trigger [`8642225`](https://redirect.github.com/helm/helm/commit/8642225be3ef801bca594f320240ed0218dd3166) (Robert Sirchia) - testing permissing for codeql [`5217ea8`](https://redirect.github.com/helm/helm/commit/5217ea8f18341c167e95f2fd01378edac4ba38f7) (Robert Sirchia) - Bump ossf/scorecard-action from 2.3.1 to 2.4.0 [`9134b9e`](https://redirect.github.com/helm/helm/commit/9134b9edabb522a701429eb973b0b341e51f0b07) (dependabot\[bot]) - Bump actions/checkout from 4.1.1 to 4.1.7 [`144e7b0`](https://redirect.github.com/helm/helm/commit/144e7b0287bdc6a61f92580f511db961f23ed22c) (dependabot\[bot]) - fix: fix testchart lint errors [`ddead08`](https://redirect.github.com/helm/helm/commit/ddead08eb8e7e3fbbdbb6d40938dda36905789af) (Rui Chen) - adding check-latest:true [`611fae3`](https://redirect.github.com/helm/helm/commit/611fae3d7dbc4a0b48ea01739b5e67692911adc4) (Robert Sirchia) - Revert "Improve helm dependency update performance" [`c81bd89`](https://redirect.github.com/helm/helm/commit/c81bd8912e67177f7941714098e762a88f04c430) (Matt Farina) - bumping version to 1.22.7 [`e7b25ba`](https://redirect.github.com/helm/helm/commit/e7b25bab6ff40ff3dcdeb498e6d74d1484a19215) (Robert Sirchia) - Add New Relic [`a55c0b4`](https://redirect.github.com/helm/helm/commit/a55c0b457d902af20ca0bb0da52a8cfa36ce6f7e) (Calvin A. Allen) - Update ADOPTERS.md [`2b6f76c`](https://redirect.github.com/helm/helm/commit/2b6f76c44e1eebcd90f89970aebd7b1c184a53d4) (Richard Hooper) - Bump github.com/BurntSushi/toml from 1.3.2 to 1.4.0 [`06afebb`](https://redirect.github.com/helm/helm/commit/06afebbedb40dfc837fcd23fded30ff986e0ace5) (dependabot\[bot]) - Bump golang.org/x/crypto from 0.26.0 to 0.27.0 [`9f6925e`](https://redirect.github.com/helm/helm/commit/9f6925eb7fd74604ad23f1386b7382eed2b05b1d) (dependabot\[bot]) - refectoring to ONE GH action [`5326d79`](https://redirect.github.com/helm/helm/commit/5326d79d3e38449c85d8e1c951596a8616b3e2bc) (Robert Sirchia) - adding new lines at the end of each files [`d911881`](https://redirect.github.com/helm/helm/commit/d91188159e925672714a4ab634eceacb8d2a849c) (Robert Sirchia) - changing the trigger file [`1aa640f`](https://redirect.github.com/helm/helm/commit/1aa640fe1d093cf8cb3a68825a5479c98d86f32a) (Robert Sirchia) - removing line break used for testing [`0eae854`](https://redirect.github.com/helm/helm/commit/0eae854a8562f3c13dd89481d2568ea0e6391f01) (Robert Sirchia) - adding a line break to test the GH trigger [`438221f`](https://redirect.github.com/helm/helm/commit/438221fbe3073df6e7bbf6473ab8e4e3763bcf6d) (Robert Sirchia) - changing trigger file from go.sum to go.mod [`3ef6dd4`](https://redirect.github.com/helm/helm/commit/3ef6dd40367009230f136f549dc90464f090e770) (Robert Sirchia) - removing govulncheck from build-test [`5f15f53`](https://redirect.github.com/helm/helm/commit/5f15f53e2eb70973c82a606d67de98e859dff147) (Robert Sirchia) - adding new workflows for govulncheck [`4df7d56`](https://redirect.github.com/helm/helm/commit/4df7d5628b776a33f096516c89db7761de714b21) (Robert Sirchia) - bump version to v3.16.0 [`d644da6`](https://redirect.github.com/helm/helm/commit/d644da620521170086f024112bfa9439463fc995) (Matt Farina) - Bump github.com/gofrs/flock from 0.8.1 to 0.12.1 [`a77ad1a`](https://redirect.github.com/helm/helm/commit/a77ad1a4a2cd3efe9f119d43b76f77792c163a6d) (dependabot\[bot]) - adding a new line at the end of the file as per the request of the maintainers [`88fa81e`](https://redirect.github.com/helm/helm/commit/88fa81ecb6cc11fd9aae95994bbb531da82e4d26) (Robert Sirchia) - restoring the original triggers that were removed for testing [`76b9d96`](https://redirect.github.com/helm/helm/commit/76b9d962f0633da44dd7afe466985b9bc67e39d0) (Robert Sirchia) - moving govulncheck to a seperate job [`38dd4a7`](https://redirect.github.com/helm/helm/commit/38dd4a7fea06885510355bfaef5641a8a82073f4) (Robert Sirchia) - removing specific go version for govulncheck [`1ad6af9`](https://redirect.github.com/helm/helm/commit/1ad6af92870acccae47f6bd25c2596baa2969e27) (Robert Sirchia) - updating go version for govulncheck [`e46e0dd`](https://redirect.github.com/helm/helm/commit/e46e0ddb9809485bf506e61b8720ff80e668b408) (Robert Sirchia) - fixing directory for go-packages [`6757f8a`](https://redirect.github.com/helm/helm/commit/6757f8a81b5f874633bf6138999dac13ed5e550b) (Robert Sirchia) - changing the triggers to test this GH actions [`031b344`](https://redirect.github.com/helm/helm/commit/031b34458eca2832e7f402f4207e5a2da0c0f86d) (Robert Sirchia) - Adding in workflow_call to test GH Actions [`7e3df4b`](https://redirect.github.com/helm/helm/commit/7e3df4baafd58eefe960761be36bf2e1ecb36c83) (Robert Sirchia) - adding workflow_dispatch to test [`b351fdc`](https://redirect.github.com/helm/helm/commit/b351fdce994b04084029cccb07f846ff723b274c) (Robert Sirchia) - adding govulncheck [`6761729`](https://redirect.github.com/helm/helm/commit/67617290d4b826be94c829a95d909b216db2dfd5) (Robert Sirchia) - fix: fixed the token-permission and pinned-dependencies issue [`b4caed9`](https://redirect.github.com/helm/helm/commit/b4caed94cd8e725d8c29c241dfd01c69aba95b33) (harshitasao) - docs(repo_index): explicitly state that the result is written to the directory passed in [`a71eaea`](https://redirect.github.com/helm/helm/commit/a71eaeaf5223128727ba275a3e5f3d0e0c3e59e4) (Rauno Viskus) - Added the scorecard github action and its badge [`ae17dea`](https://redirect.github.com/helm/helm/commit/ae17dea00da07e4447c392f26920935291305efd) (harshitasao) - Revert CAFile rename breaking change [`0687961`](https://redirect.github.com/helm/helm/commit/0687961da4f708cd69c5cbde0f446b989671f0a5) (Evans Mungai) - kube/client: add to global client-go scheme in init func [`b9bdeca`](https://redirect.github.com/helm/helm/commit/b9bdeca93bf8d6e46b79ba4f4bcb029de3ec1a90) (Dr. Stefan Schimanski) - adds tests for handling of Helm index with broken chart versions [#​13176](https://redirect.github.com/helm/helm/issues/13176) [`af13b0d`](https://redirect.github.com/helm/helm/commit/af13b0d8dca846ea27df3a21a4e37829e3b81654) (ricardo.bartels@telekom.de) - improves handling of Helm index with broken helm chart versions [#​13176](https://redirect.github.com/helm/helm/issues/13176) [`154b477`](https://redirect.github.com/helm/helm/commit/154b47755403f5d9e13fdabdca62aff7b25a5acf) (ricardo.bartels@telekom.de) - Add username/password to package subcommand [`12d8d28`](https://redirect.github.com/helm/helm/commit/12d8d28534644f1cad8be2c57c7d52e07f7b27c9) (Evans Mungai) - Run go fmt [`0ad80e3`](https://redirect.github.com/helm/helm/commit/0ad80e3b58e7c4be56a0378bbd0b0a4cebd799a0) (Evans Mungai) - Add username/password to dependency build/update subcommands [`837ae42`](https://redirect.github.com/helm/helm/commit/837ae4242cb58a96ed0129db3ca7fa1ff7a33ab5) (Evans Mungai) - Add username/password to push subcommand [`7672a17`](https://redirect.github.com/helm/helm/commit/7672a1700d4dd85ae9885c8e443d673ef1d898ce) (Evans Mungai) - Update ADOPTERS.md [`e0751f3`](https://redirect.github.com/helm/helm/commit/e0751f34a755eed73cc88cdb8ba085d18e431a87) (Nick Josevski) - ISSUE-9507: TEST server with varied Accept Header [`3c39705`](https://redirect.github.com/helm/helm/commit/3c39705212ae9800f6cc2d1996f877611c0d601d) (Matt Clegg) - ISSUE-9507: ADD `application/gzip,application/octet-stream` accept header when downloading chart [`fff3547`](https://redirect.github.com/helm/helm/commit/fff3547f9c81a918dfcf3c34fad094323a5905b5) (Matt Clegg) - test(create): Test to check deprecated resource templates [`9c0b4c8`](https://redirect.github.com/helm/helm/commit/9c0b4c81211732e9f2866ecc08e3a0a147f80b62) (Bhargav Ravuri) - added sprintf solution and found other possible overflow occurences [`ab640a7`](https://redirect.github.com/helm/helm/commit/ab640a71771f470861da46754dda668885f144f7) (Trenton VanderWert) - changed Iota to FormatInt to allow int64 value preventing 2038 overflow [`4a45342`](https://redirect.github.com/helm/helm/commit/4a45342887abd2868536abc5ffdc8a711b8cfb87) (Trenton VanderWert) - fix(helm): pass down username/password CLI parameters to OCI registry clients [`dc158f6`](https://redirect.github.com/helm/helm/commit/dc158f6208782b888fc5be6d23d8991042cf9f9c) (Evans Mungai) - Added `toYamlPretty` template function [`73f1dcc`](https://redirect.github.com/helm/helm/commit/73f1dcc1d9408504cd47f7efe1d04b277cf952b3) (Fred Heinecke) - test(pkg/engine): add tests for TOML parsing [`266ab5a`](https://redirect.github.com/helm/helm/commit/266ab5af0524bd42a2a7dcd80fd792f3f9574b5b) (Dominik Müller) - feat(pkg/engine): add TOML parsing functionality [`f550eda`](https://redirect.github.com/helm/helm/commit/f550eda6e98e585cc66f8c7181531ca4a62ccf55) (Dominik Müller) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
eda505dfd8 |
fix(deps): update module sigs.k8s.io/kustomize/kyaml v0.18.1 → v0.19.0 (clustertool) (#30923)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sigs.k8s.io/kustomize/kyaml](https://redirect.github.com/kubernetes-sigs/kustomize) | require | minor | `v0.18.1` -> `v0.19.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
581f2da942 |
fix(deps): update module github.com/go-playground/validator/v10 v10.23.0 → v10.24.0 (clustertool) (#30901)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/go-playground/validator/v10](https://redirect.github.com/go-playground/validator) | require | minor | `v10.23.0` -> `v10.24.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>go-playground/validator (github.com/go-playground/validator/v10)</summary> ### [`v10.24.0`](https://redirect.github.com/go-playground/validator/releases/tag/v10.24.0): Release 10.24.0 [Compare Source](https://redirect.github.com/go-playground/validator/compare/v10.23.0...v10.24.0) #### What's Changed - MSGV additions by [@​deankarn](https://redirect.github.com/deankarn) in [https://github.com/go-playground/validator/pull/1361](https://redirect.github.com/go-playground/validator/pull/1361) The MSGV(Minimum Supported Go Version) has been bumped to v1.20 to address a security issues in the gaoling `net` package. **Full Changelog**: https://github.com/go-playground/validator/compare/v10.23.0...v10.24.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
f1d10fa9fc |
chore(flux): update image prometheus-operator 9.2.0 → 9.3.0 (clustertool) (#30871)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [prometheus-operator](https://truecharts.org/charts/system/prometheus-operator) ([source](https://redirect.github.com/prometheus-operator)) | minor | `9.2.0` -> `9.3.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
c7d6f9ebf6 |
chore(flux): update image app-template 3.6.0 → 3.6.1 (clustertool) (#30859)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | app-template | patch | `3.6.0` -> `3.6.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
e8e5075778 | chore(flux): update helm release cilium 1.16.5 → 1.16.6 (clustertool) (#31031) | ||
|
|
6c5269bed5 |
chore(flux): update image kubernetes-dashboard 1.12.0 → 1.12.1 (clustertool) (#30861)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [kubernetes-dashboard](https://truecharts.org/charts/premium/kubernetes-dashboard) ([source](https://redirect.github.com/kubernetes-dashboard/kubernetes-dashboard)) | patch | `1.12.0` -> `1.12.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
483841a6f8 |
chore(flux): update image traefik 30.2.2 → 30.3.0 (clustertool) (#30845)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [traefik](https://truecharts.org/charts/premium/traefik) ([source](https://redirect.github.com/traefik/traefik)) | minor | `30.2.2` -> `30.3.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
3342970350 |
chore(flux): update image spegel 2.2.0 → 2.2.1 (clustertool) (#30835)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [spegel](https://truecharts.org/charts/system/spegel) ([source](https://ghcr.io/spegel-org/spegel)) | patch | `2.2.0` -> `2.2.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
ec50b8f3a0 | fix(devcontainer): Update ClusterTool pull (#30805) | ||
|
|
44461db17d | chore(flux): update image prometheus-operator 9.1.0 → 9.2.0 (clustertool) (#30793) | ||
|
|
d0b58d5807 | chore(flux): update image traefik 30.2.1 → 30.2.2 (clustertool) (#30787) | ||
|
|
af0f6ef506 |
chore(flux): update image cert-manager 6.4.0 → 6.4.1 (clustertool) (#30785)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [cert-manager](https://truecharts.org/charts/system/cert-manager) ([source](https://cert-manager.io/)) | patch | `6.4.0` -> `6.4.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
1371744892 | chore(flux): update helm release openebs 4.1.1 → 4.1.2 (clustertool) (#30783) | ||
|
|
386e94e584 |
chore(flux): update image blocky 16.10.0 → 16.10.1 (clustertool) (#30784)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [blocky](https://truecharts.org/charts/premium/blocky) ([source](https://0xerr0r.github.io/blocky/)) | patch | `16.10.0` -> `16.10.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
1856680a41 |
chore(flux): update image traefik 30.2.0 → 30.2.1 (clustertool) (#30767)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [traefik](https://truecharts.org/charts/premium/traefik) ([source](https://redirect.github.com/traefik/traefik)) | patch | `30.2.0` -> `30.2.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
d3e6006908 |
chore(flux): update image kubelet-csr-approver 1.3.1 → 1.3.2 (clustertool) (#30766)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [kubelet-csr-approver](https://truecharts.org/charts/system/kubelet-csr-approver) ([source](https://ghcr.io/postfinance/kubelet-csr-approver)) | patch | `1.3.1` -> `1.3.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
fb39912995 | fix(deps): update module sigs.k8s.io/controller-runtime v0.19.3 → v0.19.4 (clustertool) (#30667) | ||
|
|
cde0461197 |
fix(deps): update module golang.org/x/crypto v0.31.0 → v0.32.0 (clustertool) (#30660)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang.org/x/crypto | require | minor | `v0.31.0` -> `v0.32.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
54da6ca4a0 |
fix(clustertool): remove discovery-service patches
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl> |
||
|
|
af52718a7d |
fix(deps): update module github.com/go-git/go-git/v5 v5.13.0 → v5.13.1 (clustertool) (#30593)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/go-git/go-git/v5](https://redirect.github.com/go-git/go-git) | require | patch | `v5.13.0` -> `v5.13.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>go-git/go-git (github.com/go-git/go-git/v5)</summary> ### [`v5.13.1`](https://redirect.github.com/go-git/go-git/releases/tag/v5.13.1) [Compare Source](https://redirect.github.com/go-git/go-git/compare/v5.13.0...v5.13.1) #### What's Changed - build: bump github.com/go-git/go-billy/v5 from 5.6.0 to 5.6.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1327](https://redirect.github.com/go-git/go-git/pull/1327) - build: bump github.com/elazarl/goproxy from 1.2.1 to 1.2.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1329](https://redirect.github.com/go-git/go-git/pull/1329) - build: bump github.com/elazarl/goproxy from 1.2.2 to 1.2.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-git/go-git/pull/1340](https://redirect.github.com/go-git/go-git/pull/1340) - Revert "plumbing: transport/ssh, Add support for SSH [@​cert-authority](https://redirect.github.com/cert-authority)." by [@​pjbgf](https://redirect.github.com/pjbgf) in [#​1346](https://redirect.github.com/go-git/go-git/issues/1346) **Full Changelog**: https://github.com/go-git/go-git/compare/v5.13.0...v5.13.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |