1 hours ago
next.js

v16.3.0-canary.16

Core Changes

  • Hold cacheSignal across unstable_cache foreground revalidation: #93617
  • Encode non-ASCII characters in cache tags at construction: #93601

Credits

Huge thanks to @unstubbable for helping!

2 hours ago
next.js

v16.3.0-canary.15

Core Changes

  • [devtools] Force ANSI colors on overlay code frames regardless of TTY: #93550
  • Turbopack: Match proxy matchers with webpack implementation: #93594
  • Track searchParams access through a Proxy to catch missing-key reads: #93549
  • Cherry-pick ghsa commits to canary: #93614

Misc Changes

  • docs: escape literal triple-backticks in contribution guide: #93584
  • [test] Pin package manager to patch versions: #93592
  • turbo-rcstr: replace rcstr! macro_rules with proc macro: #93551
  • Turbopack: Fix middleware matcher suffix: #93590
  • Turbopack: Change DynEffect::dyn_value to DynEffect::value_hash, a simple u128: #93552
  • [ci] Ensure graphite_ci_optimizer fails open even if github fails to fetch the action: #93615

Credits

Huge thanks to @aurorascharff, @icyJoseph, @eps1lon, @lukesandberg, @timneutkens, @unstubbable, and @bgw for helping!

5 hours ago
rari

create-rari-app@0.5.7

What's Changed

  • d95cd834 chore(deps): bump rari-binaries to 0.13.3
  • 4c8481e7 release: create-rari-app@0.5.6
  • f139f797 chore(deps): update dependencies and improve code splitting

Full Changelog: https://github.com/rari-build/rari/compare/create-rari-app@0.5.5...create-rari-app@0.5.7

5 hours ago
rari

rari@0.13.4

What's Changed

  • 0d179530 release: rari@0.13.3
  • 10a3951f chore(rari): downgrade version to 0.13.2

Full Changelog: https://github.com/rari-build/rari/compare/rari@0.13.3...rari@0.13.4

6 hours ago
astro

astro@6.3.1

Patch Changes

  • #16646 15fbc41 Thanks @matthewp! - Fixes local images returning 404 on non-prerendered pages when using the generic image endpoint
6 hours ago
rari

v0.13.3

What's Changed

  • fb248889 chore(deps): bump rari to 0.13.3

Full Changelog: https://github.com/rari-build/rari/compare/v0.13.2...v0.13.3

7 hours ago
react-tooltip
8 hours ago
react-colorful

v5.7.0 (onChangeEnd)

Added onChangeEnd callback that fires when the user finishes changing a color (on mouse up, touch end, or arrow key up). Useful for undo/redo, saving to a database, or other expensive operations. (via #230)

<HexColorPicker
  color={color}
  onChange={setColor}
  onChangeEnd={(color) => saveToDatabase(color)}
/>