chore: version packages - #468
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
requested review from
hyesungoh and
mnxmnz
as code owners
September 3, 2026 08:26
github-actions
Bot
force-pushed
the
changeset-release/main
branch
11 times, most recently
from
September 7, 2026 08:55
2bc1532 to
6010bac
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 7, 2026 10:01
6010bac to
2b4026c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
react-simplikit@0.3.0
Minor Changes
#471
edddd4bThanks @hyesungoh! - AdduseDebouncedValueanduseThrottledValue. Both take a value the caller owns and return a delayed copy of it:useDebouncedValue(value, wait, { leading?, trailing? })follows the valuewaitmilliseconds after the last change, anduseThrottledValue(value, wait, { leading?, trailing? })follows it at most once perwaitmilliseconds. They pair with the existinguseDebouncedCallbackanduseThrottledCallback, which wrap a setter instead of a value.#479
72ed16eThanks @Antoliny0919! - Add lazy initializer support to useBooleanState.#469
cc8b69eThanks @DongEun02! - Add lazy initializer support to useInputState.Patch Changes
#470
52ed163Thanks @hyesungoh! -useThrottlewithedges: ['trailing']now invokes once perwaitwhile calls keep coming in, instead of waiting for the calls to stop.useThrottledCallbackanduseDebouncedCallbacknow keep a single throttle or debounce across calls:useThrottledCallbackforwards a stream of distinct values at most once pertimeThresholdinstead of every time, anduseDebouncedCallbackwithleading: trueforwards the first value of a burst once instead of every value immediately. Sharing one instance has two further consequences. A call carrying the same value as the last forwarded one is still skipped, but it now occupies a window, so a different value arriving inside that window waits for the window to close. And changingtimeThreshold,edges,leadingortrailingwhile a value is pending discards that pending value instead of forwarding it.useImpressionRefandImpressionAreainherit theuseDebouncedCallbackchange: an impression that ends withintimeThresholdof its start now reportsonImpressionEndon the trailing edge rather than immediately, and an end still pending when the element unmounts is emitted during cleanup instead of being dropped.#467
92cbb34Thanks @constantly-dev! -useIntersectionObserverno longer recreates the underlyingIntersectionObserveron every render when an inlineoptionsobject is passed. It now recreates it only whenroot,rootMargin, orthresholdactually change.#473
6f6361cThanks @JetProc! - Cancel pending useLongPress timers when the component unmounts, preventingonLongPress from firing after unmount.
react-simplikit-codemod@0.1.2
Patch Changes
f131867Thanks @mnxmnz! -mobile-to-rootnow asks semver whether an existingreact-simplikitrange already guarantees the0.2.0floor, instead of comparing digits it pulled out of the string. A wildcard such as*still admits an older version, so it is raised to^0.2.0rather than left in place; aworkspace:,file:or dist-tag spec that semver cannot read is kept and reported. An--ignoreglob is joined onto the current directory withpath.posix.join, so./legacy/**andlegacy/**read the same way.