Skip to content

Commit

Permalink
chore(releasing): Prepare v0.28.1 release
Browse files Browse the repository at this point in the history
Co-authored-by: neuronull <[email protected]>
Signed-off-by: Jesse Szwedko <[email protected]>
  • Loading branch information
jszwedko and neuronull committed Mar 6, 2023
1 parent 73bf872 commit ff15924
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 6 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.28.0"
version = "0.28.1"
authors = ["Vector Contributors <[email protected]>"]
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.28.0"
VECTOR_VERSION="0.28.1"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.28.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.28.1 release notes
weight: 21
---
6 changes: 3 additions & 3 deletions website/cue/reference/releases/0.28.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ releases: "0.28.0": {

known_issues: [
"""
AWS components are not functional due to issues with request signing. This will be fixed
in 0.28.1.
AWS components, except the `aws_s3` sink, are not functional due to issues with request
signing. This is fixed in v0.28.1.
""",
"""
The `framing.*.max_length` configuration options cannot be used on the `socket` source
as Vector returns an error about them conflicting with the deprecated top-level
`max_length` configuration option. This This will be fixed in 0.28.1.
`max_length` configuration option. This is fixed in v0.28.1.
""",
]

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

releases: "0.28.1": {
date: "2023-03-06"
codename: ""

description: """
This patch release contains a few fixes for regressions in 0.28.0.
**Note:** Please see the release notes for [`v0.28.0`](/releases/0.28.0/) for additional changes if upgrading from
`v0.27.X`. In particular, the upgrade guide for breaking changes.
"""

changelog: [
{
type: "fix"
scopes: ["aws provider"]
description: """
All AWS components now correctly sign requests again. This impacted all AWS
components except the `aws_s3` sink and caused the components to output AWS service
errors for each request.
"""
pr_numbers: [16651]
},
{
type: "fix"
scopes: ["socket source"]
description: """
The `framing.*.max_length` configuration options can again be used on the `socket`
source. Previously they returned an error that they conflicted with the deprecated
top-level `max_length` configuration option.
"""
pr_numbers: [16631]
},
]

commits: [
{sha: "764c542e36a13d2846c01a2d64b6a2d033fa7797", date: "2023-03-01 15:34:20 UTC", description: "Add known issues for 0.28.0.", pr_number: 16649, scopes: ["releasing"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 12, deletions_count: 0},
{sha: "366d34eb93e5852350b6675d96a2701d5d4611e1", date: "2023-03-01 16:22:29 UTC", description: "Add a links to footer for to the /releases and /downloads pages", pr_number: 16441, scopes: ["website"], type: "chore", breaking_change: false, author: "neuronull", files_count: 3, insertions_count: 16, deletions_count: 1},
{sha: "08406152030236d35130899454d4a934449923ac", date: "2023-03-01 22:46:02 UTC", description: "Revert AWS-SDK updates", pr_number: 16651, scopes: ["aws service"], type: "fix", breaking_change: false, author: "Spencer Gilbert", files_count: 27, insertions_count: 421, deletions_count: 447},
{sha: "73bf8728e7d8c74d71730ffb554597440b273ce5", date: "2023-03-01 00:28:22 UTC", description: "remove default_max_length default", pr_number: 16631, scopes: ["socket source"], type: "fix", breaking_change: false, author: "Stephen Wakely", files_count: 3, insertions_count: 1, deletions_count: 6},
]
}
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.28.1",
"0.28.0",
"0.27.1",
"0.27.0",
Expand Down

0 comments on commit ff15924

Please sign in to comment.