-
Notifications
You must be signed in to change notification settings - Fork 2.2k
enhancement(deps)!: remove openssl legacy provider flag and update docs #18609
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
Changes from 8 commits
ea480d6
b5648e8
bdb9724
22d3558
f8dc18e
3479e86
1e8eb51
b5cdfe0
0f78f31
c2f3acd
ddcce64
5b6cf86
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| date: "2023-09-26" | ||
| title: "0.33 Upgrade Guide" | ||
| description: "An upgrade guide that addresses breaking changes in 0.33.0" | ||
| authors: ["spencergilbert", "neuronull"] | ||
| authors: ["spencergilbert", "neuronull", "pront", "dsmith3197"] | ||
| release: "0.33.0" | ||
| hide_on_release_notes: false | ||
| badges: | ||
|
|
@@ -12,11 +12,17 @@ badges: | |
| Vector's 0.33.0 release includes **breaking changes**: | ||
|
|
||
| 1. [Behavior of the `datadog_logs` sink's `endpoint` setting](#datadog-logs-endpoint) | ||
| 1. [Disable OpenSSL legacy provider by default](#openssl-legacy-provider) | ||
|
|
||
| Vector's 0.33.0 release includes **deprecations**: | ||
| and **deprecations**: | ||
|
|
||
| 1. [Default config location change](#default-config-location-change) | ||
| 1. [Renaming the `armv7` rpm package](#armv7-rename) | ||
|
|
||
| and **potentially impactful changes**: | ||
|
|
||
| 1. [Async runtime default number of worker threads](#runtime-worker-threads) | ||
|
|
||
| We cover them below to help you upgrade quickly: | ||
|
|
||
| ## Upgrade guide | ||
|
|
@@ -34,9 +40,23 @@ with the other Datadog sinks, which use the `endpoint` as a base URL that the AP | |
| With this release, the `datadog_logs` sink's behavior is now consistent with the other | ||
| Datadog sinks for the `endpoint` setting. | ||
|
|
||
| #### Disable OpenSSL legacy provider by default {#openssl-legacy-provider} | ||
|
|
||
| Vector upgraded the version of OpenSSL that it statically compiles in to v3.1.x in the 0.32.0 release. | ||
| Following our deprecation policy, v0.33.0 now disables the legacy OpenSSL provider by default. It can be | ||
| enabled through the [OpenSSL configuration options](https://www.openssl.org/docs/manmaster/man5/config.html) | ||
| exposed through environment variables, particularly `OPENSSL_CONF`. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The only concrete and relevant env variable is While outside of the scope of this PR, I still think Vector should document a complete example like I gave in the other closed PR. That should make it very clear how to use this functionality.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, I wasn't sure if
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is one more thing to consider maybe. Vector's vendored OpenSSL library actually looks by default for So, technically, if a user has an OpenSSL config in that path, Vector will pick it up automatically without needing Perhaps a dedicated "Vector and SSL/TLS" documentation section is necessary to explain all these nuances?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree that it would be useful to go into detail on this topic in the documentation. Given your expertise in the area, is this something you'd be willing to contribute? If not, I can open an issue to track this work.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As I mentioned in the other PR where I investigated all of this, I'm more than happy to contribute documentation on the subject. As a starting point, can the Vector team suggest where in the documentation it would be suitable to open a new section/page for this topic? At the moment it is hard for me to see where it would best fit in https://vector.dev/docs/ :(
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks! I think this topic is worthy of its own page -
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the pointer! Will work on it in the coming days.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You should be able to run |
||
|
|
||
|
|
||
| ### Deprecations | ||
|
|
||
| #### Default config location change {#default-config-location-change} | ||
|
|
||
| The default config location `/etc/vector/vector.toml` which is used by Vector `0.32.0` is now deprecated. This location will still be used in `0.33.0`. The new default path is `/etc/vector/vector.yaml`, please migrate to this new default path or specify the config path explicitly. | ||
|
|
||
| Vector `0.33.0` will attempt to load `/etc/vector/vector.toml` first, and if it is not present, it will fallback to `/etc/vector/vector.yaml`. However, Vector release `0.34.0` will automatically load `/etc/vector/vector.yaml` only. | ||
|
|
||
|
|
||
| #### Renaming the `armv7` rpm package {#armv7-rename} | ||
|
|
||
| The `armv7` rpm package, `vector-<version>-1.armv7.rpm`, is now published as | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.