From d565f8ead0a7c1a3129e488f55a84e9dc52f8ab5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 00:33:28 +0000 Subject: [PATCH 1/2] Update Rust crate tucana to 0.0.82 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2bd1d7c..e293fbd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,7 +57,7 @@ dependencies = [ "tonic", "tonic-health", "tracing", - "tucana 0.0.81", + "tucana 0.0.82", "uuid", ] @@ -3032,9 +3032,9 @@ dependencies = [ [[package]] name = "tucana" -version = "0.0.81" +version = "0.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "041738b90451ef20bb67484813d3bc4a58f396ce48cc0616821b609cc40fc335" +checksum = "9f2eb0829308e8695969b580f1ff4c80f0e2c5e6b6b7f49aeb751d458410e93a" dependencies = [ "pbjson", "pbjson-build", diff --git a/Cargo.toml b/Cargo.toml index 1253f14..aaf16fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ opentelemetry = { version = "0.32.0", features = ["metrics"] } tracing = { version = "0.1.41", features = ["log"] } prost = "0.14.1" tonic = "0.14.1" -tucana = { version = "0.0.81", features = ["aquila", "sagittarius_gateway"] } +tucana = { version = "0.0.82", features = ["aquila", "sagittarius_gateway"] } code0-flow = { version = "0.0.44", features = ["flow_config", "flow_health", "flow_telemetry"] } serde_json = "1.0.140" lupus = "0.0.3" From 9b994c14d166b00f4f922adc7618603b1d91a8b9 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sun, 16 Aug 2026 18:37:31 +0200 Subject: [PATCH 2/2] feat: added missing field to action flow --- src/flow/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/flow/mod.rs b/src/flow/mod.rs index 99b93b3..265ab05 100644 --- a/src/flow/mod.rs +++ b/src/flow/mod.rs @@ -42,6 +42,7 @@ pub fn to_action_flow(flow: &ValidationFlow) -> ActionFlow { output_schema: flow.output_schema.clone(), project_slug: flow.project_slug.clone(), name: flow.name.clone(), + r#type: flow.r#type.clone(), } }