From 7989168e7a70a2ebf861ad23a7c885179ceb8d24 Mon Sep 17 00:00:00 2001 From: Britannio Jarrett <33752528+britannio@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:12:17 +0000 Subject: [PATCH] bump amp (vibe-kanban) (#1422) * I have bumped the `amp` version to `0.0.1764705684-g95eb77` in [crates/executors/src/executors/amp.rs](file:///private/var/folders/fr/0c4ky3392mb4yz5knw_wjdd00000gn/T/vibe-kanban/worktrees/5070-bump-amp/crates/executors/src/executors/amp.rs). I verified the changes by running `cargo check --workspace`, which passed successfully. * I have updated the `amp` version to `0.0.1764777697-g907e30` in [crates/executors/src/executors/amp.rs](file:///private/var/folders/fr/0c4ky3392mb4yz5knw_wjdd00000gn/T/vibe-kanban/worktrees/5070-bump-amp/crates/executors/src/executors/amp.rs). I verified the changes by running `cargo check --workspace` (after resolving a transient `libsqlite3-sys` build issue). --- crates/executors/src/executors/amp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/executors/src/executors/amp.rs b/crates/executors/src/executors/amp.rs index 69d171b3..3c009b6f 100644 --- a/crates/executors/src/executors/amp.rs +++ b/crates/executors/src/executors/amp.rs @@ -33,7 +33,7 @@ pub struct Amp { impl Amp { fn build_command_builder(&self) -> CommandBuilder { - let mut builder = CommandBuilder::new("npx -y @sourcegraph/amp@0.0.1764081384-g1961a8") + let mut builder = CommandBuilder::new("npx -y @sourcegraph/amp@0.0.1764777697-g907e30") .params(["--execute", "--stream-json"]); if self.dangerously_allow_all.unwrap_or(false) { builder = builder.extend_params(["--dangerously-allow-all"]);