Skip to content

Commit 3e87de2

Browse files
authored
chore: Prepare v0.16.0 release (#873)
* chore: Prepare v0.16.0 release * fix changelog version
1 parent eea9a0d commit 3e87de2

File tree

7 files changed

+26
-13
lines changed

7 files changed

+26
-13
lines changed

CHANGELOG.md

+24-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@
44

55
<!-- changelog start -->
66

7+
## [0.16.0 (2024-06-06)]
8+
9+
10+
### Breaking Changes & Upgrade Guide
11+
12+
- The deprecated coalesce paths (i.e. `(field1|field2)`) feature is now removed. (https://github.com/vectordotdev/vrl/pull/836)
13+
14+
### New Features
15+
16+
- Added experimental `dns_lookup` function. It should be used with caution, since it involves network
17+
calls and is therefore very slow.
18+
19+
authors: esensar (https://github.com/vectordotdev/vrl/pull/764)
20+
- Added `psl` argument to the `parse_etld` function. It enables customizing used public suffix list. If none is provided the default (https://publicsuffix.org/list/public_suffix_list.dat) is used, which is that was used before this change.
21+
22+
authors: esensar (https://github.com/vectordotdev/vrl/pull/851)
23+
24+
### Enhancements
25+
26+
- Add traceability_id field support to parse_aws_alb_log (https://github.com/vectordotdev/vrl/pull/862)
27+
28+
729
## [0.15.0 (2024-05-01)]
830

931

@@ -82,7 +104,7 @@
82104
### New Features
83105

84106
- Introduced an unused expression checker. It's designed to detect and report unused expressions,
85-
helping users to clean up and optimize their VRL scripts. Note that this checker will not catch everything,
107+
helping users to clean up and optimize their VRL scripts. Note that this checker will not catch everything,
86108
but it does aim to eliminate false positives. For example, shadowed variables are not reported as unused.
87109
(https://github.com/vectordotdev/vrl/pull/622)
88110
- Add a `replace_with` function that is similar to `replace` but takes a closure instead of a
@@ -100,7 +122,7 @@
100122

101123
## `0.9.0` (2023-12-12)
102124
* `parse_regex_all` `pattern` param can now be resolved from a variable
103-
* fixed `parse_json` data corruption issue for numbers greater or equal to `i64::MAX`
125+
* fixed `parse_json` data corruption issue for numbers greater or equal to `i64::MAX`
104126
* support timestamp comparison using operators <, <=, >, >=
105127

106128
## `0.8.0` (2023-10-31)

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vrl"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = ["Vector Contributors <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"

changelog.d/764.feature.md

-4
This file was deleted.

changelog.d/836.breaking.md

-1
This file was deleted.

changelog.d/851.feature.md

-3
This file was deleted.

changelog.d/862.enhancement.md

-1
This file was deleted.

0 commit comments

Comments
 (0)