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): Add 0.32.0 highlight for legacy OpenSSL provider deprecation #18263

Merged
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ badges:
Vector's 0.32.0 release includes **deprecations**:

1. [VRL `to_timestamp` function](#deprecated-to-timestamp)
2. [Deprecation of legacy OpenSSL providers](#legacy-openssl)

and **potentially impactful changes**:

1. [Upgrade of OpenSSL from 1.1.1 to 3.1](#openssl-upgrade)
1. [Upgrade of OpenSSL from 1.1.1 to 3.1.2](#openssl-upgrade)

We cover them below to help you upgrade quickly:

Expand All @@ -33,9 +34,18 @@ The `to_timestamp` function in VRL was deprecated. Instead, the following functi
This removes some confusion that existed around "magic formats" that the `to_timestamp` had by
requiring string timestamp formats to be specified explicitly.

#### Deprecation of legacy OpenSSL providers {#legacy-openssl}

With the upgrade to OpenSSL 3.1.2, the [legacy algorithm
provider](https://github.com/openssl/openssl/blob/openssl-3.1.2/README-PROVIDERS.md#the-legacy-provider)
was deprecated. The default will be switched in a future version to [default
provider](https://github.com/openssl/openssl/blob/openssl-3.1.2/README-PROVIDERS.md#the-default-provider).
You can opt into this behavior now by setting the environment variable
`VECTOR_OPENSSL_LEGACY_PROVIDER=false`.

### Potentially impactful changes

#### Upgrade of OpenSSL from 1.1.1 to 3.1.0 {#openssl-upgrade}
#### Upgrade of OpenSSL from 1.1.1 to 3.1.2 {#openssl-upgrade}
Copy link
Member Author

Choose a reason for hiding this comment

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

Also fixed this version number.


As part of moving off of OpenSSL 1.1.1 before it becomes [end-of-life in
September](https://www.openssl.org/blog/blog/2023/03/28/1.1.1-EOL/), Vector has upgraded the version
Expand Down