Skip to content

Commit 10f5d7d

Browse files
jszwedkoburaizu
andcommitted
chore(releasing): Prepare v0.35.1 release
Signed-off-by: Jesse Szwedko <[email protected]> Co-authored-by: Bryce Eadie <[email protected]>
1 parent 9e7e658 commit 10f5d7d

File tree

5 files changed

+43
-2
lines changed

5 files changed

+43
-2
lines changed

distribution/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set -u
1313
# If PACKAGE_ROOT is unset or empty, default it.
1414
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
1515
# If VECTOR_VERSION is unset or empty, default it.
16-
VECTOR_VERSION="${VECTOR_VERSION:-"0.35.0"}"
16+
VECTOR_VERSION="${VECTOR_VERSION:-"0.35.1"}"
1717
_divider="--------------------------------------------------------------------------------"
1818
_prompt=">>>"
1919
_indent=" "
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: Vector v0.35.1 release notes
3+
weight: 21
4+
---

website/cue/reference/releases/0.35.0.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ releases: "0.35.0": {
163163
close` header in the response. While this parameter is crucial for managing the
164164
lifespan of persistent, incoming connections to Vector and for effective load
165165
balancing, it can be disabled by setting `keepalive.max_connection_age_secs` to
166-
`null`.
166+
a large number like `100000000`.
167167
"""
168168
pr_numbers: [19141]
169169
},
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package metadata
2+
3+
releases: "0.35.1": {
4+
date: "2024-02-06"
5+
codename: ""
6+
7+
whats_next: []
8+
9+
description: """
10+
This patch release contains fixes for regressions in 0.35.0.
11+
12+
**Note:** Please see the release notes for [`v0.35.0`](/releases/0.35.0/) for additional changes if upgrading from
13+
`v0.34.X`. In particular, see the upgrade guide for breaking changes.
14+
"""
15+
16+
changelog: [
17+
{
18+
type: "fix"
19+
scopes: ["http provider"]
20+
description: """
21+
The HTTP server-based sources that support the new
22+
`keepalive.max_connection_age_secs` now only apply this setting for HTTP/0.9,
23+
HTTP/1.0, and HTTP/1.1 connections, since the implementation, which sends
24+
a `Connection: Close` header, does not apply to HTTP/2 and HTTP/3 connections.
25+
"""
26+
pr_numbers: [19801]
27+
},
28+
]
29+
30+
commits: [
31+
{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},
32+
{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},
33+
{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},
34+
{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},
35+
]
36+
}

website/cue/reference/versions.cue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package metadata
22

33
// This has to be maintained manually because there's currently no way to sort versions programmatically
44
versions: [string, ...string] & [
5+
"0.35.1",
56
"0.35.0",
67
"0.34.2",
78
"0.34.1",

0 commit comments

Comments
 (0)