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.10Release Notes
preactjs/preact-render-to-string (preact-render-to-string)
v6.5.10Compare Source
Patch Changes
d80e4dcThanks @marvinhagemeister! - Allow any value forclass+classNameas long as it's stringified to match browser behavior.v6.5.9Compare Source
Patch Changes
4621fa3Thanks @marvinhagemeister! - FixspellCheck={false}not rendering asspellcheck="false"v6.5.8Compare Source
Patch Changes
220ad45Thanks @JoviDeCroock! - Add async benchmarks and iterate on perf improvements883e02bThanks @JoviDeCroock! - General performance optimisations45b8e8bThanks @JoviDeCroock! - Improve perf a bit by hoisting the typeof check to reduce calling typeofv6.5.7Compare Source
Patch Changes
481b4f3Thanks @rschristian! - SupportdangerouslySetInnerHTML={undefined}withrenderToStringAsyncv6.5.6Compare Source
Patch Changes
054dae0Thanks @ccouzens! - Fix issue where preactRenderToString returns a promise of a promisev6.5.5Compare Source
Patch Changes
bebe4bfThanks @jacob-ebey! - fix: stop client runtime from being corruptedfix: insert ooo chunks in the proper order
v6.5.4Compare Source
Patch Changes
7871a51Thanks @dbergey! - Fix incorrect type for renderToPipeableStreamv6.5.3Compare Source
Patch Changes
3044ac2Thanks @rschristian! - Correct stream exports8c7e08fThanks @rschristian! - Add types for/streamand/stream-nodeexportsv6.5.2Compare Source
Patch Changes
689e88dThanks @JoviDeCroock! - Correctly rendernullas an__htmlvalue as an empty stringv6.5.1Compare Source
Patch Changes
4430ecfThanks @JoviDeCroock! - Add back publish with provenancev6.5.0Compare Source
Minor Changes
a004914Thanks @JoviDeCroock! - Introduce a streaming renderer which can be imported frompreact-render-to-string/streamandpreact-render-to-string/stream-nodePatch Changes
a004914Thanks @JoviDeCroock! - EnsurepopoverTargetandpopoverTargetActionare serialized to lower casea004914Thanks @JoviDeCroock! - Fix for shallow rendering incorrectly transforming Fragments into other nodesa004914Thanks @JoviDeCroock! - EnsurecellPadding,cellSpacing, anduseMapare serialized to lower casea004914Thanks @JoviDeCroock! - streaming rendering with Suspense boundaries as flush triggerv6.4.2Compare Source
Patch Changes
7bc77a3Thanks @marvinhagemeister! - Fix JSX template being detected as a top level Fragment when Deno's jsxprecompileoption is used303b8c0Thanks @marvinhagemeister! - Perf: Remove unnecessary closure when rendering child nodesv6.4.1Compare Source
Patch Changes
27a8b0eThanks @JoviDeCroock! - Ensure commonjs also has the async exportc46fb59Thanks @marvinhagemeister! - Fix error thrown after suspending not being rethrown.4462822Thanks @marvinhagemeister! - Fix invalid parent pointer empty value when rendering a suspended vnodev6.4.0Compare Source
Minor Changes
6acc97aThanks @JoviDeCroock! - Allow prepass like behavior where a Promisewill be awaited and then continued, this is done with
the new
renderToStringAsyncexportPatch Changes
87d8c21Thanks @Geo25rey! - fix external type definitions ofrenderToString0a0d0ceThanks @acelaya! - Remove incorrect second default export from jsx.d.tsv6.3.1Compare Source
Patch Changes
6bf321dThanks @marvinhagemeister! - Fix mapped children not working with Deno's new precompile JSX transform.v6.3.0Compare Source
Minor Changes
926827cThanks @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.2Compare Source
Patch Changes
f1d81beThanks @JoviDeCroock! - avoid adding double colon for namespaced attributesv6.2.1Compare Source
Patch Changes
a331699Thanks @marvinhagemeister! - Fix incorrect casing of HTML attributes and SVG attributes017a8bbThanks @marvinhagemeister! - Fix casing of namespaced attribute namesbccd1d6Thanks @gpoitch! - Apply attribute name handling in pretty modev6.2.0Compare Source
Minor Changes
#305
568f139Thanks @marvinhagemeister! - Add support for error boundaries viacomponentDidCatchandgetDerivedStateFromErrorThis feature is disabled by default and can be enabled by toggling the
errorBoundariesoption:v6.1.0Compare Source
Minor Changes
659b456Thanks @marvinhagemeister! - Add experimental ability to render HTML comments via<Fragment UNSTABLE_comment="my-comment" />. When theUNSTABLE_commentprop is present all children of thatFragmentwill 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.3Compare Source
Patch Changes
6a4b8edThanks @shinyama-k! - Fix to add type file for jsx.jsv6.0.2Compare Source
Patch Changes
637b302Thanks @marvinhagemeister! - Bring back exports from 5.x to make migration easierv6.0.1Compare Source
Patch Changes
8f4692cThanks @marvinhagemeister! - Fix error in commonjs entry pointv6.0.0Compare Source
Major Changes
e8cbf66Thanks @developit! - Improve performance by another 5-10% usingswitchand short-circuiting, and move pretty-printing from intopreact-render-to-string/jsx.6376f62Thanks @JoviDeCroock! - Remove trailing space for void_elements, this could fail some test_assertions as<img />will become<img/>, the otherVOID_ELEMENTSthis will be applied forcan be found here
7a8b590Thanks @JoviDeCroock! - Remove the castin to VNode forpreact/debug, this is fixed in Preact >= 10.13.0Patch Changes
7a8b590Thanks @JoviDeCroock! - Change style calculation to use a Set rather than Regexa0546feThanks @JoviDeCroock! - Fix CJS export0b04860Thanks @glenchao! - Enumerate draggable attribute, so the output isn'tdraggablebutdraggable="true"3defa9dThanks @JoviDeCroock! - Follow up fixes to #27807ebc66Thanks @JoviDeCroock! - Supportdataattribute5c6877dThanks @developit! - improve unmount option hook call performance#278
8cf7cefThanks @JoviDeCroock! - Improve performance byx-linkregex.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.