You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
💥 Breaking Change
Requires ReScript 13.0.0-alpha.5 or newer.
Corrected the ReactDOM.FormData.append, set, and has signatures. The methods now receive the FormData value correctly, and append and set require the value being written. #156
Corrected ReactDOM.useFormStatus to represent non-pending data, method, and action values as nullable. Its action now accepts one FormData argument and preserves synchronous and asynchronous results. #161
Corrected ReactDOMServer.resumeToPipeableStream to synchronously return its pipe and abort controller instead of a promise. #161
🐛 Bug Fix
Use ReScript 13's %component_identity primitive for component conversion, fixing interface mismatches for components with generic prop types on ReScript 13.0.0-alpha.5 or newer. #159
Preserve the complete callback signature returned by React.useEffectEvent, including its arguments and return value. #157
Added the missing onAllReady, onShellReady, and onShellError options to ReactDOMServer.resumeToPipeableStream. #161
🏠 Internal
Added automated preview-package publishing with pkg.pr.new and npm publishing for release tags. #158#160
This commit was created on GitHub.com and signed with GitHub’s verified signature.
💥 Breaking Change
Replace usages of %external by binding to globalThis. This is to support upcoming ReScript 12 versions. For older browsers, it may be necessary to polyfill globalThis.
🐛 Bug Fix
Remove hardcoded require so it works in both common js and ES module modes. (#117)