From 9c566a5740679a64b24b7b21efb25f79800b4bf4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 06:11:52 +0000 Subject: [PATCH] chore: version packages --- .changeset/cool-spies-change.md | 5 ----- .changeset/lucky-pugs-repeat.md | 7 ------- packages/core/CHANGELOG.md | 10 ++++++++++ packages/core/package.json | 2 +- 4 files changed, 11 insertions(+), 13 deletions(-) delete mode 100644 .changeset/cool-spies-change.md delete mode 100644 .changeset/lucky-pugs-repeat.md diff --git a/.changeset/cool-spies-change.md b/.changeset/cool-spies-change.md deleted file mode 100644 index 006350d9..00000000 --- a/.changeset/cool-spies-change.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-simplikit': patch ---- - -fix(usePrevious): opt out `usePrevious` hook from React Compiler diff --git a/.changeset/lucky-pugs-repeat.md b/.changeset/lucky-pugs-repeat.md deleted file mode 100644 index 2b55e62b..00000000 --- a/.changeset/lucky-pugs-repeat.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'react-simplikit': patch ---- - -fix(useThrottledCallback): invoke the callback when the first value is `false` - -The hook skips redundant invocations by comparing the incoming value against the last one it forwarded, but that comparison was seeded with `false`. Because the hook takes no initial value from the caller, a first call of `false` looked redundant and was dropped — so consumers whose state starts as `true` lost the transition back to `false`. The comparison now starts from a sentinel, so the first call is always forwarded regardless of its value. diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 2b5b4a6f..4739e277 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,15 @@ # react-simplikit +## 0.0.53 + +### Patch Changes + +- [#379](https://github.com/toss/react-simplikit/pull/379) [`e2030a2`](https://github.com/toss/react-simplikit/commit/e2030a2deac81fb247b9f601fab19d87a067cc9c) Thanks [@lumirlumir](https://github.com/lumirlumir)! - fix(usePrevious): opt out `usePrevious` hook from React Compiler + +- [#404](https://github.com/toss/react-simplikit/pull/404) [`cac80cb`](https://github.com/toss/react-simplikit/commit/cac80cb41897b834bb3661336faa84197c558c1e) Thanks [@bbjbc](https://github.com/bbjbc)! - fix(useThrottledCallback): invoke the callback when the first value is `false` + + The hook skips redundant invocations by comparing the incoming value against the last one it forwarded, but that comparison was seeded with `false`. Because the hook takes no initial value from the caller, a first call of `false` looked redundant and was dropped — so consumers whose state starts as `true` lost the transition back to `false`. The comparison now starts from a sentinel, so the first call is always forwarded regardless of its value. + ## 0.0.52 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 4b31607d..565ff3e9 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "react-simplikit", - "version": "0.0.52", + "version": "0.0.53", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.cts",