From 2f220cbab4fa47cfc21da21cd3534f855937b089 Mon Sep 17 00:00:00 2001 From: Mona Mayrhofer Date: Tue, 2 Jun 2026 11:42:03 +0200 Subject: [PATCH 1/2] fix: ReadStore from MappedMutSignal requires Lens: Readable --- packages/stores/src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/stores/src/store.rs b/packages/stores/src/store.rs index edef40ef2b..20825ea705 100644 --- a/packages/stores/src/store.rs +++ b/packages/stores/src/store.rs @@ -204,7 +204,7 @@ where impl<__F, __FMut, T: ?Sized, S, Lens> ::std::convert::From> for ReadStore where - Lens: Writable + 'static, + Lens: Readable + 'static, __F: Fn(&Lens::Target) -> &T + 'static, __FMut: Fn(&mut Lens::Target) -> &mut T + 'static, S: BoxedSignalStorage + CreateBoxedSignalStorage>, From 15ca499c262742c4c0fe6dda0af810adb7a975f5 Mon Sep 17 00:00:00 2001 From: Evan Almloff Date: Tue, 2 Jun 2026 08:55:55 -0500 Subject: [PATCH 2/2] trigger ci on edit so it runs when the base branch changes --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c2ce001bc3..c03f369463 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ on: - main pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened, edited, ready_for_review] branches: - main