Skip to content

Commit 0c658de

Browse files
fix(deps)!: update dependency dotenv-expand to v12 (#18697)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: sapphi-red <49056869+sapphi-red@users.noreply.github.com>
1 parent fd1283f commit 0c658de

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

docs/guide/migration.md

+2
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ There are other breaking changes which only affect few users.
9999
- This PR not only introduces a breaking change mentioned above as "Default value for `resolve.conditions`", but also makes `resolve.mainFields` to not be used for no-externalized dependencies in SSR. If you were using `resolve.mainFields` and want to apply that to no-externalized dependencies in SSR, you can use [`ssr.resolve.mainFields`](/config/ssr-options#ssr-resolve-mainfields).
100100
- [[#18493] refactor!: remove fs.cachedChecks option](https://github.com/vitejs/vite/pull/18493)
101101
- This opt-in optimization was removed due to edge cases when writing a file in a cached folder and immediately importing it.
102+
- [[#18697] fix(deps)!: update dependency dotenv-expand to v12](https://github.com/vitejs/vite/pull/18697)
103+
- Variables used in interpolation should be declared before the interpolation now. For more details, see [the `dotenv-expand` changelog](https://github.com/motdotla/dotenv-expand/blob/v12.0.1/CHANGELOG.md#1200-2024-11-16).
102104

103105
## Migration from v4
104106

packages/vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"debug": "^4.3.7",
117117
"dep-types": "link:./src/types",
118118
"dotenv": "^16.4.5",
119-
"dotenv-expand": "^11.0.7",
119+
"dotenv-expand": "^12.0.1",
120120
"es-module-lexer": "^1.5.4",
121121
"escape-html": "^1.0.3",
122122
"estree-walker": "^3.0.3",

playground/env/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ VITE_CUSTOM_ENV_VARIABLE=1
22
CUSTOM_PREFIX_ENV_VARIABLE=1
33
VITE_EFFECTIVE_MODE_FILE_NAME=.env
44
VITE_BOOL=true
5+
DEPEND_ENV=depend
56
VITE_EXPAND_A=$EXPAND
67
VITE_EXPAND_B=$DEPEND_ENV
78
VITE_ESCAPE_A=escape\$
89
VITE_ESCAPE_B=escape$
910
IRRELEVANT_ENV=$DEPEND_ENV
1011
IRRELEVANT_ESCAPE_ENV=irrelevant$
11-
DEPEND_ENV=depend

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)