From 2b244348ca6f2513595c965f741e51cc66be2d05 Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Sun, 5 Apr 2026 12:45:25 +0100 Subject: [PATCH] chore: bump version to 1.6.2, update CHANGELOG --- CHANGELOG.md | 7 +++++++ wfe-buildkit/Cargo.toml | 2 +- wfe-containerd/Cargo.toml | 2 +- wfe-server/Cargo.toml | 6 +++--- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36fdce0..8be1e30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [1.6.2] - 2026-04-05 + +### Added + +- **wfe-core**: `WorkflowBuilder::add_step_typed()` for adding named, configured steps in parallel branch closures +- **wfe-core**: `WorkflowBuilder::wire_outcome()` now public for custom graph wiring + ## [1.6.1] - 2026-04-05 ### Added diff --git a/wfe-buildkit/Cargo.toml b/wfe-buildkit/Cargo.toml index 0f08355..fbfbad7 100644 --- a/wfe-buildkit/Cargo.toml +++ b/wfe-buildkit/Cargo.toml @@ -16,7 +16,7 @@ async-trait = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } regex = { workspace = true } -wfe-buildkit-protos = { version = "1.6.1", path = "../wfe-buildkit-protos", registry = "sunbeam" } +wfe-buildkit-protos = { version = "1.6.2", path = "../wfe-buildkit-protos", registry = "sunbeam" } tonic = "0.14" tower = { version = "0.4", features = ["util"] } hyper-util = { version = "0.1", features = ["tokio"] } diff --git a/wfe-containerd/Cargo.toml b/wfe-containerd/Cargo.toml index ccdb8ce..69778e4 100644 --- a/wfe-containerd/Cargo.toml +++ b/wfe-containerd/Cargo.toml @@ -9,7 +9,7 @@ description = "containerd container runner executor for WFE" [dependencies] wfe-core = { workspace = true } -wfe-containerd-protos = { version = "1.6.1", path = "../wfe-containerd-protos", registry = "sunbeam" } +wfe-containerd-protos = { version = "1.6.2", path = "../wfe-containerd-protos", registry = "sunbeam" } tokio = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } diff --git a/wfe-server/Cargo.toml b/wfe-server/Cargo.toml index c0d63c8..0fd4350 100644 --- a/wfe-server/Cargo.toml +++ b/wfe-server/Cargo.toml @@ -14,9 +14,9 @@ path = "src/main.rs" [dependencies] # Internal wfe-core = { workspace = true, features = ["test-support"] } -wfe = { version = "1.6.1", path = "../wfe", registry = "sunbeam" } -wfe-yaml = { version = "1.6.1", path = "../wfe-yaml", registry = "sunbeam", features = ["rustlang", "buildkit", "containerd"] } -wfe-server-protos = { version = "1.6.1", path = "../wfe-server-protos", registry = "sunbeam" } +wfe = { version = "1.6.2", path = "../wfe", registry = "sunbeam" } +wfe-yaml = { version = "1.6.2", path = "../wfe-yaml", registry = "sunbeam", features = ["rustlang", "buildkit", "containerd"] } +wfe-server-protos = { version = "1.6.2", path = "../wfe-server-protos", registry = "sunbeam" } wfe-sqlite = { workspace = true } wfe-postgres = { workspace = true } wfe-valkey = { workspace = true }