Update dependency vite to v3.1.3 - autoclosed
This MR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
vite (source) | 3.0.4 -> 3.1.3 |
⚠ Dependency Lookup Warnings ⚠
Warnings were logged while processing this repo. Please check the logs for more information.
Release Notes
vitejs/vite
v3.1.3
- fix: esbuildOutputFromId for symlinked root (#10154) (fc5310f), closes #10154
- fix(hmr): dedupe virtual modules in module graph (#10144) (71f08e7), closes #10144
- fix(lib): respect
rollupOptions.input
in lib mode (#10116) (c948e7d), closes #10116
v3.1.2
v3.1.1
- fix: ensure version query for relative node_modules imports (#10016) (1b822d0), closes #10016
- fix: no quote on attrs (#10117) (f541239), closes #10117
- fix: prevent error overlay style being overridden (fixes #9969) (#9971) (a7706d0), closes #9969 #9971
- fix: proxy to secured websocket server (#10045) (9de9bc4), closes #10045
- fix: replace white with reset (#10104) (5d56e42), closes #10104
- fix(deps): update all non-major dependencies (#10077) (caf00c8), closes #10077
- fix(deps): update all non-major dependencies (#9985) (855f2f0), closes #9985
- fix(preview): send configured headers (#9976) (0d20eae), closes #9976
- chore: cleanup old changelogs (#10056) (9e65a41), closes #10056
- chore: update 3.1 changelog (#9994) (44dbcbe), closes #9994
- chore(deps): update @rollup/plugin-node-resolve to v14 (#10078) (3390c87), closes #10078
- refactor: config hook helper function (#9982) (9c1be10), closes #9982
- refactor: optimize
async
andawait
in code (#9854) (31f5ff3), closes #9854
v3.1.0
Main Changes
- Vite now uses parse5, which parses HTML in the same way as the latest browser versions. This migration gives us a more robust HTML story moving forward (#9678).
- Vite now supports using objects as hooks to change execution order (#9634). Check out the RFC and the implementation upstream at rollup/rollup#4600 for details and rationale.
import { resolve } from 'node:path'; import { readdir } from 'node:fs/promises'; export default function getFilesOnDisk() { return { name: 'getFilesOnDisk', writeBundle: { // run this hook sequentially even if the hook is parallel sequential: true, // push this hook to the 'post' stage, after all normal hooks order: 'post', // hook implementation async handler({ dir }) { const topLevelFiles = await readdir(resolve(dir)) console.log(topLevelFiles) } } } }
Note After Vite 3.1, you are no longer going to see
[vite] hot updated
log messages in the browser console. These messages have been moved to the debug channel (#8855). Check your browser docs to show debug logs.
Features
- feat(css): format error (#9909) (632fedf), closes #9909
- perf: bundle create-vite (#9034) (37ac91e), closes #9034
- feat: stabilize server.resolvedUrls (#9866) (c3f6731), closes #9866
- feat(client): use debug channel on hot updates (#8855) (0452224), closes #8855
- feat: relax dep browser externals as warning (#9837) (71cb374), closes #9837
- feat: support object style hooks (#9634) (757a92f), closes #9634
- refactor: migrate from vue/compiler-dom to parse5 (#9678) (05b3ce6), closes #9678
- refactor: use
server.ssrTransform
(#9769) (246a087), closes #9769 - perf: legacy avoid insert the entry module css (#9761) (0765ab8), closes #9761
Bug Fixes
- fix(css): remove css-post plugin sourcemap (#9914) (c9521e7), closes #9914
- fix(hmr): duplicated modules because of query params mismatch (fixes #2255) (#9773) (86bf776), closes #2255 #9773
- fix(ssr): enable
inlineDynamicImports
when input has length 1 (#9904) (9ac5075), closes #9904 - fix(types): mark explicitImportRequired optional and experimental (#9962) (7b618f0), closes #9962
- fix: bump esbuild to 0.15.6 (#9934) (091537c), closes #9934
- refactor(hmr): simplify fetchUpdate (#9881) (8872aba), closes #9881
- fix: ensure version query for direct node_modules imports (#9848) (e7712ff), closes #9848
- fix: escape glob path (#9842) (6be971e), closes #9842
- fix(build): build project path error (#9793) (cc8800a), closes #9793
- fix(types): explicitly set Vite hooks'
this
tovoid
(#9885) (2d2f2e5), closes #9885 - fix:
completeSystemWrapPlugin
capturesfunction ()
(fixes #9807) (#9821) (1ee0364), closes #9807 #9821 - fix:
injectQuery
break relative path (#9760) (61273b2), closes #9760 - fix: close socket when client error handled (#9816) (ba62be4), closes #9816
- fix: handle resolve optional peer deps (#9321) (eec3886), closes #9321
- fix: module graph ensureEntryFromUrl based on id (#9759) (01857af), closes #9759
- fix: sanitize asset filenames (#9737) (2f468bb), closes #9737
- fix: Skip inlining Git LFS placeholders (fix #9714) (#9795) (9c7e43d), closes #9714 #9795
- fix(html): move importmap before module scripts (#9392) (b386fba), closes #9392
Previous Changelogs
3.1.0-beta.2 (2022-09-02)
3.1.0-beta.1 (2022-08-29)
3.1.0-beta.0 (2022-08-25)
v3.0.9
- feat(ssr): warn if cant analyze dynamic import (#9738) (e0ecb80), closes #9738
- fix: dynamic import path contain ../ and its own directory (#9350) (c6870f3), closes #9350
- fix: legacy no resolve asset urls (#9507) (1d6a1eb), closes #9507
- fix: print error file path when using
rollupOptions.output.dir
(fix #9100) (#9111) (3bffd14), closes #9100 #9111 - fix: skip undefined proxy entry (#9622) (e396d67), closes #9622
- fix(hmr): duplicate link tags (#9697) (9aa9515), closes #9697
- fix(import-analysis): escape quotes (#9729) (21515f1), closes #9729
- docs: fix typos in comments and documentation (#9711) (0571232), closes #9711
- docs: update import.meta.glob jsdocs (#9709) (15ff3a2), closes #9709
- chore(deps): update all non-major dependencies (#9675) (4e56e87), closes #9675
- chore(deps): update dependency es-module-lexer to v1 (#9576) (1d8613f), closes #9576
- perf: avoid
ssrTransform
object allocation (#9706) (6e58d9d), closes #9706
v3.0.8
- fix: allow ping to http from https website (#9561) (f4b4405), closes #9561
- fix: use browser field if likely esm (fixes #9652) (#9653) (85e387a), closes #9652 #9653
- fix(ssr-manifest): filter path undefined when dynamic import (#9655) (1478a2f), closes #9655
- docs: update WSL2 watch limitation explanation (#8939) (afbb87d), closes #8939
v3.0.7
- chore: fix typo in error message (#9645) (7121ee0), closes #9645
- fix(config): don't use file url for external files with cjs output (#9642) (73ad707), closes #9642
v3.0.6
- chore: narrow down rollup version (#9637) (fcf4d98), closes #9637
- feat: show warning on 431 response (#9324) (e8b61bb), closes #9324
- fix: avoid using
import.meta.url
for relative assets if output is not ESM (fixes #9297) (#9381) (6d95225), closes #9297 #9381 - fix: json HMR (fixes #9521) (#9610) (e45d95f), closes #9521 #9610
- fix: legacy no emit worker (#9500) (9d0b18b), closes #9500
- fix: use browser field if it is not likely UMD or CJS (fixes #9445) (#9459) (c868e64), closes #9445 #9459
- fix(optimizer): ignore EACCES errors while scanner (fixes #8916) (#9509) (4e6a77f), closes #8916 #9509
- fix(ssr): rename objectPattern dynamic key (fixes #9585) (#9609) (ee7f78f), closes #9585 #9609
v3.0.5
- fix: allow tree-shake glob eager css in js (#9547) (2e309d6), closes #9547
- fix: ignore tsconfig target when bundling config (#9457) (c5e7895), closes #9457
- fix: log worker plugins in debug mode (#9553) (c1fa219), closes #9553
- fix: tree-shake modulepreload polyfill (#9531) (1f11a70), closes #9531
- fix: update dep types (fixes #9475) (#9489) (937cecc), closes #9475 #9489
- fix(build): normalized output log (#9594) (8bae103), closes #9594
- fix(config): try catch unlink after load (#9577) (d35a1e2), closes #9577
- fix(config): use file url for import path (fixes #9471) (#9473) (22084a6), closes #9471 #9473
- fix(deps): update all non-major dependencies (#9575) (8071325), closes #9575
- fix(ssr): check root import extension for external (#9494) (ff89df5), closes #9494
- fix(ssr): use appendRight for import (#9554) (dfec6ca), closes #9554
- refactor(resolve): remove commonjs plugin handling (#9460) (2042b91), closes #9460
- chore: init imports var before use (#9569) (905b8eb), closes #9569
- chore: node prefix lint (#9514) (9e9cd23), closes #9514
- chore: tidy up eslint config (#9468) (f4addcf), closes #9468
- chore(deps): update all non-major dependencies (#9478) (c530d16), closes #9478
- docs: fix incomplete comment (#9466) (5169c51), closes #9466
- feat(ssr): debug failed node resolve (#9432) (364aae1), closes #9432
Configuration
-
If you want to rebase/retry this MR, click this checkbox.
This MR has been generated by Renovate Bot.
Edited by igswsihw-wmadepbot