diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c38756b16..76bc619df1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.13.0-rc.29] ### New features * add experimental microsoft azure monitor log ingest api connector diff --git a/Cargo.lock b/Cargo.lock index 476aff5529..f3a723ce51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7141,7 +7141,7 @@ dependencies = [ [[package]] name = "tremor-api" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "env_logger", "halfbrown", @@ -7163,7 +7163,7 @@ dependencies = [ [[package]] name = "tremor-archive" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "log", "serde", @@ -7180,7 +7180,7 @@ dependencies = [ [[package]] name = "tremor-cli" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "clap", @@ -7227,7 +7227,7 @@ dependencies = [ [[package]] name = "tremor-codec" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "apache-avro", "async-recursion", @@ -7263,7 +7263,7 @@ dependencies = [ [[package]] name = "tremor-common" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "base64 0.22.1", "beef", @@ -7282,7 +7282,7 @@ dependencies = [ [[package]] name = "tremor-config" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "serde", "tremor-value", @@ -7290,7 +7290,7 @@ dependencies = [ [[package]] name = "tremor-connectors" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "async-compression", @@ -7368,7 +7368,7 @@ dependencies = [ [[package]] name = "tremor-connectors-aws" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "async-channel 2.3.0", @@ -7398,7 +7398,7 @@ dependencies = [ [[package]] name = "tremor-connectors-azure" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "async-trait", @@ -7424,7 +7424,7 @@ dependencies = [ [[package]] name = "tremor-connectors-gcp" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "async-channel 1.9.0", @@ -7465,7 +7465,7 @@ dependencies = [ [[package]] name = "tremor-connectors-object-storage" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "async-trait", @@ -7479,7 +7479,7 @@ dependencies = [ [[package]] name = "tremor-connectors-otel" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "async-channel 1.9.0", @@ -7505,7 +7505,7 @@ dependencies = [ [[package]] name = "tremor-connectors-test-helpers" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "lazy_static", "log", @@ -7515,7 +7515,7 @@ dependencies = [ [[package]] name = "tremor-influx" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "criterion", "lexical", @@ -7527,7 +7527,7 @@ dependencies = [ [[package]] name = "tremor-interceptor" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "brotli", @@ -7576,7 +7576,7 @@ dependencies = [ [[package]] name = "tremor-pipeline" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "beef", "criterion", @@ -7610,7 +7610,7 @@ dependencies = [ [[package]] name = "tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "async-trait", @@ -7654,7 +7654,7 @@ dependencies = [ [[package]] name = "tremor-script" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "atty", "beef", @@ -7705,7 +7705,7 @@ dependencies = [ [[package]] name = "tremor-system" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "anyhow", "either", @@ -7722,7 +7722,7 @@ dependencies = [ [[package]] name = "tremor-value" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" dependencies = [ "base64 0.22.1", "beef", diff --git a/Cargo.toml b/Cargo.toml index 14cad28452..d145165345 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" name = "tremor-runtime" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" rust-version = "1.62" [workspace] @@ -45,21 +45,21 @@ lto = "thin" opt-level = 3 [dependencies] -tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.28" } -tremor-common = { path = "tremor-common", version = "0.13.0-rc.28" } -tremor-config = { path = "tremor-config", version = "0.13.0-rc.28" } -tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.28", default-features = false } -tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.28", optional = true } -tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.28", optional = true } -tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.28", optional = true } -tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.28", optional = true } -tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.28" } -tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.28" } -tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.28" } -tremor-script = { path = "tremor-script", version = "0.13.0-rc.28" } -tremor-system = { path = "tremor-system", version = "0.13.0-rc.28" } -tremor-value = { path = "tremor-value", version = "0.13.0-rc.28" } -tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.28" } +tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.29" } +tremor-common = { path = "tremor-common", version = "0.13.0-rc.29" } +tremor-config = { path = "tremor-config", version = "0.13.0-rc.29" } +tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.29", default-features = false } +tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.29", optional = true } +tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.29", optional = true } +tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.29", optional = true } +tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.29", optional = true } +tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.29" } +tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.29" } +tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.29" } +tremor-script = { path = "tremor-script", version = "0.13.0-rc.29" } +tremor-system = { path = "tremor-system", version = "0.13.0-rc.29" } +tremor-value = { path = "tremor-value", version = "0.13.0-rc.29" } +tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.29" } tokio = { version = "1.38", features = ["full"] } tokio-stream = "0.1" diff --git a/Dockerfile.learn b/Dockerfile.learn index 8230d00944..e8c48bed10 100644 --- a/Dockerfile.learn +++ b/Dockerfile.learn @@ -2,7 +2,7 @@ FROM rust:1.78-bullseye as builder RUN cargo install --features=ssl websocat -FROM tremorproject/tremor:0.13.0-rc.28 +FROM tremorproject/tremor:0.13.0-rc.29 COPY --from=builder /usr/local/cargo/bin/websocat /usr/local/bin/websocat diff --git a/tremor-api/Cargo.toml b/tremor-api/Cargo.toml index 205d6ce25c..040c434181 100644 --- a/tremor-api/Cargo.toml +++ b/tremor-api/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor Api Callbacks" edition = "2021" license = "Apache-2.0" name = "tremor-api" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" homepage = "https://www.tremor.rs" [dependencies] @@ -17,12 +17,12 @@ simd-json = "0.13" tokio = { version = "1.38", features = ["full"] } # we don't need sessions or cookies or shitty logging middleware tide = { version = "0.16", default-features = false, features = ["h1-server"] } -tremor-pipeline = { version = "0.13.0-rc.28", path = "../tremor-pipeline" } -tremor-runtime = { version = "0.13.0-rc.28", path = "../" } -tremor-script = { version = "0.13.0-rc.28", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.28", path = "../tremor-value" } -tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" } -tremor-system = { version = "0.13.0-rc.28", path = "../tremor-system" } +tremor-pipeline = { version = "0.13.0-rc.29", path = "../tremor-pipeline" } +tremor-runtime = { version = "0.13.0-rc.29", path = "../" } +tremor-script = { version = "0.13.0-rc.29", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" } +tremor-system = { version = "0.13.0-rc.29", path = "../tremor-system" } [dev-dependencies] surf = { version = "2.3", default-features = false, features = [ diff --git a/tremor-archive/Cargo.toml b/tremor-archive/Cargo.toml index 3e73346e2d..ada55825aa 100644 --- a/tremor-archive/Cargo.toml +++ b/tremor-archive/Cargo.toml @@ -8,11 +8,11 @@ homepage = "https://www.tremor.rs" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" [dependencies] -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.28" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.29" } tokio = { version = "1", default-features = false, features = [] } tokio-tar = "0.3" diff --git a/tremor-cli/Cargo.toml b/tremor-cli/Cargo.toml index 084f7274d3..0e048239e5 100644 --- a/tremor-cli/Cargo.toml +++ b/tremor-cli/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor CLI Tool" edition = "2021" license = "Apache-2.0" name = "tremor-cli" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" homepage = "https://www.tremor.rs" [package.metadata.docs.rs] @@ -46,16 +46,16 @@ surf = { version = "=2.3.2", default-features = false, features = [ "h1-client-rustls", "middleware-logger", ] } -tremor-api = { version = "0.13.0-rc.28", path = "../tremor-api" } -tremor-codec = { version = "0.13.0-rc.28", path = "../tremor-codec" } -tremor-interceptor = { version = "0.13.0-rc.28", path = "../tremor-interceptor" } -tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" } -tremor-pipeline = { version = "0.13.0-rc.28", path = "../tremor-pipeline" } -tremor-runtime = { version = "0.13.0-rc.28", path = "../" } -tremor-script = { version = "0.13.0-rc.28", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.28", path = "../tremor-value" } -tremor-system = { version = "0.13.0-rc.28", path = "../tremor-system" } -tremor-archive = { version = "0.13.0-rc.28", path = "../tremor-archive" } +tremor-api = { version = "0.13.0-rc.29", path = "../tremor-api" } +tremor-codec = { version = "0.13.0-rc.29", path = "../tremor-codec" } +tremor-interceptor = { version = "0.13.0-rc.29", path = "../tremor-interceptor" } +tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" } +tremor-pipeline = { version = "0.13.0-rc.29", path = "../tremor-pipeline" } +tremor-runtime = { version = "0.13.0-rc.29", path = "../" } +tremor-script = { version = "0.13.0-rc.29", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" } +tremor-system = { version = "0.13.0-rc.29", path = "../tremor-system" } +tremor-archive = { version = "0.13.0-rc.29", path = "../tremor-archive" } url = "2" error-chain = "0.12" globwalk = "0.9" diff --git a/tremor-codec/Cargo.toml b/tremor-codec/Cargo.toml index 03e548269c..3b491b23a7 100644 --- a/tremor-codec/Cargo.toml +++ b/tremor-codec/Cargo.toml @@ -7,13 +7,13 @@ documentation = "https://docs.rs/tremor-script" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" [dependencies] -tremor-value = { version = "0.13.0-rc.28", path = "../tremor-value" } -tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" } -tremor-config = { version = "0.13.0-rc.28", path = "../tremor-config" } +tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" } +tremor-config = { version = "0.13.0-rc.29", path = "../tremor-config" } tokio = { version = "1.38", features = ["full"] } async-trait = "0.1" error-chain = "0.12" @@ -43,7 +43,7 @@ reqwest = { version = "0.12", default-features = false, features = [ "rustls-tls-native-roots", ] } csv = "1.2" -tremor-influx = { version = "0.13.0-rc.28", path = "../tremor-influx" } +tremor-influx = { version = "0.13.0-rc.29", path = "../tremor-influx" } simd-json = "0.13" apache-avro = { version = "0.16", features = [ "snappy", diff --git a/tremor-common/Cargo.toml b/tremor-common/Cargo.toml index 85782f60a2..0793f471c4 100644 --- a/tremor-common/Cargo.toml +++ b/tremor-common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "tremor-common" readme = "README.md" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" [dependencies] tokio = { version = "1", default-features = false, features = ["fs"] } diff --git a/tremor-config/Cargo.toml b/tremor-config/Cargo.toml index f9d6ba9a74..c63c87ab52 100644 --- a/tremor-config/Cargo.toml +++ b/tremor-config/Cargo.toml @@ -7,10 +7,10 @@ documentation = "https://docs.rs/tremor-script" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } serde = "1" diff --git a/tremor-connectors-aws/Cargo.toml b/tremor-connectors-aws/Cargo.toml index ced6033397..79223321bb 100644 --- a/tremor-connectors-aws/Cargo.toml +++ b/tremor-connectors-aws/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-aws" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,12 +9,12 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.28", default-features = false } -tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.28" } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.28" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.28" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.29", default-features = false } +tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.29" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.29" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.29" } async-trait = { version = "0.1", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } @@ -41,7 +41,7 @@ rand = { version = "0.8", default-features = false } testcontainers = { version = "0.17", default-features = false } serial_test = { version = "3.0", default-features = false } bytes = { version = "1.1", default-features = true } -tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.28" } +tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.29" } [features] integration-harness = [] diff --git a/tremor-connectors-azure/Cargo.toml b/tremor-connectors-azure/Cargo.toml index c04d77fa86..8d68b6458c 100644 --- a/tremor-connectors-azure/Cargo.toml +++ b/tremor-connectors-azure/Cargo.toml @@ -5,17 +5,17 @@ test = [] [package] name = "tremor-connectors-azure" edition = "2021" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" authors = ["The Tremor Team"] homepage = "https://www.tremor.rs" license = "Apache-2.0" [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.28", default-features = false } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.28" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.28" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.29", default-features = false } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.29" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.29" } azure_core = { version = "0.20.0", default-features = false, features = [ "enable_reqwest", @@ -29,7 +29,7 @@ url = "2.5.2" reqwest = { version = "0.12.4", default-features = false, features = ["json"] } tokio = "1.37.0" log = "0.4.21" -tremor-script = { version = "0.13.0-rc.25", path = "../tremor-script" } +tremor-script = { version = "0.13.0-rc.29", path = "../tremor-script" } bytes = "1.6.0" futures = { version = "0.3.30", default-features = false, features = [ "alloc", diff --git a/tremor-connectors-gcp/Cargo.toml b/tremor-connectors-gcp/Cargo.toml index 369d344a7f..340243bdde 100644 --- a/tremor-connectors-gcp/Cargo.toml +++ b/tremor-connectors-gcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-gcp" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,13 +9,13 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.28", default-features = false } -tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.28" } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.28" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.28" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.28" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.29", default-features = false } +tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.29" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.29" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.29" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.29" } anyhow = { version = "1", default-features = true } async-trait = { version = "0.1", default-features = true } @@ -70,10 +70,10 @@ tokio = { version = "1.38", default-features = true } value-trait = { version = "0.8" } test-case = { version = "3", default-features = true } anyhow = { version = "1" } -tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.28" } +tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.29" } tempfile = { version = "3", default-features = true } env_logger = { version = "0.11", default-features = true } -tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.28" } +tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.29" } [features] integration-harness = [] diff --git a/tremor-connectors-object-storage/Cargo.toml b/tremor-connectors-object-storage/Cargo.toml index e75172c5a8..7e29050e04 100644 --- a/tremor-connectors-object-storage/Cargo.toml +++ b/tremor-connectors-object-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-object-storage" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,9 +9,9 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.28", default-features = false } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.28" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.29", default-features = false } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.29" } serde = { version = "1.0", features = ["derive"] } thiserror = { version = "1", default-features = true } anyhow = { version = "1", default-features = true } diff --git a/tremor-connectors-otel/Cargo.toml b/tremor-connectors-otel/Cargo.toml index e0e7f46d17..7a7db796bf 100644 --- a/tremor-connectors-otel/Cargo.toml +++ b/tremor-connectors-otel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-otel" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,12 +9,12 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.28", default-features = false } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.28" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.28" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.28" } +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.29", default-features = false } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.29" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.29" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.29" } anyhow = { version = "1", default-features = true } async-trait = { version = "0.1", default-features = true } diff --git a/tremor-connectors-test-helpers/Cargo.toml b/tremor-connectors-test-helpers/Cargo.toml index 020a31e589..a7f836cdbb 100644 --- a/tremor-connectors-test-helpers/Cargo.toml +++ b/tremor-connectors-test-helpers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors-test-helpers" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" diff --git a/tremor-connectors/Cargo.toml b/tremor-connectors/Cargo.toml index f76010abfc..dafb4f6565 100644 --- a/tremor-connectors/Cargo.toml +++ b/tremor-connectors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-connectors" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,14 +9,14 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.28" } -tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.28" } -tremor-pipeline = { path = "../tremor-pipeline", version = "0.13.0-rc.28" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.28" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } -tremor-interceptor = { path = "../tremor-interceptor", version = "0.13.0-rc.28" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.28" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.29" } +tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.29" } +tremor-pipeline = { path = "../tremor-pipeline", version = "0.13.0-rc.29" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.29" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } +tremor-interceptor = { path = "../tremor-interceptor", version = "0.13.0-rc.29" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.29" } tokio = { version = "1.38", default-features = false } beef = { version = "0.5", default-features = false } value-trait = { version = "0.8", default-features = false } @@ -163,7 +163,7 @@ http-types = "2.0" bytes = "1.0" tempfile = { version = "3.8", default-features = false } env_logger = "0.11" -tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.28" } +tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.29" } tide = { version = "0.16", default-features = false } # TODO remove tide from TestHttpServer tokio = { version = "1.38", default-features = false, features = [ "full", diff --git a/tremor-influx/Cargo.toml b/tremor-influx/Cargo.toml index 647a36b009..51f5651a51 100644 --- a/tremor-influx/Cargo.toml +++ b/tremor-influx/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" name = "tremor-influx" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/tremor-interceptor/Cargo.toml b/tremor-interceptor/Cargo.toml index e36622050f..74a141386b 100644 --- a/tremor-interceptor/Cargo.toml +++ b/tremor-interceptor/Cargo.toml @@ -7,15 +7,15 @@ documentation = "https://docs.tremor.rs" homepage = "https://www.tremor.rs" license = "Apache-2.0" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" rust-version = "1.62" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.28" } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.29" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" } log = "0.4" serde = { version = "1", features = ["derive"] } byteorder = "1" diff --git a/tremor-pipeline/Cargo.toml b/tremor-pipeline/Cargo.toml index 4a7ec3b4b2..fbf7780ac5 100644 --- a/tremor-pipeline/Cargo.toml +++ b/tremor-pipeline/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor Pipeline DAG Runtime" edition = "2021" license = "Apache-2.0" name = "tremor-pipeline" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" [dependencies] tokio = "1" @@ -25,11 +25,11 @@ simd-json = { version = "0.13", features = ["known-key"] } simd-json-derive = "0.13" value-trait = "0.8" sled = "0.34" -tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" } -tremor-config = { version = "0.13.0-rc.28", path = "../tremor-config" } -tremor-script = { version = "0.13.0-rc.28", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.28", path = "../tremor-value" } -tremor-system = { version = "0.13.0-rc.28", path = "../tremor-system" } +tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" } +tremor-config = { version = "0.13.0-rc.29", path = "../tremor-config" } +tremor-script = { version = "0.13.0-rc.29", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" } +tremor-system = { version = "0.13.0-rc.29", path = "../tremor-system" } url = "2" fenster = { version = "0.1.1" } diff --git a/tremor-script/Cargo.toml b/tremor-script/Cargo.toml index 56bf333785..07def74427 100644 --- a/tremor-script/Cargo.toml +++ b/tremor-script/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "tremor-script" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -51,10 +51,10 @@ value-trait = "0.8" sketches-ddsketch = "0.3" strip-ansi-escapes = "0.2" termcolor = "1.4" -tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" } -tremor-influx = { version = "0.13.0-rc.28", path = "../tremor-influx" } -tremor-value = { version = "0.13.0-rc.28", path = "../tremor-value" } -tremor-codec = { version = "0.13.0-rc.28", path = "../tremor-codec" } +tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" } +tremor-influx = { version = "0.13.0-rc.29", path = "../tremor-influx" } +tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" } +tremor-codec = { version = "0.13.0-rc.29", path = "../tremor-codec" } tremor-kv = "0.6" unicode-xid = "0.2" url = "2" diff --git a/tremor-system/Cargo.toml b/tremor-system/Cargo.toml index d6a9d496f5..f69ab6abda 100644 --- a/tremor-system/Cargo.toml +++ b/tremor-system/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tremor-system" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" edition = "2021" license = "Apache-2.0" homepage = "https://www.tremor.rs" @@ -9,8 +9,8 @@ authors = ["The Tremor Team"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.28" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.29" } tokio = { version = "1.38", default-features = false } anyhow = { version = "1.0", default-features = true } @@ -22,4 +22,4 @@ simd-json = { version = "0.13", default-features = false } either = { version = "1.12", default-features = false } [dev-dependencies] -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.28" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" } diff --git a/tremor-value/Cargo.toml b/tremor-value/Cargo.toml index 095dbe6220..26adfc8307 100644 --- a/tremor-value/Cargo.toml +++ b/tremor-value/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" name = "tremor-value" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.28" +version = "0.13.0-rc.29" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,7 +19,7 @@ serde = "1.0" simd-json = "0.13" simd-json-derive = "0.13" value-trait = { version = "0.8", features = ["custom-types"] } -tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" } +tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" } [dev-dependencies] float-cmp = "0.9"