chore(creact): 0.5.1 - #22
Conversation
Patch release for the store hydration fix (#20): a store is restored by its node's own path rather than its parent's, so keyed siblings each keep their own state instead of every one of them restoring whichever was persisted last.
|
Warning Review limit reached
Next review available in: 47 minutes Limit details: You’ve used all 1 included review currently available under your plan. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
🤖 Grok fallow review — proceedNo dead code, duplication, above-threshold functions, audit metrics, or change-attributed advisories. Non-gating hotspot movement noted; release may proceed.
Reviews the full fallow report — dead code, duplication, health, and audit. Re-runs edit this comment. |
Bumps
@creact-labs/creactto 0.5.1 so the store hydration fix in #20 can ship.Patch, per the release flow in
.github/workflows/release.yml: land ondevelop, bump the package's own version there, thendevelop → releasepublishes.What ships in it
#20 — a store is restored by its node's own path rather than its parent's.
prepareHydrationkeyed each store bynode.path.slice(0, -1), so two keyed siblings shared one hydration entry and every one of them restored whichever was persisted last. Persistence was already correct; only the restore lookup discarded the segment that made them distinct.The practical effect: a component rendered per item in a
<For>can own acreateStoreagain, instead of per-entity state having to live in outputs to dodge the collision.Order
Merge #20 first, then this — or this first and #20 after; the version only has to be right on
developbefore the release PR is cut.