Skip to content

Commit

Permalink
chore(releasing): Prepare v0.25.1
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 Nov 7, 2022
1 parent 5d98522 commit 9125a99
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vector"
version = "0.25.0"
version = "0.25.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
description = "A lightweight and ultra-fast tool for building observability pipelines"
Expand Down
2 changes: 1 addition & 1 deletion distribution/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -u

# If PACKAGE_ROOT is unset or empty, default it.
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
VECTOR_VERSION="0.25.0"
VECTOR_VERSION="0.25.1"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.25.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.25.1 release notes
weight: 21
---
8 changes: 4 additions & 4 deletions website/cue/reference/releases/0.25.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ releases: "0.25.0": {
known_issues: [
"""
Vector fails to load configurations using environment variables outside of string values
for configuration options. This will be fixed in 0.25.1.
for configuration options. Fixed in 0.25.1.
""",
"""
Vector fails to load multi-file configurations using the global `timezone` configuration
option. This will be fixed in 0.25.1.
option. Fixed in 0.25.1.
""",
"""
The `prometheus_remote_write` sink doesn't support specifying `auth.bearer` as it
should. This will be fixed in 0.25.1.
The `prometheus_remote_write` sink doesn't support specifying the configuration
`auth.bearer` as it should. Fixed in 0.25.1.
""",
]

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

releases: "0.25.1": {
date: "2022-11-04"
codename: ""

whats_next: []

description: """
This patch release contains a few fixes for regressions in 0.25.0.
**Note:** Please see the release notes for [`v0.25.0`](/releases/0.25.0/) for additional changes if upgrading from
`v0.24.X`. In particular, the upgrade guide for breaking changes.
"""
changelog: [
{
type: "fix"
scopes: ["config"]
description: """
Vector now loads configurations using environment variables outside of string values
for configuration options again.
"""
pr_numbers: [15081]
},
{
type: "fix"
scopes: ["config"]
description: """
Vector now loads multi-file configurations using the global `timezone` configuration
option again.
"""
pr_numbers: [15077]
},
{
type: "fix"
scopes: ["config"]
description: """
The `prometheus_remote_write` sink now allows the configuration `auth.bearer` to be provided again.
"""
pr_numbers: [15112]
},
]

commits: [
{sha: "8f43b656d23b013f4da07ddc8422b2140fb56ec9", date: "2022-11-03 00:36:09 UTC", description: "fix link to journalctl discussion", pr_number: 15070, scopes: [], type: "docs", breaking_change: false, author: "Jim Rollenhagen", files_count: 1, insertions_count: 1, deletions_count: 1},
{sha: "4f6a2a84c9093bc65a546b063e9d5914b4165492", date: "2022-11-03 01:55:23 UTC", description: "Add known issues for 0.25.0 release", pr_number: 15076, scopes: ["releasing"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 10, deletions_count: 1},
{sha: "2cafbde09e753abb89af3d3c3416c4e4bdd9466c", date: "2022-11-03 05:54:17 UTC"
description: "Revert config secrets scanning", pr_number: 15081, scopes: ["config"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 14, insertions_count: 105, deletions_count: 387
},
{sha: "3d55887042bbc2ecae9ca0c0bf220f39f1c5b462", date: "2022-11-03 13:05:06 UTC", description: "Fix merging of configured timezones", pr_number: 15077, scopes: ["config"], type: "fix", breaking_change: false, author: "Bruce Guenter", files_count: 6, insertions_count: 82, deletions_count: 15},
{sha: "296a65099fd3399f7aa0f6e597ff77be997063d0", date: "2022-11-05 05:47:58 UTC", description: "Add another known issue for prometheus remote write source", pr_number: 15122, scopes: ["releasing"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 4, deletions_count: 0},
{sha: "44eebb0c164c5ff815d7f3032d5a3f8f17b3e82f", date: "2022-11-01 22:34:25 UTC", description: "Disable axiom integration test temporarily", pr_number: 15053, scopes: ["ci"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 2, deletions_count: 1},
{sha: "d632330e3f1fb70586606188a2320cfae2c6a544", date: "2022-11-03 03:14:35 UTC", description: "Explicitly set DD_HOSTNAME for Datadog Agent integration tests", pr_number: 15080, scopes: ["ci"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 2, deletions_count: 0},
{sha: "51e42510afd1c1e9737f0328e4ff8b28eb7cb1cd", date: "2022-11-05 08:11:41 UTC", description: "re-add support `Bearer` Auth config option", pr_number: 15112, scopes: ["prometheus_remote_write sink"], type: "fix", breaking_change: false, author: "neuronull", files_count: 3, insertions_count: 93, deletions_count: 28},
]
}
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.25.1",
"0.25.0",
"0.24.2",
"0.24.1",
Expand Down

0 comments on commit 9125a99

Please sign in to comment.