Skip to content

Commit

Permalink
chore(releasing): Prepare v0.35.0 release
Browse files Browse the repository at this point in the history
Checklist: #19446

Signed-off-by: Jesse Szwedko <[email protected]>
  • Loading branch information
jszwedko committed Jan 8, 2024
1 parent 9bdaaa2 commit e57c0c0
Show file tree
Hide file tree
Showing 7 changed files with 600 additions and 2 deletions.
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
21 changes: 21 additions & 0 deletions website/content/en/highlights/2023-12-19-0-35-0-upgrade-guide.md
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
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
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

0 comments on commit e57c0c0

Please sign in to comment.