From 94de3cee112fe1ffa1aa9a70e265fc358b4d5f9b Mon Sep 17 00:00:00 2001 From: Sunny Date: Tue, 12 Dec 2023 15:05:47 +0000 Subject: [PATCH] Release v1.2.0 Signed-off-by: Sunny --- CHANGELOG.md | 24 ++++++++++++++++++++++++ docs/resources/bootstrap_git.md | 2 +- internal/utils/flux.go | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ad50e58..0e4b864c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ All notable changes to this project are documented in this file. +## 1.2.0 + +**Release date:** 2023-12-12 + +This release includes flux2 [v2.2.0](https://github.com/fluxcd/flux2/releases/tag/v2.2.0). + +Improvements: +- docs: Provider can deploy to pre-existing namespace + [#577](https://github.com/fluxcd/terraform-provider-flux/pull/577) +- docs: Fix namespace typo in install-helm-release.md + [#576](https://github.com/fluxcd/terraform-provider-flux/pull/576) +- Address various issues throughout code base + [#565](https://github.com/fluxcd/terraform-provider-flux/pull/565) +- Support air-gapped, offline, or otherwise customized install manifests + [#503](https://github.com/fluxcd/terraform-provider-flux/pull/503) +- Dependency updates + [#579](https://github.com/fluxcd/terraform-provider-flux/pull/579) + [#567](https://github.com/fluxcd/terraform-provider-flux/pull/567) + [#582](https://github.com/fluxcd/terraform-provider-flux/pull/582) + +Fixes: +- Fix signing commits with GPG key + [#572](https://github.com/fluxcd/terraform-provider-flux/pull/572) + ## 1.1.2 **Release date:** 2023-10-12 diff --git a/docs/resources/bootstrap_git.md b/docs/resources/bootstrap_git.md index 10fcc125..86f76116 100644 --- a/docs/resources/bootstrap_git.md +++ b/docs/resources/bootstrap_git.md @@ -43,7 +43,7 @@ resource "flux_bootstrap_git" "this" { - `secret_name` (String) Name of the secret the sync credentials can be found in or stored to. Defaults to `flux-system`. - `timeouts` (Attributes) (see [below for nested schema](#nestedatt--timeouts)) - `toleration_keys` (Set of String) List of toleration keys used to schedule the components pods onto nodes with matching taints. -- `version` (String) Flux version. Defaults to `v2.1.2`. +- `version` (String) Flux version. Defaults to `v2.2.0`. - `watch_all_namespaces` (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`. ### Read-Only diff --git a/internal/utils/flux.go b/internal/utils/flux.go index ee5b2fbc..896e22d1 100644 --- a/internal/utils/flux.go +++ b/internal/utils/flux.go @@ -16,4 +16,4 @@ limitations under the License. package utils -const DefaultFluxVersion string = "v2.1.2" +const DefaultFluxVersion string = "v2.2.0"