From 2857180dbe42b7da5b21259f14283475e169b5fb Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Fri, 8 Mar 2024 11:19:38 -0800 Subject: [PATCH] chore(releasing): Prepare v0.36.1 release Signed-off-by: Jesse Szwedko --- Cargo.lock | 2 +- Cargo.toml | 2 +- changelog.d/aws_assume_role.fix.md | 1 - changelog.d/aws_region_autodetect.fix.md | 1 - changelog.d/kafka_rebalance_panic.fix.md | 1 - distribution/install.sh | 2 +- website/content/en/releases/0.36.1.md | 4 ++ website/cue/reference/releases/0.36.0.cue | 15 ++++++ website/cue/reference/releases/0.36.1.cue | 63 +++++++++++++++++++++++ website/cue/reference/versions.cue | 1 + 10 files changed, 86 insertions(+), 6 deletions(-) delete mode 100644 changelog.d/aws_assume_role.fix.md delete mode 100644 changelog.d/aws_region_autodetect.fix.md delete mode 100644 changelog.d/kafka_rebalance_panic.fix.md create mode 100644 website/content/en/releases/0.36.1.md create mode 100644 website/cue/reference/releases/0.36.1.cue diff --git a/Cargo.lock b/Cargo.lock index bcc89c513db47..6bc92235ea6cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9816,7 +9816,7 @@ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" [[package]] name = "vector" -version = "0.36.0" +version = "0.36.1" dependencies = [ "apache-avro", "approx", diff --git a/Cargo.toml b/Cargo.toml index 141622a1d0819..916d393efb49c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vector" -version = "0.36.0" +version = "0.36.1" authors = ["Vector Contributors "] edition = "2021" description = "A lightweight and ultra-fast tool for building observability pipelines" diff --git a/changelog.d/aws_assume_role.fix.md b/changelog.d/aws_assume_role.fix.md deleted file mode 100644 index 8162126787065..0000000000000 --- a/changelog.d/aws_assume_role.fix.md +++ /dev/null @@ -1 +0,0 @@ -AWS components again support the use of `assume_role`. This was a regression in v0.36.0. diff --git a/changelog.d/aws_region_autodetect.fix.md b/changelog.d/aws_region_autodetect.fix.md deleted file mode 100644 index a25ef77f7ea4b..0000000000000 --- a/changelog.d/aws_region_autodetect.fix.md +++ /dev/null @@ -1 +0,0 @@ -AWS components again support auto-detection of the region. This was a regression in v0.36.0. diff --git a/changelog.d/kafka_rebalance_panic.fix.md b/changelog.d/kafka_rebalance_panic.fix.md deleted file mode 100644 index 4385380f543b2..0000000000000 --- a/changelog.d/kafka_rebalance_panic.fix.md +++ /dev/null @@ -1 +0,0 @@ -The `kafka` sink avoids panicking during a rebalance event. This was a regression in v0.36.0. diff --git a/distribution/install.sh b/distribution/install.sh index 75f206d1a8c5b..b069b3dddd1f4 100755 --- a/distribution/install.sh +++ b/distribution/install.sh @@ -13,7 +13,7 @@ set -u # If PACKAGE_ROOT is unset or empty, default it. PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}" # If VECTOR_VERSION is unset or empty, default it. -VECTOR_VERSION="${VECTOR_VERSION:-"0.36.0"}" +VECTOR_VERSION="${VECTOR_VERSION:-"0.36.1"}" _divider="--------------------------------------------------------------------------------" _prompt=">>>" _indent=" " diff --git a/website/content/en/releases/0.36.1.md b/website/content/en/releases/0.36.1.md new file mode 100644 index 0000000000000..ef655c68d30b5 --- /dev/null +++ b/website/content/en/releases/0.36.1.md @@ -0,0 +1,4 @@ +--- +title: Vector v0.36.1 release notes +weight: 21 +--- diff --git a/website/cue/reference/releases/0.36.0.cue b/website/cue/reference/releases/0.36.0.cue index ad72d305c32d8..b4415928c4b11 100644 --- a/website/cue/reference/releases/0.36.0.cue +++ b/website/cue/reference/releases/0.36.0.cue @@ -22,6 +22,21 @@ releases: "0.36.0": { instructions on how to migrate. """ + known_issues: [ + """ + AWS components don't support use of `credentials_process` in AWS configs. Fixed in v0.36.1. + """, + """ + AWS components don't support auto-detection of region . Fixed in v0.36.1. + """, + """ + AWS components don't support use of `assume_role`. Fixed in v0.36.1. + """, + """ + The `kafka` sink occasionally panics during rebalance events. Fixed in v0.36.1. + """, + ] + changelog: [ { type: "feat" diff --git a/website/cue/reference/releases/0.36.1.cue b/website/cue/reference/releases/0.36.1.cue new file mode 100644 index 0000000000000..9dabe4a377d4c --- /dev/null +++ b/website/cue/reference/releases/0.36.1.cue @@ -0,0 +1,63 @@ +package metadata + +releases: "0.36.1": { + date: "2024-03-11" + codename: "" + + whats_next: [] + + description: """ + This patch release contains fixes for regressions in 0.36.0. + + **Note:** Please see the release notes for [`v0.36.0`](/releases/0.36.0/) for additional changes if upgrading from + `v0.35.X`. In particular, see the upgrade guide for breaking changes. + """ + + changelog: [ + { + type: "fix" + description: """ + Fixed gzip and zlib compression performance degradation introduced in v0.34.0. + """ + contributors: ["Hexta"] + }, + { + type: "fix" + description: """ + AWS components again support the use of `assume_role`. This was a regression in v0.36.0. + """ + }, + { + type: "fix" + description: """ + AWS components again support the use of `credential_process` in AWS config files to load AWS + credentials from an external process. This was a regression in v0.36.0. + """ + }, + { + type: "fix" + description: """ + AWS components again support auto-detection of the region. This was a regression in v0.36.0. + """ + }, + { + type: "fix" + description: """ + The `kafka` sink avoids panicking during a rebalance event. This was a regression in v0.36.0. + """ + }, + ] + + commits: [ + {sha: "a10a137394bda91a97bf6d1731459615af2869ad", date: "2024-02-17 20:44:07 UTC", description: "0.36 changelog fixes", pr_number: 19875, scopes: ["releases website"], type: "chore", breaking_change: false, author: "hdhoang", files_count: 2, insertions_count: 2, deletions_count: 2}, + {sha: "3057ccfd7e0f58b615d756ca6541b5604053cef4", date: "2024-02-21 05:49:55 UTC", description: "Fix `drop_on_abort` docs", pr_number: 19918, scopes: ["remap transform"], type: "docs", breaking_change: false, author: "Jesse Szwedko", files_count: 2, insertions_count: 6, deletions_count: 10}, + {sha: "f1f8c1bc998ef98215dba117335b74e8e5e57b68", date: "2024-02-22 15:48:21 UTC", description: "bump openssl version used for links in docs", pr_number: 19880, scopes: ["website"], type: "chore", breaking_change: false, author: "Hugo Hromic", files_count: 1, insertions_count: 1, deletions_count: 1}, + {sha: "9def84e0de3831f0add61c9b2cb4e880fcf8aa7d", date: "2024-02-29 09:31:36 UTC", description: "determine region using our http client", pr_number: 19972, scopes: ["aws service"], type: "fix", breaking_change: false, author: "Stephen Wakely", files_count: 1, insertions_count: 25, deletions_count: 3}, + {sha: "54bcee72242d06eacd355451ed62ee1029925a81", date: "2024-03-06 22:45:13 UTC", description: "Update lockfree-object-pool to 0.1.5", pr_number: 20001, scopes: ["deps"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 2, deletions_count: 2}, + {sha: "e4951cc447d8a3b4896c4603a962651350b6ac37", date: "2024-03-08 09:10:35 UTC", description: "Bump whoami to 1.5.0", pr_number: 20018, scopes: ["deps"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 2, insertions_count: 11, deletions_count: 3}, + {sha: "28760fbcdade2353feb506a51ef7288a570d6ca6", date: "2024-03-08 17:46:25 UTC", description: "Enable `credentials-process` for `aws-config`", pr_number: 20030, scopes: ["aws provider"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 2, insertions_count: 3, deletions_count: 1}, + {sha: "63133311baa0df60d08e22bb1e4bec858438e268", date: "2024-03-09 09:25:33 UTC", description: "Fix gzip and zlib performance degradation", pr_number: 20032, scopes: ["compression"], type: "fix", breaking_change: false, author: "Artur Malchanau", files_count: 2, insertions_count: 66, deletions_count: 34}, + {sha: "a8cd2a2df1df26de9e14d51cb84bc0bdd443a195", date: "2024-03-05 22:34:02 UTC", description: "Update mio", pr_number: 20005, scopes: ["deps"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 2, deletions_count: 2}, + {sha: "1ea58e47cadc4acc9d554a60653e76cbdd034105", date: "2024-03-09 04:13:14 UTC", description: "Add missing changelog entries", pr_number: 20041, scopes: ["releasing"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 3, insertions_count: 3, deletions_count: 0}, + ] +} diff --git a/website/cue/reference/versions.cue b/website/cue/reference/versions.cue index a2e8b95e5c1ca..268a507d4f03f 100644 --- a/website/cue/reference/versions.cue +++ b/website/cue/reference/versions.cue @@ -2,6 +2,7 @@ package metadata // This has to be maintained manually because there's currently no way to sort versions programmatically versions: [string, ...string] & [ + "0.36.1", "0.36.0", "0.35.1", "0.35.0",