Skip to content

Releases: preactjs/preact-ssr-prepass

v1.2.2

14 Jul 06:44
2f63c40
Compare
Choose a tag to compare

Fixes

Maintenance

Full Changelog: v1.2.1...v1.2.2

v1.2.1

21 Nov 03:47
0592421
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.0...v1.2.1

1.2.0

06 Oct 07:37
Compare
Choose a tag to compare
  • Add .mjs support 30
  • call options._render on render 24

1.1.3

11 Jan 15:50
Compare
Choose a tag to compare

Support contextType on class components

1.1.2

14 Oct 19:09
Compare
Choose a tag to compare

Prevent components from being pushed into the preact render queue when a setState or forceUpdate is invoked. This fixes a memory leak. Thanks @developit !

1.1.1

06 Aug 21:20
Compare
Choose a tag to compare

Allow render() (and FunctionComponents) to return an array of child nodes. See #12. Thanks to @dios-david !

1.1.0

06 Aug 21:18
Compare
Choose a tag to compare

This release changes the way Suspense nodes are handled so that promises are no longer swallowed (fixes #3 )

1.0.2

19 Jul 08:59
Compare
Choose a tag to compare

Skip useEffect and useLayoutEffect during prepass as they should not run for SSR

Support hooks and createContext default value in newer versions of preact

28 Jan 07:54
Compare
Choose a tag to compare
  • Since preact renamed options.render to options._render hooks were broken when using newer versions of preact. This is now fixed.
  • Since preact renamed the property denoting the default value of a createContext provider the default value passed to createContext was never used. This is now fixed