Skip to content
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

chore(releasing): Prepare VRL v0.19.0 #1058

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@

<!-- changelog start -->

## [0.19.0 (2024-09-30)]


### Breaking Changes & Upgrade Guide

- The multi-line mode of the `parse_groks` VRL function is now enabled by default.
Use the `(?-m)` modifier to disable this behaviour. (https://github.com/vectordotdev/vrl/pull/1022)

### Enhancements

- The `keyvalue` grok filter is extended to match Datadog implementation. (https://github.com/vectordotdev/vrl/pull/1015)

### Fixes

- The `parse_xml` function now doesn't add an unnecessary `text` key when processing single nodes. (https://github.com/vectordotdev/vrl/pull/849)
- `parse_grok` and `parse_groks` no longer require field names containing a hyphen (e.g. `@a-b`) to be quoted.
- The function `match_datadog_query` doesn't panic if an invalid path is passed, instead it returns an error. (https://github.com/vectordotdev/vrl/pull/1031)
- The `parse_ruby_hash` parser is extended to match Datadog implementation. Previously it would parse the key in `{:key => "value"}` as `:key`, now it will parse it as `key`. (https://github.com/vectordotdev/vrl/pull/1050)


## [0.18.0 (2024-09-05)]


Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl"
version = "0.18.0"
version = "0.19.0"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
license = "MPL-2.0"
Expand Down
1 change: 0 additions & 1 deletion changelog.d/1015.enhancement.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/1022.breaking.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1025.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1031.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1050.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/849.fix.md

This file was deleted.

Loading