Skip to content

Commit

Permalink
feat: Update VRL library
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebay committed Sep 12, 2023
1 parent d4b35bb commit 6ace1e6
Show file tree
Hide file tree
Showing 15 changed files with 31 additions and 32 deletions.
1 change: 0 additions & 1 deletion .github/workflows/integration-test-mezmo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: git config --global url."https://${GITHUB_TOKEN}@github.com".insteadOf ssh://git@github.com
- run: make ci-sweep
- run: make test-integration-${{ matrix.test }}
env:
SPLUNK_VERSION: ${{ matrix.env.SPLUNK_VERSION }}
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -225,13 +225,13 @@ number_prefix = { version = "0.4.0", default-features = false, features = ["std"
tui = { version = "0.19.0", optional = true, default-features = false, features = ["crossterm"] }

# Datadog Pipelines
datadog-filter = { package = "datadog-filter", git = "ssh://git@github.com/answerbook/vrl.git", rev = "next" }
datadog-search-syntax = { package = "datadog-search-syntax", git = "ssh://git@github.com/answerbook/vrl.git", rev = "next" }
datadog-filter = { package = "datadog-filter", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1" }
datadog-search-syntax = { package = "datadog-search-syntax", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1" }
hex = { version = "0.4.3", default-features = false, optional = true }
sha2 = { version = "0.10.6", default-features = false, optional = true }

# VRL Lang
vrl = { package = "vrl", git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", features = ["cli"] }
vrl = { package = "vrl", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", features = ["cli"] }

# External libs
arc-swap = { version = "1.6", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion lib/codecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ snap = "1"
syslog_loose = { version = "0.18", default-features = false, optional = true }
tokio-util = { version = "0.7", default-features = false, features = ["codec"] }
tracing = { version = "0.1", default-features = false }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false, features = ["value"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false, features = ["value"] }
vector-common = { path = "../vector-common", default-features = false }
vector-config = { path = "../vector-config", default-features = false }
vector-config-common = { path = "../vector-config-common", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion lib/enrichment/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ arc-swap = { version = "1.6.0", default-features = false }
dyn-clone = { version = "1.0.11", default-features = false }
chrono = { version = "0.4.19", default-features = false }
vector-common = { path = "../vector-common", default-features = false, features = [ "btreemap", "conversion", "serde" ] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false, features = ["diagnostic"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false, features = ["diagnostic"] }
2 changes: 1 addition & 1 deletion lib/opentelemetry-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ ordered-float = { version = "3.7.0", default-features = false }
prost = { version = "0.11", default-features = false, features = ["std"] }
tonic = { version = "0.9", default-features = false, features = ["codegen", "gzip", "prost", "tls", "tls-roots", "transport"] }
vector-core = { path = "../vector-core", default-features = false }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next" }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1" }
2 changes: 1 addition & 1 deletion lib/prometheus-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ prost = "0.11"
prost-types = "0.11"
snafu = { version = "0.7" }
vector-common = { path = "../vector-common", features = ["btreemap"] }
value = { package = "value", git = "ssh://git@github.com/answerbook/vrl.git", rev = "next" }
value = { package = "value", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1" }

[build-dependencies]
prost-build = "0.11"
2 changes: 1 addition & 1 deletion lib/vector-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ snafu = { version = "0.7", optional = true }
stream-cancel = { version = "0.8.1", default-features = false }
tokio = { version = "1.28.1", default-features = false, features = ["macros", "time"] }
tracing = { version = "0.1.34", default-features = false }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next" }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1" }
vector-config = { path = "../vector-config" }
vector-config-common = { path = "../vector-config-common" }
vector-config-macros = { path = "../vector-config-macros" }
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ snafu = { version = "0.7.4", default-features = false }
toml = { version = "0.7.3", default-features = false }
tracing = { version = "0.1.34", default-features = false }
url = { version = "2.3.1", default-features = false, features = ["serde"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false, features = ["compiler"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false, features = ["compiler"] }
vector-config-common = { path = "../vector-config-common" }
vector-config-macros = { path = "../vector-config-macros" }

Expand Down
4 changes: 2 additions & 2 deletions lib/vector-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ vector-common = { path = "../vector-common" }
vector-config = { path = "../vector-config" }
vector-config-common = { path = "../vector-config-common" }
vector-config-macros = { path = "../vector-config-macros" }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next" }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1" }
opentelemetry-rs = { version = "1", branch = "main" , git = "ssh://git@github.com/answerbook/opentelemetry-rs.git" }

[target.'cfg(target_os = "macos")'.dependencies]
Expand Down Expand Up @@ -100,7 +100,7 @@ rand = "0.8.5"
rand_distr = "0.4.3"
tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt", "ansi", "registry"] }
vector-common = { path = "../vector-common", default-features = false, features = ["test"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false, features = ["value", "arbitrary", "lua"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false, features = ["value", "arbitrary", "lua"] }

[features]
api = ["dep:async-graphql"]
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-lookup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ license = "MPL-2.0"
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"] }
vector-config = { path = "../vector-config" }
vector-config-macros = { path = "../vector-config-macros" }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false }
2 changes: 1 addition & 1 deletion lib/vector-vrl/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "MPL-2.0"
[dependencies]
clap = { version = "4.1.14", features = ["derive"] }
vector-vrl-functions = { path = "../functions" }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false, features = ["stdlib", "cli"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false, features = ["stdlib", "cli"] }
2 changes: 1 addition & 1 deletion lib/vector-vrl/functions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ publish = false
license = "MPL-2.0"

[dependencies]
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false, features = ["compiler", "path", "diagnostic"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false, features = ["compiler", "path", "diagnostic"] }
2 changes: 1 addition & 1 deletion lib/vector-vrl/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false

[dependencies]
enrichment = { path = "../../enrichment" }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", features = ["test_framework"] }
vrl = { git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", features = ["test_framework"] }
vector-vrl-functions = { path = "../../vector-vrl/functions" }

ansi_term = "0.12"
Expand Down
6 changes: 3 additions & 3 deletions lib/vector-vrl/web-playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ crate-type = ["cdylib"]

[dependencies]
wasm-bindgen = "0.2"
vrl = { package = "vrl", git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false}
value = { package = "value", git = "ssh://git@github.com/answerbook/vrl.git", rev = "next", default-features = false}
stdlib = { package = "vrl-stdlib", git = "ssh://git@github.com/answerbook/vrl.git", rev = "next"}
vrl = { package = "vrl", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false}
value = { package = "value", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1", default-features = false}
stdlib = { package = "vrl-stdlib", git = "ssh://git@github.com/answerbook/vrl.git", rev = "v0.5.1"}
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.5"
gloo-utils = { version = "0.1", features = ["serde"] }
Expand Down

0 comments on commit 6ace1e6

Please sign in to comment.