Skip to content

Commit 5b435a1

Browse files
authored
Merge pull request #61 from preactjs/fix/use-id
fix: `useId` past Preact 10.11.3
2 parents 3eebb97 + 7ab2327 commit 5b435a1

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"jest": "^26.0.0",
6060
"lint-staged": "^11.0.1",
6161
"microbundle": "^0.13.3",
62-
"preact": "10.11.0",
62+
"preact": "10.22.1",
6363
"preact-render-to-string": "^5.2.4",
6464
"prettier": "^2.0.5",
6565
"rimraf": "3.0.2",

src/index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @flow
22
import { assign, getChildren } from "./util";
3-
import { options, Fragment, Component } from "preact";
3+
import { options, Fragment, Component, h } from "preact";
44
import { Suspense } from "preact/compat";
55

66
const createContextDefaultValue = "__p";
@@ -42,6 +42,10 @@ export default function prepass(
4242
children = [];
4343
context = context || {};
4444

45+
if (!parent) {
46+
parent = h(Fragment, null);
47+
parent[_children] = parent[vnode];
48+
}
4549
vnode[_parent] = parent;
4650

4751
if (

src/index.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ describe("prepass", () => {
229229
await prepass(<App />);
230230

231231
expect(ids).toEqual([
232-
"P481",
233-
"P15361",
232+
"P0-0",
233+
"P0-1",
234234
])
235235
})
236236
})

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -5603,10 +5603,10 @@ preact-render-to-string@^5.2.4:
56035603
dependencies:
56045604
pretty-format "^3.8.0"
56055605

5606-
preact@10.11.0:
5607-
version "10.11.0"
5608-
resolved "https://registry.yarnpkg.com/preact/-/preact-10.11.0.tgz#26af45a0613f4e17a197cc39d7a1ea23e09b2532"
5609-
integrity sha512-Fk6+vB2kb6mSJfDgODq0YDhMfl0HNtK5+Uc9QqECO4nlyPAQwCI+BKyWO//idA7ikV7o+0Fm6LQmNuQi1wXI1w==
5606+
preact@10.22.1:
5607+
version "10.22.1"
5608+
resolved "https://registry.yarnpkg.com/preact/-/preact-10.22.1.tgz#6a3589973fe0c6e53211091607d31f4b7b27334d"
5609+
integrity sha512-jRYbDDgMpIb5LHq3hkI0bbl+l/TQ9UnkdQ0ww+lp+4MMOdqaUYdFc5qeyP+IV8FAd/2Em7drVPeKdQxsiWCf/A==
56105610

56115611
prelude-ls@~1.1.2:
56125612
version "1.1.2"

0 commit comments

Comments
 (0)