Skip to content

Commit c909b66

Browse files
committed
chore(releasing): Prepare v0.34.0 release
Signed-off-by: Jesse Szwedko <[email protected]>
1 parent 7a7b53b commit c909b66

File tree

7 files changed

+593
-9
lines changed

7 files changed

+593
-9
lines changed

distribution/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -u
1212

1313
# If PACKAGE_ROOT is unset or empty, default it.
1414
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
15-
VECTOR_VERSION="0.33.1"
15+
VECTOR_VERSION="0.34.0"
1616
_divider="--------------------------------------------------------------------------------"
1717
_prompt=">>>"
1818
_indent=" "

website/content/en/highlights/2023-11-07-0-34-0-upgrade-guide.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Vector's 0.34.0 release includes **breaking changes**:
1717
1. [Removal of `peer_addr` Metric Tag](#remove-peer-addr)
1818
1. [Blackhole sink no longer reports by default](#blackhole-sink-reporting)
1919
1. [Remove direct OpenSSL legacy provider support](#openssl-legacy-provider)
20+
1. [Removal of the deprecated `armv7` rpm package](#armv7-rename)
2021

2122
and **deprecations**:
2223

@@ -30,19 +31,21 @@ We cover them below to help you upgrade quickly:
3031

3132
#### Removal of Deprecated Datadog Component Config Options {#datadog-deprecated-config-options}
3233

33-
The `region` config option has been removed from the Datadog Events, Logs,
34-
and Metrics sinks. Instead the `site` option should be used.
34+
The `region` config option has been removed from the Datadog Events, Logs, and Metrics sinks.
35+
Instead the `site` option should be used.
3536

36-
The `region` and `application_key` config options have
37-
been removed from the Enterprise configuration. Instead of `region`, `site` should be used. `application_key` is no longer required.
37+
The `region` and `application_key` config options have been removed from the Enterprise
38+
configuration. Instead of `region`, `site` should be used. `application_key` is no longer required.
3839

3940
#### Removal of Deprecated `component_name` Metric Tag {#deprecated-component-name}
4041

41-
The deprecated `component_name` tag has been removed from all internal metrics. Instead the `component_id` tag should be used.
42+
The deprecated `component_name` tag has been removed from all internal metrics. Instead, the
43+
`component_id` tag should be used.
4244

4345
#### Removal of Deprecated Metrics Replaced by `component_errors_total` {#deprecated-component-errors-total-metrics}
4446

45-
The following deprecated internal metrics have been removed. The `component_errors_total` metric should be used instead.
47+
The following deprecated internal metrics have been removed. The `component_errors_total` metric
48+
should be used instead.
4649

4750
| Metric Name | Components |
4851
|--------------------------------------------------|-------------------------------------------------------------------------------|
@@ -105,6 +108,12 @@ flag was deprecated in v0.33.0.
105108
The legacy OpenSSL provider (and other providers than the default provider) can still be enabled if
106109
desired through [options in OpenSSL's configuration](/docs/reference/configuration/tls)
107110

111+
#### Removal of the deprecated `armv7` rpm package {#armv7-rename}
112+
113+
The deprecated name of the `armv7` RPM package, `vector-<version>-1.armv7.rpm`, is no longer
114+
published. Instead, it is published as `vector-<version>-1.armv7hl.rpm` to better follow RPM
115+
guidelines. If you are using `yum` to install the RPM, this change should be transparent.
116+
108117
### Deprecations
109118

110119
#### Deprecation of `requests_completed_total`, `request_duration_seconds`, and `requests_received_total` Internal Metrics {#deprecate-obsolete-http-metrics}

website/content/en/releases/0.34.0.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: Vector v0.34.0 release notes
3+
weight: 21
4+
---

website/cue/reference/administration/interfaces/kubectl.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ administration: interfaces: kubectl: {
1919
role_implementations: [Name=string]: {
2020
commands: {
2121
_deployment_variant: string
22-
_vector_version: "0.33"
22+
_vector_version: "0.34"
2323
_namespace: string | *"vector"
2424
_controller_resource_type: string
2525
_controller_resource_name: string | *_deployment_variant

website/cue/reference/releases/0.33.0.cue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ releases: "0.33.0": {
2626
"""
2727

2828
known_issues: [
29-
"The Debian package installer will overwrite existing `/etc/default/vector` and `/etc/vector/vector.yaml` files. This will be fixed in v0.33.1.",
29+
"The Debian package installer will overwrite existing `/etc/default/vector` and `/etc/vector/vector.yaml` files. This was fixed in v0.33.1.",
30+
"The `clickhouse` sink health check will fail due to the accidentally inclusion of an extra `/` in the request URI. This was fixed in v0.34.0.",
3031
]
3132

3233
changelog: [

0 commit comments

Comments
 (0)