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

Add connection() as a new dynamic API #69949

Draft
wants to merge 15 commits into
base: canary
Choose a base branch
from

Conversation

gnoff
Copy link
Contributor

@gnoff gnoff commented Sep 11, 2024

In #68812 I updated most dynamic APIs to be async. One API that was not udpated was unstable_noStore(). This API is marked as unstable and doesn't quite fit the semantics we're exploring with dynamicIO and partial prerendering and so rather than converting it to be async we're going to deprecate it and replace it with an entirely new API.

This PR doesn't actually deprecate anything yet but it does introduce connection().

The idea with connection is that you are waiting until there is a real user Request before proceeding. In the context of prerendering no Request will ever happen so the page cannot produce a static result. (this is similar to how unstable_noStore() works today).

In a PPR context the currently rendering component won't resolve but a parent Suspense boundary can still statically render a fallback.

connect() returns a Promise<void>. It is tempting to call the API request() and return a Promise<Request> however we have to guard access to the underlying Request carefully to ensure we can maximally prerender pages and to avoid confusion and maybe some frustration we are naming it connection since this doesn't imply a specific data set that might be returned.

import { connection } from 'next/server'

async function MyServerComponent() {
  await connection()
  // everthing after this point will be excluded from prerendering
  const rand = Math.random()
  return <span>{rand}</span>
}

@ijjk
Copy link
Member

ijjk commented Sep 11, 2024

Failing test suites

Commit: 7a3cd6d

__NEXT_EXPERIMENTAL_PPR=true pnpm test-dev test/e2e/app-dir/dynamic-io/dynamic-io.connection.test.ts (PPR)

  • dynamic-io > should be able to pass connection as a promise to another component and trigger an intermediate Suspense boundary
Expand output

● dynamic-io › should be able to pass connection as a promise to another component and trigger an intermediate Suspense boundary

expect(received).toBe(expected) // Object.is equality

Expected: "at runtime"
Received: ""

  68 |       if (isNextDev) {
  69 |         expect($('#layout').text()).toBe('at runtime')
> 70 |         expect($('#fallback').text()).toBe('at runtime')
     |                                       ^
  71 |         expect($('#page').text()).toBe('at runtime')
  72 |       } else {
  73 |         expect($('#layout').text()).toBe('at buildtime')

  at Object.toBe (e2e/app-dir/dynamic-io/dynamic-io.connection.test.ts:70:39)

Read more about building and testing Next.js in contributing.md.

__NEXT_EXPERIMENTAL_PPR=true pnpm test-start test/e2e/app-dir/dynamic-data/dynamic-data.test.ts (PPR)

  • dynamic-data with dynamic = "error" > error when the build when dynamic = "error" and dynamic data is read
Expand output

● dynamic-data with dynamic = "error" › error when the build when dynamic = "error" and dynamic data is read

expect(received).toMatch(expected)

Expected substring: "Error: Route /headers with `dynamic = \"error\"` couldn't be rendered statically because it used `headers`"
Received string:    " ⚠ `experimental.ppr` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ⚠ `experimental.pprFallbacks` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ⚠ `experimental.ppr` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ⚠ `experimental.pprFallbacks` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
  ▲ Next.js 15.0.0-canary.166
  - Experiments (use with caution):
    · prerenderEarlyExit·
   Creating an optimized production build ...
 ⚠ `experimental.ppr` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ⚠ `experimental.pprFallbacks` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ⚠ Compiled with warnings·
./app/connection/page.js
Attempted import error: 'next/server' does not contain a default export (imported as 'Server').·
Import trace for requested module:
./app/connection/page.js·
 ⚠ `experimental.ppr` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ⚠ `experimental.pprFallbacks` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ⚠ `experimental.ppr` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ⚠ `experimental.pprFallbacks` has been defaulted to `true` because `__NEXT_EXPERIMENTAL_PPR` was set to `true` during testing.
 ✓ Compiled successfully
   Linting and checking validity of types ...
   Collecting page data ...
Server undefined
   Generating static pages (0/9) ...·
Error occurred prerendering page \"/routes/next-url/error\". Read more: https://nextjs.org/docs/messages/prerender-error·
Error: Route /routes/next-url/error with `dynamic = \"error\"` couldn't be rendered statically because it used `nextUrl.toString`.

  at Object.get (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-route-experimental.runtime.prod.js:14:55976)
  at p (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/app/routes/next-url/error/route.js:1:761)
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-route-experimental.runtime.prod.js:14:52627
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/server/lib/trace/tracer.js:171:36
  at NoopContextManager.with (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:7062)
  at ContextAPI.with (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:518)
  at NoopTracer.startActiveSpan (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:18093)
  at ProxyTracer.startActiveSpan (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:18854)
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/server/lib/trace/tracer.js:153:103
  at NoopContextManager.with (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:7062)
  Failed to build /routes/next-url/error/route: /routes/next-url/error after 1 attempts.·
  Error occurred prerendering page \"/cookies\". Read more: https://nextjs.org/docs/messages/prerender-error·
  Error: Route /cookies with `dynamic = \"error\"` couldn't be rendered statically because it used `cookies`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering
  at f (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/chunks/421.js:1:1035)
  at a (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/app/cookies/page.js:1:2432)
  at eA (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:13936)
  at e (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:18027)
  at eH (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:18489)
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:15470
  at Array.toJSON (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:16157)
      at stringify (<anonymous>)
  at eY (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:27851)
  at eQ (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:28081)·
  Error occurred prerendering page \"/routes/form-data/error\". Read more: https://nextjs.org/docs/messages/prerender-error·
  Error: Route /routes/form-data/error with `dynamic = \"error\"` couldn't be rendered statically because it used `request.formData`.
  at Object.get (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-route-experimental.runtime.prod.js:14:55627)
  at p (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/app/routes/form-data/error/route.js:1:750)
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-route-experimental.runtime.prod.js:14:52627
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/server/lib/trace/tracer.js:171:36
  at NoopContextManager.with (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:7062)
  at ContextAPI.with (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:518)
  at NoopTracer.startActiveSpan (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:18093)
  at ProxyTracer.startActiveSpan (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:18854)
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/server/lib/trace/tracer.js:153:103
  at NoopContextManager.with (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/@opentelemetry/api/index.js:1:7062)·
  Error occurred prerendering page \"/connection\". Read more: https://nextjs.org/docs/messages/prerender-error·
  Error: Route /connection with `dynamic = \"error\"` couldn't be rendered statically because it used `connection`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering
  at c (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/app/connection/page.js:1:21793)
  at s (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/app/connection/page.js:1:2278)
  at eA (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:13936)
  at e (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:18027)
  at eH (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:18489)
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:15470
  at Array.toJSON (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:16157)
      at stringify (<anonymous>)
  at eY (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:27851)
  at eQ (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:28081)·
  Error occurred prerendering page \"/search\". Read more: https://nextjs.org/docs/messages/prerender-error·
  Error: Route /search with `dynamic = \"error\"` couldn't be rendered statically because it used `await searchParams`, `searchParams.then`, or similar. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering
  at s (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/chunks/69.js:2:30735)
  at Object.get (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/chunks/69.js:2:27921)
  at i (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/.next/server/app/search/page.js:1:3005)
  at eA (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:13936)
  at e (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:18027)
  at eH (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:18489)
  at ../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:15470
  at Array.toJSON (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:16157)
      at stringify (<anonymous>)
  at eY (../../../../../../tmp/next-install-2bd3e8cf4163db8dc31c71f56417bc514dfc688e1ef5de8cfa8e3612274cbac8/node_modules/.pnpm/file+..+next-repo-c8868247f01d14025fd1d1f88a9167c7d0db78211836ae671005adc2c4380575+packages+n_jsckeinefuiby7aem2o337uc7i/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js:116:27851)
  Failed to build /cookies/page: /cookies after 1 attempts.
  Failed to build /routes/form-data/error/route: /routes/form-data/error after 1 attempts.
  Server undefined
  Failed to build /connection/page: /connection after 1 attempts.
  Failed to build /search/page: /search after 1 attempts.
     Generating static pages (2/9)···
  > Export encountered errors on following paths:
  	/connection/page: /connection
  	/cookies/page: /cookies
  	/headers/page: /headers
  	/routes/form-data/error/route: /routes/form-data/error
  	/routes/next-url/error/route: /routes/next-url/error
  	/search/page: /search
  "
  at Object.toMatch (e2e/app-dir/dynamic-data/dynamic-data.test.ts:246:30)

Read more about building and testing Next.js in contributing.md.

__NEXT_EXPERIMENTAL_PPR=true pnpm test-dev test/e2e/next-test/next-test.test.ts (PPR)

  • next test > first time setup > should correctly install missing dependencies and generate missing configuration file for first-time-setup-js
  • next test > first time setup > should correctly install missing dependencies and generate missing configuration file for first-time-setup-ts
Expand output

● next test › first time setup › should correctly install missing dependencies and generate missing configuration file for first-time-setup-js

expect(received).toContain(expected) // indexOf

Expected substring: "Successfully generated playwright.config.js. Create your first test and then run `next experimental-test`."
Received string:    "
Installing devDependencies (yarn):
- @playwright/test·
yarn add v1.22.19
info No lockfile found.
[1/4] Resolving packages...
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
"

  58 |           expect(stdout).toContain('Installing devDependencies')
  59 |           expect(stdout).toContain('@playwright/test')
> 60 |           expect(stdout).toContain(
     |                          ^
  61 |             `Successfully generated ${
  62 |               fixtureName === 'first-time-setup-js'
  63 |                 ? 'playwright.config.js'

  at toContain (e2e/next-test/next-test.test.ts:60:26)

● next test › first time setup › should correctly install missing dependencies and generate missing configuration file for first-time-setup-ts

expect(received).toContain(expected) // indexOf

Expected substring: "Successfully generated playwright.config.ts. Create your first test and then run `next experimental-test`."
Received string:    "
Installing devDependencies (yarn):
- @playwright/test·
yarn add v1.22.19
info No lockfile found.
[1/4] Resolving packages...
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
"

  58 |           expect(stdout).toContain('Installing devDependencies')
  59 |           expect(stdout).toContain('@playwright/test')
> 60 |           expect(stdout).toContain(
     |                          ^
  61 |             `Successfully generated ${
  62 |               fixtureName === 'first-time-setup-js'
  63 |                 ? 'playwright.config.js'

  at toContain (e2e/next-test/next-test.test.ts:60:26)

Read more about building and testing Next.js in contributing.md.

@ijjk
Copy link
Member

ijjk commented Sep 11, 2024

Stats from current PR

Default Build (Increase detected ⚠️)
General Overall increase ⚠️
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
buildDuration 23s 23s N/A
buildDurationCached 11s 9.7s N/A
nodeModulesSize 359 MB 360 MB ⚠️ +1.5 MB
nextStartRea..uration (ms) 502ms 521ms N/A
Client Bundles (main, webpack)
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
2120-HASH.js gzip 5.25 kB 5.26 kB N/A
2893-HASH.js gzip 43.1 kB 41.2 kB N/A
4799ad3f-HASH.js gzip 52.8 kB 52.8 kB N/A
6087.HASH.js gzip 170 B 169 B N/A
framework-HASH.js gzip 57.6 kB 57.6 kB N/A
main-app-HASH.js gzip 228 B 230 B N/A
main-HASH.js gzip 32.7 kB 32.7 kB N/A
webpack-HASH.js gzip 1.71 kB 1.71 kB N/A
Overall change 0 B 0 B
Legacy Client Bundles (polyfills)
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
polyfills-HASH.js gzip 39.4 kB 39.4 kB
Overall change 39.4 kB 39.4 kB
Client Pages
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
_app-HASH.js gzip 193 B 193 B
_error-HASH.js gzip 192 B 192 B
amp-HASH.js gzip 511 B 510 B N/A
css-HASH.js gzip 343 B 343 B
dynamic-HASH.js gzip 1.84 kB 1.84 kB N/A
edge-ssr-HASH.js gzip 264 B 264 B
head-HASH.js gzip 364 B 363 B N/A
hooks-HASH.js gzip 392 B 392 B
image-HASH.js gzip 4.41 kB 4.4 kB N/A
index-HASH.js gzip 269 B 268 B N/A
link-HASH.js gzip 2.78 kB 2.78 kB N/A
routerDirect..HASH.js gzip 327 B 329 B N/A
script-HASH.js gzip 397 B 392 B N/A
withRouter-HASH.js gzip 325 B 325 B
1afbb74e6ecf..834.css gzip 106 B 106 B
Overall change 1.81 kB 1.81 kB
Client Build Manifests
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
_buildManifest.js gzip 751 B 748 B N/A
Overall change 0 B 0 B
Rendered Page Sizes
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
index.html gzip 523 B 523 B
link.html gzip 537 B 538 B N/A
withRouter.html gzip 518 B 520 B N/A
Overall change 523 B 523 B
Edge SSR bundle Size Overall increase ⚠️
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
edge-ssr.js gzip 128 kB 128 kB N/A
page.js gzip 179 kB 180 kB ⚠️ +1.07 kB
Overall change 179 kB 180 kB ⚠️ +1.07 kB
Middleware size
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
middleware-b..fest.js gzip 670 B 670 B
middleware-r..fest.js gzip 156 B 154 B N/A
middleware.js gzip 29.8 kB 29.8 kB N/A
edge-runtime..pack.js gzip 844 B 844 B
Overall change 1.51 kB 1.51 kB
Next Runtimes Overall increase ⚠️
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
973-experime...dev.js gzip 322 B 322 B
973.runtime.dev.js gzip 314 B 314 B
app-page-exp...dev.js gzip 318 kB 318 kB ⚠️ +570 B
app-page-exp..prod.js gzip 126 kB 126 kB ⚠️ +230 B
app-page-tur..prod.js gzip 139 kB 139 kB ⚠️ +226 B
app-page-tur..prod.js gzip 134 kB 134 kB ⚠️ +225 B
app-page.run...dev.js gzip 308 kB 309 kB ⚠️ +581 B
app-page.run..prod.js gzip 121 kB 121 kB ⚠️ +224 B
app-route-ex...dev.js gzip 32.1 kB 33.6 kB ⚠️ +1.58 kB
app-route-ex..prod.js gzip 21.7 kB 22.3 kB ⚠️ +585 B
app-route-tu..prod.js gzip 21.7 kB 22.3 kB ⚠️ +586 B
app-route-tu..prod.js gzip 21.5 kB 22.1 kB ⚠️ +580 B
app-route.ru...dev.js gzip 33.7 kB 35.3 kB ⚠️ +1.59 kB
app-route.ru..prod.js gzip 21.5 kB 22.1 kB ⚠️ +581 B
pages-api-tu..prod.js gzip 9.62 kB 9.62 kB
pages-api.ru...dev.js gzip 11.5 kB 11.5 kB
pages-api.ru..prod.js gzip 9.61 kB 9.61 kB
pages-turbo...prod.js gzip 20.8 kB 20.8 kB
pages.runtim...dev.js gzip 26.4 kB 26.4 kB
pages.runtim..prod.js gzip 20.8 kB 20.8 kB
server.runti..prod.js gzip 57.9 kB 57.1 kB N/A
Overall change 1.4 MB 1.41 MB ⚠️ +7.56 kB
build cache Overall increase ⚠️
vercel/next.js canary gnoff/next.js async-dynamic-connection Change
0.pack gzip 1.66 MB 1.66 MB ⚠️ +6.5 kB
index.pack gzip 132 kB 132 kB N/A
Overall change 1.66 MB 1.66 MB ⚠️ +6.5 kB
Diff details
Diff for page.js
@@ -15,7 +15,7 @@
       /***/
     },
 
-    /***/ 8329: /***/ (
+    /***/ 543: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -30,7 +30,7 @@
         default: () => /* binding */ nHandler,
       });
 
-      // NAMESPACE OBJECT: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?name=app%2Fapp-edge-ssr%2Fpage&page=%2Fapp-edge-ssr%2Fpage&pagePath=private-next-app-dir%2Fapp-edge-ssr%2Fpage.js&appDir=%2Ftmp%2Fnext-statsJcpbGc%2Fstats-app%2Fapp&appPaths=%2Fapp-edge-ssr%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&flyingShuttle=false&preferredRegion=&middlewareConfig=e30%3D!./app/app-edge-ssr/page.js?__next_edge_ssr_entry__
+      // NAMESPACE OBJECT: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?name=app%2Fapp-edge-ssr%2Fpage&page=%2Fapp-edge-ssr%2Fpage&pagePath=private-next-app-dir%2Fapp-edge-ssr%2Fpage.js&appDir=%2Ftmp%2Fnext-statsJcpbGc%2Fstats-app%2Fapp&appPaths=%2Fapp-edge-ssr%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&flyingShuttle=false&preferredRegion=&middlewareConfig=e30%3D!./app/app-edge-ssr/page.js?__next_edge_ssr_entry__
       var page_next_edge_ssr_entry_namespaceObject = {};
       __webpack_require__.r(page_next_edge_ssr_entry_namespaceObject);
       __webpack_require__.d(page_next_edge_ssr_entry_namespaceObject, {
@@ -44,17 +44,23 @@
           entry_base /* RenderFromTemplateContext */.b5,
         __next_app__: () => __next_app__,
         actionAsyncStorage: () => entry_base /* actionAsyncStorage */.Wz,
-        createDynamicallyTrackedParams: () =>
-          entry_base /* createDynamicallyTrackedParams */.eV,
-        createDynamicallyTrackedSearchParams: () =>
-          entry_base /* createDynamicallyTrackedSearchParams */.rL,
-        createUntrackedSearchParams: () =>
-          entry_base /* createUntrackedSearchParams */.S5,
+        createPrerenderParamsForClientSegment: () =>
+          entry_base /* createPrerenderParamsForClientSegment */.XH,
+        createPrerenderSearchParamsForClientPage: () =>
+          entry_base /* createPrerenderSearchParamsForClientPage */.$h,
+        createServerParamsForMetadata: () =>
+          entry_base /* createServerParamsForMetadata */.qj,
+        createServerParamsForServerSegment: () =>
+          entry_base /* createServerParamsForServerSegment */.p5,
+        createServerSearchParamsForMetadata: () =>
+          entry_base /* createServerSearchParamsForMetadata */.Kn,
+        createServerSearchParamsForServerPage: () =>
+          entry_base /* createServerSearchParamsForServerPage */.Bt,
         decodeAction: () => entry_base /* decodeAction */.Hs,
         decodeFormState: () => entry_base /* decodeFormState */.dH,
         decodeReply: () => entry_base /* decodeReply */.kf,
         pages: () => pages,
-        patchFetch: () => entry_base /* patchFetch */.XH,
+        patchFetch: () => entry_base /* patchFetch */.eH,
         preconnect: () => entry_base /* preconnect */.$P,
         preloadFont: () => entry_base /* preloadFont */.C5,
         preloadStyle: () => entry_base /* preloadStyle */.oH,
@@ -70,35 +76,35 @@
         tree: () => tree,
       });
 
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/web/globals.js
-      var globals = __webpack_require__(3663);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/web/adapter.js + 3 modules
-      var adapter = __webpack_require__(302);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/build/webpack/loaders/next-edge-ssr-loader/render.js + 85 modules
-      var render = __webpack_require__(2253);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/lib/incremental-cache/index.js + 3 modules
-      var incremental_cache = __webpack_require__(7458);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/app-render/app-render.js + 74 modules
-      var app_render = __webpack_require__(7615);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js
-      var module_compiled = __webpack_require__(7537);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/route-kind.js
-      var route_kind = __webpack_require__(4905);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/client/components/error-boundary.js
-      var error_boundary = __webpack_require__(4740);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/app-render/entry-base.js + 10 modules
-      var entry_base = __webpack_require__(6203); // CONCATENATED MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?name=app%2Fapp-edge-ssr%2Fpage&page=%2Fapp-edge-ssr%2Fpage&pagePath=private-next-app-dir%2Fapp-edge-ssr%2Fpage.js&appDir=%2Ftmp%2Fnext-statsJcpbGc%2Fstats-app%2Fapp&appPaths=%2Fapp-edge-ssr%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&flyingShuttle=false&preferredRegion=&middlewareConfig=e30%3D!./app/app-edge-ssr/page.js?__next_edge_ssr_entry__
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/web/globals.js
+      var globals = __webpack_require__(4950);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/web/adapter.js + 3 modules
+      var adapter = __webpack_require__(2858);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/build/webpack/loaders/next-edge-ssr-loader/render.js + 87 modules
+      var render = __webpack_require__(6886);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/lib/incremental-cache/index.js + 3 modules
+      var incremental_cache = __webpack_require__(7539);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/app-render/app-render.js + 74 modules
+      var app_render = __webpack_require__(8471);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js
+      var module_compiled = __webpack_require__(5259);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/route-kind.js
+      var route_kind = __webpack_require__(8281);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/client/components/error-boundary.js
+      var error_boundary = __webpack_require__(790);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/app-render/entry-base.js + 9 modules
+      var entry_base = __webpack_require__(6391); // CONCATENATED MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?name=app%2Fapp-edge-ssr%2Fpage&page=%2Fapp-edge-ssr%2Fpage&pagePath=private-next-app-dir%2Fapp-edge-ssr%2Fpage.js&appDir=%2Ftmp%2Fnext-statsJcpbGc%2Fstats-app%2Fapp&appPaths=%2Fapp-edge-ssr%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&flyingShuttle=false&preferredRegion=&middlewareConfig=e30%3D!./app/app-edge-ssr/page.js?__next_edge_ssr_entry__
       const module0 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 5931)
+          __webpack_require__.bind(__webpack_require__, 3867)
         );
       const module1 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 3697)
+          __webpack_require__.bind(__webpack_require__, 4592)
         );
       const page2 = () =>
         Promise.resolve(/* import() eager */).then(
-          __webpack_require__.bind(__webpack_require__, 2928)
+          __webpack_require__.bind(__webpack_require__, 4242)
         );
 
       // We inject the tree and pages here so that we can use them in the route
@@ -161,12 +167,12 @@
       });
 
       //# sourceMappingURL=app-page.js.map
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/lib/page-types.js
-      var page_types = __webpack_require__(203);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/app-render/encryption-utils.js
-      var encryption_utils = __webpack_require__(8791);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/esm/server/app-render/action-utils.js
-      var action_utils = __webpack_require__(5338); // CONCATENATED MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/dist/build/webpack/loaders/next-edge-ssr-loader/index.js?{"absolute500Path":"","absoluteAppPath":"next/dist/pages/_app","absoluteDocumentPath":"next/dist/pages/_document","absoluteErrorPath":"next/dist/pages/_error","absolutePagePath":"private-next-app-dir/app-edge-ssr/page.js","dev":false,"isServerComponent":true,"page":"/app-edge-ssr/page","stringifiedConfig":"eyJlbnYiOnt9LCJlc2xpbnQiOnsiaWdub3JlRHVyaW5nQnVpbGRzIjpmYWxzZX0sInR5cGVzY3JpcHQiOnsiaWdub3JlQnVpbGRFcnJvcnMiOmZhbHNlLCJ0c2NvbmZpZ1BhdGgiOiJ0c2NvbmZpZy5qc29uIn0sImRpc3REaXIiOiIubmV4dCIsImNsZWFuRGlzdERpciI6dHJ1ZSwiYXNzZXRQcmVmaXgiOiIiLCJjYWNoZU1heE1lbW9yeVNpemUiOjUyNDI4ODAwLCJjb25maWdPcmlnaW4iOiJuZXh0LmNvbmZpZy5qcyIsInVzZUZpbGVTeXN0ZW1QdWJsaWNSb3V0ZXMiOnRydWUsImdlbmVyYXRlRXRhZ3MiOnRydWUsInBhZ2VFeHRlbnNpb25zIjpbInRzeCIsInRzIiwianN4IiwianMiXSwicG93ZXJlZEJ5SGVhZGVyIjp0cnVlLCJjb21wcmVzcyI6dHJ1ZSwiaW1hZ2VzIjp7ImRldmljZVNpemVzIjpbNjQwLDc1MCw4MjgsMTA4MCwxMjAwLDE5MjAsMjA0OCwzODQwXSwiaW1hZ2VTaXplcyI6WzE2LDMyLDQ4LDY0LDk2LDEyOCwyNTYsMzg0XSwicGF0aCI6Ii9fbmV4dC9pbWFnZSIsImxvYWRlciI6ImRlZmF1bHQiLCJsb2FkZXJGaWxlIjoiIiwiZG9tYWlucyI6W10sImRpc2FibGVTdGF0aWNJbWFnZXMiOmZhbHNlLCJtaW5pbXVtQ2FjaGVUVEwiOjYwLCJmb3JtYXRzIjpbImltYWdlL3dlYnAiXSwiZGFuZ2Vyb3VzbHlBbGxvd1NWRyI6ZmFsc2UsImNvbnRlbnRTZWN1cml0eVBvbGljeSI6InNjcmlwdC1zcmMgJ25vbmUnOyBmcmFtZS1zcmMgJ25vbmUnOyBzYW5kYm94OyIsImNvbnRlbnREaXNwb3NpdGlvblR5cGUiOiJhdHRhY2htZW50IiwicmVtb3RlUGF0dGVybnMiOltdLCJ1bm9wdGltaXplZCI6ZmFsc2V9LCJkZXZJbmRpY2F0b3JzIjp7ImFwcElzclN0YXR1cyI6dHJ1ZSwiYnVpbGRBY3Rpdml0eSI6dHJ1ZSwiYnVpbGRBY3Rpdml0eVBvc2l0aW9uIjoiYm90dG9tLXJpZ2h0In0sIm9uRGVtYW5kRW50cmllcyI6eyJtYXhJbmFjdGl2ZUFnZSI6NjAwMDAsInBhZ2VzQnVmZmVyTGVuZ3RoIjo1fSwiYW1wIjp7ImNhbm9uaWNhbEJhc2UiOiIifSwiYmFzZVBhdGgiOiIiLCJzYXNzT3B0aW9ucyI6e30sInRyYWlsaW5nU2xhc2giOmZhbHNlLCJpMThuIjpudWxsLCJwcm9kdWN0aW9uQnJvd3NlclNvdXJjZU1hcHMiOmZhbHNlLCJleGNsdWRlRGVmYXVsdE1vbWVudExvY2FsZXMiOnRydWUsInNlcnZlclJ1bnRpbWVDb25maWciOnt9LCJwdWJsaWNSdW50aW1lQ29uZmlnIjp7fSwicmVhY3RQcm9kdWN0aW9uUHJvZmlsaW5nIjpmYWxzZSwicmVhY3RTdHJpY3RNb2RlIjpudWxsLCJyZWFjdE1heEhlYWRlcnNMZW5ndGgiOjYwMDAsImh0dHBBZ2VudE9wdGlvbnMiOnsia2VlcEFsaXZlIjp0cnVlfSwibG9nZ2luZyI6e30sInN0YXRpY1BhZ2VHZW5lcmF0aW9uVGltZW91dCI6NjAsIm1vZHVsYXJpemVJbXBvcnRzIjp7IkBtdWkvaWNvbnMtbWF0ZXJpYWwiOnsidHJhbnNmb3JtIjoiQG11aS9pY29ucy1tYXRlcmlhbC97e21lbWJlcn19In0sImxvZGFzaCI6eyJ0cmFuc2Zvcm0iOiJsb2Rhc2gve3ttZW1iZXJ9fSJ9fSwib3V0cHV0RmlsZVRyYWNpbmdSb290IjoiL3RtcC9uZXh0LXN0YXRzSmNwYkdjL3N0YXRzLWFwcCIsImV4cGVyaW1lbnRhbCI6eyJtdWx0aVpvbmVEcmFmdE1vZGUiOmZhbHNlLCJhcHBOYXZGYWlsSGFuZGxpbmciOmZhbHNlLCJwcmVyZW5kZXJFYXJseUV4aXQiOnRydWUsInNlcnZlck1pbmlmaWNhdGlvbiI6dHJ1ZSwic2VydmVyU291cmNlTWFwcyI6ZmFsc2UsImxpbmtOb1RvdWNoU3RhcnQiOmZhbHNlLCJjYXNlU2Vuc2l0aXZlUm91dGVzIjpmYWxzZSwicHJlbG9hZEVudHJpZXNPblN0YXJ0Ijp0cnVlLCJjbGllbnRSb3V0ZXJGaWx0ZXIiOnRydWUsImNsaWVudFJvdXRlckZpbHRlclJlZGlyZWN0cyI6ZmFsc2UsImZldGNoQ2FjaGVLZXlQcmVmaXgiOiIiLCJtaWRkbGV3YXJlUHJlZmV0Y2giOiJmbGV4aWJsZSIsIm9wdGltaXN0aWNDbGllbnRDYWNoZSI6dHJ1ZSwibWFudWFsQ2xpZW50QmFzZVBhdGgiOmZhbHNlLCJjcHVzIjoxOSwibWVtb3J5QmFzZWRXb3JrZXJzQ291bnQiOmZhbHNlLCJpc3JGbHVzaFRvRGlzayI6dHJ1ZSwid29ya2VyVGhyZWFkcyI6ZmFsc2UsIm9wdGltaXplQ3NzIjpmYWxzZSwibmV4dFNjcmlwdFdvcmtlcnMiOmZhbHNlLCJzY3JvbGxSZXN0b3JhdGlvbiI6ZmFsc2UsImV4dGVybmFsRGlyIjpmYWxzZSwiZGlzYWJsZU9wdGltaXplZExvYWRpbmciOmZhbHNlLCJnemlwU2l6ZSI6dHJ1ZSwiY3JhQ29tcGF0IjpmYWxzZSwiZXNtRXh0ZXJuYWxzIjp0cnVlLCJmdWxseVNwZWNpZmllZCI6ZmFsc2UsInN3Y1RyYWNlUHJvZmlsaW5nIjpmYWxzZSwiZm9yY2VTd2NUcmFuc2Zvcm1zIjpmYWxzZSwibGFyZ2VQYWdlRGF0YUJ5dGVzIjoxMjgwMDAsInR1cmJvIjp7InJvb3QiOiIvdG1wL25leHQtc3RhdHNKY3BiR2Mvc3RhdHMtYXBwIn0sInR5cGVkUm91dGVzIjpmYWxzZSwidHlwZWRFbnYiOmZhbHNlLCJwYXJhbGxlbFNlcnZlckNvbXBpbGVzIjpmYWxzZSwicGFyYWxsZWxTZXJ2ZXJCdWlsZFRyYWNlcyI6ZmFsc2UsInBwciI6ZmFsc2UsInBwckZhbGxiYWNrcyI6ZmFsc2UsIndlYnBhY2tNZW1vcnlPcHRpbWl6YXRpb25zIjpmYWxzZSwib3B0aW1pemVTZXJ2ZXJSZWFjdCI6dHJ1ZSwidXNlRWFybHlJbXBvcnQiOmZhbHNlLCJzdGFsZVRpbWVzIjp7ImR5bmFtaWMiOjAsInN0YXRpYyI6MzAwfSwiYWZ0ZXIiOmZhbHNlLCJzZXJ2ZXJDb21wb25lbnRzSG1yQ2FjaGUiOnRydWUsInN0YXRpY0dlbmVyYXRpb25NYXhDb25jdXJyZW5jeSI6OCwic3RhdGljR2VuZXJhdGlvbk1pblBhZ2VzUGVyV29ya2VyIjoyNSwiZHluYW1pY0lPIjpmYWxzZSwib3B0aW1pemVQYWNrYWdlSW1wb3J0cyI6WyJsdWNpZGUtcmVhY3QiLCJkYXRlLWZucyIsImxvZGFzaC1lcyIsInJhbWRhIiwiYW50ZCIsInJlYWN0LWJvb3RzdHJhcCIsImFob29rcyIsIkBhbnQtZGVzaWduL2ljb25zIiwiQGhlYWRsZXNzdWkvcmVhY3QiLCJAaGVhZGxlc3N1aS1mbG9hdC9yZWFjdCIsIkBoZXJvaWNvbnMvcmVhY3QvMjAvc29saWQiLCJAaGVyb2ljb25zL3JlYWN0LzI0L3NvbGlkIiwiQGhlcm9pY29ucy9yZWFjdC8yNC9vdXRsaW5lIiwiQHZpc3gvdmlzeCIsIkB0cmVtb3IvcmVhY3QiLCJyeGpzIiwiQG11aS9tYXRlcmlhbCIsIkBtdWkvaWNvbnMtbWF0ZXJpYWwiLCJyZWNoYXJ0cyIsInJlYWN0LXVzZSIsImVmZmVjdCIsIkBlZmZlY3Qvc2NoZW1hIiwiQGVmZmVjdC9wbGF0Zm9ybSIsIkBlZmZlY3QvcGxhdGZvcm0tbm9kZSIsIkBlZmZlY3QvcGxhdGZvcm0tYnJvd3NlciIsIkBlZmZlY3QvcGxhdGZvcm0tYnVuIiwiQGVmZmVjdC9zcWwiLCJAZWZmZWN0L3NxbC1tc3NxbCIsIkBlZmZlY3Qvc3FsLW15c3FsMiIsIkBlZmZlY3Qvc3FsLXBnIiwiQGVmZmVjdC9zcWwtc3F1bGl0ZS1ub2RlIiwiQGVmZmVjdC9zcWwtc3F1bGl0ZS1idW4iLCJAZWZmZWN0L3NxbC1zcXVsaXRlLXdhc20iLCJAZWZmZWN0L3NxbC1zcXVsaXRlLXJlYWN0LW5hdGl2ZSIsIkBlZmZlY3QvcnBjIiwiQGVmZmVjdC9ycGMtaHR0cCIsIkBlZmZlY3QvdHlwZWNsYXNzIiwiQGVmZmVjdC9leHBlcmltZW50YWwiLCJAZWZmZWN0L29wZW50ZWxlbWV0cnkiLCJAbWF0ZXJpYWwtdWkvY29yZSIsIkBtYXRlcmlhbC11aS9pY29ucyIsIkB0YWJsZXIvaWNvbnMtcmVhY3QiLCJtdWktY29yZSIsInJlYWN0LWljb25zL2FpIiwicmVhY3QtaWNvbnMvYmkiLCJyZWFjdC1pY29ucy9icyIsInJlYWN0LWljb25zL2NnIiwicmVhY3QtaWNvbnMvY2kiLCJyZWFjdC1pY29ucy9kaSIsInJlYWN0LWljb25zL2ZhIiwicmVhY3QtaWNvbnMvZmE2IiwicmVhY3QtaWNvbnMvZmMiLCJyZWFjdC1pY29ucy9maSIsInJlYWN0LWljb25zL2dpIiwicmVhY3QtaWNvbnMvZ28iLCJyZWFjdC1pY29ucy9nciIsInJlYWN0LWljb25zL2hpIiwicmVhY3QtaWNvbnMvaGkyIiwicmVhY3QtaWNvbnMvaW0iLCJyZWFjdC1pY29ucy9pbyIsInJlYWN0LWljb25zL2lvNSIsInJlYWN0LWljb25zL2xpYSIsInJlYWN0LWljb25zL2xpYiIsInJlYWN0LWljb25zL2x1IiwicmVhY3QtaWNvbnMvbWQiLCJyZWFjdC1pY29ucy9waSIsInJlYWN0LWljb25zL3JpIiwicmVhY3QtaWNvbnMvcngiLCJyZWFjdC1pY29ucy9zaSIsInJlYWN0LWljb25zL3NsIiwicmVhY3QtaWNvbnMvdGIiLCJyZWFjdC1pY29ucy90ZmkiLCJyZWFjdC1pY29ucy90aSIsInJlYWN0LWljb25zL3ZzYyIsInJlYWN0LWljb25zL3dpIl19LCJidW5kbGVQYWdlc1JvdXRlckRlcGVuZGVuY2llcyI6ZmFsc2UsImNvbmZpZ0ZpbGUiOiIvdG1wL25leHQtc3RhdHNKY3BiR2Mvc3RhdHMtYXBwL25leHQuY29uZmlnLmpzIiwiY29uZmlnRmlsZU5hbWUiOiJuZXh0LmNvbmZpZy5qcyJ9","pagesType":"app","appDirLoader":"bmV4dC1hcHAtbG9hZGVyP25hbWU9YXBwJTJGYXBwLWVkZ2Utc3NyJTJGcGFnZSZwYWdlPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZVBhdGg9cHJpdmF0ZS1uZXh0LWFwcC1kaXIlMkZhcHAtZWRnZS1zc3IlMkZwYWdlLmpzJmFwcERpcj0lMkZ0bXAlMkZuZXh0LXN0YXRzSmNwYkdjJTJGc3RhdHMtYXBwJTJGYXBwJmFwcFBhdGhzPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZUV4dGVuc2lvbnM9dHN4JnBhZ2VFeHRlbnNpb25zPXRzJnBhZ2VFeHRlbnNpb25zPWpzeCZwYWdlRXh0ZW5zaW9ucz1qcyZiYXNlUGF0aD0mYXNzZXRQcmVmaXg9Jm5leHRDb25maWdPdXRwdXQ9JmZseWluZ1NodXR0bGU9ZmFsc2UmcHJlZmVycmVkUmVnaW9uPSZtaWRkbGV3YXJlQ29uZmlnPWUzMCUzRCE=","sriEnabled":false,"middlewareConfig":"e30="}!
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/lib/page-types.js
+      var page_types = __webpack_require__(8438);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/app-render/encryption-utils.js
+      var encryption_utils = __webpack_require__(4011);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/esm/server/app-render/action-utils.js
+      var action_utils = __webpack_require__(9470); // CONCATENATED MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/dist/build/webpack/loaders/next-edge-ssr-loader/index.js?{"absolute500Path":"","absoluteAppPath":"next/dist/pages/_app","absoluteDocumentPath":"next/dist/pages/_document","absoluteErrorPath":"next/dist/pages/_error","absolutePagePath":"private-next-app-dir/app-edge-ssr/page.js","dev":false,"isServerComponent":true,"page":"/app-edge-ssr/page","stringifiedConfig":"eyJlbnYiOnt9LCJlc2xpbnQiOnsiaWdub3JlRHVyaW5nQnVpbGRzIjpmYWxzZX0sInR5cGVzY3JpcHQiOnsiaWdub3JlQnVpbGRFcnJvcnMiOmZhbHNlLCJ0c2NvbmZpZ1BhdGgiOiJ0c2NvbmZpZy5qc29uIn0sImRpc3REaXIiOiIubmV4dCIsImNsZWFuRGlzdERpciI6dHJ1ZSwiYXNzZXRQcmVmaXgiOiIiLCJjYWNoZU1heE1lbW9yeVNpemUiOjUyNDI4ODAwLCJjb25maWdPcmlnaW4iOiJuZXh0LmNvbmZpZy5qcyIsInVzZUZpbGVTeXN0ZW1QdWJsaWNSb3V0ZXMiOnRydWUsImdlbmVyYXRlRXRhZ3MiOnRydWUsInBhZ2VFeHRlbnNpb25zIjpbInRzeCIsInRzIiwianN4IiwianMiXSwicG93ZXJlZEJ5SGVhZGVyIjp0cnVlLCJjb21wcmVzcyI6dHJ1ZSwiaW1hZ2VzIjp7ImRldmljZVNpemVzIjpbNjQwLDc1MCw4MjgsMTA4MCwxMjAwLDE5MjAsMjA0OCwzODQwXSwiaW1hZ2VTaXplcyI6WzE2LDMyLDQ4LDY0LDk2LDEyOCwyNTYsMzg0XSwicGF0aCI6Ii9fbmV4dC9pbWFnZSIsImxvYWRlciI6ImRlZmF1bHQiLCJsb2FkZXJGaWxlIjoiIiwiZG9tYWlucyI6W10sImRpc2FibGVTdGF0aWNJbWFnZXMiOmZhbHNlLCJtaW5pbXVtQ2FjaGVUVEwiOjYwLCJmb3JtYXRzIjpbImltYWdlL3dlYnAiXSwiZGFuZ2Vyb3VzbHlBbGxvd1NWRyI6ZmFsc2UsImNvbnRlbnRTZWN1cml0eVBvbGljeSI6InNjcmlwdC1zcmMgJ25vbmUnOyBmcmFtZS1zcmMgJ25vbmUnOyBzYW5kYm94OyIsImNvbnRlbnREaXNwb3NpdGlvblR5cGUiOiJhdHRhY2htZW50IiwicmVtb3RlUGF0dGVybnMiOltdLCJ1bm9wdGltaXplZCI6ZmFsc2V9LCJkZXZJbmRpY2F0b3JzIjp7ImFwcElzclN0YXR1cyI6dHJ1ZSwiYnVpbGRBY3Rpdml0eSI6dHJ1ZSwiYnVpbGRBY3Rpdml0eVBvc2l0aW9uIjoiYm90dG9tLXJpZ2h0In0sIm9uRGVtYW5kRW50cmllcyI6eyJtYXhJbmFjdGl2ZUFnZSI6NjAwMDAsInBhZ2VzQnVmZmVyTGVuZ3RoIjo1fSwiYW1wIjp7ImNhbm9uaWNhbEJhc2UiOiIifSwiYmFzZVBhdGgiOiIiLCJzYXNzT3B0aW9ucyI6e30sInRyYWlsaW5nU2xhc2giOmZhbHNlLCJpMThuIjpudWxsLCJwcm9kdWN0aW9uQnJvd3NlclNvdXJjZU1hcHMiOmZhbHNlLCJleGNsdWRlRGVmYXVsdE1vbWVudExvY2FsZXMiOnRydWUsInNlcnZlclJ1bnRpbWVDb25maWciOnt9LCJwdWJsaWNSdW50aW1lQ29uZmlnIjp7fSwicmVhY3RQcm9kdWN0aW9uUHJvZmlsaW5nIjpmYWxzZSwicmVhY3RTdHJpY3RNb2RlIjpudWxsLCJyZWFjdE1heEhlYWRlcnNMZW5ndGgiOjYwMDAsImh0dHBBZ2VudE9wdGlvbnMiOnsia2VlcEFsaXZlIjp0cnVlfSwibG9nZ2luZyI6e30sInN0YXRpY1BhZ2VHZW5lcmF0aW9uVGltZW91dCI6NjAsIm1vZHVsYXJpemVJbXBvcnRzIjp7IkBtdWkvaWNvbnMtbWF0ZXJpYWwiOnsidHJhbnNmb3JtIjoiQG11aS9pY29ucy1tYXRlcmlhbC97e21lbWJlcn19In0sImxvZGFzaCI6eyJ0cmFuc2Zvcm0iOiJsb2Rhc2gve3ttZW1iZXJ9fSJ9fSwib3V0cHV0RmlsZVRyYWNpbmdSb290IjoiL3RtcC9uZXh0LXN0YXRzSmNwYkdjL3N0YXRzLWFwcCIsImV4cGVyaW1lbnRhbCI6eyJtdWx0aVpvbmVEcmFmdE1vZGUiOmZhbHNlLCJhcHBOYXZGYWlsSGFuZGxpbmciOmZhbHNlLCJwcmVyZW5kZXJFYXJseUV4aXQiOnRydWUsInNlcnZlck1pbmlmaWNhdGlvbiI6dHJ1ZSwic2VydmVyU291cmNlTWFwcyI6ZmFsc2UsImxpbmtOb1RvdWNoU3RhcnQiOmZhbHNlLCJjYXNlU2Vuc2l0aXZlUm91dGVzIjpmYWxzZSwicHJlbG9hZEVudHJpZXNPblN0YXJ0Ijp0cnVlLCJjbGllbnRSb3V0ZXJGaWx0ZXIiOnRydWUsImNsaWVudFJvdXRlckZpbHRlclJlZGlyZWN0cyI6ZmFsc2UsImZldGNoQ2FjaGVLZXlQcmVmaXgiOiIiLCJtaWRkbGV3YXJlUHJlZmV0Y2giOiJmbGV4aWJsZSIsIm9wdGltaXN0aWNDbGllbnRDYWNoZSI6dHJ1ZSwibWFudWFsQ2xpZW50QmFzZVBhdGgiOmZhbHNlLCJjcHVzIjoxOSwibWVtb3J5QmFzZWRXb3JrZXJzQ291bnQiOmZhbHNlLCJpc3JGbHVzaFRvRGlzayI6dHJ1ZSwid29ya2VyVGhyZWFkcyI6ZmFsc2UsIm9wdGltaXplQ3NzIjpmYWxzZSwibmV4dFNjcmlwdFdvcmtlcnMiOmZhbHNlLCJzY3JvbGxSZXN0b3JhdGlvbiI6ZmFsc2UsImV4dGVybmFsRGlyIjpmYWxzZSwiZGlzYWJsZU9wdGltaXplZExvYWRpbmciOmZhbHNlLCJnemlwU2l6ZSI6dHJ1ZSwiY3JhQ29tcGF0IjpmYWxzZSwiZXNtRXh0ZXJuYWxzIjp0cnVlLCJmdWxseVNwZWNpZmllZCI6ZmFsc2UsInN3Y1RyYWNlUHJvZmlsaW5nIjpmYWxzZSwiZm9yY2VTd2NUcmFuc2Zvcm1zIjpmYWxzZSwibGFyZ2VQYWdlRGF0YUJ5dGVzIjoxMjgwMDAsInR1cmJvIjp7InJvb3QiOiIvdG1wL25leHQtc3RhdHNKY3BiR2Mvc3RhdHMtYXBwIn0sInR5cGVkUm91dGVzIjpmYWxzZSwidHlwZWRFbnYiOmZhbHNlLCJwYXJhbGxlbFNlcnZlckNvbXBpbGVzIjpmYWxzZSwicGFyYWxsZWxTZXJ2ZXJCdWlsZFRyYWNlcyI6ZmFsc2UsInBwciI6ZmFsc2UsInBwckZhbGxiYWNrcyI6ZmFsc2UsIndlYnBhY2tNZW1vcnlPcHRpbWl6YXRpb25zIjpmYWxzZSwib3B0aW1pemVTZXJ2ZXJSZWFjdCI6dHJ1ZSwidXNlRWFybHlJbXBvcnQiOmZhbHNlLCJzdGFsZVRpbWVzIjp7ImR5bmFtaWMiOjAsInN0YXRpYyI6MzAwfSwiYWZ0ZXIiOmZhbHNlLCJzZXJ2ZXJDb21wb25lbnRzSG1yQ2FjaGUiOnRydWUsInN0YXRpY0dlbmVyYXRpb25NYXhDb25jdXJyZW5jeSI6OCwic3RhdGljR2VuZXJhdGlvbk1pblBhZ2VzUGVyV29ya2VyIjoyNSwiZHluYW1pY0lPIjpmYWxzZSwib3B0aW1pemVQYWNrYWdlSW1wb3J0cyI6WyJsdWNpZGUtcmVhY3QiLCJkYXRlLWZucyIsImxvZGFzaC1lcyIsInJhbWRhIiwiYW50ZCIsInJlYWN0LWJvb3RzdHJhcCIsImFob29rcyIsIkBhbnQtZGVzaWduL2ljb25zIiwiQGhlYWRsZXNzdWkvcmVhY3QiLCJAaGVhZGxlc3N1aS1mbG9hdC9yZWFjdCIsIkBoZXJvaWNvbnMvcmVhY3QvMjAvc29saWQiLCJAaGVyb2ljb25zL3JlYWN0LzI0L3NvbGlkIiwiQGhlcm9pY29ucy9yZWFjdC8yNC9vdXRsaW5lIiwiQHZpc3gvdmlzeCIsIkB0cmVtb3IvcmVhY3QiLCJyeGpzIiwiQG11aS9tYXRlcmlhbCIsIkBtdWkvaWNvbnMtbWF0ZXJpYWwiLCJyZWNoYXJ0cyIsInJlYWN0LXVzZSIsImVmZmVjdCIsIkBlZmZlY3Qvc2NoZW1hIiwiQGVmZmVjdC9wbGF0Zm9ybSIsIkBlZmZlY3QvcGxhdGZvcm0tbm9kZSIsIkBlZmZlY3QvcGxhdGZvcm0tYnJvd3NlciIsIkBlZmZlY3QvcGxhdGZvcm0tYnVuIiwiQGVmZmVjdC9zcWwiLCJAZWZmZWN0L3NxbC1tc3NxbCIsIkBlZmZlY3Qvc3FsLW15c3FsMiIsIkBlZmZlY3Qvc3FsLXBnIiwiQGVmZmVjdC9zcWwtc3F1bGl0ZS1ub2RlIiwiQGVmZmVjdC9zcWwtc3F1bGl0ZS1idW4iLCJAZWZmZWN0L3NxbC1zcXVsaXRlLXdhc20iLCJAZWZmZWN0L3NxbC1zcXVsaXRlLXJlYWN0LW5hdGl2ZSIsIkBlZmZlY3QvcnBjIiwiQGVmZmVjdC9ycGMtaHR0cCIsIkBlZmZlY3QvdHlwZWNsYXNzIiwiQGVmZmVjdC9leHBlcmltZW50YWwiLCJAZWZmZWN0L29wZW50ZWxlbWV0cnkiLCJAbWF0ZXJpYWwtdWkvY29yZSIsIkBtYXRlcmlhbC11aS9pY29ucyIsIkB0YWJsZXIvaWNvbnMtcmVhY3QiLCJtdWktY29yZSIsInJlYWN0LWljb25zL2FpIiwicmVhY3QtaWNvbnMvYmkiLCJyZWFjdC1pY29ucy9icyIsInJlYWN0LWljb25zL2NnIiwicmVhY3QtaWNvbnMvY2kiLCJyZWFjdC1pY29ucy9kaSIsInJlYWN0LWljb25zL2ZhIiwicmVhY3QtaWNvbnMvZmE2IiwicmVhY3QtaWNvbnMvZmMiLCJyZWFjdC1pY29ucy9maSIsInJlYWN0LWljb25zL2dpIiwicmVhY3QtaWNvbnMvZ28iLCJyZWFjdC1pY29ucy9nciIsInJlYWN0LWljb25zL2hpIiwicmVhY3QtaWNvbnMvaGkyIiwicmVhY3QtaWNvbnMvaW0iLCJyZWFjdC1pY29ucy9pbyIsInJlYWN0LWljb25zL2lvNSIsInJlYWN0LWljb25zL2xpYSIsInJlYWN0LWljb25zL2xpYiIsInJlYWN0LWljb25zL2x1IiwicmVhY3QtaWNvbnMvbWQiLCJyZWFjdC1pY29ucy9waSIsInJlYWN0LWljb25zL3JpIiwicmVhY3QtaWNvbnMvcngiLCJyZWFjdC1pY29ucy9zaSIsInJlYWN0LWljb25zL3NsIiwicmVhY3QtaWNvbnMvdGIiLCJyZWFjdC1pY29ucy90ZmkiLCJyZWFjdC1pY29ucy90aSIsInJlYWN0LWljb25zL3ZzYyIsInJlYWN0LWljb25zL3dpIl19LCJidW5kbGVQYWdlc1JvdXRlckRlcGVuZGVuY2llcyI6ZmFsc2UsImNvbmZpZ0ZpbGUiOiIvdG1wL25leHQtc3RhdHNKY3BiR2Mvc3RhdHMtYXBwL25leHQuY29uZmlnLmpzIiwiY29uZmlnRmlsZU5hbWUiOiJuZXh0LmNvbmZpZy5qcyJ9","pagesType":"app","appDirLoader":"bmV4dC1hcHAtbG9hZGVyP25hbWU9YXBwJTJGYXBwLWVkZ2Utc3NyJTJGcGFnZSZwYWdlPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZVBhdGg9cHJpdmF0ZS1uZXh0LWFwcC1kaXIlMkZhcHAtZWRnZS1zc3IlMkZwYWdlLmpzJmFwcERpcj0lMkZ0bXAlMkZuZXh0LXN0YXRzSmNwYkdjJTJGc3RhdHMtYXBwJTJGYXBwJmFwcFBhdGhzPSUyRmFwcC1lZGdlLXNzciUyRnBhZ2UmcGFnZUV4dGVuc2lvbnM9dHN4JnBhZ2VFeHRlbnNpb25zPXRzJnBhZ2VFeHRlbnNpb25zPWpzeCZwYWdlRXh0ZW5zaW9ucz1qcyZiYXNlUGF0aD0mYXNzZXRQcmVmaXg9Jm5leHRDb25maWdPdXRwdXQ9JmZseWluZ1NodXR0bGU9ZmFsc2UmcHJlZmVycmVkUmVnaW9uPSZtaWRkbGV3YXJlQ29uZmlnPWUzMCUzRCE=","sriEnabled":false,"middlewareConfig":"e30="}!
       var _self___RSC_MANIFEST;
 
       const incrementalCacheHandler = null;
@@ -430,53 +436,53 @@
       /***/
     },
 
-    /***/ 9883: /***/ (
+    /***/ 3674: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 5501)
+        __webpack_require__.bind(__webpack_require__, 263)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1323)
+        __webpack_require__.bind(__webpack_require__, 239)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 933)
+        __webpack_require__.bind(__webpack_require__, 6808)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 7131)
+        __webpack_require__.bind(__webpack_require__, 9543)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 3048)
+        __webpack_require__.bind(__webpack_require__, 4145)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 8281)
+        __webpack_require__.bind(__webpack_require__, 6196)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 3129)
+        __webpack_require__.bind(__webpack_require__, 754)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 9429)
+        __webpack_require__.bind(__webpack_require__, 3482)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1985)
+        __webpack_require__.bind(__webpack_require__, 9294)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 1815)
+        __webpack_require__.bind(__webpack_require__, 8049)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 566)
+        __webpack_require__.bind(__webpack_require__, 2408)
       );
 
       /***/
     },
 
-    /***/ 5415: /***/ () => {
+    /***/ 8977: /***/ () => {
       /***/
     },
 
-    /***/ 2928: /***/ (
+    /***/ 4242: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -496,7 +502,7 @@
       /***/
     },
 
-    /***/ 5931: /***/ (
+    /***/ 3867: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -508,7 +514,7 @@
         /* harmony export */
       });
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
-        __webpack_require__(7887);
+        __webpack_require__(9851);
 
       function RootLayout({ children }) {
         return /*#__PURE__*/ (0,
@@ -527,7 +533,7 @@
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
-    /******/ __webpack_require__.O(0, [403, 678], () => __webpack_exec__(8329));
+    /******/ __webpack_require__.O(0, [342, 65], () => __webpack_exec__(543));
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ (_ENTRIES = typeof _ENTRIES === "undefined" ? {} : _ENTRIES)[
       "middleware_app/app-edge-ssr/page"
Diff for middleware.js

Diff too large to display

Diff for edge-ssr.js

Diff too large to display

Diff for image-HASH.js
@@ -1,7 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [8358],
   {
-    /***/ 9553: /***/ (
+    /***/ 2542: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
@@ -9,7 +9,7 @@
       (window.__NEXT_P = window.__NEXT_P || []).push([
         "/image",
         function () {
-          return __webpack_require__(4973);
+          return __webpack_require__(5220);
         },
       ]);
       if (false) {
@@ -18,7 +18,7 @@
       /***/
     },
 
-    /***/ 4492: /***/ (module, exports, __webpack_require__) => {
+    /***/ 39: /***/ (module, exports, __webpack_require__) => {
       "use strict";
       /* __next_internal_client_entry_do_not_use__  cjs */
       Object.defineProperty(exports, "__esModule", {
@@ -40,17 +40,17 @@
         __webpack_require__(5096)
       );
       const _head = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(1900)
+        __webpack_require__(4927)
       );
-      const _getimgprops = __webpack_require__(7298);
-      const _imageconfig = __webpack_require__(364);
-      const _imageconfigcontextsharedruntime = __webpack_require__(607);
-      const _warnonce = __webpack_require__(3417);
-      const _routercontextsharedruntime = __webpack_require__(8249);
+      const _getimgprops = __webpack_require__(9121);
+      const _imageconfig = __webpack_require__(5657);
+      const _imageconfigcontextsharedruntime = __webpack_require__(4517);
+      const _warnonce = __webpack_require__(1512);
+      const _routercontextsharedruntime = __webpack_require__(499);
       const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(6186)
+        __webpack_require__(6699)
       );
-      const _usemergedref = __webpack_require__(1927);
+      const _usemergedref = __webpack_require__(5395);
       // This is replaced by webpack define plugin
       const configEnv = {
         deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
@@ -371,7 +371,7 @@
       /***/
     },
 
-    /***/ 1927: /***/ (module, exports, __webpack_require__) => {
+    /***/ 5395: /***/ (module, exports, __webpack_require__) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -440,7 +440,7 @@
       /***/
     },
 
-    /***/ 7298: /***/ (
+    /***/ 9121: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -456,9 +456,9 @@
           return getImgProps;
         },
       });
-      const _warnonce = __webpack_require__(3417);
-      const _imageblursvg = __webpack_require__(3844);
-      const _imageconfig = __webpack_require__(364);
+      const _warnonce = __webpack_require__(1512);
+      const _imageblursvg = __webpack_require__(94);
+      const _imageconfig = __webpack_require__(5657);
       const VALID_LOADING_VALUES =
         /* unused pure expression or super */ null && [
           "lazy",
@@ -831,7 +831,7 @@
       /***/
     },
 
-    /***/ 3844: /***/ (__unused_webpack_module, exports) => {
+    /***/ 94: /***/ (__unused_webpack_module, exports) => {
       "use strict";
       /**
        * A shared function, used on both client and server, to generate a SVG blur placeholder.
@@ -886,7 +886,7 @@
       /***/
     },
 
-    /***/ 2464: /***/ (
+    /***/ 7268: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -913,10 +913,10 @@
         },
       });
       const _interop_require_default = __webpack_require__(9608);
-      const _getimgprops = __webpack_require__(7298);
-      const _imagecomponent = __webpack_require__(4492);
+      const _getimgprops = __webpack_require__(9121);
+      const _imagecomponent = __webpack_require__(39);
       const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(6186)
+        __webpack_require__(6699)
       );
       function getImageProps(imgProps) {
         const { props } = (0, _getimgprops.getImgProps)(imgProps, {
@@ -948,7 +948,7 @@
       /***/
     },
 
-    /***/ 6186: /***/ (__unused_webpack_module, exports) => {
+    /***/ 6699: /***/ (__unused_webpack_module, exports) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -983,7 +983,7 @@
       /***/
     },
 
-    /***/ 4973: /***/ (
+    /***/ 5220: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -1000,8 +1000,8 @@
 
       // EXTERNAL MODULE: ./node_modules/.pnpm/react@19.0.0-rc-5d19e1c8-20240923/node_modules/react/jsx-runtime.js
       var jsx_runtime = __webpack_require__(4129);
-      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+main-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_exh3korby52talgbfgrfijbiwa/node_modules/next/image.js
-      var next_image = __webpack_require__(487);
+      // EXTERNAL MODULE: ./node_modules/.pnpm/next@file+..+diff-repo+packages+next+next-packed.tgz_react-dom@19.0.0-rc-5d19e1c8-20240923_re_l4vv5whrqalbzw3o4esxkwi2ju/node_modules/next/image.js
+      var next_image = __webpack_require__(6147);
       var image_default = /*#__PURE__*/ __webpack_require__.n(next_image); // CONCATENATED MODULE: ./pages/nextjs.png
       /* harmony default export */ const nextjs = {
         src: "/_next/static/media/nextjs.cae0b805.png",
@@ -1031,12 +1031,12 @@
       /***/
     },
 
-    /***/ 487: /***/ (
+    /***/ 6147: /***/ (
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(2464);
+      module.exports = __webpack_require__(7268);
 
       /***/
     },
@@ -1046,7 +1046,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [2888, 9774, 179], () =>
-      __webpack_exec__(9553)
+      __webpack_exec__(2542)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for 2893-HASH.js

Diff too large to display

Diff for main-HASH.js

Diff too large to display

Diff for app-page-exp..ntime.dev.js
failed to diff
Diff for app-page-exp..time.prod.js

Diff too large to display

Diff for app-page-tur..time.prod.js

Diff too large to display

Diff for app-page-tur..time.prod.js

Diff too large to display

Diff for app-page.runtime.dev.js

Diff too large to display

Diff for app-page.runtime.prod.js

Diff too large to display

Diff for app-route-ex..ntime.dev.js

Diff too large to display

Diff for app-route-ex..time.prod.js

Diff too large to display

Diff for app-route-tu..time.prod.js

Diff too large to display

Diff for app-route-tu..time.prod.js

Diff too large to display

Diff for app-route.runtime.dev.js

Diff too large to display

Diff for app-route.ru..time.prod.js

Diff too large to display

Diff for server.runtime.prod.js

Diff too large to display

Commit: 7a3cd6d

@gnoff gnoff force-pushed the async-dynamic-connection branch 2 times, most recently from 6b90473 to eaa80b5 Compare September 20, 2024 03:29
@gnoff gnoff force-pushed the async-dynamic-connection branch 2 times, most recently from 5b3d684 to ef4638f Compare September 24, 2024 15:14
Similar to `cookies()`, `headers()` provides access to an underlying Request in Next.js. To be optimally compatible with dynamicIO we need request access to be implemented through async APIs and have udpated this function to return a promise of Headers rather than Headers directly. To facilitate migration this API will augment the Promise with properties that allow direct access to headers. In a future version of Next.js we will remove the exotic nature of this Promise and all access will require awaiting the result.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants