Skip to content

Commit 61cd8c2

Browse files
committed
Merge remote-tracking branch 'upstream/master' into gp/decamel
2 parents 7cd597a + 2e1c08c commit 61cd8c2

23 files changed

+2213
-2040
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
name: Build & Test
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
18-
- uses: actions/setup-node@v1
17+
- uses: actions/checkout@v3
18+
- uses: actions/setup-node@v3
1919
with:
20-
node-version: '14.x'
20+
node-version: 18
2121
- name: Cache node modules
22-
uses: actions/cache@v1
22+
uses: actions/cache@v3
2323
env:
2424
cache-name: cache-node-modules
2525
with:

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@master
14+
uses: actions/checkout@v3
1515
with:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
1818

19-
- name: Setup Node.js 14.x
20-
uses: actions/setup-node@master
19+
- name: Setup Node.js 18.x
20+
uses: actions/setup-node@v3
2121
with:
22-
node-version: 14.x
22+
node-version: 18
2323

2424
- name: Cache node modules
25-
uses: actions/cache@v1
25+
uses: actions/cache@v3
2626
env:
2727
cache-name: cache-node-modules
2828
with:

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
/npm-debug.log
44
.DS_Store
55
/src/preact-render-to-string-tests.d.ts
6-
/benchmarks/.v8.modern.js
6+
/benchmarks/.v8.mjs

CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# preact-render-to-string
22

3+
## 6.0.1
4+
5+
### Patch Changes
6+
7+
- [#292](https://github.com/preactjs/preact-render-to-string/pull/292) [`8f4692c`](https://github.com/preactjs/preact-render-to-string/commit/8f4692c49277591819acb74808a0e28f7cb30c2f) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Fix error in commonjs entry point
8+
9+
## 6.0.0
10+
11+
### Major Changes
12+
13+
- [#241](https://github.com/preactjs/preact-render-to-string/pull/241) [`e8cbf66`](https://github.com/preactjs/preact-render-to-string/commit/e8cbf66b2620842671b5c95817454ff2ddb0e450) Thanks [@developit](https://github.com/developit)! - Improve performance by another 5-10% using `switch` and short-circuiting, and move pretty-printing from into `preact-render-to-string/jsx`.
14+
15+
* [#282](https://github.com/preactjs/preact-render-to-string/pull/282) [`6376f62`](https://github.com/preactjs/preact-render-to-string/commit/6376f62309ec19482ded68406a03910ad6de57d1) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Remove trailing space for void_elements, this could fail some test_assertions as
16+
`<img />` will become `<img/>`, the other `VOID_ELEMENTS` this will be applied for
17+
can be found [here](https://github.com/preactjs/preact-render-to-string/blob/remove-trailing-space/src/index.js#L368-L385)
18+
19+
- [#286](https://github.com/preactjs/preact-render-to-string/pull/286) [`7a8b590`](https://github.com/preactjs/preact-render-to-string/commit/7a8b590237a70e8708e46cb1d92ab24327f60160) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Remove the castin to VNode for `preact/debug`, this is fixed in Preact >= 10.13.0
20+
21+
### Patch Changes
22+
23+
- [#286](https://github.com/preactjs/preact-render-to-string/pull/286) [`7a8b590`](https://github.com/preactjs/preact-render-to-string/commit/7a8b590237a70e8708e46cb1d92ab24327f60160) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Change style calculation to use a Set rather than Regex
24+
25+
* [#285](https://github.com/preactjs/preact-render-to-string/pull/285) [`a0546fe`](https://github.com/preactjs/preact-render-to-string/commit/a0546fe6a008eca54edfcd97f775c4b5581d086c) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Fix CJS export
26+
27+
- [#288](https://github.com/preactjs/preact-render-to-string/pull/288) [`0b04860`](https://github.com/preactjs/preact-render-to-string/commit/0b0486029ca10a846c368a0ab404e4b2e8eb96d6) Thanks [@glenchao](https://github.com/glenchao)! - Enumerate draggable attribute, so the output isn't `draggable` but `draggable="true"`
28+
29+
* [#283](https://github.com/preactjs/preact-render-to-string/pull/283) [`3defa9d`](https://github.com/preactjs/preact-render-to-string/commit/3defa9dab48cc7379c9135d92273fbb7f886cab0) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Follow up fixes to #278
30+
31+
- [#289](https://github.com/preactjs/preact-render-to-string/pull/289) [`07ebc66`](https://github.com/preactjs/preact-render-to-string/commit/07ebc66bb76b775cae58b5163acf2943ec72c8bf) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Support `data` attribute
32+
33+
* [#270](https://github.com/preactjs/preact-render-to-string/pull/270) [`5c6877d`](https://github.com/preactjs/preact-render-to-string/commit/5c6877d13d60b4cdd87632ac3052b006207568ff) Thanks [@developit](https://github.com/developit)! - improve unmount option hook call performance
34+
35+
- [#278](https://github.com/preactjs/preact-render-to-string/pull/278) [`8cf7cef`](https://github.com/preactjs/preact-render-to-string/commit/8cf7cef0e96b3e48ffea5fcf4f76db6410de8346) Thanks [@JoviDeCroock](https://github.com/JoviDeCroock)! - Improve performance by
36+
37+
- storing the void_elements in a Set
38+
- hoisting the `x-link` regex
39+
- remove case-insensitive from regexes and calling `.toLowerCase()` instead
40+
- caching suffixes for css-props
41+
42+
## 5.2.6
43+
44+
### Patch Changes
45+
46+
- [#257](https://github.com/preactjs/preact-render-to-string/pull/257) [`8b944b2`](https://github.com/preactjs/preact-render-to-string/commit/8b944b28be64d470a947f999153c9b64b078f7a8) Thanks [@marvinhagemeister](https://github.com/marvinhagemeister)! - Fix `preact/debug` incorrectly throwing errors on text children
47+
348
## 5.2.5
449

550
### Patch Changes

README.md

+62-17
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@
33
[![NPM](http://img.shields.io/npm/v/preact-render-to-string.svg)](https://www.npmjs.com/package/preact-render-to-string)
44
[![Build status](https://github.com/preactjs/preact-render-to-string/actions/workflows/ci.yml/badge.svg)](https://github.com/preactjs/preact-render-to-string/actions/workflows/ci.yml)
55

6-
Render JSX and [Preact] components to an HTML string.
6+
Render JSX and [Preact](https://github.com/preactjs/preact) components to an HTML string.
77

88
Works in Node & the browser, making it useful for universal/isomorphic rendering.
99

1010
\>\> **[Cute Fox-Related Demo](http://codepen.io/developit/pen/dYZqjE?editors=001)** _(@ CodePen)_ <<
1111

12-
1312
---
1413

15-
1614
### Render JSX/VDOM to HTML
1715

1816
```js
19-
import render from 'preact-render-to-string';
17+
import { render } from 'preact-render-to-string';
2018
import { h } from 'preact';
2119
/** @jsx h */
2220

@@ -27,24 +25,23 @@ console.log(html);
2725
// <div class="foo">content</div>
2826
```
2927

30-
3128
### Render Preact Components to HTML
3229

3330
```js
34-
import render from 'preact-render-to-string';
31+
import { render } from 'preact-render-to-string';
3532
import { h, Component } from 'preact';
3633
/** @jsx h */
3734

3835
// Classical components work
3936
class Fox extends Component {
4037
render({ name }) {
41-
return <span class="fox">{ name }</span>;
38+
return <span class="fox">{name}</span>;
4239
}
4340
}
4441

4542
// ... and so do pure functional components:
4643
const Box = ({ type, children }) => (
47-
<div class={`box box-${type}`}>{ children }</div>
44+
<div class={`box box-${type}`}>{children}</div>
4845
);
4946

5047
let html = render(
@@ -57,22 +54,20 @@ console.log(html);
5754
// <div class="box box-open"><span class="fox">Finn</span></div>
5855
```
5956

60-
6157
---
6258

63-
6459
### Render JSX / Preact / Whatever via Express!
6560

6661
```js
6762
import express from 'express';
6863
import { h } from 'preact';
69-
import render from 'preact-render-to-string';
64+
import { render } from 'preact-render-to-string';
7065
/** @jsx h */
7166

7267
// silly example component:
7368
const Fox = ({ name }) => (
7469
<div class="fox">
75-
<h5>{ name }</h5>
70+
<h5>{name}</h5>
7671
<p>This page is all about {name}.</p>
7772
</div>
7873
);
@@ -89,14 +84,64 @@ app.get('/:fox', (req, res) => {
8984
});
9085
```
9186

92-
9387
---
9488

89+
### `Suspense` & `lazy` components with [`preact/compat`](https://www.npmjs.com/package/preact) & [`preact-ssr-prepass`](https://www.npmjs.com/package/preact-ssr-prepass)
9590

96-
### License
91+
```bash
92+
npm install preact preact-render-to-string preact-ssr-prepass
93+
```
94+
95+
```jsx
96+
export default () => {
97+
return (
98+
<h1>Home page</h1>
99+
)
100+
}
101+
```
97102

98-
[MIT]
103+
```jsx
104+
import { Suspense, lazy } from "preact/compat"
99105

106+
// Creation of the lazy component
107+
const HomePage = lazy(() => import("./pages/home"))
108+
109+
const Main = () => {
110+
return (
111+
<Suspense fallback={<p>Loading</p>}>
112+
<HomePage />
113+
</Suspense>
114+
)
115+
}
116+
```
117+
118+
```jsx
119+
import { render } from "preact-render-to-string"
120+
import prepass from "preact-ssr-prepass"
121+
import { Main } from "./main"
122+
123+
const main = async () => {
124+
// Creation of the virtual DOM
125+
const vdom = <Main />
126+
127+
// Pre-rendering of lazy components
128+
await prepass(vdom)
129+
130+
// Rendering of components
131+
const html = render(vdom)
132+
133+
console.log(html)
134+
// <h1>Home page</h1>
135+
}
136+
137+
// Execution & error handling
138+
main().catch(error => {
139+
console.error(error)
140+
})
141+
```
142+
143+
---
144+
145+
### License
100146

101-
[Preact]: https://github.com/developit/preact
102-
[MIT]: http://choosealicense.com/licenses/mit/
147+
[MIT](http://choosealicense.com/licenses/mit/)

benchmarks/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { h } from 'preact';
22
import Suite from 'benchmarkjs-pretty';
3-
import renderToStringBaseline from './lib/render-to-string';
3+
import renderToStringBaseline from 'baseline-rts';
44
// import renderToString from '../src/index';
5-
import renderToString from '../dist/index.mjs';
5+
import renderToString from '../dist/index.module.js';
66
import TextApp from './text';
77
// import StackApp from './stack';
88
import { App as IsomorphicSearchResults } from './isomorphic-ui/search-results/index';

0 commit comments

Comments
 (0)