From 7fc28cca97011cab30fd5e052d1a113b68edbb4e Mon Sep 17 00:00:00 2001 From: juicer Date: Sat, 14 Sep 2024 10:07:10 -0700 Subject: [PATCH 1/2] release 3.2.0 Signed-off-by: juicer --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 2 +- RELEASE.md | 1 + .../charts/fluent-bit-crds/Chart.yaml | 2 +- .../charts/fluentd-crds/Chart.yaml | 2 +- 5 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 705177f36..1992b0295 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 3.2.0 / 2024-09-14 +### Features +- Support lua filter in namespaced CRD (#1342) @cw-Guo +- Add cloudAuthSecret & awsAuthSecret (#1338) @cw-Guo +- Add exec wasi input plugin (#1326) @jiuxia211 +- Add wasm filter piugin (#1325) @jiuxia211 +- Expose lua filter type_array_key parameter (#1323) @reegnz +- Support storage.total_limit_size in syslog plugin (#1318) @jk-mob +- Expose fluentbit init-container values in helm chart (#1320) @RajatPorwal5 +- Add logs_body_key_attributes option for OpenTelemetry output plugin (#1322) @LKummer +- Add log to metrics plugin (#1305) @Athishpranav200 +### ENHANCEMENT +- Update fluentbit to 3.1.7 (#1329) @jiuxia211 +### BUGFIX +- Fix assignment to entry in nil map when --watch-namespaces flag is provided (#1334) @alexandrevilain +- Fix annotations too long issue (#1309) @cw-Guo + ## 3.1.0 / 2024-08-14 ### Features - Render ConfigMap only if key is not empty string (#1299) @dex4er diff --git a/README.md b/README.md index a7fa63920..5b0dbe3d6 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ Kubernetes v1.16.13+ is necessary for running Fluent Operator. Install the latest stable version ```shell -kubectl apply -f https://raw.githubusercontent.com/fluent/fluent-operator/release-3.1/manifests/setup/setup.yaml +kubectl apply -f https://raw.githubusercontent.com/fluent/fluent-operator/release-3.2/manifests/setup/setup.yaml # You can change the namespace in manifests/setup/kustomization.yaml in corresponding release branch # and then use command below to install to another namespace diff --git a/RELEASE.md b/RELEASE.md index d882cd8b0..31991b212 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -44,6 +44,7 @@ This page describes the release process and the currently planned schedule for u | v2.9.0 | 2024-06-13 | Elon Cheng (GitHub: @wenchajun) | | v3.0.0 | 2024-07-09 | Elon Cheng (GitHub: @wenchajun) | | v3.1.0 | 2024-08-14 | Zhang Peng (GitHub: @Gentleelephant) | +| v3.2.0 | 2024-09-14 | Chengwei Guo (GitHub: @cw-Guo) | # How to cut a new release diff --git a/charts/fluent-operator/charts/fluent-bit-crds/Chart.yaml b/charts/fluent-operator/charts/fluent-bit-crds/Chart.yaml index 937f90eac..df76be646 100644 --- a/charts/fluent-operator/charts/fluent-bit-crds/Chart.yaml +++ b/charts/fluent-operator/charts/fluent-bit-crds/Chart.yaml @@ -14,7 +14,7 @@ description: A Helm chart delivering fluenbt-bit controller CRDS # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 3.1.0 +version: 3.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/fluent-operator/charts/fluentd-crds/Chart.yaml b/charts/fluent-operator/charts/fluentd-crds/Chart.yaml index 39732e0e4..31bf2e16c 100644 --- a/charts/fluent-operator/charts/fluentd-crds/Chart.yaml +++ b/charts/fluent-operator/charts/fluentd-crds/Chart.yaml @@ -14,7 +14,7 @@ description: A Helm chart delivering fluentd controller CRDS # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 3.1.0 +version: 3.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to From f86489d6658680a5356d6c0cb9c20192b99f03ad Mon Sep 17 00:00:00 2001 From: juicer Date: Fri, 20 Sep 2024 19:29:21 -0700 Subject: [PATCH 2/2] add latest change logs Signed-off-by: juicer --- CHANGELOG.md | 4 +++- RELEASE.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1992b0295..4cb6be52f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ -## 3.2.0 / 2024-09-14 +## 3.2.0 / 2024-09-21 ### Features +- Expose args and command attributes for FluentBit CRD (#1350) @reegnz +- Add option to disable operator resources in Helm chart (#1348) @jiuxia211 - Support lua filter in namespaced CRD (#1342) @cw-Guo - Add cloudAuthSecret & awsAuthSecret (#1338) @cw-Guo - Add exec wasi input plugin (#1326) @jiuxia211 diff --git a/RELEASE.md b/RELEASE.md index 31991b212..21113a8ae 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -44,7 +44,7 @@ This page describes the release process and the currently planned schedule for u | v2.9.0 | 2024-06-13 | Elon Cheng (GitHub: @wenchajun) | | v3.0.0 | 2024-07-09 | Elon Cheng (GitHub: @wenchajun) | | v3.1.0 | 2024-08-14 | Zhang Peng (GitHub: @Gentleelephant) | -| v3.2.0 | 2024-09-14 | Chengwei Guo (GitHub: @cw-Guo) | +| v3.2.0 | 2024-09-21 | Chengwei Guo (GitHub: @cw-Guo) | # How to cut a new release