Skip to content

Commit d833296

Browse files
committed
chore(releasing): Prepare v0.32.2 release
Checklist: #18610 Signed-off-by: Jesse Szwedko <[email protected]>
1 parent 1eb933d commit d833296

File tree

5 files changed

+46
-1
lines changed

5 files changed

+46
-1
lines changed

distribution/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -u
1212

1313
# If PACKAGE_ROOT is unset or empty, default it.
1414
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
15-
VECTOR_VERSION="0.32.1"
15+
VECTOR_VERSION="0.32.2"
1616
_divider="--------------------------------------------------------------------------------"
1717
_prompt=">>>"
1818
_indent=" "

website/content/en/releases/0.32.2.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: Vector v0.32.2 release notes
3+
weight: 21
4+
---

website/cue/reference/releases/0.32.0.cue

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ releases: "0.32.0": {
3838
it to `false` via `--openssl-legacy-provider=false`. Instead it complains of extra
3939
arguments. This is fixed in v0.32.1.
4040
""",
41+
"""
42+
For AWS components, using `assume_role` for authentication without an `external_id`
43+
caused a panic. This is fixed in v0.32.2`.
44+
""",
4145
]
4246

4347
changelog: [
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package metadata
2+
3+
releases: "0.32.2": {
4+
date: "2023-09-20"
5+
codename: ""
6+
7+
whats_next: []
8+
description: """
9+
This patch release contains a fix for a regression in 0.32.0.
10+
11+
**Note:** Please see the release notes for [`v0.32.0`](/releases/0.32.0/) for additional changes if upgrading from
12+
`v0.31.X`. In particular, the upgrade guide for breaking changes.
13+
"""
14+
15+
changelog: [
16+
{
17+
type: "fix"
18+
scopes: ["aws provider"]
19+
description: """
20+
AWS components again allow use of `assume_role` for authentication without an
21+
`external_id`. Previously, as of `v032.0`, Vector would panic when starting.
22+
"""
23+
pr_numbers: [18452]
24+
},
25+
]
26+
27+
commits: [
28+
{sha: "3b9144cb411ea91446c445324db714908ccb814a", date: "2023-08-24 03:26:04 UTC", description: "Fix installer list for MacOS", pr_number: 18364, scopes: ["website"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 1, deletions_count: 0},
29+
{sha: "3040ae250b36e5dedda6fd635d364cbd77d0fef8", date: "2023-08-25 08:29:56 UTC", description: "add PGO information", pr_number: 18369, scopes: [], type: "docs", breaking_change: false, author: "Alexander Zaitsev", files_count: 3, insertions_count: 36, deletions_count: 0},
30+
{sha: "1164f5525780a9599864bdda46722e895a20fd4c", date: "2023-08-29 17:50:25 UTC", description: "fix some typos", pr_number: 18401, scopes: ["file source"], type: "docs", breaking_change: false, author: "geekvest", files_count: 7, insertions_count: 8, deletions_count: 8},
31+
{sha: "dd460a0bf91d210e262b1953a6afcaf3aa8f3033", date: "2023-09-07 00:30:03 UTC", description: "Fix docs for `host` field for syslog source", pr_number: 18453, scopes: ["syslog source", "docs"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 8, deletions_count: 2},
32+
{sha: "9356c56b86817fdca931168986b3e9c88aea1be9", date: "2023-09-09 01:06:01 UTC", description: "Update the AWS authentication documentation", pr_number: 18492, scopes: ["aws provider", "external_docs"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 17, deletions_count: 7},
33+
{sha: "77d12ee88b17d4d71b3609299b356e050afe651a", date: "2023-09-02 00:24:47 UTC", description: "Don't unwap external_id", pr_number: 18452, scopes: ["aws provider"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 19, deletions_count: 10},
34+
{sha: "badb64f451de9169a2b65cbd541427f0411c7764", date: "2023-08-23 06:04:04 UTC", description: "update `rustls-webpki` due to security advisory", pr_number: 18344, scopes: [], type: "chore", breaking_change: false, author: "Nathan Fox", files_count: 3, insertions_count: 5, deletions_count: 2},
35+
]
36+
}

website/cue/reference/versions.cue

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package metadata
22

33
// This has to be maintained manually because there's currently no way to sort versions programmatically
44
versions: [string, ...string] & [
5+
"0.32.2",
56
"0.32.1",
67
"0.32.0",
78
"0.31.0",

0 commit comments

Comments
 (0)