-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(releasing): Prepare v0.43.1
release
#21993
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
455fae3
bump Vector minor and VRL version
pront ca3abef
fix(reduce transform): enable quoting for invalid fields (#21989)
pront 43b8916
fix(internal_metrics source): Emit `build_info` gauge on an interval …
jszwedko f3a6d2c
more bumps and md
pront 504fa15
cargo vdev build release-cue
pront db77a0c
add 0.43.1.cue
pront 3fd40b4
add description
pront 451d887
change date
pront File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vector" | ||
version = "0.43.0" | ||
version = "0.43.1" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
description = "A lightweight and ultra-fast tool for building observability pipelines" | ||
|
@@ -164,7 +164,7 @@ vector-lib = { path = "lib/vector-lib", default-features = false, features = ["v | |
vector-config = { path = "lib/vector-config" } | ||
vector-config-common = { path = "lib/vector-config-common" } | ||
vector-config-macros = { path = "lib/vector-config-macros" } | ||
vrl = { version = "0.20.0", features = ["arbitrary", "cli", "test", "test_framework"] } | ||
vrl = { version = "0.20.1", features = ["arbitrary", "cli", "test", "test_framework"] } | ||
|
||
[dependencies] | ||
pin-project.workspace = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: Vector v0.43.1 release notes | ||
weight: 21 | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package metadata | ||
|
||
releases: "0.43.1": { | ||
date: "2024-12-10" | ||
codename: "" | ||
|
||
whats_next: [] | ||
|
||
description: """ | ||
This patch release contains fixes for regressions in 0.43.0. | ||
""" | ||
|
||
changelog: [ | ||
{ | ||
type: "fix" | ||
description: """ | ||
Update to VRL v0.20.1 which a reverts to previous `to_float` behavior for non-normal floats. | ||
""" | ||
contributors: ["pront"] | ||
}, | ||
{ | ||
type: "fix" | ||
description: """ | ||
Emit `build_info` gauge on an interval to avoid expiration. | ||
""" | ||
contributors: ["jszwedko"] | ||
}, | ||
{ | ||
type: "fix" | ||
description: """ | ||
Fix `reduce` transform to quote invalid paths by default. Quoting make those paths valid. | ||
""" | ||
contributors: ["pront"] | ||
}, | ||
] | ||
|
||
commits: [ | ||
{sha: "ca3abef14605dfbdca6060bbcd038fd7abfec6f0", date: "2024-12-09 23:11:21 UTC", description: "enable quoting for invalid fields", pr_number: 21989, scopes: ["reduce transform"], type: "fix", breaking_change: false, author: "Pavlos Rontidis", files_count: 3, insertions_count: 46, deletions_count: 7}, | ||
{sha: "43b8916fa5b381cc90a22c787a574c8fc75550b5", date: "2024-12-10 08:25:25 UTC", description: "Emit `build_info` gauge on an interval", pr_number: 21991, scopes: ["internal_metrics source"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 3, insertions_count: 13, deletions_count: 10}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could also just copy paste the v0.20.1 changelog here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True, that would be reasonable.