From 10c0c4701d1da5afdccc1b56aba747cf31230658 Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Mon, 16 Jun 2025 20:55:37 +0000 Subject: [PATCH 1/2] chore(pegboard): replace computing image size manually with using tar bytes read From 71791090d9681363d23f15dc57b5439a7eb2e7e4 Mon Sep 17 00:00:00 2001 From: MasterPtato Date: Mon, 26 May 2025 22:41:43 +0000 Subject: [PATCH 2/2] fix(workflows): fix branch version bug --- packages/common/chirp-workflow/core/src/ctx/workflow.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/common/chirp-workflow/core/src/ctx/workflow.rs b/packages/common/chirp-workflow/core/src/ctx/workflow.rs index b98a57c8ed..d14368bdc7 100644 --- a/packages/common/chirp-workflow/core/src/ctx/workflow.rs +++ b/packages/common/chirp-workflow/core/src/ctx/workflow.rs @@ -379,7 +379,7 @@ impl WorkflowCtx { /// Creates a new workflow run with one more depth in the location. /// - **Not to be used directly by workflow users. For implementation uses only.** - /// - **Remember to validate history after this branch is used.** + /// - **Remember to validate latent history after this branch is used.** #[tracing::instrument(skip_all)] pub(crate) async fn branch(&mut self) -> WorkflowResult { self.custom_branch(self.input.clone(), self.version).await @@ -400,7 +400,7 @@ impl WorkflowCtx { .commit_workflow_branch_event( self.workflow_id, &location, - self.version, + version, self.loop_location.as_ref(), ) .await?; @@ -409,6 +409,7 @@ impl WorkflowCtx { Ok(self.branch_inner(input, version, location)) } + /// `custom_branch` with no history validation. pub(crate) fn branch_inner( &mut self, input: Arc>,