From e063ff2cb43aa9e9590796b81f1298647800ffe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20=C5=9Awi=C4=85tek?= Date: Wed, 18 Oct 2023 13:30:55 +0200 Subject: [PATCH 1/2] chore: update changelog for v3.16.0 --- .changelog/3281.fixed.txt | 5 ----- .changelog/3286.added.txt | 1 - .changelog/3289.fixed.txt | 1 - .changelog/3292.added.txt | 1 - .changelog/3314.added.txt | 1 - .changelog/3318.fixed.txt | 1 - .changelog/3320.changed.txt | 1 - .changelog/3321.fixed.txt | 1 - .changelog/3323.fixed.txt | 1 - CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ README.md | 3 ++- 11 files changed, 39 insertions(+), 14 deletions(-) delete mode 100644 .changelog/3281.fixed.txt delete mode 100644 .changelog/3286.added.txt delete mode 100644 .changelog/3289.fixed.txt delete mode 100644 .changelog/3292.added.txt delete mode 100644 .changelog/3314.added.txt delete mode 100644 .changelog/3318.fixed.txt delete mode 100644 .changelog/3320.changed.txt delete mode 100644 .changelog/3321.fixed.txt delete mode 100644 .changelog/3323.fixed.txt diff --git a/.changelog/3281.fixed.txt b/.changelog/3281.fixed.txt deleted file mode 100644 index 216f2bcc75..0000000000 --- a/.changelog/3281.fixed.txt +++ /dev/null @@ -1,5 +0,0 @@ -fix(logs)!: move JSON parsing after user-defined processors - -The log body will now always be a string if accessed in extra processors. -Users who want to access specific fields in their parsed JSON log -should explicitly call ParseJSON in their processor definition. \ No newline at end of file diff --git a/.changelog/3286.added.txt b/.changelog/3286.added.txt deleted file mode 100644 index 0bf8cd21e5..0000000000 --- a/.changelog/3286.added.txt +++ /dev/null @@ -1 +0,0 @@ -feat(logs): add `sumologic.logs.additionalFields` property \ No newline at end of file diff --git a/.changelog/3289.fixed.txt b/.changelog/3289.fixed.txt deleted file mode 100644 index 86b6815001..0000000000 --- a/.changelog/3289.fixed.txt +++ /dev/null @@ -1 +0,0 @@ -fix(metrics): decompose OTLP histograms \ No newline at end of file diff --git a/.changelog/3292.added.txt b/.changelog/3292.added.txt deleted file mode 100644 index e234418202..0000000000 --- a/.changelog/3292.added.txt +++ /dev/null @@ -1 +0,0 @@ -feat(metrics): add additionalServiceMonitors setting \ No newline at end of file diff --git a/.changelog/3314.added.txt b/.changelog/3314.added.txt deleted file mode 100644 index feb0236bae..0000000000 --- a/.changelog/3314.added.txt +++ /dev/null @@ -1 +0,0 @@ -feat(metrics): allow overriding metrics collector configuration \ No newline at end of file diff --git a/.changelog/3318.fixed.txt b/.changelog/3318.fixed.txt deleted file mode 100644 index b847aebbd5..0000000000 --- a/.changelog/3318.fixed.txt +++ /dev/null @@ -1 +0,0 @@ -fix(metrics): drop stale datapoints \ No newline at end of file diff --git a/.changelog/3320.changed.txt b/.changelog/3320.changed.txt deleted file mode 100644 index 6590daffa9..0000000000 --- a/.changelog/3320.changed.txt +++ /dev/null @@ -1 +0,0 @@ -chore: update setup job to `v3.11.0` \ No newline at end of file diff --git a/.changelog/3321.fixed.txt b/.changelog/3321.fixed.txt deleted file mode 100644 index b29f816d51..0000000000 --- a/.changelog/3321.fixed.txt +++ /dev/null @@ -1 +0,0 @@ -fix: fix Otel Operator installation with Helm 3.13 \ No newline at end of file diff --git a/.changelog/3323.fixed.txt b/.changelog/3323.fixed.txt deleted file mode 100644 index 577ae448d6..0000000000 --- a/.changelog/3323.fixed.txt +++ /dev/null @@ -1 +0,0 @@ -fix(metrics): kube-state-metrics pod metadata \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 695b709bc5..129829ec6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,43 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +## [v3.16.0] + +### Released 2023-10-18 + +### Added + +- feat(logs): add `sumologic.logs.additionalFields` property [#3286] +- feat(metrics): add additionalServiceMonitors setting [#3292] +- feat(metrics): allow overriding metrics collector configuration [#3314] + +### Changed + +- chore: update setup job to `v3.11.0` [#3320] + +### Fixed + +- fix(logs)!: move JSON parsing after user-defined processors [#3281] + + The log body will now always be a string if accessed in extra processors. Users who want to access specific fields in their parsed JSON + log should explicitly call ParseJSON in their processor definition. + +- fix(metrics): decompose OTLP histograms [#3289] +- fix(metrics): drop stale datapoints [#3318] +- fix: fix Otel Operator installation with Helm 3.13 [#3321] +- fix(metrics): kube-state-metrics pod metadata [#3323] + +[#3286]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3286 +[#3292]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3292 +[#3314]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3314 +[#3320]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3320 +[#3281]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3281 +[#3289]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3289 +[#3318]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3318 +[#3321]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3321 +[#3323]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/3323 +[v3.16.0]: https://github.com/SumoLogic/sumologic-kubernetes-collection/releases/v3.16.0 + ## [v3.15.0] ### Released 2023-09-18 diff --git a/README.md b/README.md index 81eb84a5fa..32e0179773 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,8 @@ release. | version | planned end of life date | | ------------------------------------------------------------------------------------------------------- | ------------------------ | -| [v3.15](https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/release-v3.15/docs/README.md) | TBA | +| [v3.16](https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/release-v3.16/docs/README.md) | TBA | +| [v3.15](https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/release-v3.15/docs/README.md) | 2024-04-18 | | [v3.14](https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/release-v3.14/docs/README.md) | 2024-03-18 | | [v3.13](https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/release-v3.13/docs/README.md) | 2024-03-01 | | [v3.12](https://github.com/SumoLogic/sumologic-kubernetes-collection/tree/release-v3.12/docs/README.md) | 2024-02-21 | From c6356f6572fd967da8e5aab5a88b0ad271cfe582 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20=C5=9Awi=C4=85tek?= Date: Wed, 18 Oct 2023 13:31:35 +0200 Subject: [PATCH 2/2] chore: prepare release 3.16.0 --- deploy/helm/sumologic/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/helm/sumologic/Chart.yaml b/deploy/helm/sumologic/Chart.yaml index 58c4598f21..d65c5171a8 100644 --- a/deploy/helm/sumologic/Chart.yaml +++ b/deploy/helm/sumologic/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: sumologic -version: 3.15.0 -appVersion: 3.15.0 +version: 3.16.0 +appVersion: 3.16.0 description: A Helm chart for collecting Kubernetes logs, metrics, traces and events into Sumo Logic. type: application keywords: