Skip to content

Commit

Permalink
chore(releasing): Prepare v0.35.1 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Szwedko <[email protected]>
Co-authored-by: Bryce Eadie <[email protected]>
  • Loading branch information
jszwedko and buraizu committed Feb 12, 2024
1 parent 3bb7aea commit 3ff039a
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 4 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.35.0"
version = "0.35.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 @@ -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.35.0"}"
VECTOR_VERSION="${VECTOR_VERSION:-"0.35.1"}"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.35.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.35.1 release notes
weight: 21
---
2 changes: 1 addition & 1 deletion website/cue/reference/releases/0.35.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ releases: "0.35.0": {
close` header in the response. While this parameter is crucial for managing the
lifespan of persistent, incoming connections to Vector and for effective load
balancing, it can be disabled by setting `keepalive.max_connection_age_secs` to
`null`.
a large number like `100000000`.
"""
pr_numbers: [19141]
},
Expand Down
36 changes: 36 additions & 0 deletions website/cue/reference/releases/0.35.1.cue
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package metadata

releases: "0.35.1": {
date: "2024-02-06"
codename: ""

whats_next: []

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

changelog: [
{
type: "fix"
scopes: ["http provider"]
description: """
The HTTP server-based sources that support the new
`keepalive.max_connection_age_secs` now only apply this setting for HTTP/0.9,
HTTP/1.0, and HTTP/1.1 connections, since the implementation, which sends
a `Connection: Close` header, does not apply to HTTP/2 and HTTP/3 connections.
"""
pr_numbers: [19801]
},
]

commits: [
{sha: "48eac298802a0e483b4ea935478f87915fb99c25", date: "2024-01-26 07:42:41 UTC", description: "Add banner alerting people of package migration", pr_number: 19714, scopes: ["docs"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 3, insertions_count: 6, deletions_count: 23},
{sha: "58be28d5b0a144de58522aa2ec67700b7878049d", date: "2024-01-27 00:29:39 UTC", description: "Add documentation data", pr_number: 19715, scopes: ["aws_sns sink"], type: "docs", breaking_change: false, author: "Jesse Szwedko", files_count: 3, insertions_count: 111, deletions_count: 0},
{sha: "360ee55f8d2f6dcceaff27bcaa18c5f04c9b6ad9", date: "2024-02-06 06:55:52 UTC", description: "Conditionally send Connection: Close header based on HTTP version", pr_number: 19801, scopes: ["http_server source"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 10, insertions_count: 91, deletions_count: 13},
{sha: "8bfb1e51b5918ee18c398113c0a5c647dc8e08f8", date: "2024-02-07 04:45:20 UTC", description: "Update docs for disabling `max_connection_age_secs`", pr_number: 19802, scopes: ["docs", "http_server source"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 10, insertions_count: 31, deletions_count: 19},
]
}
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.35.1",
"0.35.0",
"0.34.2",
"0.34.1",
Expand Down

0 comments on commit 3ff039a

Please sign in to comment.