next 14.2.5 → 14.2.6

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 (31) hide show
  1. package/dist/bin/next +1 -1
  2. package/dist/build/index.js +1 -1
  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/server.runtime.prod.js +4 -4
  8. package/dist/compiled/next-server/server.runtime.prod.js.map +1 -1
  9. package/dist/esm/build/index.js +1 -1
  10. package/dist/esm/build/swc/index.js +1 -1
  11. package/dist/esm/build/webpack-config.js +2 -2
  12. package/dist/esm/client/app-bootstrap.js +1 -1
  13. package/dist/esm/client/index.js +1 -1
  14. package/dist/esm/server/config.js +1 -1
  15. package/dist/esm/server/dev/hot-reloader-turbopack.js +1 -1
  16. package/dist/esm/server/dev/hot-reloader-webpack.js +1 -1
  17. package/dist/esm/server/lib/app-info-log.js +1 -1
  18. package/dist/esm/server/lib/incremental-cache/fetch-cache.js +0 -9
  19. package/dist/esm/server/lib/incremental-cache/fetch-cache.js.map +1 -1
  20. package/dist/esm/server/lib/start-server.js +1 -1
  21. package/dist/server/config.js +1 -1
  22. package/dist/server/dev/hot-reloader-turbopack.js +1 -1
  23. package/dist/server/dev/hot-reloader-webpack.js +1 -1
  24. package/dist/server/lib/app-info-log.js +1 -1
  25. package/dist/server/lib/incremental-cache/fetch-cache.js +0 -9
  26. package/dist/server/lib/incremental-cache/fetch-cache.js.map +1 -1
  27. package/dist/server/lib/start-server.js +1 -1
  28. package/dist/telemetry/anonymous-meta.js +1 -1
  29. package/dist/telemetry/events/session-stopped.js +2 -2
  30. package/dist/telemetry/events/version.js +2 -2
  31. package/package.json +15 -15
package/dist/bin/next CHANGED
@@ -71,7 +71,7 @@ const program = new MyRootCommand();
71
71
  program.name("next").description("The Next.js CLI allows you to develop, build, start your application, and more.").configureHelp({
72
72
  formatHelp: (cmd, helper)=>(0, _formatclihelpoutput.formatCliHelpOutput)(cmd, helper),
73
73
  subcommandTerm: (cmd)=>`${cmd.name()} ${cmd.usage()}`
74
- }).helpCommand(false).helpOption("-h, --help", "Displays this message.").version(`Next.js v${"14.2.5"}`, "-v, --version", "Outputs the Next.js version.");
74
+ }).helpCommand(false).helpOption("-h, --help", "Displays this message.").version(`Next.js v${"14.2.6"}`, "-v, --version", "Outputs the Next.js version.");
75
75
  program.command("build").description("Creates an optimized production build of your application. The output displays information about each route.").argument("[directory]", `A directory on which to build the application. ${(0, _picocolors.italic)("If no directory is provided, the current directory will be used.")}`).option("-d, --debug", "Enables a more verbose build output.").option("--no-lint", "Disables linting.").option("--no-mangling", "Disables mangling.").option("--profile", "Enables production profiling for React.").option("--experimental-app-only", "Builds only App Router routes.").addOption(new _commander.Option("--experimental-turbo").hideHelp()).addOption(new _commander.Option("--experimental-build-mode [mode]", "Uses an experimental build mode.").choices([
76
76
  "compile",
77
77
  "generate"
@@ -356,7 +356,7 @@ async function build(dir, reactProductionProfiling = false, debugOutput = false,
356
356
  const nextBuildSpan = (0, _trace.trace)("next-build", undefined, {
357
357
  buildMode: experimentalBuildMode,
358
358
  isTurboBuild: String(turboNextBuild),
359
- version: "14.2.5"
359
+ version: "14.2.6"
360
360
  });
361
361
  _buildcontext.NextBuildContext.nextBuildSpan = nextBuildSpan;
362
362
  _buildcontext.NextBuildContext.dir = dir;
@@ -129,7 +129,7 @@ function _interop_require_wildcard(obj, nodeInterop) {
129
129
  }
130
130
  return newObj;
131
131
  }
132
- const nextVersion = "14.2.5";
132
+ const nextVersion = "14.2.6";
133
133
  const ArchName = (0, _os.arch)();
134
134
  const PlatformName = (0, _os.platform)();
135
135
  const infoLog = (...args)=>{
@@ -1502,7 +1502,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
1502
1502
  new _wellknownerrorsplugin.WellKnownErrorsPlugin(),
1503
1503
  isClient && new _copyfileplugin.CopyFilePlugin({
1504
1504
  filePath: require.resolve("./polyfills/polyfill-nomodule"),
1505
- cacheKey: "14.2.5",
1505
+ cacheKey: "14.2.6",
1506
1506
  name: `static/chunks/polyfills${dev ? "" : "-[hash]"}.js`,
1507
1507
  minimize: false,
1508
1508
  info: {
@@ -1730,7 +1730,7 @@ async function getBaseWebpackConfig(dir, { buildId, encryptionKey, config, compi
1730
1730
  // - Next.js location on disk (some loaders use absolute paths and some resolve options depend on absolute paths)
1731
1731
  // - Next.js version
1732
1732
  // - next.config.js keys that affect compilation
1733
- version: `${__dirname}|${"14.2.5"}|${configVars}`,
1733
+ version: `${__dirname}|${"14.2.6"}|${configVars}`,
1734
1734
  cacheDirectory: _path.default.join(distDir, "cache", "webpack"),
1735
1735
  // For production builds, it's more efficient to compress all cache files together instead of compression each one individually.
1736
1736
  // So we disable compression here and allow the build runner to take care of compressing the cache as a whole.
@@ -13,7 +13,7 @@ Object.defineProperty(exports, "appBootstrap", {
13
13
  return appBootstrap;
14
14
  }
15
15
  });
16
- const version = "14.2.5";
16
+ const version = "14.2.6";
17
17
  window.next = {
18
18
  version,
19
19
  appDir: true
@@ -62,7 +62,7 @@ const _hooksclientcontextsharedruntime = require("../shared/lib/hooks-client-con
62
62
  const _onrecoverableerror = /*#__PURE__*/ _interop_require_default._(require("./on-recoverable-error"));
63
63
  const _tracer = /*#__PURE__*/ _interop_require_default._(require("./tracing/tracer"));
64
64
  const _reporttosocket = /*#__PURE__*/ _interop_require_default._(require("./tracing/report-to-socket"));
65
- const version = "14.2.5";
65
+ const version = "14.2.6";
66
66
  let router;
67
67
  const emitter = (0, _mitt.default)();
68
68
  const looseToArray = (input)=>[].slice.call(input);