Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: upgrade next to 15.0.0-canary.173, react to 19.0.0-rc-3edc000d-20240926 in the monorepo #8489

Merged
merged 5 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions app/(payload)/admin/[[...segments]]/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import type { Metadata } from 'next'

import config from '@payload-config'
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
import { NotFoundPage, generatePageMetadata } from '@payloadcms/next/views'
import { generatePageMetadata, NotFoundPage } from '@payloadcms/next/views'

import { importMap } from '../importMap.js'

type Args = {
params: {
params: Promise<{
segments: string[]
}
searchParams: {
}>
searchParams: Promise<{
[key: string]: string | string[]
}
}>
}

export const generateMetadata = ({ params, searchParams }: Args): Promise<Metadata> =>
Expand Down
10 changes: 5 additions & 5 deletions app/(payload)/admin/[[...segments]]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import type { Metadata } from 'next'

import config from '@payload-config'
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
import { RootPage, generatePageMetadata } from '@payloadcms/next/views'
import { generatePageMetadata, RootPage } from '@payloadcms/next/views'

import { importMap } from '../importMap.js'

type Args = {
params: {
params: Promise<{
segments: string[]
}
searchParams: {
}>
searchParams: Promise<{
[key: string]: string | string[]
}
}>
}

export const generateMetadata = ({ params, searchParams }: Args): Promise<Metadata> =>
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"devDependencies": {
"@jest/globals": "29.7.0",
"@libsql/client": "0.6.2",
"@next/bundle-analyzer": "15.0.0-canary.160",
"@next/bundle-analyzer": "15.0.0-canary.173",
"@payloadcms/db-postgres": "workspace:*",
"@payloadcms/eslint-config": "workspace:*",
"@payloadcms/eslint-plugin": "workspace:*",
Expand Down Expand Up @@ -143,15 +143,15 @@
"lint-staged": "15.2.7",
"minimist": "1.2.8",
"mongodb-memory-server": "^9.0",
"next": "15.0.0-canary.160",
"next": "15.0.0-canary.173",
"open": "^10.1.0",
"p-limit": "^5.0.0",
"playwright": "1.46.0",
"playwright-core": "1.46.0",
"prettier": "3.3.3",
"prompts": "2.4.2",
"react": "19.0.0-rc-5dcb0097-20240918",
"react-dom": "19.0.0-rc-5dcb0097-20240918",
"react": "19.0.0-rc-3edc000d-20240926",
"react-dom": "19.0.0-rc-3edc000d-20240926",
"rimraf": "3.0.2",
"semver": "^7.5.4",
"sharp": "0.32.6",
Expand All @@ -165,8 +165,8 @@
"typescript": "5.6.2"
},
"peerDependencies": {
"react": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918",
"react-dom": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918"
"react": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926",
"react-dom": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926"
},
"packageManager": "pnpm@9.7.1",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/live-preview-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
"payload": "workspace:*"
},
"peerDependencies": {
"react": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918",
"react-dom": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918"
"react": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926",
"react-dom": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926"
},
"publishConfig": {
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@next/eslint-plugin-next": "15.0.0-canary.160",
"@next/eslint-plugin-next": "15.0.0-canary.173",
"@payloadcms/eslint-config": "workspace:*",
"@types/busboy": "1.5.4",
"@types/react": "npm:types-react@19.0.0-rc.1",
Expand All @@ -112,7 +112,7 @@
},
"peerDependencies": {
"graphql": "^16.8.1",
"next": "^15.0.0-canary.160",
"next": "^15.0.0-canary.173",
"payload": "workspace:*"
},
"engines": {
Expand Down
12 changes: 6 additions & 6 deletions packages/next/src/layouts/Root/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,25 +66,25 @@ export const RootLayout = async ({
dependencyVersions: {
next: {
required: false,
version: '>=15.0.0-canary.160',
version: '>=15.0.0-canary.173',
},
react: {
customVersionParser: customReactVersionParser,
required: false,
version: '>=19.0.0-rc-5dcb0097-20240918',
version: '>=19.0.0-rc-3edc000d-20240926',
},
'react-dom': {
customVersionParser: customReactVersionParser,
required: false,
version: '>=19.0.0-rc-5dcb0097-20240918',
version: '>=19.0.0-rc-3edc000d-20240926',
},
},
})
}

const config = await configPromise

const headers = getHeaders()
const headers = await getHeaders()
const cookies = parseCookies(headers)

const languageCode = getRequestLanguage({
Expand Down Expand Up @@ -131,10 +131,10 @@ export const RootLayout = async ({
[],
)

// eslint-disable-next-line @typescript-eslint/require-await
async function switchLanguageServerAction(lang: string): Promise<void> {
'use server'
nextCookies().set({
const cookies = await nextCookies()
cookies.set({
name: `${config.cookiePrefix || 'payload'}-lng`,
path: '/',
value: lang,
Expand Down
14 changes: 9 additions & 5 deletions packages/next/src/routes/rest/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ export const OPTIONS =

export const GET =
(config: Promise<SanitizedConfig> | SanitizedConfig) =>
async (request: Request, { params: { slug } }: { params: { slug: string[] } }) => {
async (request: Request, { params: paramsPromise }: { params: Promise<{ slug: string[] }> }) => {
const { slug } = await paramsPromise
const [slug1, slug2, slug3, slug4] = slug
let req: PayloadRequest
let res: Response
Expand Down Expand Up @@ -429,15 +430,16 @@ export const GET =

export const POST =
(config: Promise<SanitizedConfig> | SanitizedConfig) =>
async (request: Request, { params: { slug } }: { params: { slug: string[] } }) => {
async (request: Request, { params: paramsPromise }: { params: Promise<{ slug: string[] }> }) => {
const { slug } = await paramsPromise
const [slug1, slug2, slug3, slug4] = slug
let req: PayloadRequest
let res: Response
let collection: Collection

const overrideHttpMethod = request.headers.get('X-HTTP-Method-Override')
if (overrideHttpMethod === 'GET') {
return await GET(config)(request, { params: { slug } })
return await GET(config)(request, { params: paramsPromise })
}

try {
Expand Down Expand Up @@ -619,7 +621,8 @@ export const POST =

export const DELETE =
(config: Promise<SanitizedConfig> | SanitizedConfig) =>
async (request: Request, { params: { slug } }: { params: { slug: string[] } }) => {
async (request: Request, { params: paramsPromise }: { params: Promise<{ slug: string[] }> }) => {
const { slug } = await paramsPromise
const [slug1, slug2] = slug
let req: PayloadRequest
let res: Response
Expand Down Expand Up @@ -719,7 +722,8 @@ export const DELETE =

export const PATCH =
(config: Promise<SanitizedConfig> | SanitizedConfig) =>
async (request: Request, { params: { slug } }: { params: { slug: string[] } }) => {
async (request: Request, { params: paramsPromise }: { params: Promise<{ slug: string[] }> }) => {
const { slug } = await paramsPromise
const [slug1, slug2] = slug
let req: PayloadRequest
let res: Response
Expand Down
2 changes: 1 addition & 1 deletion packages/next/src/utilities/getNextRequestI18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ export const getNextRequestI18n = async <
return (await initI18n({
config: config.i18n,
context: 'client',
language: getRequestLanguage({ config, cookies: cookies(), headers: headers() }),
language: getRequestLanguage({ config, cookies: await cookies(), headers: await headers() }),
})) as any
}
2 changes: 1 addition & 1 deletion packages/next/src/utilities/initPage/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const initPage = async ({
route,
searchParams,
}: Args): Promise<InitPageResult> => {
const headers = getHeaders()
const headers = await getHeaders()
const payload = await getPayloadHMR({ config: configPromise, importMap })
const queryString = `${qs.stringify(searchParams ?? {}, { addQueryPrefix: true })}`

Expand Down
2 changes: 1 addition & 1 deletion packages/next/src/utilities/initReq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type Result = {
export const initReq = cache(async function (config: SanitizedConfig): Promise<Result> {
const payload = await getPayloadHMR({ config })

const headers = getHeaders()
const headers = await getHeaders()
const cookies = parseCookies(headers)

const languageCode = getRequestLanguage({
Expand Down
15 changes: 9 additions & 6 deletions packages/next/src/views/NotFound/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,22 @@ export type GenerateViewMetadata = (args: {
export const NotFoundPage = async ({
config: configPromise,
importMap,
params,
searchParams,
params: paramsPromise,
searchParams: searchParamsPromise,
}: {
config: Promise<SanitizedConfig>
importMap: ImportMap
params: {
params: Promise<{
segments: string[]
}
searchParams: {
}>
searchParams: Promise<{
[key: string]: string | string[]
}
}>
}) => {
const config = await configPromise
const { routes: { admin: adminRoute } = {} } = config

const searchParams = await searchParamsPromise
const initPageResult = await initPage({
config,
importMap,
Expand All @@ -64,6 +65,8 @@ export const NotFoundPage = async ({
searchParams,
})

const params = await paramsPromise

return (
<DefaultTemplate
i18n={initPageResult.req.i18n}
Expand Down
15 changes: 9 additions & 6 deletions packages/next/src/views/Root/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ export type GenerateViewMetadata = (args: {
export const RootPage = async ({
config: configPromise,
importMap,
params,
searchParams,
params: paramsPromise,
searchParams: searchParamsPromise,
}: {
readonly config: Promise<SanitizedConfig>
readonly importMap: ImportMap
readonly params: {
readonly params: Promise<{
segments: string[]
}
readonly searchParams: {
}>
readonly searchParams: Promise<{
[key: string]: string | string[]
}
}>
}) => {
const config = await configPromise

Expand All @@ -45,13 +45,16 @@ export const RootPage = async ({
routes: { admin: adminRoute },
} = config

const params = await paramsPromise
const currentRoute = formatAdminURL({
adminRoute,
path: `${Array.isArray(params.segments) ? `/${params.segments.join('/')}` : ''}`,
})

const segments = Array.isArray(params.segments) ? params.segments : []

const searchParams = await searchParamsPromise

const { DefaultView, initPageOptions, templateClassName, templateType } = getViewFromConfig({
adminRoute,
config,
Expand Down
14 changes: 9 additions & 5 deletions packages/next/src/views/Root/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,21 @@ const oneSegmentMeta = {

type Args = {
config: Promise<SanitizedConfig>
params: {
params: Promise<{
[key: string]: string | string[]
}
searchParams: {
}>
searchParams: Promise<{
[key: string]: string | string[]
}
}>
}

export const generatePageMetadata = async ({ config: configPromise, params }: Args) => {
export const generatePageMetadata = async ({
config: configPromise,
params: paramsPromise,
}: Args) => {
const config = await configPromise

const params = await paramsPromise
const segments = Array.isArray(params.segments) ? params.segments : []

const currentRoute = `/${segments.join('/')}`
Expand Down
2 changes: 1 addition & 1 deletion packages/payload/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
},
"dependencies": {
"@monaco-editor/react": "4.6.0",
"@next/env": "^15.0.0-canary.160",
"@next/env": "^15.0.0-canary.173",
"@payloadcms/translations": "workspace:*",
"@types/busboy": "1.5.4",
"ajv": "8.17.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-form-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
},
"peerDependencies": {
"payload": "workspace:*",
"react": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918",
"react-dom": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918"
"react": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926",
"react-dom": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926"
},
"publishConfig": {
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
},
"peerDependencies": {
"payload": "workspace:*",
"react": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918",
"react-dom": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918"
"react": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926",
"react-dom": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926"
},
"publishConfig": {
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-sentry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
},
"peerDependencies": {
"payload": "workspace:*",
"react": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918",
"react-dom": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918"
"react": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926",
"react-dom": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926"
},
"publishConfig": {
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-seo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
},
"peerDependencies": {
"payload": "workspace:*",
"react": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918",
"react-dom": "^19.0.0 || ^19.0.0-rc-5dcb0097-20240918"
"react": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926",
"react-dom": "^19.0.0 || ^19.0.0-rc-3edc000d-20240926"
},
"publishConfig": {
"exports": {
Expand Down
Loading