Skip to content

Commit

Permalink
chore(docs): Fix link in release notes (#20454)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceg committed May 7, 2024
1 parent a7b9f9e commit fb2d973
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Vector's 0.38.0 release includes a **breaking change**:

and **deprecations**:

1. [Deprecation of undefined environment variable warnings](#strict-env-vars)
1. [Deprecation of path coalescing operator](#path-coalescing)
1. [Deprecation of `enterprise` configuration](#enterprise-configuration)

We cover them below to help you upgrade quickly:
Expand Down Expand Up @@ -44,10 +44,10 @@ groups to avoid interpolation. For example, instead of using `$1`, you need to a
#### Path coalescing is deprecated {#path-coalescing}

Coalescing of field lookup paths (e.g. `.(field1|field2)`) are deprecated and will be removed in
a future version. This feature did not seem to be used much and significantly complicates the parts
a future version. 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 like:
If you were using this feature, you can accomplish the same through conditionals in VRL like:

```vrl
field = if exists(.field1) {
Expand Down

0 comments on commit fb2d973

Please sign in to comment.