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.35.0 release #19528

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ Lifetab
Lifetouch
Lumia
Malata
manden
Maxthon
Mediacom
Medion
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.34.2"}"
VECTOR_VERSION="${VECTOR_VERSION:-"0.35.0"}"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Vector's 0.35.0 release includes **breaking changes**:
1. [Datadog sinks now default the API key and Site to the value of environment variables](#datadog-env-vars)
1. [Removal of `requests_completed_total`, `request_duration_seconds`, and `requests_received_total` Internal Metrics](#remove-obsolete-http-metrics)

and **deprecations**:

1. [Deprecation of undefined environment variable warnings](#strict-env-vars)

and **potentially impactful changes**:

1. [HTTP server-based sources now include a `keepalive.max_connection_age_secs` config option that defaults to 5 minutes](#http-keepalive-max-connection-age)
Expand Down Expand Up @@ -55,6 +59,23 @@ The `requests_completed_total`, `request_duration_seconds`, and `requests_receiv
| request_duration_seconds | http_client_response_rtt_seconds | apache metrics, aws ecs metrics, http client, prometheus remote write, prometheus scrape |
| requests_received_total | http_server_requests_received_total | aws kinesis firehose, heroku logplex, prometheus exporter, splunk hec |

### Deprecations

#### Deprecation of undefined environment variable warnings {#strict-env-vars}

Vector has the ability to [interpolate environment variables into its
configuration](/docs/reference/configuration/#environment-variables) as a means of templating
configuration. Currently, if an environment variable is undefined (unless the `?` interpolation
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
configuration. Currently, if an environment variable is undefined (unless the `?` interpolation
configuration. Currently, if an environment variable is undefined, (unless the `?` interpolation

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Than you!

syntax is used) Vector outputs a warning and replaces the environment variable with an empty string.
In a future release , this will change from a warning to a hard error. This behavior can be opted
jszwedko marked this conversation as resolved.
Show resolved Hide resolved
into earlier by using the `--strict-env-vars` flag (or `VECTOR_STRICT_ENV_VARS` environment
variable) when running Vector.

The reasoning for this change is that users often miss the undefined variable warning and are
confused by Vector not behaving as the expected. In particular, this happens when using `$1` in
regex capture groups in VRL without realizing they need to be escaped as `$$1` to avoid
interpolation.

### Potentially impactful changes

#### HTTP server-based sources now include a `keepalive.max_connection_age_secs` config option that defaults to 5 minutes {#http-keepalive-max-connection-age}
Expand Down
4 changes: 4 additions & 0 deletions website/content/en/releases/0.35.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.35.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.34"
_vector_version: "0.35"
_namespace: string | *"vector"
_controller_resource_type: string
_controller_resource_name: string | *_deployment_variant
Expand Down
Loading
Loading