|
4 | 4 |
|
5 | 5 | <!-- changelog start -->
|
6 | 6 |
|
| 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 | + |
7 | 29 | ## [0.15.0 (2024-05-01)]
|
8 | 30 |
|
9 | 31 |
|
|
82 | 104 | ### New Features
|
83 | 105 |
|
84 | 106 | - 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, |
86 | 108 | but it does aim to eliminate false positives. For example, shadowed variables are not reported as unused.
|
87 | 109 | (https://github.com/vectordotdev/vrl/pull/622)
|
88 | 110 | - Add a `replace_with` function that is similar to `replace` but takes a closure instead of a
|
|
100 | 122 |
|
101 | 123 | ## `0.9.0` (2023-12-12)
|
102 | 124 | * `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` |
104 | 126 | * support timestamp comparison using operators <, <=, >, >=
|
105 | 127 |
|
106 | 128 | ## `0.8.0` (2023-10-31)
|
|
0 commit comments