Skip to content

Commit a9392b0

Browse files
committed
chore(releasing): Prepare v0.40.1 release
Signed-off-by: Jesse Szwedko <[email protected]>
1 parent e9455f6 commit a9392b0

File tree

8 files changed

+48
-4
lines changed

8 files changed

+48
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vector"
3-
version = "0.40.0"
3+
version = "0.40.1"
44
authors = ["Vector Contributors <[email protected]>"]
55
edition = "2021"
66
description = "A lightweight and ultra-fast tool for building observability pipelines"

changelog.d/21067_reduce.fix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

distribution/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set -u
1313
# If PACKAGE_ROOT is unset or empty, default it.
1414
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
1515
# If VECTOR_VERSION is unset or empty, default it.
16-
VECTOR_VERSION="${VECTOR_VERSION:-"0.40.0"}"
16+
VECTOR_VERSION="${VECTOR_VERSION:-"0.40.1"}"
1717
_divider="--------------------------------------------------------------------------------"
1818
_prompt=">>>"
1919
_indent=" "
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: Vector v0.40.1 release notes
3+
weight: 21
4+
---

website/cue/reference/releases/0.40.0.cue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ releases: "0.40.0": {
1515
This release contains a mix of enhancements and bug fixes. See the changelog below.
1616
"""
1717

18+
known_issues: [
19+
"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.",
20+
]
21+
1822
changelog: [
1923
{
2024
type: "enhancement"
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package metadata
2+
3+
releases: "0.40.1": {
4+
date: "2024-08-26"
5+
codename: ""
6+
7+
whats_next: []
8+
9+
description: """
10+
The Vector team is pleased to announce version 0.40.1!
11+
12+
This is the first release with packages signed with the new GPG key as part of [Datadog's key
13+
rotation](https://docs.datadoghq.com/agent/guide/linux-key-rotation-2024/?tab=debianubuntu).
14+
This should be a transparent change for users as the package repository setup script
15+
[setup.vector.dev](https://setup.vector.dev) has already been importing the new key;
16+
however, if you were manually managing the trusted GPG keys, you will need to update to
17+
the newer ones (either [apt](https://keys.datadoghq.com/DATADOG_APT_KEY_C0962C7D.public) or
18+
[rpm](https://keys.datadoghq.com/DATADOG_RPM_KEY_B01082D3.public).
19+
20+
This release also fixes a regression in Vector v0.40.0.
21+
"""
22+
23+
changelog: [
24+
{
25+
type: "fix"
26+
description: """
27+
Fixes a Vector v0.40.0 regression where the `reduce` transform would not group top
28+
level objects correctly.
29+
"""
30+
},
31+
]
32+
33+
commits: [
34+
{sha: "e9455f6596a138fc8d0ea978897b7a697c77fbb3", date: "2024-08-17 05:29:36 UTC", description: "use the correct merge strategy for top level objects", pr_number: 21067, scopes: ["reduce transform"], type: "fix", breaking_change: false, author: "Pavlos Rontidis", files_count: 4, insertions_count: 332, deletions_count: 36},
35+
]
36+
}

website/cue/reference/versions.cue

Lines changed: 1 addition & 0 deletions
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.40.1",
56
"0.40.0",
67
"0.39.0",
78
"0.38.0",

0 commit comments

Comments
 (0)