Preact Render To String Versions Save

:page_facing_up: Universal rendering for Preact: render JSX and Preact components to HTML.

v6.2.1

10 months ago

Patch Changes

v6.2.0

11 months ago

Minor Changes

  • #305 568f139 Thanks @marvinhagemeister! - Add support for error boundaries via componentDidCatch and getDerivedStateFromError

    This feature is disabled by default and can be enabled by toggling the errorBoundaries option:

    import { options } from 'preact';
    
    // Enable error boundaries
    options.errorBoundaries = true;
    

v6.1.0

1 year ago

Minor Changes

  • #301 659b456 Thanks @marvinhagemeister! - Add experimental ability to render HTML comments via <Fragment UNSTABLE_comment="my-comment" />. When the UNSTABLE_comment prop is present all children of that Fragment will be ignored and a HTML comment will be rendered instead. This feature is added to allow framework authors to experiment with marking DOM for hydration in the client. Note that it's marked as unstable and might change in the future.

v6.0.3

1 year ago

Patch Changes

v6.0.2

1 year ago

Patch Changes

v6.0.0

1 year ago

Major Changes

  • #241 e8cbf66 Thanks @developit! - Improve performance by another 5-10% using switch and short-circuiting, and move pretty-printing + shallow rendering into preact-render-to-string/jsx.

  • #282 6376f62 Thanks @JoviDeCroock! - Remove trailing space for void_elements, this could fail some test_assertions as <img /> will become <img/>, the other VOID_ELEMENTS this will be applied for can be found here

  • #286 7a8b590 Thanks @JoviDeCroock! - Remove the castin to VNode for preact/debug, this is fixed in Preact >= 10.13.0

Patch Changes

v6.0.1

1 year ago

Patch Changes

v5.2.6

1 year ago

Patch Changes

v5.2.5

1 year ago

Patch Changes

v5.2.2

1 year ago

Patch Changes