From 41362833c289924742a0511e622288b0bc31ebd0 Mon Sep 17 00:00:00 2001 From: updatecli-bot Date: Thu, 15 Jan 2026 12:13:09 +0000 Subject: [PATCH 1/2] chore: docs: update releasepost configuration file releasepost.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- releasepost.yaml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/releasepost.yaml b/releasepost.yaml index 91fa06923..63ff79a1f 100644 --- a/releasepost.yaml +++ b/releasepost.yaml @@ -1,4 +1,47 @@ changelogs: + - kind: github + dir: versioned_docs/version-0.14/changelogs + formats: + - extension: markdown + frontmatters: | + --- + title: "{{ .Changelog.Name }}" + date: "{{ .Changelog.PublishedAt }}" + --- + indexfilename: index + filetemplate: | + {{ .FrontMatters }} + {{ if .Changelog.Author }} + * {{ .Changelog.Author }} released this {{ .Changelog.PublishedAt }}* + {{ end }} + {{ if .Changelog.Description }} + {{ .Changelog.Description }} + {{ end }} + {{ if .Changelog.Assets }} + ## Download + {{ range $asset := .Changelog.Assets }} + * [{{ $asset.Name }}]({{ $asset.DownloadURL }}) + {{ end }} + {{ end }} + {{ if .Changelog.URL }} + *Information retrieved from [here]({{ .Changelog.URL }})* + {{ end }} + indexfrontmatters: | + --- + title: "0.14 Changelogs" + --- + indexfiletemplate: | + {{ .FrontMatters }} + {{ range $pos, $release := .Changelogs }} + * [{{ $release.Name}}](changelogs/{{ $release.Tag }}.md) {{ if (eq $pos 0) }}(latest){{ end}} + {{ end }} + spec: + owner: rancher + repository: fleet + versionfilter: + kind: semver + pattern: "~0.14" + - kind: github dir: versioned_docs/version-0.13/changelogs formats: From 5e7c0c52f3423f297f144eb4bf9b200380213032 Mon Sep 17 00:00:00 2001 From: updatecli-bot Date: Thu, 15 Jan 2026 12:15:57 +0000 Subject: [PATCH 2/2] chore: doc: synchronize Fleet release note MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .../changelogs/changelogs/v0.10.15.md | 48 +++++++ .../changelogs/changelogs/v0.10.16.md | 46 +++++++ .../version-0.10/changelogs/index.md | 6 +- .../changelogs/changelogs/v0.11.10.md | 49 +++++++ .../changelogs/changelogs/v0.11.11.md | 46 +++++++ .../version-0.11/changelogs/index.md | 6 +- .../changelogs/changelogs/v0.12.10.md | 48 +++++++ .../changelogs/changelogs/v0.12.6.md | 52 ++++++++ .../changelogs/changelogs/v0.12.7.md | 48 +++++++ .../changelogs/changelogs/v0.12.8.md | 45 +++++++ .../changelogs/changelogs/v0.12.9.md | 51 ++++++++ .../version-0.12/changelogs/index.md | 12 +- .../changelogs/changelogs/v0.13.0.md | 121 ++++++++--------- .../changelogs/changelogs/v0.13.1.md | 79 ++++++++++++ .../changelogs/changelogs/v0.13.2.md | 61 +++++++++ .../changelogs/changelogs/v0.13.3.md | 57 ++++++++ .../changelogs/changelogs/v0.13.4.md | 58 +++++++++ .../changelogs/changelogs/v0.13.5.md | 63 +++++++++ .../changelogs/changelogs/v0.13.6.md | 60 +++++++++ .../version-0.13/changelogs/index.md | 14 +- .../changelogs/changelogs/next.md | 5 - .../changelogs/changelogs/v0.14.0.md | 122 ++++++++++++++++++ .../changelogs/changelogs/v0.14.1.md | 70 ++++++++++ .../version-0.14/changelogs/index.md | 8 +- 24 files changed, 1105 insertions(+), 70 deletions(-) create mode 100644 versioned_docs/version-0.10/changelogs/changelogs/v0.10.15.md create mode 100644 versioned_docs/version-0.10/changelogs/changelogs/v0.10.16.md create mode 100644 versioned_docs/version-0.11/changelogs/changelogs/v0.11.10.md create mode 100644 versioned_docs/version-0.11/changelogs/changelogs/v0.11.11.md create mode 100644 versioned_docs/version-0.12/changelogs/changelogs/v0.12.10.md create mode 100644 versioned_docs/version-0.12/changelogs/changelogs/v0.12.6.md create mode 100644 versioned_docs/version-0.12/changelogs/changelogs/v0.12.7.md create mode 100644 versioned_docs/version-0.12/changelogs/changelogs/v0.12.8.md create mode 100644 versioned_docs/version-0.12/changelogs/changelogs/v0.12.9.md create mode 100644 versioned_docs/version-0.13/changelogs/changelogs/v0.13.1.md create mode 100644 versioned_docs/version-0.13/changelogs/changelogs/v0.13.2.md create mode 100644 versioned_docs/version-0.13/changelogs/changelogs/v0.13.3.md create mode 100644 versioned_docs/version-0.13/changelogs/changelogs/v0.13.4.md create mode 100644 versioned_docs/version-0.13/changelogs/changelogs/v0.13.5.md create mode 100644 versioned_docs/version-0.13/changelogs/changelogs/v0.13.6.md delete mode 100644 versioned_docs/version-0.14/changelogs/changelogs/next.md create mode 100644 versioned_docs/version-0.14/changelogs/changelogs/v0.14.0.md create mode 100644 versioned_docs/version-0.14/changelogs/changelogs/v0.14.1.md diff --git a/versioned_docs/version-0.10/changelogs/changelogs/v0.10.15.md b/versioned_docs/version-0.10/changelogs/changelogs/v0.10.15.md new file mode 100644 index 000000000..8be0d4475 --- /dev/null +++ b/versioned_docs/version-0.10/changelogs/changelogs/v0.10.15.md @@ -0,0 +1,48 @@ +--- +title: "v0.10.15" +date: "2025-08-22 10:28:32 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-08-22 10:28:32 +0000 UTC* + + +## What's Changed +* Update gomod-k8s-dependencies to v0.30.14 (release/v0.10) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/3823 +* Update dependency go to v1.23.12 (release/v0.10) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/3970 +* Update go dependencies by @thardeck in https://github.com/rancher/fleet/pull/3977 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.10.14...v0.10.15 + + +## Download + +* [fleet-0.10.15.tgz](https://github.com/rancher/fleet/releases/download/v0.10.15/fleet-0.10.15.tgz) + +* [fleet-crd-0.10.15.tgz](https://github.com/rancher/fleet/releases/download/v0.10.15/fleet-crd-0.10.15.tgz) + +* [fleet-agent-0.10.15.tgz](https://github.com/rancher/fleet/releases/download/v0.10.15/fleet-agent-0.10.15.tgz) + +* [fleet_0.10.15_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.15/fleet_0.10.15_checksums.txt) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.15/fleet-linux-arm64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.15/fleetagent-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.15/fleetcontroller-linux-amd64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.15/fleetagent-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.15/fleetagent-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.15/fleetcontroller-linux-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.15/fleet-windows-amd64.exe) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.15/fleet-linux-amd64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.15)* + diff --git a/versioned_docs/version-0.10/changelogs/changelogs/v0.10.16.md b/versioned_docs/version-0.10/changelogs/changelogs/v0.10.16.md new file mode 100644 index 000000000..ced2b1a90 --- /dev/null +++ b/versioned_docs/version-0.10/changelogs/changelogs/v0.10.16.md @@ -0,0 +1,46 @@ +--- +title: "v0.10.16" +date: "2025-09-18 09:00:23 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-09-18 09:00:23 +0000 UTC* + + +## What's Changed +* update hashicorp/go-getter to v1.7.9 and ulitunitz/xz t… by @thardeck in https://github.com/rancher/fleet/pull/4112 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.10.15...v0.10.16 + + +## Download + +* [fleet-agent-0.10.16.tgz](https://github.com/rancher/fleet/releases/download/v0.10.16/fleet-agent-0.10.16.tgz) + +* [fleet-0.10.16.tgz](https://github.com/rancher/fleet/releases/download/v0.10.16/fleet-0.10.16.tgz) + +* [fleet-crd-0.10.16.tgz](https://github.com/rancher/fleet/releases/download/v0.10.16/fleet-crd-0.10.16.tgz) + +* [fleet_0.10.16_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.10.16/fleet_0.10.16_checksums.txt) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.16/fleetagent-linux-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.16/fleet-windows-amd64.exe) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.16/fleet-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.16/fleetcontroller-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.16/fleetcontroller-linux-amd64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.10.16/fleetagent-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.10.16/fleetagent-linux-amd64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.10.16/fleet-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.10.16)* + diff --git a/versioned_docs/version-0.10/changelogs/index.md b/versioned_docs/version-0.10/changelogs/index.md index 6a4cf09f9..4720fc2ee 100644 --- a/versioned_docs/version-0.10/changelogs/index.md +++ b/versioned_docs/version-0.10/changelogs/index.md @@ -3,7 +3,11 @@ title: "0.10 Changelogs" --- -* [v0.10.14](changelogs/v0.10.14.md) (latest) +* [v0.10.16](changelogs/v0.10.16.md) (latest) + +* [v0.10.15](changelogs/v0.10.15.md) + +* [v0.10.14](changelogs/v0.10.14.md) * [v0.10.13](changelogs/v0.10.13.md) diff --git a/versioned_docs/version-0.11/changelogs/changelogs/v0.11.10.md b/versioned_docs/version-0.11/changelogs/changelogs/v0.11.10.md new file mode 100644 index 000000000..aad86c683 --- /dev/null +++ b/versioned_docs/version-0.11/changelogs/changelogs/v0.11.10.md @@ -0,0 +1,49 @@ +--- +title: "v0.11.10" +date: "2025-08-22 12:43:07 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-08-22 12:43:07 +0000 UTC* + + +## What's Changed +* Harden values files exclusion from bundle resources by @weyfonk in https://github.com/rancher/fleet/pull/3962 +* Update dependency go to v1.23.12 (release/v0.11) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/3969 +* chore(deps): update gomod-k8s-dependencies to v0.31.12 (release/v0.11) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/3996 +* chore(deps): update module k8s.io/kubernetes to v1.31.12 (release/v0.11) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4005 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.11.9...v0.11.10 + + +## Download + +* [fleet-0.11.10.tgz](https://github.com/rancher/fleet/releases/download/v0.11.10/fleet-0.11.10.tgz) + +* [fleet-agent-0.11.10.tgz](https://github.com/rancher/fleet/releases/download/v0.11.10/fleet-agent-0.11.10.tgz) + +* [fleet-crd-0.11.10.tgz](https://github.com/rancher/fleet/releases/download/v0.11.10/fleet-crd-0.11.10.tgz) + +* [fleet_0.11.10_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.10/fleet_0.11.10_checksums.txt) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.10/fleetagent-linux-amd64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.10/fleet-linux-amd64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.10/fleetagent-linux-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.10/fleetagent-windows-amd64.exe) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.10/fleet-linux-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.10/fleet-windows-amd64.exe) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.10/fleetcontroller-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.10/fleetcontroller-linux-amd64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.10)* + diff --git a/versioned_docs/version-0.11/changelogs/changelogs/v0.11.11.md b/versioned_docs/version-0.11/changelogs/changelogs/v0.11.11.md new file mode 100644 index 000000000..44aef19bb --- /dev/null +++ b/versioned_docs/version-0.11/changelogs/changelogs/v0.11.11.md @@ -0,0 +1,46 @@ +--- +title: "v0.11.11" +date: "2025-09-18 09:13:26 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-09-18 09:13:26 +0000 UTC* + + +## What's Changed +* chore(deps): update github.com/ulikunitz/xz to v0.5.15 by @thardeck in https://github.com/rancher/fleet/pull/4111 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.11.10...v0.11.11 + + +## Download + +* [fleet-0.11.11.tgz](https://github.com/rancher/fleet/releases/download/v0.11.11/fleet-0.11.11.tgz) + +* [fleet-agent-0.11.11.tgz](https://github.com/rancher/fleet/releases/download/v0.11.11/fleet-agent-0.11.11.tgz) + +* [fleet-crd-0.11.11.tgz](https://github.com/rancher/fleet/releases/download/v0.11.11/fleet-crd-0.11.11.tgz) + +* [fleet_0.11.11_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.11.11/fleet_0.11.11_checksums.txt) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.11/fleet-windows-amd64.exe) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.11/fleetagent-linux-arm64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.11/fleet-linux-arm64) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.11/fleetagent-linux-amd64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.11/fleet-linux-amd64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.11.11/fleetcontroller-linux-amd64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.11.11/fleetagent-windows-amd64.exe) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.11.11/fleetcontroller-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.11.11)* + diff --git a/versioned_docs/version-0.11/changelogs/index.md b/versioned_docs/version-0.11/changelogs/index.md index 35f31aa5d..94f0009d0 100644 --- a/versioned_docs/version-0.11/changelogs/index.md +++ b/versioned_docs/version-0.11/changelogs/index.md @@ -3,7 +3,11 @@ title: "0.11 Changelogs" --- -* [v0.11.9](changelogs/v0.11.9.md) (latest) +* [v0.11.11](changelogs/v0.11.11.md) (latest) + +* [v0.11.10](changelogs/v0.11.10.md) + +* [v0.11.9](changelogs/v0.11.9.md) * [v0.11.8](changelogs/v0.11.8.md) diff --git a/versioned_docs/version-0.12/changelogs/changelogs/v0.12.10.md b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.10.md new file mode 100644 index 000000000..767c1bf73 --- /dev/null +++ b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.10.md @@ -0,0 +1,48 @@ +--- +title: "v0.12.10" +date: "2025-12-12 15:06:55 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-12-12 15:06:55 +0000 UTC* + + +## What's Changed +* Update gomod-k8s-dependencies to v0.32.10 (release/v0.12) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4324 +* Update dependency go to v1.24.11 (release/v0.12) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4407 +* Update golang.org/x/crypto to v0.45.0 by @thardeck in https://github.com/rancher/fleet/pull/4418 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.12.9...v0.12.10 + + +## Download + +* [fleet-0.12.10.tgz](https://github.com/rancher/fleet/releases/download/v0.12.10/fleet-0.12.10.tgz) + +* [fleet-crd-0.12.10.tgz](https://github.com/rancher/fleet/releases/download/v0.12.10/fleet-crd-0.12.10.tgz) + +* [fleet-agent-0.12.10.tgz](https://github.com/rancher/fleet/releases/download/v0.12.10/fleet-agent-0.12.10.tgz) + +* [fleet_0.12.10_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.10/fleet_0.12.10_checksums.txt) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.10/fleetcontroller-linux-amd64) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.10/fleetagent-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.10/fleetcontroller-linux-arm64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.10/fleetagent-linux-arm64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.10/fleet-linux-amd64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.10/fleet-linux-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.10/fleetagent-windows-amd64.exe) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.10/fleet-windows-amd64.exe) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.10)* + diff --git a/versioned_docs/version-0.12/changelogs/changelogs/v0.12.6.md b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.6.md new file mode 100644 index 000000000..37c7821c6 --- /dev/null +++ b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.6.md @@ -0,0 +1,52 @@ +--- +title: "v0.12.6" +date: "2025-08-22 13:59:39 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-08-22 13:59:39 +0000 UTC* + + +## What's Changed +* Calculate hash with all data, not only processed (#3917) by @0xavi0 in https://github.com/rancher/fleet/pull/3923 +* Adds InsecureTLS and BasicHTTP to helm secret (#3872) by @0xavi0 in https://github.com/rancher/fleet/pull/3950 +* Avoid using a global registry client when downloading OCI helm charts… by @0xavi0 in https://github.com/rancher/fleet/pull/3946 +* Harden values files exclusion from bundle resources by @weyfonk in https://github.com/rancher/fleet/pull/3961 +* chore(deps): update helm dependency to v3.18.5 by @thardeck in https://github.com/rancher/fleet/pull/4003 +* Bump k8s to v1.33.2 by @thardeck in https://github.com/rancher/fleet/pull/3943 +* chore: update Go toolchain to version 1.24.6 by @thardeck in https://github.com/rancher/fleet/pull/3984 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.12.5...v0.12.6 + + +## Download + +* [fleet-0.12.6.tgz](https://github.com/rancher/fleet/releases/download/v0.12.6/fleet-0.12.6.tgz) + +* [fleet-crd-0.12.6.tgz](https://github.com/rancher/fleet/releases/download/v0.12.6/fleet-crd-0.12.6.tgz) + +* [fleet-agent-0.12.6.tgz](https://github.com/rancher/fleet/releases/download/v0.12.6/fleet-agent-0.12.6.tgz) + +* [fleet_0.12.6_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.6/fleet_0.12.6_checksums.txt) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.6/fleet-windows-amd64.exe) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.6/fleetagent-linux-arm64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.6/fleetcontroller-linux-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.6/fleetagent-windows-amd64.exe) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.6/fleetcontroller-linux-amd64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.6/fleet-linux-amd64) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.6/fleetagent-linux-amd64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.6/fleet-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.6)* + diff --git a/versioned_docs/version-0.12/changelogs/changelogs/v0.12.7.md b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.7.md new file mode 100644 index 000000000..767416161 --- /dev/null +++ b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.7.md @@ -0,0 +1,48 @@ +--- +title: "v0.12.7" +date: "2025-09-18 10:56:32 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-09-18 10:56:32 +0000 UTC* + + +## What's Changed +* Improve bundle value secret logging by @manno in https://github.com/rancher/fleet/pull/4086 +* Use patch to update bundledeployment status by @weyfonk in https://github.com/rancher/fleet/pull/4094 +* chore(deps): update dependency go to v1.24.7 (release/v0.12) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4100 +* Update hashicorp/go-getter to v1.7.9 and ulitunitz/xz to… by @thardeck in https://github.com/rancher/fleet/pull/4110 + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.12.6...v0.12.7 + + +## Download + +* [fleet-crd-0.12.7.tgz](https://github.com/rancher/fleet/releases/download/v0.12.7/fleet-crd-0.12.7.tgz) + +* [fleet-0.12.7.tgz](https://github.com/rancher/fleet/releases/download/v0.12.7/fleet-0.12.7.tgz) + +* [fleet-agent-0.12.7.tgz](https://github.com/rancher/fleet/releases/download/v0.12.7/fleet-agent-0.12.7.tgz) + +* [fleet_0.12.7_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.7/fleet_0.12.7_checksums.txt) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.7/fleetagent-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.7/fleetcontroller-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.7/fleetcontroller-linux-amd64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.7/fleetagent-windows-amd64.exe) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.7/fleet-windows-amd64.exe) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.7/fleetagent-linux-arm64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.7/fleet-linux-amd64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.7/fleet-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.7)* + diff --git a/versioned_docs/version-0.12/changelogs/changelogs/v0.12.8.md b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.8.md new file mode 100644 index 000000000..e76ca0722 --- /dev/null +++ b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.8.md @@ -0,0 +1,45 @@ +--- +title: "v0.12.8" +date: "2025-10-17 09:19:33 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-10-17 09:19:33 +0000 UTC* + + +## What's Changed +* Don't requeue for missing resources by @weyfonk in https://github.com/rancher/fleet/pull/4176 + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.12.7...v0.12.8 + + +## Download + +* [fleet-crd-0.12.8.tgz](https://github.com/rancher/fleet/releases/download/v0.12.8/fleet-crd-0.12.8.tgz) + +* [fleet-0.12.8.tgz](https://github.com/rancher/fleet/releases/download/v0.12.8/fleet-0.12.8.tgz) + +* [fleet-agent-0.12.8.tgz](https://github.com/rancher/fleet/releases/download/v0.12.8/fleet-agent-0.12.8.tgz) + +* [fleet_0.12.8_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.8/fleet_0.12.8_checksums.txt) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.8/fleetcontroller-linux-amd64) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.8/fleetagent-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.8/fleetcontroller-linux-arm64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.8/fleet-linux-amd64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.8/fleet-windows-amd64.exe) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.8/fleetagent-windows-amd64.exe) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.8/fleetagent-linux-arm64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.8/fleet-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.8)* + diff --git a/versioned_docs/version-0.12/changelogs/changelogs/v0.12.9.md b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.9.md new file mode 100644 index 000000000..4f573c0f3 --- /dev/null +++ b/versioned_docs/version-0.12/changelogs/changelogs/v0.12.9.md @@ -0,0 +1,51 @@ +--- +title: "v0.12.9" +date: "2025-11-18 14:54:06 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-11-18 14:54:06 +0000 UTC* + + +## What's Changed +* Update gomod-k8s-dependencies to v0.32.9 by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4231 +* Add userID to log messages by @thardeck in https://github.com/rancher/fleet/pull/4245 +* Fleet apply refuses to update bundle scheduled for deletion by @weyfonk in https://github.com/rancher/fleet/pull/4219 +* Prevent bundle reconciles triggered by bundle status updates by @weyfonk in https://github.com/rancher/fleet/pull/4214 +* Explicitly delete bundle secrets on bundle deletion by @weyfonk in https://github.com/rancher/fleet/pull/4217 +* Bump Go to 1.24.9 by @thardeck in https://github.com/rancher/fleet/pull/4332 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.12.8...v0.12.9 + + +## Download + +* [fleet-crd-0.12.9.tgz](https://github.com/rancher/fleet/releases/download/v0.12.9/fleet-crd-0.12.9.tgz) + +* [fleet-0.12.9.tgz](https://github.com/rancher/fleet/releases/download/v0.12.9/fleet-0.12.9.tgz) + +* [fleet-agent-0.12.9.tgz](https://github.com/rancher/fleet/releases/download/v0.12.9/fleet-agent-0.12.9.tgz) + +* [fleet_0.12.9_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.12.9/fleet_0.12.9_checksums.txt) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.9/fleetagent-windows-amd64.exe) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.9/fleetcontroller-linux-amd64) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.9/fleetagent-linux-amd64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.12.9/fleet-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.9/fleetcontroller-linux-arm64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.9/fleet-linux-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.12.9/fleet-windows-amd64.exe) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.12.9/fleetagent-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.12.9)* + diff --git a/versioned_docs/version-0.12/changelogs/index.md b/versioned_docs/version-0.12/changelogs/index.md index 4aa229cf3..ce3d3ce09 100644 --- a/versioned_docs/version-0.12/changelogs/index.md +++ b/versioned_docs/version-0.12/changelogs/index.md @@ -3,7 +3,17 @@ title: "0.12 Changelogs" --- -* [v0.12.5](changelogs/v0.12.5.md) (latest) +* [v0.12.10](changelogs/v0.12.10.md) (latest) + +* [v0.12.9](changelogs/v0.12.9.md) + +* [v0.12.8](changelogs/v0.12.8.md) + +* [v0.12.7](changelogs/v0.12.7.md) + +* [v0.12.6](changelogs/v0.12.6.md) + +* [v0.12.5](changelogs/v0.12.5.md) * [v0.12.4](changelogs/v0.12.4.md) diff --git a/versioned_docs/version-0.13/changelogs/changelogs/v0.13.0.md b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.0.md index 572382b8c..ddc4301ce 100644 --- a/versioned_docs/version-0.13/changelogs/changelogs/v0.13.0.md +++ b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.0.md @@ -1,11 +1,15 @@ ---- -title: "v0.13.0" -date: "2025-07-23 15:09:14 +0000 UTC" ---- - - -* (github-actions[bot]) released this 2025-07-23 15:09:14 +0000 UTC* - +--- +title: "v0.13.0" +date: "2025-07-23 15:09:14 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-07-23 15:09:14 +0000 UTC* + + +## Breaking changes + +* When using SSH to point to a git repository, Fleet checks host keys by default, rejecting connection attempts to unknown hosts ([docs](https://fleet.rancher.io/gitrepo-add#known-hosts)), by @weyfonk in https://github.com/rancher/fleet/pull/3523 ## Notable changes @@ -15,15 +19,14 @@ date: "2025-07-23 15:09:14 +0000 UTC" ## Additions -* Fleet now supports a new, user-driven bundle scan method, for more flexibility. The usual scanning method is still supported ([docs](../../gitrepo-content.md#alternative-scan-explicitly-defined-by-the-user)), by @0xavi0 in https://github.com/rancher/fleet/pull/3480 -* When using SSH to point to a git repository, Fleet checks host keys by default, rejecting connection attempts to unknown hosts ([docs](../../gitrepo-add.md#known-hosts)), by @weyfonk in https://github.com/rancher/fleet/pull/3523 -* Replica counts are now configurable, for controllers as well as agents ([docs](../../installation.md#controller-and-agent-replicas)), by @p-se in https://github.com/rancher/fleet/pull/3457 -* Fleet can now handle a separate webhook secret for each GitRepo ([docs](../../webhook#option-2-define-a-secret-for-each-gitrepo)), by @0xavi0 in https://github.com/rancher/fleet/pull/3490 +* Fleet now supports a new, user-driven bundle scan method, for more flexibility. The usual scanning method is still supported ([docs](https://fleet.rancher.io/gitrepo-content#alternative-scan-explicitly-defined-by-the-user)), by @0xavi0 in https://github.com/rancher/fleet/pull/3480 +* Replica counts are now configurable, for controllers as well as agents ([docs](https://fleet.rancher.io/installation#controller-and-agent-replicas)), by @p-se in https://github.com/rancher/fleet/pull/3457 +* Fleet can now handle a separate webhook secret for each GitRepo ([docs](https://fleet.rancher.io/webhook#option-2-define-a-secret-for-each-gitrepo)), by @0xavi0 in https://github.com/rancher/fleet/pull/3490 * Fleet charts support extra labels and annotations, propagating them to controller deployments by @0xavi0 in https://github.com/rancher/fleet/pull/3531 and by @p-se in https://github.com/rancher/fleet/pull/3664 * Agent leader election is now configurable ([example](https://github.com/rancher/fleet/blob/main/charts/fleet/values.yaml#L135-L138)), by @p-se in https://github.com/rancher/fleet/pull/3463 * The old service account migration is removed by @weyfonk in https://github.com/rancher/fleet/pull/3601 * Fleet no longer computes resource keys in bundle statuses by @manno in https://github.com/rancher/fleet/pull/3681 -* Fleet supports new gitjob metrics ([docs](../../observability.md#metrics)) by @p-se in https://github.com/rancher/fleet/pull/3649 +* Fleet supports new gitjob metrics ([docs](https://fleet.rancher.io/observability#metrics)) by @p-se in https://github.com/rancher/fleet/pull/3649 * Agent management is now able to use a label to skip clusters by @manno in https://github.com/rancher/fleet/pull/3744 ### HelmOps @@ -36,7 +39,7 @@ HelmOps is no longer experimental. * Preventing bundle naming collision between GitOps and HelmOps bundles * Installing Helm charts in setups with strict TLS mode enabled -Metrics and cluster statuses now include HelmOps data. See the [Fleet documentation](../../helm-ops.md) for more details. +Metrics and cluster statuses now include HelmOps data. See the [Fleet documentation](https://fleet.rancher.io/helm-ops) for more details. ### OCI Storage @@ -44,7 +47,7 @@ OCI storage is no longer experimental, and is enabled by default, although bundl It also supports garbage collection on a best-effort basis, as well as improved traceability of secrets used in OCI storage. This includes labeling the secrets that Fleet clones to downstream clusters and generating an event if deleting an OCI artifact results in an error. -See the [Fleet documentation](../../oci-storage.md) for more details. +See the [Fleet documentation](https://fleet.rancher.io/oci-storage) for more details. ### Traceability improvements @@ -96,7 +99,7 @@ And also: * `fleet apply` has received a few tweaks, enabling it to scan bundles concurrently by @aruiz14 in https://github.com/rancher/fleet/pull/3721 -* Fleet's rollout feature has shiny new [docs](../../rollout.md), check them out! +* Fleet's rollout feature has shiny new [docs](https://fleet.rancher.io/rollout), check them out! * Rate limiting settings now use defaults from Kubernetes' `client-go` instead of disabling rate limiting altogether, by @manno in https://github.com/rancher/fleet/pull/3848 * This version bumps Go to 1.24.0 by @thardeck in https://github.com/rancher/fleet/pull/3679 @@ -109,46 +112,46 @@ And also: **Full Changelog**: https://github.com/rancher/fleet/compare/v0.13.0-rc.3...v0.13.0 - - - -## Download - -* [fleet-0.13.0.tgz](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-0.13.0.tgz) - -* [fleet-agent-0.13.0.tgz](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-agent-0.13.0.tgz) - -* [fleet-crd-0.13.0.tgz](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-crd-0.13.0.tgz) - -* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-benchmark-windows-amd64.exe) - -* [fleet_0.13.0_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet_0.13.0_checksums.txt) - -* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-benchmark-darwin-arm64) - -* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-benchmark-linux-arm64) - -* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-benchmark-linux-amd64) - -* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-windows-amd64.exe) - -* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetagent-linux-amd64) - -* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-linux-arm64) - -* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetcontroller-linux-arm64) - -* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-darwin-arm64) - -* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetagent-windows-amd64.exe) - -* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-linux-amd64) - -* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetagent-linux-arm64) - -* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetcontroller-linux-amd64) - - - -*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.13.0)* - + + + +## Download + +* [fleet-0.13.0.tgz](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-0.13.0.tgz) + +* [fleet-agent-0.13.0.tgz](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-agent-0.13.0.tgz) + +* [fleet-crd-0.13.0.tgz](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-crd-0.13.0.tgz) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-benchmark-windows-amd64.exe) + +* [fleet_0.13.0_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet_0.13.0_checksums.txt) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-benchmark-darwin-arm64) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-benchmark-linux-arm64) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-benchmark-linux-amd64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetagent-linux-amd64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-linux-arm64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetcontroller-linux-arm64) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-darwin-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetagent-windows-amd64.exe) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleet-linux-amd64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetagent-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.0/fleetcontroller-linux-amd64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.13.0)* + diff --git a/versioned_docs/version-0.13/changelogs/changelogs/v0.13.1.md b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.1.md new file mode 100644 index 000000000..06a1c86e1 --- /dev/null +++ b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.1.md @@ -0,0 +1,79 @@ +--- +title: "v0.13.1" +date: "2025-08-22 14:40:53 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-08-22 14:40:53 +0000 UTC* + + +This is a bugfix release. + +## What's Changed + +### Auth fixes +* Add InsecureTLS and BasicHTTP options to Helm secret (#3872) by @0xavi0 in https://github.com/rancher/fleet/pull/3948 +* Fix auth issues when downloading Helm charts from OCI registries by @0xavi0 in https://github.com/rancher/fleet/pull/3947 + +### HelmOps +* Fix Helm access secret cloning (#3983) by @0xavi0 in https://github.com/rancher/fleet/pull/3988 +* Support semver constraints with OCI polling by @weyfonk in https://github.com/rancher/fleet/pull/3964 +* Fix support for Helm repositories using `v` prefix in chart versions by @0xavi0 in https://github.com/rancher/fleet/pull/3959 + +### Resources and statuses +* Prevent deployment errors caused by Content resource hash mismatches (#3917) by @0xavi0 in https://github.com/rancher/fleet/pull/3922 +* Fix resources readiness detection in GitRepo status by @p-se in https://github.com/rancher/fleet/pull/3952 +* Harden values files exclusion from bundle resources by @weyfonk in https://github.com/rancher/fleet/pull/3956 + +### Deployments +* Support graceful agent shutdown by @weyfonk in https://github.com/rancher/fleet/pull/3927 + +### Dependencies +* Update dependency go to v1.24.6 by @thardeck in https://github.com/rancher/fleet/pull/3971 +* chore(deps): update gomod-k8s-dependencies to v0.33.4 (release/v0.13) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/3998 +* chore(deps): update helm dependency to v3.18.5 by @thardeck in https://github.com/rancher/fleet/pull/4002 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.13.0...v0.13.1 + + +## Download + +* [fleet-agent-0.13.1.tgz](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-agent-0.13.1.tgz) + +* [fleet-crd-0.13.1.tgz](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-crd-0.13.1.tgz) + +* [fleet-0.13.1.tgz](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-0.13.1.tgz) + +* [fleet_0.13.1_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet_0.13.1_checksums.txt) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-benchmark-linux-amd64) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-benchmark-linux-arm64) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-benchmark-windows-amd64.exe) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-benchmark-darwin-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.1/fleetagent-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleetagent-linux-amd64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleetcontroller-linux-arm64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-linux-arm64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleetagent-linux-arm64) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-darwin-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.1/fleet-windows-amd64.exe) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.1/fleetcontroller-linux-amd64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.13.1)* + diff --git a/versioned_docs/version-0.13/changelogs/changelogs/v0.13.2.md b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.2.md new file mode 100644 index 000000000..29c99fc22 --- /dev/null +++ b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.2.md @@ -0,0 +1,61 @@ +--- +title: "v0.13.2" +date: "2025-09-18 13:37:20 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-09-18 13:37:20 +0000 UTC* + + +## What's Changed +* Adds basicHTTP to HelmOps (#3990) by @0xavi0 in https://github.com/rancher/fleet/pull/4064 +* Enable Helm releases in `pending-install` state to be replaced by @weyfonk in https://github.com/rancher/fleet/pull/4065 +* Improve bundle value secret logging by @manno in https://github.com/rancher/fleet/pull/4088 +* Replace deprecated Requeue with RequeueAfter in controllers by @thardeck in https://github.com/rancher/fleet/pull/4108 +* Bump go getter and ulikunitz/xz by @thardeck in https://github.com/rancher/fleet/pull/4109 +* chore(deps): update dependency go to v1.24.7 (release/v0.13) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4099 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.13.1...v0.13.2 + + +## Download + +* [fleet-crd-0.13.2.tgz](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-crd-0.13.2.tgz) + +* [fleet-0.13.2.tgz](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-0.13.2.tgz) + +* [fleet-agent-0.13.2.tgz](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-agent-0.13.2.tgz) + +* [fleet_0.13.2_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet_0.13.2_checksums.txt) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-benchmark-darwin-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-windows-amd64.exe) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleetagent-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleetcontroller-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleetcontroller-linux-arm64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-linux-arm64) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-darwin-arm64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-linux-amd64) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-benchmark-linux-amd64) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-benchmark-linux-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.2/fleetagent-windows-amd64.exe) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.2/fleet-benchmark-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.2/fleetagent-linux-amd64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.13.2)* + diff --git a/versioned_docs/version-0.13/changelogs/changelogs/v0.13.3.md b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.3.md new file mode 100644 index 000000000..470b3c152 --- /dev/null +++ b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.3.md @@ -0,0 +1,57 @@ +--- +title: "v0.13.3" +date: "2025-09-25 11:27:27 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-09-25 11:27:27 +0000 UTC* + + +## What's Changed +* Remove HTML response body from HelmOps errors (#4129) by @weyfonk in https://github.com/rancher/fleet/pull/4141 +* Update helm.sh/helm dependency to v3.18.6 by @thardeck in https://github.com/rancher/fleet/pull/4161 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.13.2...v0.13.3 + + +## Download + +* [fleet-agent-0.13.3.tgz](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-agent-0.13.3.tgz) + +* [fleet-crd-0.13.3.tgz](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-crd-0.13.3.tgz) + +* [fleet-0.13.3.tgz](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-0.13.3.tgz) + +* [fleet_0.13.3_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet_0.13.3_checksums.txt) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-benchmark-linux-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.3/fleetagent-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleetagent-linux-amd64) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-darwin-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleetcontroller-linux-amd64) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-benchmark-windows-amd64.exe) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-benchmark-darwin-arm64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleetcontroller-linux-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-windows-amd64.exe) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-linux-amd64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleetagent-linux-arm64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-linux-arm64) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.3/fleet-benchmark-linux-amd64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.13.3)* + diff --git a/versioned_docs/version-0.13/changelogs/changelogs/v0.13.4.md b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.4.md new file mode 100644 index 000000000..ef8112105 --- /dev/null +++ b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.4.md @@ -0,0 +1,58 @@ +--- +title: "v0.13.4" +date: "2025-10-17 08:41:44 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-10-17 08:41:44 +0000 UTC* + + +## What's Changed +* Don't requeue for missing resources by @weyfonk in https://github.com/rancher/fleet/pull/4175 +* Support git auth with access token by @weyfonk in https://github.com/rancher/fleet/pull/4190 +* Exclude Fleet config files regardless of their naming by @weyfonk in https://github.com/rancher/fleet/pull/4208 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.13.3...v0.13.4 + + +## Download + +* [fleet-crd-0.13.4.tgz](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-crd-0.13.4.tgz) + +* [fleet-agent-0.13.4.tgz](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-agent-0.13.4.tgz) + +* [fleet-0.13.4.tgz](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-0.13.4.tgz) + +* [fleet_0.13.4_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet_0.13.4_checksums.txt) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-benchmark-darwin-arm64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleetagent-linux-arm64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleetcontroller-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleetcontroller-linux-amd64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.4/fleetagent-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleetagent-linux-amd64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-windows-amd64.exe) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-linux-arm64) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-darwin-arm64) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-benchmark-windows-amd64.exe) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-linux-amd64) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-benchmark-linux-amd64) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.4/fleet-benchmark-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.13.4)* + diff --git a/versioned_docs/version-0.13/changelogs/changelogs/v0.13.5.md b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.5.md new file mode 100644 index 000000000..c9c6f14e6 --- /dev/null +++ b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.5.md @@ -0,0 +1,63 @@ +--- +title: "v0.13.5" +date: "2025-11-18 14:58:17 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-11-18 14:58:17 +0000 UTC* + + +## What's Changed +* Update Kubernetes libraries to v0.33.5 by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4230 +* Update Go to v1.24.9 by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4229 +* Add userID to log messages by @thardeck in https://github.com/rancher/fleet/pull/4244 +* Fleet apply refuses to update bundle scheduled for deletion by @weyfonk in https://github.com/rancher/fleet/pull/4218 +* Prevent bundle reconciles triggered by bundle status updates by @weyfonk in https://github.com/rancher/fleet/pull/4213 +* Explicitly delete bundle secrets on bundle deletion by @weyfonk in https://github.com/rancher/fleet/pull/4216 +* Bundle controller continues when one bundledeployment cannot be created by @weyfonk in https://github.com/rancher/fleet/pull/4220 +* Limit PerClusterState to less than 1mb by @weyfonk in https://github.com/rancher/fleet/pull/4215 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.13.4...v0.13.5 + + +## Download + +* [fleet-0.13.5.tgz](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-0.13.5.tgz) + +* [fleet-crd-0.13.5.tgz](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-crd-0.13.5.tgz) + +* [fleet-agent-0.13.5.tgz](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-agent-0.13.5.tgz) + +* [fleet_0.13.5_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet_0.13.5_checksums.txt) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-benchmark-windows-amd64.exe) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-benchmark-linux-arm64) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-darwin-arm64) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-benchmark-darwin-arm64) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleetagent-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleetcontroller-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleetcontroller-linux-amd64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-windows-amd64.exe) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleetagent-linux-arm64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-linux-amd64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-linux-arm64) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.5/fleet-benchmark-linux-amd64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.5/fleetagent-windows-amd64.exe) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.13.5)* + diff --git a/versioned_docs/version-0.13/changelogs/changelogs/v0.13.6.md b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.6.md new file mode 100644 index 000000000..7fe9ed063 --- /dev/null +++ b/versioned_docs/version-0.13/changelogs/changelogs/v0.13.6.md @@ -0,0 +1,60 @@ +--- +title: "v0.13.6" +date: "2025-12-12 14:47:18 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-12-12 14:47:18 +0000 UTC* + + +## What's Changed +* Webhooks in azure devops should support spaces and old URL formats in https://github.com/rancher/fleet/pull/4308 +* Add configurable concurrent bundle creation routines to fleet apply by @aruiz14 in https://github.com/rancher/fleet/pull/4382 +* Reuse transports with same settings for Fleet CLI by @aruiz14 in https://github.com/rancher/fleet/pull/4411 +* Update k8s dependencies to v0.33.7 (release/v0.13) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4422 +* Update dependency go to v1.24.11 (release/v0.13) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4403 +* Update golang.org/x/crypto to v0.45.0 by @thardeck in https://github.com/rancher/fleet/pull/4417 + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.13.5...v0.13.6 + + +## Download + +* [fleet-0.13.6.tgz](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-0.13.6.tgz) + +* [fleet-agent-0.13.6.tgz](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-agent-0.13.6.tgz) + +* [fleet-crd-0.13.6.tgz](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-crd-0.13.6.tgz) + +* [fleet_0.13.6_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet_0.13.6_checksums.txt) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-benchmark-darwin-arm64) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-benchmark-linux-amd64) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-benchmark-windows-amd64.exe) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-darwin-arm64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-linux-amd64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleetcontroller-linux-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-windows-amd64.exe) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleetagent-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleetcontroller-linux-amd64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.13.6/fleetagent-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleetagent-linux-amd64) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-benchmark-linux-arm64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.13.6/fleet-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.13.6)* + diff --git a/versioned_docs/version-0.13/changelogs/index.md b/versioned_docs/version-0.13/changelogs/index.md index b50da85dd..971de0ad9 100644 --- a/versioned_docs/version-0.13/changelogs/index.md +++ b/versioned_docs/version-0.13/changelogs/index.md @@ -3,5 +3,17 @@ title: "0.13 Changelogs" --- -* [v0.13.0](changelogs/v0.13.0.md) (latest) +* [v0.13.6](changelogs/v0.13.6.md) (latest) + +* [v0.13.5](changelogs/v0.13.5.md) + +* [v0.13.4](changelogs/v0.13.4.md) + +* [v0.13.3](changelogs/v0.13.3.md) + +* [v0.13.2](changelogs/v0.13.2.md) + +* [v0.13.1](changelogs/v0.13.1.md) + +* [v0.13.0](changelogs/v0.13.0.md) diff --git a/versioned_docs/version-0.14/changelogs/changelogs/next.md b/versioned_docs/version-0.14/changelogs/changelogs/next.md deleted file mode 100644 index d5aef1f14..000000000 --- a/versioned_docs/version-0.14/changelogs/changelogs/next.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: "Next 🚧" ---- - -We are still working on the next release. diff --git a/versioned_docs/version-0.14/changelogs/changelogs/v0.14.0.md b/versioned_docs/version-0.14/changelogs/changelogs/v0.14.0.md new file mode 100644 index 000000000..3d8e7bd94 --- /dev/null +++ b/versioned_docs/version-0.14/changelogs/changelogs/v0.14.0.md @@ -0,0 +1,122 @@ +--- +title: "v0.14.0" +date: "2025-11-18 14:56:48 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-11-18 14:56:48 +0000 UTC* + + +## Notable changes + +* Auth through Github Apps is now supported ([docs](https://fleet.rancher.io/gitrepo-add#using-a-github-app)), courtesy of @hmrks in #3809 +* The agent supports Priority Classes and Pod Disruption Budgets (support for this in Rancher is underway), by @p-se in #4057 +* Experimental features: + * GitOps deployments can be scheduled, through a new `Schedule` CRD ([docs](https://fleet.rancher.io/scheduling)) by @0xavi0 in #4184 + * Config maps and secrets can be created once, and copied to all downstream clusters through a new `downstreamResources` field ([docs](https://fleet.rancher.io/experimental-downstream-resources)) by @weyfonk in #4236 + +## Additions + +- Use a scheduler for gitops polling, making it more robust, no longer relying on an implementation detail of the `controller-runtime` queue, by @0xavi0 in #4257 +- Support graceful agent shutdown by @weyfonk in #3918 + +### Helm and Git Authentication +- Support globbing in HelmSecretForPaths by @weyfonk ([docs](https://fleet.rancher.io/gitrepo-add#use-different-helm-credentials-for-each-path)) in #3815 and #4158 +- Adds InsecureTLS and BasicHTTP to helm secret by @0xavi0 in #3872 +- Support git auth with access token (username is now optional) by @weyfonk in #4139 + +### Configuration +- CLI arguments to disable leader election by @p-se in #3891 +- Add affinity arg to helm chart values by @manno in #4145 +- Add resources constraints section to helm chart values by @manno in #4170 + +### Traceability of created resources +- Add userID to log messages by @thardeck in #4202 + +## Bugfixes + +- Webhooks in azure devops now support spaces and older URL formats, courtesy of @matteotumiati in #4060 +- `not logged in` auth errors should now be history thanks to @0xavi0 in #3938 +- Inconsistencies in GitRepo status resources have been fixed by @p-se in #3890 + +### HelmOps +- Fix support for `v*` Helm versions by @0xavi0 in #3955 +- Support semver constraints with OCI polling in HelmOps by @weyfonk in #3963 +- Adds basicHTTP to HelmOps when using OCI registries by @0xavi0 in #3990 + +### Optimising bundle contents +- Fleet config files are now excluded from bundles even if they are not named `fleet.yaml`, as could happen when relying on user-driven bundle scanning (see warning block [here](https://fleet.rancher.io/gitrepo-content#alternative-scan-explicitly-defined-by-the-user)) by @weyfonk in #4207 +- Harden values files exclusion from bundle resources by @weyfonk in #3960 + +### Errors and reporting +- Improve bundle and GitRepo status error reporting by @weyfonk in #4167 +- Bundle controller continues when one bundledeployment cannot be created by @manno in #4074 +- Remove HTML response body from HelmOps errors by @weyfonk in #4129 +- Add erroneous resource to perClusterState by @p-se in #4116 +- Improve Bundle Value Secret Logging by @manno in #4026 +- Don't add same field multiple times to logger by @manno in #4156 + +### Better management of Fleet resources +- Deletes the cluster's namespace on Cluster deletion by @0xavi0 in #4224 +- Track UID of existing bundle deployment to prevent orphaning on failure by @thardeck in #4276 +- Avoids returning an error when deleting OCI artifacts by @0xavi0 in #4221 +- Limit PerClusterState to less than 1mb by @manno in #4160 +- Explicitly delete bundle secrets on bundle deletion by @manno in #4146 +- Fleet apply refuses to update bundle scheduled for deletion by @manno in #4075 +- Don't requeue for missing resources by @manno in #4172 +- Prevent bundle reconciles triggered by bundle status updates by @weyfonk in #4171 +- Stuck helm release in pending-install are replaced (SURE-10627) by @manno in #4051 +- Fix copying of helm secrets to downstream clusters by @0xavi0 in #3983 +- Fix hash mismatch error in bundles by @0xavi0 in #3917 + +## What's Changed + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.13.5...v0.14.0 + +## New Contributors + +- @matteotumiati made their first contribution in #4060 +- @hmrks made their first contribution in #3809 + + + +## Download + +* [fleet-agent-0.14.0.tgz](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-agent-0.14.0.tgz) + +* [fleet-crd-0.14.0.tgz](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-crd-0.14.0.tgz) + +* [fleet-0.14.0.tgz](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-0.14.0.tgz) + +* [fleet_0.14.0_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet_0.14.0_checksums.txt) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-benchmark-linux-amd64) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-benchmark-linux-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-windows-amd64.exe) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-linux-amd64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleetcontroller-linux-amd64) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-benchmark-darwin-arm64) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-linux-arm64) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleetcontroller-linux-arm64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleetagent-linux-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.14.0/fleetagent-windows-amd64.exe) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleetagent-linux-amd64) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-darwin-arm64) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.14.0/fleet-benchmark-windows-amd64.exe) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.14.0)* + diff --git a/versioned_docs/version-0.14/changelogs/changelogs/v0.14.1.md b/versioned_docs/version-0.14/changelogs/changelogs/v0.14.1.md new file mode 100644 index 000000000..5d2591139 --- /dev/null +++ b/versioned_docs/version-0.14/changelogs/changelogs/v0.14.1.md @@ -0,0 +1,70 @@ +--- +title: "v0.14.1" +date: "2025-12-12 14:45:25 +0000 UTC" +--- + + +* (github-actions[bot]) released this 2025-12-12 14:45:25 +0000 UTC* + + +## What's Changed +* Add configurable concurrent bundle creation routines to fleet apply by @thardeck in https://github.com/rancher/fleet/pull/4307 +* Adds support for Helm lookup by @0xavi0 in https://github.com/rancher/fleet/pull/4380 +* Use CABundle when fetching chart with helm.chart field of fleet.yam by @p-se in https://github.com/rancher/fleet/pull/4372 +* Use the defaultNs for valuesFrom contained in downstream resources by @0xavi0 in https://github.com/rancher/fleet/pull/4378 +* Allow setting integer flags from env variables by @aruiz14 in https://github.com/rancher/fleet/pull/4386 +* Fix race when creating secrets and Kubernetes jobs by @0xavi0 in https://github.com/rancher/fleet/pull/4387 +* Adds a sharding filter when calculating Bundles from Cluster (#4282) by @0xavi0 in https://github.com/rancher/fleet/pull/4392 +* Sort AgentTolerations when creating agent Bundle (#4367) by @0xavi0 in https://github.com/rancher/fleet/pull/4388 +* Create options secret before bundle deployment by @weyfonk in https://github.com/rancher/fleet/pull/4393 +* Change GitRepo deletion. (#4361) by @0xavi0 in https://github.com/rancher/fleet/pull/4398 +* Make valuesFrom kind check case-insensitive (#4408) by @0xavi0 in https://github.com/rancher/fleet/pull/4412 +* Reuse transports with same settings for Fleet CLI by @aruiz14 in https://github.com/rancher/fleet/pull/4410 +* Update Kubernetes libraries to v0.34.3 @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4415 +* Update golang.org/x/crypto to v0.45.0 by @thardeck in https://github.com/rancher/fleet/pull/4416 +* Update Go to v1.24.11 (release/v0.14) by @renovate-rancher[bot] in https://github.com/rancher/fleet/pull/4402 + + +**Full Changelog**: https://github.com/rancher/fleet/compare/v0.14.0...v0.14.1 + + +## Download + +* [fleet-0.14.1.tgz](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-0.14.1.tgz) + +* [fleet-crd-0.14.1.tgz](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-crd-0.14.1.tgz) + +* [fleet-agent-0.14.1.tgz](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-agent-0.14.1.tgz) + +* [fleet_0.14.1_checksums.txt](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet_0.14.1_checksums.txt) + +* [fleet-benchmark-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-benchmark-linux-arm64) + +* [fleet-benchmark-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-benchmark-windows-amd64.exe) + +* [fleet-benchmark-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-benchmark-linux-amd64) + +* [fleet-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-linux-amd64) + +* [fleet-benchmark-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-benchmark-darwin-arm64) + +* [fleet-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-windows-amd64.exe) + +* [fleet-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-linux-arm64) + +* [fleetagent-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleetagent-linux-arm64) + +* [fleetcontroller-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleetcontroller-linux-amd64) + +* [fleetagent-linux-amd64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleetagent-linux-amd64) + +* [fleet-darwin-arm64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleet-darwin-arm64) + +* [fleetagent-windows-amd64.exe](https://github.com/rancher/fleet/releases/download/v0.14.1/fleetagent-windows-amd64.exe) + +* [fleetcontroller-linux-arm64](https://github.com/rancher/fleet/releases/download/v0.14.1/fleetcontroller-linux-arm64) + + + +*Information retrieved from [here](https://github.com/rancher/fleet/releases/tag/v0.14.1)* + diff --git a/versioned_docs/version-0.14/changelogs/index.md b/versioned_docs/version-0.14/changelogs/index.md index d5aef1f14..1d6d853e5 100644 --- a/versioned_docs/version-0.14/changelogs/index.md +++ b/versioned_docs/version-0.14/changelogs/index.md @@ -1,5 +1,9 @@ --- -title: "Next 🚧" +title: "0.14 Changelogs" --- -We are still working on the next release. + +* [v0.14.1](changelogs/v0.14.1.md) (latest) + +* [v0.14.0](changelogs/v0.14.0.md) +