vite 6.1.4 → 6.1.5

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.
@@ -44712,6 +44712,17 @@ function searchForWorkspaceRoot(current, root = searchForPackageRoot(current)) {
44712
44712
  return searchForWorkspaceRoot(dir, root);
44713
44713
  }
44714
44714
 
44715
+ function rejectInvalidRequestMiddleware() {
44716
+ return function viteRejectInvalidRequestMiddleware(req, res, next) {
44717
+ if (req.url?.includes("#")) {
44718
+ res.writeHead(400);
44719
+ res.end();
44720
+ return;
44721
+ }
44722
+ return next();
44723
+ };
44724
+ }
44725
+
44715
44726
  function createServer(inlineConfig = {}) {
44716
44727
  return _createServer(inlineConfig, { listen: true });
44717
44728
  }
@@ -45049,6 +45060,7 @@ async function _createServer(inlineConfig = {}, options) {
45049
45060
  if (process.env.DEBUG) {
45050
45061
  middlewares.use(timeMiddleware(root));
45051
45062
  }
45063
+ middlewares.use(rejectInvalidRequestMiddleware());
45052
45064
  const { cors } = serverConfig;
45053
45065
  if (cors !== false) {
45054
45066
  middlewares.use(corsMiddleware(typeof cors === "boolean" ? {} : cors));
@@ -50019,8 +50031,8 @@ function createCachedImport(imp) {
50019
50031
  return cached;
50020
50032
  };
50021
50033
  }
50022
- const importPostcssImport = createCachedImport(() => import('./dep-stc9c31V.js').then(function (n) { return n.i; }));
50023
- const importPostcssModules = createCachedImport(() => import('./dep-7B7unqQx.js').then(function (n) { return n.i; }));
50034
+ const importPostcssImport = createCachedImport(() => import('./dep-CwTNmu7W.js').then(function (n) { return n.i; }));
50035
+ const importPostcssModules = createCachedImport(() => import('./dep-DWaGFX-v.js').then(function (n) { return n.i; }));
50024
50036
  const importPostcss = createCachedImport(() => import('postcss'));
50025
50037
  const preprocessorWorkerControllerCache = /* @__PURE__ */ new WeakMap();
50026
50038
  let alwaysFakeWorkerWorkerControllerCache;
@@ -1,4 +1,4 @@
1
- import { P as getDefaultExportFromCjs } from './dep-B--GINb9.js';
1
+ import { P as getDefaultExportFromCjs } from './dep-C6Xcw3Ji.js';
2
2
  import require$$0 from 'path';
3
3
  import { l as lib } from './dep-3RmXg9uo.js';
4
4
 
@@ -1,4 +1,4 @@
1
- import { Q as commonjsGlobal, P as getDefaultExportFromCjs } from './dep-B--GINb9.js';
1
+ import { Q as commonjsGlobal, P as getDefaultExportFromCjs } from './dep-C6Xcw3Ji.js';
2
2
  import require$$0$2 from 'fs';
3
3
  import require$$0 from 'postcss';
4
4
  import require$$0$1 from 'path';
package/dist/node/cli.js CHANGED
@@ -2,7 +2,7 @@ import path from 'node:path';
2
2
  import fs__default from 'node:fs';
3
3
  import { performance } from 'node:perf_hooks';
4
4
  import { EventEmitter } from 'events';
5
- import { O as colors, I as createLogger, r as resolveConfig } from './chunks/dep-B--GINb9.js';
5
+ import { O as colors, I as createLogger, r as resolveConfig } from './chunks/dep-C6Xcw3Ji.js';
6
6
  import { VERSION } from './constants.js';
7
7
  import 'node:fs/promises';
8
8
  import 'node:url';
@@ -745,7 +745,7 @@ cli.command("[root]", "start dev server").alias("serve").alias("dev").option("--
745
745
  `[boolean] force the optimizer to ignore the cache and re-bundle`
746
746
  ).action(async (root, options) => {
747
747
  filterDuplicateOptions(options);
748
- const { createServer } = await import('./chunks/dep-B--GINb9.js').then(function (n) { return n.S; });
748
+ const { createServer } = await import('./chunks/dep-C6Xcw3Ji.js').then(function (n) { return n.S; });
749
749
  try {
750
750
  const server = await createServer({
751
751
  root,
@@ -839,7 +839,7 @@ cli.command("build [root]", "build for production").option("--target <target>",
839
839
  ).option("-w, --watch", `[boolean] rebuilds when modules have changed on disk`).option("--app", `[boolean] same as \`builder: {}\``).action(
840
840
  async (root, options) => {
841
841
  filterDuplicateOptions(options);
842
- const { createBuilder } = await import('./chunks/dep-B--GINb9.js').then(function (n) { return n.T; });
842
+ const { createBuilder } = await import('./chunks/dep-C6Xcw3Ji.js').then(function (n) { return n.T; });
843
843
  const buildOptions = cleanGlobalCLIOptions(
844
844
  cleanBuilderCLIOptions(options)
845
845
  );
@@ -878,7 +878,7 @@ cli.command(
878
878
  ).action(
879
879
  async (root, options) => {
880
880
  filterDuplicateOptions(options);
881
- const { optimizeDeps } = await import('./chunks/dep-B--GINb9.js').then(function (n) { return n.R; });
881
+ const { optimizeDeps } = await import('./chunks/dep-C6Xcw3Ji.js').then(function (n) { return n.R; });
882
882
  try {
883
883
  const config = await resolveConfig(
884
884
  {
@@ -905,7 +905,7 @@ ${e.stack}`),
905
905
  cli.command("preview [root]", "locally preview production build").option("--host [host]", `[string] specify hostname`, { type: [convertHost] }).option("--port <port>", `[number] specify port`).option("--strictPort", `[boolean] exit if specified port is already in use`).option("--open [path]", `[boolean | string] open browser on startup`).option("--outDir <dir>", `[string] output directory (default: dist)`).action(
906
906
  async (root, options) => {
907
907
  filterDuplicateOptions(options);
908
- const { preview } = await import('./chunks/dep-B--GINb9.js').then(function (n) { return n.U; });
908
+ const { preview } = await import('./chunks/dep-C6Xcw3Ji.js').then(function (n) { return n.U; });
909
909
  try {
910
910
  const server = await preview({
911
911
  root,
@@ -1,6 +1,6 @@
1
1
  export { parseAst, parseAstAsync } from 'rollup/parseAst';
2
- import { i as isInNodeModules, a as arraify } from './chunks/dep-B--GINb9.js';
3
- export { B as BuildEnvironment, D as DevEnvironment, f as build, m as buildErrorMessage, g as createBuilder, F as createFilter, h as createIdResolver, I as createLogger, n as createRunnableDevEnvironment, c as createServer, y as createServerHotChannel, w as createServerModuleRunner, x as createServerModuleRunnerTransport, d as defineConfig, v as fetchModule, j as formatPostcssSourceMap, L as isFileLoadingAllowed, K as isFileServingAllowed, q as isRunnableDevEnvironment, l as loadConfigFromFile, M as loadEnv, E as mergeAlias, C as mergeConfig, z as moduleRunnerTransform, A as normalizePath, o as optimizeDeps, p as perEnvironmentPlugin, b as perEnvironmentState, k as preprocessCSS, e as preview, r as resolveConfig, N as resolveEnvPrefix, G as rollupVersion, u as runnerImport, J as searchForWorkspaceRoot, H as send, s as sortUserPlugins, t as transformWithEsbuild } from './chunks/dep-B--GINb9.js';
2
+ import { i as isInNodeModules, a as arraify } from './chunks/dep-C6Xcw3Ji.js';
3
+ export { B as BuildEnvironment, D as DevEnvironment, f as build, m as buildErrorMessage, g as createBuilder, F as createFilter, h as createIdResolver, I as createLogger, n as createRunnableDevEnvironment, c as createServer, y as createServerHotChannel, w as createServerModuleRunner, x as createServerModuleRunnerTransport, d as defineConfig, v as fetchModule, j as formatPostcssSourceMap, L as isFileLoadingAllowed, K as isFileServingAllowed, q as isRunnableDevEnvironment, l as loadConfigFromFile, M as loadEnv, E as mergeAlias, C as mergeConfig, z as moduleRunnerTransform, A as normalizePath, o as optimizeDeps, p as perEnvironmentPlugin, b as perEnvironmentState, k as preprocessCSS, e as preview, r as resolveConfig, N as resolveEnvPrefix, G as rollupVersion, u as runnerImport, J as searchForWorkspaceRoot, H as send, s as sortUserPlugins, t as transformWithEsbuild } from './chunks/dep-C6Xcw3Ji.js';
4
4
  export { defaultAllowedOrigins, DEFAULT_CLIENT_CONDITIONS as defaultClientConditions, DEFAULT_CLIENT_MAIN_FIELDS as defaultClientMainFields, DEFAULT_SERVER_CONDITIONS as defaultServerConditions, DEFAULT_SERVER_MAIN_FIELDS as defaultServerMainFields, VERSION as version } from './constants.js';
5
5
  export { version as esbuildVersion } from 'esbuild';
6
6
  import 'node:fs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite",
3
- "version": "6.1.4",
3
+ "version": "6.1.5",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Evan You",