Skip to content

Commit d814d6c

Browse files
authoredJun 7, 2023
fix(deps): update sirv to 2.0.3 (#13057)
1 parent 367920b commit d814d6c

File tree

8 files changed

+45
-32
lines changed

8 files changed

+45
-32
lines changed
 

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@
128128
},
129129
"patchedDependencies": {
130130
"dotenv-expand@9.0.0": "patches/dotenv-expand@9.0.0.patch",
131-
"sirv@2.0.2": "patches/sirv@2.0.2.patch",
132-
"chokidar@3.5.3": "patches/chokidar@3.5.3.patch"
131+
"chokidar@3.5.3": "patches/chokidar@3.5.3.patch",
132+
"sirv@2.0.3": "patches/sirv@2.0.3.patch"
133133
}
134134
},
135135
"stackblitz": {

‎packages/vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"postcss-modules": "^6.0.0",
124124
"resolve.exports": "^2.0.2",
125125
"rollup-plugin-license": "^3.0.1",
126-
"sirv": "^2.0.2",
126+
"sirv": "^2.0.3",
127127
"source-map-support": "^0.5.21",
128128
"strip-ansi": "^7.0.1",
129129
"strip-literal": "^1.0.1",

‎packages/vite/src/node/server/middlewares/static.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export function serveStaticMiddleware(
102102
}
103103

104104
const url = new URL(req.url!.replace(/^\/+/, '/'), 'http://example.com')
105-
const pathname = decodeURIComponent(url.pathname)
105+
const pathname = decodeURI(url.pathname)
106106

107107
// apply aliases to static requests as well
108108
let redirectedPathname: string | undefined
@@ -136,7 +136,7 @@ export function serveStaticMiddleware(
136136
}
137137

138138
if (redirectedPathname) {
139-
url.pathname = encodeURIComponent(redirectedPathname)
139+
url.pathname = encodeURI(redirectedPathname)
140140
req.url = url.href.slice(url.origin.length)
141141
}
142142

@@ -160,7 +160,7 @@ export function serveRawFsMiddleware(
160160
// the paths are rewritten to `/@fs/` prefixed paths and must be served by
161161
// searching based from fs root.
162162
if (url.pathname.startsWith(FS_PREFIX)) {
163-
const pathname = decodeURIComponent(url.pathname)
163+
const pathname = decodeURI(url.pathname)
164164
// restrict files outside of `fs.allow`
165165
if (
166166
!ensureServingAccess(
@@ -176,7 +176,7 @@ export function serveRawFsMiddleware(
176176
let newPathname = pathname.slice(FS_PREFIX.length)
177177
if (isWindows) newPathname = newPathname.replace(/^[A-Z]:/i, '')
178178

179-
url.pathname = encodeURIComponent(newPathname)
179+
url.pathname = encodeURI(newPathname)
180180
req.url = url.href.slice(url.origin.length)
181181
serveFromRoot(req, res, next)
182182
} else {

‎patches/sirv@2.0.2.patch ‎patches/sirv@2.0.3.patch

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --git a/build.js b/build.js
2-
index b046ee138b1f9047c70beaeea7279d3476d7e8cd..574ce1410a1344a4db292803d05c303f8c03767c 100644
2+
index 0884d9ffaa24d0ae3ec020a6faff12b3125b2071..85b82c90346e829bbf723e913f282c80096df061 100644
33
--- a/build.js
44
+++ b/build.js
55
@@ -35,7 +35,7 @@ function viaCache(cache, uri, extns) {
@@ -19,7 +19,7 @@ index b046ee138b1f9047c70beaeea7279d3476d7e8cd..574ce1410a1344a4db292803d05c303f
1919
headers = toHeaders(name, stats, isEtag);
2020
headers['Cache-Control'] = isEtag ? 'no-cache' : 'no-store';
2121
return { abs, stats, headers };
22-
@@ -172,7 +173,7 @@ module.exports = function (dir, opts={}) {
22+
@@ -176,7 +177,7 @@ module.exports = function (dir, opts={}) {
2323
catch (err) { /* malform uri */ }
2424
}
2525

@@ -29,7 +29,7 @@ index b046ee138b1f9047c70beaeea7279d3476d7e8cd..574ce1410a1344a4db292803d05c303f
2929

3030
if (isEtag && req.headers['if-none-match'] === data.headers['ETag']) {
3131
diff --git a/build.mjs b/build.mjs
32-
index fe01068d0dd3f788a0978802db1747dd83c5825e..fb099c38cc2cbd59300471e7307625e2fc127f0c 100644
32+
index c93bbe6bdfb7ad13ee20f0c44d80d6aacdd64087..3dc3e22f09abcae51aef7b75c34dc08b1f6e6abd 100644
3333
--- a/build.mjs
3434
+++ b/build.mjs
3535
@@ -35,7 +35,7 @@ function viaCache(cache, uri, extns) {
@@ -49,7 +49,7 @@ index fe01068d0dd3f788a0978802db1747dd83c5825e..fb099c38cc2cbd59300471e7307625e2
4949
headers = toHeaders(name, stats, isEtag);
5050
headers['Cache-Control'] = isEtag ? 'no-cache' : 'no-store';
5151
return { abs, stats, headers };
52-
@@ -172,7 +173,7 @@ export default function (dir, opts={}) {
52+
@@ -176,7 +177,7 @@ export default function (dir, opts={}) {
5353
catch (err) { /* malform uri */ }
5454
}
5555

‎playground/fs-serve/__tests__/fs-serve.spec.ts

+4-6
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,12 @@ describe.runIf(isServe)('main', () => {
4343
})
4444

4545
test('unsafe fetch with special characters (#8498)', async () => {
46-
expect(await page.textContent('.unsafe-fetch-8498')).toMatch(
47-
'403 Restricted',
48-
)
49-
expect(await page.textContent('.unsafe-fetch-8498-status')).toBe('403')
46+
expect(await page.textContent('.unsafe-fetch-8498')).toBe('')
47+
expect(await page.textContent('.unsafe-fetch-8498-status')).toBe('404')
5048
})
5149

5250
test('unsafe fetch with special characters 2 (#8498)', async () => {
53-
expect(await page.textContent('.unsafe-fetch-8498-2')).toMatch('')
51+
expect(await page.textContent('.unsafe-fetch-8498-2')).toBe('')
5452
expect(await page.textContent('.unsafe-fetch-8498-2-status')).toBe('404')
5553
})
5654

@@ -78,7 +76,7 @@ describe.runIf(isServe)('main', () => {
7876

7977
test('unsafe fs fetch with special characters (#8498)', async () => {
8078
expect(await page.textContent('.unsafe-fs-fetch-8498')).toBe('')
81-
expect(await page.textContent('.unsafe-fs-fetch-8498-status')).toBe('403')
79+
expect(await page.textContent('.unsafe-fs-fetch-8498-status')).toBe('404')
8280
})
8381

8482
test('unsafe fs fetch with special characters 2 (#8498)', async () => {

‎playground/lib/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
"build": "vite build",
99
"debug": "node --inspect-brk ../../packages/vite/bin/vite",
1010
"preview": "vite preview"
11+
},
12+
"devDependencies": {
13+
"sirv": "^2.0.3"
1114
}
1215
}

‎playground/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"convert-source-map": "^2.0.0",
1111
"css-color-names": "^1.0.1",
1212
"kill-port": "^1.6.1",
13-
"node-fetch": "^3.3.1",
14-
"sirv": "^2.0.2"
13+
"node-fetch": "^3.3.1"
1514
}
1615
}

‎pnpm-lock.yaml

+26-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.