-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(releasing): Prepare v0.39.0 release
Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
- Loading branch information
Showing
21 changed files
with
314 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
changelog.d/10465_kafka_sink_healthcheck_topic.enhancement.md
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
changelog.d/19183_templateable_chronicle_namespace.enhancement.md
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
changelog.d/19962_prometheus_exporter_compression.enhancement.md
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
changelog.d/loki-sink-default-out-of-order-action-accept.breaking.md
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
website/content/en/highlights/2024-06-17-0-39-0-upgrade-guide.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
date: "2024-06-17" | ||
title: "0.39 Upgrade Guide" | ||
description: "An upgrade guide that addresses breaking changes in 0.39.0" | ||
authors: ["jszwedko"] | ||
release: "0.39.0" | ||
hide_on_release_notes: false | ||
badges: | ||
type: breaking change | ||
--- | ||
|
||
Vector's 0.39.0 release includes two **breaking changes**: | ||
|
||
1. [Removal of the path coalescing operator](#path-coalescing) | ||
1. [Removal of `enterprise` configuration](#enterprise-configuration) | ||
|
||
We cover them below to help you upgrade quickly: | ||
|
||
## Upgrade guide | ||
|
||
### Breaking Change | ||
|
||
#### Path coalescing has been removed {#path-coalescing} | ||
|
||
Coalescing of field lookup paths (e.g. `.(field1|field2)`) was deprecated and is now removed This | ||
feature did not seem to be used much and significantly complicates parts of the codebase. | ||
|
||
If you were using this feature, you can accomplish the same through conditionals in VRL like: | ||
|
||
```vrl | ||
field = if exists(.field1) { | ||
.field1 | ||
} else if exists(.field2) { | ||
.field2 | ||
} | ||
``` | ||
|
||
#### Removal of `enterprise` configuration {#enterprise-configuration} | ||
|
||
The `enterprise` global configuration option that was used to integrate Vector with the Datadog has been removed. | ||
Observability Pipelines product was deprecated and has been removed. Please reach out to Datadog | ||
support if you are impacted by this. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: Vector v0.39.0 release notes | ||
weight: 21 | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.