Skip to content

Commit

Permalink
chore(releasing): Prepare v0.40.1 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Szwedko <[email protected]>
  • Loading branch information
jszwedko committed Aug 26, 2024
1 parent 46fccce commit ec3a82a
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 2 deletions.
1 change: 0 additions & 1 deletion changelog.d/21067_reduce.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.0"}"
VECTOR_VERSION="${VECTOR_VERSION:-"0.40.1"}"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.40.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.40.1 release notes
weight: 21
---
4 changes: 4 additions & 0 deletions website/cue/reference/releases/0.40.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ releases: "0.40.0": {
This release contains a mix of enhancements and bug fixes. See the changelog below.
"""

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.",
]

changelog: [
{
type: "enhancement"
Expand Down
36 changes: 36 additions & 0 deletions website/cue/reference/releases/0.40.1.cue
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package metadata

releases: "0.40.1": {
date: "2024-08-26"
codename: ""

whats_next: []

description: """
The Vector team is pleased to announce version 0.40.1!
This is the first release with packages signed with the new GPG key as part of [Datadog's key
rotation](https://docs.datadoghq.com/agent/guide/linux-key-rotation-2024/?tab=debianubuntu).
This should be a transparent change for users as the package repository setup script
[setup.vector.dev](https://setup.vector.dev) has already been importing the new key;
however, if you were manually managing the trusted GPG keys, you will need to update to
the newer ones (either [apt](https://keys.datadoghq.com/DATADOG_APT_KEY_C0962C7D.public) or
[rpm](https://keys.datadoghq.com/DATADOG_RPM_KEY_B01082D3.public).
This release also fixes a regression in Vector v0.40.0.
"""

changelog: [
{
type: "fix"
description: """
Fixes a Vector v0.40.0 regression where the `reduce` transform would not group top
level objects correctly.
"""
},
]

commits: [
{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},
]
}
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.1",
"0.40.0",
"0.39.0",
"0.38.0",
Expand Down

0 comments on commit ec3a82a

Please sign in to comment.