next 15.3.0-canary.17 → 15.3.0-canary.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/bin/next +1 -1
  2. package/dist/build/index.js +2 -2
  3. package/dist/build/swc/index.js +1 -1
  4. package/dist/build/webpack-config.js +2 -2
  5. package/dist/client/app-bootstrap.js +1 -1
  6. package/dist/client/index.js +1 -1
  7. package/dist/compiled/next-server/app-page-experimental.runtime.prod.js.map +1 -1
  8. package/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js.map +1 -1
  9. package/dist/compiled/next-server/app-page-turbo.runtime.prod.js.map +1 -1
  10. package/dist/compiled/next-server/app-page.runtime.prod.js.map +1 -1
  11. package/dist/esm/build/index.js +2 -2
  12. package/dist/esm/build/swc/index.js +1 -1
  13. package/dist/esm/build/webpack-config.js +2 -2
  14. package/dist/esm/client/app-bootstrap.js +1 -1
  15. package/dist/esm/client/index.js +1 -1
  16. package/dist/esm/lib/require-instrumentation-client.js +14 -1
  17. package/dist/esm/lib/require-instrumentation-client.js.map +1 -1
  18. package/dist/esm/server/dev/hot-reloader-turbopack.js +1 -1
  19. package/dist/esm/server/dev/hot-reloader-webpack.js +1 -1
  20. package/dist/esm/server/lib/app-info-log.js +1 -1
  21. package/dist/esm/server/lib/start-server.js +1 -1
  22. package/dist/esm/shared/lib/canary-only.js +1 -1
  23. package/dist/lib/require-instrumentation-client.js +14 -1
  24. package/dist/lib/require-instrumentation-client.js.map +1 -1
  25. package/dist/server/dev/hot-reloader-turbopack.js +1 -1
  26. package/dist/server/dev/hot-reloader-webpack.js +1 -1
  27. package/dist/server/lib/app-info-log.js +1 -1
  28. package/dist/server/lib/start-server.js +1 -1
  29. package/dist/shared/lib/canary-only.js +1 -1
  30. package/dist/telemetry/anonymous-meta.js +1 -1
  31. package/dist/telemetry/events/session-stopped.js +2 -2
  32. package/dist/telemetry/events/version.js +2 -2
  33. package/package.json +15 -15
@@ -300,7 +300,7 @@ export default async function build(dir, reactProductionProfiling = false, debug
300
300
  const nextBuildSpan = trace('next-build', undefined, {
301
301
  buildMode: experimentalBuildMode,
302
302
  isTurboBuild: String(turboNextBuild),
303
- version: "15.3.0-canary.17"
303
+ version: "15.3.0-canary.18"
304
304
  });
305
305
  NextBuildContext.nextBuildSpan = nextBuildSpan;
306
306
  NextBuildContext.dir = dir;
@@ -681,7 +681,7 @@ export default async function build(dir, reactProductionProfiling = false, debug
681
681
  // Files outside of the distDir can be "type": "module"
682
682
  await writeFileUtf8(path.join(distDir, 'package.json'), '{"type": "commonjs"}');
683
683
  // These are written to distDir, so they need to come after creating and cleaning distDr.
684
- await recordFrameworkVersion("15.3.0-canary.17");
684
+ await recordFrameworkVersion("15.3.0-canary.18");
685
685
  await updateBuildDiagnostics({
686
686
  buildStage: 'start'
687
687
  });
@@ -11,7 +11,7 @@ import { isDeepStrictEqual } from 'util';
11
11
  import { getDefineEnv } from '../webpack/plugins/define-env-plugin';
12
12
  import { getReactCompilerLoader } from '../get-babel-loader-config';
13
13
  import { TurbopackInternalError } from '../../shared/lib/turbopack/utils';
14
- const nextVersion = "15.3.0-canary.17";
14
+ const nextVersion = "15.3.0-canary.18";
15
15
  const ArchName = arch();
16
16
  const PlatformName = platform();
17
17
  function infoLog(...args) {
@@ -1540,7 +1540,7 @@ export default async function getBaseWebpackConfig(dir, { buildId, encryptionKey
1540
1540
  isClient && new CopyFilePlugin({
1541
1541
  // file path to build output of `@next/polyfill-nomodule`
1542
1542
  filePath: require.resolve('./polyfills/polyfill-nomodule'),
1543
- cacheKey: "15.3.0-canary.17",
1543
+ cacheKey: "15.3.0-canary.18",
1544
1544
  name: `static/chunks/polyfills${dev ? '' : '-[hash]'}.js`,
1545
1545
  minimize: false,
1546
1546
  info: {
@@ -1717,7 +1717,7 @@ export default async function getBaseWebpackConfig(dir, { buildId, encryptionKey
1717
1717
  // - Next.js location on disk (some loaders use absolute paths and some resolve options depend on absolute paths)
1718
1718
  // - Next.js version
1719
1719
  // - next.config.js keys that affect compilation
1720
- version: `${__dirname}|${"15.3.0-canary.17"}|${configVars}`,
1720
+ version: `${__dirname}|${"15.3.0-canary.18"}|${configVars}`,
1721
1721
  cacheDirectory: path.join(distDir, 'cache', 'webpack'),
1722
1722
  // For production builds, it's more efficient to compress all cache files together instead of compression each one individually.
1723
1723
  // So we disable compression here and allow the build runner to take care of compressing the cache as a whole.
@@ -3,7 +3,7 @@
3
3
  * sure the following scripts are executed in the correct order:
4
4
  * - Polyfills
5
5
  * - next/script with `beforeInteractive` strategy
6
- */ const version = "15.3.0-canary.17";
6
+ */ const version = "15.3.0-canary.18";
7
7
  window.next = {
8
8
  version,
9
9
  appDir: true
@@ -26,7 +26,7 @@ import { SearchParamsContext, PathParamsContext } from '../shared/lib/hooks-clie
26
26
  import { onRecoverableError } from './react-client-callbacks/on-recoverable-error';
27
27
  import tracer from './tracing/tracer';
28
28
  import { isNextRouterError } from './components/is-next-router-error';
29
- export const version = "15.3.0-canary.17";
29
+ export const version = "15.3.0-canary.18";
30
30
  export let router;
31
31
  export const emitter = mitt();
32
32
  const looseToArray = (input)=>[].slice.call(input);
@@ -5,10 +5,23 @@
5
5
  * the `instrumentation-client.ts` file in the project root by webpack or turbopack.
6
6
  */ if (process.env.__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK) {
7
7
  if (process.env.NODE_ENV === 'development') {
8
+ const measureName = 'Client Instrumentation Hook';
8
9
  const startTime = performance.now();
9
10
  require('private-next-instrumentation-client');
10
11
  const endTime = performance.now();
11
- console.log(`[Client Instrumentation Hook] executed in ${(endTime - startTime).toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`);
12
+ const duration = endTime - startTime;
13
+ performance.measure(measureName, {
14
+ start: startTime,
15
+ end: endTime,
16
+ detail: 'Client instrumentation initialization'
17
+ });
18
+ // Using 16ms threshold as it represents one frame (1000ms/60fps)
19
+ // This helps identify if the instrumentation hook initialization
20
+ // could potentially cause frame drops during development.
21
+ const THRESHOLD = 16;
22
+ if (duration > THRESHOLD) {
23
+ console.log(`[${measureName}] Slow execution detected: ${duration.toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`);
24
+ }
12
25
  } else {
13
26
  require('private-next-instrumentation-client');
14
27
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/lib/require-instrumentation-client.ts"],"sourcesContent":["/**\n * This module imports the client instrumentation hook from the project root.\n *\n * The `private-next-instrumentation-client` module is automatically aliased to\n * the `instrumentation-client.ts` file in the project root by webpack or turbopack.\n */\nif (process.env.__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK) {\n if (process.env.NODE_ENV === 'development') {\n const startTime = performance.now()\n require('private-next-instrumentation-client')\n const endTime = performance.now()\n console.log(\n `[Client Instrumentation Hook] executed in ${(endTime - startTime).toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`\n )\n } else {\n require('private-next-instrumentation-client')\n }\n}\n"],"names":["process","env","__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK","NODE_ENV","startTime","performance","now","require","endTime","console","log","toFixed"],"mappings":"AAAA;;;;;CAKC,GACD,IAAIA,QAAQC,GAAG,CAACC,+CAA+C,EAAE;IAC/D,IAAIF,QAAQC,GAAG,CAACE,QAAQ,KAAK,eAAe;QAC1C,MAAMC,YAAYC,YAAYC,GAAG;QACjCC,QAAQ;QACR,MAAMC,UAAUH,YAAYC,GAAG;QAC/BG,QAAQC,GAAG,CACT,CAAC,0CAA0C,EAAE,AAACF,CAAAA,UAAUJ,SAAQ,EAAGO,OAAO,CAAC,GAAG,qEAAqE,CAAC;IAExJ,OAAO;QACLJ,QAAQ;IACV;AACF"}
1
+ {"version":3,"sources":["../../src/lib/require-instrumentation-client.ts"],"sourcesContent":["/**\n * This module imports the client instrumentation hook from the project root.\n *\n * The `private-next-instrumentation-client` module is automatically aliased to\n * the `instrumentation-client.ts` file in the project root by webpack or turbopack.\n */\nif (process.env.__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK) {\n if (process.env.NODE_ENV === 'development') {\n const measureName = 'Client Instrumentation Hook'\n const startTime = performance.now()\n require('private-next-instrumentation-client')\n const endTime = performance.now()\n\n const duration = endTime - startTime\n performance.measure(measureName, {\n start: startTime,\n end: endTime,\n detail: 'Client instrumentation initialization',\n })\n\n // Using 16ms threshold as it represents one frame (1000ms/60fps)\n // This helps identify if the instrumentation hook initialization\n // could potentially cause frame drops during development.\n const THRESHOLD = 16\n if (duration > THRESHOLD) {\n console.log(\n `[${measureName}] Slow execution detected: ${duration.toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`\n )\n }\n } else {\n require('private-next-instrumentation-client')\n }\n}\n"],"names":["process","env","__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK","NODE_ENV","measureName","startTime","performance","now","require","endTime","duration","measure","start","end","detail","THRESHOLD","console","log","toFixed"],"mappings":"AAAA;;;;;CAKC,GACD,IAAIA,QAAQC,GAAG,CAACC,+CAA+C,EAAE;IAC/D,IAAIF,QAAQC,GAAG,CAACE,QAAQ,KAAK,eAAe;QAC1C,MAAMC,cAAc;QACpB,MAAMC,YAAYC,YAAYC,GAAG;QACjCC,QAAQ;QACR,MAAMC,UAAUH,YAAYC,GAAG;QAE/B,MAAMG,WAAWD,UAAUJ;QAC3BC,YAAYK,OAAO,CAACP,aAAa;YAC/BQ,OAAOP;YACPQ,KAAKJ;YACLK,QAAQ;QACV;QAEA,iEAAiE;QACjE,iEAAiE;QACjE,0DAA0D;QAC1D,MAAMC,YAAY;QAClB,IAAIL,WAAWK,WAAW;YACxBC,QAAQC,GAAG,CACT,CAAC,CAAC,EAAEb,YAAY,2BAA2B,EAAEM,SAASQ,OAAO,CAAC,GAAG,qEAAqE,CAAC;QAE3I;IACF,OAAO;QACLV,QAAQ;IACV;AACF"}
@@ -83,7 +83,7 @@ export async function createHotReloaderTurbopack(opts, serverFields, distDir, re
83
83
  }
84
84
  const hasRewrites = opts.fsChecker.rewrites.afterFiles.length > 0 || opts.fsChecker.rewrites.beforeFiles.length > 0 || opts.fsChecker.rewrites.fallback.length > 0;
85
85
  const hotReloaderSpan = trace('hot-reloader', undefined, {
86
- version: "15.3.0-canary.17"
86
+ version: "15.3.0-canary.18"
87
87
  });
88
88
  // Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
89
89
  // of the current `next dev` invocation.
@@ -180,7 +180,7 @@ export default class HotReloaderWebpack {
180
180
  this.previewProps = previewProps;
181
181
  this.rewrites = rewrites;
182
182
  this.hotReloaderSpan = trace('hot-reloader', undefined, {
183
- version: "15.3.0-canary.17"
183
+ version: "15.3.0-canary.18"
184
184
  });
185
185
  // Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
186
186
  // of the current `next dev` invocation.
@@ -12,7 +12,7 @@ export function logStartInfo({ networkUrl, appUrl, envInfo, experimentalFeatures
12
12
  } else {
13
13
  bundlerSuffix = '';
14
14
  }
15
- Log.bootstrap(`${bold(purple(`${Log.prefixes.ready} Next.js ${"15.3.0-canary.17"}`))}${bundlerSuffix}`);
15
+ Log.bootstrap(`${bold(purple(`${Log.prefixes.ready} Next.js ${"15.3.0-canary.18"}`))}${bundlerSuffix}`);
16
16
  if (appUrl) {
17
17
  Log.bootstrap(`- Local: ${appUrl}`);
18
18
  }
@@ -43,7 +43,7 @@ export async function getRequestHandlers({ dir, port, isDev, onDevServerCleanup,
43
43
  export async function startServer(serverOptions) {
44
44
  const { dir, isDev, hostname, minimalMode, allowRetry, keepAliveTimeout, selfSignedCertificate } = serverOptions;
45
45
  let { port } = serverOptions;
46
- process.title = `next-server (v${"15.3.0-canary.17"})`;
46
+ process.title = `next-server (v${"15.3.0-canary.18"})`;
47
47
  let handlersReady = ()=>{};
48
48
  let handlersError = ()=>{};
49
49
  let handlersPromise = new Promise((resolve, reject)=>{
@@ -1,6 +1,6 @@
1
1
  export function isStableBuild() {
2
2
  var _process_env___NEXT_VERSION;
3
- return !((_process_env___NEXT_VERSION = "15.3.0-canary.17") == null ? void 0 : _process_env___NEXT_VERSION.includes('canary')) && !process.env.__NEXT_TEST_MODE && !process.env.NEXT_PRIVATE_LOCAL_DEV;
3
+ return !((_process_env___NEXT_VERSION = "15.3.0-canary.18") == null ? void 0 : _process_env___NEXT_VERSION.includes('canary')) && !process.env.__NEXT_TEST_MODE && !process.env.NEXT_PRIVATE_LOCAL_DEV;
4
4
  }
5
5
  export class CanaryOnlyError extends Error {
6
6
  constructor(arg){
@@ -6,10 +6,23 @@
6
6
  */ "use strict";
7
7
  if (process.env.__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK) {
8
8
  if (process.env.NODE_ENV === 'development') {
9
+ const measureName = 'Client Instrumentation Hook';
9
10
  const startTime = performance.now();
10
11
  require('private-next-instrumentation-client');
11
12
  const endTime = performance.now();
12
- console.log(`[Client Instrumentation Hook] executed in ${(endTime - startTime).toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`);
13
+ const duration = endTime - startTime;
14
+ performance.measure(measureName, {
15
+ start: startTime,
16
+ end: endTime,
17
+ detail: 'Client instrumentation initialization'
18
+ });
19
+ // Using 16ms threshold as it represents one frame (1000ms/60fps)
20
+ // This helps identify if the instrumentation hook initialization
21
+ // could potentially cause frame drops during development.
22
+ const THRESHOLD = 16;
23
+ if (duration > THRESHOLD) {
24
+ console.log(`[${measureName}] Slow execution detected: ${duration.toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`);
25
+ }
13
26
  } else {
14
27
  require('private-next-instrumentation-client');
15
28
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/lib/require-instrumentation-client.ts"],"sourcesContent":["/**\n * This module imports the client instrumentation hook from the project root.\n *\n * The `private-next-instrumentation-client` module is automatically aliased to\n * the `instrumentation-client.ts` file in the project root by webpack or turbopack.\n */\nif (process.env.__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK) {\n if (process.env.NODE_ENV === 'development') {\n const startTime = performance.now()\n require('private-next-instrumentation-client')\n const endTime = performance.now()\n console.log(\n `[Client Instrumentation Hook] executed in ${(endTime - startTime).toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`\n )\n } else {\n require('private-next-instrumentation-client')\n }\n}\n"],"names":["process","env","__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK","NODE_ENV","startTime","performance","now","require","endTime","console","log","toFixed"],"mappings":"AAAA;;;;;CAKC;AACD,IAAIA,QAAQC,GAAG,CAACC,+CAA+C,EAAE;IAC/D,IAAIF,QAAQC,GAAG,CAACE,QAAQ,KAAK,eAAe;QAC1C,MAAMC,YAAYC,YAAYC,GAAG;QACjCC,QAAQ;QACR,MAAMC,UAAUH,YAAYC,GAAG;QAC/BG,QAAQC,GAAG,CACT,CAAC,0CAA0C,EAAE,AAACF,CAAAA,UAAUJ,SAAQ,EAAGO,OAAO,CAAC,GAAG,qEAAqE,CAAC;IAExJ,OAAO;QACLJ,QAAQ;IACV;AACF"}
1
+ {"version":3,"sources":["../../src/lib/require-instrumentation-client.ts"],"sourcesContent":["/**\n * This module imports the client instrumentation hook from the project root.\n *\n * The `private-next-instrumentation-client` module is automatically aliased to\n * the `instrumentation-client.ts` file in the project root by webpack or turbopack.\n */\nif (process.env.__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK) {\n if (process.env.NODE_ENV === 'development') {\n const measureName = 'Client Instrumentation Hook'\n const startTime = performance.now()\n require('private-next-instrumentation-client')\n const endTime = performance.now()\n\n const duration = endTime - startTime\n performance.measure(measureName, {\n start: startTime,\n end: endTime,\n detail: 'Client instrumentation initialization',\n })\n\n // Using 16ms threshold as it represents one frame (1000ms/60fps)\n // This helps identify if the instrumentation hook initialization\n // could potentially cause frame drops during development.\n const THRESHOLD = 16\n if (duration > THRESHOLD) {\n console.log(\n `[${measureName}] Slow execution detected: ${duration.toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`\n )\n }\n } else {\n require('private-next-instrumentation-client')\n }\n}\n"],"names":["process","env","__NEXT_EXPERIMENTAL_CLIENT_INSTRUMENTATION_HOOK","NODE_ENV","measureName","startTime","performance","now","require","endTime","duration","measure","start","end","detail","THRESHOLD","console","log","toFixed"],"mappings":"AAAA;;;;;CAKC;AACD,IAAIA,QAAQC,GAAG,CAACC,+CAA+C,EAAE;IAC/D,IAAIF,QAAQC,GAAG,CAACE,QAAQ,KAAK,eAAe;QAC1C,MAAMC,cAAc;QACpB,MAAMC,YAAYC,YAAYC,GAAG;QACjCC,QAAQ;QACR,MAAMC,UAAUH,YAAYC,GAAG;QAE/B,MAAMG,WAAWD,UAAUJ;QAC3BC,YAAYK,OAAO,CAACP,aAAa;YAC/BQ,OAAOP;YACPQ,KAAKJ;YACLK,QAAQ;QACV;QAEA,iEAAiE;QACjE,iEAAiE;QACjE,0DAA0D;QAC1D,MAAMC,YAAY;QAClB,IAAIL,WAAWK,WAAW;YACxBC,QAAQC,GAAG,CACT,CAAC,CAAC,EAAEb,YAAY,2BAA2B,EAAEM,SAASQ,OAAO,CAAC,GAAG,qEAAqE,CAAC;QAE3I;IACF,OAAO;QACLV,QAAQ;IACV;AACF"}
@@ -139,7 +139,7 @@ async function createHotReloaderTurbopack(opts, serverFields, distDir, resetFetc
139
139
  }
140
140
  const hasRewrites = opts.fsChecker.rewrites.afterFiles.length > 0 || opts.fsChecker.rewrites.beforeFiles.length > 0 || opts.fsChecker.rewrites.fallback.length > 0;
141
141
  const hotReloaderSpan = (0, _trace.trace)('hot-reloader', undefined, {
142
- version: "15.3.0-canary.17"
142
+ version: "15.3.0-canary.18"
143
143
  });
144
144
  // Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
145
145
  // of the current `next dev` invocation.
@@ -256,7 +256,7 @@ class HotReloaderWebpack {
256
256
  this.previewProps = previewProps;
257
257
  this.rewrites = rewrites;
258
258
  this.hotReloaderSpan = (0, _trace.trace)('hot-reloader', undefined, {
259
- version: "15.3.0-canary.17"
259
+ version: "15.3.0-canary.18"
260
260
  });
261
261
  // Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
262
262
  // of the current `next dev` invocation.
@@ -75,7 +75,7 @@ function logStartInfo({ networkUrl, appUrl, envInfo, experimentalFeatures, maxEx
75
75
  } else {
76
76
  bundlerSuffix = '';
77
77
  }
78
- _log.bootstrap(`${(0, _picocolors.bold)((0, _picocolors.purple)(`${_log.prefixes.ready} Next.js ${"15.3.0-canary.17"}`))}${bundlerSuffix}`);
78
+ _log.bootstrap(`${(0, _picocolors.bold)((0, _picocolors.purple)(`${_log.prefixes.ready} Next.js ${"15.3.0-canary.18"}`))}${bundlerSuffix}`);
79
79
  if (appUrl) {
80
80
  _log.bootstrap(`- Local: ${appUrl}`);
81
81
  }
@@ -111,7 +111,7 @@ async function getRequestHandlers({ dir, port, isDev, onDevServerCleanup, server
111
111
  async function startServer(serverOptions) {
112
112
  const { dir, isDev, hostname, minimalMode, allowRetry, keepAliveTimeout, selfSignedCertificate } = serverOptions;
113
113
  let { port } = serverOptions;
114
- process.title = `next-server (v${"15.3.0-canary.17"})`;
114
+ process.title = `next-server (v${"15.3.0-canary.18"})`;
115
115
  let handlersReady = ()=>{};
116
116
  let handlersError = ()=>{};
117
117
  let handlersPromise = new Promise((resolve, reject)=>{
@@ -22,7 +22,7 @@ _export(exports, {
22
22
  });
23
23
  function isStableBuild() {
24
24
  var _process_env___NEXT_VERSION;
25
- return !((_process_env___NEXT_VERSION = "15.3.0-canary.17") == null ? void 0 : _process_env___NEXT_VERSION.includes('canary')) && !process.env.__NEXT_TEST_MODE && !process.env.NEXT_PRIVATE_LOCAL_DEV;
25
+ return !((_process_env___NEXT_VERSION = "15.3.0-canary.18") == null ? void 0 : _process_env___NEXT_VERSION.includes('canary')) && !process.env.__NEXT_TEST_MODE && !process.env.NEXT_PRIVATE_LOCAL_DEV;
26
26
  }
27
27
  class CanaryOnlyError extends Error {
28
28
  constructor(arg){
@@ -81,7 +81,7 @@ function getAnonymousMeta() {
81
81
  isWsl: _iswsl.default,
82
82
  isCI: _ciinfo.isCI,
83
83
  ciName: _ciinfo.isCI && _ciinfo.name || null,
84
- nextVersion: "15.3.0-canary.17"
84
+ nextVersion: "15.3.0-canary.18"
85
85
  };
86
86
  return traits;
87
87
  }
@@ -11,11 +11,11 @@ Object.defineProperty(exports, "eventCliSessionStopped", {
11
11
  const EVENT_VERSION = 'NEXT_CLI_SESSION_STOPPED';
12
12
  function eventCliSessionStopped(event) {
13
13
  // This should be an invariant, if it fails our build tooling is broken.
14
- if (typeof "15.3.0-canary.17" !== 'string') {
14
+ if (typeof "15.3.0-canary.18" !== 'string') {
15
15
  return [];
16
16
  }
17
17
  const payload = {
18
- nextVersion: "15.3.0-canary.17",
18
+ nextVersion: "15.3.0-canary.18",
19
19
  nodeVersion: process.version,
20
20
  cliCommand: event.cliCommand,
21
21
  durationMilliseconds: event.durationMilliseconds,
@@ -36,12 +36,12 @@ function hasBabelConfig(dir) {
36
36
  function eventCliSession(dir, nextConfig, event) {
37
37
  var _nextConfig_experimental_staleTimes, _nextConfig_experimental_staleTimes1, _nextConfig_experimental_reactCompiler, _nextConfig_experimental_reactCompiler1;
38
38
  // This should be an invariant, if it fails our build tooling is broken.
39
- if (typeof "15.3.0-canary.17" !== 'string') {
39
+ if (typeof "15.3.0-canary.18" !== 'string') {
40
40
  return [];
41
41
  }
42
42
  const { images, i18n } = nextConfig || {};
43
43
  const payload = {
44
- nextVersion: "15.3.0-canary.17",
44
+ nextVersion: "15.3.0-canary.18",
45
45
  nodeVersion: process.version,
46
46
  cliCommand: event.cliCommand,
47
47
  isSrcDir: event.isSrcDir,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next",
3
- "version": "15.3.0-canary.17",
3
+ "version": "15.3.0-canary.18",
4
4
  "description": "The React Framework",
5
5
  "main": "./dist/server/next.js",
6
6
  "license": "MIT",
@@ -100,7 +100,7 @@
100
100
  ]
101
101
  },
102
102
  "dependencies": {
103
- "@next/env": "15.3.0-canary.17",
103
+ "@next/env": "15.3.0-canary.18",
104
104
  "@swc/counter": "0.1.3",
105
105
  "@swc/helpers": "0.5.15",
106
106
  "busboy": "1.6.0",
@@ -132,14 +132,14 @@
132
132
  },
133
133
  "optionalDependencies": {
134
134
  "sharp": "^0.33.5",
135
- "@next/swc-darwin-arm64": "15.3.0-canary.17",
136
- "@next/swc-darwin-x64": "15.3.0-canary.17",
137
- "@next/swc-linux-arm64-gnu": "15.3.0-canary.17",
138
- "@next/swc-linux-arm64-musl": "15.3.0-canary.17",
139
- "@next/swc-linux-x64-gnu": "15.3.0-canary.17",
140
- "@next/swc-linux-x64-musl": "15.3.0-canary.17",
141
- "@next/swc-win32-arm64-msvc": "15.3.0-canary.17",
142
- "@next/swc-win32-x64-msvc": "15.3.0-canary.17"
135
+ "@next/swc-darwin-arm64": "15.3.0-canary.18",
136
+ "@next/swc-darwin-x64": "15.3.0-canary.18",
137
+ "@next/swc-linux-arm64-gnu": "15.3.0-canary.18",
138
+ "@next/swc-linux-arm64-musl": "15.3.0-canary.18",
139
+ "@next/swc-linux-x64-gnu": "15.3.0-canary.18",
140
+ "@next/swc-linux-x64-musl": "15.3.0-canary.18",
141
+ "@next/swc-win32-arm64-msvc": "15.3.0-canary.18",
142
+ "@next/swc-win32-x64-msvc": "15.3.0-canary.18"
143
143
  },
144
144
  "devDependencies": {
145
145
  "@ampproject/toolbox-optimizer": "2.8.3",
@@ -172,11 +172,11 @@
172
172
  "@jest/types": "29.5.0",
173
173
  "@mswjs/interceptors": "0.23.0",
174
174
  "@napi-rs/triples": "1.2.0",
175
- "@next/font": "15.3.0-canary.17",
176
- "@next/polyfill-module": "15.3.0-canary.17",
177
- "@next/polyfill-nomodule": "15.3.0-canary.17",
178
- "@next/react-refresh-utils": "15.3.0-canary.17",
179
- "@next/swc": "15.3.0-canary.17",
175
+ "@next/font": "15.3.0-canary.18",
176
+ "@next/polyfill-module": "15.3.0-canary.18",
177
+ "@next/polyfill-nomodule": "15.3.0-canary.18",
178
+ "@next/react-refresh-utils": "15.3.0-canary.18",
179
+ "@next/swc": "15.3.0-canary.18",
180
180
  "@opentelemetry/api": "1.6.0",
181
181
  "@playwright/test": "1.41.2",
182
182
  "@storybook/addon-a11y": "8.6.0",