Skip to content

Commit

Permalink
chore(releasing): Prepare v0.34.2 release
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 Dec 21, 2023
1 parent 74d6cb1 commit d685a16
Show file tree
Hide file tree
Showing 7 changed files with 56 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.34.1"
version = "0.34.2"
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.34.1"
VECTOR_VERSION="0.34.2"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.34.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.34.2 release notes
weight: 21
---
3 changes: 2 additions & 1 deletion website/cue/reference/releases/0.34.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ releases: "0.34.0": {
Loki rejecting the requests with an HTTP 400 response. This is fixed in v0.34.1.
""",
"""
The `protobuf` encoder does not work in sinks [#19230](https://github.com/vectordotdev/vector/issues/19230).
The `protobuf` encoder does not work in sinks
[#19230](https://github.com/vectordotdev/vector/issues/19230). Fixed in `v0.34.2`.
""",
]

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

releases: "0.34.2": {
date: "2023-12-21"
codename: ""

whats_next: []

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

changelog: [
{
type: "fix"
scopes: ["datadog_agent source"]
description: """
The Datadog Agent source now correctly responds to the empty payload request that
the Datadog Agent sends on start-up to verify connectivity.
"""
pr_numbers: [19093]
},
{
type: "fix"
scopes: ["codecs"]
description: """
The `protobuf` encoder added in v0.34.0 now correctly receives and encodes log
events. Previously it was silently discarding them.
"""
pr_numbers: [19264]
},
]

commits: [
{sha: "73a668c7988e196a74e8a5d4a171dd2e5eddbed3", date: "2023-11-18 06:23:53 UTC", description: "WEB-4275 | Update Navigation", pr_number: 19186, scopes: ["website"], type: "chore", breaking_change: false, author: "Devin Ford", files_count: 1, insertions_count: 1, deletions_count: 1},
{sha: "1b9fb9b5ac3c99eef2fbe160660401c3797f4254", date: "2023-11-14 08:44:16 UTC", description: "Add alpha to traces and beta to metrics in descriptions", pr_number: 19139, scopes: ["docs"], type: "chore", breaking_change: false, author: "May Lee", files_count: 6, insertions_count: 12, deletions_count: 12},
{sha: "f7c3824c1f6830119ac98b8f4791322fb7e24e50", date: "2023-11-29 06:44:59 UTC", description: "Add known issue for protobuf encoder in v0.34.0", pr_number: 19244, scopes: ["releasing"], type: "chore", breaking_change: false, author: "Bruce Guenter", files_count: 1, insertions_count: 3, deletions_count: 0},
{sha: "ab7983a201c7e001317d993f7a291a769af06b38", date: "2023-11-09 04:10:43 UTC", description: "return 200 on empty object payload", pr_number: 19093, scopes: ["datadog_agent source"], type: "fix", breaking_change: false, author: "Doug Smith", files_count: 2, insertions_count: 23, deletions_count: 1},
{sha: "d2fea6580aaa9a0936f11b9f70fc053676872837", date: "2023-12-08 04:34:35 UTC", description: "fix 'ProtobufSerializerConfig' input type", pr_number: 19264, scopes: ["codecs"], type: "fix", breaking_change: false, author: "Pavlos Rontidis", files_count: 1, insertions_count: 16, deletions_count: 1},
{sha: "e27b7bdd997879e6fcc99b60b6165e2e533adf6e", date: "2023-11-30 23:45:09 UTC", description: "Ignore RUSTSEC-2023-0071 for now", pr_number: 19263, scopes: ["security"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 6, deletions_count: 1},
{sha: "74d6cb1effcba4b8f7a7be951907a78f95d39996", date: "2023-12-20 18:01:16 UTC", description: "Bump zerocopy from 0.7.21 to 0.7.31", pr_number: 19394, scopes: ["deps"], type: "chore", breaking_change: false, author: "dependabot[bot]", files_count: 1, insertions_count: 4, deletions_count: 4},
]
}
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.34.2",
"0.34.1",
"0.34.0",
"0.33.1",
Expand Down

0 comments on commit d685a16

Please sign in to comment.