Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(releasing): Prepare v0.34.0 release #19049

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.33.1"
VECTOR_VERSION="0.34.0"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Vector's 0.34.0 release includes **breaking changes**:
1. [Removal of `peer_addr` Metric Tag](#remove-peer-addr)
1. [Blackhole sink no longer reports by default](#blackhole-sink-reporting)
1. [Remove direct OpenSSL legacy provider support](#openssl-legacy-provider)
1. [Removal of the deprecated `armv7` rpm package](#armv7-rename)

and **deprecations**:

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

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

The `region` config option has been removed from the Datadog Events, Logs,
and Metrics sinks. Instead the `site` option should be used.
The `region` config option has been removed from the Datadog Events, Logs, and Metrics sinks.
Instead the `site` option should be used.

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

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

The deprecated `component_name` tag has been removed from all internal metrics. Instead the `component_id` tag should be used.
The deprecated `component_name` tag has been removed from all internal metrics. Instead, the
`component_id` tag should be used.

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

The following deprecated internal metrics have been removed. The `component_errors_total` metric should be used instead.
The following deprecated internal metrics have been removed. The `component_errors_total` metric
should be used instead.

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

#### Removal of the deprecated `armv7` rpm package {#armv7-rename}

The deprecated name of the `armv7` RPM package, `vector-<version>-1.armv7.rpm`, is no longer
published. Instead, it is published as `vector-<version>-1.armv7hl.rpm` to better follow RPM
guidelines. If you are using `yum` to install the RPM, this change should be transparent.

### Deprecations

#### Deprecation of `requests_completed_total`, `request_duration_seconds`, and `requests_received_total` Internal Metrics {#deprecate-obsolete-http-metrics}
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.34.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.34.0 release notes
weight: 21
---
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ administration: interfaces: kubectl: {
role_implementations: [Name=string]: {
commands: {
_deployment_variant: string
_vector_version: "0.33"
_vector_version: "0.34"
_namespace: string | *"vector"
_controller_resource_type: string
_controller_resource_name: string | *_deployment_variant
Expand Down
3 changes: 2 additions & 1 deletion website/cue/reference/releases/0.33.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ releases: "0.33.0": {
"""

known_issues: [
"The Debian package installer will overwrite existing `/etc/default/vector` and `/etc/vector/vector.yaml` files. This will be fixed in v0.33.1.",
"The Debian package installer will overwrite existing `/etc/default/vector` and `/etc/vector/vector.yaml` files. This was fixed in v0.33.1.",
"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.",
]

changelog: [
Expand Down
Loading
Loading