-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [0.3.2](v0.3.1...v0.3.2) (2023-06-30) ### Bug Fixes * Avoid panicking on regex error in parse_grok() function [9a96163](9a96163) - GitHub [LOG-17425](https://logdna.atlassian.net/browse/LOG-17425)
- Loading branch information
Showing
17 changed files
with
66 additions
and
59 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrl" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
@@ -52,11 +52,11 @@ bytes = "1.4.0" | |
compiler = { package = "vrl-compiler", path = "lib/compiler", default-features = false } | ||
diagnostic = { package = "vrl-diagnostic", path = "lib/diagnostic" } | ||
indoc = "2" | ||
lookup = { path = "lib/lookup" , version = "0.3.1" } | ||
lookup = { path = "lib/lookup" , version = "0.3.2" } | ||
ordered-float = "3" | ||
parser = { package = "vrl-parser", path = "lib/parser" } | ||
value = { path = "lib/value", default-features = false , version = "0.3.1" } | ||
vrl-core = { path = "lib/core" , version = "0.3.1" } | ||
value = { path = "lib/value", default-features = false , version = "0.3.2" } | ||
vrl-core = { path = "lib/core" , version = "0.3.2" } | ||
|
||
[dev-dependencies] | ||
criterion = "0.4" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrl-cli" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
@@ -20,11 +20,11 @@ regex = { version = "1", default-features = false, optional = true, features = [ | |
rustyline = { version = "11", default-features = false, optional = true } | ||
serde_json = "1" | ||
thiserror = "1" | ||
vrl = { path = "../..", default-features = false , version = "0.3.1" } | ||
vrl = { path = "../..", default-features = false , version = "0.3.2" } | ||
core = { package = "vrl-core", path = "../core", default-features = false } | ||
value = { path = "../value", default-features = false, features = [] , version = "0.3.1" } | ||
value = { path = "../value", default-features = false, features = [] , version = "0.3.2" } | ||
webbrowser = { version = "0.8", default-features = false, optional = true } | ||
lookup = { package = "lookup", path = "../lookup" , version = "0.3.1" } | ||
lookup = { package = "lookup", path = "../lookup" , version = "0.3.2" } | ||
|
||
[dependencies.stdlib] | ||
package = "vrl-stdlib" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrl-compiler" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
@@ -31,8 +31,8 @@ test = [] | |
core = { package = "vrl-core", path = "../core", default-features = false } | ||
diagnostic = { package = "vrl-diagnostic", path = "../diagnostic" } | ||
parser = { package = "vrl-parser", path = "../parser" } | ||
lookup = { path = "../lookup" , version = "0.3.1" } | ||
value = { path = "../value" , version = "0.3.1" } | ||
lookup = { path = "../lookup" , version = "0.3.2" } | ||
value = { path = "../value" , version = "0.3.2" } | ||
getrandom = { version = "0.2", features = ["js"] } | ||
|
||
bytes = { version = "1.4.0", default-features = false } | ||
|
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "vrl-core" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
lookup = { path = "../lookup" , version = "0.3.1" } | ||
value = { path = "../value", features = ["json"] , version = "0.3.1" } | ||
lookup = { path = "../lookup" , version = "0.3.2" } | ||
value = { path = "../value", features = ["json"] , version = "0.3.2" } | ||
derivative = "2.1.3" | ||
diagnostic = { package = "vrl-diagnostic", path = "../diagnostic" } | ||
chrono-tz = { version = "0.8.1", default-features = false } | ||
|
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "datadog-filter" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
license = "MPL-2.0" | ||
|
||
[dependencies] | ||
datadog-search-syntax = { path = "../search-syntax" , version = "0.3.1" } | ||
datadog-search-syntax = { path = "../search-syntax" , version = "0.3.2" } | ||
|
||
regex = "1" | ||
dyn-clone = { version = "1.0.11", default-features = false } |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "datadog-grok" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" # LALRPOP preprocessing | ||
|
@@ -22,9 +22,9 @@ thiserror = { version = "1", default-features = false } | |
tracing = { version = "0.1.34", default-features = false } | ||
|
||
# Internal | ||
lookup = { path = "../../lookup" , version = "0.3.1" } | ||
value = {path = "../../value", features = ["json", "test"], version = "0.3.1" } | ||
vrl-compiler = { path = "../../compiler" , version = "0.3.1" } | ||
lookup = { path = "../../lookup" , version = "0.3.2" } | ||
value = {path = "../../value", features = ["json", "test"], version = "0.3.2" } | ||
vrl-compiler = { path = "../../compiler" , version = "0.3.2" } | ||
|
||
[dev-dependencies] | ||
vrl-compiler = { path = "../../compiler" } | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "datadog-search-syntax" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrl-diagnostic" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lookup" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "vrl-parser" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
build = "build.rs" # LALRPOP preprocessing | ||
|
||
[dependencies] | ||
diagnostic = { package = "vrl-diagnostic", path = "../diagnostic" } | ||
lookup = { path = "../lookup" , version = "0.3.1" } | ||
lookup = { path = "../lookup" , version = "0.3.2" } | ||
arbitrary = { version = "1", optional = true, features = ["derive"] } | ||
|
||
lalrpop-util = "0.19" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "proptests" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Stephen Wakely <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -12,4 +12,4 @@ proptest = "1.1" | |
ordered-float = "3" | ||
parser = { package = "vrl-parser", path = "../parser/" } | ||
diagnostic = { package = "vrl-diagnostic", path = "../diagnostic/" } | ||
lookup = { path = "../lookup/" , version = "0.3.1" } | ||
lookup = { path = "../lookup/" , version = "0.3.2" } |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
[package] | ||
name = "vrl-stdlib" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
license = "MPL-2.0" | ||
|
||
[dependencies] | ||
vrl = { path = "../.." , version = "0.3.1" } | ||
vrl = { path = "../.." , version = "0.3.2" } | ||
compiler = { package = "vrl-compiler", path = "../compiler", default-features = false } | ||
value = { path = "../value", default-features = false , version = "0.3.1" } | ||
value = { path = "../value", default-features = false , version = "0.3.2" } | ||
|
||
datadog-filter = { path = "../datadog/filter", optional = true , version = "0.3.1" } | ||
datadog-search-syntax = { path = "../datadog/search-syntax", optional = true , version = "0.3.1" } | ||
datadog-filter = { path = "../datadog/filter", optional = true , version = "0.3.2" } | ||
datadog-search-syntax = { path = "../datadog/search-syntax", optional = true , version = "0.3.2" } | ||
lookup_lib = {package = "lookup", path = "../lookup", optional = true } | ||
vrl-core = { path = "../core" , version = "0.3.1" } | ||
vrl-diagnostic = { path = "../diagnostic" , version = "0.3.1" } | ||
vrl-core = { path = "../core" , version = "0.3.2" } | ||
vrl-diagnostic = { path = "../diagnostic" , version = "0.3.2" } | ||
|
||
base16 = { version = "0.2", optional = true } | ||
base64 = { version = "0.21", optional = true } | ||
|
@@ -69,7 +69,7 @@ ofb = { version = "0.6.1", optional = true } | |
dns-lookup = { version = "1.0.8", optional = true } | ||
hostname = { version = "0.3", optional = true } | ||
grok = { version = "2", optional = true } | ||
datadog-grok = { path = "../datadog/grok", optional = true , version = "0.3.1" } | ||
datadog-grok = { path = "../datadog/grok", optional = true , version = "0.3.2" } | ||
|
||
[dev-dependencies] | ||
anyhow = "1" | ||
|
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "vrl-tests" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
lookup = { path = "../lookup" , version = "0.3.1" } | ||
lookup = { path = "../lookup" , version = "0.3.2" } | ||
stdlib = { package = "vrl-stdlib", path = "../stdlib" } | ||
vrl = { path = "../.." , version = "0.3.1" } | ||
value = { path = "../value" , version = "0.3.1" } | ||
vrl = { path = "../.." , version = "0.3.2" } | ||
value = { path = "../value" , version = "0.3.2" } | ||
|
||
ansi_term = "0.12" | ||
chrono = "0.4" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "value" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -10,7 +10,7 @@ publish = false | |
[dependencies] | ||
bytes = { version = "1.4.0", default-features = false, features = ["serde"] } | ||
chrono = { version = "0.4.19", default-features = false, features = ["serde", "std"] } | ||
lookup = { path = "../lookup", default-features = false , version = "0.3.1" } | ||
lookup = { path = "../lookup", default-features = false , version = "0.3.2" } | ||
ordered-float = { version = "3.6.0", default-features = false } | ||
regex = { version = "1.7.2", default-features = false, features = ["std", "perf"]} | ||
snafu = { version = "0.7.4", default-features = false } | ||
|
Oops, something went wrong.