This repository was archived by the owner on Sep 9, 2024. It is now read-only.
fix(deps): update dependency preact-render-to-string to v6 #32
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
5.2.6
->6.5.10
Release Notes
preactjs/preact-render-to-string (preact-render-to-string)
v6.5.10
Compare Source
Patch Changes
d80e4dc
Thanks @marvinhagemeister! - Allow any value forclass
+className
as long as it's stringified to match browser behavior.v6.5.9
Compare Source
Patch Changes
4621fa3
Thanks @marvinhagemeister! - FixspellCheck={false}
not rendering asspellcheck="false"
v6.5.8
Compare Source
Patch Changes
220ad45
Thanks @JoviDeCroock! - Add async benchmarks and iterate on perf improvements883e02b
Thanks @JoviDeCroock! - General performance optimisations45b8e8b
Thanks @JoviDeCroock! - Improve perf a bit by hoisting the typeof check to reduce calling typeofv6.5.7
Compare Source
Patch Changes
481b4f3
Thanks @rschristian! - SupportdangerouslySetInnerHTML={undefined}
withrenderToStringAsync
v6.5.6
Compare Source
Patch Changes
054dae0
Thanks @ccouzens! - Fix issue where preactRenderToString returns a promise of a promisev6.5.5
Compare Source
Patch Changes
bebe4bf
Thanks @jacob-ebey! - fix: stop client runtime from being corruptedfix: insert ooo chunks in the proper order
v6.5.4
Compare Source
Patch Changes
7871a51
Thanks @dbergey! - Fix incorrect type for renderToPipeableStreamv6.5.3
Compare Source
Patch Changes
3044ac2
Thanks @rschristian! - Correct stream exports8c7e08f
Thanks @rschristian! - Add types for/stream
and/stream-node
exportsv6.5.2
Compare Source
Patch Changes
689e88d
Thanks @JoviDeCroock! - Correctly rendernull
as an__html
value as an empty stringv6.5.1
Compare Source
Patch Changes
4430ecf
Thanks @JoviDeCroock! - Add back publish with provenancev6.5.0
Compare Source
Minor Changes
a004914
Thanks @JoviDeCroock! - Introduce a streaming renderer which can be imported frompreact-render-to-string/stream
andpreact-render-to-string/stream-node
Patch Changes
a004914
Thanks @JoviDeCroock! - EnsurepopoverTarget
andpopoverTargetAction
are serialized to lower casea004914
Thanks @JoviDeCroock! - Fix for shallow rendering incorrectly transforming Fragments into other nodesa004914
Thanks @JoviDeCroock! - EnsurecellPadding
,cellSpacing
, anduseMap
are serialized to lower casea004914
Thanks @JoviDeCroock! - streaming rendering with Suspense boundaries as flush triggerv6.4.2
Compare Source
Patch Changes
7bc77a3
Thanks @marvinhagemeister! - Fix JSX template being detected as a top level Fragment when Deno's jsxprecompile
option is used303b8c0
Thanks @marvinhagemeister! - Perf: Remove unnecessary closure when rendering child nodesv6.4.1
Compare Source
Patch Changes
27a8b0e
Thanks @JoviDeCroock! - Ensure commonjs also has the async exportc46fb59
Thanks @marvinhagemeister! - Fix error thrown after suspending not being rethrown.4462822
Thanks @marvinhagemeister! - Fix invalid parent pointer empty value when rendering a suspended vnodev6.4.0
Compare Source
Minor Changes
6acc97a
Thanks @JoviDeCroock! - Allow prepass like behavior where a Promisewill be awaited and then continued, this is done with
the new
renderToStringAsync
exportPatch Changes
87d8c21
Thanks @Geo25rey! - fix external type definitions ofrenderToString
0a0d0ce
Thanks @acelaya! - Remove incorrect second default export from jsx.d.tsv6.3.1
Compare Source
Patch Changes
6bf321d
Thanks @marvinhagemeister! - Fix mapped children not working with Deno's new precompile JSX transform.v6.3.0
Compare Source
Minor Changes
926827c
Thanks @marvinhagemeister! - Add support for precompiled JSX transform, see https://deno.com/blog/v1.38#fastest-jsx-transform. Compared to traditional JSX transforms, the precompiled JSX transform tries to pre-serialize as much of the JSX as possible. That way less objects need to be created and serialized which relieves a lot of GC pressure.v6.2.2
Compare Source
Patch Changes
f1d81be
Thanks @JoviDeCroock! - avoid adding double colon for namespaced attributesv6.2.1
Compare Source
Patch Changes
a331699
Thanks @marvinhagemeister! - Fix incorrect casing of HTML attributes and SVG attributes017a8bb
Thanks @marvinhagemeister! - Fix casing of namespaced attribute namesbccd1d6
Thanks @gpoitch! - Apply attribute name handling in pretty modev6.2.0
Compare Source
Minor Changes
#305
568f139
Thanks @marvinhagemeister! - Add support for error boundaries viacomponentDidCatch
andgetDerivedStateFromError
This feature is disabled by default and can be enabled by toggling the
errorBoundaries
option:v6.1.0
Compare Source
Minor Changes
659b456
Thanks @marvinhagemeister! - Add experimental ability to render HTML comments via<Fragment UNSTABLE_comment="my-comment" />
. When theUNSTABLE_comment
prop is present all children of thatFragment
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
Compare Source
Patch Changes
6a4b8ed
Thanks @shinyama-k! - Fix to add type file for jsx.jsv6.0.2
Compare Source
Patch Changes
637b302
Thanks @marvinhagemeister! - Bring back exports from 5.x to make migration easierv6.0.1
Compare Source
Patch Changes
8f4692c
Thanks @marvinhagemeister! - Fix error in commonjs entry pointv6.0.0
Compare Source
Major Changes
e8cbf66
Thanks @developit! - Improve performance by another 5-10% usingswitch
and short-circuiting, and move pretty-printing from intopreact-render-to-string/jsx
.6376f62
Thanks @JoviDeCroock! - Remove trailing space for void_elements, this could fail some test_assertions as<img />
will become<img/>
, the otherVOID_ELEMENTS
this will be applied forcan be found here
7a8b590
Thanks @JoviDeCroock! - Remove the castin to VNode forpreact/debug
, this is fixed in Preact >= 10.13.0Patch Changes
7a8b590
Thanks @JoviDeCroock! - Change style calculation to use a Set rather than Regexa0546fe
Thanks @JoviDeCroock! - Fix CJS export0b04860
Thanks @glenchao! - Enumerate draggable attribute, so the output isn'tdraggable
butdraggable="true"
3defa9d
Thanks @JoviDeCroock! - Follow up fixes to #27807ebc66
Thanks @JoviDeCroock! - Supportdata
attribute5c6877d
Thanks @developit! - improve unmount option hook call performance#278
8cf7cef
Thanks @JoviDeCroock! - Improve performance byx-link
regex.toLowerCase()
insteadConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.