Skip to content

Commit 3330788

Browse files
committed
chore: Use React 19 RC
There's now a peer dependency on the latest Next.js canaries onto React 19, so until it is officially released, we'll have to use the `rc` dist tag. Unfortunately, React 19 types don't export the `cache` experimental feature, which Next.js embeds. So we have to cheat a bit with TypeScript here. This fixes the canary test build. There are no public changes to deps in `nuqs`, so intermediary releases until Next 15 / React 19 are published should be possible without breaking semver in dependent apps.
1 parent 6ad2238 commit 3330788

File tree

5 files changed

+90
-29
lines changed

5 files changed

+90
-29
lines changed

packages/e2e/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
"dependencies": {
2323
"next": "14.2.3",
2424
"nuqs": "workspace:*",
25-
"react": "^18.3.1",
26-
"react-dom": "^18.3.1"
25+
"react": "rc",
26+
"react-dom": "rc"
2727
},
2828
"devDependencies": {
2929
"@types/node": "^20.12.8",
30-
"@types/react": "^18.3.1",
30+
"@types/react": "^18.3.2",
3131
"@types/react-dom": "^18.3.0",
3232
"@types/semver": "^7.5.8",
3333
"@types/webpack": "^5.28.5",

packages/nuqs/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@
7272
"devDependencies": {
7373
"@size-limit/preset-small-lib": "^11.1.2",
7474
"@types/node": "^20.12.8",
75-
"@types/react": "^18.3.1",
75+
"@types/react": "^18.3.2",
7676
"@types/react-dom": "^18.3.0",
7777
"next": "14.2.3",
7878
"npm-run-all": "^4.1.5",
79-
"react": "^18.3.1",
80-
"react-dom": "^18.3.1",
79+
"react": "rc",
80+
"react-dom": "rc",
8181
"size-limit": "^11.1.2",
8282
"tsd": "^0.30.7",
8383
"tsup": "^8.0.2",

packages/nuqs/src/cache.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-expect-error (not exported in types for React 19 beta, but available in Next.js)
12
import { cache } from 'react'
23
import { error } from './errors'
34
import type { ParserBuilder } from './parsers'
@@ -29,7 +30,7 @@ export function createSearchParamsCache<
2930
// whereas a simple object would be bound to the lifecycle of the process,
3031
// which may be reused between requests in a serverless environment
3132
// (warm lambdas on Vercel or AWS).
32-
const getCache = cache<() => Cache>(() => ({
33+
const getCache: () => Cache = cache<() => Cache>(() => ({
3334
searchParams: {}
3435
}))
3536
function parse(searchParams: SearchParams) {

packages/nuqs/src/tests/parsers.test-d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react'
12
import { expectError, expectType } from 'tsd'
23
import { parseAsString } from '../../dist'
34

pnpm-lock.yaml

+81-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)