From ddfe5f4fff04996bc6b1447f6d2ebf4306bcd36b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 11:12:49 +0100 Subject: [PATCH] Version Packages (#644) Co-authored-by: github-actions[bot] --- .changeset/silver-crabs-sniff.md | 5 ----- packages/preact/CHANGELOG.md | 6 ++++++ packages/preact/package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/silver-crabs-sniff.md diff --git a/.changeset/silver-crabs-sniff.md b/.changeset/silver-crabs-sniff.md deleted file mode 100644 index 7bbf9ccf..00000000 --- a/.changeset/silver-crabs-sniff.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@preact/signals": patch ---- - -Change the way we deal with state settling hooks, when we know we are dealing with hooks that can settle their A -> B -> A state (and wind up at the same value). We should not verbatim rerender in our custom shouldComponentUpdate. Instead we should trust that hooks have handled their own state settling. diff --git a/packages/preact/CHANGELOG.md b/packages/preact/CHANGELOG.md index 04bfda8a..ab28c856 100644 --- a/packages/preact/CHANGELOG.md +++ b/packages/preact/CHANGELOG.md @@ -1,5 +1,11 @@ # @preact/signals +## 1.3.2 + +### Patch Changes + +- [#641](https://github.com/preactjs/signals/pull/641) [`e932cfc`](https://github.com/preactjs/signals/commit/e932cfc9a960e01588c99101c7941aec7ce35af8) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Change the way we deal with state settling hooks, when we know we are dealing with hooks that can settle their A -> B -> A state (and wind up at the same value). We should not verbatim rerender in our custom shouldComponentUpdate. Instead we should trust that hooks have handled their own state settling. + ## 1.3.1 ### Patch Changes diff --git a/packages/preact/package.json b/packages/preact/package.json index 000b6019..2776aa04 100644 --- a/packages/preact/package.json +++ b/packages/preact/package.json @@ -1,6 +1,6 @@ { "name": "@preact/signals", - "version": "1.3.1", + "version": "1.3.2", "license": "MIT", "description": "Manage state with style in Preact", "keywords": [],