e5301d6e16e6bf80c258fb0dfa425e7db331e177
172 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
6e89568565 |
fix(deps): update module github.com/getsops/sops/v3 v3.10.2 → v3.11.0 (clustertool) (#40143)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/getsops/sops/v3](https://redirect.github.com/getsops/sops) | `v3.10.2` -> `v3.11.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.11.0`](https://redirect.github.com/getsops/sops/releases/tag/v3.11.0) [Compare Source](https://redirect.github.com/getsops/sops/compare/v3.10.2...v3.11.0) #### 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.11.0/sops-v3.11.0.linux.amd64 ### Move the binary in to your PATH mv sops-v3.11.0.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.11.0/sops-v3.11.0.checksums.txt curl -LO https://github.com/getsops/sops/releases/download/v3.11.0/sops-v3.11.0.checksums.pem curl -LO https://github.com/getsops/sops/releases/download/v3.11.0/sops-v3.11.0.checksums.sig ### Verify the checksums file cosign verify-blob sops-v3.11.0.checksums.txt \ --certificate sops-v3.11.0.checksums.pem \ --signature sops-v3.11.0.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.11.0.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.11.0.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.11.0/sops-v3.11.0.intoto.jsonl ### Verify the provenance of the artifact slsa-verifier verify-artifact <artifact> \ --provenance-path sops-v3.11.0.intoto.jsonl \ --source-uri github.com/getsops/sops \ --source-tag v3.11.0 ``` #### 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.11.0` - `ghcr.io/getsops/sops:v3.11.0-alpine` ##### Quay.io - `quay.io/getsops/sops:v3.11.0` - `quay.io/getsops/sops:v3.11.0-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.11.0 \ --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 4 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1845](https://redirect.github.com/getsops/sops/pull/1845) - build(deps): Bump the go group with 5 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1850](https://redirect.github.com/getsops/sops/pull/1850) - build(deps): Bump the ci group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1849](https://redirect.github.com/getsops/sops/pull/1849) - build(deps): Bump the go group with 8 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1854](https://redirect.github.com/getsops/sops/pull/1854) - build(deps): Bump tempfile from 3.19.1 to 3.20.0 in /functional-tests in the rust group by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1853](https://redirect.github.com/getsops/sops/pull/1853) - build(deps): Bump actions/setup-go from 5.4.0 to 5.5.0 in the ci group by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1852](https://redirect.github.com/getsops/sops/pull/1852) - use bullet points for structure by [@​md42](https://redirect.github.com/md42) in [#​1844](https://redirect.github.com/getsops/sops/pull/1844) - Introduce EncryptContext and DecryptContext for AWS, Azure, GCP, PGP and HashiCorp Vault by [@​matheuscscp](https://redirect.github.com/matheuscscp) in [#​1848](https://redirect.github.com/getsops/sops/pull/1848) - build(deps): Bump the go group with 5 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1856](https://redirect.github.com/getsops/sops/pull/1856) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1857](https://redirect.github.com/getsops/sops/pull/1857) - Allow injecting custom HTTP client for AWS, Azure, GCP and HashiCorp Vault by [@​matheuscscp](https://redirect.github.com/matheuscscp) in [#​1838](https://redirect.github.com/getsops/sops/pull/1838) - Update authors in main.go by [@​jvehent](https://redirect.github.com/jvehent) in [#​1860](https://redirect.github.com/getsops/sops/pull/1860) - build(deps): Bump the go group with 7 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1861](https://redirect.github.com/getsops/sops/pull/1861) - Remove unmatched '\`' from README.rst by [@​wasv](https://redirect.github.com/wasv) in [#​1863](https://redirect.github.com/getsops/sops/pull/1863) - build(deps): Bump the go group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1867](https://redirect.github.com/getsops/sops/pull/1867) - build(deps): Bump alpine from 3.21 to 3.22 in /.release in the docker group by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1866](https://redirect.github.com/getsops/sops/pull/1866) - build(deps): Bump the go group with 12 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1870](https://redirect.github.com/getsops/sops/pull/1870) - build(deps): Bump github/codeql-action from 3.28.18 to 3.28.19 in the ci group by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1869](https://redirect.github.com/getsops/sops/pull/1869) - build(deps): Bump github.com/cloudflare/circl from 1.6.0 to 1.6.1 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1871](https://redirect.github.com/getsops/sops/pull/1871) - build(deps): Bump the go group with 12 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1872](https://redirect.github.com/getsops/sops/pull/1872) - build(deps): Bump the ci group across 1 directory with 3 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1874](https://redirect.github.com/getsops/sops/pull/1874) - build(deps): Bump the go group with 8 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1878](https://redirect.github.com/getsops/sops/pull/1878) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1879](https://redirect.github.com/getsops/sops/pull/1879) - build(deps): Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1882](https://redirect.github.com/getsops/sops/pull/1882) - Fix Typo in README.rst by [@​inverted-tree](https://redirect.github.com/inverted-tree) in [#​1881](https://redirect.github.com/getsops/sops/pull/1881) - build(deps): Bump the go group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1884](https://redirect.github.com/getsops/sops/pull/1884) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1883](https://redirect.github.com/getsops/sops/pull/1883) - Correct Windows path to store keys.txt by [@​EshemMimi](https://redirect.github.com/EshemMimi) in [#​1885](https://redirect.github.com/getsops/sops/pull/1885) - build(deps): Bump the go group with 3 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1888](https://redirect.github.com/getsops/sops/pull/1888) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1889](https://redirect.github.com/getsops/sops/pull/1889) - build(deps): Bump the go group with 6 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1893](https://redirect.github.com/getsops/sops/pull/1893) - Add "--value-file" option to "sops set \[...]" by [@​bjornfor](https://redirect.github.com/bjornfor) in [#​1876](https://redirect.github.com/getsops/sops/pull/1876) - Document XDG\_CONFIG\_HOME support on mac by [@​fredericrous](https://redirect.github.com/fredericrous) in [#​1897](https://redirect.github.com/getsops/sops/pull/1897) - Fix Shamir threshold encoding for INI and ENV files by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1899](https://redirect.github.com/getsops/sops/pull/1899) - build(deps): Bump the go group with 12 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1908](https://redirect.github.com/getsops/sops/pull/1908) - build(deps): Bump serde\_json from 1.0.140 to 1.0.142 in /functional-tests in the rust group by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1907](https://redirect.github.com/getsops/sops/pull/1907) - build(deps): Bump the ci group with 3 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1905](https://redirect.github.com/getsops/sops/pull/1905) - Fix docs: mention all stores instead of just YAML, JSON, and BINARY by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1895](https://redirect.github.com/getsops/sops/pull/1895) - Ensure temporary file for editing is only read-writable by owner by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1903](https://redirect.github.com/getsops/sops/pull/1903) - Add `--value-stdin` option to `sops set` by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1894](https://redirect.github.com/getsops/sops/pull/1894) - Collect age identity loading errors and only report if decryption failed by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1898](https://redirect.github.com/getsops/sops/pull/1898) - add completion script. Resolves [#​1868](https://redirect.github.com/getsops/sops/issues/1868) by [@​longxiucai](https://redirect.github.com/longxiucai) in [#​1892](https://redirect.github.com/getsops/sops/pull/1892) - Resolves [#​1864](https://redirect.github.com/getsops/sops/issues/1864). Adds Native List as an option for configuring keys. by [@​lucqui](https://redirect.github.com/lucqui) in [#​1880](https://redirect.github.com/getsops/sops/pull/1880) - Fix example.yaml file by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1909](https://redirect.github.com/getsops/sops/pull/1909) - build(deps): Bump the go group with 15 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1912](https://redirect.github.com/getsops/sops/pull/1912) - build(deps): Bump the ci group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1911](https://redirect.github.com/getsops/sops/pull/1911) - build(deps): Bump the go group with 9 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1917](https://redirect.github.com/getsops/sops/pull/1917) - build(deps): Bump the ci group with 4 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1916](https://redirect.github.com/getsops/sops/pull/1916) - build(deps): Bump github.com/go-viper/mapstructure/v2 from 2.3.0 to 2.4.0 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1920](https://redirect.github.com/getsops/sops/pull/1920) - build(deps): Bump the go group with 14 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1923](https://redirect.github.com/getsops/sops/pull/1923) - build(deps): Bump the rust group in /functional-tests with 2 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1921](https://redirect.github.com/getsops/sops/pull/1921) - build(deps): Bump github/codeql-action from 3.29.9 to 3.29.11 in the ci group by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1922](https://redirect.github.com/getsops/sops/pull/1922) - Docs: remove paragraph on GPG/PGP keyservers by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1928](https://redirect.github.com/getsops/sops/pull/1928) - Allow to configure --enable-local-keyservice and --keyservice through env variables by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1930](https://redirect.github.com/getsops/sops/pull/1930) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1937](https://redirect.github.com/getsops/sops/pull/1937) - fix: correct destination validation logic to detect all conflicts by [@​bruce-szalwinski-he](https://redirect.github.com/bruce-szalwinski-he) in [#​1936](https://redirect.github.com/getsops/sops/pull/1936) - Switch from deprecated gopkg.in/yaml.v3 to go.yaml.in/yaml/v3 by [@​sylr](https://redirect.github.com/sylr) in [#​1934](https://redirect.github.com/getsops/sops/pull/1934) - INI: fix converting integers to strings; improve float and time.Time formatting by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1929](https://redirect.github.com/getsops/sops/pull/1929) - feat(azkv): Skipping key-version will get latest key by [@​daogilvie](https://redirect.github.com/daogilvie) in [#​1919](https://redirect.github.com/getsops/sops/pull/1919) - Fix keyservice client for unix domain sockets by [@​matheuscscp](https://redirect.github.com/matheuscscp) in [#​1910](https://redirect.github.com/getsops/sops/pull/1910) - README: fix argument order by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1940](https://redirect.github.com/getsops/sops/pull/1940) - Allow non-complex non-string values in dotenv and exec-env by [@​billy4479](https://redirect.github.com/billy4479) in [#​1933](https://redirect.github.com/getsops/sops/pull/1933) - Fix mention of macOS XDG\_CONFIG\_HOME fallback by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1944](https://redirect.github.com/getsops/sops/pull/1944) - Improve age identity loading by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1931](https://redirect.github.com/getsops/sops/pull/1931) - build(deps): Bump the rust group in /functional-tests with 4 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1948](https://redirect.github.com/getsops/sops/pull/1948) - build(deps): Bump the ci group with 2 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1949](https://redirect.github.com/getsops/sops/pull/1949) - build(deps): Bump the rust group in /functional-tests with 2 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1954](https://redirect.github.com/getsops/sops/pull/1954) - build(deps): Bump anchore/sbom-action from 0.20.5 to 0.20.6 in the ci group by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1955](https://redirect.github.com/getsops/sops/pull/1955) - Start documenting the configuration file format by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1946](https://redirect.github.com/getsops/sops/pull/1946) - CI: Build with Go 1.24 and 1.25, release with 1.25 by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1945](https://redirect.github.com/getsops/sops/pull/1945) - build(deps): Bump the go group across 1 directory with 21 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1956](https://redirect.github.com/getsops/sops/pull/1956) - When encrypting, load the config only once by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1939](https://redirect.github.com/getsops/sops/pull/1939) - build(deps): Bump the go group across 1 directory with 10 updates by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​1958](https://redirect.github.com/getsops/sops/pull/1958) - Ignore encryption selection options for binary store (and warn when they are used) by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1927](https://redirect.github.com/getsops/sops/pull/1927) - AZKV: Also allow to omit version for AZKV keys specified in key groups by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1947](https://redirect.github.com/getsops/sops/pull/1947) - Complex values in dotenv, and exec-env: do not print sensitive value in error message by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1959](https://redirect.github.com/getsops/sops/pull/1959) - Release 3.11.0 by [@​felixfontein](https://redirect.github.com/felixfontein) in [#​1960](https://redirect.github.com/getsops/sops/pull/1960) #### New Contributors - [@​md42](https://redirect.github.com/md42) made their first contribution in [#​1844](https://redirect.github.com/getsops/sops/pull/1844) - [@​wasv](https://redirect.github.com/wasv) made their first contribution in [#​1863](https://redirect.github.com/getsops/sops/pull/1863) - [@​inverted-tree](https://redirect.github.com/inverted-tree) made their first contribution in [#​1881](https://redirect.github.com/getsops/sops/pull/1881) - [@​EshemMimi](https://redirect.github.com/EshemMimi) made their first contribution in [#​1885](https://redirect.github.com/getsops/sops/pull/1885) - [@​bjornfor](https://redirect.github.com/bjornfor) made their first contribution in [#​1876](https://redirect.github.com/getsops/sops/pull/1876) - [@​fredericrous](https://redirect.github.com/fredericrous) made their first contribution in [#​1897](https://redirect.github.com/getsops/sops/pull/1897) - [@​longxiucai](https://redirect.github.com/longxiucai) made their first contribution in [#​1892](https://redirect.github.com/getsops/sops/pull/1892) - [@​lucqui](https://redirect.github.com/lucqui) made their first contribution in [#​1880](https://redirect.github.com/getsops/sops/pull/1880) - [@​bruce-szalwinski-he](https://redirect.github.com/bruce-szalwinski-he) made their first contribution in [#​1936](https://redirect.github.com/getsops/sops/pull/1936) - [@​sylr](https://redirect.github.com/sylr) made their first contribution in [#​1934](https://redirect.github.com/getsops/sops/pull/1934) - [@​daogilvie](https://redirect.github.com/daogilvie) made their first contribution in [#​1919](https://redirect.github.com/getsops/sops/pull/1919) - [@​billy4479](https://redirect.github.com/billy4479) made their first contribution in [#​1933](https://redirect.github.com/getsops/sops/pull/1933) **Full Changelog**: <https://github.com/getsops/sops/compare/v3.10.2...v3.11.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
e1c86e764b |
fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.35 → v3.0.36 (clustertool) (#40078)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/budimanjojo/talhelper/v3](https://redirect.github.com/budimanjojo/talhelper) | `v3.0.35` -> `v3.0.36` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.36`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.36) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.35...v3.0.36) #### Changelog - [`7b9e887`](https://redirect.github.com/budimanjojo/talhelper/commit/7b9e887da3d59a44b05ad4499c5cfe054e5da871) chore(container): update ghcr.io/siderolabs/talosctl docker tag to v1.11.2 - [`cba4cb0`](https://redirect.github.com/budimanjojo/talhelper/commit/cba4cb0397f8f9a1e5722a4ddb6d76eb7004cdd9) chore(container): update golangci/golangci-lint docker tag to v2.5.0 - [`8b7fdb1`](https://redirect.github.com/budimanjojo/talhelper/commit/8b7fdb16c7efb0c044e2b221f7b40f250bec9813) chore(container): update goreleaser/goreleaser docker tag to v2.12.1 - [`3ce9630`](https://redirect.github.com/budimanjojo/talhelper/commit/3ce9630bedd9fed9d11a660158a5b142f9b28359) chore(container): update goreleaser/goreleaser docker tag to v2.12.2 - [`e2d3728`](https://redirect.github.com/budimanjojo/talhelper/commit/e2d3728c3c2b69b3458b2e552148cffff43e7d9b) chore(container): update goreleaser/goreleaser docker tag to v2.12.3 - [`c42c199`](https://redirect.github.com/budimanjojo/talhelper/commit/c42c1998a10f18912db20fec4bdd9b3ce929a47a) chore(deps): update dependency siderolabs/talos to v1.11.2 - [`cd4f80e`](https://redirect.github.com/budimanjojo/talhelper/commit/cd4f80ed5f993bfb7c3e76526d1ce328e7d12f41) chore(github-action): update renovatebot/github-action action to v43.0.12 - [`90e3a49`](https://redirect.github.com/budimanjojo/talhelper/commit/90e3a49920f42dd9df08916799f07c5b32d659dd) chore(github-action): update renovatebot/github-action action to v43.0.13 - [`978ff73`](https://redirect.github.com/budimanjojo/talhelper/commit/978ff733614feb3f5974d616a7151c5acc35266f) chore(schema): update talos-extensions.yaml JSON schema - [`82b15fb`](https://redirect.github.com/budimanjojo/talhelper/commit/82b15fb216a4765846af3c9b22aa57442c0b5fee) chore(schema): update talos-extensions.yaml JSON schema ([#​1197](https://redirect.github.com/budimanjojo/talhelper/issues/1197)) - [`e3ad323`](https://redirect.github.com/budimanjojo/talhelper/commit/e3ad32321826e8e497fec55a9f65fc48e4d9289a) chore(schema): update talos-extensions.yaml JSON schema ([#​1199](https://redirect.github.com/budimanjojo/talhelper/issues/1199)) - [`33c639a`](https://redirect.github.com/budimanjojo/talhelper/commit/33c639a9d7a03b47d36a5fdfc4b0b17f22a5dc58) chore(schema): update talos-extensions.yaml JSON schema ([#​1201](https://redirect.github.com/budimanjojo/talhelper/issues/1201)) - [`dd48322`](https://redirect.github.com/budimanjojo/talhelper/commit/dd4832265f24473d17a69ec6343d67f833165000) chore(schema): update talos-extensions.yaml JSON schema ([#​1202](https://redirect.github.com/budimanjojo/talhelper/issues/1202)) - [`5d05040`](https://redirect.github.com/budimanjojo/talhelper/commit/5d0504042c5446a6eeb01b98dd0ef9178f09636c) chore(schema): update talos-extensions.yaml JSON schema ([#​1205](https://redirect.github.com/budimanjojo/talhelper/issues/1205)) - [`6d6b70a`](https://redirect.github.com/budimanjojo/talhelper/commit/6d6b70ac03982eebc30605e940fa738c1368f8f8) chore(schema): update talos-extensions.yaml JSON schema ([#​1206](https://redirect.github.com/budimanjojo/talhelper/issues/1206)) - [`53cda42`](https://redirect.github.com/budimanjojo/talhelper/commit/53cda4235e7561e3ed53d4f84333300f812be92f) feat: update Scoop for talhelper version v3.0.35 - [`86e05be`](https://redirect.github.com/budimanjojo/talhelper/commit/86e05bea6fdcc5614b5885f8be186f8cc7310eab) feat: update flake ([#​1194](https://redirect.github.com/budimanjojo/talhelper/issues/1194)) - [`0035a0d`](https://redirect.github.com/budimanjojo/talhelper/commit/0035a0d4a12e185e2f8c8f635dd053f10be08307) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.35 </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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
fe1317e798 |
fix(deps): update module github.com/knadh/koanf/v2 v2.2.2 → v2.3.0 (clustertool) (#39549)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/knadh/koanf/v2](https://redirect.github.com/knadh/koanf) | `v2.2.2` -> `v2.3.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>knadh/koanf (github.com/knadh/koanf/v2)</summary> ### [`v2.3.0`](https://redirect.github.com/knadh/koanf/releases/tag/v2.3.0) [Compare Source](https://redirect.github.com/knadh/koanf/compare/v2.2.2...v2.3.0) #### What's Changed - feat: add provider for kiln by [@​Thunderbottom](https://redirect.github.com/Thunderbottom) in [#​369](https://redirect.github.com/knadh/koanf/pull/369) - Fix rendering of header and add it to the table of contents by [@​remyzandwijk](https://redirect.github.com/remyzandwijk) in [#​373](https://redirect.github.com/knadh/koanf/pull/373) - Bump github.com/go-viper/mapstructure/v2 from 2.0.0-alpha.1 to 2.4.0 in /examples by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​375](https://redirect.github.com/knadh/koanf/pull/375) - feat: add HUML parser support by [@​rhnvrm](https://redirect.github.com/rhnvrm) in [#​374](https://redirect.github.com/knadh/koanf/pull/374) - Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.4.0 in /tests by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​376](https://redirect.github.com/knadh/koanf/pull/376) - Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.4.0 in /providers/cliflagv3 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​378](https://redirect.github.com/knadh/koanf/pull/378) - Bump github.com/go-viper/mapstructure/v2 from 2.3.0 to 2.4.0 in /providers/cliflagv2 by [@​dependabot](https://redirect.github.com/dependabot)\[bot] in [#​380](https://redirect.github.com/knadh/koanf/pull/380) - Add thread safety to resolve race conditions in Issues [#​305](https://redirect.github.com/knadh/koanf/issues/305) and [#​335](https://redirect.github.com/knadh/koanf/issues/335) by [@​rhnvrm](https://redirect.github.com/rhnvrm) in [#​377](https://redirect.github.com/knadh/koanf/pull/377) - fix: bump mapstructure version by [@​rostislaved](https://redirect.github.com/rostislaved) in [#​381](https://redirect.github.com/knadh/koanf/pull/381) #### New Contributors - [@​remyzandwijk](https://redirect.github.com/remyzandwijk) made their first contribution in [#​373](https://redirect.github.com/knadh/koanf/pull/373) - [@​rostislaved](https://redirect.github.com/rostislaved) made their first contribution in [#​381](https://redirect.github.com/knadh/koanf/pull/381) **Full Changelog**: <https://github.com/knadh/koanf/compare/v2.2.2...v2.3.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
4009a5b25e |
fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.34 → v3.0.35 (clustertool) (#39458)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/budimanjojo/talhelper/v3](https://redirect.github.com/budimanjojo/talhelper) | `v3.0.34` -> `v3.0.35` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.35`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.35) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.34...v3.0.35) #### Changelog - [`0aaaa1d`](https://redirect.github.com/budimanjojo/talhelper/commit/0aaaa1dc1e9c542c8827da5106032e862064a36d) chore(container)!: Update mcr.microsoft.com/devcontainers/go Docker tag to v2 - [`cfd699e`](https://redirect.github.com/budimanjojo/talhelper/commit/cfd699e8981394d05314bc68063c3b93be2fd65d) chore(container): update ghcr.io/siderolabs/talosctl docker tag to v1.11.1 - [`94fc2ae`](https://redirect.github.com/budimanjojo/talhelper/commit/94fc2ae344bf93b2022b363b2fa46e2648ce1b12) chore(container): update goreleaser/goreleaser docker tag to v2.12.0 - [`49684e4`](https://redirect.github.com/budimanjojo/talhelper/commit/49684e4b8c5cf6e78e00a2beffb38559852435f6) chore(container): update mcr.microsoft.com/devcontainers/go:1.24-bookworm docker digest to [`1fbd360`](https://redirect.github.com/budimanjojo/talhelper/commit/1fbd360) ([#​1178](https://redirect.github.com/budimanjojo/talhelper/issues/1178)) - [`35c8536`](https://redirect.github.com/budimanjojo/talhelper/commit/35c8536d0e88e3d95c86b5ccbbaf336d36ae748a) chore(container): update registry.k8s.io/kubectl docker tag to v1.34.1 - [`a74845d`](https://redirect.github.com/budimanjojo/talhelper/commit/a74845db2fbb916a61602c6c1c4dfbaecb7d47b3) chore(deps): update dependency siderolabs/talos to v1.11.1 - [`6c696e4`](https://redirect.github.com/budimanjojo/talhelper/commit/6c696e4b9f337ba68f2f5bc81a2a8468e82ea7bf) chore(github-action)!: Update actions/setup-go action to v6 - [`a95672a`](https://redirect.github.com/budimanjojo/talhelper/commit/a95672ab3684e11ea5b06eada7be28ecd0ae4226) chore(github-action): update renovatebot/github-action action to v43.0.11 - [`e7125fd`](https://redirect.github.com/budimanjojo/talhelper/commit/e7125fdd47d3cb83413fd469d5a9d65d887ca503) chore(schema): update talos-extensions.yaml JSON schema - [`746ee58`](https://redirect.github.com/budimanjojo/talhelper/commit/746ee587000cf5d7ae3677022957af212460a600) chore(schema): update talos-extensions.yaml JSON schema ([#​1176](https://redirect.github.com/budimanjojo/talhelper/issues/1176)) - [`60b4e2b`](https://redirect.github.com/budimanjojo/talhelper/commit/60b4e2b318aa0b3bba3537e851d61c316bea0d4c) chore(schema): update talos-extensions.yaml JSON schema ([#​1181](https://redirect.github.com/budimanjojo/talhelper/issues/1181)) - [`a8005f0`](https://redirect.github.com/budimanjojo/talhelper/commit/a8005f00903ea2ff490ee09981881201caa072d7) chore(schema): update talos-extensions.yaml JSON schema ([#​1183](https://redirect.github.com/budimanjojo/talhelper/issues/1183)) - [`7c77bd3`](https://redirect.github.com/budimanjojo/talhelper/commit/7c77bd38321a3634b140c91599452ea47b84451d) chore(schema): update talos-extensions.yaml JSON schema ([#​1184](https://redirect.github.com/budimanjojo/talhelper/issues/1184)) - [`af5f6d2`](https://redirect.github.com/budimanjojo/talhelper/commit/af5f6d22443f69e299ae8c29ad3ee24f1e8564e7) feat(flake): update go to 1.25.0 - [`142eebe`](https://redirect.github.com/budimanjojo/talhelper/commit/142eebec901b6199c4007a0554b8cb3a1eca0a09) feat(nix): this needs to be update too - [`5b55b57`](https://redirect.github.com/budimanjojo/talhelper/commit/5b55b57eb44476ead678840e710f456d2c6e990c) feat: add 1.12 to supported-version - [`3a9979e`](https://redirect.github.com/budimanjojo/talhelper/commit/3a9979e907e0f92ace5a14a063cbe757c96d6a3d) feat: update Scoop for talhelper version v3.0.34 - [`90e5ecb`](https://redirect.github.com/budimanjojo/talhelper/commit/90e5ecbeb35bae71afea835c2a1587a78a7b0d23) feat: update flake ([#​1173](https://redirect.github.com/budimanjojo/talhelper/issues/1173)) - [`ae5da7b`](https://redirect.github.com/budimanjojo/talhelper/commit/ae5da7b7de57baab2dd79eaa36e491c259637087) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.34 - [`b6e476e`](https://redirect.github.com/budimanjojo/talhelper/commit/b6e476ef5c369fb92b4eb9b7155984a5adac6ffb) fix(deps): update module github.com/gookit/validate to v1.5.6 - [`c774577`](https://redirect.github.com/budimanjojo/talhelper/commit/c77457778c89154dc9355481e192ef8b57b32ba1) fix(deps): update module github.com/siderolabs/image-factory to v0.8.4 - [`7bfbe3d`](https://redirect.github.com/budimanjojo/talhelper/commit/7bfbe3d61fc704070f62f3bb33669c7b7c79f27a) fix(deps): update module github.com/siderolabs/talos/pkg/machinery to v1.12.0-alpha.0 - [`f3a6a23`](https://redirect.github.com/budimanjojo/talhelper/commit/f3a6a23f6d20dfb9b27d7a6afb4b16659f3189fb) fix(deps): update module golang.org/x/mod to v0.28.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
ed77dab082 |
fix(deps): update module helm.sh/helm/v3 v3.18.6 → v3.19.0 (clustertool) (#39446)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [helm.sh/helm/v3](https://redirect.github.com/helm/helm) | `v3.18.6` -> `v3.19.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.19.0`](https://redirect.github.com/helm/helm/releases/tag/v3.19.0): Helm v3.19.0 [Compare Source](https://redirect.github.com/helm/helm/compare/v3.18.6...v3.19.0) Helm v3.19.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 - Fixed a `helm pull` regression from 3.18 - error pulling OCI charts with --password [#​31230](https://redirect.github.com/helm/helm/issues/31230) - Fixed a `helm lint` regression from Helm 3.18 - rejected JSON Schema $ref URLs that worked in 3.17.x [#​31166](https://redirect.github.com/helm/helm/issues/31166) - Fixed go mod tidy [#​31154](https://redirect.github.com/helm/helm/issues/31154) - Fixed k8s version parsing not matching original [#​31091](https://redirect.github.com/helm/helm/issues/31091) - Fixed charts failing when using a redirect registry [#​31087](https://redirect.github.com/helm/helm/issues/31087) - Fixed missing debug logging for OCI transport - Fixed broken legacy docker support for login [#​30941](https://redirect.github.com/helm/helm/issues/30941) - Fixed bugs from the move to ORAS v2 - Fixed processing all hook deletions on failure [#​30673](https://redirect.github.com/helm/helm/issues/30673) - Feature for `helm create` added httproute from gateway-api to create chart template [#​30658](https://redirect.github.com/helm/helm/issues/30658) #### Installation and Upgrading Download Helm v3.19.0. The common platform binaries are here: - [MacOS amd64](https://get.helm.sh/helm-v3.19.0-darwin-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-darwin-amd64.tar.gz.sha256sum) / 09a108c0abda42e45af172be65c49125354bf7cd178dbe10435e94540e49c7b9) - [MacOS arm64](https://get.helm.sh/helm-v3.19.0-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-darwin-arm64.tar.gz.sha256sum) / 31513e1193da4eb4ae042eb5f98ef9aca7890cfa136f4707c8d4f70e2115bef6) - [Linux amd64](https://get.helm.sh/helm-v3.19.0-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-amd64.tar.gz.sha256sum) / a7f81ce08007091b86d8bd696eb4d86b8d0f2e1b9f6c714be62f82f96a594496) - [Linux arm](https://get.helm.sh/helm-v3.19.0-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-arm.tar.gz.sha256sum) / 8708367b8e8bed9bdf8429bb57536e4223cdca96245dffc205cb0cb670b151f4) - [Linux arm64](https://get.helm.sh/helm-v3.19.0-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-arm64.tar.gz.sha256sum) / 440cf7add0aee27ebc93fada965523c1dc2e0ab340d4348da2215737fc0d76ad) - [Linux i386](https://get.helm.sh/helm-v3.19.0-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-386.tar.gz.sha256sum) / ca0329cd1b09267e7c63c563e32462265949c31512b537dd6615d0b5190040fc) - [Linux ppc64le](https://get.helm.sh/helm-v3.19.0-linux-ppc64le.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-ppc64le.tar.gz.sha256sum) / f57ea04d7fa62cc3e90a831eb67edb1400c810df6083875bee3a7c195a795ce4) - [Linux s390x](https://get.helm.sh/helm-v3.19.0-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-s390x.tar.gz.sha256sum) / 0dff2f249f71690e3b420ebb5efc573eb26a51b4a614c4391c8c7fa3e47863f2) - [Linux riscv64](https://get.helm.sh/helm-v3.19.0-linux-riscv64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.19.0-linux-riscv64.tar.gz.sha256sum) / 978af545a3d72a253ce1d4c03c9febb509a239a48b2581107e548883ab61a227) - [Windows amd64](https://get.helm.sh/helm-v3.19.0-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.19.0-windows-amd64.zip.sha256sum) / 6488630c2e5d5945ed990fa02fd9e99f9c6792cdbcd79eb264b6cfb90179d2d1) - [Windows arm64](https://get.helm.sh/helm-v3.19.0-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.19.0-windows-arm64.zip.sha256sum) / 488f7530a1776da1b46b14e988bf305c9d7419c78e7e73aeb92f198a41c9ef6b) 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.19.1 will contain only bug fixes. - 3.20.0 is the next feature release. #### Changelog - bump version to v3.19.0 [`3d8990f`](https://redirect.github.com/helm/helm/commit/3d8990f0836691f0229297773f3524598f46bda6) (Scott Rigby) - fix: use username and password if provided [`9a54bf1`](https://redirect.github.com/helm/helm/commit/9a54bf1df6245232aff6235ebc5da7616f06afa7) (Evans Mungai) - chore(deps): bump the k8s-io group with 7 updates [`5af0f68`](https://redirect.github.com/helm/helm/commit/5af0f68365132bf40d6da38eac87cb94d113b5c3) (dependabot\[bot]) - chore(deps): bump github.com/spf13/cobra from 1.9.1 to 1.10.1 [`e485606`](https://redirect.github.com/helm/helm/commit/e485606fa6c637f9d33c85d449f5add15fa75f64) (dependabot\[bot]) - chore(deps): bump github.com/stretchr/testify from 1.11.0 to 1.11.1 [`6355c3d`](https://redirect.github.com/helm/helm/commit/6355c3de11a76acc934348b2b2365c795327517b) (dependabot\[bot]) - chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.0 [`ec61f66`](https://redirect.github.com/helm/helm/commit/ec61f666994ca6572278ff05a45850606d18f12d) (dependabot\[bot]) - fix(helm-lint): fmt [`b278020`](https://redirect.github.com/helm/helm/commit/b27802031110bcfcaf0b685f7f3efda8a309ce8c) (Isaiah Lewis) - fix(helm-lint): Add TLSClientConfig [`d33ac5e`](https://redirect.github.com/helm/helm/commit/d33ac5e44b4eb884d67141b00753817b091054ca) (Isaiah Lewis) - fix(helm-lint): Add HTTP/HTTPS URL support for json schema references [`8543709`](https://redirect.github.com/helm/helm/commit/854370978eb4664ed75e1918df733ecf1503e904) (Isaiah Lewis) - chore(deps): bump the k8s-io group with 7 updates [`89a3f90`](https://redirect.github.com/helm/helm/commit/89a3f90e7545857edbfbb7d46af1796f0fee7097) (dependabot\[bot]) - fix: go mod tidy for v3 [`da4c583`](https://redirect.github.com/helm/helm/commit/da4c583145cf4de6a291e81b499ba53785739c2b) (Terry Howe) - chore(deps): bump golang.org/x/crypto from 0.40.0 to 0.41.0 [`e40b1b3`](https://redirect.github.com/helm/helm/commit/e40b1b3b367cae275d823eadcfcef43729e16260) (dependabot\[bot]) - chore(deps): bump golang.org/x/term from 0.33.0 to 0.34.0 [`a27e9db`](https://redirect.github.com/helm/helm/commit/a27e9db724540bc53b066dff7d80d075a9fa86d8) (dependabot\[bot]) - fix Chart.yaml handling [`f13afaa`](https://redirect.github.com/helm/helm/commit/f13afaacd6f8f9dca4ad914d87fabbe129692eda) (Matt Farina) - Handle messy index files [`039b0b1`](https://redirect.github.com/helm/helm/commit/039b0b18d3c83c9aa3a80da67f3cf1c2d965a598) (Matt Farina) - chore(deps): bump github.com/containerd/containerd from 1.7.27 to 1.7.28 [`bec98a9`](https://redirect.github.com/helm/helm/commit/bec98a91aa1f810220f4fd2a7f06b155afe68970) (dependabot\[bot]) - json schema fix [`6d9509a`](https://redirect.github.com/helm/helm/commit/6d9509aadcfb44aaaa6fc6528443815343a551b4) (Robert Sirchia) - fix: k8s version parsing to match original [`807225e`](https://redirect.github.com/helm/helm/commit/807225ed62b2901fcbaf56923111d9d7f9204a59) (Borys Hulii) - chore(deps): bump sigs.k8s.io/yaml from 1.5.0 to 1.6.0 [`cbbd569`](https://redirect.github.com/helm/helm/commit/cbbd569aba384d6bf04328645d8befd8555c7879) (dependabot\[bot]) - Do not explicitly set SNI in HTTPGetter [`5e8ff72`](https://redirect.github.com/helm/helm/commit/5e8ff72b71fab9bda848bc2c980b2139401e1057) (Terry Howe) - chore(deps): bump github.com/spf13/pflag from 1.0.6 to 1.0.7 [`5b5fb5b`](https://redirect.github.com/helm/helm/commit/5b5fb5b6832fd210e6dfeda01ef91d6eea73abe4) (dependabot\[bot]) - chore(deps): bump the k8s-io group with 7 updates [`d12538a`](https://redirect.github.com/helm/helm/commit/d12538a23df05acb027f319766dde19a90f0c78a) (dependabot\[bot]) - chore(deps): bump golang.org/x/crypto from 0.39.0 to 0.40.0 [`303f803`](https://redirect.github.com/helm/helm/commit/303f8031bdfbd18fa8630def8199957fa4784a20) (dependabot\[bot]) - chore(deps): bump golang.org/x/term from 0.32.0 to 0.33.0 [`abcc2ed`](https://redirect.github.com/helm/helm/commit/abcc2edc2722406928df731dfac8981032d7831a) (dependabot\[bot]) - chore(deps): bump golang.org/x/text from 0.26.0 to 0.27.0 [`521c67b`](https://redirect.github.com/helm/helm/commit/521c67b3588a37ccb1e19fc90130813587015291) (dependabot\[bot]) - Disabling linter due to unknown issue [`227c9cb`](https://redirect.github.com/helm/helm/commit/227c9cb6b6c4ba190fa4064c0dba91f8a3106b79) (Matt Farina) - Updating link handling [`4389fa6`](https://redirect.github.com/helm/helm/commit/4389fa639a4d8e6836fa8df9bb70dd69c2820c12) (Matt Farina) - Bump github.com/Masterminds/semver/v3 from 3.3.0 to 3.3.1 [`372e403`](https://redirect.github.com/helm/helm/commit/372e40376a15568ba1d9920beb9ab4fe91b90a55) (dependabot\[bot]) - build(deps): bump the k8s-io group with 7 updates [`4fa5a64`](https://redirect.github.com/helm/helm/commit/4fa5a64127532cb9e69986f584aef491f36a925b) (dependabot\[bot]) - build(deps): bump sigs.k8s.io/yaml from 1.4.0 to 1.5.0 [`6284ed8`](https://redirect.github.com/helm/helm/commit/6284ed853892c95b87d08a08d64199af63ed3e13) (dependabot\[bot]) - fix: user username password for login [`2c55a4e`](https://redirect.github.com/helm/helm/commit/2c55a4e8ce483fe1a03d7afa46a89e26852bc3c5) (Terry Howe) - Update pkg/registry/transport.go [`a16e986`](https://redirect.github.com/helm/helm/commit/a16e986d4e184b4e065968c5f5c30198a12d880e) (Terry Howe) - Update pkg/registry/transport.go [`cea26d8`](https://redirect.github.com/helm/helm/commit/cea26d8bcac27f888ebb43a8ac8fe87f5851d380) (Terry Howe) - fix: add debug logging to oci transport [`b52bb41`](https://redirect.github.com/helm/helm/commit/b52bb41484bca2eab616aed83aa922cbb5ef1e3b) (Terry Howe) - build(deps): bump golang.org/x/crypto from 0.38.0 to 0.39.0 [`45075cf`](https://redirect.github.com/helm/helm/commit/45075cf9434456c8d1cd59a6355265e958b71b2f) (dependabot\[bot]) - build(deps): bump golang.org/x/text from 0.25.0 to 0.26.0 [`73a7826`](https://redirect.github.com/helm/helm/commit/73a78263956bf738008e158afb8d641acbb8f3b9) (dependabot\[bot]) - fix: legacy docker support broken for login [`733f94c`](https://redirect.github.com/helm/helm/commit/733f94c86a98f2fc4a12eba510e26615d4b8aa59) (Terry Howe) - fix: plugin installer test with no Internet [`fc36041`](https://redirect.github.com/helm/helm/commit/fc360417024f4734e5b7356385512a08a31c743e) (Terry Howe) - Handle an empty registry config file. [`cfe8cef`](https://redirect.github.com/helm/helm/commit/cfe8cef46f04f36ca33e8696573e243d14e17e79) (Matt Farina) - Prevent fetching newReference again as we have in calling method [`c33215d`](https://redirect.github.com/helm/helm/commit/c33215d765e291bc9321984d4f60a0182c738938) (Benoit Tigeot) - Prevent failure when resolving version tags in oras memory store [`f552b67`](https://redirect.github.com/helm/helm/commit/f552b672305a420b54a725185f98e34e51fbd7ba) (Benoit Tigeot) - fix(client): skipnode utilization for PreCopy [`a18a52e`](https://redirect.github.com/helm/helm/commit/a18a52e8982b399101f7f20e2473de8514e85226) (Brandt Keller) - test: Skip instead of returning early. looks more intentional [`fedf502`](https://redirect.github.com/helm/helm/commit/fedf5024d60bcb4efce9cf7f6f1b7bca642a66eb) (Jesse Simpson) - test: tests repo stripping functionality [`fe512ba`](https://redirect.github.com/helm/helm/commit/fe512bae439b5271dd7d2cdb75fadf3c39abd800) (Jesse Simpson) - test: include tests for Login based on different protocol prefixes [`099a9e1`](https://redirect.github.com/helm/helm/commit/099a9e18f30db9c90a3a5e52b2af6dd630a6d757) (Jesse Simpson) - fix(client): layers now returns manifest - remove duplicate from descriptors [`b07ab77`](https://redirect.github.com/helm/helm/commit/b07ab77da3a2d20508b8e775981e233a81d4c753) (Brandt Keller) - fix(client): return nil on non-allowed media types [`c225c12`](https://redirect.github.com/helm/helm/commit/c225c124ac76eedc3ca6e013df40da8d2c50650d) (Brandt Keller) - Fix 3.18.0 regression: registry login with scheme [`c0f3ace`](https://redirect.github.com/helm/helm/commit/c0f3ace52d974b7465f33079bbf54ed961f875f1) (Scott Rigby) - Update pkg/plugin/plugin.go [`dce60ad`](https://redirect.github.com/helm/helm/commit/dce60adb5141695b9deab023dbfa25bba681d8fa) (Benoit Tigeot) - Update pkg/plugin/plugin.go [`cda0865`](https://redirect.github.com/helm/helm/commit/cda0865d64a4deec682fd044aa4412eb9ab643db) (Benoit Tigeot) - Wait for Helm v4 before raising when platformCommand and Command are set [`5d9d9a0`](https://redirect.github.com/helm/helm/commit/5d9d9a0fb8c1700c5aa9051e3768dcdabfed642d) (Benoit Tigeot) - Revert "fix (helm) : toToml\` renders int as float \[ backport to v3 ]" [`c5249c1`](https://redirect.github.com/helm/helm/commit/c5249c1f8d83d44081afee41efeac3ee36d6e9bc) (Matt Farina) - build(deps): bump the k8s-io group with 7 updates [`5b0520d`](https://redirect.github.com/helm/helm/commit/5b0520d6b323b291546cb6fbc4dc0f76b570a6eb) (dependabot\[bot]) - chore: update generalization warning message [`afefca8`](https://redirect.github.com/helm/helm/commit/afefca8b2dcb3c220e24075e8dabf0cffd170daf) (Feng Cao) - build(deps): bump oras.land/oras-go/v2 from 2.5.0 to 2.6.0 [`8d6d27c`](https://redirect.github.com/helm/helm/commit/8d6d27c26aad581c3da61f7e67786949c9201fcd) (dependabot\[bot]) - build(deps): bump the k8s-io group with 7 updates [`502c0d5`](https://redirect.github.com/helm/helm/commit/502c0d5f5b8563be076de69be85f8e0add11b69c) (dependabot\[bot]) - build(deps): bump golang.org/x/crypto from 0.37.0 to 0.38.0 [`92be9ac`](https://redirect.github.com/helm/helm/commit/92be9ac0c8abab27efd740be6a671d6e8dd535fd) (dependabot\[bot]) - fix: move warning to top of block [`eb5b6d5`](https://redirect.github.com/helm/helm/commit/eb5b6d50474842db17330b11e0db70077e1c4510) (Feng Cao) - fix: govulncheck workflow [`6b15f26`](https://redirect.github.com/helm/helm/commit/6b15f26bd45c2856b36bdf3e8c32b44595e4580f) (Matthieu MOREL) - fix: replace fmt warning with slog [`6b5c944`](https://redirect.github.com/helm/helm/commit/6b5c94475db950a981523344029f0a7c620a2e32) (Feng Cao) - fix: add warning when ignore repo flag [`247bf7c`](https://redirect.github.com/helm/helm/commit/247bf7c2e0c591554b6cfd4c2f62cb2700b034ee) (Feng Cao) - bump version to v3.18.0 [`9404459`](https://redirect.github.com/helm/helm/commit/94044595c79ddf1311a4cd3df0353fe62a7ed633) (Robert Sirchia) - backport [#​30673](https://redirect.github.com/helm/helm/issues/30673) to dev-v3 [`0a800e8`](https://redirect.github.com/helm/helm/commit/0a800e84b033ae03fc31a46215378ac7761cb9c5) (Gerard Nguyen) - feat: add httproute from gateway-api to create chart template [`bd1b67b`](https://redirect.github.com/helm/helm/commit/bd1b67b082122ad1264d07c5d28bbc4c4171b826) (Henrik Gerdes) **Full Changelog**: <https://github.com/helm/helm/compare/v3.18.6...v3.19.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
e78e9b8840 | fix(deps): update kubernetes packages v0.34.0 → v0.34.1 (clustertool) (patch) (#39389) | ||
|
|
e5d6f17a23 |
fix(deps): update module golang.org/x/crypto v0.41.0 → v0.42.0 (clustertool) (#39302)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | golang.org/x/crypto | `v0.41.0` -> `v0.42.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
b931cbbb7a |
fix(deps): update module sigs.k8s.io/controller-runtime v0.22.0 → v0.22.1 (clustertool) (#39296)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [sigs.k8s.io/controller-runtime](https://redirect.github.com/kubernetes-sigs/controller-runtime) | `v0.22.0` -> `v0.22.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.22.1`](https://redirect.github.com/kubernetes-sigs/controller-runtime/releases/tag/v0.22.1) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-runtime/compare/v0.22.0...v0.22.1) #### What's Changed - 🌱 Revert deprecation of client.Apply by [@​k8s-infra-cherrypick-robot](https://redirect.github.com/k8s-infra-cherrypick-robot) in [#​3308](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3308) **Full Changelog**: <https://github.com/kubernetes-sigs/controller-runtime/compare/v0.22.0...v0.22.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
e72e0ba9c9 |
fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.11.0 → v1.11.1 (clustertool) (#39295)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | `v1.11.0` -> `v1.11.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.1`](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.1) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0...v1.11.1) #### [Talos 1.11.1](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.1) (2025-09-08) Welcome to the v1.11.1 release of Talos! Please try out the release binaries and report any issues at <https://github.com/siderolabs/talos/issues>. ##### Component Updates Linux: 6.12.45 CoreDNS: 1.12.3 Talos is built with Go 1.24.6. ##### Contributors - Andrey Smirnov - Markus Freitag - Olivier Doucet - Sammy ETUR ##### Changes <details><summary>7 commits</summary> <p> - [@​`8e85c83`](https://redirect.github.com/siderolabs/talos/commit/8e85c8362) release(v1.11.1): prepare release - [@​`ff8644c`](https://redirect.github.com/siderolabs/talos/commit/ff8644cd2) fix: correctly handle status-code 204 - [@​`7d5fe2d`](https://redirect.github.com/siderolabs/talos/commit/7d5fe2d0f) feat: update Linux kernel (memcg\_v1, ublk) - [@​`9e310a9`](https://redirect.github.com/siderolabs/talos/commit/9e310a9dd) fix: enable support for VMWare arm64 - [@​`f7620f0`](https://redirect.github.com/siderolabs/talos/commit/f7620f028) feat: update CoreDNS to 1.12.3 - [@​`01bf2f6`](https://redirect.github.com/siderolabs/talos/commit/01bf2f6f9) feat: add SOCKS5 proxy support to dynamic proxy dialer - [@​`8a578bc`](https://redirect.github.com/siderolabs/talos/commit/8a578bc4a) feat: update Linux to 6.12.45 </p> </details> ##### Changes from siderolabs/pkgs <details><summary>3 commits</summary> <p> - [siderolabs/pkgs@`1a25681`](https://redirect.github.com/siderolabs/pkgs/commit/1a25681) feat: enable ublk support - [siderolabs/pkgs@`95f0be4`](https://redirect.github.com/siderolabs/pkgs/commit/95f0be4) fix: enable memcg v1 - [siderolabs/pkgs@`e1c333c`](https://redirect.github.com/siderolabs/pkgs/commit/e1c333c) feat: update Linux to 6.12.45 </p> </details> ##### Dependency Changes - **cloud.google.com/go/compute/metadata** v0.7.0 -> v0.8.0 - **github.com/aws/aws-sdk-go-v2/config** v1.29.17 -> v1.31.2 - **github.com/aws/aws-sdk-go-v2/feature/ec2/imds** v1.16.32 -> v1.18.4 - **github.com/aws/smithy-go** v1.22.4 -> v1.22.5 - **github.com/miekg/dns** v1.1.67 -> v1.1.68 - **github.com/siderolabs/pkgs** v1.11.0-15-g2ac857a -> v1.11.0-18-g1a25681 - **github.com/siderolabs/talos/pkg/machinery** v1.11.0 -> v1.11.1 - **golang.org/x/net** v0.42.0 -> v0.43.0 - **golang.org/x/sys** v0.34.0 -> v0.35.0 - **golang.org/x/term** v0.33.0 -> v0.34.0 - **golang.org/x/text** v0.27.0 -> v0.28.0 - **google.golang.org/grpc** v1.73.0 -> v1.75.0 - **google.golang.org/protobuf** v1.36.6 -> v1.36.8 Previous release can be found at [v1.11.0](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0) #### Images ``` ghcr.io/siderolabs/flannel:v0.27.2 registry.k8s.io/coredns/coredns:v1.12.3 gcr.io/etcd-development/etcd:v3.6.4 registry.k8s.io/kube-apiserver:v1.34.0 registry.k8s.io/kube-controller-manager:v1.34.0 registry.k8s.io/kube-scheduler:v1.34.0 registry.k8s.io/kube-proxy:v1.34.0 ghcr.io/siderolabs/kubelet:v1.34.0 ghcr.io/siderolabs/installer:v1.11.1 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**: 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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
1c28a12789 | chore: fix links | ||
|
|
e1f861d3b6 | chore(clustertool): some minor clustertool fixes | ||
|
|
79851dcf49 |
fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.33 → v3.0.34 (clustertool) (#39036)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/budimanjojo/talhelper/v3](https://redirect.github.com/budimanjojo/talhelper) | `v3.0.33` -> `v3.0.34` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.34`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.34) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.33...v3.0.34) #### Changelog - [`100ca2c`](https://redirect.github.com/budimanjojo/talhelper/commit/100ca2c3398ac7defb00b82068320ff9a1480796) chore(container): update ghcr.io/siderolabs/talosctl docker tag to v1.11.0 - [`e9c56d5`](https://redirect.github.com/budimanjojo/talhelper/commit/e9c56d501415ffae06e7ce9f15422a02a4206848) chore(container): update registry.k8s.io/kubectl docker tag to v1.34.0 - [`c7f013c`](https://redirect.github.com/budimanjojo/talhelper/commit/c7f013c23bbbc71778c75574f7a65095eaa94653) chore(deps): update dependency siderolabs/talos to v1.11.0 - [`c53b26f`](https://redirect.github.com/budimanjojo/talhelper/commit/c53b26fe28f5e87e89fbcc9b4d0d1befd8509b27) chore(github-action): update renovatebot/github-action action to v43.0.10 - [`691d81b`](https://redirect.github.com/budimanjojo/talhelper/commit/691d81b63d77a7e478cd4d79a4fe3ca188a288ad) chore(schema): update talos-extensions.yaml JSON schema - [`898c46d`](https://redirect.github.com/budimanjojo/talhelper/commit/898c46d63e636bf50da8e5739a4ec9a39c465672) chore(schema): update talos-extensions.yaml JSON schema - [`e46dc65`](https://redirect.github.com/budimanjojo/talhelper/commit/e46dc656d449a89ae350381b0bbb98076be1430a) chore(schema): update talos-extensions.yaml JSON schema ([#​1161](https://redirect.github.com/budimanjojo/talhelper/issues/1161)) - [`b42ba2c`](https://redirect.github.com/budimanjojo/talhelper/commit/b42ba2cf8a8c3afe96a4aeb532113aaee7abd98e) chore(schema): update talos-extensions.yaml JSON schema ([#​1164](https://redirect.github.com/budimanjojo/talhelper/issues/1164)) - [`50e2ab4`](https://redirect.github.com/budimanjojo/talhelper/commit/50e2ab498fe2a421481112edb3c499305cb93a94) chore(schema): update talos-extensions.yaml JSON schema ([#​1171](https://redirect.github.com/budimanjojo/talhelper/issues/1171)) - [`7682ebd`](https://redirect.github.com/budimanjojo/talhelper/commit/7682ebd1df116f80575edb139f17f1bec9215959) feat: update Scoop for talhelper version v3.0.33 - [`1e90a36`](https://redirect.github.com/budimanjojo/talhelper/commit/1e90a3644efef5028f10eb688a3a8ea3a4cc8334) feat: update flake ([#​1158](https://redirect.github.com/budimanjojo/talhelper/issues/1158)) - [`5621659`](https://redirect.github.com/budimanjojo/talhelper/commit/5621659e398ebd515d3a15d1b7f4ce0a7929537b) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.33 - [`0b059b7`](https://redirect.github.com/budimanjojo/talhelper/commit/0b059b7111885b26926e6a0a5c6ac2be5e78a175) fix(deps): update module github.com/siderolabs/talos/pkg/machinery to v1.11.0 - [`7d3d68c`](https://redirect.github.com/budimanjojo/talhelper/commit/7d3d68c073fa93211b1a1b00f4b2623c092d94bf) fix(deps): update module github.com/spf13/cobra to v1.10.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
02355085ad |
fix(deps): update module github.com/spf13/cobra v1.9.1 → v1.10.1 (clustertool) (#39022)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/spf13/cobra](https://redirect.github.com/spf13/cobra) | `v1.9.1` -> `v1.10.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>spf13/cobra (github.com/spf13/cobra)</summary> ### [`v1.10.1`](https://redirect.github.com/spf13/cobra/releases/tag/v1.10.1) [Compare Source](https://redirect.github.com/spf13/cobra/compare/v1.10.0...v1.10.1) ##### 🐛 Fix - chore: upgrade pflags v1.0.9 by [@​jpmcb](https://redirect.github.com/jpmcb) in [#​2305](https://redirect.github.com/spf13/cobra/pull/2305) v1.0.9 of pflags brought back `ParseErrorsWhitelist` and marked it as deprecated **Full Changelog**: <https://github.com/spf13/cobra/compare/v1.10.0...v1.10.1> ### [`v1.10.0`](https://redirect.github.com/spf13/cobra/releases/tag/v1.10.0) [Compare Source](https://redirect.github.com/spf13/cobra/compare/v1.9.1...v1.10.0) #### What's Changed ##### 🚨 Attention! - Bump pflag to 1.0.8 by [@​tomasaschan](https://redirect.github.com/tomasaschan) in [#​2303](https://redirect.github.com/spf13/cobra/pull/2303) This version of `pflag` carried a breaking change: it renamed `ParseErrorsWhitelist` to `ParseErrorsAllowlist` which can break builds if both `pflag` and `cobra` are dependencies in your project. - If you use both `pflag and `cobra`, upgrade `pflag`to 1.0.8 and`cobra`to`1.10.0\` - ***or*** use the newer, fixed version of `pflag` v1.0.9 which keeps the deprecated `ParseErrorsWhitelist` More details can be found here: [#​2303 (comment)](https://redirect.github.com/spf13/cobra/pull/2303#issuecomment-3242333515) ##### ✨ Features - Flow context to command in SetHelpFunc by [@​Frassle](https://redirect.github.com/Frassle) in [#​2241](https://redirect.github.com/spf13/cobra/pull/2241) - The default ShellCompDirective can be customized for a command and its subcommands by [@​albers](https://redirect.github.com/albers) in [#​2238](https://redirect.github.com/spf13/cobra/pull/2238) ##### 🐛 Fix - Upgrade golangci-lint to v2, address findings by [@​scop](https://redirect.github.com/scop) in [#​2279](https://redirect.github.com/spf13/cobra/pull/2279) ##### 🪠 Testing - Test with Go 1.24 by [@​harryzcy](https://redirect.github.com/harryzcy) in [#​2236](https://redirect.github.com/spf13/cobra/pull/2236) - chore: Rm GitHub Action PR size labeler by [@​jpmcb](https://redirect.github.com/jpmcb) in [#​2256](https://redirect.github.com/spf13/cobra/pull/2256) ##### 📝 Docs - Remove traling curlybrace by [@​yedayak](https://redirect.github.com/yedayak) in [#​2237](https://redirect.github.com/spf13/cobra/pull/2237) - Update command.go by [@​styee](https://redirect.github.com/styee) in [#​2248](https://redirect.github.com/spf13/cobra/pull/2248) - feat: Add security policy by [@​jpmcb](https://redirect.github.com/jpmcb) in [#​2253](https://redirect.github.com/spf13/cobra/pull/2253) - Update Readme (Warp) by [@​ericdachen](https://redirect.github.com/ericdachen) in [#​2267](https://redirect.github.com/spf13/cobra/pull/2267) - Add Periscope to the list of projects using Cobra by [@​anishathalye](https://redirect.github.com/anishathalye) in [#​2299](https://redirect.github.com/spf13/cobra/pull/2299) #### New Contributors - [@​harryzcy](https://redirect.github.com/harryzcy) made their first contribution in [#​2236](https://redirect.github.com/spf13/cobra/pull/2236) - [@​yedayak](https://redirect.github.com/yedayak) made their first contribution in [#​2237](https://redirect.github.com/spf13/cobra/pull/2237) - [@​Frassle](https://redirect.github.com/Frassle) made their first contribution in [#​2241](https://redirect.github.com/spf13/cobra/pull/2241) - [@​styee](https://redirect.github.com/styee) made their first contribution in [#​2248](https://redirect.github.com/spf13/cobra/pull/2248) - [@​ericdachen](https://redirect.github.com/ericdachen) made their first contribution in [#​2267](https://redirect.github.com/spf13/cobra/pull/2267) - [@​albers](https://redirect.github.com/albers) made their first contribution in [#​2238](https://redirect.github.com/spf13/cobra/pull/2238) - [@​anishathalye](https://redirect.github.com/anishathalye) made their first contribution in [#​2299](https://redirect.github.com/spf13/cobra/pull/2299) - [@​tomasaschan](https://redirect.github.com/tomasaschan) made their first contribution in [#​2303](https://redirect.github.com/spf13/cobra/pull/2303) **Full Changelog**: <https://github.com/spf13/cobra/compare/v1.9.1...v1.9.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
0448422405 |
fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.11.0-rc.0 → v1.11.0 (clustertool) (#39018)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | `v1.11.0-rc.0` -> `v1.11.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.0`](https://redirect.github.com/siderolabs/talos/blob/HEAD/CHANGELOG.md#Talos-1110-alpha3-2025-07-02) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-rc.0...v1.11.0) Welcome to the v1.11.0-alpha.3 release of Talos!\ *This is a pre-release of Talos* Please try out the release binaries and report any issues at <https://github.com/siderolabs/talos/issues>. ##### Azure Talos on Azure now defaults to MTU of 1400 bytes for the `eth0` interface to avoid packet fragmentation issues. The default MTU can be overriden with machine configuration. ##### IMA support removed Talos now drops the IMA (Integrity Measurement Architecture) support. This feature was not used in Talos for any meaningful security purpose and has historically caused performance issues. See [#​11133](https://redirect.github.com/siderolabs/talos/issues/11133) for more details. ##### Kubernetes Version Validation Talos now validates Kubernetes version in the image submitted in the machine configuration. Previously this check was performed only on upgrade, but now it is consistently applied to upgrade, initial provisioning, and machine configuration updates. This implies that all image references should contain the tag, even if the image is pinned by digest. ##### Qemu provisioner on MacOS On MacOS `talosctl cluster create` command now supports the Qemu provisioner in addition to the Docker provisioner. ##### Swap Suport Talos now supports swap on block devices. This feature can be enable by using [SwapVolumeConfig](https://www.talos.dev/v1.11/reference/configuration/block/swapvolumeconfig/) document in the machine configuration. ##### Component Updates Linux: 6.12.35 Kubernetes: 1.34.0-alpha.2 runc: 1.3.0 containerd: 2.1.3 Flannel CNI plugin: 1.7.1-flannel1 Flannel: 0.27.0 CoreDNS: 1.12.2 Talos is built with Go 1.24.4. ##### VMware Talos VMWare platform now supports `arm64` architecture in addition to `amd64`. ##### Zswap Support Talos now supports zswap, a compressed cache for swap pages. This feature can be enabled by using [ZswapConfig](https://www.talos.dev/v1.11/reference/configuration/block/zswapconfig/) document in the machine configuration. ##### Contributors - Andrey Smirnov - Noel Georgi - Orzelius - Orzelius - Justin Garrison - Spencer Smith - Till Hoffmann - Utku Ozdemir - Artem Chernyshev - Dmitrii Sharshakov - Michael Robbins - Steve Francis - Andrew Longwill - Marat Bakeev - Olav Thoresen - Thibault VINCENT - Alvaro "Chamo" Linares Cabre - Brian Brookman - Bryan Mora - Clément Nussbaumer - Damien - David R - Dennis Marttinen - Dmitriy Matrenichev - Joakim Nohlgård - Jorik Jonker - Justin Seely - Luke Cousins - Marco Mihai Condrache - Markus Reiter - Martyn Ranyard - Michael Moerz - Mike - Tan Siewert - Tom Keur - jvanthienen-gluo - killcity - yashutanu ##### Changes <details><summary>170 commits</summary> <p> - [`777335f23`](https://redirect.github.com/siderolabs/talos/commit/777335f2342abf1c04a738456678980fcc375e1b) chore: improve cloud image uploader resilience - [`14e5eee7d`](https://redirect.github.com/siderolabs/talos/commit/14e5eee7d14bdb95e7e632c54705d8753627ab2a) release(v1.11.0-alpha.2): prepare release - [`1e5a008f5`](https://redirect.github.com/siderolabs/talos/commit/1e5a008f5740af9dd9297ec5616bde9fd102f21f) fix: hold user volume mount point across kubelet restarts - [`cdad50590`](https://redirect.github.com/siderolabs/talos/commit/cdad50590d4436eb12b959f2ff04457d5632f941) docs: user volumes and kubernetes upgrade updates - [`c880835c8`](https://redirect.github.com/siderolabs/talos/commit/c880835c809c2a02f0bb6d0450d15df042a50781) feat: implement zswap support - [`7f0300f10`](https://redirect.github.com/siderolabs/talos/commit/7f0300f108e7f2e9192214f87a13c8ff2ea25866) feat: update dependencies, Kubernetes 1.34.0-alpha.2 - [`61afbe3d2`](https://redirect.github.com/siderolabs/talos/commit/61afbe3d216862a9b9a5c8f521475a0f39cd710e) docs: add vc4 documentation - [`b9dbdc8e7`](https://redirect.github.com/siderolabs/talos/commit/b9dbdc8e7213c305e4de71516b990641e0fed706) fix: etcd recover with multiple advertised addresses - [`19d94c357`](https://redirect.github.com/siderolabs/talos/commit/19d94c3574b7b3ee3fbe21fdb56cff5a18e7b91e) feat: update Linux to 6.12.35, containerd to 2.1.3 - [`44a1fc3b7`](https://redirect.github.com/siderolabs/talos/commit/44a1fc3b78589540f5a0d9b8ea4d898474da3a80) fix: treat context canceled as expected error on image pull - [`4da2dd537`](https://redirect.github.com/siderolabs/talos/commit/4da2dd537d5dae884f47bd3f04ddcd05ac6cd222) feat: enforce Kubernetes version compatibility - [`6c7f8201a`](https://redirect.github.com/siderolabs/talos/commit/6c7f8201a9ceeec6ecfd0a35b308805ec149f3de) fix: set default MTU on Azure to 1400 - [`091cd6989`](https://redirect.github.com/siderolabs/talos/commit/091cd6989ce8c09885b3ae3e8c594c4770bd0748) docs: small yaml typo fix - [`66ecbd48f`](https://redirect.github.com/siderolabs/talos/commit/66ecbd48fdaf509bbb2b37327eb0e0891dd81910) docs: update support matrix with omni version - [`c948d7617`](https://redirect.github.com/siderolabs/talos/commit/c948d7617d1579c462a809b37956fc98270fcce4) docs: minor fixes for creating kernel modules - [`cc14c4a25`](https://redirect.github.com/siderolabs/talos/commit/cc14c4a25d355910a00e60c69ed641abbb7b40f6) docs: add docs for creating kernel modules - [`93bcd3b56`](https://redirect.github.com/siderolabs/talos/commit/93bcd3b5623d900a0f731c0f60d3ce0d69c9c32c) docs: create SBOM for Go dependencies - [`38c4ce415`](https://redirect.github.com/siderolabs/talos/commit/38c4ce415dc8535b4a7403f7a35c5440f2f4aeb6) feat: add user-space InfiniBand modules - [`251dc934f`](https://redirect.github.com/siderolabs/talos/commit/251dc934f3f4d9d81d6d11fd66cf4e52517d9878) feat: arm64 support for platform vmware - [`09b3ad577`](https://redirect.github.com/siderolabs/talos/commit/09b3ad5771b4ee813dcb4d53ad8d291b74b8d8fa) feat: update containerd to 2.1.2 - [`0767dd07b`](https://redirect.github.com/siderolabs/talos/commit/0767dd07b9067aeb3470d463ff32874c69082853) chore: enable --with-siderolink-agent on Darwin - [`9642198d7`](https://redirect.github.com/siderolabs/talos/commit/9642198d76963bd9f6bdda03fb31c165f31f8087) fix: userspace wireguard library overrides - [`208f0763e`](https://redirect.github.com/siderolabs/talos/commit/208f0763ef2db94a913606051b5d223d1de61f24) chore: fix talosctl build on non-Linux hosts - [`87421af87`](https://redirect.github.com/siderolabs/talos/commit/87421af87a88851b78e576b2f9b4af9a48f0acb8) docs: expand documentation description - [`d32ccfa59`](https://redirect.github.com/siderolabs/talos/commit/d32ccfa598284450477af166734595dc952021fa) feat: implement swap support - [`8f5cf81db`](https://redirect.github.com/siderolabs/talos/commit/8f5cf81dba80015f66037ee181f17eb2294bb8a2) docs: update kvm documentation - [`8e84c8b0f`](https://redirect.github.com/siderolabs/talos/commit/8e84c8b0f8405be519a9f0530e34a612ff054373) fix: nil pointer deref in quirk - [`6e74a3676`](https://redirect.github.com/siderolabs/talos/commit/6e74a367636dc21e2bf017d6284bbf998a4bad7d) docs: aad ery basic details on how to run on scaleway - [`260d1bc9a`](https://redirect.github.com/siderolabs/talos/commit/260d1bc9a93f5f6added5e6998f3d2f08fedb770) fix: correctl close encrypted volumes - [`034ef42af`](https://redirect.github.com/siderolabs/talos/commit/034ef42af25ee3dacf5dd0391385ea881b6d5d32) fix: update siderolink library for wgtunnel panic fix - [`3035744a8`](https://redirect.github.com/siderolabs/talos/commit/3035744a8096270691f6bdccfabe34ad53da489c) fix: correctly predict interface name on darwin - [`cfcfad3c4`](https://redirect.github.com/siderolabs/talos/commit/cfcfad3c45376b8ebb989b865f3c13729c87d388) chore: move `checkUnknownKeys` function to `github.com/siderolabs/gen` - [`5ecc53c69`](https://redirect.github.com/siderolabs/talos/commit/5ecc53c695ec578dbc32f00fa7df65b31a5e77aa) docs: add macos section to developing-talos.md - [`b5b35307f`](https://redirect.github.com/siderolabs/talos/commit/b5b35307fe950d0de9ee2ff1d5686af858db13b4) chore: update Go to 1.24.4 - [`fde772d8d`](https://redirect.github.com/siderolabs/talos/commit/fde772d8d82e9d6bc7e63b49c965b8d924e308ab) feat: update Flannel to 0.27.0 - [`81ca27949`](https://redirect.github.com/siderolabs/talos/commit/81ca27949427c546f43b0409b56f733becabc2f6) release(v1.11.0-alpha.1): prepare release - [`58a868e68`](https://redirect.github.com/siderolabs/talos/commit/58a868e68833e94d691e7ed029dce629446fecc3) chore: fix renovate config, add release-gate label - [`a59aaee84`](https://redirect.github.com/siderolabs/talos/commit/a59aaee84bcceb20792bc4782748449ad93b0530) feat: bump dependencies, Linux 6.12.31 - [`e954ee30a`](https://redirect.github.com/siderolabs/talos/commit/e954ee30add42de6f42cbb7d96927722102afdb7) docs: typo correction: LongHorn -> Longhorn - [`aab053394`](https://redirect.github.com/siderolabs/talos/commit/aab053394bafdf718196133e38be010d847db0ad) fix: mashal resource byte slices as strings in YAML - [`c7d4191e7`](https://redirect.github.com/siderolabs/talos/commit/c7d4191e78bf0a455ab596f46d4cf212dce694a4) fix: rework the way CRI config generation is waited for - [`0114183de`](https://redirect.github.com/siderolabs/talos/commit/0114183de62e4ab930ff0f10dd156f935d57cf10) docs: update `lastRelease` to 1.10.3 - [`938b0760a`](https://redirect.github.com/siderolabs/talos/commit/938b0760abdb41be1be4da02b877e2c902d594be) docs: update issue template - [`2a7b735b2`](https://redirect.github.com/siderolabs/talos/commit/2a7b735b264ebcfa22dc2d6044c9d5cd3057b5c2) feat: drop IMA support - [`2d5a805b0`](https://redirect.github.com/siderolabs/talos/commit/2d5a805b0ebabb804b3c32be18db1d718a91070f) fix: typo in DiscoverdVolume spec - [`60c12bad9`](https://redirect.github.com/siderolabs/talos/commit/60c12bad93b422db2784b0203d94ca69fa31957c) feat: support nocloud include url userdata directive - [`0fd622c82`](https://redirect.github.com/siderolabs/talos/commit/0fd622c825ba1fbb833a4b8920ac4c4e56f08a1f) fix(talosctl): correct --help output for dashboard command - [`a90c936a1`](https://redirect.github.com/siderolabs/talos/commit/a90c936a16756cfe5fe451258f0022b808be17d2) feat: support qemu provisioner on darwin - [`5322ca0d3`](https://redirect.github.com/siderolabs/talos/commit/5322ca0d372aa20ad90e66f04699b75debb0ab80) docs: update overlay docs - [`a60b6322d`](https://redirect.github.com/siderolabs/talos/commit/a60b6322d1e8fbd75394e0bdb4435af605b32bbb) fix(ci): drop nebula from extensions test - [`dbbb59a67`](https://redirect.github.com/siderolabs/talos/commit/dbbb59a6781f79ee34a6e91a72575802561c58b6) docs: add note for default `dataDirHostPath` for Rook - [`e26054378`](https://redirect.github.com/siderolabs/talos/commit/e2605437826911cd60a6a4d9ee760a6a242e244b) docs: macos qemu provider - [`5d0224093`](https://redirect.github.com/siderolabs/talos/commit/5d022409357d41831fa1bfd34ccdcfceecca42df) docs: use the cilium-cli image repo in the job installation manifest - [`ff80e4cca`](https://redirect.github.com/siderolabs/talos/commit/ff80e4cca086fa01d84ceb750111dc9e31ccc978) docs: fix CIDR name - [`a5fd15e8b`](https://redirect.github.com/siderolabs/talos/commit/a5fd15e8bd4a4547e3658981543401fd9eb8cd80) fix(ci): reproducibility test - [`8f8963e50`](https://redirect.github.com/siderolabs/talos/commit/8f8963e50d7b05d1361fd44040c0f1ffb94693af) docs: update Nexxen brand - [`c6b86872d`](https://redirect.github.com/siderolabs/talos/commit/c6b86872dc0d62aef5ad70fce00c411080911ace) fix(ci): iso reproducibility file permissions - [`995a1dec4`](https://redirect.github.com/siderolabs/talos/commit/995a1dec4a34f49d84daff16b30f8920275a439d) chore: add a check for unsupported darwin flags - [`9db5d0c97`](https://redirect.github.com/siderolabs/talos/commit/9db5d0c97ac31c7f6ce0b23d999126fc6cc094ec) fix: nocloud metadata for hostname - [`3cf325654`](https://redirect.github.com/siderolabs/talos/commit/3cf325654e4a7f73196241e59e3ca6b5f24c3e19) feat: modularize more arm64 kernel - [`3524745cc`](https://redirect.github.com/siderolabs/talos/commit/3524745cc49c51e4f13da954a57ab56d467fd26e) fix: allow any PKI in Talos API - [`f438cdb09`](https://redirect.github.com/siderolabs/talos/commit/f438cdb0993b17f0e540ecefa39cde09f89730f4) chore: use custom dhcpd server on macos qemu - [`11c17fb9a`](https://redirect.github.com/siderolabs/talos/commit/11c17fb9aad2443b10e15295069b8e24e0d514e2) fix: metal-iso reproducibility - [`7fcb89ee3`](https://redirect.github.com/siderolabs/talos/commit/7fcb89ee385fdbf47dae4a8308299c00488df84a) chore: add darwin vmnet qemu support - [`fc1237343`](https://redirect.github.com/siderolabs/talos/commit/fc1237343f79a1be907c43ac3ce116168409ed17) chore: clean up `/usr/bin` - [`b551f32ce`](https://redirect.github.com/siderolabs/talos/commit/b551f32ce550f2bc3c679a9857f28d604a297bbf) feat: update containerd to v2.1.1 - [`67f4154f9`](https://redirect.github.com/siderolabs/talos/commit/67f4154f920fc0c58a9a832e14fbc7f9430747b3) docs: update disk-management.md - [`0cb137ad7`](https://redirect.github.com/siderolabs/talos/commit/0cb137ad7366e2386f49a99aee0a3c5ffb7223f6) fix: make disk size check work on old Talos - [`7c057edd5`](https://redirect.github.com/siderolabs/talos/commit/7c057edd5f3636dff6932ad9fbd7c51867b0c2c8) fix: use vmdk-convert istead of qemu-img to create VMDK for OVA files - [`cd618dad0`](https://redirect.github.com/siderolabs/talos/commit/cd618dad0feb1390e5945e2bba1d20bcecf30c2a) chore: update the go-blockdevice package - [`0b99631a0`](https://redirect.github.com/siderolabs/talos/commit/0b99631a0b64ce8d65ddcf7f40b2168debf11a62) fix: bump apid memory limit - [`5451f35b1`](https://redirect.github.com/siderolabs/talos/commit/5451f35b148a630c6ab011dce44b52fd2ad327ba) docs: update virtualbox - [`bd4d202a5`](https://redirect.github.com/siderolabs/talos/commit/bd4d202a5a67c56b6c6e6bc962f6bd51c729759f) refactor: bring owned.State from COSI to simplify tests - [`0b96df574`](https://redirect.github.com/siderolabs/talos/commit/0b96df57476af86a37bcfdbf28a479444a9e6e5c) feat: update containerd to 2.1.0 - [`e1a939144`](https://redirect.github.com/siderolabs/talos/commit/e1a939144f25acc6a2715feedb30a56a47f6793d) docs: fix formatting in disk encryption - [`7a817df1c`](https://redirect.github.com/siderolabs/talos/commit/7a817df1cce58de2a16b72b37a54ffc0103af79a) docs: fix typo - [`f35b213b2`](https://redirect.github.com/siderolabs/talos/commit/f35b213b2b448c2e0065d4698095a843dd2f5268) test: fix DHCP unicast failures in QEMU environment - [`7064bbf05`](https://redirect.github.com/siderolabs/talos/commit/7064bbf056f083de0f7174c9d3c600871189b4e5) docs: fix vmware factory URL - [`78c33bcdb`](https://redirect.github.com/siderolabs/talos/commit/78c33bcdb9a30195ce401311e82b2e189faf33f3) feat: update default Kubernetes to v1.33.1 - [`da6795266`](https://redirect.github.com/siderolabs/talos/commit/da67952666d2db2b8b5636bd4cae8af09a139410) fix: disable automatic MAC assignment to bridge interfaces - [`ca34adf58`](https://redirect.github.com/siderolabs/talos/commit/ca34adf585bfe04d2d1b84f186cb87aa77fc8e00) chore(ci): drop azure keys - [`ea5de19fa`](https://redirect.github.com/siderolabs/talos/commit/ea5de19fad3f62889899c0d89d08b8b73dfa75da) fix: selinux detection - [`52c76ea3a`](https://redirect.github.com/siderolabs/talos/commit/52c76ea3a61a4a3cbd963dc2ff0d6d21b4210bcd) fix: consistently apply dynamic grpc proxy dialer - [`aa9569e5d`](https://redirect.github.com/siderolabs/talos/commit/aa9569e5d8c59b762dfd64a4e9ef42cfdc6f9d51) chore: refactor cluster create cmd flags - [`1161faa05`](https://redirect.github.com/siderolabs/talos/commit/1161faa0594c033bf032852b880439b2082c9722) docs: fix typo in Cilium docs - [`164745e44`](https://redirect.github.com/siderolabs/talos/commit/164745e44334146b8a6f696640692c25b731414a) docs: remove `preserve` flag mention in upgrade notes - [`9a2ecbaaf`](https://redirect.github.com/siderolabs/talos/commit/9a2ecbaaf7b7a3f393dd29272aca34e069a24c6e) fix: makefile operating system param - [`118aa69d6`](https://redirect.github.com/siderolabs/talos/commit/118aa69d6f6e71b88747db1e8234d478daa54ab4) chore: update cloud-image-uploader dependencies - [`acdd721cf`](https://redirect.github.com/siderolabs/talos/commit/acdd721cfa62f9888a9ceea1693c17348c0d663a) chore: dump qemu pachine ipam records on darwin - [`bb9094534`](https://redirect.github.com/siderolabs/talos/commit/bb90945344f02b9cdae6e0e01821792dca25096b) chore: rotate aws iam credentials - [`0bfa4ae1b`](https://redirect.github.com/siderolabs/talos/commit/0bfa4ae1b06e1e6330adf331e1a97651bbe39b4a) chore: update deps for cloud-image-uploader - [`956d7c71b`](https://redirect.github.com/siderolabs/talos/commit/956d7c71bcdff639b8261cf6cf1a5d19cf702f75) chore: update sops keys - [`e2f819d88`](https://redirect.github.com/siderolabs/talos/commit/e2f819d880373102f8a8c7f0ff549e37ba75a08e) test: fix the process runner log collection - [`fdac4cfb9`](https://redirect.github.com/siderolabs/talos/commit/fdac4cfb9143853eb21d38e1b3d517455b0ba0f2) fix: upgrade go-kubernetes for DRA flag bug - [`09d88e1e8`](https://redirect.github.com/siderolabs/talos/commit/09d88e1e8374ef19e5730994d9b098333347f0b7) test: fix some flaky tests - [`ec1f41a94`](https://redirect.github.com/siderolabs/talos/commit/ec1f41a948b1bda02096434e47f2a2a767951fe9) chore: make qemu config server bind work on darwin - [`980f4d2b9`](https://redirect.github.com/siderolabs/talos/commit/980f4d2b936cfdc3ebc9882f7c25fbf2d2aa49f8) feat: bump dependencies - [`95259337e`](https://redirect.github.com/siderolabs/talos/commit/95259337ee0ccb22d7e9125074818ac8f9afa7af) fix: k8s 1.32->1.33 upgrade check - [`c3c326b40`](https://redirect.github.com/siderolabs/talos/commit/c3c326b405804c258b68f19b8d7dacca32535e9b) fix: improve volume mounter automaton - [`918b94d9a`](https://redirect.github.com/siderolabs/talos/commit/918b94d9a0b71b759073f8f7eb0f5dc7fdff413f) refactor: rewrite disk size check - [`ab7e693d7`](https://redirect.github.com/siderolabs/talos/commit/ab7e693d76500b6cdc2068221bdfce16633a8b01) chore: make qemu lb address bind work on darwin - [`97ceab001`](https://redirect.github.com/siderolabs/talos/commit/97ceab001c1bb79407c40d8fff867342656187b9) fix: multiple logic issues in platform network config controller - [`46349a9df`](https://redirect.github.com/siderolabs/talos/commit/46349a9df5d026a4e4b807a94865d5b3c371d32a) docs: remove azure image gallery instructions - [`0cfcdd3de`](https://redirect.github.com/siderolabs/talos/commit/0cfcdd3de1a20690ce47d63bb56b3d33d11c1474) docs: fix search on base talos.dev - [`78646b4e0`](https://redirect.github.com/siderolabs/talos/commit/78646b4e050358b930d27e4eddcfb22c4c825b0c) docs: add registryd debug command - [`c6824c211`](https://redirect.github.com/siderolabs/talos/commit/c6824c211438a3fb663f4233e8663732ab2ddf44) fix: deny apply config requests without v1alpha1 in "normal" mode - [`7df0408e4`](https://redirect.github.com/siderolabs/talos/commit/7df0408e460ebc392c6927c7b23e3795b9bd2140) fix: interactive installer config gen - [`881c5d62b`](https://redirect.github.com/siderolabs/talos/commit/881c5d62bf0d1f3311b3cf946b7801f97c1fb94b) fix: suppress duplicate platform config updates - [`66d77888e`](https://redirect.github.com/siderolabs/talos/commit/66d77888e42798995ddc73db3869d16959e53376) fix: replace downloaded asset paths correctly in cluster create cmd - [`6bd6c9b5a`](https://redirect.github.com/siderolabs/talos/commit/6bd6c9b5a08ca3b0e9574e1a61edc54c6ff722bb) fix: generate iso greater than 4 gig - [`ac140324e`](https://redirect.github.com/siderolabs/talos/commit/ac140324ebfb54f580c9b9bbbb55549bd5ffa11e) fix: skip PCR extension if TPM1.2 is found - [`09ef1f8a4`](https://redirect.github.com/siderolabs/talos/commit/09ef1f8a41c84e6a16729e6b6aff81788da0e3f5) fix: ignore http proxy on grpc socket dial - [`22a72dc80`](https://redirect.github.com/siderolabs/talos/commit/22a72dc80f2037a4cc7ad696d8dff504deb22630) chore: split options between three structs - [`22c34a50f`](https://redirect.github.com/siderolabs/talos/commit/22c34a50fc66edd174ab4a65961257de28a6daa0) fix(ci): provision cron jobs - [`b3b20eff3`](https://redirect.github.com/siderolabs/talos/commit/b3b20eff3a29f74d18df634cbb01f41bde17f2c8) fix: containerd crashing with sigsegv - [`f7891c301`](https://redirect.github.com/siderolabs/talos/commit/f7891c3018de248c7c66483562227b614689413c) chore: calculate vmnet interface name preemptively - [`ae87edffb`](https://redirect.github.com/siderolabs/talos/commit/ae87edffbcdaed12fef41541622f27882ed63755) fix: drop libseccomp from rootfs - [`f74a805bb`](https://redirect.github.com/siderolabs/talos/commit/f74a805bb067f55619cae7aebb92f00bb8173c92) fix: do correct backoff for nocloud reconcile - [`01bb294af`](https://redirect.github.com/siderolabs/talos/commit/01bb294af63f193dafa12cb623ea77ad67b698fb) fix(ci): provision tests - [`e4945be3b`](https://redirect.github.com/siderolabs/talos/commit/e4945be3bc43cbc275e2ea5f399a0188c5e16ad8) docs: add registryd debug command - [`d8c670ad3`](https://redirect.github.com/siderolabs/talos/commit/d8c670ad3ecba32c70ff365eaf7a5a4ccb5d721a) release(v1.11.0-alpha.0): prepare release - [`ace44ea61`](https://redirect.github.com/siderolabs/talos/commit/ace44ea6169d419f188e0a2456c31f420e61ae77) test: update hydrophone to 0.7.0 - [`3a1163692`](https://redirect.github.com/siderolabs/talos/commit/3a1163692da7b41b17f263ab43d0fd81abafc4f8) chore: cross platform qemu preflight checks - [`7914fb104`](https://redirect.github.com/siderolabs/talos/commit/7914fb10412d31a1b75c74b0c66578e55fb77bc7) chore: move the create command to it's own package - [`c8e619608`](https://redirect.github.com/siderolabs/talos/commit/c8e619608dc8898be71a17c54503085ef38abf37) chore: prepare for release 1.11 - [`1299aaa45`](https://redirect.github.com/siderolabs/talos/commit/1299aaa45d997dd23aed380f858cec3bc6b975e4) chore(ci): add extensions test for Youki runtime - [`e50ceb221`](https://redirect.github.com/siderolabs/talos/commit/e50ceb221e56f0760d5f2fc9e4b821d6b29add05) docs: activate Talos 1.10 docs - [`9d12aaeb1`](https://redirect.github.com/siderolabs/talos/commit/9d12aaeb19d68c5e692921b938d72347f6129f65) test: improve config patch test - [`106a656b6`](https://redirect.github.com/siderolabs/talos/commit/106a656b6132e766e9e9ef7b1c12b97a413b5de6) chore: make qemu provider build on darwin - [`8013aa06c`](https://redirect.github.com/siderolabs/talos/commit/8013aa06cd338f1dd11061d3455767fee4b9783c) test: replace platform metadata test - [`2b89c2810`](https://redirect.github.com/siderolabs/talos/commit/2b89c2810551ab52678e62fcbf5355dd05c72030) fix: relax etcd APIs RBAC requirements - [`1e677587c`](https://redirect.github.com/siderolabs/talos/commit/1e677587c0e6c61f724a85f18ee9d436ae6da038) fix: preserve kubelet image suffix - [`62ab8af45`](https://redirect.github.com/siderolabs/talos/commit/62ab8af459475cbd24a2f34d8923ce70d1fda3db) fix: disk image generation with image cache - [`d60626f01`](https://redirect.github.com/siderolabs/talos/commit/d60626f017ef495210939ee4f8ef7f623dd325f9) fix: handle encryption type mismatch - [`a9109ebd0`](https://redirect.github.com/siderolabs/talos/commit/a9109ebd00fcd300bf4262142ade77df6788852b) feat: allow SideroLink unique token in machine config - [`2ff3a6e40`](https://redirect.github.com/siderolabs/talos/commit/2ff3a6e4079a29b6b45770204fd8cb30369518e9) feat(kernel): add bcache kernel module to core talos - [`fa95a2146`](https://redirect.github.com/siderolabs/talos/commit/fa95a2146056bfe1ae322cb574fd8d432745b5c9) fix(ci): bios provision test - [`f7c5b86be`](https://redirect.github.com/siderolabs/talos/commit/f7c5b86be7e2b28906cb66b466a017887ac5e2b6) fix: sync PCR extension with volume provisioning lifecycle - [`f90c79474`](https://redirect.github.com/siderolabs/talos/commit/f90c79474b50da35ab8e285ee9723957e4b6cf00) chore: show bound driver in pcidevices info - [`8db34624c`](https://redirect.github.com/siderolabs/talos/commit/8db34624c6ed9707ba1165da790f5b389bd1c92f) fix: handle correctly changing platform network config - [`77c7a075b`](https://redirect.github.com/siderolabs/talos/commit/77c7a075bbba7ffd24dbd9d5e069ccb50f8143b4) feat: update Kubernetes to 1.33.0 - [`74f0c48c7`](https://redirect.github.com/siderolabs/talos/commit/74f0c48c738b0b80278667c3e5a1c5e1ecd5a078) feat: add version compatibility for Talos 1.11 - [`c4fb7dad0`](https://redirect.github.com/siderolabs/talos/commit/c4fb7dad0ec390781cca54e2348f116cb1cf1866) fix: force DNS runner shutdown on timeout - [`c49b4836e`](https://redirect.github.com/siderolabs/talos/commit/c49b4836e46725940f4731e182475905ebee6019) docs: hetzner: add note about public iso - [`16ea2b113`](https://redirect.github.com/siderolabs/talos/commit/16ea2b113fad0c81a96dbcfdf4fd1b9f43bb1282) docs: add what is new for 1.10 - [`be3f0c018`](https://redirect.github.com/siderolabs/talos/commit/be3f0c018c50da3d920ed8fe36d4f31c5d3edfac) fix: fix Gvisor tests with containerd patch - [`37db132b3`](https://redirect.github.com/siderolabs/talos/commit/37db132b3b3e6c58f15228c64b023e77c15cf012) chore(ci): add provision test with bios - [`ec60b70e7`](https://redirect.github.com/siderolabs/talos/commit/ec60b70e7245f49f6ac1d48cd4292b85f1d6f79e) fix: set media type to OCI for image cache layer - [`a471eb31b`](https://redirect.github.com/siderolabs/talos/commit/a471eb31b87b393ee9fc57fbc725801d08386ad4) feat: update Linux 6.12.24, containerd 2.0.5 - [`54ad5b872`](https://redirect.github.com/siderolabs/talos/commit/54ad5b8729c7d54da2efa6baf7886163741176ed) fix: extension services logging to console - [`601f036ba`](https://redirect.github.com/siderolabs/talos/commit/601f036ba9cc762d6a3c6ae819654005f1d49527) docs: correct flannel extra args example - [`ae94377d1`](https://redirect.github.com/siderolabs/talos/commit/ae94377d15a3b70248fbb446d13d7ae96bb04e82) feat: support encryption config for user volumes - [`9616f6e8d`](https://redirect.github.com/siderolabs/talos/commit/9616f6e8d280e64815fe3e1ba324df1dd5d2122d) docs: add caveat for kubespan and host ports - [`a1d08a362`](https://redirect.github.com/siderolabs/talos/commit/a1d08a3624c7c8b5213b8e9dee1cf9289d6719dc) docs: fixes typo at OpenEBS Mayastor worker patches - [`a91e8726e`](https://redirect.github.com/siderolabs/talos/commit/a91e8726e433be9db58f1a7a09a4cca422b2b50c) docs: add a dark theme - [`c76189c58`](https://redirect.github.com/siderolabs/talos/commit/c76189c58a2fe65954924168d7077350974829dd) fix: grub EFI mount point - [`4ca985c65`](https://redirect.github.com/siderolabs/talos/commit/4ca985c656c1924e550d06c073a7c1b6cb03f392) fix: grub efi platform install - [`b31260281`](https://redirect.github.com/siderolabs/talos/commit/b31260281dba752e06fcfc645bb020872602d898) docs: update storage.md - [`396a29040`](https://redirect.github.com/siderolabs/talos/commit/396a290408eff5bda4ad31fafc33496bea9aa899) feat: add new SBCs - [`a902f6580`](https://redirect.github.com/siderolabs/talos/commit/a902f6580f8e104977521a335a41c0cd70256906) feat: update Flannel to v0.26.7 - [`2bbefec1a`](https://redirect.github.com/siderolabs/talos/commit/2bbefec1abacae2952782fbd163ef52d34f09858) docs: use cache in preview - [`6028a8d2d`](https://redirect.github.com/siderolabs/talos/commit/6028a8d2da571a8a37712f9917e24372cf5af919) docs: update kubeprism.md - [`e51a8ef8c`](https://redirect.github.com/siderolabs/talos/commit/e51a8ef8c68bb1cfab2ac845a0b6792d7e000324) fix: prefer new `MountStatus` resource - [`d9c7e7946`](https://redirect.github.com/siderolabs/talos/commit/d9c7e79462496d6756c55b0672994aa262eaed4f) docs: fix search - [`b32fa029b`](https://redirect.github.com/siderolabs/talos/commit/b32fa029b3f550b3403e25e23aac889d61366389) feat: update Kubernetes to 1.33.0-rc.1 - [`f0ea478cb`](https://redirect.github.com/siderolabs/talos/commit/f0ea478cb811675a450839b8dcd351e43404efd4) feat: support address priority - [`8cd3c8dc7`](https://redirect.github.com/siderolabs/talos/commit/8cd3c8dc77b25270ed8dea65cbbd4e87c203ee74) test: fix NVIDIA OSS tests - [`62f2d27cd`](https://redirect.github.com/siderolabs/talos/commit/62f2d27cd44de5112055b5b47f23b001cadccaae) docs: update virtualbox.md - [`141326ea3`](https://redirect.github.com/siderolabs/talos/commit/141326ea3bb2e471a5cb51fd565521683a9792fc) docs: fix tabpane styling - [`134aa53cc`](https://redirect.github.com/siderolabs/talos/commit/134aa53ccaba55754544977d695ad3ca5d34e604) feat: update base CoreDNS code in host DNS to 1.12.1 </p> </details> ##### Changes since v1.11.0-alpha.2 <details><summary>1 commit</summary> <p> - [`777335f23`](https://redirect.github.com/siderolabs/talos/commit/777335f2342abf1c04a738456678980fcc375e1b) chore: improve cloud image uploader resilience </p> </details> ##### Changes from siderolabs/crypto <details><summary>2 commits</summary> <p> - [`17107ae`](https://redirect.github.com/siderolabs/crypto/commit/17107ae45403a2bcd4fecfb4660b60276652b00d) fix: add generic CSR generator and OpenSSL interop - [`53659fc`](https://redirect.github.com/siderolabs/crypto/commit/53659fc35f6abd4ada7ffa22ef1b148cf93c0f28) refactor: split into files </p> </details> ##### Changes from siderolabs/gen <details><summary>4 commits</summary> <p> - [`dcb2b74`](https://redirect.github.com/siderolabs/gen/commit/dcb2b7417879f230a569ce834dad5c89bd09d6bf) feat: add `panicsafe` package - [`b36ee43`](https://redirect.github.com/siderolabs/gen/commit/b36ee43f667a7a56b340a3e769868ff2a609bb5b) feat: make `xyaml.CheckUnknownKeys` public - [`3e319e7`](https://redirect.github.com/siderolabs/gen/commit/3e319e7e52c5a74d1730be8e47952b3d16d91148) feat: implement `xyaml.UnmarshalStrict` - [`7c0324f`](https://redirect.github.com/siderolabs/gen/commit/7c0324fee9a7cfbdd117f43702fa273689f0db97) chore: future-proof HashTrieMap </p> </details> ##### Changes from siderolabs/go-circular <details><summary>1 commit</summary> <p> - [`5b39ef8`](https://redirect.github.com/siderolabs/go-circular/commit/5b39ef87df04efeaa47fe6374a8114f39c126122) fix: do not log error if chunk zero was never written </p> </details> ##### Changes from siderolabs/go-kubernetes <details><summary>3 commits</summary> <p> - [`657a74b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/657a74b7163de7886a9581c446b1de6f21264fd2) feat: prepare for Kubernetes 1.34 - [`9070be4`](https://redirect.github.com/siderolabs/go-kubernetes/commit/9070be4308e23d969ec4fc49b25dab4a27d512e7) fix: remove DynamicResourceAllocation feature gate - [`8cb588b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/8cb588bc4c93d812de901a6a33e599ba2169cd96) fix: k8s 1.32->1.33 upgrade check </p> </details> ##### Changes from siderolabs/pkgs <details><summary>41 commits</summary> <p> - [`03bb94c`](https://redirect.github.com/siderolabs/pkgs/commit/03bb94c39c02b7028f5d595cb758f59b132fa1d3) feat: update dependencies - [`c613abd`](https://redirect.github.com/siderolabs/pkgs/commit/c613abd8c4f777ef588cce4ae5563d4024e50507) fix: iptables url - [`fae59df`](https://redirect.github.com/siderolabs/pkgs/commit/fae59df236da122c84990a187f4648878f2e4bf7) fix: download and copy hailo8 firmware - [`fadf1e2`](https://redirect.github.com/siderolabs/pkgs/commit/fadf1e22a263b3429fa8fd540b4ff5a71ce8ded2) feat: update containerd to 2.1.2 - [`a0b0da1`](https://redirect.github.com/siderolabs/pkgs/commit/a0b0da10b5745616651d0bcd4b3aa5a06690fd5a) feat: enable io.latency cgroup controller - [`0aaa07a`](https://redirect.github.com/siderolabs/pkgs/commit/0aaa07a2a1af852efbc65a476cdcc17829e33a99) feat: add hailort package - [`8555e94`](https://redirect.github.com/siderolabs/pkgs/commit/8555e94f1ed54210ae7768e8ef977e5baec4b2cb) chore: use ftpmirror for GNU sources - [`9fbe2b4`](https://redirect.github.com/siderolabs/pkgs/commit/9fbe2b43874b701e04e5817f8a9d485139e96d50) feat: update Go to 1.24.4 - [`79bfa9e`](https://redirect.github.com/siderolabs/pkgs/commit/79bfa9e06e5e69955236ffd58323c9936d638d45) feat: update NVIDIA drivers to 570.148.08 - [`c8b8bd8`](https://redirect.github.com/siderolabs/pkgs/commit/c8b8bd8b5eb265f8e8c8955998e428b86d177ab5) feat: bump dependencies - [`54bf03e`](https://redirect.github.com/siderolabs/pkgs/commit/54bf03ebf24d9ef70a47d4b3b4f30d92191085da) feat: update Linux to 6.12.31 - [`93b3aaa`](https://redirect.github.com/siderolabs/pkgs/commit/93b3aaae5369140058e6a5cbdf83d1da235eb735) feat: add patch for CephFS IMA performance regression - [`ebd6627`](https://redirect.github.com/siderolabs/pkgs/commit/ebd6627c68406076ed95b2cd629d2ace51bb49b6) feat: disable IMA support - [`8aad53b`](https://redirect.github.com/siderolabs/pkgs/commit/8aad53bab3201d7f87d39ab61953e04392402efc) feat: add CONFIG\_NFT\_CONNLIMIT to kernel - [`7a299fa`](https://redirect.github.com/siderolabs/pkgs/commit/7a299fa02106a7216926d6bcff21fb1cd2da7d73) feat: update Linux to 6.12.30 - [`8c4603e`](https://redirect.github.com/siderolabs/pkgs/commit/8c4603e90335b9aaf180b954ebc43f65dcb2b7b6) feat: move more configs to modules on arm64 - [`7b1183b`](https://redirect.github.com/siderolabs/pkgs/commit/7b1183bea84e46cd8f1a775f95683b8a0039c2d7) feat(kernel): enable IB user-space management and RDMA - [`1b1430e`](https://redirect.github.com/siderolabs/pkgs/commit/1b1430e82ef62efdd538588183ed27def2bebbaa) fix: drop pcre2 binaries - [`487610c`](https://redirect.github.com/siderolabs/pkgs/commit/487610c4f286210c22cd813427380af654297791) fix: drop broken symlinks - [`f31d518`](https://redirect.github.com/siderolabs/pkgs/commit/f31d518eefec0cb672760d00a5c2de37b45dfb45) fix: clean up some binaries - [`0f74b9b`](https://redirect.github.com/siderolabs/pkgs/commit/0f74b9bd1d097a283f3edd6165161e4e0688a79f) feat: update containerd to v2.1.1 - [`89b4037`](https://redirect.github.com/siderolabs/pkgs/commit/89b40372b8964a9dc9ad3db17a46a9d9c797f60f) fix: tenstorrent pkg name - [`a14b544`](https://redirect.github.com/siderolabs/pkgs/commit/a14b54409704c1f3beb0f51089dadd3f3e8dc441) chore: drop qemu-tools vmdk support - [`2563e47`](https://redirect.github.com/siderolabs/pkgs/commit/2563e47ca1bfc755ee4ecf2b470cfed081b54e6f) feat: add tenstorrent package - [`2a1c42f`](https://redirect.github.com/siderolabs/pkgs/commit/2a1c42fde5fe4009c33d50d571d7d3cfe3a09888) fix(renovate): flannel config - [`bfa69a8`](https://redirect.github.com/siderolabs/pkgs/commit/bfa69a820e8190aed3a45c00dff5f4f1cc42b7a6) feat: add open-vmdk package - [`9f1ba1f`](https://redirect.github.com/siderolabs/pkgs/commit/9f1ba1f047c835abdf882540d316055a3e2d1bfc) fix: bring back updated containerd gvisor patch - [`1567cb6`](https://redirect.github.com/siderolabs/pkgs/commit/1567cb616691dc22fbc3374cdeac11cdbe51bb94) feat: update Linux 6.12.28, firmware - [`9bc66e6`](https://redirect.github.com/siderolabs/pkgs/commit/9bc66e6bd355f8a86c4becbd78aede1323e3681e) feat: update containerd to 2.1.0 - [`c6b54e0`](https://redirect.github.com/siderolabs/pkgs/commit/c6b54e04fb5d943ff31f05b1e095af65eb901604) feat: enable zswap - [`4cd7084`](https://redirect.github.com/siderolabs/pkgs/commit/4cd7084634c2b79541da8c6f95c047d4eb0e66a2) feat: update dependencies - [`a3fcbf8`](https://redirect.github.com/siderolabs/pkgs/commit/a3fcbf812632aaa8e8f9027a88181c284e7d919d) feat(kernel): enable panthor driver - [`74d1665`](https://redirect.github.com/siderolabs/pkgs/commit/74d16657fd53c30249c3eba75769f90dd84366ce) feat: update ZFS to 2.3.2 - [`ddc866b`](https://redirect.github.com/siderolabs/pkgs/commit/ddc866bc9dd0557c2e9d5d0b234348767769cfd3) feat: update Linux to 6.12.27 - [`a347857`](https://redirect.github.com/siderolabs/pkgs/commit/a347857b33a6a41fe2661a7451c3af65a51404c9) fix: build containerd with Go 1.23 - [`74da85c`](https://redirect.github.com/siderolabs/pkgs/commit/74da85c2cf61b8006af38b3d0d38dc13098d5227) fix: containerd build doesn't need seccomp - [`4effa05`](https://redirect.github.com/siderolabs/pkgs/commit/4effa0525dc87974052e9dec2685a0ad411773dd) fix: downgrade libseccomp to 2.5.5 - [`9cea00b`](https://redirect.github.com/siderolabs/pkgs/commit/9cea00b4601d7bedf49606b647003f3c6cb0787b) feat: update Linux to 6.12.25 - [`cb108a5`](https://redirect.github.com/siderolabs/pkgs/commit/cb108a514b55a302008fb4c1ce6d88ce0d769b58) feat(kernel): enable bcache module - [`d042432`](https://redirect.github.com/siderolabs/pkgs/commit/d04243270a4f10f9ecb889883ab42687e5ae6351) fix: backport sandbox fix for Gvisor - [`fa625dc`](https://redirect.github.com/siderolabs/pkgs/commit/fa625dc6dd97a61cb8479b8b0ab82126650de11b) feat: update Linux 6.12.24, containerd 2.0.5 </p> </details> ##### Changes from siderolabs/siderolink <details><summary>3 commits</summary> <p> - [`5f46f65`](https://redirect.github.com/siderolabs/siderolink/commit/5f46f6583b9d03f91c9bb5f637149fe466d17bfc) feat: handle panics in goroutines - [`d09ff45`](https://redirect.github.com/siderolabs/siderolink/commit/d09ff45b450a37aa84652fa70b5cd3467ee8243d) fix: race in wait value - [`d2a79e0`](https://redirect.github.com/siderolabs/siderolink/commit/d2a79e0263806b68ff0a44ea9efa58b83fb269ec) fix: clean up device on failure </p> </details> ##### Changes from siderolabs/tools <details><summary>4 commits</summary> <p> - [`1dfd14b`](https://redirect.github.com/siderolabs/tools/commit/1dfd14bd4f2573d1070008c8f9d6a05ca064081e) feat: update Go to 1.24.4 - [`af3fd64`](https://redirect.github.com/siderolabs/tools/commit/af3fd645d48a373396f8346af411c1c827c87376) feat: update dependencies - [`e35234b`](https://redirect.github.com/siderolabs/tools/commit/e35234bd94c3c16daf06d00848d7752f5e4c7d15) feat: update dependencies - [`c96a4e6`](https://redirect.github.com/siderolabs/tools/commit/c96a4e671e378f80f161e45942f80b10adfd562d) chore: update toolchain to the latest version </p> </details> ##### Dependency Changes - **cloud.google.com/go/compute/metadata** v0.6.0 -> v0.7.0 - **github.com/Azure/azure-sdk-for-go/sdk/azidentity** v1.9.0 -> v1.10.1 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates** v1.3.1 -> v1.4.0 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys** v1.3.1 -> v1.4.0 - **github.com/aws/aws-sdk-go-v2/config** v1.29.14 -> v1.29.17 - **github.com/aws/aws-sdk-go-v2/feature/ec2/imds** v1.16.30 -> v1.16.32 - **github.com/aws/aws-sdk-go-v2/service/kms** v1.38.3 -> v1.41.2 - **github.com/aws/smithy-go** v1.22.3 -> v1.22.4 - **github.com/containerd/containerd/api** v1.8.0 -> v1.9.0 - **github.com/containerd/containerd/v2** v2.0.5 -> v2.1.3 - **github.com/containernetworking/plugins** v1.6.2 -> v1.7.1 - **github.com/cosi-project/runtime** v0.10.2 -> v0.10.6 - **github.com/detailyang/go-fallocate** [`432fa64`](https://redirect.github.com/siderolabs/talos/commit/432fa640bd2e) ***new*** - **github.com/docker/cli** v28.0.4 -> v28.3.0 - **github.com/docker/docker** v28.0.4 -> v28.3.0 - **github.com/equinix-ms/go-vmw-guestrpc** v0.1.1 ***new*** - **github.com/foxboron/go-uefi** [`69fb7db`](https://redirect.github.com/siderolabs/talos/commit/69fb7dba244f) -> [`a3183a1`](https://redirect.github.com/siderolabs/talos/commit/a3183a1bfc84) - **github.com/google/cadvisor** v0.52.1 -> v0.53.0 - **github.com/google/cel-go** v0.24.1 -> v0.25.0 - **github.com/google/go-containerregistry** v0.20.3 -> v0.20.6 - **github.com/google/go-tpm** v0.9.3 -> v0.9.5 - **github.com/grpc-ecosystem/go-grpc-middleware/v2** v2.3.1 -> v2.3.2 - **github.com/hetznercloud/hcloud-go/v2** v2.21.0 -> v2.21.1 - **github.com/jsimonetti/rtnetlink/v2** v2.0.3 -> v2.0.5 - **github.com/klauspost/cpuid/v2** v2.2.10 -> v2.2.11 - **github.com/linode/go-metadata** v0.2.1 -> v0.2.2 - **github.com/miekg/dns** v1.1.65 -> v1.1.66 - **github.com/pkg/xattr** v0.4.10 -> v0.4.11 - **github.com/prometheus/procfs** v0.16.0 -> v0.16.1 - **github.com/rivo/tview** [`949945f`](https://redirect.github.com/siderolabs/talos/commit/949945f8d922) -> [`a4a78f1`](https://redirect.github.com/siderolabs/talos/commit/a4a78f1e05cb) - **github.com/safchain/ethtool** v0.5.10 -> v0.6.1 - **github.com/siderolabs/crypto** v0.5.1 -> v0.6.0 - **github.com/siderolabs/gen** v0.8.0 -> v0.8.4 - **github.com/siderolabs/go-blockdevice/v2** v2.0.16 -> v2.0.18 - **github.com/siderolabs/go-circular** v0.2.2 -> v0.2.3 - **github.com/siderolabs/go-kubernetes** v0.2.21 -> v0.2.24 - **github.com/siderolabs/pkgs** v1.10.0-5-g48dba3e -> v1.11.0-alpha.0-40-g03bb94c - **github.com/siderolabs/siderolink** v0.3.13 -> v0.3.15 - **github.com/siderolabs/talos/pkg/machinery** v1.10.0 -> v1.11.0-alpha.2 - **github.com/siderolabs/tools** v1.10.0 -> v1.11.0-alpha.0-3-g1dfd14b - **go.etcd.io/etcd/api/v3** v3.5.21 -> v3.6.1 - **go.etcd.io/etcd/client/pkg/v3** v3.5.21 -> v3.6.1 - **go.etcd.io/etcd/client/v3** v3.5.21 -> v3.6.1 - **go.etcd.io/etcd/etcdutl/v3** v3.5.21 -> v3.6.1 - **golang.org/x/net** v0.39.0 -> v0.41.0 - **golang.org/x/oauth2** v0.29.0 -> v0.30.0 - **golang.org/x/sync** v0.13.0 -> v0.15.0 - **golang.org/x/sys** v0.32.0 -> v0.33.0 - **golang.org/x/term** v0.31.0 -> v0.32.0 - **golang.org/x/text** v0.24.0 -> v0.26.0 - **golang.org/x/time** v0.11.0 -> v0.12.0 - **google.golang.org/grpc** v1.71.1 -> v1.73.0 - **k8s.io/api** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/apimachinery** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/apiserver** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/client-go** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/component-base** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/cri-api** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/kube-scheduler** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/kubectl** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/kubelet** v0.33.0 -> v0.34.0-alpha.2 - **k8s.io/pod-security-admission** v0.33.0 -> v0.34.0-alpha.2 - **sigs.k8s.io/hydrophone** [`b92baf7`](https://redirect.github.com/siderolabs/talos/commit/b92baf7e0b04) -> v0.7.0 - **sigs.k8s.io/yaml** v1.4.0 -> v1.5.0 Previous release can be found at [v1.10.0](https://redirect.github.com/siderolabs/talos/releases/tag/v1.10.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
b80c238f32 |
fix(deps): update module sigs.k8s.io/controller-runtime v0.21.0 → v0.22.0 (clustertool) (#38865)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [sigs.k8s.io/controller-runtime](https://redirect.github.com/kubernetes-sigs/controller-runtime) | `v0.21.0` -> `v0.22.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.22.0`](https://redirect.github.com/kubernetes-sigs/controller-runtime/releases/tag/v0.22.0) [Compare Source](https://redirect.github.com/kubernetes-sigs/controller-runtime/compare/v0.21.0...v0.22.0) #### 🔆 Highlights - Client: Native support for Server-Side Apply (SSA) ([#​3253](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3253), [#​2981](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2981)) - Update to k8s.io/\* v1.34 dependencies ([#​3231](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3231), [#​3236](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3236), [#​3246](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3246), [#​3259](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3259), [#​3270](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3270), [#​3300](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3300)) - Controller: Implement warmup support for controllers ([#​3192](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3192)) - Priorityqueue: various improvements ([#​3289](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3289), [#​3290](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3290), [#​3243](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3243), [#​3250](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3250)) #### ⚠️ Breaking changes - Update to k8s.io/\* v1.34 dependencies by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) [@​troy0820](https://redirect.github.com/troy0820) [#​3231](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3231), [#​3236](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3236), [#​3246](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3246), [#​3259](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3259), [#​3270](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3270), [#​3300](https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3300) - Client: Add native SSA support by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3253](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3253) - Client: Default selector to Nothing if it is nil for `MatchingLabelsSelector` and `MatchingFieldsSelector` by [@​acumino](https://redirect.github.com/acumino) in [#​3279](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3279) - Fakeclient: Add SSA support by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​2981](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2981) - Fakeclient: Remove support for objects with pointer ObjectMeta by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3228](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3228) - Fakeclient: Clear TypeMeta for structured objects by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3229](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3229) - Priorityqueue: Make Priority option a pointer by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3289](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3289) #### ✨ Features - Client: Add UnsafeDisableDeepCopy to GetOptions by [@​jonathan-innis](https://redirect.github.com/jonathan-innis) in [#​3227](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3227) - Controller: Add a ReconciliationTimeout option by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3296](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3296) - Controller: Implement warmup support for controllers by [@​godwinpang](https://redirect.github.com/godwinpang) in [#​3192](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3192) - Envtest: Allow selection of binaries version by release series by [@​cbandy](https://redirect.github.com/cbandy) in [#​3280](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3280) - Manager: Add support for custom labels on leader election leases by [@​DerekFrank](https://redirect.github.com/DerekFrank) in [#​3237](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3237) - Priorityqueue: WithLowPriorityWhenUnchanged: Set Priority for all add methods by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3290](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3290) - Webhooks: Handle panics during conversion more gracefully by [@​sbueringer](https://redirect.github.com/sbueringer) in [#​3278](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3278) #### 🐛 Bugfixes - Envtest: Ensure cleanup validates etcd process state first by [@​Danil-Grigorev](https://redirect.github.com/Danil-Grigorev) in [#​3272](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3272) - Envtest: Include listening address in kube-apiserver serving certificate by [@​solidDoWant](https://redirect.github.com/solidDoWant) in [#​3284](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3284) - Fakeclient: Fix some SSA-related bugs by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3268](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3268) - Fakeclient: Update passed object in Apply by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3283](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3283) - Fakeclient: Validate managed fields on init objects by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3282](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3282) - Manager: Prevent goroutine leak on shutdown timeout by [@​jingyih](https://redirect.github.com/jingyih) in [#​3247](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3247) - Priorityqueue: Don't block on Get when queue is shutdown by [@​dongjiang1989](https://redirect.github.com/dongjiang1989) in [#​3243](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3243) - Priorityqueue: Shutdown on shutdown by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3250](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3250) - Unit tests: Fix ginkgo panic in webhook integration test by [@​sbueringer](https://redirect.github.com/sbueringer) in [#​3288](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3288) - Unit tests: Fix race condition in Warmup unit test by [@​sbueringer](https://redirect.github.com/sbueringer) in [#​3287](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3287) #### 🌱 Other - Certwatcher: Add instance-specific logger with cert/key k/v pair by [@​s-z-z](https://redirect.github.com/s-z-z) in [#​3293](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3293) - Certwatcher: Don't require leader election by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3273](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3273) - Examples-builtin: Refactor controller setup to use builder pattern by [@​s-z-z](https://redirect.github.com/s-z-z) in [#​3265](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3265) - Fix deprecation warnings by [@​sbueringer](https://redirect.github.com/sbueringer) in [#​3275](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3275) - Update golangci-lint to v2.3.0 by [@​dongjiang1989](https://redirect.github.com/dongjiang1989) in [#​3266](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3266) - Unit tests: Stop using context.Background()/TODO() in tests by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3263](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3263) #### 📖 Documentation - Clarify our versioning scheme by [@​alvaroaleman](https://redirect.github.com/alvaroaleman) in [#​3264](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3264) - Clarify state of Warmup feature by [@​sbueringer](https://redirect.github.com/sbueringer) in [#​3299](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3299) - Extend godoc of SyncPeriod field by [@​guettli](https://redirect.github.com/guettli) in [#​3269](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3269), [#​3277](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3277) - Fix docs for LabelChangedPredicate by [@​guettli](https://redirect.github.com/guettli) in [#​3254](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3254) - Make pod naming consistent in examples by [@​clebs](https://redirect.github.com/clebs) in [#​3251](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3251) - Sync admins & maintainers with kubernetes/org by [@​sbueringer](https://redirect.github.com/sbueringer) in [#​3258](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3258) #### Dependencies ##### Added - github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp: [v1.26.0](https://redirect.github.com/GoogleCloudPlatform/opentelemetry-operations-go/tree/detectors/gcp/v1.26.0) - github.com/envoyproxy/go-control-plane/envoy: [v1.32.4](https://redirect.github.com/envoyproxy/go-control-plane/tree/envoy/v1.32.4) - github.com/envoyproxy/go-control-plane/ratelimit: [v0.1.0](https://redirect.github.com/envoyproxy/go-control-plane/tree/ratelimit/v0.1.0) - github.com/go-jose/go-jose/v4: [v4.0.4](https://redirect.github.com/go-jose/go-jose/tree/v4.0.4) - github.com/golang-jwt/jwt/v5: [v5.2.2](https://redirect.github.com/golang-jwt/jwt/tree/v5.2.2) - github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus: [v1.0.1](https://redirect.github.com/grpc-ecosystem/go-grpc-middleware/tree/providers/prometheus/v1.0.1) - github.com/grpc-ecosystem/go-grpc-middleware/v2: [v2.3.0](https://redirect.github.com/grpc-ecosystem/go-grpc-middleware/tree/v2.3.0) - github.com/spiffe/go-spiffe/v2: [v2.5.0](https://redirect.github.com/spiffe/go-spiffe/tree/v2.5.0) - github.com/zeebo/errs: [v1.4.0](https://redirect.github.com/zeebo/errs/tree/v1.4.0) - go.etcd.io/raft/v3: v3.6.0 - go.opentelemetry.io/contrib/detectors/gcp: v1.34.0 - go.opentelemetry.io/otel/sdk/metric: v1.34.0 - go.yaml.in/yaml/v2: v2.4.2 - go.yaml.in/yaml/v3: v3.0.4 - sigs.k8s.io/structured-merge-diff/v6: v6.3.0 ##### Changed - cel.dev/expr: v0.19.1 → v0.24.0 - cloud.google.com/go/compute/metadata: v0.5.0 → v0.6.0 - github.com/cncf/xds/go: [b4127c9 → 2f00578](https://redirect.github.com/cncf/xds/compare/b4127c9...2f00578) - github.com/cpuguy83/go-md2man/v2: [v2.0.4 → v2.0.6](https://redirect.github.com/cpuguy83/go-md2man/compare/v2.0.4...v2.0.6) - github.com/emicklei/go-restful/v3: [v3.11.0 → v3.12.2](https://redirect.github.com/emicklei/go-restful/compare/v3.11.0...v3.12.2) - github.com/envoyproxy/go-control-plane: [v0.13.0 → v0.13.4](https://redirect.github.com/envoyproxy/go-control-plane/compare/v0.13.0...v0.13.4) - github.com/envoyproxy/protoc-gen-validate: [v1.1.0 → v1.2.1](https://redirect.github.com/envoyproxy/protoc-gen-validate/compare/v1.1.0...v1.2.1) - github.com/fsnotify/fsnotify: [v1.7.0 → v1.9.0](https://redirect.github.com/fsnotify/fsnotify/compare/v1.7.0...v1.9.0) - github.com/fxamacker/cbor/v2: [v2.7.0 → v2.9.0](https://redirect.github.com/fxamacker/cbor/compare/v2.7.0...v2.9.0) - github.com/golang/glog: [v1.2.2 → v1.2.4](https://redirect.github.com/golang/glog/compare/v1.2.2...v1.2.4) - github.com/google/cel-go: [v0.23.2 → v0.26.0](https://redirect.github.com/google/cel-go/compare/v0.23.2...v0.26.0) - github.com/google/gnostic-models: [v0.6.9 → v0.7.0](https://redirect.github.com/google/gnostic-models/compare/v0.6.9...v0.7.0) - github.com/grpc-ecosystem/grpc-gateway/v2: [v2.24.0 → v2.26.3](https://redirect.github.com/grpc-ecosystem/grpc-gateway/compare/v2.24.0...v2.26.3) - github.com/jonboulle/clockwork: [v0.4.0 → v0.5.0](https://redirect.github.com/jonboulle/clockwork/compare/v0.4.0...v0.5.0) - github.com/modern-go/reflect2: [v1.0.2 → 35a7c28](https://redirect.github.com/modern-go/reflect2/compare/v1.0.2...35a7c28) - github.com/spf13/cobra: [v1.8.1 → v1.9.1](https://redirect.github.com/spf13/cobra/compare/v1.8.1...v1.9.1) - github.com/spf13/pflag: [v1.0.5 → v1.0.6](https://redirect.github.com/spf13/pflag/compare/v1.0.5...v1.0.6) - go.etcd.io/bbolt: v1.3.11 → v1.4.2 - go.etcd.io/etcd/api/v3: v3.5.21 → v3.6.4 - go.etcd.io/etcd/client/pkg/v3: v3.5.21 → v3.6.4 - go.etcd.io/etcd/client/v3: v3.5.21 → v3.6.4 - go.etcd.io/etcd/pkg/v3: v3.5.21 → v3.6.4 - go.etcd.io/etcd/server/v3: v3.5.21 → v3.6.4 - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc: v0.58.0 → v0.60.0 - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc: v1.33.0 → v1.34.0 - go.opentelemetry.io/otel/exporters/otlp/otlptrace: v1.33.0 → v1.34.0 - go.opentelemetry.io/otel/metric: v1.33.0 → v1.35.0 - go.opentelemetry.io/otel/sdk: v1.33.0 → v1.34.0 - go.opentelemetry.io/otel/trace: v1.33.0 → v1.35.0 - go.opentelemetry.io/otel: v1.33.0 → v1.35.0 - go.opentelemetry.io/proto/otlp: v1.4.0 → v1.5.0 - google.golang.org/genproto/googleapis/api: [`e6fa225`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/e6fa225) → [`a0af3ef`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/a0af3ef) - google.golang.org/genproto/googleapis/rpc: [`e6fa225`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/e6fa225) → [`a0af3ef`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/a0af3ef) - google.golang.org/grpc: v1.68.1 → v1.72.1 - k8s.io/api: v0.33.0 → v0.34.0 - k8s.io/apiextensions-apiserver: v0.33.0 → v0.34.0 - k8s.io/apimachinery: v0.33.0 → v0.34.0 - k8s.io/apiserver: v0.33.0 → v0.34.0 - k8s.io/client-go: v0.33.0 → v0.34.0 - k8s.io/code-generator: v0.33.0 → v0.34.0 - k8s.io/component-base: v0.33.0 → v0.34.0 - k8s.io/gengo/v2: [`1244d31`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/1244d31) → [`85fd79d`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/85fd79d) - k8s.io/kms: v0.33.0 → v0.34.0 - k8s.io/kube-openapi: [`c8a335a`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/c8a335a) → [`f3f2b99`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/f3f2b99) - k8s.io/utils: [`3ea5e8c`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/3ea5e8c) → [`4c0f3b2`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/4c0f3b2) - sigs.k8s.io/json: [`9aa6b5e`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/9aa6b5e) → [`cfa47c3`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/cfa47c3) - sigs.k8s.io/yaml: v1.4.0 → v1.6.0 ##### Removed - github.com/census-instrumentation/opencensus-proto: [v0.4.1](https://redirect.github.com/census-instrumentation/opencensus-proto/tree/v0.4.1) - github.com/golang-jwt/jwt/v4: [v4.5.2](https://redirect.github.com/golang-jwt/jwt/tree/v4.5.2) - github.com/grpc-ecosystem/go-grpc-middleware: [v1.3.0](https://redirect.github.com/grpc-ecosystem/go-grpc-middleware/tree/v1.3.0) - github.com/grpc-ecosystem/grpc-gateway: [v1.16.0](https://redirect.github.com/grpc-ecosystem/grpc-gateway/tree/v1.16.0) - go.etcd.io/etcd/client/v2: v2.305.21 - go.etcd.io/etcd/raft/v3: v3.5.21 - google.golang.org/genproto: [`ef43131`](https://redirect.github.com/kubernetes-sigs/controller-runtime/commit/ef43131) - sigs.k8s.io/structured-merge-diff/v4: v4.6.0 #### New Contributors - [@​DerekFrank](https://redirect.github.com/DerekFrank) made their first contribution in [#​3237](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3237) - [@​clebs](https://redirect.github.com/clebs) made their first contribution in [#​3251](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3251) - [@​jingyih](https://redirect.github.com/jingyih) made their first contribution in [#​3247](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3247) - [@​s-z-z](https://redirect.github.com/s-z-z) made their first contribution in [#​3265](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3265) - [@​solidDoWant](https://redirect.github.com/solidDoWant) made their first contribution in [#​3284](https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3284) **Full Changelog**: <https://github.com/kubernetes-sigs/controller-runtime/compare/v0.21.0...v0.22.0> *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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
4eda3e2b9a |
fix(deps): update kubernetes packages v0.34.0-rc.1 → v0.34.0 (clustertool) (patch) (#38682)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [k8s.io/api](https://redirect.github.com/kubernetes/api) | `v0.34.0-rc.1` -> `v0.34.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/apimachinery](https://redirect.github.com/kubernetes/apimachinery) | `v0.34.0-rc.1` -> `v0.34.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/client-go](https://redirect.github.com/kubernetes/client-go) | `v0.34.0-rc.1` -> `v0.34.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.34.0`](https://redirect.github.com/kubernetes/api/compare/v0.34.0-rc.2...v0.34.0) [Compare Source](https://redirect.github.com/kubernetes/api/compare/v0.34.0-rc.2...v0.34.0) ### [`v0.34.0-rc.2`](https://redirect.github.com/kubernetes/api/compare/v0.34.0-rc.1...v0.34.0-rc.2) [Compare Source](https://redirect.github.com/kubernetes/api/compare/v0.34.0-rc.1...v0.34.0-rc.2) </details> <details> <summary>kubernetes/apimachinery (k8s.io/apimachinery)</summary> ### [`v0.34.0`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.34.0-rc.2...v0.34.0) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.34.0-rc.2...v0.34.0) ### [`v0.34.0-rc.2`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.34.0-rc.1...v0.34.0-rc.2) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.34.0-rc.1...v0.34.0-rc.2) </details> <details> <summary>kubernetes/client-go (k8s.io/client-go)</summary> ### [`v0.34.0`](https://redirect.github.com/kubernetes/client-go/compare/v0.34.0-rc.2...v0.34.0) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.34.0-rc.2...v0.34.0) ### [`v0.34.0-rc.2`](https://redirect.github.com/kubernetes/client-go/compare/v0.34.0-rc.1...v0.34.0-rc.2) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.34.0-rc.1...v0.34.0-rc.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 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:eyJjcmVhdGVkSW5WZXIiOiI0MS43Ni4wIiwidXBkYXRlZEluVmVyIjoiNDEuODIuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9wYXRjaCJdfQ==--> |
||
|
|
df50e07479 |
fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.32 → v3.0.33 (clustertool) (#38840)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/budimanjojo/talhelper/v3](https://redirect.github.com/budimanjojo/talhelper) | `v3.0.32` -> `v3.0.33` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.33`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.33) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.32...v3.0.33) #### Changelog - [`03878de`](https://redirect.github.com/budimanjojo/talhelper/commit/03878dee0d3f72c421a7365070b181958afb73ff) chore(container): update ghcr.io/siderolabs/talosctl docker tag to v1.10.7 - [`536500b`](https://redirect.github.com/budimanjojo/talhelper/commit/536500bc986aaa1e73e143263f76eb19d1885cc5) chore(container): update golangci/golangci-lint docker tag to v2.3.1 - [`2bd1a45`](https://redirect.github.com/budimanjojo/talhelper/commit/2bd1a454e09ad390c7d2a5836a55c6866c11b1e2) chore(container): update golangci/golangci-lint docker tag to v2.4.0 - [`82299a8`](https://redirect.github.com/budimanjojo/talhelper/commit/82299a8f622275e2202337d6f17d7d71d09674ca) chore(container): update registry.k8s.io/kubectl docker tag to v1.33.4 - [`c2cdf15`](https://redirect.github.com/budimanjojo/talhelper/commit/c2cdf157287809ef3a6a333ff45c439705aad92a) chore(deps): update dependency siderolabs/talos to v1.10.7 - [`759c923`](https://redirect.github.com/budimanjojo/talhelper/commit/759c923aa917f0ff121e10d587bffbdb264a78d0) chore(github-action)!: Update actions/checkout action to v5 - [`6da952f`](https://redirect.github.com/budimanjojo/talhelper/commit/6da952fb5b200265fc8408eeee1f52b53bed28f7) chore(github-action): update actions/checkout action to v4.3.0 - [`8e5e7e4`](https://redirect.github.com/budimanjojo/talhelper/commit/8e5e7e49f392e32d880d857eda2953da2c3aaf5f) chore(github-action): update actions/checkout digest to [`08eba0b`](https://redirect.github.com/budimanjojo/talhelper/commit/08eba0b) ([#​1133](https://redirect.github.com/budimanjojo/talhelper/issues/1133)) - [`762a745`](https://redirect.github.com/budimanjojo/talhelper/commit/762a745aea5963a4356bfb0e28c17cbb1f956bdc) chore(github-action): update renovatebot/github-action action to v43.0.6 - [`f69689d`](https://redirect.github.com/budimanjojo/talhelper/commit/f69689dfa6209a803fea5def3206409d83d2eff1) chore(github-action): update renovatebot/github-action action to v43.0.7 - [`ffd4d59`](https://redirect.github.com/budimanjojo/talhelper/commit/ffd4d59cf5c9d31b98be66e2f3b32e68de9a7ef5) chore(github-action): update renovatebot/github-action action to v43.0.8 - [`ad82844`](https://redirect.github.com/budimanjojo/talhelper/commit/ad8284457c68a681b407f057ed54f8c387e6a6ad) chore(github-action): update renovatebot/github-action action to v43.0.9 - [`07d8ce0`](https://redirect.github.com/budimanjojo/talhelper/commit/07d8ce0c241921a12bd3f6185e3361411de9b4fd) chore(schema): update talconfig.yaml JSON schema ([#​1150](https://redirect.github.com/budimanjojo/talhelper/issues/1150)) - [`d634b00`](https://redirect.github.com/budimanjojo/talhelper/commit/d634b00c4b2448c5544a53c6e80a28e81fd6f476) chore(schema): update talos-extensions.yaml JSON schema - [`240f922`](https://redirect.github.com/budimanjojo/talhelper/commit/240f9222f3e6cf400838804b6565308139b30c0a) chore(schema): update talos-extensions.yaml JSON schema ([#​1123](https://redirect.github.com/budimanjojo/talhelper/issues/1123)) - [`b590917`](https://redirect.github.com/budimanjojo/talhelper/commit/b5909171b7f674c5be68011066e36baf6496d00a) chore(schema): update talos-extensions.yaml JSON schema ([#​1124](https://redirect.github.com/budimanjojo/talhelper/issues/1124)) - [`2f91548`](https://redirect.github.com/budimanjojo/talhelper/commit/2f91548220fcb1f91e837a5e41dde7ad70fc46af) chore(schema): update talos-extensions.yaml JSON schema ([#​1127](https://redirect.github.com/budimanjojo/talhelper/issues/1127)) - [`dad5cf5`](https://redirect.github.com/budimanjojo/talhelper/commit/dad5cf5bdfc2883ac41c611fd620e7d312f677e5) chore(schema): update talos-extensions.yaml JSON schema ([#​1130](https://redirect.github.com/budimanjojo/talhelper/issues/1130)) - [`28ee50a`](https://redirect.github.com/budimanjojo/talhelper/commit/28ee50a5babec28e599737c1bbec724f26b62c0a) chore(schema): update talos-extensions.yaml JSON schema ([#​1140](https://redirect.github.com/budimanjojo/talhelper/issues/1140)) - [`1683163`](https://redirect.github.com/budimanjojo/talhelper/commit/16831632dd477e3b3ae2ba9d674e4f6f6f1eb83f) chore(schema): update talos-extensions.yaml JSON schema ([#​1144](https://redirect.github.com/budimanjojo/talhelper/issues/1144)) - [`fdbf641`](https://redirect.github.com/budimanjojo/talhelper/commit/fdbf641f431565ba7d6bd71e8573a8cdd5e4f33f) chore(schema): update talos-extensions.yaml JSON schema ([#​1148](https://redirect.github.com/budimanjojo/talhelper/issues/1148)) - [`fe42be0`](https://redirect.github.com/budimanjojo/talhelper/commit/fe42be0c1c8c031ec8d8d402bd2887bc529a42e2) chore(schema): update talos-extensions.yaml JSON schema ([#​1152](https://redirect.github.com/budimanjojo/talhelper/issues/1152)) - [`4ec70ee`](https://redirect.github.com/budimanjojo/talhelper/commit/4ec70ee346a073e94cbae1219d33792322e9ca9e) chore(schema): update talos-extensions.yaml JSON schema ([#​1156](https://redirect.github.com/budimanjojo/talhelper/issues/1156)) - [`80e04f0`](https://redirect.github.com/budimanjojo/talhelper/commit/80e04f0df9c994d9c0bdf6b6c3cf69fa0f6d6972) feat(config): add `encryptionSpec` to `volumes` - [`29add3f`](https://redirect.github.com/budimanjojo/talhelper/commit/29add3febec134a8c5d73ba07c83e0a360cb48f2) feat: update Scoop for talhelper version v3.0.32 - [`0588852`](https://redirect.github.com/budimanjojo/talhelper/commit/0588852b8a6561b61e4170691225504005069db3) feat: update flake ([#​1121](https://redirect.github.com/budimanjojo/talhelper/issues/1121)) - [`400735f`](https://redirect.github.com/budimanjojo/talhelper/commit/400735f18e48142f7fd80da3b3046e8786315fc9) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.32 - [`e22a45b`](https://redirect.github.com/budimanjojo/talhelper/commit/e22a45b5b8fc0dc94238dab4ec080aab57381291) fix(deps): update module github.com/siderolabs/image-factory to v0.8.0 - [`76a4df3`](https://redirect.github.com/budimanjojo/talhelper/commit/76a4df3e53ddc8921e685a094e97254d7efe213b) fix(deps): update module github.com/siderolabs/image-factory to v0.8.1 - [`483b781`](https://redirect.github.com/budimanjojo/talhelper/commit/483b7815435730bf38dafc2ac4bb51a50515e6ea) fix(deps): update module github.com/siderolabs/image-factory to v0.8.2 - [`7936ec7`](https://redirect.github.com/budimanjojo/talhelper/commit/7936ec7ad8e4aa438f5924d5442a120e0d4dd8a2) fix(deps): update module github.com/siderolabs/image-factory to v0.8.3 - [`c7050bf`](https://redirect.github.com/budimanjojo/talhelper/commit/c7050bf6234f62417f15bde39386432549ee0b06) fix(deps): update module github.com/siderolabs/talos/pkg/machinery to v1.11.0-beta.1 - [`dacbf70`](https://redirect.github.com/budimanjojo/talhelper/commit/dacbf706a933cec517ee3e505ff30efaef32583c) fix(deps): update module github.com/siderolabs/talos/pkg/machinery to v1.11.0-beta.2 - [`312ebd4`](https://redirect.github.com/budimanjojo/talhelper/commit/312ebd4053e96174227ca3ea68812fab810d7992) fix(deps): update module github.com/siderolabs/talos/pkg/machinery to v1.11.0-rc.0 - [`1dae6ad`](https://redirect.github.com/budimanjojo/talhelper/commit/1dae6add58ca9727b9da4d421e556f33cec895f5) fix(deps): update module golang.org/x/mod to v0.27.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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
e72782fd69 |
fix(deps): update module helm.sh/helm/v3 v3.18.5 → v3.18.6 (clustertool) (#38649)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [helm.sh/helm/v3](https://redirect.github.com/helm/helm) | `v3.18.5` -> `v3.18.6` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.18.6`](https://redirect.github.com/helm/helm/releases/tag/v3.18.6): Helm v3.18.6 [Compare Source](https://redirect.github.com/helm/helm/compare/v3.18.5...v3.18.6) Helm v3.18.6 is a patch release. Users are encouraged to upgrade for the best experience. 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) #### Installation and Upgrading Download Helm v3.18.6. The common platform binaries are here: - [MacOS amd64](https://get.helm.sh/helm-v3.18.6-darwin-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-darwin-amd64.tar.gz.sha256sum) / 80cad0470e38cf25731cdead7c32dfbeb887bc177bd6fa01e31b065722f8f06b) - [MacOS arm64](https://get.helm.sh/helm-v3.18.6-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-darwin-arm64.tar.gz.sha256sum) / 48e30d236a1f334c6acb78501be5a851eaa2a267fefeb1131b6484eb2f9f30d7) - [Linux amd64](https://get.helm.sh/helm-v3.18.6-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-amd64.tar.gz.sha256sum) / 3f43c0aa57243852dd542493a0f54f1396c0bc8ec7296bbb2c01e802010819ce) - [Linux arm](https://get.helm.sh/helm-v3.18.6-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-arm.tar.gz.sha256sum) / 13156fbe87a9db201b7d8fd0b42dee2a2e76a77388ea3bd59e3074cfa49d3619) - [Linux arm64](https://get.helm.sh/helm-v3.18.6-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-arm64.tar.gz.sha256sum) / 5b8e00b6709caab466cbbb0bc29ee09059b8dc9417991dd04b497530e49b1737) - [Linux i386](https://get.helm.sh/helm-v3.18.6-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-386.tar.gz.sha256sum) / d245db7c80edaf47bc42d3fab0b79d2e75d63fa49d06bc0ca599686ebdbd1422) - [Linux ppc64le](https://get.helm.sh/helm-v3.18.6-linux-ppc64le.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-ppc64le.tar.gz.sha256sum) / 61eac730dac2029d7acf1c53bd0b1056f78ca2c3f915da7fa3995e74c021eae8) - [Linux s390x](https://get.helm.sh/helm-v3.18.6-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-s390x.tar.gz.sha256sum) / c6435c220b2577abea11ee9281fda8a5164583fb1f502702f6ef5c2b4347e38f) - [Linux riscv64](https://get.helm.sh/helm-v3.18.6-linux-riscv64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.6-linux-riscv64.tar.gz.sha256sum) / cea696b01b66fad76b24d9ef28a86802b0931cbc25cec687e8469589438995eb) - [Windows amd64](https://get.helm.sh/helm-v3.18.6-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.6-windows-amd64.zip.sha256sum) / 4263320a8d70df0bb1e245534fba1b541f9889005cdb68dec9798b197c3f66b0) - [Windows arm64](https://get.helm.sh/helm-v3.18.6-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.6-windows-arm64.zip.sha256sum) / fdff469f270d8a155d9289843b92f7b00b2ca353b8ec61532e920eeb3fc2b480) This release was signed with `672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 B98E ` and can be found at [@​mattfarina](https://redirect.github.com/mattfarina) [keybase account](https://keybase.io/mattfarina). 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.19.0 is the next minor release and will be on September 11, 2025 #### Changelog - fix(helm-lint): fmt [`b76a950`](https://redirect.github.com/helm/helm/commit/b76a950f6835474e0906b96c9ec68a2eff3a6430) (Isaiah Lewis) - fix(helm-lint): Add TLSClientConfig [`b79a421`](https://redirect.github.com/helm/helm/commit/b79a4212e803ad50c66f06799b8bbdb51f918603) (Isaiah Lewis) - fix(helm-lint): Add HTTP/HTTPS URL support for json schema references [`b9180e6`](https://redirect.github.com/helm/helm/commit/b9180e674fccb57e6ea6934ed7deb4448a3c9ddb) (Isaiah Lewis) </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:eyJjcmVhdGVkSW5WZXIiOiI0MS43Ni4wIiwidXBkYXRlZEluVmVyIjoiNDEuNzYuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
772b3f7904 |
fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.11.0-beta.2 → v1.11.0-rc.0 (clustertool) (#38629)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | `v1.11.0-beta.2` -> `v1.11.0-rc.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.0-rc.0`](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-beta.2...v1.11.0-rc.0) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-beta.2...v1.11.0-rc.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:eyJjcmVhdGVkSW5WZXIiOiI0MS43Ni4wIiwidXBkYXRlZEluVmVyIjoiNDEuNzYuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
5c91e9c356 |
fix(deps): update module helm.sh/helm/v3 v3.18.4 → v3.18.5 (clustertool) (#38382)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [helm.sh/helm/v3](https://redirect.github.com/helm/helm) | `v3.18.4` -> `v3.18.5` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.18.5`](https://redirect.github.com/helm/helm/releases/tag/v3.18.5): Helm v3.18.5 [Compare Source](https://redirect.github.com/helm/helm/compare/v3.18.4...v3.18.5) Helm v3.18.5 is a security 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) #### Security Advisories - [Helm Charts with Specific JSON Schema Values Can Cause Memory Exhaustion](https://redirect.github.com/helm/helm/security/advisories/GHSA-9h84-qmv7-982p) - [Incorrect YAML Content Leads To Panic](https://redirect.github.com/helm/helm/security/advisories/GHSA-f9f8-9pmf-xv68) #### Installation and Upgrading Download Helm v3.18.5. The common platform binaries are here: - [MacOS amd64](https://get.helm.sh/helm-v3.18.5-darwin-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-darwin-amd64.tar.gz.sha256sum) / 3200c32cf19bf69b446e97c0060af39f018d2e441e418ad174ba39052f63fb15) - [MacOS arm64](https://get.helm.sh/helm-v3.18.5-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-darwin-arm64.tar.gz.sha256sum) / 32ce3f4910d5a96c1170f3f8f230d4c8b8bc007e5d47b085b8416cfe559d7925) - [Linux amd64](https://get.helm.sh/helm-v3.18.5-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-amd64.tar.gz.sha256sum) / 9879bf9c471cdecbbee5ee17cf1de1849b0ffd12871ea01f17ede6861d7134f5) - [Linux arm](https://get.helm.sh/helm-v3.18.5-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-arm.tar.gz.sha256sum) / 4be47fa77476bfd6416a44853e28983e7c8594156259813ecf35d004044fb17d) - [Linux arm64](https://get.helm.sh/helm-v3.18.5-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-arm64.tar.gz.sha256sum) / d25d2c1b1c5a9844755ab5c66e6df4d6b31c25e6d92dd2ce66c137a63ddf9f2c) - [Linux i386](https://get.helm.sh/helm-v3.18.5-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-386.tar.gz.sha256sum) / 1ee980e47bb37f388abdce3a7e8da64a9b372352c4cb645bda5ddd401973bee3) - [Linux ppc64le](https://get.helm.sh/helm-v3.18.5-linux-ppc64le.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-ppc64le.tar.gz.sha256sum) / 9d300e0efced9b244aedcc9d11c49647deb4c5afc8d2298c988498dc530bc932) - [Linux s390x](https://get.helm.sh/helm-v3.18.5-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-s390x.tar.gz.sha256sum) / c779bb4dea8026294378a9ad6447095fb8f56671a8c49437344dd342de2a3156) - [Linux riscv64](https://get.helm.sh/helm-v3.18.5-linux-riscv64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.5-linux-riscv64.tar.gz.sha256sum) / f79d06dc5e966c341fc8ad1a0d5e032f7d681e62c4a51a4d22badec4b9857144) - [Windows amd64](https://get.helm.sh/helm-v3.18.5-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.5-windows-amd64.zip.sha256sum) / 464bfd7792d6c682778fc1d5e5bcc9ac5ce83457fe3c4b7a3d0af4dc3ef03eb1) - [Windows arm64](https://get.helm.sh/helm-v3.18.5-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.5-windows-arm64.zip.sha256sum) / 82411e3ee4e349d30221ddf6c26397bb0a41666939b338ccf39f4cd2ec4e4410) 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.18.6 will contain only bug fixes. - 3.19.5 is the next feature release. This release will focus on ... #### Changelog - fix Chart.yaml handling [`7799b48`](https://redirect.github.com/helm/helm/commit/7799b483f52ceb665264a4056da3d2569d60f910) (Matt Farina) - Handle messy index files [`dd8502f`](https://redirect.github.com/helm/helm/commit/dd8502f7b4fd5824a696c99909babd0fbed77e9e) (Matt Farina) - json schema fix [`cb8595b`](https://redirect.github.com/helm/helm/commit/cb8595bc650e2ec7459427d2b0430599431a3dbe) (Robert Sirchia) </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:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
b30d794b23 |
fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.11.0-beta.1 → v1.11.0-beta.2 (clustertool) (#38315)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | `v1.11.0-beta.1` -> `v1.11.0-beta.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.0-beta.2`](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0-beta.2) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-beta.1...v1.11.0-beta.2) #### [Talos 1.11.0-beta.2](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0-beta.2) (2025-08-12) Welcome to the v1.11.0-beta.2 release of Talos!\ *This is a pre-release of Talos* Please try out the release binaries and report any issues at https://github.com/siderolabs/talos/issues. ##### Azure Talos on Azure now defaults to MTU of 1400 bytes for the `eth0` interface to avoid packet fragmentation issues. The default MTU can be overriden with machine configuration. ##### Boot Talos increases the boot partition size to 2 GiB to accommodate larger images (with many system extensions included). ##### Kernel Command Line Talos now exposes the kernel command line as a KernelCmdline resource (`talosctl get cmdline`). ##### Disk Encryption Disk encryption for system volumes is now managed by the `VolumeConfig` machine configuration document. Legacy configuration in `valpha1` machine configuration is still supported. New per-key option `lockToSTATE` is added to the `VolumeConfig` document, which allows to lock the volume encryption key to the secret salt in the `STATE` volume. So, if the `STATE` volume is wiped or replaced, the volume encryption key will not be usable anymore. ##### Disk Wipe Talos now supports `talosctl disk wipe` command in maintenance mode (`talosctl disk wipe <disk> --insecure`). ##### Early Inline Configuration Talos now supports passing early inline configuration via the `talos.config.early` kernel parameter. This allows to pass the configuration before the platform config source is probed, which is useful for early boot configuration. The value of this parameter has same format as the `talos.config.inline` parameter, i.e. it should be base64 encoded and zstd-compressed. ##### ETCD downgrade API Added ETCD downgrade API mimicking the ETCD API and etcdctl interfaces. This API allows to downgrade ETCD cluster (storage format) to a previous version. ##### IMA support removed Talos now drops the IMA (Integrity Measurement Architecture) support. This feature was not used in Talos for any meaningful security purpose and has historically caused performance issues. See [#​11133](https://redirect.github.com/siderolabs/talos/issues/11133) for more details. ##### Kubernetes Version Validation Talos now validates Kubernetes version in the image submitted in the machine configuration. Previously this check was performed only on upgrade, but now it is consistently applied to upgrade, initial provisioning, and machine configuration updates. This implies that all image references should contain the tag, even if the image is pinned by digest. ##### Qemu provisioner on MacOS On MacOS `talosctl cluster create` command now supports the Qemu provisioner in addition to the Docker provisioner. ##### Kernel Modules Talosctl now returns the loaded modules, not the modules configured to be loaded (`talosctl get modules`). ##### SBOM Talos now publishes [Software Bill of Materials (SBOM)](https://www.talos.dev/v1.11/advanced/sbom/) in the SPDX format. ##### Swap Suport Talos now supports swap on block devices. This feature can be enable by using [SwapVolumeConfig](https://www.talos.dev/v1.11/reference/configuration/block/swapvolumeconfig/) document in the machine configuration. ##### Component Updates Linux: 6.12.40 Kubernetes: 1.34.0-rc.1 runc: 1.3.0 etcd: 3.6.4 containerd: 2.1.4 Flannel CNI plugin: 1.7.1-flannel1 Flannel: 0.27.2 CoreDNS: 1.12.2 xfsprogs: 6.15.0 systemd-udevd and systemd-boot: 257.7 lvm2: 2.03.33 cryptsetup: 2.8.0 Talos is built with Go 1.24.6. ##### VMware Talos VMWare platform now supports `arm64` architecture in addition to `amd64`. ##### Volumes Talos now supports [raw user volumes](https://www.talos.dev/v1.11/talos-guides/configuration/disk-management/raw/), allowing to allocate unformatted disk space as partition. In addition to that, support for [existing volumes](https://www.talos.dev/v1.11/talos-guides/configuration/disk-management/existing/) has been added, allowing to mount existing partitions without formatting them. ##### Zswap Support Talos now supports zswap, a compressed cache for swap pages. This feature can be enabled by using [ZswapConfig](https://www.talos.dev/v1.11/reference/configuration/block/zswapconfig/) document in the machine configuration. ##### Contributors - Andrey Smirnov - Noel Georgi - Dmitrii Sharshakov - Orzelius - Mateusz Urbanek - Orzelius - Justin Garrison - Spencer Smith - Steve Francis - Till Hoffmann - Utku Ozdemir - Andrew Longwill - Artem Chernyshev - Michael Robbins - Alexandre GV - Marat Bakeev - Olav Thoresen - Thibault VINCENT - Alvaro "Chamo" Linares Cabre - Amarachi Iheanacho - Brian Brookman - Bryan Mora - Clément Nussbaumer - Damien - David R - Dennis Marttinen - Dmitriy Matrenichev - Joakim Nohlgård - Jorik Jonker - Justin Seely - Luke Cousins - Marco Mihai Condrache - Markus Reiter - Martyn Ranyard - Michael Moerz - Mike - Oguz Kilcan - Tan Siewert - Tom Keur - jvanthienen-gluo - killcity - yashutanu ##### Changes <details><summary>258 commits</summary> <p> - [@​`f5d700a`](https://redirect.github.com/siderolabs/talos/commit/f5d700a0c) release(v1.11.0-beta.2): prepare release - [@​`6186d18`](https://redirect.github.com/siderolabs/talos/commit/6186d1821) chore: disable vulncheck temporarily - [@​`e4a2a8d`](https://redirect.github.com/siderolabs/talos/commit/e4a2a8d9c) feat: update default Kubernetes to v1.34.0-rc.1 - [@​`4c4236d`](https://redirect.github.com/siderolabs/talos/commit/4c4236d7e) feat: update Go to 1.24.6 - [@​`a01a390`](https://redirect.github.com/siderolabs/talos/commit/a01a390f6) chore: add deadcode elimination linter - [@​`49fad0e`](https://redirect.github.com/siderolabs/talos/commit/49fad0ede) feat: add a pause function to dashboard - [@​`21e8e9d`](https://redirect.github.com/siderolabs/talos/commit/21e8e9dc9) refactor: replace containerd/containerd/v2 module for proper DCE - [@​`bbd01b6`](https://redirect.github.com/siderolabs/talos/commit/bbd01b6b7) refactor: fix deadcode elimination with godbus - [@​`e8d9c81`](https://redirect.github.com/siderolabs/talos/commit/e8d9c81cc) refactor: stop using `text/template` in `machined` code paths - [@​`8558966`](https://redirect.github.com/siderolabs/talos/commit/85589662a) fix: unmarshal encryption STATE from META - [@​`f10a626`](https://redirect.github.com/siderolabs/talos/commit/f10a626d2) docs: add what is new notes for 1.11 - [@​`5a15ce8`](https://redirect.github.com/siderolabs/talos/commit/5a15ce88b) release(v1.11.0-beta.1): prepare release - [@​`614ca2e`](https://redirect.github.com/siderolabs/talos/commit/614ca2e22) fix: one more attempt to fix volume mount race on restart - [@​`4b86dfe`](https://redirect.github.com/siderolabs/talos/commit/4b86dfe6f) feat: implement encryption locking to STATE - [@​`8ae76c3`](https://redirect.github.com/siderolabs/talos/commit/8ae76c320) feat: implement `talos.config.early` command line arg - [@​`19f8c60`](https://redirect.github.com/siderolabs/talos/commit/19f8c605e) docs: remove talos API flags from mgmt commands - [@​`fa1d6fe`](https://redirect.github.com/siderolabs/talos/commit/fa1d6fef8) feat: bootedentry resource - [@​`7dee810`](https://redirect.github.com/siderolabs/talos/commit/7dee810d4) fix: live reload of TLS client config for discovery client - [@​`a5dc224`](https://redirect.github.com/siderolabs/talos/commit/a5dc22466) fix: enforce minimum size on user volumes if not set explicitly - [@​`7836e92`](https://redirect.github.com/siderolabs/talos/commit/7836e924d) feat: update containerd to 2.1.4 - [@​`5012550`](https://redirect.github.com/siderolabs/talos/commit/5012550ec) feat: add [`F71808E`](https://redirect.github.com/siderolabs/talos/commit/F71808E) watchdog driver - [@​`10ddc4c`](https://redirect.github.com/siderolabs/talos/commit/10ddc4cdd) fix: grype scan - [@​`d108e0a`](https://redirect.github.com/siderolabs/talos/commit/d108e0a08) fix(ci): use a random suffix for ami names - [@​`5042255`](https://redirect.github.com/siderolabs/talos/commit/504225546) fix: issues with reading GPT - [@​`bdaf08d`](https://redirect.github.com/siderolabs/talos/commit/bdaf08dd4) feat: update PCI DB module to v0.3.2 - [@​`667dceb`](https://redirect.github.com/siderolabs/talos/commit/667dcebec) test: wait for service account test job longer - [@​`ae176a4`](https://redirect.github.com/siderolabs/talos/commit/ae176a4b7) feat: update etcd to 3.6.4 - [@​`201b680`](https://redirect.github.com/siderolabs/talos/commit/201b6801f) fix: issue with volume remount on service restart - [@​`2a91140`](https://redirect.github.com/siderolabs/talos/commit/2a911402b) chore: tag aws snapshots created via ci with the image name - [@​`d8bd84b`](https://redirect.github.com/siderolabs/talos/commit/d8bd84b56) docs: add SBOM documentation - [@​`7eec619`](https://redirect.github.com/siderolabs/talos/commit/7eec61993) feat: unify disk encryption configuration - [@​`4ff2bf9`](https://redirect.github.com/siderolabs/talos/commit/4ff2bf9e0) feat: update etcd to v3.5.22 - [@​`31a67d3`](https://redirect.github.com/siderolabs/talos/commit/31a67d379) fix: do not download artifacts for cron Grype scan - [@​`c6b6e0b`](https://redirect.github.com/siderolabs/talos/commit/c6b6e0bb3) docs: rewrite the getting started and prod docs for v1.10 and v1.11 - [@​`ca1c656`](https://redirect.github.com/siderolabs/talos/commit/ca1c656e6) chore(ci): add more nvidia test matrix - [@​`7a2e0f0`](https://redirect.github.com/siderolabs/talos/commit/7a2e0f068) feat: sync pkgs, update Linux to 6.12.40 - [@​`85e7989`](https://redirect.github.com/siderolabs/talos/commit/85e7989cf) release(v1.11.0-beta.0): prepare release - [@​`3039162`](https://redirect.github.com/siderolabs/talos/commit/3039162dc) feat: update Flannel to v0.27.2 - [@​`7e6052e`](https://redirect.github.com/siderolabs/talos/commit/7e6052e63) feat: increase boot partition to 2 GiB - [@​`cb7ca17`](https://redirect.github.com/siderolabs/talos/commit/cb7ca17bb) feat: implement ExistingVolumeConfig - [@​`a857c69`](https://redirect.github.com/siderolabs/talos/commit/a857c696f) chore(machined): remove deprecated Endpoints - [@​`a60101c`](https://redirect.github.com/siderolabs/talos/commit/a60101c55) fix: fill serial using helpers - [@​`5420e99`](https://redirect.github.com/siderolabs/talos/commit/5420e9979) refactor: output default selection for profiles - [@​`023a24c`](https://redirect.github.com/siderolabs/talos/commit/023a24cd4) test: use Grype to scan SBOM for vulnerabilities - [@​`96896fd`](https://redirect.github.com/siderolabs/talos/commit/96896fddb) chore: build less images by default - [@​`75b5dec`](https://redirect.github.com/siderolabs/talos/commit/75b5dec06) fix: sd-boot kexec with disk images - [@​`10546d6`](https://redirect.github.com/siderolabs/talos/commit/10546d6f8) feat: update Kuberentes 1.34.0-beta.0 - [@​`3f35b83`](https://redirect.github.com/siderolabs/talos/commit/3f35b83ae) fix: ignore absent extensions SBOM directory - [@​`9920da3`](https://redirect.github.com/siderolabs/talos/commit/9920da3e1) feat: add etcd downgrade API - [@​`c386822`](https://redirect.github.com/siderolabs/talos/commit/c38682279) feat: bump pkgs and tools, read extensions' SBOMs, rekres - [@​`9c0d270`](https://redirect.github.com/siderolabs/talos/commit/9c0d2706c) docs: add release notes about v3.6.x bug - [@​`d219942`](https://redirect.github.com/siderolabs/talos/commit/d21994210) test: refactor various merge controller tests - [@​`da5a444`](https://redirect.github.com/siderolabs/talos/commit/da5a4449f) feat: implement raw volume support - [@​`41adda1`](https://redirect.github.com/siderolabs/talos/commit/41adda1cf) docs: add secure boot setup mode note for Xen - [@​`993b4ad`](https://redirect.github.com/siderolabs/talos/commit/993b4ade8) docs: fix typo in hugo config: pre-releaase - [@​`130b7fd`](https://redirect.github.com/siderolabs/talos/commit/130b7fd6e) test: fix flaky TestDNS - [@​`35b45ae`](https://redirect.github.com/siderolabs/talos/commit/35b45ae6e) feat(talosctl): support tpm operation on mac - [@​`24628db`](https://redirect.github.com/siderolabs/talos/commit/24628db20) feat: update Kubernetes to v1.34.0-alpha.3 - [@​`ff68286`](https://redirect.github.com/siderolabs/talos/commit/ff68286d1) feat: include hwrandom modules - [@​`a5b07c9`](https://redirect.github.com/siderolabs/talos/commit/a5b07c9a5) test: split tests and lint from the default pipeline - [@​`a957ef4`](https://redirect.github.com/siderolabs/talos/commit/a957ef416) feat: add SBOMs to the imager container - [@​`506212a`](https://redirect.github.com/siderolabs/talos/commit/506212a71) feat: include AMD encrypted mem modules into base - [@​`a966321`](https://redirect.github.com/siderolabs/talos/commit/a966321cc) fix: add more bootloader probe logs on upgrade - [@​`b38fa56`](https://redirect.github.com/siderolabs/talos/commit/b38fa568a) feat: add validation for secrets bundle - [@​`2d89bcc`](https://redirect.github.com/siderolabs/talos/commit/2d89bcc71) feat: bump Linux, Go and other packages - [@​`0b8c180`](https://redirect.github.com/siderolabs/talos/commit/0b8c180b8) fix: rename instances to referenceCount - [@​`378fe4f`](https://redirect.github.com/siderolabs/talos/commit/378fe4f2f) feat: support writing EFI boot order - [@​`9f07926`](https://redirect.github.com/siderolabs/talos/commit/9f0792632) fix: improve volume provisioning errors - [@​`b8fcf3c`](https://redirect.github.com/siderolabs/talos/commit/b8fcf3c71) fix: change module instance evaluation - [@​`d680e56`](https://redirect.github.com/siderolabs/talos/commit/d680e560d) docs: create FUNDING.yml - [@​`6415055`](https://redirect.github.com/siderolabs/talos/commit/641505584) feat: support project quota support for user volumes - [@​`52656cc`](https://redirect.github.com/siderolabs/talos/commit/52656cc3c) feat: allow taloscl disk wipe in maintenance mode - [@​`8505794`](https://redirect.github.com/siderolabs/talos/commit/850579448) feat: export SBOM as resources - [@​`4f3a2ff`](https://redirect.github.com/siderolabs/talos/commit/4f3a2ffab) test: update unit-test runner - [@​`d531b68`](https://redirect.github.com/siderolabs/talos/commit/d531b682c) fix: provide FIPS 140-3 compliance - [@​`3e3129d`](https://redirect.github.com/siderolabs/talos/commit/3e3129d36) feat: include packages into SBOM - [@​`54bd50b`](https://redirect.github.com/siderolabs/talos/commit/54bd50be3) fix: talos endpoint might not be created in Kubernetes - [@​`8789a02`](https://redirect.github.com/siderolabs/talos/commit/8789a02c3) feat: present loaded kernel modules - [@​`33ecbae`](https://redirect.github.com/siderolabs/talos/commit/33ecbaec6) test: update apply config tests - [@​`7d2fd39`](https://redirect.github.com/siderolabs/talos/commit/7d2fd390c) chore: bump Talos version in the Image Factory CI pipeline - [@​`de77f21`](https://redirect.github.com/siderolabs/talos/commit/de77f2142) docs: add example for fluentbit config - [@​`1f1f781`](https://redirect.github.com/siderolabs/talos/commit/1f1f78106) fix: add limited retries for not found images - [@​`3d6a2c1`](https://redirect.github.com/siderolabs/talos/commit/3d6a2c14e) chore: generate and upload signatures on release - [@​`3801413`](https://redirect.github.com/siderolabs/talos/commit/380141330) feat: expose kernel cmdline as a resource - [@​`4c6b3b1`](https://redirect.github.com/siderolabs/talos/commit/4c6b3b14d) docs: document disabling SELinux - [@​`3a6e5a7`](https://redirect.github.com/siderolabs/talos/commit/3a6e5a71e) feat: add talosctl mulitarch bundle image - [@​`be671ee`](https://redirect.github.com/siderolabs/talos/commit/be671ee6d) chore: add sbom step to the release pipeline - [@​`7fd0e8f`](https://redirect.github.com/siderolabs/talos/commit/7fd0e8fc7) release(v1.11.0-alpha.3): prepare release - [@​`777335f`](https://redirect.github.com/siderolabs/talos/commit/777335f23) chore: improve cloud image uploader resilience - [@​`14e5eee`](https://redirect.github.com/siderolabs/talos/commit/14e5eee7d) release(v1.11.0-alpha.2): prepare release - [@​`1e5a008`](https://redirect.github.com/siderolabs/talos/commit/1e5a008f5) fix: hold user volume mount point across kubelet restarts - [@​`cdad505`](https://redirect.github.com/siderolabs/talos/commit/cdad50590) docs: user volumes and kubernetes upgrade updates - [@​`c880835`](https://redirect.github.com/siderolabs/talos/commit/c880835c8) feat: implement zswap support - [@​`7f0300f`](https://redirect.github.com/siderolabs/talos/commit/7f0300f10) feat: update dependencies, Kubernetes 1.34.0-alpha.2 - [@​`61afbe3`](https://redirect.github.com/siderolabs/talos/commit/61afbe3d2) docs: add vc4 documentation - [@​`b9dbdc8`](https://redirect.github.com/siderolabs/talos/commit/b9dbdc8e7) fix: etcd recover with multiple advertised addresses - [@​`19d94c3`](https://redirect.github.com/siderolabs/talos/commit/19d94c357) feat: update Linux to 6.12.35, containerd to 2.1.3 - [@​`44a1fc3`](https://redirect.github.com/siderolabs/talos/commit/44a1fc3b7) fix: treat context canceled as expected error on image pull - [@​`4da2dd5`](https://redirect.github.com/siderolabs/talos/commit/4da2dd537) feat: enforce Kubernetes version compatibility - [@​`6c7f820`](https://redirect.github.com/siderolabs/talos/commit/6c7f8201a) fix: set default MTU on Azure to 1400 - [@​`091cd69`](https://redirect.github.com/siderolabs/talos/commit/091cd6989) docs: small yaml typo fix - [@​`66ecbd4`](https://redirect.github.com/siderolabs/talos/commit/66ecbd48f) docs: update support matrix with omni version - [@​`c948d76`](https://redirect.github.com/siderolabs/talos/commit/c948d7617) docs: minor fixes for creating kernel modules - [@​`cc14c4a`](https://redirect.github.com/siderolabs/talos/commit/cc14c4a25) docs: add docs for creating kernel modules - [@​`93bcd3b`](https://redirect.github.com/siderolabs/talos/commit/93bcd3b56) docs: create SBOM for Go dependencies - [@​`38c4ce4`](https://redirect.github.com/siderolabs/talos/commit/38c4ce415) feat: add user-space InfiniBand modules - [@​`251dc93`](https://redirect.github.com/siderolabs/talos/commit/251dc934f) feat: arm64 support for platform vmware - [@​`09b3ad5`](https://redirect.github.com/siderolabs/talos/commit/09b3ad577) feat: update containerd to 2.1.2 - [@​`0767dd0`](https://redirect.github.com/siderolabs/talos/commit/0767dd07b) chore: enable --with-siderolink-agent on Darwin - [@​`9642198`](https://redirect.github.com/siderolabs/talos/commit/9642198d7) fix: userspace wireguard library overrides - [@​`208f076`](https://redirect.github.com/siderolabs/talos/commit/208f0763e) chore: fix talosctl build on non-Linux hosts - [@​`87421af`](https://redirect.github.com/siderolabs/talos/commit/87421af87) docs: expand documentation description - [@​`d32ccfa`](https://redirect.github.com/siderolabs/talos/commit/d32ccfa59) feat: implement swap support - [@​`8f5cf81`](https://redirect.github.com/siderolabs/talos/commit/8f5cf81db) docs: update kvm documentation - [@​`8e84c8b`](https://redirect.github.com/siderolabs/talos/commit/8e84c8b0f) fix: nil pointer deref in quirk - [@​`6e74a36`](https://redirect.github.com/siderolabs/talos/commit/6e74a3676) docs: aad ery basic details on how to run on scaleway - [@​`260d1bc`](https://redirect.github.com/siderolabs/talos/commit/260d1bc9a) fix: correctl close encrypted volumes - [@​`034ef42`](https://redirect.github.com/siderolabs/talos/commit/034ef42af) fix: update siderolink library for wgtunnel panic fix - [@​`3035744`](https://redirect.github.com/siderolabs/talos/commit/3035744a8) fix: correctly predict interface name on darwin - [@​`cfcfad3`](https://redirect.github.com/siderolabs/talos/commit/cfcfad3c4) chore: move `checkUnknownKeys` function to `github.com/siderolabs/gen` - [@​`5ecc53c`](https://redirect.github.com/siderolabs/talos/commit/5ecc53c69) docs: add macos section to developing-talos.md - [@​`b5b3530`](https://redirect.github.com/siderolabs/talos/commit/b5b35307f) chore: update Go to 1.24.4 - [@​`fde772d`](https://redirect.github.com/siderolabs/talos/commit/fde772d8d) feat: update Flannel to 0.27.0 - [@​`81ca279`](https://redirect.github.com/siderolabs/talos/commit/81ca27949) release(v1.11.0-alpha.1): prepare release - [@​`58a868e`](https://redirect.github.com/siderolabs/talos/commit/58a868e68) chore: fix renovate config, add release-gate label - [@​`a59aaee`](https://redirect.github.com/siderolabs/talos/commit/a59aaee84) feat: bump dependencies, Linux 6.12.31 - [@​`e954ee3`](https://redirect.github.com/siderolabs/talos/commit/e954ee30a) docs: typo correction: LongHorn -> Longhorn - [@​`aab0533`](https://redirect.github.com/siderolabs/talos/commit/aab053394) fix: mashal resource byte slices as strings in YAML - [@​`c7d4191`](https://redirect.github.com/siderolabs/talos/commit/c7d4191e7) fix: rework the way CRI config generation is waited for - [@​`0114183`](https://redirect.github.com/siderolabs/talos/commit/0114183de) docs: update `lastRelease` to 1.10.3 - [@​`938b076`](https://redirect.github.com/siderolabs/talos/commit/938b0760a) docs: update issue template - [@​`2a7b735`](https://redirect.github.com/siderolabs/talos/commit/2a7b735b2) feat: drop IMA support - [@​`2d5a805`](https://redirect.github.com/siderolabs/talos/commit/2d5a805b0) fix: typo in DiscoverdVolume spec - [@​`60c12ba`](https://redirect.github.com/siderolabs/talos/commit/60c12bad9) feat: support nocloud include url userdata directive - [@​`0fd622c`](https://redirect.github.com/siderolabs/talos/commit/0fd622c82) fix(talosctl): correct --help output for dashboard command - [@​`a90c936`](https://redirect.github.com/siderolabs/talos/commit/a90c936a1) feat: support qemu provisioner on darwin - [@​`5322ca0`](https://redirect.github.com/siderolabs/talos/commit/5322ca0d3) docs: update overlay docs - [@​`a60b632`](https://redirect.github.com/siderolabs/talos/commit/a60b6322d) fix(ci): drop nebula from extensions test - [@​`dbbb59a`](https://redirect.github.com/siderolabs/talos/commit/dbbb59a67) docs: add note for default `dataDirHostPath` for Rook - [@​`e260543`](https://redirect.github.com/siderolabs/talos/commit/e26054378) docs: macos qemu provider - [@​`5d02240`](https://redirect.github.com/siderolabs/talos/commit/5d0224093) docs: use the cilium-cli image repo in the job installation manifest - [@​`ff80e4c`](https://redirect.github.com/siderolabs/talos/commit/ff80e4cca) docs: fix CIDR name - [@​`a5fd15e`](https://redirect.github.com/siderolabs/talos/commit/a5fd15e8b) fix(ci): reproducibility test - [@​`8f8963e`](https://redirect.github.com/siderolabs/talos/commit/8f8963e50) docs: update Nexxen brand - [@​`c6b8687`](https://redirect.github.com/siderolabs/talos/commit/c6b86872d) fix(ci): iso reproducibility file permissions - [@​`995a1de`](https://redirect.github.com/siderolabs/talos/commit/995a1dec4) chore: add a check for unsupported darwin flags - [@​`9db5d0c`](https://redirect.github.com/siderolabs/talos/commit/9db5d0c97) fix: nocloud metadata for hostname - [@​`3cf3256`](https://redirect.github.com/siderolabs/talos/commit/3cf325654) feat: modularize more arm64 kernel - [@​`3524745`](https://redirect.github.com/siderolabs/talos/commit/3524745cc) fix: allow any PKI in Talos API - [@​`f438cdb`](https://redirect.github.com/siderolabs/talos/commit/f438cdb09) chore: use custom dhcpd server on macos qemu - [@​`11c17fb`](https://redirect.github.com/siderolabs/talos/commit/11c17fb9a) fix: metal-iso reproducibility - [@​`7fcb89e`](https://redirect.github.com/siderolabs/talos/commit/7fcb89ee3) chore: add darwin vmnet qemu support - [@​`fc12373`](https://redirect.github.com/siderolabs/talos/commit/fc1237343) chore: clean up `/usr/bin` - [@​`b551f32`](https://redirect.github.com/siderolabs/talos/commit/b551f32ce) feat: update containerd to v2.1.1 - [@​`67f4154`](https://redirect.github.com/siderolabs/talos/commit/67f4154f9) docs: update disk-management.md - [@​`0cb137a`](https://redirect.github.com/siderolabs/talos/commit/0cb137ad7) fix: make disk size check work on old Talos - [@​`7c057ed`](https://redirect.github.com/siderolabs/talos/commit/7c057edd5) fix: use vmdk-convert istead of qemu-img to create VMDK for OVA files - [@​`cd618da`](https://redirect.github.com/siderolabs/talos/commit/cd618dad0) chore: update the go-blockdevice package - [@​`0b99631`](https://redirect.github.com/siderolabs/talos/commit/0b99631a0) fix: bump apid memory limit - [@​`5451f35`](https://redirect.github.com/siderolabs/talos/commit/5451f35b1) docs: update virtualbox - [@​`bd4d202`](https://redirect.github.com/siderolabs/talos/commit/bd4d202a5) refactor: bring owned.State from COSI to simplify tests - [@​`0b96df5`](https://redirect.github.com/siderolabs/talos/commit/0b96df574) feat: update containerd to 2.1.0 - [@​`e1a9391`](https://redirect.github.com/siderolabs/talos/commit/e1a939144) docs: fix formatting in disk encryption - [@​`7a817df`](https://redirect.github.com/siderolabs/talos/commit/7a817df1c) docs: fix typo - [@​`f35b213`](https://redirect.github.com/siderolabs/talos/commit/f35b213b2) test: fix DHCP unicast failures in QEMU environment - [@​`7064bbf`](https://redirect.github.com/siderolabs/talos/commit/7064bbf05) docs: fix vmware factory URL - [@​`78c33bc`](https://redirect.github.com/siderolabs/talos/commit/78c33bcdb) feat: update default Kubernetes to v1.33.1 - [@​`da67952`](https://redirect.github.com/siderolabs/talos/commit/da6795266) fix: disable automatic MAC assignment to bridge interfaces - [@​`ca34adf`](https://redirect.github.com/siderolabs/talos/commit/ca34adf58) chore(ci): drop azure keys - [@​`ea5de19`](https://redirect.github.com/siderolabs/talos/commit/ea5de19fa) fix: selinux detection - [@​`52c76ea`](https://redirect.github.com/siderolabs/talos/commit/52c76ea3a) fix: consistently apply dynamic grpc proxy dialer - [@​`aa9569e`](https://redirect.github.com/siderolabs/talos/commit/aa9569e5d) chore: refactor cluster create cmd flags - [@​`1161faa`](https://redirect.github.com/siderolabs/talos/commit/1161faa05) docs: fix typo in Cilium docs - [@​`164745e`](https://redirect.github.com/siderolabs/talos/commit/164745e44) docs: remove `preserve` flag mention in upgrade notes - [@​`9a2ecba`](https://redirect.github.com/siderolabs/talos/commit/9a2ecbaaf) fix: makefile operating system param - [@​`118aa69`](https://redirect.github.com/siderolabs/talos/commit/118aa69d6) chore: update cloud-image-uploader dependencies - [@​`acdd721`](https://redirect.github.com/siderolabs/talos/commit/acdd721cf) chore: dump qemu pachine ipam records on darwin - [@​`bb90945`](https://redirect.github.com/siderolabs/talos/commit/bb9094534) chore: rotate aws iam credentials - [@​`0bfa4ae`](https://redirect.github.com/siderolabs/talos/commit/0bfa4ae1b) chore: update deps for cloud-image-uploader - [@​`956d7c7`](https://redirect.github.com/siderolabs/talos/commit/956d7c71b) chore: update sops keys - [@​`e2f819d`](https://redirect.github.com/siderolabs/talos/commit/e2f819d88) test: fix the process runner log collection - [@​`fdac4cf`](https://redirect.github.com/siderolabs/talos/commit/fdac4cfb9) fix: upgrade go-kubernetes for DRA flag bug - [@​`09d88e1`](https://redirect.github.com/siderolabs/talos/commit/09d88e1e8) test: fix some flaky tests - [@​`ec1f41a`](https://redirect.github.com/siderolabs/talos/commit/ec1f41a94) chore: make qemu config server bind work on darwin - [@​`980f4d2`](https://redirect.github.com/siderolabs/talos/commit/980f4d2b9) feat: bump dependencies - [@​`9525933`](https://redirect.github.com/siderolabs/talos/commit/95259337e) fix: k8s 1.32->1.33 upgrade check - [@​`c3c326b`](https://redirect.github.com/siderolabs/talos/commit/c3c326b40) fix: improve volume mounter automaton - [@​`918b94d`](https://redirect.github.com/siderolabs/talos/commit/918b94d9a) refactor: rewrite disk size check - [@​`ab7e693`](https://redirect.github.com/siderolabs/talos/commit/ab7e693d7) chore: make qemu lb address bind work on darwin - [@​`97ceab0`](https://redirect.github.com/siderolabs/talos/commit/97ceab001) fix: multiple logic issues in platform network config controller - [@​`46349a9`](https://redirect.github.com/siderolabs/talos/commit/46349a9df) docs: remove azure image gallery instructions - [@​`0cfcdd3`](https://redirect.github.com/siderolabs/talos/commit/0cfcdd3de) docs: fix search on base talos.dev - [@​`78646b4`](https://redirect.github.com/siderolabs/talos/commit/78646b4e0) docs: add registryd debug command - [@​`c6824c2`](https://redirect.github.com/siderolabs/talos/commit/c6824c211) fix: deny apply config requests without v1alpha1 in "normal" mode - [@​`7df0408`](https://redirect.github.com/siderolabs/talos/commit/7df0408e4) fix: interactive installer config gen - [@​`881c5d6`](https://redirect.github.com/siderolabs/talos/commit/881c5d62b) fix: suppress duplicate platform config updates - [@​`66d7788`](https://redirect.github.com/siderolabs/talos/commit/66d77888e) fix: replace downloaded asset paths correctly in cluster create cmd - [@​`6bd6c9b`](https://redirect.github.com/siderolabs/talos/commit/6bd6c9b5a) fix: generate iso greater than 4 gig - [@​`ac14032`](https://redirect.github.com/siderolabs/talos/commit/ac140324e) fix: skip PCR extension if TPM1.2 is found - [@​`09ef1f8`](https://redirect.github.com/siderolabs/talos/commit/09ef1f8a4) fix: ignore http proxy on grpc socket dial - [@​`22a72dc`](https://redirect.github.com/siderolabs/talos/commit/22a72dc80) chore: split options between three structs - [@​`22c34a5`](https://redirect.github.com/siderolabs/talos/commit/22c34a50f) fix(ci): provision cron jobs - [@​`b3b20ef`](https://redirect.github.com/siderolabs/talos/commit/b3b20eff3) fix: containerd crashing with sigsegv - [@​`f7891c3`](https://redirect.github.com/siderolabs/talos/commit/f7891c301) chore: calculate vmnet interface name preemptively - [@​`ae87edf`](https://redirect.github.com/siderolabs/talos/commit/ae87edffb) fix: drop libseccomp from rootfs - [@​`f74a805`](https://redirect.github.com/siderolabs/talos/commit/f74a805bb) fix: do correct backoff for nocloud reconcile - [@​`01bb294`](https://redirect.github.com/siderolabs/talos/commit/01bb294af) fix(ci): provision tests - [@​`e4945be`](https://redirect.github.com/siderolabs/talos/commit/e4945be3b) docs: add registryd debug command - [@​`d8c670a`](https://redirect.github.com/siderolabs/talos/commit/d8c670ad3) release(v1.11.0-alpha.0): prepare release - [@​`ace44ea`](https://redirect.github.com/siderolabs/talos/commit/ace44ea61) test: update hydrophone to 0.7.0 - [@​`3a11636`](https://redirect.github.com/siderolabs/talos/commit/3a1163692) chore: cross platform qemu preflight checks - [@​`7914fb1`](https://redirect.github.com/siderolabs/talos/commit/7914fb104) chore: move the create command to it's own package - [@​`c8e6196`](https://redirect.github.com/siderolabs/talos/commit/c8e619608) chore: prepare for release 1.11 - [@​`1299aaa`](https://redirect.github.com/siderolabs/talos/commit/1299aaa45) chore(ci): add extensions test for Youki runtime - [@​`e50ceb2`](https://redirect.github.com/siderolabs/talos/commit/e50ceb221) docs: activate Talos 1.10 docs - [@​`9d12aae`](https://redirect.github.com/siderolabs/talos/commit/9d12aaeb1) test: improve config patch test - [@​`106a656`](https://redirect.github.com/siderolabs/talos/commit/106a656b6) chore: make qemu provider build on darwin - [@​`8013aa0`](https://redirect.github.com/siderolabs/talos/commit/8013aa06c) test: replace platform metadata test - [@​`2b89c28`](https://redirect.github.com/siderolabs/talos/commit/2b89c2810) fix: relax etcd APIs RBAC requirements - [@​`1e67758`](https://redirect.github.com/siderolabs/talos/commit/1e677587c) fix: preserve kubelet image suffix - [@​`62ab8af`](https://redirect.github.com/siderolabs/talos/commit/62ab8af45) fix: disk image generation with image cache - [@​`d60626f`](https://redirect.github.com/siderolabs/talos/commit/d60626f01) fix: handle encryption type mismatch - [@​`a9109eb`](https://redirect.github.com/siderolabs/talos/commit/a9109ebd0) feat: allow SideroLink unique token in machine config - [@​`2ff3a6e`](https://redirect.github.com/siderolabs/talos/commit/2ff3a6e40) feat(kernel): add bcache kernel module to core talos - [@​`fa95a21`](https://redirect.github.com/siderolabs/talos/commit/fa95a2146) fix(ci): bios provision test - [@​`f7c5b86`](https://redirect.github.com/siderolabs/talos/commit/f7c5b86be) fix: sync PCR extension with volume provisioning lifecycle - [@​`f90c794`](https://redirect.github.com/siderolabs/talos/commit/f90c79474) chore: show bound driver in pcidevices info - [@​`8db3462`](https://redirect.github.com/siderolabs/talos/commit/8db34624c) fix: handle correctly changing platform network config - [@​`77c7a07`](https://redirect.github.com/siderolabs/talos/commit/77c7a075b) feat: update Kubernetes to 1.33.0 - [@​`74f0c48`](https://redirect.github.com/siderolabs/talos/commit/74f0c48c7) feat: add version compatibility for Talos 1.11 - [@​`c4fb7da`](https://redirect.github.com/siderolabs/talos/commit/c4fb7dad0) fix: force DNS runner shutdown on timeout - [@​`c49b483`](https://redirect.github.com/siderolabs/talos/commit/c49b4836e) docs: hetzner: add note about public iso - [@​`16ea2b1`](https://redirect.github.com/siderolabs/talos/commit/16ea2b113) docs: add what is new for 1.10 - [@​`be3f0c0`](https://redirect.github.com/siderolabs/talos/commit/be3f0c018) fix: fix Gvisor tests with containerd patch - [@​`37db132`](https://redirect.github.com/siderolabs/talos/commit/37db132b3) chore(ci): add provision test with bios - [@​`ec60b70`](https://redirect.github.com/siderolabs/talos/commit/ec60b70e7) fix: set media type to OCI for image cache layer - [@​`a471eb3`](https://redirect.github.com/siderolabs/talos/commit/a471eb31b) feat: update Linux 6.12.24, containerd 2.0.5 - [@​`54ad5b8`](https://redirect.github.com/siderolabs/talos/commit/54ad5b872) fix: extension services logging to console - [@​`601f036`](https://redirect.github.com/siderolabs/talos/commit/601f036ba) docs: correct flannel extra args example - [@​`ae94377`](https://redirect.github.com/siderolabs/talos/commit/ae94377d1) feat: support encryption config for user volumes - [@​`9616f6e`](https://redirect.github.com/siderolabs/talos/commit/9616f6e8d) docs: add caveat for kubespan and host ports - [@​`a1d08a3`](https://redirect.github.com/siderolabs/talos/commit/a1d08a362) docs: fixes typo at OpenEBS Mayastor worker patches - [@​`a91e872`](https://redirect.github.com/siderolabs/talos/commit/a91e8726e) docs: add a dark theme - [@​`c76189c`](https://redirect.github.com/siderolabs/talos/commit/c76189c58) fix: grub EFI mount point - [@​`4ca985c`](https://redirect.github.com/siderolabs/talos/commit/4ca985c65) fix: grub efi platform install - [@​`b312602`](https://redirect.github.com/siderolabs/talos/commit/b31260281) docs: update storage.md - [@​`396a290`](https://redirect.github.com/siderolabs/talos/commit/396a29040) feat: add new SBCs - [@​`a902f65`](https://redirect.github.com/siderolabs/talos/commit/a902f6580) feat: update Flannel to v0.26.7 - [@​`2bbefec`](https://redirect.github.com/siderolabs/talos/commit/2bbefec1a) docs: use cache in preview - [@​`6028a8d`](https://redirect.github.com/siderolabs/talos/commit/6028a8d2d) docs: update kubeprism.md - [@​`e51a8ef`](https://redirect.github.com/siderolabs/talos/commit/e51a8ef8c) fix: prefer new `MountStatus` resource - [@​`d9c7e79`](https://redirect.github.com/siderolabs/talos/commit/d9c7e7946) docs: fix search - [@​`b32fa02`](https://redirect.github.com/siderolabs/talos/commit/b32fa029b) feat: update Kubernetes to 1.33.0-rc.1 - [@​`f0ea478`](https://redirect.github.com/siderolabs/talos/commit/f0ea478cb) feat: support address priority - [@​`8cd3c8d`](https://redirect.github.com/siderolabs/talos/commit/8cd3c8dc7) test: fix NVIDIA OSS tests - [@​`62f2d27`](https://redirect.github.com/siderolabs/talos/commit/62f2d27cd) docs: update virtualbox.md - [@​`141326e`](https://redirect.github.com/siderolabs/talos/commit/141326ea3) docs: fix tabpane styling - [@​`134aa53`](https://redirect.github.com/siderolabs/talos/commit/134aa53cc) feat: update base CoreDNS code in host DNS to 1.12.1 </p> </details> ##### Changes since v1.11.0-beta.1 <details><summary>11 commits</summary> <p> - [@​`f5d700a`](https://redirect.github.com/siderolabs/talos/commit/f5d700a0c) release(v1.11.0-beta.2): prepare release - [@​`6186d18`](https://redirect.github.com/siderolabs/talos/commit/6186d1821) chore: disable vulncheck temporarily - [@​`e4a2a8d`](https://redirect.github.com/siderolabs/talos/commit/e4a2a8d9c) feat: update default Kubernetes to v1.34.0-rc.1 - [@​`4c4236d`](https://redirect.github.com/siderolabs/talos/commit/4c4236d7e) feat: update Go to 1.24.6 - [@​`a01a390`](https://redirect.github.com/siderolabs/talos/commit/a01a390f6) chore: add deadcode elimination linter - [@​`49fad0e`](https://redirect.github.com/siderolabs/talos/commit/49fad0ede) feat: add a pause function to dashboard - [@​`21e8e9d`](https://redirect.github.com/siderolabs/talos/commit/21e8e9dc9) refactor: replace containerd/containerd/v2 module for proper DCE - [@​`bbd01b6`](https://redirect.github.com/siderolabs/talos/commit/bbd01b6b7) refactor: fix deadcode elimination with godbus - [@​`e8d9c81`](https://redirect.github.com/siderolabs/talos/commit/e8d9c81cc) refactor: stop using `text/template` in `machined` code paths - [@​`8558966`](https://redirect.github.com/siderolabs/talos/commit/85589662a) fix: unmarshal encryption STATE from META - [@​`f10a626`](https://redirect.github.com/siderolabs/talos/commit/f10a626d2) docs: add what is new notes for 1.11 </p> </details> ##### Changes from siderolabs/crypto <details><summary>5 commits</summary> <p> - [siderolabs/crypto@`62a079b`](https://redirect.github.com/siderolabs/crypto/commit/62a079b) fix: update TLS config, add tests for TLS interactions - [siderolabs/crypto@`c2b4e26`](https://redirect.github.com/siderolabs/crypto/commit/c2b4e26) fix: remove code duplication and fix [`Ed25511`](https://redirect.github.com/siderolabs/talos/commit/Ed255119) CA generation - [siderolabs/crypto@`2a07632`](https://redirect.github.com/siderolabs/crypto/commit/2a07632) fix: enforce FIPS-140-3 compliance - [siderolabs/crypto@`17107ae`](https://redirect.github.com/siderolabs/crypto/commit/17107ae) fix: add generic CSR generator and OpenSSL interop - [siderolabs/crypto@`53659fc`](https://redirect.github.com/siderolabs/crypto/commit/53659fc) refactor: split into files </p> </details> ##### Changes from siderolabs/discovery-client <details><summary>3 commits</summary> <p> - [siderolabs/discovery-client@`0bffa6f`](https://redirect.github.com/siderolabs/discovery-client/commit/0bffa6f) fix: allow TLS config to be passed as a function - [siderolabs/discovery-client@`09c6687`](https://redirect.github.com/siderolabs/discovery-client/commit/09c6687) chore: fix project name in release.toml - [siderolabs/discovery-client@`71b0c6d`](https://redirect.github.com/siderolabs/discovery-client/commit/71b0c6d) fix: add FIPS-140-3 strict compliance </p> </details> ##### Changes from siderolabs/gen <details><summary>5 commits</summary> <p> - [siderolabs/gen@`044d921`](https://redirect.github.com/siderolabs/gen/commit/044d921) feat: add xslices.Deduplicate - [siderolabs/gen@`dcb2b74`](https://redirect.github.com/siderolabs/gen/commit/dcb2b74) feat: add `panicsafe` package - [siderolabs/gen@`b36ee43`](https://redirect.github.com/siderolabs/gen/commit/b36ee43) feat: make `xyaml.CheckUnknownKeys` public - [siderolabs/gen@`3e319e7`](https://redirect.github.com/siderolabs/gen/commit/3e319e7) feat: implement `xyaml.UnmarshalStrict` - [siderolabs/gen@`7c0324f`](https://redirect.github.com/siderolabs/gen/commit/7c0324f) chore: future-proof HashTrieMap </p> </details> ##### Changes from siderolabs/go-circular <details><summary>1 commit</summary> <p> - [siderolabs/go-circular@`5b39ef8`](https://redirect.github.com/siderolabs/go-circular/commit/5b39ef8) fix: do not log error if chunk zero was never written </p> </details> ##### Changes from siderolabs/go-kubernetes <details><summary>4 commits</summary> <p> - [siderolabs/go-kubernetes@`7887034`](https://redirect.github.com/siderolabs/go-kubernetes/commit/7887034) feat: add checks for Kubernetes 1.34 removals - [siderolabs/go-kubernetes@`657a74b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/657a74b) feat: prepare for Kubernetes 1.34 - [siderolabs/go-kubernetes@`9070be4`](https://redirect.github.com/siderolabs/go-kubernetes/commit/9070be4) fix: remove DynamicResourceAllocation feature gate - [siderolabs/go-kubernetes@`8cb588b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/8cb588b) fix: k8s 1.32->1.33 upgrade check </p> </details> ##### Changes from siderolabs/go-pcidb <details><summary>1 commit</summary> <p> - [siderolabs/go-pcidb@`9baca16`](https://redirect.github.com/siderolabs/go-pcidb/commit/9baca16) feat: update PCI DB to the latest version </p> </details> ##### Changes from siderolabs/pkgs <details><summary>60 commits</summary> <p> - [siderolabs/pkgs@`a150a75`](https://redirect.github.com/siderolabs/pkgs/commit/a150a75) feat: update Go to 1.24.6 - [siderolabs/pkgs@`a94734c`](https://redirect.github.com/siderolabs/pkgs/commit/a94734c) feat: update containerd to 2.1.4 - [siderolabs/pkgs@`662c5a4`](https://redirect.github.com/siderolabs/pkgs/commit/662c5a4) feat: enable [`F71808E`](https://redirect.github.com/siderolabs/talos/commit/F71808E) watchdog driver - [siderolabs/pkgs@`48afc2a`](https://redirect.github.com/siderolabs/pkgs/commit/48afc2a) fix: enable ISCSI IBFT - [siderolabs/pkgs@`ddb7b5e`](https://redirect.github.com/siderolabs/pkgs/commit/ddb7b5e) feat: update Linux to 6.12.40 - [siderolabs/pkgs@`5616981`](https://redirect.github.com/siderolabs/pkgs/commit/5616981) feat: enable bootloader control on amd64 - [siderolabs/pkgs@`4a840bc`](https://redirect.github.com/siderolabs/pkgs/commit/4a840bc) chore: allow more than one commit for a PR - [siderolabs/pkgs@`e2fbfb1`](https://redirect.github.com/siderolabs/pkgs/commit/e2fbfb1) feat: update tools/toolchain to 1.11.0 - [siderolabs/pkgs@`383bbb4`](https://redirect.github.com/siderolabs/pkgs/commit/383bbb4) feat: update NVIDIA production to 570.158.01 - [siderolabs/pkgs@`853cf3a`](https://redirect.github.com/siderolabs/pkgs/commit/853cf3a) feat: bump e2fsprogs, ipxe, kspp, tools - [siderolabs/pkgs@`a3f8281`](https://redirect.github.com/siderolabs/pkgs/commit/a3f8281) feat: update Linux to 6.12.38 - [siderolabs/pkgs@`8ed84c5`](https://redirect.github.com/siderolabs/pkgs/commit/8ed84c5) feat: refactor HW\_RANDOM configuration - [siderolabs/pkgs@`108099f`](https://redirect.github.com/siderolabs/pkgs/commit/108099f) feat: enable AMD encrypted memory - [siderolabs/pkgs@`c97d25e`](https://redirect.github.com/siderolabs/pkgs/commit/c97d25e) fix: remove erroneous PURLs - [siderolabs/pkgs@`90f7c65`](https://redirect.github.com/siderolabs/pkgs/commit/90f7c65) fix: bump bldr - [siderolabs/pkgs@`a24b40e`](https://redirect.github.com/siderolabs/pkgs/commit/a24b40e) feat: update Linux to 6.12.36 and firmware - [siderolabs/pkgs@`2537e61`](https://redirect.github.com/siderolabs/pkgs/commit/2537e61) docs: more SBOM metadata to cover whole Talos - [siderolabs/pkgs@`0f4cbbc`](https://redirect.github.com/siderolabs/pkgs/commit/0f4cbbc) feat: update dependencies - [siderolabs/pkgs@`9cec45c`](https://redirect.github.com/siderolabs/pkgs/commit/9cec45c) feat: add SBOM metadata for some packages - [siderolabs/pkgs@`03bb94c`](https://redirect.github.com/siderolabs/pkgs/commit/03bb94c) feat: update dependencies - [siderolabs/pkgs@`c613abd`](https://redirect.github.com/siderolabs/pkgs/commit/c613abd) fix: iptables url - [siderolabs/pkgs@`fae59df`](https://redirect.github.com/siderolabs/pkgs/commit/fae59df) fix: download and copy hailo8 firmware - [siderolabs/pkgs@`fadf1e2`](https://redirect.github.com/siderolabs/pkgs/commit/fadf1e2) feat: update containerd to 2.1.2 - [siderolabs/pkgs@`a0b0da1`](https://redirect.github.com/siderolabs/pkgs/commit/a0b0da1) feat: enable io.latency cgroup controller - [siderolabs/pkgs@`0aaa07a`](https://redirect.github.com/siderolabs/pkgs/commit/0aaa07a) feat: add hailort package - [siderolabs/pkgs@`8555e94`](https://redirect.github.com/siderolabs/pkgs/commit/8555e94) chore: use ftpmirror for GNU sources - [siderolabs/pkgs@`9fbe2b4`](https://redirect.github.com/siderolabs/pkgs/commit/9fbe2b4) feat: update Go to 1.24.4 - [siderolabs/pkgs@`79bfa9e`](https://redirect.github.com/siderolabs/pkgs/commit/79bfa9e) feat: update NVIDIA drivers to 570.148.08 - [siderolabs/pkgs@`c8b8bd8`](https://redirect.github.com/siderolabs/pkgs/commit/c8b8bd8) feat: bump dependencies - [siderolabs/pkgs@`54bf03e`](https://redirect.github.com/siderolabs/pkgs/commit/54bf03e) feat: update Linux to 6.12.31 - [siderolabs/pkgs@`93b3aaa`](https://redirect.github.com/siderolabs/pkgs/commit/93b3aaa) feat: add patch for CephFS IMA performance regression - [siderolabs/pkgs@`ebd6627`](https://redirect.github.com/siderolabs/pkgs/commit/ebd6627) feat: disable IMA support - [siderolabs/pkgs@`8aad53b`](https://redirect.github.com/siderolabs/pkgs/commit/8aad53b) feat: add CONFIG\_NFT\_CONNLIMIT to kernel - [siderolabs/pkgs@`7a299fa`](https://redirect.github.com/siderolabs/pkgs/commit/7a299fa) feat: update Linux to 6.12.30 - [siderolabs/pkgs@`8c4603e`](https://redirect.github.com/siderolabs/pkgs/commit/8c4603e) feat: move more configs to modules on arm64 - [siderolabs/pkgs@`7b1183b`](https://redirect.github.com/siderolabs/pkgs/commit/7b1183b) feat(kernel): enable IB user-space management and RDMA - [siderolabs/pkgs@`1b1430e`](https://redirect.github.com/siderolabs/pkgs/commit/1b1430e) fix: drop pcre2 binaries - [siderolabs/pkgs@`487610c`](https://redirect.github.com/siderolabs/pkgs/commit/487610c) fix: drop broken symlinks - [siderolabs/pkgs@`f31d518`](https://redirect.github.com/siderolabs/pkgs/commit/f31d518) fix: clean up some binaries - [siderolabs/pkgs@`0f74b9b`](https://redirect.github.com/siderolabs/pkgs/commit/0f74b9b) feat: update containerd to v2.1.1 - [siderolabs/pkgs@`89b4037`](https://redirect.github.com/siderolabs/pkgs/commit/89b4037) fix: tenstorrent pkg name - [siderolabs/pkgs@`a14b544`](https://redirect.github.com/siderolabs/pkgs/commit/a14b544) chore: drop qemu-tools vmdk support - [siderolabs/pkgs@`2563e47`](https://redirect.github.com/siderolabs/pkgs/commit/2563e47) feat: add tenstorrent package - [siderolabs/pkgs@`2a1c42f`](https://redirect.github.com/siderolabs/pkgs/commit/2a1c42f) fix(renovate): flannel config - [siderolabs/pkgs@`bfa69a8`](https://redirect.github.com/siderolabs/pkgs/commit/bfa69a8) feat: add open-vmdk package - [siderolabs/pkgs@`9f1ba1f`](https://redirect.github.com/siderolabs/pkgs/commit/9f1ba1f) fix: bring back updated containerd gvisor patch - [siderolabs/pkgs@`1567cb6`](https://redirect.github.com/siderolabs/pkgs/commit/1567cb6) feat: update Linux 6.12.28, firmware - [siderolabs/pkgs@`9bc66e6`](https://redirect.github.com/siderolabs/pkgs/commit/9bc66e6) feat: update containerd to 2.1.0 - [siderolabs/pkgs@`c6b54e0`](https://redirect.github.com/siderolabs/pkgs/commit/c6b54e0) feat: enable zswap - [siderolabs/pkgs@`4cd7084`](https://redirect.github.com/siderolabs/pkgs/commit/4cd7084) feat: update dependencies - [siderolabs/pkgs@`a3fcbf8`](https://redirect.github.com/siderolabs/pkgs/commit/a3fcbf8) feat(kernel): enable panthor driver - [siderolabs/pkgs@`74d1665`](https://redirect.github.com/siderolabs/pkgs/commit/74d1665) feat: update ZFS to 2.3.2 - [siderolabs/pkgs@`ddc866b`](https://redirect.github.com/siderolabs/pkgs/commit/ddc866b) feat: update Linux to 6.12.27 - [siderolabs/pkgs@`a347857`](https://redirect.github.com/siderolabs/pkgs/commit/a347857) fix: build containerd with Go 1.23 - [siderolabs/pkgs@`74da85c`](https://redirect.github.com/siderolabs/pkgs/commit/74da85c) fix: containerd build doesn't need seccomp - [siderolabs/pkgs@`4effa05`](https://redirect.github.com/siderolabs/pkgs/commit/4effa05) fix: downgrade libseccomp to 2.5.5 - [siderolabs/pkgs@`9cea00b`](https://redirect.github.com/siderolabs/pkgs/commit/9cea00b) feat: update Linux to 6.12.25 - [siderolabs/pkgs@`cb108a5`](https://redirect.github.com/siderolabs/pkgs/commit/cb108a5) feat(kernel): enable bcache module - [siderolabs/pkgs@`d042432`](https://redirect.github.com/siderolabs/pkgs/commit/d042432) fix: backport sandbox fix for Gvisor - [siderolabs/pkgs@`fa625dc`](https://redirect.github.com/siderolabs/pkgs/commit/fa625dc) feat: update Linux 6.12.24, containerd 2.0.5 </p> </details> ##### Changes from siderolabs/siderolink <details><summary>3 commits</summary> <p> - [siderolabs/siderolink@`5f46f65`](https://redirect.github.com/siderolabs/siderolink/commit/5f46f65) feat: handle panics in goroutines - [siderolabs/siderolink@`d09ff45`](https://redirect.github.com/siderolabs/siderolink/commit/d09ff45) fix: race in wait value - [siderolabs/siderolink@`d2a79e0`](https://redirect.github.com/siderolabs/siderolink/commit/d2a79e0) fix: clean up device on failure </p> </details> ##### Changes from siderolabs/tools <details><summary>11 commits</summary> <p> - [siderolabs/tools@`330f478`](https://redirect.github.com/siderolabs/tools/commit/330f478) feat: update Go to 1.24.6 - [siderolabs/tools@`1d451f3`](https://redirect.github.com/siderolabs/tools/commit/1d451f3) feat: update toolchain to 1.11.0 - [siderolabs/tools@`650b916`](https://redirect.github.com/siderolabs/tools/commit/650b916) chore: bump toolchain, update names in SBOM - [siderolabs/tools@`594704b`](https://redirect.github.com/siderolabs/tools/commit/594704b) feat: bump dependencies - [siderolabs/tools@`4818702`](https://redirect.github.com/siderolabs/tools/commit/4818702) docs: add SBOM metadata for packages copied to pkgs - [siderolabs/tools@`542a03c`](https://redirect.github.com/siderolabs/tools/commit/542a03c) feat: update dependencies - [siderolabs/tools@`0554e87`](https://redirect.github.com/siderolabs/tools/commit/0554e87) chore: use ftpmirror for GNU sources - [siderolabs/tools@`1dfd14b`](https://redirect.github.com/siderolabs/tools/commit/1dfd14b) feat: update Go to 1.24.4 - [siderolabs/tools@`af3fd64`](https://redirect.github.com/siderolabs/tools/commit/af3fd64) feat: update dependencies - [siderolabs/tools@`e35234b`](https://redirect.github.com/siderolabs/tools/commit/e35234b) feat: update dependencies - [siderolabs/tools@`c96a4e6`](https://redirect.github.com/siderolabs/tools/commit/c96a4e6) chore: update toolchain to the latest version </p> </details> ##### Dependency Changes - **cloud.google.com/go/compute/metadata** v0.6.0 -> v0.7.0 - **github.com/Azure/azure-sdk-for-go/sdk/azcore** v1.18.0 -> v1.18.1 - **github.com/Azure/azure-sdk-for-go/sdk/azidentity** v1.9.0 -> v1.10.1 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates** v1.3.1 -> v1.4.0 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys** v1.3.1 -> v1.4.0 - **github.com/aws/aws-sdk-go-v2/config** v1.29.14 -> v1.29.17 - **github.com/aws/aws-sdk-go-v2/feature/ec2/imds** v1.16.30 -> v1.16.32 - **github.com/aws/aws-sdk-go-v2/service/kms** v1.38.3 -> v1.41.2 - **github.com/aws/smithy-go** v1.22.3 -> v1.22.4 - **github.com/containerd/containerd/api** v1.8.0 -> v1.9.0 - **github.com/containerd/containerd/v2** v2.0.5 -> v2.1.4 - **github.com/containernetworking/plugins** v1.6.2 -> v1.7.1 - **github.com/cosi-project/runtime** v0.10.2 -> v1.10.7 - **github.com/detailyang/go-fallocate** [`432fa64`](https://redirect.github.com/siderolabs/talos/commit/432fa640bd2e) ***new*** - **github.com/docker/cli** v28.0.4 -> v28.3.3 - **github.com/docker/docker** v28.0.4 -> v28.3.3 - **github.com/equinix-ms/go-vmw-guestrpc** v0.1.1 ***new*** - **github.com/foxboron/go-uefi** [`69fb7db`](https://redirect.github.com/siderolabs/talos/commit/69fb7dba244f) -> [`a3183a1`](https://redirect.github.com/siderolabs/talos/commit/a3183a1bfc84) - **github.com/g0rbe/go-chattr** v1.0.1 ***new*** - **github.com/google/cadvisor** v0.52.1 -> v0.53.0 - **github.com/google/cel-go** v0.24.1 -> v0.26.0 - **github.com/google/go-containerregistry** v0.20.3 -> v0.20.6 - **github.com/google/go-tpm** v0.9.3 -> v0.9.5 - **github.com/grpc-ecosystem/go-grpc-middleware/v2** v2.3.1 -> v2.3.2 - **github.com/hetznercloud/hcloud-go/v2** v2.21.0 -> v2.22.0 - **github.com/jsimonetti/rtnetlink/v2** v2.0.3 -> v2.0.5 - **github.com/klauspost/cpuid/v2** v2.2.10 -> v2.3.0 - **github.com/linode/go-metadata** v0.2.1 -> v0.2.2 - **github.com/miekg/dns** v1.1.65 -> v1.1.67 - **github.com/pkg/xattr** v0.4.10 -> v0.4.12 - **github.com/prometheus/procfs** v0.16.0 -> v0.17.0 - **github.com/rivo/tview** [`949945f`](https://redirect.github.com/siderolabs/talos/commit/949945f8d922) -> [`a4a78f1`](https://redirect.github.com/siderolabs/talos/commit/a4a78f1e05cb) - **github.com/safchain/ethtool** v0.5.10 -> v0.6.1 - **github.com/scaleway/scaleway-sdk-go** v1.0.0-beta.33 -> v1.0.0-beta.34 - **github.com/siderolabs/crypto** v0.5.1 -> v0.6.3 - **github.com/siderolabs/discovery-client** v0.1.11 -> v0.1.13 - **github.com/siderolabs/gen** v0.8.0 -> v0.8.5 - **github.com/siderolabs/go-blockdevice/v2** v2.0.16 -> v2.0.19 - **github.com/siderolabs/go-circular** v0.2.2 -> v0.2.3 - **github.com/siderolabs/go </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:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
13799ec479 |
fix(deps): update kubernetes packages v0.34.0-beta.0 → v0.34.0-rc.1 (clustertool) (patch) (#38201)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [k8s.io/api](https://redirect.github.com/kubernetes/api) | `v0.34.0-beta.0` -> `v0.34.0-rc.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/apimachinery](https://redirect.github.com/kubernetes/apimachinery) | `v0.34.0-beta.0` -> `v0.34.0-rc.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/client-go](https://redirect.github.com/kubernetes/client-go) | `v0.34.0-beta.0` -> `v0.34.0-rc.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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.34.0-rc.1`](https://redirect.github.com/kubernetes/api/compare/v0.34.0-rc.0...v0.34.0-rc.1) [Compare Source](https://redirect.github.com/kubernetes/api/compare/v0.34.0-rc.0...v0.34.0-rc.1) ### [`v0.34.0-rc.0`](https://redirect.github.com/kubernetes/api/compare/v0.34.0-beta.0...v0.34.0-rc.0) [Compare Source](https://redirect.github.com/kubernetes/api/compare/v0.34.0-beta.0...v0.34.0-rc.0) </details> <details> <summary>kubernetes/apimachinery (k8s.io/apimachinery)</summary> ### [`v0.34.0-rc.1`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.34.0-rc.0...v0.34.0-rc.1) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.34.0-rc.0...v0.34.0-rc.1) ### [`v0.34.0-rc.0`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.34.0-beta.0...v0.34.0-rc.0) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.34.0-beta.0...v0.34.0-rc.0) </details> <details> <summary>kubernetes/client-go (k8s.io/client-go)</summary> ### [`v0.34.0-rc.1`](https://redirect.github.com/kubernetes/client-go/compare/v0.34.0-rc.0...v0.34.0-rc.1) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.34.0-rc.0...v0.34.0-rc.1) ### [`v0.34.0-rc.0`](https://redirect.github.com/kubernetes/client-go/compare/v0.34.0-beta.0...v0.34.0-rc.0) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.34.0-beta.0...v0.34.0-rc.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 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:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
eda1198dc0 |
fix(deps): update module golang.org/x/crypto v0.40.0 → v0.41.0 (clustertool) (#38214)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | golang.org/x/crypto | `v0.40.0` -> `v0.41.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
758c5dcd7e |
fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.11.0-beta.0 → v1.11.0-beta.1 (clustertool) (#38093)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | `v1.11.0-beta.0` -> `v1.11.0-beta.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.0-beta.1`](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0-beta.1) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-beta.0...v1.11.0-beta.1) #### [Talos 1.11.0-beta.1](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0-beta.1) (2025-08-04) Welcome to the v1.11.0-beta.1 release of Talos!\ *This is a pre-release of Talos* Please try out the release binaries and report any issues at https://github.com/siderolabs/talos/issues. ##### Azure Talos on Azure now defaults to MTU of 1400 bytes for the `eth0` interface to avoid packet fragmentation issues. The default MTU can be overriden with machine configuration. ##### Boot Talos increases the boot partition size to 2 GiB to accommodate larger images (with many system extensions included). ##### Kernel Command Line Talos now exposes the kernel command line as a KernelCmdline resource (`talosctl get cmdline`). ##### Disk Encryption Disk encryption for system volumes is now managed by the `VolumeConfig` machine configuration document. Legacy configuration in `valpha1` machine configuration is still supported. New per-key option `lockToSTATE` is added to the `VolumeConfig` document, which allows to lock the volume encryption key to the secret salt in the `STATE` volume. So, if the `STATE` volume is wiped or replaced, the volume encryption key will not be usable anymore. ##### Disk Wipe Talos now supports `talosctl disk wipe` command in maintenance mode (`talosctl disk wipe <disk> --insecure`). ##### Early Inline Configuration Talos now supports passing early inline configuration via the `talos.config.early` kernel parameter. This allows to pass the configuration before the platform config source is probed, which is useful for early boot configuration. The value of this parameter has same format as the `talos.config.inline` parameter, i.e. it should be base64 encoded and zstd-compressed. ##### ETCD downgrade API Added ETCD downgrade API mimicking the ETCD API and etcdctl interfaces. This API allows to downgrade ETCD cluster (storage format) to a previous version. ##### IMA support removed Talos now drops the IMA (Integrity Measurement Architecture) support. This feature was not used in Talos for any meaningful security purpose and has historically caused performance issues. See [#​11133](https://redirect.github.com/siderolabs/talos/issues/11133) for more details. ##### Kubernetes Version Validation Talos now validates Kubernetes version in the image submitted in the machine configuration. Previously this check was performed only on upgrade, but now it is consistently applied to upgrade, initial provisioning, and machine configuration updates. This implies that all image references should contain the tag, even if the image is pinned by digest. ##### Qemu provisioner on MacOS On MacOS `talosctl cluster create` command now supports the Qemu provisioner in addition to the Docker provisioner. ##### Kernel Modules Talosctl now returns the loaded modules, not the modules configured to be loaded (`talosctl get modules`). ##### SBOM Talos now publishes [Software Bill of Materials (SBOM)](https://www.talos.dev/v1.11/advanced/sbom/) in the SPDX format. ##### Swap Suport Talos now supports swap on block devices. This feature can be enable by using [SwapVolumeConfig](https://www.talos.dev/v1.11/reference/configuration/block/swapvolumeconfig/) document in the machine configuration. ##### Component Updates Linux: 6.12.40 Kubernetes: 1.34.0-beta.0 runc: 1.3.0 etcd: 3.6.4 containerd: 2.1.4 Flannel CNI plugin: 1.7.1-flannel1 Flannel: 0.27.2 CoreDNS: 1.12.2 xfsprogs: 6.15.0 systemd-udevd and systemd-boot: 257.7 lvm2: 2.03.33 cryptsetup: 2.8.0 Talos is built with Go 1.24.5. ##### VMware Talos VMWare platform now supports `arm64` architecture in addition to `amd64`. ##### Volumes Talos now supports [raw user volumes](https://www.talos.dev/v1.11/talos-guides/configuration/disk-management/raw/), allowing to allocate unformatted disk space as partition. In addition to that, support for [existing volumes](https://www.talos.dev/v1.11/talos-guides/configuration/disk-management/existing/) has been added, allowing to mount existing partitions without formatting them. ##### Zswap Support Talos now supports zswap, a compressed cache for swap pages. This feature can be enabled by using [ZswapConfig](https://www.talos.dev/v1.11/reference/configuration/block/zswapconfig/) document in the machine configuration. ##### Contributors - Andrey Smirnov - Noel Georgi - Dmitrii Sharshakov - Orzelius - Mateusz Urbanek - Orzelius - Justin Garrison - Spencer Smith - Steve Francis - Till Hoffmann - Utku Ozdemir - Andrew Longwill - Artem Chernyshev - Michael Robbins - Alexandre GV - Marat Bakeev - Olav Thoresen - Thibault VINCENT - Alvaro "Chamo" Linares Cabre - Amarachi Iheanacho - Brian Brookman - Bryan Mora - Clément Nussbaumer - Damien - David R - Dennis Marttinen - Dmitriy Matrenichev - Joakim Nohlgård - Jorik Jonker - Justin Seely - Luke Cousins - Marco Mihai Condrache - Markus Reiter - Martyn Ranyard - Michael Moerz - Mike - Oguz Kilcan - Tan Siewert - Tom Keur - jvanthienen-gluo - killcity - yashutanu ##### Changes <details><summary>247 commits</summary> <p> - [@​`5a15ce8`](https://redirect.github.com/siderolabs/talos/commit/5a15ce88b) release(v1.11.0-beta.1): prepare release - [@​`614ca2e`](https://redirect.github.com/siderolabs/talos/commit/614ca2e22) fix: one more attempt to fix volume mount race on restart - [@​`4b86dfe`](https://redirect.github.com/siderolabs/talos/commit/4b86dfe6f) feat: implement encryption locking to STATE - [@​`8ae76c3`](https://redirect.github.com/siderolabs/talos/commit/8ae76c320) feat: implement `talos.config.early` command line arg - [@​`19f8c60`](https://redirect.github.com/siderolabs/talos/commit/19f8c605e) docs: remove talos API flags from mgmt commands - [@​`fa1d6fe`](https://redirect.github.com/siderolabs/talos/commit/fa1d6fef8) feat: bootedentry resource - [@​`7dee810`](https://redirect.github.com/siderolabs/talos/commit/7dee810d4) fix: live reload of TLS client config for discovery client - [@​`a5dc224`](https://redirect.github.com/siderolabs/talos/commit/a5dc22466) fix: enforce minimum size on user volumes if not set explicitly - [@​`7836e92`](https://redirect.github.com/siderolabs/talos/commit/7836e924d) feat: update containerd to 2.1.4 - [@​`5012550`](https://redirect.github.com/siderolabs/talos/commit/5012550ec) feat: add [`F71808E`](https://redirect.github.com/siderolabs/talos/commit/F71808E) watchdog driver - [@​`10ddc4c`](https://redirect.github.com/siderolabs/talos/commit/10ddc4cdd) fix: grype scan - [@​`d108e0a`](https://redirect.github.com/siderolabs/talos/commit/d108e0a08) fix(ci): use a random suffix for ami names - [@​`5042255`](https://redirect.github.com/siderolabs/talos/commit/504225546) fix: issues with reading GPT - [@​`bdaf08d`](https://redirect.github.com/siderolabs/talos/commit/bdaf08dd4) feat: update PCI DB module to v0.3.2 - [@​`667dceb`](https://redirect.github.com/siderolabs/talos/commit/667dcebec) test: wait for service account test job longer - [@​`ae176a4`](https://redirect.github.com/siderolabs/talos/commit/ae176a4b7) feat: update etcd to 3.6.4 - [@​`201b680`](https://redirect.github.com/siderolabs/talos/commit/201b6801f) fix: issue with volume remount on service restart - [@​`2a91140`](https://redirect.github.com/siderolabs/talos/commit/2a911402b) chore: tag aws snapshots created via ci with the image name - [@​`d8bd84b`](https://redirect.github.com/siderolabs/talos/commit/d8bd84b56) docs: add SBOM documentation - [@​`7eec619`](https://redirect.github.com/siderolabs/talos/commit/7eec61993) feat: unify disk encryption configuration - [@​`4ff2bf9`](https://redirect.github.com/siderolabs/talos/commit/4ff2bf9e0) feat: update etcd to v3.5.22 - [@​`31a67d3`](https://redirect.github.com/siderolabs/talos/commit/31a67d379) fix: do not download artifacts for cron Grype scan - [@​`c6b6e0b`](https://redirect.github.com/siderolabs/talos/commit/c6b6e0bb3) docs: rewrite the getting started and prod docs for v1.10 and v1.11 - [@​`ca1c656`](https://redirect.github.com/siderolabs/talos/commit/ca1c656e6) chore(ci): add more nvidia test matrix - [@​`7a2e0f0`](https://redirect.github.com/siderolabs/talos/commit/7a2e0f068) feat: sync pkgs, update Linux to 6.12.40 - [@​`85e7989`](https://redirect.github.com/siderolabs/talos/commit/85e7989cf) release(v1.11.0-beta.0): prepare release - [@​`3039162`](https://redirect.github.com/siderolabs/talos/commit/3039162dc) feat: update Flannel to v0.27.2 - [@​`7e6052e`](https://redirect.github.com/siderolabs/talos/commit/7e6052e63) feat: increase boot partition to 2 GiB - [@​`cb7ca17`](https://redirect.github.com/siderolabs/talos/commit/cb7ca17bb) feat: implement ExistingVolumeConfig - [@​`a857c69`](https://redirect.github.com/siderolabs/talos/commit/a857c696f) chore(machined): remove deprecated Endpoints - [@​`a60101c`](https://redirect.github.com/siderolabs/talos/commit/a60101c55) fix: fill serial using helpers - [@​`5420e99`](https://redirect.github.com/siderolabs/talos/commit/5420e9979) refactor: output default selection for profiles - [@​`023a24c`](https://redirect.github.com/siderolabs/talos/commit/023a24cd4) test: use Grype to scan SBOM for vulnerabilities - [@​`96896fd`](https://redirect.github.com/siderolabs/talos/commit/96896fddb) chore: build less images by default - [@​`75b5dec`](https://redirect.github.com/siderolabs/talos/commit/75b5dec06) fix: sd-boot kexec with disk images - [@​`10546d6`](https://redirect.github.com/siderolabs/talos/commit/10546d6f8) feat: update Kuberentes 1.34.0-beta.0 - [@​`3f35b83`](https://redirect.github.com/siderolabs/talos/commit/3f35b83ae) fix: ignore absent extensions SBOM directory - [@​`9920da3`](https://redirect.github.com/siderolabs/talos/commit/9920da3e1) feat: add etcd downgrade API - [@​`c386822`](https://redirect.github.com/siderolabs/talos/commit/c38682279) feat: bump pkgs and tools, read extensions' SBOMs, rekres - [@​`9c0d270`](https://redirect.github.com/siderolabs/talos/commit/9c0d2706c) docs: add release notes about v3.6.x bug - [@​`d219942`](https://redirect.github.com/siderolabs/talos/commit/d21994210) test: refactor various merge controller tests - [@​`da5a444`](https://redirect.github.com/siderolabs/talos/commit/da5a4449f) feat: implement raw volume support - [@​`41adda1`](https://redirect.github.com/siderolabs/talos/commit/41adda1cf) docs: add secure boot setup mode note for Xen - [@​`993b4ad`](https://redirect.github.com/siderolabs/talos/commit/993b4ade8) docs: fix typo in hugo config: pre-releaase - [@​`130b7fd`](https://redirect.github.com/siderolabs/talos/commit/130b7fd6e) test: fix flaky TestDNS - [@​`35b45ae`](https://redirect.github.com/siderolabs/talos/commit/35b45ae6e) feat(talosctl): support tpm operation on mac - [@​`24628db`](https://redirect.github.com/siderolabs/talos/commit/24628db20) feat: update Kubernetes to v1.34.0-alpha.3 - [@​`ff68286`](https://redirect.github.com/siderolabs/talos/commit/ff68286d1) feat: include hwrandom modules - [@​`a5b07c9`](https://redirect.github.com/siderolabs/talos/commit/a5b07c9a5) test: split tests and lint from the default pipeline - [@​`a957ef4`](https://redirect.github.com/siderolabs/talos/commit/a957ef416) feat: add SBOMs to the imager container - [@​`506212a`](https://redirect.github.com/siderolabs/talos/commit/506212a71) feat: include AMD encrypted mem modules into base - [@​`a966321`](https://redirect.github.com/siderolabs/talos/commit/a966321cc) fix: add more bootloader probe logs on upgrade - [@​`b38fa56`](https://redirect.github.com/siderolabs/talos/commit/b38fa568a) feat: add validation for secrets bundle - [@​`2d89bcc`](https://redirect.github.com/siderolabs/talos/commit/2d89bcc71) feat: bump Linux, Go and other packages - [@​`0b8c180`](https://redirect.github.com/siderolabs/talos/commit/0b8c180b8) fix: rename instances to referenceCount - [@​`378fe4f`](https://redirect.github.com/siderolabs/talos/commit/378fe4f2f) feat: support writing EFI boot order - [@​`9f07926`](https://redirect.github.com/siderolabs/talos/commit/9f0792632) fix: improve volume provisioning errors - [@​`b8fcf3c`](https://redirect.github.com/siderolabs/talos/commit/b8fcf3c71) fix: change module instance evaluation - [@​`d680e56`](https://redirect.github.com/siderolabs/talos/commit/d680e560d) docs: create FUNDING.yml - [@​`6415055`](https://redirect.github.com/siderolabs/talos/commit/641505584) feat: support project quota support for user volumes - [@​`52656cc`](https://redirect.github.com/siderolabs/talos/commit/52656cc3c) feat: allow taloscl disk wipe in maintenance mode - [@​`8505794`](https://redirect.github.com/siderolabs/talos/commit/850579448) feat: export SBOM as resources - [@​`4f3a2ff`](https://redirect.github.com/siderolabs/talos/commit/4f3a2ffab) test: update unit-test runner - [@​`d531b68`](https://redirect.github.com/siderolabs/talos/commit/d531b682c) fix: provide FIPS 140-3 compliance - [@​`3e3129d`](https://redirect.github.com/siderolabs/talos/commit/3e3129d36) feat: include packages into SBOM - [@​`54bd50b`](https://redirect.github.com/siderolabs/talos/commit/54bd50be3) fix: talos endpoint might not be created in Kubernetes - [@​`8789a02`](https://redirect.github.com/siderolabs/talos/commit/8789a02c3) feat: present loaded kernel modules - [@​`33ecbae`](https://redirect.github.com/siderolabs/talos/commit/33ecbaec6) test: update apply config tests - [@​`7d2fd39`](https://redirect.github.com/siderolabs/talos/commit/7d2fd390c) chore: bump Talos version in the Image Factory CI pipeline - [@​`de77f21`](https://redirect.github.com/siderolabs/talos/commit/de77f2142) docs: add example for fluentbit config - [@​`1f1f781`](https://redirect.github.com/siderolabs/talos/commit/1f1f78106) fix: add limited retries for not found images - [@​`3d6a2c1`](https://redirect.github.com/siderolabs/talos/commit/3d6a2c14e) chore: generate and upload signatures on release - [@​`3801413`](https://redirect.github.com/siderolabs/talos/commit/380141330) feat: expose kernel cmdline as a resource - [@​`4c6b3b1`](https://redirect.github.com/siderolabs/talos/commit/4c6b3b14d) docs: document disabling SELinux - [@​`3a6e5a7`](https://redirect.github.com/siderolabs/talos/commit/3a6e5a71e) feat: add talosctl mulitarch bundle image - [@​`be671ee`](https://redirect.github.com/siderolabs/talos/commit/be671ee6d) chore: add sbom step to the release pipeline - [@​`7fd0e8f`](https://redirect.github.com/siderolabs/talos/commit/7fd0e8fc7) release(v1.11.0-alpha.3): prepare release - [@​`777335f`](https://redirect.github.com/siderolabs/talos/commit/777335f23) chore: improve cloud image uploader resilience - [@​`14e5eee`](https://redirect.github.com/siderolabs/talos/commit/14e5eee7d) release(v1.11.0-alpha.2): prepare release - [@​`1e5a008`](https://redirect.github.com/siderolabs/talos/commit/1e5a008f5) fix: hold user volume mount point across kubelet restarts - [@​`cdad505`](https://redirect.github.com/siderolabs/talos/commit/cdad50590) docs: user volumes and kubernetes upgrade updates - [@​`c880835`](https://redirect.github.com/siderolabs/talos/commit/c880835c8) feat: implement zswap support - [@​`7f0300f`](https://redirect.github.com/siderolabs/talos/commit/7f0300f10) feat: update dependencies, Kubernetes 1.34.0-alpha.2 - [@​`61afbe3`](https://redirect.github.com/siderolabs/talos/commit/61afbe3d2) docs: add vc4 documentation - [@​`b9dbdc8`](https://redirect.github.com/siderolabs/talos/commit/b9dbdc8e7) fix: etcd recover with multiple advertised addresses - [@​`19d94c3`](https://redirect.github.com/siderolabs/talos/commit/19d94c357) feat: update Linux to 6.12.35, containerd to 2.1.3 - [@​`44a1fc3`](https://redirect.github.com/siderolabs/talos/commit/44a1fc3b7) fix: treat context canceled as expected error on image pull - [@​`4da2dd5`](https://redirect.github.com/siderolabs/talos/commit/4da2dd537) feat: enforce Kubernetes version compatibility - [@​`6c7f820`](https://redirect.github.com/siderolabs/talos/commit/6c7f8201a) fix: set default MTU on Azure to 1400 - [@​`091cd69`](https://redirect.github.com/siderolabs/talos/commit/091cd6989) docs: small yaml typo fix - [@​`66ecbd4`](https://redirect.github.com/siderolabs/talos/commit/66ecbd48f) docs: update support matrix with omni version - [@​`c948d76`](https://redirect.github.com/siderolabs/talos/commit/c948d7617) docs: minor fixes for creating kernel modules - [@​`cc14c4a`](https://redirect.github.com/siderolabs/talos/commit/cc14c4a25) docs: add docs for creating kernel modules - [@​`93bcd3b`](https://redirect.github.com/siderolabs/talos/commit/93bcd3b56) docs: create SBOM for Go dependencies - [@​`38c4ce4`](https://redirect.github.com/siderolabs/talos/commit/38c4ce415) feat: add user-space InfiniBand modules - [@​`251dc93`](https://redirect.github.com/siderolabs/talos/commit/251dc934f) feat: arm64 support for platform vmware - [@​`09b3ad5`](https://redirect.github.com/siderolabs/talos/commit/09b3ad577) feat: update containerd to 2.1.2 - [@​`0767dd0`](https://redirect.github.com/siderolabs/talos/commit/0767dd07b) chore: enable --with-siderolink-agent on Darwin - [@​`9642198`](https://redirect.github.com/siderolabs/talos/commit/9642198d7) fix: userspace wireguard library overrides - [@​`208f076`](https://redirect.github.com/siderolabs/talos/commit/208f0763e) chore: fix talosctl build on non-Linux hosts - [@​`87421af`](https://redirect.github.com/siderolabs/talos/commit/87421af87) docs: expand documentation description - [@​`d32ccfa`](https://redirect.github.com/siderolabs/talos/commit/d32ccfa59) feat: implement swap support - [@​`8f5cf81`](https://redirect.github.com/siderolabs/talos/commit/8f5cf81db) docs: update kvm documentation - [@​`8e84c8b`](https://redirect.github.com/siderolabs/talos/commit/8e84c8b0f) fix: nil pointer deref in quirk - [@​`6e74a36`](https://redirect.github.com/siderolabs/talos/commit/6e74a3676) docs: aad ery basic details on how to run on scaleway - [@​`260d1bc`](https://redirect.github.com/siderolabs/talos/commit/260d1bc9a) fix: correctl close encrypted volumes - [@​`034ef42`](https://redirect.github.com/siderolabs/talos/commit/034ef42af) fix: update siderolink library for wgtunnel panic fix - [@​`3035744`](https://redirect.github.com/siderolabs/talos/commit/3035744a8) fix: correctly predict interface name on darwin - [@​`cfcfad3`](https://redirect.github.com/siderolabs/talos/commit/cfcfad3c4) chore: move `checkUnknownKeys` function to `github.com/siderolabs/gen` - [@​`5ecc53c`](https://redirect.github.com/siderolabs/talos/commit/5ecc53c69) docs: add macos section to developing-talos.md - [@​`b5b3530`](https://redirect.github.com/siderolabs/talos/commit/b5b35307f) chore: update Go to 1.24.4 - [@​`fde772d`](https://redirect.github.com/siderolabs/talos/commit/fde772d8d) feat: update Flannel to 0.27.0 - [@​`81ca279`](https://redirect.github.com/siderolabs/talos/commit/81ca27949) release(v1.11.0-alpha.1): prepare release - [@​`58a868e`](https://redirect.github.com/siderolabs/talos/commit/58a868e68) chore: fix renovate config, add release-gate label - [@​`a59aaee`](https://redirect.github.com/siderolabs/talos/commit/a59aaee84) feat: bump dependencies, Linux 6.12.31 - [@​`e954ee3`](https://redirect.github.com/siderolabs/talos/commit/e954ee30a) docs: typo correction: LongHorn -> Longhorn - [@​`aab0533`](https://redirect.github.com/siderolabs/talos/commit/aab053394) fix: mashal resource byte slices as strings in YAML - [@​`c7d4191`](https://redirect.github.com/siderolabs/talos/commit/c7d4191e7) fix: rework the way CRI config generation is waited for - [@​`0114183`](https://redirect.github.com/siderolabs/talos/commit/0114183de) docs: update `lastRelease` to 1.10.3 - [@​`938b076`](https://redirect.github.com/siderolabs/talos/commit/938b0760a) docs: update issue template - [@​`2a7b735`](https://redirect.github.com/siderolabs/talos/commit/2a7b735b2) feat: drop IMA support - [@​`2d5a805`](https://redirect.github.com/siderolabs/talos/commit/2d5a805b0) fix: typo in DiscoverdVolume spec - [@​`60c12ba`](https://redirect.github.com/siderolabs/talos/commit/60c12bad9) feat: support nocloud include url userdata directive - [@​`0fd622c`](https://redirect.github.com/siderolabs/talos/commit/0fd622c82) fix(talosctl): correct --help output for dashboard command - [@​`a90c936`](https://redirect.github.com/siderolabs/talos/commit/a90c936a1) feat: support qemu provisioner on darwin - [@​`5322ca0`](https://redirect.github.com/siderolabs/talos/commit/5322ca0d3) docs: update overlay docs - [@​`a60b632`](https://redirect.github.com/siderolabs/talos/commit/a60b6322d) fix(ci): drop nebula from extensions test - [@​`dbbb59a`](https://redirect.github.com/siderolabs/talos/commit/dbbb59a67) docs: add note for default `dataDirHostPath` for Rook - [@​`e260543`](https://redirect.github.com/siderolabs/talos/commit/e26054378) docs: macos qemu provider - [@​`5d02240`](https://redirect.github.com/siderolabs/talos/commit/5d0224093) docs: use the cilium-cli image repo in the job installation manifest - [@​`ff80e4c`](https://redirect.github.com/siderolabs/talos/commit/ff80e4cca) docs: fix CIDR name - [@​`a5fd15e`](https://redirect.github.com/siderolabs/talos/commit/a5fd15e8b) fix(ci): reproducibility test - [@​`8f8963e`](https://redirect.github.com/siderolabs/talos/commit/8f8963e50) docs: update Nexxen brand - [@​`c6b8687`](https://redirect.github.com/siderolabs/talos/commit/c6b86872d) fix(ci): iso reproducibility file permissions - [@​`995a1de`](https://redirect.github.com/siderolabs/talos/commit/995a1dec4) chore: add a check for unsupported darwin flags - [@​`9db5d0c`](https://redirect.github.com/siderolabs/talos/commit/9db5d0c97) fix: nocloud metadata for hostname - [@​`3cf3256`](https://redirect.github.com/siderolabs/talos/commit/3cf325654) feat: modularize more arm64 kernel - [@​`3524745`](https://redirect.github.com/siderolabs/talos/commit/3524745cc) fix: allow any PKI in Talos API - [@​`f438cdb`](https://redirect.github.com/siderolabs/talos/commit/f438cdb09) chore: use custom dhcpd server on macos qemu - [@​`11c17fb`](https://redirect.github.com/siderolabs/talos/commit/11c17fb9a) fix: metal-iso reproducibility - [@​`7fcb89e`](https://redirect.github.com/siderolabs/talos/commit/7fcb89ee3) chore: add darwin vmnet qemu support - [@​`fc12373`](https://redirect.github.com/siderolabs/talos/commit/fc1237343) chore: clean up `/usr/bin` - [@​`b551f32`](https://redirect.github.com/siderolabs/talos/commit/b551f32ce) feat: update containerd to v2.1.1 - [@​`67f4154`](https://redirect.github.com/siderolabs/talos/commit/67f4154f9) docs: update disk-management.md - [@​`0cb137a`](https://redirect.github.com/siderolabs/talos/commit/0cb137ad7) fix: make disk size check work on old Talos - [@​`7c057ed`](https://redirect.github.com/siderolabs/talos/commit/7c057edd5) fix: use vmdk-convert istead of qemu-img to create VMDK for OVA files - [@​`cd618da`](https://redirect.github.com/siderolabs/talos/commit/cd618dad0) chore: update the go-blockdevice package - [@​`0b99631`](https://redirect.github.com/siderolabs/talos/commit/0b99631a0) fix: bump apid memory limit - [@​`5451f35`](https://redirect.github.com/siderolabs/talos/commit/5451f35b1) docs: update virtualbox - [@​`bd4d202`](https://redirect.github.com/siderolabs/talos/commit/bd4d202a5) refactor: bring owned.State from COSI to simplify tests - [@​`0b96df5`](https://redirect.github.com/siderolabs/talos/commit/0b96df574) feat: update containerd to 2.1.0 - [@​`e1a9391`](https://redirect.github.com/siderolabs/talos/commit/e1a939144) docs: fix formatting in disk encryption - [@​`7a817df`](https://redirect.github.com/siderolabs/talos/commit/7a817df1c) docs: fix typo - [@​`f35b213`](https://redirect.github.com/siderolabs/talos/commit/f35b213b2) test: fix DHCP unicast failures in QEMU environment - [@​`7064bbf`](https://redirect.github.com/siderolabs/talos/commit/7064bbf05) docs: fix vmware factory URL - [@​`78c33bc`](https://redirect.github.com/siderolabs/talos/commit/78c33bcdb) feat: update default Kubernetes to v1.33.1 - [@​`da67952`](https://redirect.github.com/siderolabs/talos/commit/da6795266) fix: disable automatic MAC assignment to bridge interfaces - [@​`ca34adf`](https://redirect.github.com/siderolabs/talos/commit/ca34adf58) chore(ci): drop azure keys - [@​`ea5de19`](https://redirect.github.com/siderolabs/talos/commit/ea5de19fa) fix: selinux detection - [@​`52c76ea`](https://redirect.github.com/siderolabs/talos/commit/52c76ea3a) fix: consistently apply dynamic grpc proxy dialer - [@​`aa9569e`](https://redirect.github.com/siderolabs/talos/commit/aa9569e5d) chore: refactor cluster create cmd flags - [@​`1161faa`](https://redirect.github.com/siderolabs/talos/commit/1161faa05) docs: fix typo in Cilium docs - [@​`164745e`](https://redirect.github.com/siderolabs/talos/commit/164745e44) docs: remove `preserve` flag mention in upgrade notes - [@​`9a2ecba`](https://redirect.github.com/siderolabs/talos/commit/9a2ecbaaf) fix: makefile operating system param - [@​`118aa69`](https://redirect.github.com/siderolabs/talos/commit/118aa69d6) chore: update cloud-image-uploader dependencies - [@​`acdd721`](https://redirect.github.com/siderolabs/talos/commit/acdd721cf) chore: dump qemu pachine ipam records on darwin - [@​`bb90945`](https://redirect.github.com/siderolabs/talos/commit/bb9094534) chore: rotate aws iam credentials - [@​`0bfa4ae`](https://redirect.github.com/siderolabs/talos/commit/0bfa4ae1b) chore: update deps for cloud-image-uploader - [@​`956d7c7`](https://redirect.github.com/siderolabs/talos/commit/956d7c71b) chore: update sops keys - [@​`e2f819d`](https://redirect.github.com/siderolabs/talos/commit/e2f819d88) test: fix the process runner log collection - [@​`fdac4cf`](https://redirect.github.com/siderolabs/talos/commit/fdac4cfb9) fix: upgrade go-kubernetes for DRA flag bug - [@​`09d88e1`](https://redirect.github.com/siderolabs/talos/commit/09d88e1e8) test: fix some flaky tests - [@​`ec1f41a`](https://redirect.github.com/siderolabs/talos/commit/ec1f41a94) chore: make qemu config server bind work on darwin - [@​`980f4d2`](https://redirect.github.com/siderolabs/talos/commit/980f4d2b9) feat: bump dependencies - [@​`9525933`](https://redirect.github.com/siderolabs/talos/commit/95259337e) fix: k8s 1.32->1.33 upgrade check - [@​`c3c326b`](https://redirect.github.com/siderolabs/talos/commit/c3c326b40) fix: improve volume mounter automaton - [@​`918b94d`](https://redirect.github.com/siderolabs/talos/commit/918b94d9a) refactor: rewrite disk size check - [@​`ab7e693`](https://redirect.github.com/siderolabs/talos/commit/ab7e693d7) chore: make qemu lb address bind work on darwin - [@​`97ceab0`](https://redirect.github.com/siderolabs/talos/commit/97ceab001) fix: multiple logic issues in platform network config controller - [@​`46349a9`](https://redirect.github.com/siderolabs/talos/commit/46349a9df) docs: remove azure image gallery instructions - [@​`0cfcdd3`](https://redirect.github.com/siderolabs/talos/commit/0cfcdd3de) docs: fix search on base talos.dev - [@​`78646b4`](https://redirect.github.com/siderolabs/talos/commit/78646b4e0) docs: add registryd debug command - [@​`c6824c2`](https://redirect.github.com/siderolabs/talos/commit/c6824c211) fix: deny apply config requests without v1alpha1 in "normal" mode - [@​`7df0408`](https://redirect.github.com/siderolabs/talos/commit/7df0408e4) fix: interactive installer config gen - [@​`881c5d6`](https://redirect.github.com/siderolabs/talos/commit/881c5d62b) fix: suppress duplicate platform config updates - [@​`66d7788`](https://redirect.github.com/siderolabs/talos/commit/66d77888e) fix: replace downloaded asset paths correctly in cluster create cmd - [@​`6bd6c9b`](https://redirect.github.com/siderolabs/talos/commit/6bd6c9b5a) fix: generate iso greater than 4 gig - [@​`ac14032`](https://redirect.github.com/siderolabs/talos/commit/ac140324e) fix: skip PCR extension if TPM1.2 is found - [@​`09ef1f8`](https://redirect.github.com/siderolabs/talos/commit/09ef1f8a4) fix: ignore http proxy on grpc socket dial - [@​`22a72dc`](https://redirect.github.com/siderolabs/talos/commit/22a72dc80) chore: split options between three structs - [@​`22c34a5`](https://redirect.github.com/siderolabs/talos/commit/22c34a50f) fix(ci): provision cron jobs - [@​`b3b20ef`](https://redirect.github.com/siderolabs/talos/commit/b3b20eff3) fix: containerd crashing with sigsegv - [@​`f7891c3`](https://redirect.github.com/siderolabs/talos/commit/f7891c301) chore: calculate vmnet interface name preemptively - [@​`ae87edf`](https://redirect.github.com/siderolabs/talos/commit/ae87edffb) fix: drop libseccomp from rootfs - [@​`f74a805`](https://redirect.github.com/siderolabs/talos/commit/f74a805bb) fix: do correct backoff for nocloud reconcile - [@​`01bb294`](https://redirect.github.com/siderolabs/talos/commit/01bb294af) fix(ci): provision tests - [@​`e4945be`](https://redirect.github.com/siderolabs/talos/commit/e4945be3b) docs: add registryd debug command - [@​`d8c670a`](https://redirect.github.com/siderolabs/talos/commit/d8c670ad3) release(v1.11.0-alpha.0): prepare release - [@​`ace44ea`](https://redirect.github.com/siderolabs/talos/commit/ace44ea61) test: update hydrophone to 0.7.0 - [@​`3a11636`](https://redirect.github.com/siderolabs/talos/commit/3a1163692) chore: cross platform qemu preflight checks - [@​`7914fb1`](https://redirect.github.com/siderolabs/talos/commit/7914fb104) chore: move the create command to it's own package - [@​`c8e6196`](https://redirect.github.com/siderolabs/talos/commit/c8e619608) chore: prepare for release 1.11 - [@​`1299aaa`](https://redirect.github.com/siderolabs/talos/commit/1299aaa45) chore(ci): add extensions test for Youki runtime - [@​`e50ceb2`](https://redirect.github.com/siderolabs/talos/commit/e50ceb221) docs: activate Talos 1.10 docs - [@​`9d12aae`](https://redirect.github.com/siderolabs/talos/commit/9d12aaeb1) test: improve config patch test - [@​`106a656`](https://redirect.github.com/siderolabs/talos/commit/106a656b6) chore: make qemu provider build on darwin - [@​`8013aa0`](https://redirect.github.com/siderolabs/talos/commit/8013aa06c) test: replace platform metadata test - [@​`2b89c28`](https://redirect.github.com/siderolabs/talos/commit/2b89c2810) fix: relax etcd APIs RBAC requirements - [@​`1e67758`](https://redirect.github.com/siderolabs/talos/commit/1e677587c) fix: preserve kubelet image suffix - [@​`62ab8af`](https://redirect.github.com/siderolabs/talos/commit/62ab8af45) fix: disk image generation with image cache - [@​`d60626f`](https://redirect.github.com/siderolabs/talos/commit/d60626f01) fix: handle encryption type mismatch - [@​`a9109eb`](https://redirect.github.com/siderolabs/talos/commit/a9109ebd0) feat: allow SideroLink unique token in machine config - [@​`2ff3a6e`](https://redirect.github.com/siderolabs/talos/commit/2ff3a6e40) feat(kernel): add bcache kernel module to core talos - [@​`fa95a21`](https://redirect.github.com/siderolabs/talos/commit/fa95a2146) fix(ci): bios provision test - [@​`f7c5b86`](https://redirect.github.com/siderolabs/talos/commit/f7c5b86be) fix: sync PCR extension with volume provisioning lifecycle - [@​`f90c794`](https://redirect.github.com/siderolabs/talos/commit/f90c79474) chore: show bound driver in pcidevices info - [@​`8db3462`](https://redirect.github.com/siderolabs/talos/commit/8db34624c) fix: handle correctly changing platform network config - [@​`77c7a07`](https://redirect.github.com/siderolabs/talos/commit/77c7a075b) feat: update Kubernetes to 1.33.0 - [@​`74f0c48`](https://redirect.github.com/siderolabs/talos/commit/74f0c48c7) feat: add version compatibility for Talos 1.11 - [@​`c4fb7da`](https://redirect.github.com/siderolabs/talos/commit/c4fb7dad0) fix: force DNS runner shutdown on timeout - [@​`c49b483`](https://redirect.github.com/siderolabs/talos/commit/c49b4836e) docs: hetzner: add note about public iso - [@​`16ea2b1`](https://redirect.github.com/siderolabs/talos/commit/16ea2b113) docs: add what is new for 1.10 - [@​`be3f0c0`](https://redirect.github.com/siderolabs/talos/commit/be3f0c018) fix: fix Gvisor tests with containerd patch - [@​`37db132`](https://redirect.github.com/siderolabs/talos/commit/37db132b3) chore(ci): add provision test with bios - [@​`ec60b70`](https://redirect.github.com/siderolabs/talos/commit/ec60b70e7) fix: set media type to OCI for image cache layer - [@​`a471eb3`](https://redirect.github.com/siderolabs/talos/commit/a471eb31b) feat: update Linux 6.12.24, containerd 2.0.5 - [@​`54ad5b8`](https://redirect.github.com/siderolabs/talos/commit/54ad5b872) fix: extension services logging to console - [@​`601f036`](https://redirect.github.com/siderolabs/talos/commit/601f036ba) docs: correct flannel extra args example - [@​`ae94377`](https://redirect.github.com/siderolabs/talos/commit/ae94377d1) feat: support encryption config for user volumes - [@​`9616f6e`](https://redirect.github.com/siderolabs/talos/commit/9616f6e8d) docs: add caveat for kubespan and host ports - [@​`a1d08a3`](https://redirect.github.com/siderolabs/talos/commit/a1d08a362) docs: fixes typo at OpenEBS Mayastor worker patches - [@​`a91e872`](https://redirect.github.com/siderolabs/talos/commit/a91e8726e) docs: add a dark theme - [@​`c76189c`](https://redirect.github.com/siderolabs/talos/commit/c76189c58) fix: grub EFI mount point - [@​`4ca985c`](https://redirect.github.com/siderolabs/talos/commit/4ca985c65) fix: grub efi platform install - [@​`b312602`](https://redirect.github.com/siderolabs/talos/commit/b31260281) docs: update storage.md - [@​`396a290`](https://redirect.github.com/siderolabs/talos/commit/396a29040) feat: add new SBCs - [@​`a902f65`](https://redirect.github.com/siderolabs/talos/commit/a902f6580) feat: update Flannel to v0.26.7 - [@​`2bbefec`](https://redirect.github.com/siderolabs/talos/commit/2bbefec1a) docs: use cache in preview - [@​`6028a8d`](https://redirect.github.com/siderolabs/talos/commit/6028a8d2d) docs: update kubeprism.md - [@​`e51a8ef`](https://redirect.github.com/siderolabs/talos/commit/e51a8ef8c) fix: prefer new `MountStatus` resource - [@​`d9c7e79`](https://redirect.github.com/siderolabs/talos/commit/d9c7e7946) docs: fix search - [@​`b32fa02`](https://redirect.github.com/siderolabs/talos/commit/b32fa029b) feat: update Kubernetes to 1.33.0-rc.1 - [@​`f0ea478`](https://redirect.github.com/siderolabs/talos/commit/f0ea478cb) feat: support address priority - [@​`8cd3c8d`](https://redirect.github.com/siderolabs/talos/commit/8cd3c8dc7) test: fix NVIDIA OSS tests - [@​`62f2d27`](https://redirect.github.com/siderolabs/talos/commit/62f2d27cd) docs: update virtualbox.md - [@​`141326e`](https://redirect.github.com/siderolabs/talos/commit/141326ea3) docs: fix tabpane styling - [@​`134aa53`](https://redirect.github.com/siderolabs/talos/commit/134aa53cc) feat: update base CoreDNS code in host DNS to 1.12.1 </p> </details> ##### Changes since v1.11.0-beta.0 <details><summary>25 commits</summary> <p> - [@​`5a15ce8`](https://redirect.github.com/siderolabs/talos/commit/5a15ce88b) release(v1.11.0-beta.1): prepare release - [@​`614ca2e`](https://redirect.github.com/siderolabs/talos/commit/614ca2e22) fix: one more attempt to fix volume mount race on restart - [@​`4b86dfe`](https://redirect.github.com/siderolabs/talos/commit/4b86dfe6f) feat: implement encryption locking to STATE - [@​`8ae76c3`](https://redirect.github.com/siderolabs/talos/commit/8ae76c320) feat: implement `talos.config.early` command line arg - [@​`19f8c60`](https://redirect.github.com/siderolabs/talos/commit/19f8c605e) docs: remove talos API flags from mgmt commands - [@​`fa1d6fe`](https://redirect.github.com/siderolabs/talos/commit/fa1d6fef8) feat: bootedentry resource - [@​`7dee810`](https://redirect.github.com/siderolabs/talos/commit/7dee810d4) fix: live reload of TLS client config for discovery client - [@​`a5dc224`](https://redirect.github.com/siderolabs/talos/commit/a5dc22466) fix: enforce minimum size on user volumes if not set explicitly - [@​`7836e92`](https://redirect.github.com/siderolabs/talos/commit/7836e924d) feat: update containerd to 2.1.4 - [@​`5012550`](https://redirect.github.com/siderolabs/talos/commit/5012550ec) feat: add [`F71808E`](https://redirect.github.com/siderolabs/talos/commit/F71808E) watchdog driver - [@​`10ddc4c`](https://redirect.github.com/siderolabs/talos/commit/10ddc4cdd) fix: grype scan - [@​`d108e0a`](https://redirect.github.com/siderolabs/talos/commit/d108e0a08) fix(ci): use a random suffix for ami names - [@​`5042255`](https://redirect.github.com/siderolabs/talos/commit/504225546) fix: issues with reading GPT - [@​`bdaf08d`](https://redirect.github.com/siderolabs/talos/commit/bdaf08dd4) feat: update PCI DB module to v0.3.2 - [@​`667dceb`](https://redirect.github.com/siderolabs/talos/commit/667dcebec) test: wait for service account test job longer - [@​`ae176a4`](https://redirect.github.com/siderolabs/talos/commit/ae176a4b7) feat: update etcd to 3.6.4 - [@​`201b680`](https://redirect.github.com/siderolabs/talos/commit/201b6801f) fix: issue with volume remount on service restart - [@​`2a91140`](https://redirect.github.com/siderolabs/talos/commit/2a911402b) chore: tag aws snapshots created via ci with the image name - [@​`d8bd84b`](https://redirect.github.com/siderolabs/talos/commit/d8bd84b56) docs: add SBOM documentation - [@​`7eec619`](https://redirect.github.com/siderolabs/talos/commit/7eec61993) feat: unify disk encryption configuration - [@​`4ff2bf9`](https://redirect.github.com/siderolabs/talos/commit/4ff2bf9e0) feat: update etcd to v3.5.22 - [@​`31a67d3`](https://redirect.github.com/siderolabs/talos/commit/31a67d379) fix: do not download artifacts for cron Grype scan - [@​`c6b6e0b`](https://redirect.github.com/siderolabs/talos/commit/c6b6e0bb3) docs: rewrite the getting started and prod docs for v1.10 and v1.11 - [@​`ca1c656`](https://redirect.github.com/siderolabs/talos/commit/ca1c656e6) chore(ci): add more nvidia test matrix - [@​`7a2e0f0`](https://redirect.github.com/siderolabs/talos/commit/7a2e0f068) feat: sync pkgs, update Linux to 6.12.40 </p> </details> ##### Changes from siderolabs/crypto <details><summary>5 commits</summary> <p> - [siderolabs/crypto@`62a079b`](https://redirect.github.com/siderolabs/crypto/commit/62a079b) fix: update TLS config, add tests for TLS interactions - [siderolabs/crypto@`c2b4e26`](https://redirect.github.com/siderolabs/crypto/commit/c2b4e26) fix: remove code duplication and fix [`Ed25511`](https://redirect.github.com/siderolabs/talos/commit/Ed255119) CA generation - [siderolabs/crypto@`2a07632`](https://redirect.github.com/siderolabs/crypto/commit/2a07632) fix: enforce FIPS-140-3 compliance - [siderolabs/crypto@`17107ae`](https://redirect.github.com/siderolabs/crypto/commit/17107ae) fix: add generic CSR generator and OpenSSL interop - [siderolabs/crypto@`53659fc`](https://redirect.github.com/siderolabs/crypto/commit/53659fc) refactor: split into files </p> </details> ##### Changes from siderolabs/discovery-client <details><summary>3 commits</summary> <p> - [siderolabs/discovery-client@`0bffa6f`](https://redirect.github.com/siderolabs/discovery-client/commit/0bffa6f) fix: allow TLS config to be passed as a function - [siderolabs/discovery-client@`09c6687`](https://redirect.github.com/siderolabs/discovery-client/commit/09c6687) chore: fix project name in release.toml - [siderolabs/discovery-client@`71b0c6d`](https://redirect.github.com/siderolabs/discovery-client/commit/71b0c6d) fix: add FIPS-140-3 strict compliance </p> </details> ##### Changes from siderolabs/gen <details><summary>5 commits</summary> <p> - [siderolabs/gen@`044d921`](https://redirect.github.com/siderolabs/gen/commit/044d921) feat: add xslices.Deduplicate - [siderolabs/gen@`dcb2b74`](https://redirect.github.com/siderolabs/gen/commit/dcb2b74) feat: add `panicsafe` package - [siderolabs/gen@`b36ee43`](https://redirect.github.com/siderolabs/gen/commit/b36ee43) feat: make `xyaml.CheckUnknownKeys` public - [siderolabs/gen@`3e319e7`](https://redirect.github.com/siderolabs/gen/commit/3e319e7) feat: implement `xyaml.UnmarshalStrict` - [siderolabs/gen@`7c0324f`](https://redirect.github.com/siderolabs/gen/commit/7c0324f) chore: future-proof HashTrieMap </p> </details> ##### Changes from siderolabs/go-circular <details><summary>1 commit</summary> <p> - [siderolabs/go-circular@`5b39ef8`](https://redirect.github.com/siderolabs/go-circular/commit/5b39ef8) fix: do not log error if chunk zero was never written </p> </details> ##### Changes from siderolabs/go-kubernetes <details><summary>4 commits</summary> <p> - [siderolabs/go-kubernetes@`7887034`](https://redirect.github.com/siderolabs/go-kubernetes/commit/7887034) feat: add checks for Kubernetes 1.34 removals - [siderolabs/go-kubernetes@`657a74b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/657a74b) feat: prepare for Kubernetes 1.34 - [siderolabs/go-kubernetes@`9070be4`](https://redirect.github.com/siderolabs/go-kubernetes/commit/9070be4) fix: remove DynamicResourceAllocation feature gate - [siderolabs/go-kubernetes@`8cb588b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/8cb588b) fix: k8s 1.32->1.33 upgrade check </p> </details> ##### Changes from siderolabs/go-pcidb <details><summary>1 commit</summary> <p> - [siderolabs/go-pcidb@`9baca16`](https://redirect.github.com/siderolabs/go-pcidb/commit/9baca16) feat: update PCI DB to the latest version </p> </details> ##### Changes from siderolabs/pkgs <details><summary>59 commits</summary> <p> - [siderolabs/pkgs@`a94734c`](https://redirect.github.com/siderolabs/pkgs/commit/a94734c) feat: update containerd to 2.1.4 - [siderolabs/pkgs@`662c5a4`](https://redirect.github.com/siderolabs/pkgs/commit/662c5a4) feat: enable [`F71808E`](https://redirect.github.com/siderolabs/talos/commit/F71808E) watchdog driver - [siderolabs/pkgs@`48afc2a`](https://redirect.github.com/siderolabs/pkgs/commit/48afc2a) fix: enable ISCSI IBFT - [siderolabs/pkgs@`ddb7b5e`](https://redirect.github.com/siderolabs/pkgs/commit/ddb7b5e) feat: update Linux to 6.12.40 - [siderolabs/pkgs@`5616981`](https://redirect.github.com/siderolabs/pkgs/commit/5616981) feat: enable bootloader control on amd64 - [siderolabs/pkgs@`4a840bc`](https://redirect.github.com/siderolabs/pkgs/commit/4a840bc) chore: allow more than one commit for a PR - [siderolabs/pkgs@`e2fbfb1`](https://redirect.github.com/siderolabs/pkgs/commit/e2fbfb1) feat: update tools/toolchain to 1.11.0 - [siderolabs/pkgs@`383bbb4`](https://redirect.github.com/siderolabs/pkgs/commit/383bbb4) feat: update NVIDIA production to 570.158.01 - [siderolabs/pkgs@`853cf3a`](https://redirect.github.com/siderolabs/pkgs/commit/853cf3a) feat: bump e2fsprogs, ipxe, kspp, tools - [siderolabs/pkgs@`a3f8281`](https://redirect.github.com/siderolabs/pkgs/commit/a3f8281) feat: update Linux to 6.12.38 - [siderolabs/pkgs@`8ed84c5`](https://redirect.github.com/siderolabs/pkgs/commit/8ed84c5) feat: refactor HW\_RANDOM configuration - [siderolabs/pkgs@`108099f`](https://redirect.github.com/siderolabs/pkgs/commit/108099f) feat: enable AMD encrypted memory - [siderolabs/pkgs@`c97d25e`](https://redirect.github.com/siderolabs/pkgs/commit/c97d25e) fix: remove erroneous PURLs - [siderolabs/pkgs@`90f7c65`](https://redirect.github.com/siderolabs/pkgs/commit/90f7c65) fix: bump bldr - [siderolabs/pkgs@`a24b40e`](https://redirect.github.com/siderolabs/pkgs/commit/a24b40e) feat: update Linux to 6.12.36 and firmware - [siderolabs/pkgs@`2537e61`](https://redirect.github.com/siderolabs/pkgs/commit/2537e61) docs: more SBOM metadata to cover whole Talos - [siderolabs/pkgs@`0f4cbbc`](https://redirect.github.com/siderolabs/pkgs/commit/0f4cbbc) feat: update dependencies - [siderolabs/pkgs@`9cec45c`](https://redirect.github.com/siderolabs/pkgs/commit/9cec45c) feat: add SBOM metadata for some packages - [siderolabs/pkgs@`03bb94c`](https://redirect.github.com/siderolabs/pkgs/commit/03bb94c) feat: update dependencies - [siderolabs/pkgs@`c613abd`](https://redirect.github.com/siderolabs/pkgs/commit/c613abd) fix: iptables url - [siderolabs/pkgs@`fae59df`](https://redirect.github.com/siderolabs/pkgs/commit/fae59df) fix: download and copy hailo8 firmware - [siderolabs/pkgs@`fadf1e2`](https://redirect.github.com/siderolabs/pkgs/commit/fadf1e2) feat: update containerd to 2.1.2 - [siderolabs/pkgs@`a0b0da1`](https://redirect.github.com/siderolabs/pkgs/commit/a0b0da1) feat: enable io.latency cgroup controller - [siderolabs/pkgs@`0aaa07a`](https://redirect.github.com/siderolabs/pkgs/commit/0aaa07a) feat: add hailort package - [siderolabs/pkgs@`8555e94`](https://redirect.github.com/siderolabs/pkgs/commit/8555e94) chore: use ftpmirror for GNU sources - [siderolabs/pkgs@`9fbe2b4`](https://redirect.github.com/siderolabs/pkgs/commit/9fbe2b4) feat: update Go to 1.24.4 - [siderolabs/pkgs@`79bfa9e`](https://redirect.github.com/siderolabs/pkgs/commit/79bfa9e) feat: update NVIDIA drivers to 570.148.08 - [siderolabs/pkgs@`c8b8bd8`](https://redirect.github.com/siderolabs/pkgs/commit/c8b8bd8) feat: bump dependencies - [siderolabs/pkgs@`54bf03e`](https://redirect.github.com/siderolabs/pkgs/commit/54bf03e) feat: update Linux to 6.12.31 - [siderolabs/pkgs@`93b3aaa`](https://redirect.github.com/siderolabs/pkgs/commit/93b3aaa) feat: add patch for CephFS IMA performance regression - [siderolabs/pkgs@`ebd6627`](https://redirect.github.com/siderolabs/pkgs/commit/ebd6627) feat: disable IMA support - [siderolabs/pkgs@`8aad53b`](https://redirect.github.com/siderolabs/pkgs/commit/8aad53b) feat: add CONFIG\_NFT\_CONNLIMIT to kernel - [siderolabs/pkgs@`7a299fa`](https://redirect.github.com/siderolabs/pkgs/commit/7a299fa) feat: update Linux to 6.12.30 - [siderolabs/pkgs@`8c4603e`](https://redirect.github.com/siderolabs/pkgs/commit/8c4603e) feat: move more configs to modules on arm64 - [siderolabs/pkgs@`7b1183b`](https://redirect.github.com/siderolabs/pkgs/commit/7b1183b) feat(kernel): enable IB user-space management and RDMA - [siderolabs/pkgs@`1b1430e`](https://redirect.github.com/siderolabs/pkgs/commit/1b1430e) fix: drop pcre2 binaries - [siderolabs/pkgs@`487610c`](https://redirect.github.com/siderolabs/pkgs/commit/487610c) fix: drop broken symlinks - [siderolabs/pkgs@`f31d518`](https://redirect.github.com/siderolabs/pkgs/commit/f31d518) fix: clean up some binaries - [siderolabs/pkgs@`0f74b9b`](https://redirect.github.com/siderolabs/pkgs/commit/0f74b9b) feat: update containerd to v2.1.1 - [siderolabs/pkgs@`89b4037`](https://redirect.github.com/siderolabs/pkgs/commit/89b4037) fix: tenstorrent pkg name - [siderolabs/pkgs@`a14b544`](https://redirect.github.com/siderolabs/pkgs/commit/a14b544) chore: drop qemu-tools vmdk support - [siderolabs/pkgs@`2563e47`](https://redirect.github.com/siderolabs/pkgs/commit/2563e47) feat: add tenstorrent package - [siderolabs/pkgs@`2a1c42f`](https://redirect.github.com/siderolabs/pkgs/commit/2a1c42f) fix(renovate): flannel config - [siderolabs/pkgs@`bfa69a8`](https://redirect.github.com/siderolabs/pkgs/commit/bfa69a8) feat: add open-vmdk package - [siderolabs/pkgs@`9f1ba1f`](https://redirect.github.com/siderolabs/pkgs/commit/9f1ba1f) fix: bring back updated containerd gvisor patch - [siderolabs/pkgs@`1567cb6`](https://redirect.github.com/siderolabs/pkgs/commit/1567cb6) feat: update Linux 6.12.28, firmware - [siderolabs/pkgs@`9bc66e6`](https://redirect.github.com/siderolabs/pkgs/commit/9bc66e6) feat: update containerd to 2.1.0 - [siderolabs/pkgs@`c6b54e0`](https://redirect.github.com/siderolabs/pkgs/commit/c6b54e0) feat: enable zswap - [siderolabs/pkgs@`4cd7084`](https://redirect.github.com/siderolabs/pkgs/commit/4cd7084) feat: update dependencies - [siderolabs/pkgs@`a3fcbf8`](https://redirect.github.com/siderolabs/pkgs/commit/a3fcbf8) feat(kernel): enable panthor driver - [siderolabs/pkgs@`74d1665`](https://redirect.github.com/siderolabs/pkgs/commit/74d1665) feat: update ZFS to 2.3.2 - [siderolabs/pkgs@`ddc866b`](https://redirect.github.com/siderolabs/pkgs/commit/ddc866b) feat: update Linux to 6.12.27 - [siderolabs/pkgs@`a347857`](https://redirect.github.com/siderolabs/pkgs/commit/a347857) fix: build containerd with Go 1.23 - [siderolabs/pkgs@`74da85c`](https://redirect.github.com/siderolabs/pkgs/commit/74da85c) fix: containerd build doesn't need seccomp - [siderolabs/pkgs@`4effa05`](https://redirect.github.com/siderolabs/pkgs/commit/4effa05) fix: downgrade libseccomp to 2.5.5 - [siderolabs/pkgs@`9cea00b`](https://redirect.github.com/siderolabs/pkgs/commit/9cea00b) feat: update Linux to 6.12.25 - [siderolabs/pkgs@`cb108a5`](https://redirect.github.com/siderolabs/pkgs/commit/cb108a5) feat(kernel): enable bcache module - [siderolabs/pkgs@`d042432`](https://redirect.github.com/siderolabs/pkgs/commit/d042432) fix: backport sandbox fix for Gvisor - [siderolabs/pkgs@`fa625dc`](https://redirect.github.com/siderolabs/pkgs/commit/fa625dc) feat: update Linux 6.12.24, containerd 2.0.5 </p> </details> ##### Changes from siderolabs/siderolink <details><summary>3 commits</summary> <p> - [siderolabs/siderolink@`5f46f65`](https://redirect.github.com/siderolabs/siderolink/commit/5f46f65) feat: handle panics in goroutines - [siderolabs/siderolink@`d09ff45`](https://redirect.github.com/siderolabs/siderolink/commit/d09ff45) fix: race in wait value - [siderolabs/siderolink@`d2a79e0`](https://redirect.github.com/siderolabs/siderolink/commit/d2a79e0) fix: clean up device on failure </p> </details> ##### Changes from siderolabs/tools <details><summary>10 commits</summary> <p> - [siderolabs/tools@`1d451f3`](https://redirect.github.com/siderolabs/tools/commit/1d451f3) feat: update toolchain to 1.11.0 - [siderolabs/tools@`650b916`](https://redirect.github.com/siderolabs/tools/commit/650b916) chore: bump toolchain, update names in SBOM - [siderolabs/tools@`594704b`](https://redirect.github.com/siderolabs/tools/commit/594704b) feat: bump dependencies - [siderolabs/tools@`4818702`](https://redirect.github.com/siderolabs/tools/commit/4818702) docs: add SBOM metadata for packages copied to pkgs - [siderolabs/tools@`542a03c`](https://redirect.github.com/siderolabs/tools/commit/542a03c) feat: update dependencies - [siderolabs/tools@`0554e87`](https://redirect.github.com/siderolabs/tools/commit/0554e87) chore: use ftpmirror for GNU sources - [siderolabs/tools@`1dfd14b`](https://redirect.github.com/siderolabs/tools/commit/1dfd14b) feat: update Go to 1.24.4 - [siderolabs/tools@`af3fd64`](https://redirect.github.com/siderolabs/tools/commit/af3fd64) feat: update dependencies - [siderolabs/tools@`e35234b`](https://redirect.github.com/siderolabs/tools/commit/e35234b) feat: update dependencies - [siderolabs/tools@`c96a4e6`](https://redirect.github.com/siderolabs/tools/commit/c96a4e6) chore: update toolchain to the latest version </p> </details> ##### Dependency Changes - **cloud.google.com/go/compute/metadata** v0.6.0 -> v0.7.0 - **github.com/Azure/azure-sdk-for-go/sdk/azcore** v1.18.0 -> v1.18.1 - **github.com/Azure/azure-sdk-for-go/sdk/azidentity** v1.9.0 -> v1.10.1 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates** v1.3.1 -> v1.4.0 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys** v1.3.1 -> v1.4.0 - **github.com/aws/aws-sdk-go-v2/config** v1.29.14 -> v1.29.17 - **github.com/aws/aws-sdk-go-v2/feature/ec2/imds** v1.16.30 -> v1.16.32 - **github.com/aws/aws-sdk-go-v2/service/kms** v1.38.3 -> v1.41.2 - **github.com/aws/smithy-go** v1.22.3 -> v1.22.4 - **github.com/containerd/containerd/api** v1.8.0 -> v1.9.0 - **github.com/containerd/containerd/v2** v2.0.5 -> v2.1.4 - **github.com/containernetworking/plugins** v1.6.2 -> v1.7.1 - **github.com/cosi-project/runtime** v0.10.2 -> v1.10.7 - **github.com/detailyang/go-fallocate** [`432fa64`](https://redirect.github.com/siderolabs/talos/commit/432fa640bd2e) ***new*** - **github.com/docker/cli** v28.0.4 -> v28.3.3 - **github.com/docker/docker** v28.0.4 -> v28.3.3 - **github.com/equinix-ms/go-vmw-guestrpc** v0.1.1 ***new*** - **github.com/foxboron/go-uefi** [`69fb7db`](https://redirect.github.com/siderolabs/talos/commit/69fb7dba244f) -> [`a3183a1`](https://redirect.github.com/siderolabs/talos/commit/a3183a1bfc84) - **github.com/g0rbe/go-chattr** v1.0.1 ***new*** - **github.com/google/cadvisor** v0.52.1 -> v0.53.0 - **github.com/google/cel-go** v0.24.1 -> v0.26.0 - **github.com/google/go-containerregistry** v0.20.3 -> v0.20.6 - **github.com/google/go-tpm** v0.9.3 -> v0.9.5 - **github.com/grpc-ecosystem/go-grpc-middleware/v2** v2.3.1 -> v2.3.2 - **github.com/hetznercloud/hcloud-go/v2** v2.21.0 -> v2.22.0 - **github.com/jsimonetti/rtnetlink/v2** v2.0.3 -> v2.0.5 - **github.com/klauspost/cpuid/v2** v2.2.10 -> v2.3.0 - **github.com/linode/go-metadata** v0.2.1 -> v0.2.2 - **github.com/miekg/dns** v1.1.65 -> v1.1.67 - **github.com/pkg/xattr** v0.4.10 -> v0.4.12 - **github.com/prometheus/procfs** v0.16.0 -> v0.17.0 - **github.com/rivo/tview** [`949945f`](https://redirect.github.com/siderolabs/talos/commit/949945f8d922) -> [`a4a78f1`](https://redirect.github.com/siderolabs/talos/commit/a4a78f1e05cb) - **github.com/safchain/ethtool** v0.5.10 -> v0.6.1 - **github.com/scaleway/scaleway-sdk-go** v1.0.0-beta.33 -> v1.0.0-beta.34 - **github.com/siderolabs/crypto** v0.5.1 -> v0.6.3 - **github.com/siderolabs/discovery-client** v0.1.11 -> v0.1.13 - **github.com/siderolabs/gen** v0.8.0 -> v0.8.5 - **github.com/siderolabs/go-blockdevice/v2** v2.0.16 -> v2.0.19 - **github.com/siderolabs/go-circular** v0.2.2 -> v0.2.3 - **github.com/siderolabs/go-kubernetes** v0.2.21 -> v0.2.25 - **github.com/siderolabs/go-pcidb** v0.3.1 -> v0.3.2 - **github.com/siderolabs/pkgs** v1.10.0-5-g48dba3e -> v1.11.0-6-ga94734c - **github.com/siderolabs/siderolink** v0.3.13 -> v0.3.15 - **github.com/siderolabs/talos/pkg/machinery** v1.10.0 -> v1.11.0-beta.1 - **github.com/siderolabs/tools** v1.10.0 -> v1.11.0 - **github.com/spf13/pflag** v1.0.6 -> v1.0.7 - **go.etcd.io/etcd/api/v3** v3.5.21 -> v3.6.4 - **go.etcd.io/etcd/client/pkg/v3** v3.5.21 -> v3.6.4 - **go.etcd.io/etcd/client/v3** v3.5.21 -> v3.6.4 - **go.etcd.io/etcd/etcdutl/v3** v3.5.21 -> v3.6.4 - **golang.org/x/net** v0.39.0 -> v0.42.0 - **golang.org/x/oauth2** v0.29.0 -> v0.30.0 - **golang.org/x/sync** v0.13.0 -> v0.16.0 - **golang.org/x/sys** v0.32.0 -> v0.34.0 - **golang.org/x/term** v0.31.0 -> v0.33.0 - **golang.org/x/text** v0.24.0 -> v0.27.0 - **golang.org/x/time** v0.11.0 -> v0.12.0 - **google.golang.org/grpc** </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:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
bfb79e361c | fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.31 → v3.0.32 (clustertool) (#38010) | ||
|
|
a728a22e7c |
fix(deps): update kubernetes packages v0.33.2 → v0.33.3 (clustertool) (patch) (#37659)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [k8s.io/api](https://redirect.github.com/kubernetes/api) | `v0.33.2` -> `v0.33.3` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/apimachinery](https://redirect.github.com/kubernetes/apimachinery) | `v0.33.2` -> `v0.33.3` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [k8s.io/client-go](https://redirect.github.com/kubernetes/client-go) | `v0.33.2` -> `v0.33.3` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>kubernetes/api (k8s.io/api)</summary> ### [`v0.33.3`](https://redirect.github.com/kubernetes/api/compare/v0.33.2...v0.33.3) [Compare Source](https://redirect.github.com/kubernetes/api/compare/v0.33.2...v0.33.3) </details> <details> <summary>kubernetes/apimachinery (k8s.io/apimachinery)</summary> ### [`v0.33.3`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.33.2...v0.33.3) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.33.2...v0.33.3) </details> <details> <summary>kubernetes/client-go (k8s.io/client-go)</summary> ### [`v0.33.3`](https://redirect.github.com/kubernetes/client-go/compare/v0.33.2...v0.33.3) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.33.2...v0.33.3) </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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
451e61eba5 | fix(deps): update module sigs.k8s.io/yaml v1.5.0 → v1.6.0 (clustertool) (#37856) | ||
|
|
28eb045c34 |
fix(deps): update module sigs.k8s.io/kustomize/api v0.20.0 → v0.20.1 (clustertool) (#37787)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [sigs.k8s.io/kustomize/api](https://redirect.github.com/kubernetes-sigs/kustomize) | `v0.20.0` -> `v0.20.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
2c7d2ba255 |
fix(deps): update module sigs.k8s.io/kustomize/kyaml v0.20.0 → v0.20.1 (clustertool) (#37788)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [sigs.k8s.io/kustomize/kyaml](https://redirect.github.com/kubernetes-sigs/kustomize) | `v0.20.0` -> `v0.20.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
1da12d805c |
fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.30 → v3.0.31 (clustertool) (#37785)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/budimanjojo/talhelper/v3](https://redirect.github.com/budimanjojo/talhelper) | `v3.0.30` -> `v3.0.31` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>budimanjojo/talhelper (github.com/budimanjojo/talhelper/v3)</summary> ### [`v3.0.31`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.31) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.30...v3.0.31) #### Changelog - [`53ab3b8`](https://redirect.github.com/budimanjojo/talhelper/commit/53ab3b8537dffff44d645c373d86880db5442802) chore(container): update alpine docker tag to v3.22.1 - [`1c5d9d6`](https://redirect.github.com/budimanjojo/talhelper/commit/1c5d9d68bfef5d7d1c07689d3d0d45372b316018) chore(container): update golangci/golangci-lint docker tag to v2.2.2 - [`fbf6089`](https://redirect.github.com/budimanjojo/talhelper/commit/fbf6089203b3556b0a929f742985997630859f47) chore(container): update golangci/golangci-lint docker tag to v2.3.0 - [`3e4be60`](https://redirect.github.com/budimanjojo/talhelper/commit/3e4be60a99947186b55237ca7237e472ef3280a1) chore(container): update goreleaser/goreleaser docker tag to v2.11.0 - [`b73876e`](https://redirect.github.com/budimanjojo/talhelper/commit/b73876efeaadf076dbf1a91aa54b9a782c458083) chore(container): update mcr.microsoft.com/devcontainers/go:1.24-bookworm docker digest to [`1202710`](https://redirect.github.com/budimanjojo/talhelper/commit/1202710) ([#​1085](https://redirect.github.com/budimanjojo/talhelper/issues/1085)) - [`81b9082`](https://redirect.github.com/budimanjojo/talhelper/commit/81b9082f6e231c86d547f8a73c4bf4d3f13261fa) chore(container): update registry.k8s.io/kubectl docker tag to v1.33.3 - [`83e4388`](https://redirect.github.com/budimanjojo/talhelper/commit/83e4388702a9d9d81cd8732bd81bc725eec8c0c1) chore(github-action): update renovatebot/github-action action to v43.0.3 - [`a931b91`](https://redirect.github.com/budimanjojo/talhelper/commit/a931b91cd929b4aaa3aa48c0c94be9bd08cc2405) chore(github-action): update renovatebot/github-action action to v43.0.4 - [`d179e2a`](https://redirect.github.com/budimanjojo/talhelper/commit/d179e2abffac58050c935bd7cf6f9047b8b6cb23) chore(schema): update talconfig.yaml JSON schema ([#​1100](https://redirect.github.com/budimanjojo/talhelper/issues/1100)) - [`ab4eba6`](https://redirect.github.com/budimanjojo/talhelper/commit/ab4eba668934ddade8afc2d739a7d517b9effc58) chore(schema): update talos-extensions.yaml JSON schema - [`0f7d528`](https://redirect.github.com/budimanjojo/talhelper/commit/0f7d528c0386cede2b0d4bbfd6dcd2dd28f0af79) chore(schema): update talos-extensions.yaml JSON schema - [`1499623`](https://redirect.github.com/budimanjojo/talhelper/commit/14996236c5412ed3aadebadb251193b0585414c7) chore(schema): update talos-extensions.yaml JSON schema ([#​1087](https://redirect.github.com/budimanjojo/talhelper/issues/1087)) - [`c2389a1`](https://redirect.github.com/budimanjojo/talhelper/commit/c2389a1d344c51bfc460b96a175ddad8041ddec0) chore(schema): update talos-extensions.yaml JSON schema ([#​1090](https://redirect.github.com/budimanjojo/talhelper/issues/1090)) - [`e16629e`](https://redirect.github.com/budimanjojo/talhelper/commit/e16629ecf0373c295c2b4de818937ac4571be17c) chore(schema): update talos-extensions.yaml JSON schema ([#​1093](https://redirect.github.com/budimanjojo/talhelper/issues/1093)) - [`94ff3f0`](https://redirect.github.com/budimanjojo/talhelper/commit/94ff3f07923b635a7ae698accd064fb649426e5a) chore(schema): update talos-extensions.yaml JSON schema ([#​1094](https://redirect.github.com/budimanjojo/talhelper/issues/1094)) - [`0465066`](https://redirect.github.com/budimanjojo/talhelper/commit/046506632386bf385242f24312f662346ddc5e6a) feat(config): add `encryption` field for `userVolumes` - [`6347dd9`](https://redirect.github.com/budimanjojo/talhelper/commit/6347dd9e9a4af2650aceadf75c5a6007e1d7984b) feat: update Scoop for talhelper version v3.0.30 - [`f9a56fb`](https://redirect.github.com/budimanjojo/talhelper/commit/f9a56fbed0083816803cebcbe21d9df8bc93fec3) feat: update flake ([#​1079](https://redirect.github.com/budimanjojo/talhelper/issues/1079)) - [`90a2ba6`](https://redirect.github.com/budimanjojo/talhelper/commit/90a2ba608dbfdacd35ef671b68a3af44a68fcb03) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.30 - [`82bc96e`](https://redirect.github.com/budimanjojo/talhelper/commit/82bc96ef245a703a3c4c724cb796aa77fce7ad78) fix(deps): update module golang.org/x/mod to v0.26.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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
86eb81df12 |
fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.11.0-alpha.3 → v1.11.0-beta.0 (clustertool) (#37786)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | `v1.11.0-alpha.3` -> `v1.11.0-beta.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.0-beta.0`](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0-beta.0) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-alpha.3...v1.11.0-beta.0) #### [Talos 1.11.0-beta.0](https://redirect.github.com/siderolabs/talos/releases/tag/v1.11.0-beta.0) (2025-07-22) Welcome to the v1.11.0-beta.0 release of Talos!\ *This is a pre-release of Talos* Please try out the release binaries and report any issues at https://github.com/siderolabs/talos/issues. ##### Azure Talos on Azure now defaults to MTU of 1400 bytes for the `eth0` interface to avoid packet fragmentation issues. The default MTU can be overriden with machine configuration. ##### Boot Talos increases the boot partition size to 2 GiB to accommodate larger images (with many system extensions included). ##### Kernel Command Line Talos now exposes the kernel command line as a KernelCmdline resource (`talosctl get cmdline`). ##### Disk Wipe Talos now supports `talosctl disk wipe` command in maintenance mode (`talosctl disk wipe <disk> --insecure`). ##### ETCD v3.6.x Talos won't default to ETCD v3.6.x in the next release due to bug in the v3.6.x series that causes data corruption in some cases. The default version will be kept at v3.5.x for now, but users can still use v3.6.x by explicitly specifying it in the configuration. See [https://github.com/etcd-io/etcd/issues/20340](https://redirect.github.com/etcd-io/etcd/issues/20340) ##### ETCD downgrade API Added ETCD downgrade API mimicking the ETCD API and etcdctl interfaces. This API allows to downgrade ETCD cluster (storage format) to a previous version. ##### IMA support removed Talos now drops the IMA (Integrity Measurement Architecture) support. This feature was not used in Talos for any meaningful security purpose and has historically caused performance issues. See [#​11133](https://redirect.github.com/siderolabs/talos/issues/11133) for more details. ##### Kubernetes Version Validation Talos now validates Kubernetes version in the image submitted in the machine configuration. Previously this check was performed only on upgrade, but now it is consistently applied to upgrade, initial provisioning, and machine configuration updates. This implies that all image references should contain the tag, even if the image is pinned by digest. ##### Qemu provisioner on MacOS On MacOS `talosctl cluster create` command now supports the Qemu provisioner in addition to the Docker provisioner. ##### Kernel Modules Talosctl now returns the loaded modules, not the modules configured to be loaded (`talosctl get modules`). ##### SBOM Talos now publishes Software Bill of Materials (SBOM) in the SPDX format. The SBOM is available in the `/usr/share/sbom` directory on the machine and can be retrieved using `talosctl get sbom`. ##### Swap Suport Talos now supports swap on block devices. This feature can be enable by using [SwapVolumeConfig](https://www.talos.dev/v1.11/reference/configuration/block/swapvolumeconfig/) document in the machine configuration. ##### Component Updates Linux: 6.12.38 Kubernetes: 1.34.0-beta.0 runc: 1.3.0 containerd: 2.1.3 Flannel CNI plugin: 1.7.1-flannel1 Flannel: 0.27.2 CoreDNS: 1.12.2 xfsprogs: 6.15.0 systemd-udevd and systemd-boot: 257.7 lvm2: 2.03.33 cryptsetup: 2.8.0 Talos is built with Go 1.24.5. ##### VMware Talos VMWare platform now supports `arm64` architecture in addition to `amd64`. ##### Volumes Talos now supports [raw user volumes](https://www.talos.dev/v1.11/talos-guides/configuration/disk-management/raw/), allowing to allocate unformatted disk space as partition. In addition to that, support for [existing volumes](https://www.talos.dev/v1.11/talos-guides/configuration/disk-management/existing/) has been added, allowing to mount existing partitions without formatting them. ##### Zswap Support Talos now supports zswap, a compressed cache for swap pages. This feature can be enabled by using [ZswapConfig](https://www.talos.dev/v1.11/reference/configuration/block/zswapconfig/) document in the machine configuration. ##### Contributors - Andrey Smirnov - Noel Georgi - Dmitrii Sharshakov - Orzelius - Mateusz Urbanek - Orzelius - Justin Garrison - Spencer Smith - Steve Francis - Till Hoffmann - Utku Ozdemir - Artem Chernyshev - Michael Robbins - Alexandre GV - Andrew Longwill - Marat Bakeev - Olav Thoresen - Thibault VINCENT - Alvaro "Chamo" Linares Cabre - Brian Brookman - Bryan Mora - Clément Nussbaumer - Damien - David R - Dennis Marttinen - Dmitriy Matrenichev - Joakim Nohlgård - Jorik Jonker - Justin Seely - Luke Cousins - Marco Mihai Condrache - Markus Reiter - Martyn Ranyard - Michael Moerz - Mike - Oguz Kilcan - Tan Siewert - Tom Keur - jvanthienen-gluo - killcity - yashutanu ##### Changes <details><summary>222 commits</summary> <p> - [@​`85e7989`](https://redirect.github.com/siderolabs/talos/commit/85e7989cf) release(v1.11.0-beta.0): prepare release - [@​`3039162`](https://redirect.github.com/siderolabs/talos/commit/3039162dc) feat: update Flannel to v0.27.2 - [@​`7e6052e`](https://redirect.github.com/siderolabs/talos/commit/7e6052e63) feat: increase boot partition to 2 GiB - [@​`cb7ca17`](https://redirect.github.com/siderolabs/talos/commit/cb7ca17bb) feat: implement ExistingVolumeConfig - [@​`a857c69`](https://redirect.github.com/siderolabs/talos/commit/a857c696f) chore(machined): remove deprecated Endpoints - [@​`a60101c`](https://redirect.github.com/siderolabs/talos/commit/a60101c55) fix: fill serial using helpers - [@​`5420e99`](https://redirect.github.com/siderolabs/talos/commit/5420e9979) refactor: output default selection for profiles - [@​`023a24c`](https://redirect.github.com/siderolabs/talos/commit/023a24cd4) test: use Grype to scan SBOM for vulnerabilities - [@​`96896fd`](https://redirect.github.com/siderolabs/talos/commit/96896fddb) chore: build less images by default - [@​`75b5dec`](https://redirect.github.com/siderolabs/talos/commit/75b5dec06) fix: sd-boot kexec with disk images - [@​`10546d6`](https://redirect.github.com/siderolabs/talos/commit/10546d6f8) feat: update Kuberentes 1.34.0-beta.0 - [@​`3f35b83`](https://redirect.github.com/siderolabs/talos/commit/3f35b83ae) fix: ignore absent extensions SBOM directory - [@​`9920da3`](https://redirect.github.com/siderolabs/talos/commit/9920da3e1) feat: add etcd downgrade API - [@​`c386822`](https://redirect.github.com/siderolabs/talos/commit/c38682279) feat: bump pkgs and tools, read extensions' SBOMs, rekres - [@​`9c0d270`](https://redirect.github.com/siderolabs/talos/commit/9c0d2706c) docs: add release notes about v3.6.x bug - [@​`d219942`](https://redirect.github.com/siderolabs/talos/commit/d21994210) test: refactor various merge controller tests - [@​`da5a444`](https://redirect.github.com/siderolabs/talos/commit/da5a4449f) feat: implement raw volume support - [@​`41adda1`](https://redirect.github.com/siderolabs/talos/commit/41adda1cf) docs: add secure boot setup mode note for Xen - [@​`993b4ad`](https://redirect.github.com/siderolabs/talos/commit/993b4ade8) docs: fix typo in hugo config: pre-releaase - [@​`130b7fd`](https://redirect.github.com/siderolabs/talos/commit/130b7fd6e) test: fix flaky TestDNS - [@​`35b45ae`](https://redirect.github.com/siderolabs/talos/commit/35b45ae6e) feat(talosctl): support tpm operation on mac - [@​`24628db`](https://redirect.github.com/siderolabs/talos/commit/24628db20) feat: update Kubernetes to v1.34.0-alpha.3 - [@​`ff68286`](https://redirect.github.com/siderolabs/talos/commit/ff68286d1) feat: include hwrandom modules - [@​`a5b07c9`](https://redirect.github.com/siderolabs/talos/commit/a5b07c9a5) test: split tests and lint from the default pipeline - [@​`a957ef4`](https://redirect.github.com/siderolabs/talos/commit/a957ef416) feat: add SBOMs to the imager container - [@​`506212a`](https://redirect.github.com/siderolabs/talos/commit/506212a71) feat: include AMD encrypted mem modules into base - [@​`a966321`](https://redirect.github.com/siderolabs/talos/commit/a966321cc) fix: add more bootloader probe logs on upgrade - [@​`b38fa56`](https://redirect.github.com/siderolabs/talos/commit/b38fa568a) feat: add validation for secrets bundle - [@​`2d89bcc`](https://redirect.github.com/siderolabs/talos/commit/2d89bcc71) feat: bump Linux, Go and other packages - [@​`0b8c180`](https://redirect.github.com/siderolabs/talos/commit/0b8c180b8) fix: rename instances to referenceCount - [@​`378fe4f`](https://redirect.github.com/siderolabs/talos/commit/378fe4f2f) feat: support writing EFI boot order - [@​`9f07926`](https://redirect.github.com/siderolabs/talos/commit/9f0792632) fix: improve volume provisioning errors - [@​`b8fcf3c`](https://redirect.github.com/siderolabs/talos/commit/b8fcf3c71) fix: change module instance evaluation - [@​`d680e56`](https://redirect.github.com/siderolabs/talos/commit/d680e560d) docs: create FUNDING.yml - [@​`6415055`](https://redirect.github.com/siderolabs/talos/commit/641505584) feat: support project quota support for user volumes - [@​`52656cc`](https://redirect.github.com/siderolabs/talos/commit/52656cc3c) feat: allow taloscl disk wipe in maintenance mode - [@​`8505794`](https://redirect.github.com/siderolabs/talos/commit/850579448) feat: export SBOM as resources - [@​`4f3a2ff`](https://redirect.github.com/siderolabs/talos/commit/4f3a2ffab) test: update unit-test runner - [@​`d531b68`](https://redirect.github.com/siderolabs/talos/commit/d531b682c) fix: provide FIPS 140-3 compliance - [@​`3e3129d`](https://redirect.github.com/siderolabs/talos/commit/3e3129d36) feat: include packages into SBOM - [@​`54bd50b`](https://redirect.github.com/siderolabs/talos/commit/54bd50be3) fix: talos endpoint might not be created in Kubernetes - [@​`8789a02`](https://redirect.github.com/siderolabs/talos/commit/8789a02c3) feat: present loaded kernel modules - [@​`33ecbae`](https://redirect.github.com/siderolabs/talos/commit/33ecbaec6) test: update apply config tests - [@​`7d2fd39`](https://redirect.github.com/siderolabs/talos/commit/7d2fd390c) chore: bump Talos version in the Image Factory CI pipeline - [@​`de77f21`](https://redirect.github.com/siderolabs/talos/commit/de77f2142) docs: add example for fluentbit config - [@​`1f1f781`](https://redirect.github.com/siderolabs/talos/commit/1f1f78106) fix: add limited retries for not found images - [@​`3d6a2c1`](https://redirect.github.com/siderolabs/talos/commit/3d6a2c14e) chore: generate and upload signatures on release - [@​`3801413`](https://redirect.github.com/siderolabs/talos/commit/380141330) feat: expose kernel cmdline as a resource - [@​`4c6b3b1`](https://redirect.github.com/siderolabs/talos/commit/4c6b3b14d) docs: document disabling SELinux - [@​`3a6e5a7`](https://redirect.github.com/siderolabs/talos/commit/3a6e5a71e) feat: add talosctl mulitarch bundle image - [@​`be671ee`](https://redirect.github.com/siderolabs/talos/commit/be671ee6d) chore: add sbom step to the release pipeline - [@​`7fd0e8f`](https://redirect.github.com/siderolabs/talos/commit/7fd0e8fc7) release(v1.11.0-alpha.3): prepare release - [@​`777335f`](https://redirect.github.com/siderolabs/talos/commit/777335f23) chore: improve cloud image uploader resilience - [@​`14e5eee`](https://redirect.github.com/siderolabs/talos/commit/14e5eee7d) release(v1.11.0-alpha.2): prepare release - [@​`1e5a008`](https://redirect.github.com/siderolabs/talos/commit/1e5a008f5) fix: hold user volume mount point across kubelet restarts - [@​`cdad505`](https://redirect.github.com/siderolabs/talos/commit/cdad50590) docs: user volumes and kubernetes upgrade updates - [@​`c880835`](https://redirect.github.com/siderolabs/talos/commit/c880835c8) feat: implement zswap support - [@​`7f0300f`](https://redirect.github.com/siderolabs/talos/commit/7f0300f10) feat: update dependencies, Kubernetes 1.34.0-alpha.2 - [@​`61afbe3`](https://redirect.github.com/siderolabs/talos/commit/61afbe3d2) docs: add vc4 documentation - [@​`b9dbdc8`](https://redirect.github.com/siderolabs/talos/commit/b9dbdc8e7) fix: etcd recover with multiple advertised addresses - [@​`19d94c3`](https://redirect.github.com/siderolabs/talos/commit/19d94c357) feat: update Linux to 6.12.35, containerd to 2.1.3 - [@​`44a1fc3`](https://redirect.github.com/siderolabs/talos/commit/44a1fc3b7) fix: treat context canceled as expected error on image pull - [@​`4da2dd5`](https://redirect.github.com/siderolabs/talos/commit/4da2dd537) feat: enforce Kubernetes version compatibility - [@​`6c7f820`](https://redirect.github.com/siderolabs/talos/commit/6c7f8201a) fix: set default MTU on Azure to 1400 - [@​`091cd69`](https://redirect.github.com/siderolabs/talos/commit/091cd6989) docs: small yaml typo fix - [@​`66ecbd4`](https://redirect.github.com/siderolabs/talos/commit/66ecbd48f) docs: update support matrix with omni version - [@​`c948d76`](https://redirect.github.com/siderolabs/talos/commit/c948d7617) docs: minor fixes for creating kernel modules - [@​`cc14c4a`](https://redirect.github.com/siderolabs/talos/commit/cc14c4a25) docs: add docs for creating kernel modules - [@​`93bcd3b`](https://redirect.github.com/siderolabs/talos/commit/93bcd3b56) docs: create SBOM for Go dependencies - [@​`38c4ce4`](https://redirect.github.com/siderolabs/talos/commit/38c4ce415) feat: add user-space InfiniBand modules - [@​`251dc93`](https://redirect.github.com/siderolabs/talos/commit/251dc934f) feat: arm64 support for platform vmware - [@​`09b3ad5`](https://redirect.github.com/siderolabs/talos/commit/09b3ad577) feat: update containerd to 2.1.2 - [@​`0767dd0`](https://redirect.github.com/siderolabs/talos/commit/0767dd07b) chore: enable --with-siderolink-agent on Darwin - [@​`9642198`](https://redirect.github.com/siderolabs/talos/commit/9642198d7) fix: userspace wireguard library overrides - [@​`208f076`](https://redirect.github.com/siderolabs/talos/commit/208f0763e) chore: fix talosctl build on non-Linux hosts - [@​`87421af`](https://redirect.github.com/siderolabs/talos/commit/87421af87) docs: expand documentation description - [@​`d32ccfa`](https://redirect.github.com/siderolabs/talos/commit/d32ccfa59) feat: implement swap support - [@​`8f5cf81`](https://redirect.github.com/siderolabs/talos/commit/8f5cf81db) docs: update kvm documentation - [@​`8e84c8b`](https://redirect.github.com/siderolabs/talos/commit/8e84c8b0f) fix: nil pointer deref in quirk - [@​`6e74a36`](https://redirect.github.com/siderolabs/talos/commit/6e74a3676) docs: aad ery basic details on how to run on scaleway - [@​`260d1bc`](https://redirect.github.com/siderolabs/talos/commit/260d1bc9a) fix: correctl close encrypted volumes - [@​`034ef42`](https://redirect.github.com/siderolabs/talos/commit/034ef42af) fix: update siderolink library for wgtunnel panic fix - [@​`3035744`](https://redirect.github.com/siderolabs/talos/commit/3035744a8) fix: correctly predict interface name on darwin - [@​`cfcfad3`](https://redirect.github.com/siderolabs/talos/commit/cfcfad3c4) chore: move `checkUnknownKeys` function to `github.com/siderolabs/gen` - [@​`5ecc53c`](https://redirect.github.com/siderolabs/talos/commit/5ecc53c69) docs: add macos section to developing-talos.md - [@​`b5b3530`](https://redirect.github.com/siderolabs/talos/commit/b5b35307f) chore: update Go to 1.24.4 - [@​`fde772d`](https://redirect.github.com/siderolabs/talos/commit/fde772d8d) feat: update Flannel to 0.27.0 - [@​`81ca279`](https://redirect.github.com/siderolabs/talos/commit/81ca27949) release(v1.11.0-alpha.1): prepare release - [@​`58a868e`](https://redirect.github.com/siderolabs/talos/commit/58a868e68) chore: fix renovate config, add release-gate label - [@​`a59aaee`](https://redirect.github.com/siderolabs/talos/commit/a59aaee84) feat: bump dependencies, Linux 6.12.31 - [@​`e954ee3`](https://redirect.github.com/siderolabs/talos/commit/e954ee30a) docs: typo correction: LongHorn -> Longhorn - [@​`aab0533`](https://redirect.github.com/siderolabs/talos/commit/aab053394) fix: mashal resource byte slices as strings in YAML - [@​`c7d4191`](https://redirect.github.com/siderolabs/talos/commit/c7d4191e7) fix: rework the way CRI config generation is waited for - [@​`0114183`](https://redirect.github.com/siderolabs/talos/commit/0114183de) docs: update `lastRelease` to 1.10.3 - [@​`938b076`](https://redirect.github.com/siderolabs/talos/commit/938b0760a) docs: update issue template - [@​`2a7b735`](https://redirect.github.com/siderolabs/talos/commit/2a7b735b2) feat: drop IMA support - [@​`2d5a805`](https://redirect.github.com/siderolabs/talos/commit/2d5a805b0) fix: typo in DiscoverdVolume spec - [@​`60c12ba`](https://redirect.github.com/siderolabs/talos/commit/60c12bad9) feat: support nocloud include url userdata directive - [@​`0fd622c`](https://redirect.github.com/siderolabs/talos/commit/0fd622c82) fix(talosctl): correct --help output for dashboard command - [@​`a90c936`](https://redirect.github.com/siderolabs/talos/commit/a90c936a1) feat: support qemu provisioner on darwin - [@​`5322ca0`](https://redirect.github.com/siderolabs/talos/commit/5322ca0d3) docs: update overlay docs - [@​`a60b632`](https://redirect.github.com/siderolabs/talos/commit/a60b6322d) fix(ci): drop nebula from extensions test - [@​`dbbb59a`](https://redirect.github.com/siderolabs/talos/commit/dbbb59a67) docs: add note for default `dataDirHostPath` for Rook - [@​`e260543`](https://redirect.github.com/siderolabs/talos/commit/e26054378) docs: macos qemu provider - [@​`5d02240`](https://redirect.github.com/siderolabs/talos/commit/5d0224093) docs: use the cilium-cli image repo in the job installation manifest - [@​`ff80e4c`](https://redirect.github.com/siderolabs/talos/commit/ff80e4cca) docs: fix CIDR name - [@​`a5fd15e`](https://redirect.github.com/siderolabs/talos/commit/a5fd15e8b) fix(ci): reproducibility test - [@​`8f8963e`](https://redirect.github.com/siderolabs/talos/commit/8f8963e50) docs: update Nexxen brand - [@​`c6b8687`](https://redirect.github.com/siderolabs/talos/commit/c6b86872d) fix(ci): iso reproducibility file permissions - [@​`995a1de`](https://redirect.github.com/siderolabs/talos/commit/995a1dec4) chore: add a check for unsupported darwin flags - [@​`9db5d0c`](https://redirect.github.com/siderolabs/talos/commit/9db5d0c97) fix: nocloud metadata for hostname - [@​`3cf3256`](https://redirect.github.com/siderolabs/talos/commit/3cf325654) feat: modularize more arm64 kernel - [@​`3524745`](https://redirect.github.com/siderolabs/talos/commit/3524745cc) fix: allow any PKI in Talos API - [@​`f438cdb`](https://redirect.github.com/siderolabs/talos/commit/f438cdb09) chore: use custom dhcpd server on macos qemu - [@​`11c17fb`](https://redirect.github.com/siderolabs/talos/commit/11c17fb9a) fix: metal-iso reproducibility - [@​`7fcb89e`](https://redirect.github.com/siderolabs/talos/commit/7fcb89ee3) chore: add darwin vmnet qemu support - [@​`fc12373`](https://redirect.github.com/siderolabs/talos/commit/fc1237343) chore: clean up `/usr/bin` - [@​`b551f32`](https://redirect.github.com/siderolabs/talos/commit/b551f32ce) feat: update containerd to v2.1.1 - [@​`67f4154`](https://redirect.github.com/siderolabs/talos/commit/67f4154f9) docs: update disk-management.md - [@​`0cb137a`](https://redirect.github.com/siderolabs/talos/commit/0cb137ad7) fix: make disk size check work on old Talos - [@​`7c057ed`](https://redirect.github.com/siderolabs/talos/commit/7c057edd5) fix: use vmdk-convert istead of qemu-img to create VMDK for OVA files - [@​`cd618da`](https://redirect.github.com/siderolabs/talos/commit/cd618dad0) chore: update the go-blockdevice package - [@​`0b99631`](https://redirect.github.com/siderolabs/talos/commit/0b99631a0) fix: bump apid memory limit - [@​`5451f35`](https://redirect.github.com/siderolabs/talos/commit/5451f35b1) docs: update virtualbox - [@​`bd4d202`](https://redirect.github.com/siderolabs/talos/commit/bd4d202a5) refactor: bring owned.State from COSI to simplify tests - [@​`0b96df5`](https://redirect.github.com/siderolabs/talos/commit/0b96df574) feat: update containerd to 2.1.0 - [@​`e1a9391`](https://redirect.github.com/siderolabs/talos/commit/e1a939144) docs: fix formatting in disk encryption - [@​`7a817df`](https://redirect.github.com/siderolabs/talos/commit/7a817df1c) docs: fix typo - [@​`f35b213`](https://redirect.github.com/siderolabs/talos/commit/f35b213b2) test: fix DHCP unicast failures in QEMU environment - [@​`7064bbf`](https://redirect.github.com/siderolabs/talos/commit/7064bbf05) docs: fix vmware factory URL - [@​`78c33bc`](https://redirect.github.com/siderolabs/talos/commit/78c33bcdb) feat: update default Kubernetes to v1.33.1 - [@​`da67952`](https://redirect.github.com/siderolabs/talos/commit/da6795266) fix: disable automatic MAC assignment to bridge interfaces - [@​`ca34adf`](https://redirect.github.com/siderolabs/talos/commit/ca34adf58) chore(ci): drop azure keys - [@​`ea5de19`](https://redirect.github.com/siderolabs/talos/commit/ea5de19fa) fix: selinux detection - [@​`52c76ea`](https://redirect.github.com/siderolabs/talos/commit/52c76ea3a) fix: consistently apply dynamic grpc proxy dialer - [@​`aa9569e`](https://redirect.github.com/siderolabs/talos/commit/aa9569e5d) chore: refactor cluster create cmd flags - [@​`1161faa`](https://redirect.github.com/siderolabs/talos/commit/1161faa05) docs: fix typo in Cilium docs - [@​`164745e`](https://redirect.github.com/siderolabs/talos/commit/164745e44) docs: remove `preserve` flag mention in upgrade notes - [@​`9a2ecba`](https://redirect.github.com/siderolabs/talos/commit/9a2ecbaaf) fix: makefile operating system param - [@​`118aa69`](https://redirect.github.com/siderolabs/talos/commit/118aa69d6) chore: update cloud-image-uploader dependencies - [@​`acdd721`](https://redirect.github.com/siderolabs/talos/commit/acdd721cf) chore: dump qemu pachine ipam records on darwin - [@​`bb90945`](https://redirect.github.com/siderolabs/talos/commit/bb9094534) chore: rotate aws iam credentials - [@​`0bfa4ae`](https://redirect.github.com/siderolabs/talos/commit/0bfa4ae1b) chore: update deps for cloud-image-uploader - [@​`956d7c7`](https://redirect.github.com/siderolabs/talos/commit/956d7c71b) chore: update sops keys - [@​`e2f819d`](https://redirect.github.com/siderolabs/talos/commit/e2f819d88) test: fix the process runner log collection - [@​`fdac4cf`](https://redirect.github.com/siderolabs/talos/commit/fdac4cfb9) fix: upgrade go-kubernetes for DRA flag bug - [@​`09d88e1`](https://redirect.github.com/siderolabs/talos/commit/09d88e1e8) test: fix some flaky tests - [@​`ec1f41a`](https://redirect.github.com/siderolabs/talos/commit/ec1f41a94) chore: make qemu config server bind work on darwin - [@​`980f4d2`](https://redirect.github.com/siderolabs/talos/commit/980f4d2b9) feat: bump dependencies - [@​`9525933`](https://redirect.github.com/siderolabs/talos/commit/95259337e) fix: k8s 1.32->1.33 upgrade check - [@​`c3c326b`](https://redirect.github.com/siderolabs/talos/commit/c3c326b40) fix: improve volume mounter automaton - [@​`918b94d`](https://redirect.github.com/siderolabs/talos/commit/918b94d9a) refactor: rewrite disk size check - [@​`ab7e693`](https://redirect.github.com/siderolabs/talos/commit/ab7e693d7) chore: make qemu lb address bind work on darwin - [@​`97ceab0`](https://redirect.github.com/siderolabs/talos/commit/97ceab001) fix: multiple logic issues in platform network config controller - [@​`46349a9`](https://redirect.github.com/siderolabs/talos/commit/46349a9df) docs: remove azure image gallery instructions - [@​`0cfcdd3`](https://redirect.github.com/siderolabs/talos/commit/0cfcdd3de) docs: fix search on base talos.dev - [@​`78646b4`](https://redirect.github.com/siderolabs/talos/commit/78646b4e0) docs: add registryd debug command - [@​`c6824c2`](https://redirect.github.com/siderolabs/talos/commit/c6824c211) fix: deny apply config requests without v1alpha1 in "normal" mode - [@​`7df0408`](https://redirect.github.com/siderolabs/talos/commit/7df0408e4) fix: interactive installer config gen - [@​`881c5d6`](https://redirect.github.com/siderolabs/talos/commit/881c5d62b) fix: suppress duplicate platform config updates - [@​`66d7788`](https://redirect.github.com/siderolabs/talos/commit/66d77888e) fix: replace downloaded asset paths correctly in cluster create cmd - [@​`6bd6c9b`](https://redirect.github.com/siderolabs/talos/commit/6bd6c9b5a) fix: generate iso greater than 4 gig - [@​`ac14032`](https://redirect.github.com/siderolabs/talos/commit/ac140324e) fix: skip PCR extension if TPM1.2 is found - [@​`09ef1f8`](https://redirect.github.com/siderolabs/talos/commit/09ef1f8a4) fix: ignore http proxy on grpc socket dial - [@​`22a72dc`](https://redirect.github.com/siderolabs/talos/commit/22a72dc80) chore: split options between three structs - [@​`22c34a5`](https://redirect.github.com/siderolabs/talos/commit/22c34a50f) fix(ci): provision cron jobs - [@​`b3b20ef`](https://redirect.github.com/siderolabs/talos/commit/b3b20eff3) fix: containerd crashing with sigsegv - [@​`f7891c3`](https://redirect.github.com/siderolabs/talos/commit/f7891c301) chore: calculate vmnet interface name preemptively - [@​`ae87edf`](https://redirect.github.com/siderolabs/talos/commit/ae87edffb) fix: drop libseccomp from rootfs - [@​`f74a805`](https://redirect.github.com/siderolabs/talos/commit/f74a805bb) fix: do correct backoff for nocloud reconcile - [@​`01bb294`](https://redirect.github.com/siderolabs/talos/commit/01bb294af) fix(ci): provision tests - [@​`e4945be`](https://redirect.github.com/siderolabs/talos/commit/e4945be3b) docs: add registryd debug command - [@​`d8c670a`](https://redirect.github.com/siderolabs/talos/commit/d8c670ad3) release(v1.11.0-alpha.0): prepare release - [@​`ace44ea`](https://redirect.github.com/siderolabs/talos/commit/ace44ea61) test: update hydrophone to 0.7.0 - [@​`3a11636`](https://redirect.github.com/siderolabs/talos/commit/3a1163692) chore: cross platform qemu preflight checks - [@​`7914fb1`](https://redirect.github.com/siderolabs/talos/commit/7914fb104) chore: move the create command to it's own package - [@​`c8e6196`](https://redirect.github.com/siderolabs/talos/commit/c8e619608) chore: prepare for release 1.11 - [@​`1299aaa`](https://redirect.github.com/siderolabs/talos/commit/1299aaa45) chore(ci): add extensions test for Youki runtime - [@​`e50ceb2`](https://redirect.github.com/siderolabs/talos/commit/e50ceb221) docs: activate Talos 1.10 docs - [@​`9d12aae`](https://redirect.github.com/siderolabs/talos/commit/9d12aaeb1) test: improve config patch test - [@​`106a656`](https://redirect.github.com/siderolabs/talos/commit/106a656b6) chore: make qemu provider build on darwin - [@​`8013aa0`](https://redirect.github.com/siderolabs/talos/commit/8013aa06c) test: replace platform metadata test - [@​`2b89c28`](https://redirect.github.com/siderolabs/talos/commit/2b89c2810) fix: relax etcd APIs RBAC requirements - [@​`1e67758`](https://redirect.github.com/siderolabs/talos/commit/1e677587c) fix: preserve kubelet image suffix - [@​`62ab8af`](https://redirect.github.com/siderolabs/talos/commit/62ab8af45) fix: disk image generation with image cache - [@​`d60626f`](https://redirect.github.com/siderolabs/talos/commit/d60626f01) fix: handle encryption type mismatch - [@​`a9109eb`](https://redirect.github.com/siderolabs/talos/commit/a9109ebd0) feat: allow SideroLink unique token in machine config - [@​`2ff3a6e`](https://redirect.github.com/siderolabs/talos/commit/2ff3a6e40) feat(kernel): add bcache kernel module to core talos - [@​`fa95a21`](https://redirect.github.com/siderolabs/talos/commit/fa95a2146) fix(ci): bios provision test - [@​`f7c5b86`](https://redirect.github.com/siderolabs/talos/commit/f7c5b86be) fix: sync PCR extension with volume provisioning lifecycle - [@​`f90c794`](https://redirect.github.com/siderolabs/talos/commit/f90c79474) chore: show bound driver in pcidevices info - [@​`8db3462`](https://redirect.github.com/siderolabs/talos/commit/8db34624c) fix: handle correctly changing platform network config - [@​`77c7a07`](https://redirect.github.com/siderolabs/talos/commit/77c7a075b) feat: update Kubernetes to 1.33.0 - [@​`74f0c48`](https://redirect.github.com/siderolabs/talos/commit/74f0c48c7) feat: add version compatibility for Talos 1.11 - [@​`c4fb7da`](https://redirect.github.com/siderolabs/talos/commit/c4fb7dad0) fix: force DNS runner shutdown on timeout - [@​`c49b483`](https://redirect.github.com/siderolabs/talos/commit/c49b4836e) docs: hetzner: add note about public iso - [@​`16ea2b1`](https://redirect.github.com/siderolabs/talos/commit/16ea2b113) docs: add what is new for 1.10 - [@​`be3f0c0`](https://redirect.github.com/siderolabs/talos/commit/be3f0c018) fix: fix Gvisor tests with containerd patch - [@​`37db132`](https://redirect.github.com/siderolabs/talos/commit/37db132b3) chore(ci): add provision test with bios - [@​`ec60b70`](https://redirect.github.com/siderolabs/talos/commit/ec60b70e7) fix: set media type to OCI for image cache layer - [@​`a471eb3`](https://redirect.github.com/siderolabs/talos/commit/a471eb31b) feat: update Linux 6.12.24, containerd 2.0.5 - [@​`54ad5b8`](https://redirect.github.com/siderolabs/talos/commit/54ad5b872) fix: extension services logging to console - [@​`601f036`](https://redirect.github.com/siderolabs/talos/commit/601f036ba) docs: correct flannel extra args example - [@​`ae94377`](https://redirect.github.com/siderolabs/talos/commit/ae94377d1) feat: support encryption config for user volumes - [@​`9616f6e`](https://redirect.github.com/siderolabs/talos/commit/9616f6e8d) docs: add caveat for kubespan and host ports - [@​`a1d08a3`](https://redirect.github.com/siderolabs/talos/commit/a1d08a362) docs: fixes typo at OpenEBS Mayastor worker patches - [@​`a91e872`](https://redirect.github.com/siderolabs/talos/commit/a91e8726e) docs: add a dark theme - [@​`c76189c`](https://redirect.github.com/siderolabs/talos/commit/c76189c58) fix: grub EFI mount point - [@​`4ca985c`](https://redirect.github.com/siderolabs/talos/commit/4ca985c65) fix: grub efi platform install - [@​`b312602`](https://redirect.github.com/siderolabs/talos/commit/b31260281) docs: update storage.md - [@​`396a290`](https://redirect.github.com/siderolabs/talos/commit/396a29040) feat: add new SBCs - [@​`a902f65`](https://redirect.github.com/siderolabs/talos/commit/a902f6580) feat: update Flannel to v0.26.7 - [@​`2bbefec`](https://redirect.github.com/siderolabs/talos/commit/2bbefec1a) docs: use cache in preview - [@​`6028a8d`](https://redirect.github.com/siderolabs/talos/commit/6028a8d2d) docs: update kubeprism.md - [@​`e51a8ef`](https://redirect.github.com/siderolabs/talos/commit/e51a8ef8c) fix: prefer new `MountStatus` resource - [@​`d9c7e79`](https://redirect.github.com/siderolabs/talos/commit/d9c7e7946) docs: fix search - [@​`b32fa02`](https://redirect.github.com/siderolabs/talos/commit/b32fa029b) feat: update Kubernetes to 1.33.0-rc.1 - [@​`f0ea478`](https://redirect.github.com/siderolabs/talos/commit/f0ea478cb) feat: support address priority - [@​`8cd3c8d`](https://redirect.github.com/siderolabs/talos/commit/8cd3c8dc7) test: fix NVIDIA OSS tests - [@​`62f2d27`](https://redirect.github.com/siderolabs/talos/commit/62f2d27cd) docs: update virtualbox.md - [@​`141326e`](https://redirect.github.com/siderolabs/talos/commit/141326ea3) docs: fix tabpane styling - [@​`134aa53`](https://redirect.github.com/siderolabs/talos/commit/134aa53cc) feat: update base CoreDNS code in host DNS to 1.12.1 </p> </details> ##### Changes since v1.11.0-alpha.3 <details><summary>51 commits</summary> <p> - [@​`85e7989`](https://redirect.github.com/siderolabs/talos/commit/85e7989cf) release(v1.11.0-beta.0): prepare release - [@​`3039162`](https://redirect.github.com/siderolabs/talos/commit/3039162dc) feat: update Flannel to v0.27.2 - [@​`7e6052e`](https://redirect.github.com/siderolabs/talos/commit/7e6052e63) feat: increase boot partition to 2 GiB - [@​`cb7ca17`](https://redirect.github.com/siderolabs/talos/commit/cb7ca17bb) feat: implement ExistingVolumeConfig - [@​`a857c69`](https://redirect.github.com/siderolabs/talos/commit/a857c696f) chore(machined): remove deprecated Endpoints - [@​`a60101c`](https://redirect.github.com/siderolabs/talos/commit/a60101c55) fix: fill serial using helpers - [@​`5420e99`](https://redirect.github.com/siderolabs/talos/commit/5420e9979) refactor: output default selection for profiles - [@​`023a24c`](https://redirect.github.com/siderolabs/talos/commit/023a24cd4) test: use Grype to scan SBOM for vulnerabilities - [@​`96896fd`](https://redirect.github.com/siderolabs/talos/commit/96896fddb) chore: build less images by default - [@​`75b5dec`](https://redirect.github.com/siderolabs/talos/commit/75b5dec06) fix: sd-boot kexec with disk images - [@​`10546d6`](https://redirect.github.com/siderolabs/talos/commit/10546d6f8) feat: update Kuberentes 1.34.0-beta.0 - [@​`3f35b83`](https://redirect.github.com/siderolabs/talos/commit/3f35b83ae) fix: ignore absent extensions SBOM directory - [@​`9920da3`](https://redirect.github.com/siderolabs/talos/commit/9920da3e1) feat: add etcd downgrade API - [@​`c386822`](https://redirect.github.com/siderolabs/talos/commit/c38682279) feat: bump pkgs and tools, read extensions' SBOMs, rekres - [@​`9c0d270`](https://redirect.github.com/siderolabs/talos/commit/9c0d2706c) docs: add release notes about v3.6.x bug - [@​`d219942`](https://redirect.github.com/siderolabs/talos/commit/d21994210) test: refactor various merge controller tests - [@​`da5a444`](https://redirect.github.com/siderolabs/talos/commit/da5a4449f) feat: implement raw volume support - [@​`41adda1`](https://redirect.github.com/siderolabs/talos/commit/41adda1cf) docs: add secure boot setup mode note for Xen - [@​`993b4ad`](https://redirect.github.com/siderolabs/talos/commit/993b4ade8) docs: fix typo in hugo config: pre-releaase - [@​`130b7fd`](https://redirect.github.com/siderolabs/talos/commit/130b7fd6e) test: fix flaky TestDNS - [@​`35b45ae`](https://redirect.github.com/siderolabs/talos/commit/35b45ae6e) feat(talosctl): support tpm operation on mac - [@​`24628db`](https://redirect.github.com/siderolabs/talos/commit/24628db20) feat: update Kubernetes to v1.34.0-alpha.3 - [@​`ff68286`](https://redirect.github.com/siderolabs/talos/commit/ff68286d1) feat: include hwrandom modules - [@​`a5b07c9`](https://redirect.github.com/siderolabs/talos/commit/a5b07c9a5) test: split tests and lint from the default pipeline - [@​`a957ef4`](https://redirect.github.com/siderolabs/talos/commit/a957ef416) feat: add SBOMs to the imager container - [@​`506212a`](https://redirect.github.com/siderolabs/talos/commit/506212a71) feat: include AMD encrypted mem modules into base - [@​`a966321`](https://redirect.github.com/siderolabs/talos/commit/a966321cc) fix: add more bootloader probe logs on upgrade - [@​`b38fa56`](https://redirect.github.com/siderolabs/talos/commit/b38fa568a) feat: add validation for secrets bundle - [@​`2d89bcc`](https://redirect.github.com/siderolabs/talos/commit/2d89bcc71) feat: bump Linux, Go and other packages - [@​`0b8c180`](https://redirect.github.com/siderolabs/talos/commit/0b8c180b8) fix: rename instances to referenceCount - [@​`378fe4f`](https://redirect.github.com/siderolabs/talos/commit/378fe4f2f) feat: support writing EFI boot order - [@​`9f07926`](https://redirect.github.com/siderolabs/talos/commit/9f0792632) fix: improve volume provisioning errors - [@​`b8fcf3c`](https://redirect.github.com/siderolabs/talos/commit/b8fcf3c71) fix: change module instance evaluation - [@​`d680e56`](https://redirect.github.com/siderolabs/talos/commit/d680e560d) docs: create FUNDING.yml - [@​`6415055`](https://redirect.github.com/siderolabs/talos/commit/641505584) feat: support project quota support for user volumes - [@​`52656cc`](https://redirect.github.com/siderolabs/talos/commit/52656cc3c) feat: allow taloscl disk wipe in maintenance mode - [@​`8505794`](https://redirect.github.com/siderolabs/talos/commit/850579448) feat: export SBOM as resources - [@​`4f3a2ff`](https://redirect.github.com/siderolabs/talos/commit/4f3a2ffab) test: update unit-test runner - [@​`d531b68`](https://redirect.github.com/siderolabs/talos/commit/d531b682c) fix: provide FIPS 140-3 compliance - [@​`3e3129d`](https://redirect.github.com/siderolabs/talos/commit/3e3129d36) feat: include packages into SBOM - [@​`54bd50b`](https://redirect.github.com/siderolabs/talos/commit/54bd50be3) fix: talos endpoint might not be created in Kubernetes - [@​`8789a02`](https://redirect.github.com/siderolabs/talos/commit/8789a02c3) feat: present loaded kernel modules - [@​`33ecbae`](https://redirect.github.com/siderolabs/talos/commit/33ecbaec6) test: update apply config tests - [@​`7d2fd39`](https://redirect.github.com/siderolabs/talos/commit/7d2fd390c) chore: bump Talos version in the Image Factory CI pipeline - [@​`de77f21`](https://redirect.github.com/siderolabs/talos/commit/de77f2142) docs: add example for fluentbit config - [@​`1f1f781`](https://redirect.github.com/siderolabs/talos/commit/1f1f78106) fix: add limited retries for not found images - [@​`3d6a2c1`](https://redirect.github.com/siderolabs/talos/commit/3d6a2c14e) chore: generate and upload signatures on release - [@​`3801413`](https://redirect.github.com/siderolabs/talos/commit/380141330) feat: expose kernel cmdline as a resource - [@​`4c6b3b1`](https://redirect.github.com/siderolabs/talos/commit/4c6b3b14d) docs: document disabling SELinux - [@​`3a6e5a7`](https://redirect.github.com/siderolabs/talos/commit/3a6e5a71e) feat: add talosctl mulitarch bundle image - [@​`be671ee`](https://redirect.github.com/siderolabs/talos/commit/be671ee6d) chore: add sbom step to the release pipeline </p> </details> ##### Changes from siderolabs/crypto <details><summary>5 commits</summary> <p> - [siderolabs/crypto@`62a079b`](https://redirect.github.com/siderolabs/crypto/commit/62a079b) fix: update TLS config, add tests for TLS interactions - [siderolabs/crypto@`c2b4e26`](https://redirect.github.com/siderolabs/crypto/commit/c2b4e26) fix: remove code duplication and fix [`Ed25511`](https://redirect.github.com/siderolabs/talos/commit/Ed255119) CA generation - [siderolabs/crypto@`2a07632`](https://redirect.github.com/siderolabs/crypto/commit/2a07632) fix: enforce FIPS-140-3 compliance - [siderolabs/crypto@`17107ae`](https://redirect.github.com/siderolabs/crypto/commit/17107ae) fix: add generic CSR generator and OpenSSL interop - [siderolabs/crypto@`53659fc`](https://redirect.github.com/siderolabs/crypto/commit/53659fc) refactor: split into files </p> </details> ##### Changes from siderolabs/discovery-client <details><summary>1 commit</summary> <p> - [siderolabs/discovery-client@`71b0c6d`](https://redirect.github.com/siderolabs/discovery-client/commit/71b0c6d) fix: add FIPS-140-3 strict compliance </p> </details> ##### Changes from siderolabs/gen <details><summary>5 commits</summary> <p> - [siderolabs/gen@`044d921`](https://redirect.github.com/siderolabs/gen/commit/044d921) feat: add xslices.Deduplicate - [siderolabs/gen@`dcb2b74`](https://redirect.github.com/siderolabs/gen/commit/dcb2b74) feat: add `panicsafe` package - [siderolabs/gen@`b36ee43`](https://redirect.github.com/siderolabs/gen/commit/b36ee43) feat: make `xyaml.CheckUnknownKeys` public - [siderolabs/gen@`3e319e7`](https://redirect.github.com/siderolabs/gen/commit/3e319e7) feat: implement `xyaml.UnmarshalStrict` - [siderolabs/gen@`7c0324f`](https://redirect.github.com/siderolabs/gen/commit/7c0324f) chore: future-proof HashTrieMap </p> </details> ##### Changes from siderolabs/go-circular <details><summary>1 commit</summary> <p> - [siderolabs/go-circular@`5b39ef8`](https://redirect.github.com/siderolabs/go-circular/commit/5b39ef8) fix: do not log error if chunk zero was never written </p> </details> ##### Changes from siderolabs/go-kubernetes <details><summary>4 commits</summary> <p> - [siderolabs/go-kubernetes@`7887034`](https://redirect.github.com/siderolabs/go-kubernetes/commit/7887034) feat: add checks for Kubernetes 1.34 removals - [siderolabs/go-kubernetes@`657a74b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/657a74b) feat: prepare for Kubernetes 1.34 - [siderolabs/go-kubernetes@`9070be4`](https://redirect.github.com/siderolabs/go-kubernetes/commit/9070be4) fix: remove DynamicResourceAllocation feature gate - [siderolabs/go-kubernetes@`8cb588b`](https://redirect.github.com/siderolabs/go-kubernetes/commit/8cb588b) fix: k8s 1.32->1.33 upgrade check </p> </details> ##### Changes from siderolabs/pkgs <details><summary>53 commits</summary> <p> - [siderolabs/pkgs@`e2fbfb1`](https://redirect.github.com/siderolabs/pkgs/commit/e2fbfb1) feat: update tools/toolchain to 1.11.0 - [siderolabs/pkgs@`383bbb4`](https://redirect.github.com/siderolabs/pkgs/commit/383bbb4) feat: update NVIDIA production to 570.158.01 - [siderolabs/pkgs@`853cf3a`](https://redirect.github.com/siderolabs/pkgs/commit/853cf3a) feat: bump e2fsprogs, ipxe, kspp, tools - [siderolabs/pkgs@`a3f8281`](https://redirect.github.com/siderolabs/pkgs/commit/a3f8281) feat: update Linux to 6.12.38 - [siderolabs/pkgs@`8ed84c5`](https://redirect.github.com/siderolabs/pkgs/commit/8ed84c5) feat: refactor HW\_RANDOM configuration - [siderolabs/pkgs@`108099f`](https://redirect.github.com/siderolabs/pkgs/commit/108099f) feat: enable AMD encrypted memory - [siderolabs/pkgs@`c97d25e`](https://redirect.github.com/siderolabs/pkgs/commit/c97d25e) fix: remove erroneous PURLs - [siderolabs/pkgs@`90f7c65`](https://redirect.github.com/siderolabs/pkgs/commit/90f7c65) fix: bump bldr - [siderolabs/pkgs@`a24b40e`](https://redirect.github.com/siderolabs/pkgs/commit/a24b40e) feat: update Linux to 6.12.36 and firmware - [siderolabs/pkgs@`2537e61`](https://redirect.github.com/siderolabs/pkgs/commit/2537e61) docs: more SBOM metadata to cover whole Talos - [siderolabs/pkgs@`0f4cbbc`](https://redirect.github.com/siderolabs/pkgs/commit/0f4cbbc) feat: update dependencies - [siderolabs/pkgs@`9cec45c`](https://redirect.github.com/siderolabs/pkgs/commit/9cec45c) feat: add SBOM metadata for some packages - [siderolabs/pkgs@`03bb94c`](https://redirect.github.com/siderolabs/pkgs/commit/03bb94c) feat: update dependencies - [siderolabs/pkgs@`c613abd`](https://redirect.github.com/siderolabs/pkgs/commit/c613abd) fix: iptables url - [siderolabs/pkgs@`fae59df`](https://redirect.github.com/siderolabs/pkgs/commit/fae59df) fix: download and copy hailo8 firmware - [siderolabs/pkgs@`fadf1e2`](https://redirect.github.com/siderolabs/pkgs/commit/fadf1e2) feat: update containerd to 2.1.2 - [siderolabs/pkgs@`a0b0da1`](https://redirect.github.com/siderolabs/pkgs/commit/a0b0da1) feat: enable io.latency cgroup controller - [siderolabs/pkgs@`0aaa07a`](https://redirect.github.com/siderolabs/pkgs/commit/0aaa07a) feat: add hailort package - [siderolabs/pkgs@`8555e94`](https://redirect.github.com/siderolabs/pkgs/commit/8555e94) chore: use ftpmirror for GNU sources - [siderolabs/pkgs@`9fbe2b4`](https://redirect.github.com/siderolabs/pkgs/commit/9fbe2b4) feat: update Go to 1.24.4 - [siderolabs/pkgs@`79bfa9e`](https://redirect.github.com/siderolabs/pkgs/commit/79bfa9e) feat: update NVIDIA drivers to 570.148.08 - [siderolabs/pkgs@`c8b8bd8`](https://redirect.github.com/siderolabs/pkgs/commit/c8b8bd8) feat: bump dependencies - [siderolabs/pkgs@`54bf03e`](https://redirect.github.com/siderolabs/pkgs/commit/54bf03e) feat: update Linux to 6.12.31 - [siderolabs/pkgs@`93b3aaa`](https://redirect.github.com/siderolabs/pkgs/commit/93b3aaa) feat: add patch for CephFS IMA performance regression - [siderolabs/pkgs@`ebd6627`](https://redirect.github.com/siderolabs/pkgs/commit/ebd6627) feat: disable IMA support - [siderolabs/pkgs@`8aad53b`](https://redirect.github.com/siderolabs/pkgs/commit/8aad53b) feat: add CONFIG\_NFT\_CONNLIMIT to kernel - [siderolabs/pkgs@`7a299fa`](https://redirect.github.com/siderolabs/pkgs/commit/7a299fa) feat: update Linux to 6.12.30 - [siderolabs/pkgs@`8c4603e`](https://redirect.github.com/siderolabs/pkgs/commit/8c4603e) feat: move more configs to modules on arm64 - [siderolabs/pkgs@`7b1183b`](https://redirect.github.com/siderolabs/pkgs/commit/7b1183b) feat(kernel): enable IB user-space management and RDMA - [siderolabs/pkgs@`1b1430e`](https://redirect.github.com/siderolabs/pkgs/commit/1b1430e) fix: drop pcre2 binaries - [siderolabs/pkgs@`487610c`](https://redirect.github.com/siderolabs/pkgs/commit/487610c) fix: drop broken symlinks - [siderolabs/pkgs@`f31d518`](https://redirect.github.com/siderolabs/pkgs/commit/f31d518) fix: clean up some binaries - [siderolabs/pkgs@`0f74b9b`](https://redirect.github.com/siderolabs/pkgs/commit/0f74b9b) feat: update containerd to v2.1.1 - [siderolabs/pkgs@`89b4037`](https://redirect.github.com/siderolabs/pkgs/commit/89b4037) fix: tenstorrent pkg name - [siderolabs/pkgs@`a14b544`](https://redirect.github.com/siderolabs/pkgs/commit/a14b544) chore: drop qemu-tools vmdk support - [siderolabs/pkgs@`2563e47`](https://redirect.github.com/siderolabs/pkgs/commit/2563e47) feat: add tenstorrent package - [siderolabs/pkgs@`2a1c42f`](https://redirect.github.com/siderolabs/pkgs/commit/2a1c42f) fix(renovate): flannel config - [siderolabs/pkgs@`bfa69a8`](https://redirect.github.com/siderolabs/pkgs/commit/bfa69a8) feat: add open-vmdk package - [siderolabs/pkgs@`9f1ba1f`](https://redirect.github.com/siderolabs/pkgs/commit/9f1ba1f) fix: bring back updated containerd gvisor patch - [siderolabs/pkgs@`1567cb6`](https://redirect.github.com/siderolabs/pkgs/commit/1567cb6) feat: update Linux 6.12.28, firmware - [siderolabs/pkgs@`9bc66e6`](https://redirect.github.com/siderolabs/pkgs/commit/9bc66e6) feat: update containerd to 2.1.0 - [siderolabs/pkgs@`c6b54e0`](https://redirect.github.com/siderolabs/pkgs/commit/c6b54e0) feat: enable zswap - [siderolabs/pkgs@`4cd7084`](https://redirect.github.com/siderolabs/pkgs/commit/4cd7084) feat: update dependencies - [siderolabs/pkgs@`a3fcbf8`](https://redirect.github.com/siderolabs/pkgs/commit/a3fcbf8) feat(kernel): enable panthor driver - [siderolabs/pkgs@`74d1665`](https://redirect.github.com/siderolabs/pkgs/commit/74d1665) feat: update ZFS to 2.3.2 - [siderolabs/pkgs@`ddc866b`](https://redirect.github.com/siderolabs/pkgs/commit/ddc866b) feat: update Linux to 6.12.27 - [siderolabs/pkgs@`a347857`](https://redirect.github.com/siderolabs/pkgs/commit/a347857) fix: build containerd with Go 1.23 - [siderolabs/pkgs@`74da85c`](https://redirect.github.com/siderolabs/pkgs/commit/74da85c) fix: containerd build doesn't need seccomp - [siderolabs/pkgs@`4effa05`](https://redirect.github.com/siderolabs/pkgs/commit/4effa05) fix: downgrade libseccomp to 2.5.5 - [siderolabs/pkgs@`9cea00b`](https://redirect.github.com/siderolabs/pkgs/commit/9cea00b) feat: update Linux to 6.12.25 - [siderolabs/pkgs@`cb108a5`](https://redirect.github.com/siderolabs/pkgs/commit/cb108a5) feat(kernel): enable bcache module - [siderolabs/pkgs@`d042432`](https://redirect.github.com/siderolabs/pkgs/commit/d042432) fix: backport sandbox fix for Gvisor - [siderolabs/pkgs@`fa625dc`](https://redirect.github.com/siderolabs/pkgs/commit/fa625dc) feat: update Linux 6.12.24, containerd 2.0.5 </p> </details> ##### Changes from siderolabs/siderolink <details><summary>3 commits</summary> <p> - [siderolabs/siderolink@`5f46f65`](https://redirect.github.com/siderolabs/siderolink/commit/5f46f65) feat: handle panics in goroutines - [siderolabs/siderolink@`d09ff45`](https://redirect.github.com/siderolabs/siderolink/commit/d09ff45) fix: race in wait value - [siderolabs/siderolink@`d2a79e0`](https://redirect.github.com/siderolabs/siderolink/commit/d2a79e0) fix: clean up device on failure </p> </details> ##### Changes from siderolabs/tools <details><summary>10 commits</summary> <p> - [siderolabs/tools@`1d451f3`](https://redirect.github.com/siderolabs/tools/commit/1d451f3) feat: update toolchain to 1.11.0 - [siderolabs/tools@`650b916`](https://redirect.github.com/siderolabs/tools/commit/650b916) chore: bump toolchain, update names in SBOM - [siderolabs/tools@`594704b`](https://redirect.github.com/siderolabs/tools/commit/594704b) feat: bump dependencies - [siderolabs/tools@`4818702`](https://redirect.github.com/siderolabs/tools/commit/4818702) docs: add SBOM metadata for packages copied to pkgs - [siderolabs/tools@`542a03c`](https://redirect.github.com/siderolabs/tools/commit/542a03c) feat: update dependencies - [siderolabs/tools@`0554e87`](https://redirect.github.com/siderolabs/tools/commit/0554e87) chore: use ftpmirror for GNU sources - [siderolabs/tools@`1dfd14b`](https://redirect.github.com/siderolabs/tools/commit/1dfd14b) feat: update Go to 1.24.4 - [siderolabs/tools@`af3fd64`](https://redirect.github.com/siderolabs/tools/commit/af3fd64) feat: update dependencies - [siderolabs/tools@`e35234b`](https://redirect.github.com/siderolabs/tools/commit/e35234b) feat: update dependencies - [siderolabs/tools@`c96a4e6`](https://redirect.github.com/siderolabs/tools/commit/c96a4e6) chore: update toolchain to the latest version </p> </details> ##### Dependency Changes - **cloud.google.com/go/compute/metadata** v0.6.0 -> v0.7.0 - **github.com/Azure/azure-sdk-for-go/sdk/azcore** v1.18.0 -> v1.18.1 - **github.com/Azure/azure-sdk-for-go/sdk/azidentity** v1.9.0 -> v1.10.1 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azcertificates** v1.3.1 -> v1.4.0 - **github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys** v1.3.1 -> v1.4.0 - **github.com/aws/aws-sdk-go-v2/config** v1.29.14 -> v1.29.17 - **github.com/aws/aws-sdk-go-v2/feature/ec2/imds** v1.16.30 -> v1.16.32 - **github.com/aws/aws-sdk-go-v2/service/kms** v1.38.3 -> v1.41.2 - **github.com/aws/smithy-go** v1.22.3 -> v1.22.4 - **github.com/containerd/containerd/api** v1.8.0 -> v1.9.0 - **github.com/containerd/containerd/v2** v2.0.5 -> v2.1.3 - **github.com/containernetworking/plugins** v1.6.2 -> v1.7.1 - **github.com/cosi-project/runtime** v0.10.2 -> v1.10.7 - **github.com/detailyang/go-fallocate** [`432fa64`](https://redirect.github.com/siderolabs/talos/commit/432fa640bd2e) ***new*** - **github.com/docker/cli** v28.0.4 -> v28.3.2 - **github.com/docker/docker** v28.0.4 -> v28.3.2 - **github.com/equinix-ms/go-vmw-guestrpc** v0.1.1 ***new*** - **github.com/foxboron/go-uefi** [`69fb7db`](https://redirect.github.com/siderolabs/talos/commit/69fb7dba244f) -> [`a3183a1`](https://redirect.github.com/siderolabs/talos/commit/a3183a1bfc84) - **github.com/g0rbe/go-chattr** v1.0.1 ***new*** - **github.com/google/cadvisor** v0.52.1 -> v0.53.0 - **github.com/google/cel-go** v0.24.1 -> v0.26.0 - **github.com/google/go-containerregistry** v0.20.3 -> v0.20.6 - **github.com/google/go-tpm** v0.9.3 -> v0.9.5 - **github.com/grpc-ecosystem/go-grpc-middleware/v2** v2.3.1 -> v2.3.2 - **github.com/hetznercloud/hcloud-go/v2** v2.21.0 -> v2.22.0 - **github.com/jsimonetti/rtnetlink/v2** v2.0.3 -> v2.0.5 - **github.com/klauspost/cpuid/v2** v2.2.10 -> v2.3.0 - **github.com/linode/go-metadata** v0.2.1 -> v0.2.2 - **github.com/miekg/dns** v1.1.65 -> v1.1.67 - **github.com/pkg/xattr** v0.4.10 -> v0.4.12 - **github.com/prometheus/procfs** v0.16.0 -> v0.17.0 - **github.com/rivo/tview** [`949945f`](https://redirect.github.com/siderolabs/talos/commit/949945f8d922) -> [`a4a78f1`](https://redirect.github.com/siderolabs/talos/commit/a4a78f1e05cb) - **github.com/safchain/ethtool** v0.5.10 -> v0.6.1 - **github.com/scaleway/scaleway-sdk-go** v1.0.0-beta.33 -> v1.0.0-beta.34 - **github.com/siderolabs/crypto** v0.5.1 -> v0.6.3 - **github.com/siderolabs/discovery-client** v0.1.11 -> v0.1.12 - **github.com/siderolabs/gen** v0.8.0 -> v0.8.5 - **github.com/siderolabs/go-blockdevice/v2** v2.0.16 -> v2.0.18 - **github.com/siderolabs/go-circular** v0.2.2 -> v0.2.3 - **github.com/siderolabs/go-kubernetes** v0.2.21 -> v0.2.25 - **github.com/siderolabs/pkgs** v1.10.0-5-g48dba3e -> v1.11.0 - **github.com/siderolabs/siderolink** v0.3.13 -> v0.3.15 - **github.com/siderolabs/talos/pkg/machinery** v1.10.0 -> v1.11.0-beta.0 - **github.com/siderolabs/tools** v1.10.0 -> v1.11.0 - **github.com/spf13/pflag** v1.0.6 -> v1.0.7 - **go.etcd.io/etcd/api/v3** v3.5.21 -> v3.6.2 - **go.etcd.io/etcd/client/pkg/v3** v3.5.21 -> v3.6.2 - **go.etcd.io/etcd/client/v3** v3.5.21 -> v3.6.2 - **go.etcd.io/etcd/etcdutl/v3** v3.5.21 -> v3.6.2 - **golang.org/x/net** v0.39.0 -> v0.42.0 - **golang.org/x/oauth2** v0.29.0 -> v0.30.0 - **golang.org/x/sync** v0.13.0 -> v0.16.0 - **golang.org/x/sys** v0.32.0 -> v0.34.0 - **golang.org/x/term** v0.31.0 -> v0.33.0 - **golang.org/x/text** v0.24.0 -> v0.27.0 - **golang.org/x/time** v0.11.0 -> v0.12.0 - **google.golang.org/grpc** v1.71.1 -> v1.73.0 - **k8s.io/api** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/apimachinery** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/apiserver** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/client-go** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/component-base** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/cri-api** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/kube-scheduler** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/kubectl** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/kubelet** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/pod-security-admission** v0.33.0 -> v0.34.0-beta.0 - **k8s.io/utils** [`4c0f3b2`](https://redirect.github.com/siderolabs/talos/commit/4c0f3b243397) ***new*** - **sigs.k8s.io/hydrophone** [`b92baf7`](https://redirect.github.com/siderolabs/talos/commit/b92baf7e0b04) -> v0.7.0 - **sigs.k8s.io/yaml** v1.4.0 -> v1.5.0 Previous release can be found at [v1.10.0](https://redirect.github.com/siderolabs/talos/releases/tag/v1.10.0) #### Images ``` ghcr.io/siderolabs/flannel:v0.27.2 registry.k8s.io/coredns/coredns:v1.12.2 gcr.io/etcd-development/etcd:v3.5.21 registry.k8s.io/kube-apiserver:v1.34.0-beta.0 registry.k8s.io/kube-controller-manager:v1.34.0-beta.0 registry.k8s.io/kube-scheduler:v1.34.0-beta.0 registry.k8s.io/kube-proxy:v1.34.0-beta.0 ghcr.io/siderolabs/kubelet:v1.34.0-beta.0 ghcr.io/siderolabs/installer:v1.11.0-beta.0 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**: 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
778a96750f |
Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org> |
||
|
|
f9e6f2a2ab |
fix(deps): update module golang.org/x/crypto v0.39.0 → v0.40.0 (clustertool) (#37395)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | golang.org/x/crypto | `v0.39.0` -> `v0.40.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19--> |
||
|
|
c06ce9f348 | fix(deps): update module github.com/knadh/koanf/v2 v2.2.1 → v2.2.2 (clustertool) (#37394) | ||
|
|
529dead206 |
Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org> |
||
|
|
b3137f747c |
fix(deps): update module helm.sh/helm/v3 v3.18.3 → v3.18.4 [security] (#37302)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [helm.sh/helm/v3](https://redirect.github.com/helm/helm) | `v3.18.3` -> `v3.18.4` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | ### GitHub Vulnerability Alerts #### [CVE-2025-53547](https://redirect.github.com/helm/helm/security/advisories/GHSA-557j-xg8c-q2mm) A Helm contributor discovered that a specially crafted `Chart.yaml` file along with a specially linked `Chart.lock` file can lead to local code execution when dependencies are updated. ### Impact Fields in a `Chart.yaml` file, that are carried over to a `Chart.lock` file when dependencies are updated and this file is written, can be crafted in a way that can cause execution if that same content were in a file that is executed (e.g., a `bash.rc` file or shell script). If the `Chart.lock` file is symlinked to one of these files updating dependencies will write the lock file content to the symlinked file. This can lead to unwanted execution. Helm warns of the symlinked file but did not stop execution due to symlinking. This affects when dependencies are updated. When using the `helm` command this happens when `helm dependency update` is run. `helm dependency build` can write a lock file when one does not exist but this vector requires one to already exist. This affects the Helm SDK when the downloader `Manager` performs an update. ### Patches This issue has been resolved in Helm v3.18.4 ### Workarounds Ensure the `Chart.lock` file in a chart is not a symlink prior to updating dependencies. ### For more information Helm's security policy is spelled out in detail in our [SECURITY](https://redirect.github.com/helm/community/blob/master/SECURITY.md) document. ### Credits Disclosed by Jakub Ciolek at AlphaSense. --- ### Release Notes <details> <summary>helm/helm (helm.sh/helm/v3)</summary> ### [`v3.18.4`](https://redirect.github.com/helm/helm/releases/tag/v3.18.4): Helm v3.18.4 [Compare Source](https://redirect.github.com/helm/helm/compare/v3.18.3...v3.18.4) Helm v3.18.4 is a security 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) #### Installation and Upgrading Download Helm v3.18.4. The common platform binaries are here: - [MacOS amd64](https://get.helm.sh/helm-v3.18.4-darwin-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-darwin-amd64.tar.gz.sha256sum) / 860a7238285b44b5dc7b3c4dad6194316885d7015d77c34e23177e0e9554af8f) - [MacOS arm64](https://get.helm.sh/helm-v3.18.4-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-darwin-arm64.tar.gz.sha256sum) / 041849741550b20710d7ad0956e805ebd960b483fe978864f8e7fdd03ca84ec8) - [Linux amd64](https://get.helm.sh/helm-v3.18.4-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-amd64.tar.gz.sha256sum) / f8180838c23d7c7d797b208861fecb591d9ce1690d8704ed1e4cb8e2add966c1) - [Linux arm](https://get.helm.sh/helm-v3.18.4-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-arm.tar.gz.sha256sum) / 34ea88aef15fd822e839da262176a36e865bb9cfdb89b1f723811c0cc527f981) - [Linux arm64](https://get.helm.sh/helm-v3.18.4-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-arm64.tar.gz.sha256sum) / c0a45e67eef0c7416a8a8c9e9d5d2d30d70e4f4d3f7bea5de28241fffa8f3b89) - [Linux i386](https://get.helm.sh/helm-v3.18.4-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-386.tar.gz.sha256sum) / 75c2d9858725a5907faf8f19d9fb21c0263e4cb864d27d6df8809f96f147d3c0) - [Linux ppc64le](https://get.helm.sh/helm-v3.18.4-linux-ppc64le.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-ppc64le.tar.gz.sha256sum) / dbd74c59e7710f26e058596723abbf73662b553e01f40dfb08508ffffaeb7b81) - [Linux s390x](https://get.helm.sh/helm-v3.18.4-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-s390x.tar.gz.sha256sum) / c8bafb34bcebd53494f0223239977e1ff7b487e714598a5843a0cb1788e20075) - [Linux riscv64](https://get.helm.sh/helm-v3.18.4-linux-riscv64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.4-linux-riscv64.tar.gz.sha256sum) / f67f39104c7e695cbba04dc3b4507a80a034ce9e5ccbe55c84e91b1553b787bd) - [Windows amd64](https://get.helm.sh/helm-v3.18.4-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.4-windows-amd64.zip.sha256sum) / 0af12a2233d71ef4207db1eabbf103b554631206ed5b2b34fc56b73a52596888) - [Windows arm64](https://get.helm.sh/helm-v3.18.4-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.4-windows-arm64.zip.sha256sum) / de6bc8fcffeb041f524a92c6026ea22ef6f939118a30e6bb8b996b77a38486b1) 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.18.5 is the next patch release and will be on August 13, 2025 - 3.19.0 is the next minor release and will be on September 11, 2025 #### Changelog - Disabling linter due to unknown issue [`f20a4ad`](https://redirect.github.com/helm/helm/commit/f20a4ad1d5c953ca0fb3d3b30aa9aa796d472ef1) (Matt Farina) - build(deps): bump the k8s-io group with 7 updates [`563b094`](https://redirect.github.com/helm/helm/commit/563b0947b995c48354319aa054830db61f793a08) (dependabot\[bot]) - Updating link handling [`00de613`](https://redirect.github.com/helm/helm/commit/00de613324df4dd930e6d231d9aae7f9dee29c76) (Matt Farina) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "" (UTC), 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
97ec866b31 |
fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.29 → v3.0.30 (clustertool) (#36938)
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.29` -> `v3.0.30` | --- > [!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.30`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.30) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.29...v3.0.30) #### Changelog - [`3d14db3`](https://redirect.github.com/budimanjojo/talhelper/commit/3d14db3d4cbba228f32841ad7f237f2d5df480c4) chore(container): update ghcr.io/mirceanton/age docker tag to v1.2.1 ([#​1058](https://redirect.github.com/budimanjojo/talhelper/issues/1058)) - [`1c220bb`](https://redirect.github.com/budimanjojo/talhelper/commit/1c220bb66bd82ae21e944e519bd9cbfc68d7eb4c) chore(container): update ghcr.io/siderolabs/talosctl docker tag to v1.10.5 - [`139d883`](https://redirect.github.com/budimanjojo/talhelper/commit/139d883760f1bb21348a4b7d11a196d0477f3159) chore(container): update golangci/golangci-lint docker tag to v2.2.1 - [`5b70cec`](https://redirect.github.com/budimanjojo/talhelper/commit/5b70cecfe6af93407caedadf12238144c0306414) chore(container): update registry.k8s.io/kubectl docker tag to v1.33.2 - [`d5c729c`](https://redirect.github.com/budimanjojo/talhelper/commit/d5c729c42ba06579c9e98c285f142a30c688e933) chore(deps): update dependency siderolabs/talos to v1.10.5 - [`3e13244`](https://redirect.github.com/budimanjojo/talhelper/commit/3e132443cda019f28d64304361c03647349cd39f) chore(github-action)!: Update renovatebot/github-action action to v43 - [`8cd7dc0`](https://redirect.github.com/budimanjojo/talhelper/commit/8cd7dc0d934cab8ad1882fc23bc0834fac9d9ed8) chore(github-action): update renovatebot/github-action action to v42.0.6 - [`cb9d22b`](https://redirect.github.com/budimanjojo/talhelper/commit/cb9d22b19f48ef8e0d54eb682ac429625cf69166) chore(github-action): update renovatebot/github-action action to v43.0.1 - [`763fbb2`](https://redirect.github.com/budimanjojo/talhelper/commit/763fbb20b9bfdec3e4ea3ad841b6170823d3e15b) chore(github-action): update renovatebot/github-action action to v43.0.2 - [`25fb326`](https://redirect.github.com/budimanjojo/talhelper/commit/25fb326c63fab93730bb3de34fb13159fd57b081) chore(schema): update talos-extensions.yaml JSON schema ([#​1060](https://redirect.github.com/budimanjojo/talhelper/issues/1060)) - [`6587d2a`](https://redirect.github.com/budimanjojo/talhelper/commit/6587d2a17d2b0a1b78dfae356a136044e76af4a1) chore(schema): update talos-extensions.yaml JSON schema ([#​1066](https://redirect.github.com/budimanjojo/talhelper/issues/1066)) - [`1f3c8dd`](https://redirect.github.com/budimanjojo/talhelper/commit/1f3c8dde5c1e7345b32a6d6d18cda495a7fd1bcb) chore(schema): update talos-extensions.yaml JSON schema ([#​1067](https://redirect.github.com/budimanjojo/talhelper/issues/1067)) - [`8f288e3`](https://redirect.github.com/budimanjojo/talhelper/commit/8f288e3a2031c80e8c35c4467fbfe549a63b97a5) chore(schema): update talos-extensions.yaml JSON schema ([#​1071](https://redirect.github.com/budimanjojo/talhelper/issues/1071)) - [`b8709cb`](https://redirect.github.com/budimanjojo/talhelper/commit/b8709cbdd3843d0ad77a4ea882a983bff2ef77c0) chore(schema): update talos-extensions.yaml JSON schema ([#​1072](https://redirect.github.com/budimanjojo/talhelper/issues/1072)) - [`55ac21e`](https://redirect.github.com/budimanjojo/talhelper/commit/55ac21e1e5e732524a1f3129a580bd4382b1d1e5) chore(schema): update talos-extensions.yaml JSON schema ([#​1076](https://redirect.github.com/budimanjojo/talhelper/issues/1076)) - [`363665b`](https://redirect.github.com/budimanjojo/talhelper/commit/363665baf8e77ddf0fe288afcb23d7fdd19d37ac) feat: update Scoop for talhelper version v3.0.29 - [`630d3b6`](https://redirect.github.com/budimanjojo/talhelper/commit/630d3b66edf821a53f15eee655ceb56893f01e08) feat: update flake ([#​1055](https://redirect.github.com/budimanjojo/talhelper/issues/1055)) - [`f38aca8`](https://redirect.github.com/budimanjojo/talhelper/commit/f38aca8e1e3e631829e32f44c0e30d34fc8938d8) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.29 - [`c7dc62f`](https://redirect.github.com/budimanjojo/talhelper/commit/c7dc62f71c1150b47673a5c41e1b9ec6d1e13d78) fix(deps): update module github.com/google/go-containerregistry to v0.20.6 - [`5fe583e`](https://redirect.github.com/budimanjojo/talhelper/commit/5fe583e81eadd4b8b6994d9675dfa3713d420a74) fix(deps): update module github.com/siderolabs/image-factory to v0.7.4 - [`6c8debf`](https://redirect.github.com/budimanjojo/talhelper/commit/6c8debf156e3b7f89647add923b387c7908a2c68) fix(deps): update module github.com/siderolabs/talos/pkg/machinery to v1.11.0-alpha.3 - [`66e7fa2`](https://redirect.github.com/budimanjojo/talhelper/commit/66e7fa2d28b84bd78bf9f3b03decc61899aa8da8) fix(deps): update module sigs.k8s.io/yaml to v1.5.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
194ec1d397 |
fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.11.0-alpha.2 → v1.11.0-alpha.3 (clustertool) (#36882)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | require | patch | `v1.11.0-alpha.2` -> `v1.11.0-alpha.3` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.0-alpha.3`](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-alpha.2...v1.11.0-alpha.3) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-alpha.2...v1.11.0-alpha.3) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
ea5f5f2ae3 |
fix(deps): update module github.com/go-playground/validator/v10 v10.26.0 → v10.27.0 (clustertool) (#36878)
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.26.0` -> `v10.27.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.27.0`](https://redirect.github.com/go-playground/validator/releases/tag/v10.27.0): Release 10.27.0 [Compare Source](https://redirect.github.com/go-playground/validator/compare/v10.26.0...v10.27.0) #### What's Changed - Fix Release version badge on README page by [@​nodivbyzero](https://redirect.github.com/nodivbyzero) in [https://github.com/go-playground/validator/pull/1406](https://redirect.github.com/go-playground/validator/pull/1406) - fix russian E.164 error message by [@​prigornitskiy](https://redirect.github.com/prigornitskiy) in [https://github.com/go-playground/validator/pull/1349](https://redirect.github.com/go-playground/validator/pull/1349) - chore: remove unnecessary statement by [@​qshuai](https://redirect.github.com/qshuai) in [https://github.com/go-playground/validator/pull/1200](https://redirect.github.com/go-playground/validator/pull/1200) - Re-enable several linters by [@​nodivbyzero](https://redirect.github.com/nodivbyzero) in [https://github.com/go-playground/validator/pull/1412](https://redirect.github.com/go-playground/validator/pull/1412) - add support to tag validateFn by [@​peczenyj](https://redirect.github.com/peczenyj) in [https://github.com/go-playground/validator/pull/1363](https://redirect.github.com/go-playground/validator/pull/1363) - Bump golang.org/x/crypto from 0.33.0 to 0.35.0 in /\_examples/validate_fn by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-playground/validator/pull/1418](https://redirect.github.com/go-playground/validator/pull/1418) - Bump golang.org/x/net from 0.34.0 to 0.38.0 in /\_examples/validate_fn by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-playground/validator/pull/1419](https://redirect.github.com/go-playground/validator/pull/1419) - Align required_without with the contract stated in the documentation by [@​jmfrees](https://redirect.github.com/jmfrees) in [https://github.com/go-playground/validator/pull/1422](https://redirect.github.com/go-playground/validator/pull/1422) - Add translation example by [@​cxlblm](https://redirect.github.com/cxlblm) in [https://github.com/go-playground/validator/pull/1394](https://redirect.github.com/go-playground/validator/pull/1394) - doc(errors): mention RegisterTagNameFunc for FieldError.Field by [@​khan-ajamal](https://redirect.github.com/khan-ajamal) in [https://github.com/go-playground/validator/pull/1358](https://redirect.github.com/go-playground/validator/pull/1358) - Bump golangci/golangci-lint-action from 7 to 8 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/go-playground/validator/pull/1425](https://redirect.github.com/go-playground/validator/pull/1425) - feat(translation): add en translation for urn_rfc2141 by [@​ryanmalesic](https://redirect.github.com/ryanmalesic) in [https://github.com/go-playground/validator/pull/1431](https://redirect.github.com/go-playground/validator/pull/1431) - fix: panics when private field is validated by [@​ykalchevskiy](https://redirect.github.com/ykalchevskiy) in [https://github.com/go-playground/validator/pull/1423](https://redirect.github.com/go-playground/validator/pull/1423) - Fix: support validation for map values with struct types by [@​JunaidIslam2105](https://redirect.github.com/JunaidIslam2105) in [https://github.com/go-playground/validator/pull/1433](https://redirect.github.com/go-playground/validator/pull/1433) - Omitzero does not work with slice and map bug by [@​JunaidIslam2105](https://redirect.github.com/JunaidIslam2105) in [https://github.com/go-playground/validator/pull/1436](https://redirect.github.com/go-playground/validator/pull/1436) - Fix: Validator panics when 'nil' is used along with required if for slices and maps by [@​JunaidIslam2105](https://redirect.github.com/JunaidIslam2105) in [https://github.com/go-playground/validator/pull/1442](https://redirect.github.com/go-playground/validator/pull/1442) - docs: typos by [@​eqsdxr](https://redirect.github.com/eqsdxr) in [https://github.com/go-playground/validator/pull/1440](https://redirect.github.com/go-playground/validator/pull/1440) - fix: make "file://" fail `url` validation by [@​bfabio](https://redirect.github.com/bfabio) in [https://github.com/go-playground/validator/pull/1444](https://redirect.github.com/go-playground/validator/pull/1444) - disable way too aggressive and disagreeable linters by [@​deankarn](https://redirect.github.com/deankarn) in [https://github.com/go-playground/validator/pull/1445](https://redirect.github.com/go-playground/validator/pull/1445) - use golangci lint file for disables by [@​deankarn](https://redirect.github.com/deankarn) in [https://github.com/go-playground/validator/pull/1447](https://redirect.github.com/go-playground/validator/pull/1447) #### New Contributors - [@​prigornitskiy](https://redirect.github.com/prigornitskiy) made their first contribution in [https://github.com/go-playground/validator/pull/1349](https://redirect.github.com/go-playground/validator/pull/1349) - [@​qshuai](https://redirect.github.com/qshuai) made their first contribution in [https://github.com/go-playground/validator/pull/1200](https://redirect.github.com/go-playground/validator/pull/1200) - [@​peczenyj](https://redirect.github.com/peczenyj) made their first contribution in [https://github.com/go-playground/validator/pull/1363](https://redirect.github.com/go-playground/validator/pull/1363) - [@​jmfrees](https://redirect.github.com/jmfrees) made their first contribution in [https://github.com/go-playground/validator/pull/1422](https://redirect.github.com/go-playground/validator/pull/1422) - [@​cxlblm](https://redirect.github.com/cxlblm) made their first contribution in [https://github.com/go-playground/validator/pull/1394](https://redirect.github.com/go-playground/validator/pull/1394) - [@​khan-ajamal](https://redirect.github.com/khan-ajamal) made their first contribution in [https://github.com/go-playground/validator/pull/1358](https://redirect.github.com/go-playground/validator/pull/1358) - [@​ryanmalesic](https://redirect.github.com/ryanmalesic) made their first contribution in [https://github.com/go-playground/validator/pull/1431](https://redirect.github.com/go-playground/validator/pull/1431) - [@​ykalchevskiy](https://redirect.github.com/ykalchevskiy) made their first contribution in [https://github.com/go-playground/validator/pull/1423](https://redirect.github.com/go-playground/validator/pull/1423) - [@​JunaidIslam2105](https://redirect.github.com/JunaidIslam2105) made their first contribution in [https://github.com/go-playground/validator/pull/1433](https://redirect.github.com/go-playground/validator/pull/1433) - [@​eqsdxr](https://redirect.github.com/eqsdxr) made their first contribution in [https://github.com/go-playground/validator/pull/1440](https://redirect.github.com/go-playground/validator/pull/1440) - [@​bfabio](https://redirect.github.com/bfabio) made their first contribution in [https://github.com/go-playground/validator/pull/1444](https://redirect.github.com/go-playground/validator/pull/1444) **Full Changelog**: https://github.com/go-playground/validator/compare/v10.26.0...v10.27.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
8e1b614a8c |
fix(deps): update module github.com/siderolabs/talos/pkg/machinery v1.11.0-alpha.1 → v1.11.0-alpha.2 (clustertool) (#36861)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/siderolabs/talos/pkg/machinery](https://redirect.github.com/siderolabs/talos) | require | patch | `v1.11.0-alpha.1` -> `v1.11.0-alpha.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)</summary> ### [`v1.11.0-alpha.2`](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-alpha.1...v1.11.0-alpha.2) [Compare Source](https://redirect.github.com/siderolabs/talos/compare/v1.11.0-alpha.1...v1.11.0-alpha.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
b9dc16b6e5 |
fix(deps): update module sigs.k8s.io/kustomize/api v0.19.0 → v0.20.0 (clustertool) (#36762)
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.19.0` -> `v0.20.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
bf527d0c56 |
fix(deps): update module sigs.k8s.io/kustomize/kyaml v0.19.0 → v0.20.0 (clustertool) (#36763)
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.19.0` -> `v0.20.0` | --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
004b1baafd |
fix(deps): update module github.com/masterminds/semver/v3 v3.3.1 → v3.4.0 (clustertool) (#36690)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/Masterminds/semver/v3](https://redirect.github.com/Masterminds/semver) | require | minor | `v3.3.1` -> `v3.4.0` | --- ### Release Notes <details> <summary>Masterminds/semver (github.com/Masterminds/semver/v3)</summary> ### [`v3.4.0`](https://redirect.github.com/Masterminds/semver/releases/tag/v3.4.0) [Compare Source](https://redirect.github.com/Masterminds/semver/compare/v3.3.1...v3.4.0) There are a few changes in this release to highlight: 1. `Constraints` now has a property `IncludePrerelease`. When set to true the `Check` and `Validate` methods will include prereleases. 2. When an AND group has one constraint with a prerelease but more than one constraint then prereleases will be included. For example, `>1.0.0-beta.1 < 2`. In the past this would not have included prereleases because each constraint needed to have a prerelease. Now, only one constraint needs to have a prerelease. This is considered a long standing bug fix. Note, this does not carry across OR groups. For example, `>1.0.0-beta.1 < 2 || > 3`. In this case, prereleases will not be included when evaluating against `>3`. 3. `NewVersion` coercion with leading "0"'s is restored. This can be disabled by setting the package level property `CoerceNewVersion` to `false`. #### What's Changed - fix the CodeQL link by [@​dmitris](https://redirect.github.com/dmitris) in [https://github.com/Masterminds/semver/pull/257](https://redirect.github.com/Masterminds/semver/pull/257) - Restore detailed errors when failed to parse with NewVersion by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/semver/pull/262](https://redirect.github.com/Masterminds/semver/pull/262) - updating go version tested with by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/semver/pull/263](https://redirect.github.com/Masterminds/semver/pull/263) - Restore the ability to have leading 0's with NewVersion by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/semver/pull/266](https://redirect.github.com/Masterminds/semver/pull/266) - Handle pre-releases on all in an and group by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/semver/pull/267](https://redirect.github.com/Masterminds/semver/pull/267) - Add property to include prereleases by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/semver/pull/268](https://redirect.github.com/Masterminds/semver/pull/268) - Updating the error message handling by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/semver/pull/269](https://redirect.github.com/Masterminds/semver/pull/269) - Update the release notes and readme for new version by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/semver/pull/270](https://redirect.github.com/Masterminds/semver/pull/270) #### New Contributors - [@​dmitris](https://redirect.github.com/dmitris) made their first contribution in [https://github.com/Masterminds/semver/pull/257](https://redirect.github.com/Masterminds/semver/pull/257) **Full Changelog**: https://github.com/Masterminds/semver/compare/v3.3.1...v3.4.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
ad2c83feb2 |
fix(deps): update module github.com/knadh/koanf/parsers/yaml v1.0.0 → v1.1.0 (clustertool) (#36675)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/knadh/koanf/parsers/yaml](https://redirect.github.com/knadh/koanf) | require | minor | `v1.0.0` -> `v1.1.0` | --- ### Release Notes <details> <summary>knadh/koanf (github.com/knadh/koanf/parsers/yaml)</summary> ### [`v1.1.0`](https://redirect.github.com/knadh/koanf/releases/tag/v1.1.0) [Compare Source](https://redirect.github.com/knadh/koanf/compare/v1.0.0...v1.1.0) - [`036e4bf`](https://redirect.github.com/knadh/koanf/commit/036e4bf) Merge pull request [#​79](https://redirect.github.com/knadh/koanf/issues/79) from aeneasr/fix-memory-keyparts - [`6692d05`](https://redirect.github.com/knadh/koanf/commit/6692d05) Merge pull request [#​78](https://redirect.github.com/knadh/koanf/issues/78) from aeneasr/fix-memory-use - [`d174d00`](https://redirect.github.com/knadh/koanf/commit/d174d00) Reduce memory consumption for populateKeyParts - [`1095e5e`](https://redirect.github.com/knadh/koanf/commit/1095e5e) Significantly reduce memory use of maps.Flatten - [`7d983f3`](https://redirect.github.com/knadh/koanf/commit/7d983f3) Fix Watch() doc </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
a04a898396 |
fix(deps): update module sigs.k8s.io/yaml v1.4.0 → v1.5.0 (clustertool) (#36659)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sigs.k8s.io/yaml](https://redirect.github.com/kubernetes-sigs/yaml) | require | minor | `v1.4.0` -> `v1.5.0` | --- ### Release Notes <details> <summary>kubernetes-sigs/yaml (sigs.k8s.io/yaml)</summary> ### [`v1.5.0`](https://redirect.github.com/kubernetes-sigs/yaml/releases/tag/v1.5.0) [Compare Source](https://redirect.github.com/kubernetes-sigs/yaml/compare/v1.4.0...v1.5.0) - Bugfix: Handle unhashable keys during merge ([https://github.com/kubernetes-sigs/yaml/pull/122](https://redirect.github.com/kubernetes-sigs/yaml/pull/122)) - Improvement: wrap errors returned by JSON unmarshal ([https://github.com/kubernetes-sigs/yaml/pull/106](https://redirect.github.com/kubernetes-sigs/yaml/pull/106)) - Deprecation: Deprecate code in goyaml.v2 and goyaml.v3 directories, and redirect to equivalents in go.yaml.in/yaml/v2 and go.yaml.in/yaml/v3 ([https://github.com/kubernetes-sigs/yaml/pull/133](https://redirect.github.com/kubernetes-sigs/yaml/pull/133)) **Full Changelog**: https://github.com/kubernetes-sigs/yaml/compare/v1.4.0...v1.5.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
1115cb178b |
fix(deps): update kubernetes packages v0.33.1 → v0.33.2 (clustertool) (patch) (#36471)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [k8s.io/api](https://redirect.github.com/kubernetes/api) | require | patch | `v0.33.1` -> `v0.33.2` | | [k8s.io/apimachinery](https://redirect.github.com/kubernetes/apimachinery) | require | patch | `v0.33.1` -> `v0.33.2` | | [k8s.io/client-go](https://redirect.github.com/kubernetes/client-go) | require | patch | `v0.33.1` -> `v0.33.2` | --- > [!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.33.2`](https://redirect.github.com/kubernetes/api/compare/v0.33.1...v0.33.2) [Compare Source](https://redirect.github.com/kubernetes/api/compare/v0.33.1...v0.33.2) </details> <details> <summary>kubernetes/apimachinery (k8s.io/apimachinery)</summary> ### [`v0.33.2`](https://redirect.github.com/kubernetes/apimachinery/compare/v0.33.1...v0.33.2) [Compare Source](https://redirect.github.com/kubernetes/apimachinery/compare/v0.33.1...v0.33.2) </details> <details> <summary>kubernetes/client-go (k8s.io/client-go)</summary> ### [`v0.33.2`](https://redirect.github.com/kubernetes/client-go/compare/v0.33.1...v0.33.2) [Compare Source](https://redirect.github.com/kubernetes/client-go/compare/v0.33.1...v0.33.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 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
585ebcf3e6 |
fix(deps): update module helm.sh/helm/v3 v3.18.2 → v3.18.3 (clustertool) (#36383)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [helm.sh/helm/v3](https://redirect.github.com/helm/helm) | require | patch | `v3.18.2` -> `v3.18.3` | --- > [!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.18.3`](https://redirect.github.com/helm/helm/releases/tag/v3.18.3): Helm 3.18.3 [Compare Source](https://redirect.github.com/helm/helm/compare/v3.18.2...v3.18.3) Helm v3.18.3 is a patch release. Users are encouraged to upgrade for the best experience. 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) #### Installation and Upgrading Download Helm v3.18.3. The common platform binaries are here: - [MacOS amd64](https://get.helm.sh/helm-v3.18.3-darwin-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-darwin-amd64.tar.gz.sha256sum) / d186851d40b1999c5d75696bc0b754e4d29e860c8d0cf4c132ac1b1940c5cffc) - [MacOS arm64](https://get.helm.sh/helm-v3.18.3-darwin-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-darwin-arm64.tar.gz.sha256sum) / 3fe3e9739ab3c75d88bfe13e464a79a2a7a804fc692c3258fa6a9d185d53e377) - [Linux amd64](https://get.helm.sh/helm-v3.18.3-linux-amd64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-amd64.tar.gz.sha256sum) / 6ec85f306dd8fe9eb05c61ba4593182b2afcfefb52f21add3fe043ebbdc48e39) - [Linux arm](https://get.helm.sh/helm-v3.18.3-linux-arm.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-arm.tar.gz.sha256sum) / 5ec62879f57d6acc0436440c88459d2a5c8de233273e73ff6498d79fd2d92653) - [Linux arm64](https://get.helm.sh/helm-v3.18.3-linux-arm64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-arm64.tar.gz.sha256sum) / 3382ebdc6d6e027371551a63fc6e0a3073a1aec1061e346692932da61cfd8d24) - [Linux i386](https://get.helm.sh/helm-v3.18.3-linux-386.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-386.tar.gz.sha256sum) / 22d7bad5c6012729e550e09d0b719336ea98c9c7207730456d152f32124609af) - [Linux ppc64le](https://get.helm.sh/helm-v3.18.3-linux-ppc64le.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-ppc64le.tar.gz.sha256sum) / ca5ab0bb205488276095881f04b72bfed5c0ddb92f715940dde6a7ccae72818c) - [Linux s390x](https://get.helm.sh/helm-v3.18.3-linux-s390x.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-s390x.tar.gz.sha256sum) / be261f040b59c04ad4f1ce6fc2f976e500167475cadb468bf78cb9772300fb5d) - [Linux riscv64](https://get.helm.sh/helm-v3.18.3-linux-riscv64.tar.gz) ([checksum](https://get.helm.sh/helm-v3.18.3-linux-riscv64.tar.gz.sha256sum) / 1f87dab39ed599af463abba2c8b2d4c625cfcbc2f2010da2c9c47db017b1c2ca) - [Windows amd64](https://get.helm.sh/helm-v3.18.3-windows-amd64.zip) ([checksum](https://get.helm.sh/helm-v3.18.3-windows-amd64.zip.sha256sum) / 4cb9185cd7b84395853c04c84c4524a6b794cab07211cedc2e36839f53d8e26d) - [Windows arm64](https://get.helm.sh/helm-v3.18.3-windows-arm64.zip) ([checksum](https://get.helm.sh/helm-v3.18.3-windows-arm64.zip.sha256sum) / 7e83d901af47ca804d99d2eb679b4622fdfe1b5b06b15550f5a432a0e4591bb8) This release was signed with ` 672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 B98E ` and can be found at [@​mattfarina](https://redirect.github.com/mattfarina) [keybase account](https://keybase.io/mattfarina). 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.18.4 is the next patch release and will be on July 09, 2025 - 3.19.0 is the next minor release and will be on September 11, 2025 #### Changelog - build(deps): bump golang.org/x/crypto from 0.38.0 to 0.39.0 [`6838ebc`](https://redirect.github.com/helm/helm/commit/6838ebcf265a3842d1433956e8a622e3290cf324) (dependabot\[bot]) - fix: user username password for login [`5b9e2f6`](https://redirect.github.com/helm/helm/commit/5b9e2f6b4c4e2c8e21d85dc01fbb9d8a454a1fa9) (Terry Howe) - Update pkg/registry/transport.go [`2782412`](https://redirect.github.com/helm/helm/commit/278241207306c699aa6da71fe9e5922fa5db1743) (Terry Howe) - Update pkg/registry/transport.go [`e66cf6a`](https://redirect.github.com/helm/helm/commit/e66cf6afdd4d8f92beb80d2026ff663472fd89df) (Terry Howe) - fix: add debug logging to oci transport [`191f05c`](https://redirect.github.com/helm/helm/commit/191f05c068a25a80cd206c1256c6b11a63c4068b) (Terry Howe) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
f9f4577ed2 |
fix(deps): update module github.com/budimanjojo/talhelper/v3 v3.0.28 → v3.0.29 (clustertool) (#36251)
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.28` -> `v3.0.29` | --- > [!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.29`](https://redirect.github.com/budimanjojo/talhelper/releases/tag/v3.0.29) [Compare Source](https://redirect.github.com/budimanjojo/talhelper/compare/v3.0.28...v3.0.29) #### Changelog - [`ca335a0`](https://redirect.github.com/budimanjojo/talhelper/commit/ca335a0c0f890d787425e7d9f3d572496a5a2037) chore(container): update ghcr.io/siderolabs/talosctl docker tag to v1.10.4 - [`4ddc65a`](https://redirect.github.com/budimanjojo/talhelper/commit/4ddc65a690a2f2bbece08b98d6adbce662e0dedc) chore(container): update goreleaser/goreleaser docker tag to v2.10.2 - [`315fdd2`](https://redirect.github.com/budimanjojo/talhelper/commit/315fdd231435bf62bef93cb899af1194c0aa680a) chore(deps): update dependency siderolabs/talos to v1.10.4 - [`500f117`](https://redirect.github.com/budimanjojo/talhelper/commit/500f1177874708aa6f3143b0bb39bbabd832d227) chore(github-action): update renovatebot/github-action action to v42.0.5 - [`dbfc123`](https://redirect.github.com/budimanjojo/talhelper/commit/dbfc123459d64a5455b12a9ae5313c299652a50b) chore(schema): update talos-extensions.yaml JSON schema - [`512f653`](https://redirect.github.com/budimanjojo/talhelper/commit/512f6533caeabc5744c38cb4c551efd907503577) chore(schema): update talos-extensions.yaml JSON schema ([#​1039](https://redirect.github.com/budimanjojo/talhelper/issues/1039)) - [`425e11d`](https://redirect.github.com/budimanjojo/talhelper/commit/425e11d2a84d12fddbd7f066ff3959d619c52987) chore(schema): update talos-extensions.yaml JSON schema ([#​1040](https://redirect.github.com/budimanjojo/talhelper/issues/1040)) - [`b4fad2b`](https://redirect.github.com/budimanjojo/talhelper/commit/b4fad2bee98d96e5be700252ac0ffec794a3593d) chore(schema): update talos-extensions.yaml JSON schema ([#​1044](https://redirect.github.com/budimanjojo/talhelper/issues/1044)) - [`2330781`](https://redirect.github.com/budimanjojo/talhelper/commit/2330781337cad1d79060f8679abcee87aa05b209) chore(schema): update talos-extensions.yaml JSON schema ([#​1052](https://redirect.github.com/budimanjojo/talhelper/issues/1052)) - [`0a2e14e`](https://redirect.github.com/budimanjojo/talhelper/commit/0a2e14e2359814c5961a75ceecaf3c2a32914c79) feat(genurl): allow sprig functions for installer and iso templates - [`664df25`](https://redirect.github.com/budimanjojo/talhelper/commit/664df25b4db174fac3c95d1d71a247b221400ee4) feat: update Scoop for talhelper version v3.0.28 - [`0a61ec8`](https://redirect.github.com/budimanjojo/talhelper/commit/0a61ec8bea72b81bd97e521597030eccec5822d6) feat: update flake ([#​1037](https://redirect.github.com/budimanjojo/talhelper/issues/1037)) - [`49ea9bb`](https://redirect.github.com/budimanjojo/talhelper/commit/49ea9bbf9ea1e43987d329857564178bdbed94b5) fix(deps): update module github.com/budimanjojo/talhelper/v3 to v3.0.28 - [`9d4e7e5`](https://redirect.github.com/budimanjojo/talhelper/commit/9d4e7e5a898620cfb90909ab85ea3b38104db311) fix(deps): update module github.com/siderolabs/image-factory to v0.7.3 - [`cb45aac`](https://redirect.github.com/budimanjojo/talhelper/commit/cb45aac71ea8e3db4a275e89ef68a7cde4c1a1e0) fix(deps): update module github.com/siderolabs/talos/pkg/machinery to v1.11.0-alpha.1 - [`c0c40e6`](https://redirect.github.com/budimanjojo/talhelper/commit/c0c40e6a306ca745413574f0b65ebb83cb6b1a91) fix(deps): update module golang.org/x/mod to v0.25.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
92e9355fcd |
fix(deps): update module github.com/knadh/koanf/parsers/yaml v0.1.0 → v1.0.0 (clustertool) (#36161)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/knadh/koanf/parsers/yaml](https://redirect.github.com/knadh/koanf) | require | major | `v0.1.0` -> `v1.0.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>knadh/koanf (github.com/knadh/koanf/parsers/yaml)</summary> ### [`v1.0.0`](https://redirect.github.com/knadh/koanf/releases/tag/v1.0.0) [Compare Source](https://redirect.github.com/knadh/koanf/compare/v0.1.0...v1.0.0) - [`deea8ad`](https://redirect.github.com/knadh/koanf/commit/deea8ad) Upgrade deps </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=--> |
||
|
|
8f548c214b | fix(deps): update module github.com/rs/zerolog v1.33.0 → v1.34.0 (clustertool) (#36147) |