Skip to content

Commit

Permalink
chore(release): 0.4.1 [skip ci]
Browse files Browse the repository at this point in the history
## [0.4.1](v0.4.0...v0.4.1) (2023-07-26)

### Bug Fixes

* Invalid return types for mezmo index funcs (#29) [d0d84f5](d0d84f5) - GitHub [LOG-17641](https://logdna.atlassian.net/browse/LOG-17641)
  • Loading branch information
logdnabot committed Jul 26, 2023
1 parent d0d84f5 commit 6da0ea0
Show file tree
Hide file tree
Showing 17 changed files with 66 additions and 59 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.4.1](https://github.com/answerbook/vrl/compare/v0.4.0...v0.4.1) (2023-07-26)


### Bug Fixes

* Invalid return types for mezmo index funcs (#29) [d0d84f5](https://github.com/answerbook/vrl/commit/d0d84f51482a8d64acbbd019b5f340b14caa4e63) - GitHub [LOG-17641](https://logdna.atlassian.net/browse/LOG-17641)

# [0.4.0](https://github.com/answerbook/vrl/compare/v0.3.3...v0.4.0) (2023-07-26)


Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down Expand Up @@ -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.4.0" }
lookup = { path = "lib/lookup" , version = "0.4.1" }
ordered-float = "3"
parser = { package = "vrl-parser", path = "lib/parser" }
value = { path = "lib/value", default-features = false , version = "0.4.0" }
vrl-core = { path = "lib/core" , version = "0.4.0" }
value = { path = "lib/value", default-features = false , version = "0.4.1" }
vrl-core = { path = "lib/core" , version = "0.4.1" }

[dev-dependencies]
criterion = "0.4"
Expand Down
8 changes: 4 additions & 4 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl-cli"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand All @@ -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.4.0" }
vrl = { path = "../..", default-features = false , version = "0.4.1" }
core = { package = "vrl-core", path = "../core", default-features = false }
value = { path = "../value", default-features = false, features = [] , version = "0.4.0" }
value = { path = "../value", default-features = false, features = [] , version = "0.4.1" }
webbrowser = { version = "0.8", default-features = false, optional = true }
lookup = { package = "lookup", path = "../lookup" , version = "0.4.0" }
lookup = { package = "lookup", path = "../lookup" , version = "0.4.1" }

[dependencies.stdlib]
package = "vrl-stdlib"
Expand Down
6 changes: 3 additions & 3 deletions lib/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl-compiler"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down Expand Up @@ -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.4.0" }
value = { path = "../value" , version = "0.4.0" }
lookup = { path = "../lookup" , version = "0.4.1" }
value = { path = "../value" , version = "0.4.1" }
getrandom = { version = "0.2", features = ["js"] }

bytes = { version = "1.4.0", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions lib/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "vrl-core"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false

[dependencies]
lookup = { path = "../lookup" , version = "0.4.0" }
value = { path = "../value", features = ["json"] , version = "0.4.0" }
lookup = { path = "../lookup" , version = "0.4.1" }
value = { path = "../value", features = ["json"] , version = "0.4.1" }
derivative = "2.1.3"
diagnostic = { package = "vrl-diagnostic", path = "../diagnostic" }
chrono-tz = { version = "0.8.1", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions lib/datadog/filter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "datadog-filter"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
license = "MPL-2.0"

[dependencies]
datadog-search-syntax = { path = "../search-syntax" , version = "0.4.0" }
datadog-search-syntax = { path = "../search-syntax" , version = "0.4.1" }

regex = "1"
dyn-clone = { version = "1.0.11", default-features = false }
8 changes: 4 additions & 4 deletions lib/datadog/grok/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datadog-grok"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
build = "build.rs" # LALRPOP preprocessing
Expand All @@ -22,9 +22,9 @@ thiserror = { version = "1", default-features = false }
tracing = { version = "0.1.34", default-features = false }

# Internal
lookup = { path = "../../lookup" , version = "0.4.0" }
value = {path = "../../value", features = ["json", "test"], version = "0.4.0" }
vrl-compiler = { path = "../../compiler" , version = "0.4.0" }
lookup = { path = "../../lookup" , version = "0.4.1" }
value = {path = "../../value", features = ["json", "test"], version = "0.4.1" }
vrl-compiler = { path = "../../compiler" , version = "0.4.1" }

[dev-dependencies]
vrl-compiler = { path = "../../compiler" }
Expand Down
2 changes: 1 addition & 1 deletion lib/datadog/search-syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datadog-search-syntax"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion lib/diagnostic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrl-diagnostic"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion lib/lookup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lookup"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions lib/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "vrl-parser"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
build = "build.rs" # LALRPOP preprocessing

[dependencies]
diagnostic = { package = "vrl-diagnostic", path = "../diagnostic" }
lookup = { path = "../lookup" , version = "0.4.0" }
lookup = { path = "../lookup" , version = "0.4.1" }
arbitrary = { version = "1", optional = true, features = ["derive"] }

lalrpop-util = "0.19"
Expand Down
4 changes: 2 additions & 2 deletions lib/proptests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "proptests"
version = "0.4.0"
version = "0.4.1"
authors = ["Stephen Wakely <fungus.humungus@gmail.com>"]
edition = "2021"

Expand All @@ -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.4.0" }
lookup = { path = "../lookup/" , version = "0.4.1" }
16 changes: 8 additions & 8 deletions lib/stdlib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[package]
name = "vrl-stdlib"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false
license = "MPL-2.0"

[dependencies]
vrl = { path = "../.." , version = "0.4.0" }
vrl = { path = "../.." , version = "0.4.1" }
compiler = { package = "vrl-compiler", path = "../compiler", default-features = false }
value = { path = "../value", default-features = false , version = "0.4.0" }
value = { path = "../value", default-features = false , version = "0.4.1" }

datadog-filter = { path = "../datadog/filter", optional = true , version = "0.4.0" }
datadog-search-syntax = { path = "../datadog/search-syntax", optional = true , version = "0.4.0" }
datadog-filter = { path = "../datadog/filter", optional = true , version = "0.4.1" }
datadog-search-syntax = { path = "../datadog/search-syntax", optional = true , version = "0.4.1" }
lookup_lib = {package = "lookup", path = "../lookup", optional = true }
vrl-core = { path = "../core" , version = "0.4.0" }
vrl-diagnostic = { path = "../diagnostic" , version = "0.4.0" }
vrl-core = { path = "../core" , version = "0.4.1" }
vrl-diagnostic = { path = "../diagnostic" , version = "0.4.1" }

base16 = { version = "0.2", optional = true }
base64 = { version = "0.21", optional = true }
Expand Down Expand Up @@ -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.4.0" }
datadog-grok = { path = "../datadog/grok", optional = true , version = "0.4.1" }

[dev-dependencies]
anyhow = "1"
Expand Down
8 changes: 4 additions & 4 deletions lib/tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "vrl-tests"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
publish = false

[dependencies]
lookup = { path = "../lookup" , version = "0.4.0" }
lookup = { path = "../lookup" , version = "0.4.1" }
stdlib = { package = "vrl-stdlib", path = "../stdlib" }
vrl = { path = "../.." , version = "0.4.0" }
value = { path = "../value" , version = "0.4.0" }
vrl = { path = "../.." , version = "0.4.1" }
value = { path = "../value" , version = "0.4.1" }

ansi_term = "0.12"
chrono = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions lib/value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "value"
version = "0.4.0"
version = "0.4.1"
authors = ["Vector Contributors <vector@timber.io>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -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.4.0" }
lookup = { path = "../lookup", default-features = false , version = "0.4.1" }
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 }
Expand Down
Loading

0 comments on commit 6da0ea0

Please sign in to comment.