Skip to content

Commit

Permalink
chore(releasing): Prepare v0.40.2 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
  • Loading branch information
jszwedko committed Sep 9, 2024
1 parent 00ef42b commit 272db76
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 2 deletions.
1 change: 0 additions & 1 deletion changelog.d/21201_fields_iter.fix.md

This file was deleted.

2 changes: 1 addition & 1 deletion distribution/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.40.1"}"
VECTOR_VERSION="${VECTOR_VERSION:-"0.40.2"}"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.40.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.40.2 release notes
weight: 21
---
1 change: 1 addition & 0 deletions website/cue/reference/releases/0.40.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ releases: "0.40.0": {

known_issues: [
"A regression in the `reduce` transform caused it to not group top level objects correctly (see [#21065](https://github.com/vectordotdev/vector/issues/21065)). This is fixed in v0.40.1.",
"A regression in the `reduce` transform caused it to not reduce events containing keys with special characters correctly (see [#21165](https://github.com/vectordotdev/vector/issues/21165)). This is fixed in v0.40.2.",
]

changelog: [
Expand Down
27 changes: 27 additions & 0 deletions website/cue/reference/releases/0.40.2.cue
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package metadata

releases: "0.40.2": {
date: "2024-09-09"
codename: ""

whats_next: []

description: """
The Vector team is pleased to announce version 0.40.2!
This release also fixes regression in the `reduce` transform in Vector v0.40.0.
"""

changelog: [
{
type: "fix"
description: """
The `reduce` transform can now reduce fields that contain special characters.
"""
},
]

commits: [
{sha: "360db351a60fd62671a15822b8aa5e08b915979f", date: "2024-09-04 09:20:32 UTC", description: "surround invalid path segments with quotes", pr_number: 21201, scopes: ["reduce transform"], type: "fix", breaking_change: false, author: "Pavlos Rontidis", files_count: 4, insertions_count: 48, deletions_count: 107},
]
}
1 change: 1 addition & 0 deletions website/cue/reference/versions.cue
Original file line number Diff line number Diff line change
Expand Up @@ -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.40.2",
"0.40.1",
"0.40.0",
"0.39.0",
Expand Down

0 comments on commit 272db76

Please sign in to comment.