Commit 9e5656c
authored
chore(deps): update dependency vite to v6.3.4 [security] (main) (#7290)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite](https://vite.dev)
([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite))
| [`6.3.2` ->
`6.3.4`](https://renovatebot.com/diffs/npm/vite/6.3.2/6.3.4) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [vite](https://vite.dev)
([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite))
| [`6.3.3` ->
`6.3.4`](https://renovatebot.com/diffs/npm/vite/6.3.3/6.3.4) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
### GitHub Vulnerability Alerts
####
[CVE-2025-46565](https://redirect.github.com/vitejs/vite/security/advisories/GHSA-859w-5945-r5v3)
### Summary
The contents of files in [the project
`root`](https://vite.dev/config/shared-options.html#root) that are
denied by a file matching pattern can be returned to the browser.
### Impact
Only apps explicitly exposing the Vite dev server to the network (using
--host or [server.host config
option](https://vitejs.dev/config/server-options.html#server-host)) are
affected.
Only files that are under [project
`root`](https://vite.dev/config/shared-options.html#root) and are denied
by a file matching pattern can be bypassed.
- Examples of file matching patterns: `.env`, `.env.*`, `*.{crt,pem}`,
`**/.env`
- Examples of other patterns: `**/.git/**`, `.git/**`, `.git/**/*`
### Details
[`server.fs.deny`](https://vite.dev/config/server-options.html#server-fs-deny)
can contain patterns matching against files (by default it includes
`.env`, `.env.*`, `*.{crt,pem}` as such patterns).
These patterns were able to bypass for files under `root` by using a
combination of slash and dot (`/.`).
### PoC
```
npm create vite@latest
cd vite-project/
cat "secret" > .env
npm install
npm run dev
curl --request-target /.env/. http://localhost:5173
```


---
### Release Notes
<details>
<summary>vitejs/vite (vite)</summary>
###
[`v6.3.4`](https://redirect.github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small634-2025-04-30-small)
[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v6.3.3...v6.3.4)
- fix: check static serve file inside sirv
([#​19965](https://redirect.github.com/vitejs/vite/issues/19965))
([c22c43d](https://redirect.github.com/vitejs/vite/commit/c22c43de612eebb6c182dd67850c24e4fab8cacb)),
closes
[#​19965](https://redirect.github.com/vitejs/vite/issues/19965)
- fix(optimizer): return plain object when using `require` to import
externals in optimized dependenci
([efc5eab](https://redirect.github.com/vitejs/vite/commit/efc5eab253419fde0a6a48b8d2f233063d6a9643)),
closes
[#​19940](https://redirect.github.com/vitejs/vite/issues/19940)
- refactor: remove duplicate plugin context type
([#​19935](https://redirect.github.com/vitejs/vite/issues/19935))
([d6d01c2](https://redirect.github.com/vitejs/vite/commit/d6d01c2292fa4f9603e05b95d81c8724314c20e0)),
closes
[#​19935](https://redirect.github.com/vitejs/vite/issues/19935)
###
[`v6.3.3`](https://redirect.github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small633-2025-04-24-small)
[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v6.3.2...v6.3.3)
- fix: ignore malformed uris in tranform middleware
([#​19853](https://redirect.github.com/vitejs/vite/issues/19853))
([e4d5201](https://redirect.github.com/vitejs/vite/commit/e4d520141bcd83ad61f16767348b4a813bf9340a)),
closes
[#​19853](https://redirect.github.com/vitejs/vite/issues/19853)
- fix(assets): ensure ?no-inline is not included in the asset url in the
production environment
([#​1949](https://redirect.github.com/vitejs/vite/issues/1949)
([16a73c0](https://redirect.github.com/vitejs/vite/commit/16a73c05d35daa34117a173784895546212db5f4)),
closes
[#​19496](https://redirect.github.com/vitejs/vite/issues/19496)
- fix(css): resolve relative imports in sass properly on Windows
([#​19920](https://redirect.github.com/vitejs/vite/issues/19920))
([ffab442](https://redirect.github.com/vitejs/vite/commit/ffab44270488f54ae344801024474b597249071b)),
closes
[#​19920](https://redirect.github.com/vitejs/vite/issues/19920)
- fix(deps): update all non-major dependencies
([#​19899](https://redirect.github.com/vitejs/vite/issues/19899))
([a4b500e](https://redirect.github.com/vitejs/vite/commit/a4b500ef9ccc9b19a2882156a9ba8397e69bc6b2)),
closes
[#​19899](https://redirect.github.com/vitejs/vite/issues/19899)
- fix(ssr): fix execution order of re-export
([#​19841](https://redirect.github.com/vitejs/vite/issues/19841))
([ed29dee](https://redirect.github.com/vitejs/vite/commit/ed29dee2eb2e3573b2bc337e1a9124c65222a1e5)),
closes
[#​19841](https://redirect.github.com/vitejs/vite/issues/19841)
- fix(ssr): fix live binding of default export declaration and hoist
exports getter
([#​19842](https://redirect.github.com/vitejs/vite/issues/19842))
([80a91ff](https://redirect.github.com/vitejs/vite/commit/80a91ff82426a4c88d54b9f5ec9a4205cb13899b)),
closes
[#​19842](https://redirect.github.com/vitejs/vite/issues/19842)
- perf: skip sourcemap generation for renderChunk hook of
import-analysis-build plugin
([#​19921](https://redirect.github.com/vitejs/vite/issues/19921))
([55cfd04](https://redirect.github.com/vitejs/vite/commit/55cfd04b10f98cde7a96814a69b9813543ea79c2)),
closes
[#​19921](https://redirect.github.com/vitejs/vite/issues/19921)
- test(ssr): test `ssrTransform` re-export deps and test stacktrace with
first line
([#​19629](https://redirect.github.com/vitejs/vite/issues/19629))
([9399cda](https://redirect.github.com/vitejs/vite/commit/9399cdaf8c3b2efd5f4015d57dc3b0e4e5b91a9d)),
closes
[#​19629](https://redirect.github.com/vitejs/vite/issues/19629)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "" (UTC), Automerge - At any time (no
schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/SAP/ui5-webcomponents-react).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 9061974 commit 9e5656c
File tree
4 files changed
+21
-21
lines changed- examples
- react-router-ts
- vite-ts
- templates/vite-ts
4 files changed
+21
-21
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24519 | 24519 | | |
24520 | 24520 | | |
24521 | 24521 | | |
24522 | | - | |
24523 | | - | |
| 24522 | + | |
| 24523 | + | |
24524 | 24524 | | |
24525 | 24525 | | |
24526 | 24526 | | |
| |||
24557 | 24557 | | |
24558 | 24558 | | |
24559 | 24559 | | |
24560 | | - | |
| 24560 | + | |
24561 | 24561 | | |
24562 | 24562 | | |
24563 | 24563 | | |
24564 | 24564 | | |
24565 | | - | |
24566 | | - | |
| 24565 | + | |
| 24566 | + | |
24567 | 24567 | | |
24568 | 24568 | | |
24569 | 24569 | | |
| |||
24612 | 24612 | | |
24613 | 24613 | | |
24614 | 24614 | | |
24615 | | - | |
| 24615 | + | |
24616 | 24616 | | |
24617 | 24617 | | |
24618 | 24618 | | |
| |||
0 commit comments