PR #102 opened: chore(deps-dev): bump the minor-and-patch group with 4 updates
Bumps the minor-and-patch group with 4 updates: @vitejs/plugin-vue, axios, vite and vue-router.
Updates @vitejs/plugin-vue from 6.0.6 to 6.0.7
▶Release notes
Sourced from @vitejs/plugin-vue's releases.
[email protected]
Please refer to CHANGELOG.md for details.
▶Commits
f93acebrelease: [email protected]941b651feat: use carets for@rolldown/pluginutilsversion (#776)77dc8bcfix(deps): update all non-major dependencies (#774)9e825b8fix(deps): update all non-major dependencies (#762)- See full diff in compare view
Updates axios from 1.16.0 to 1.16.1
▶Release notes
Sourced from axios's releases.
v1.16.1 — May 13, 2026
This release ships a defence-in-depth fix for prototype pollution in
formDataToJSON, hardens proxy and CI workflows, restores Webpack 4 compatibility for the fetch adapter, and includes several small bug fixes and maintenance improvements.🔒 Security Fixes
- Prototype Pollution Defence-in-Depth: Hardened
formDataToJSONagainst already-pollutedObject.prototypeby walking own properties only, so attacker-controlled keys inherited from a poisoned prototype cannot propagate through deserialization. (#7413)- Proxy Cleartext Leak: Fixed an issue where HTTPS request data could be transmitted in cleartext to an HTTP proxy under certain configurations. (#10858)
- CI Cache Removal: Removed all GitHub Actions caches as a defence-in-depth measure against cache poisoning vectors in the build pipeline. (#10882)
🐛 Bug Fixes
- Data URI Parsing: Updated the
fromDataURIregex to match RFC 2397 more strictly, fixing edge cases indata:URL handling. (#10829)- Unicode Headers: Preserved Unicode header values when running through request interceptors, so non-ASCII header content is no longer corrupted before dispatch. (#10850)
- XHR Upload Progress: Guarded against malformed
ProgressEventpayloads emitted by some environments during XHR upload, preventing crashes whenloaded/totalare missing or invalid. (#10868)- Webpack 4 Fetch Adapter: Fixed an "unexpected token" error caused by syntax in the fetch adapter that Webpack 4 could not parse, restoring compatibility for legacy bundler users. (#10864)
- Type Definitions: Made
parseRevivercontext.sourceoptional in the type definitions to align with the ES2023 specification. (#10837)- URL Object Support Reverted: Reverted the change that allowed passing a
URLobject asconfig.url(originally #10866) due to regressions; this support will be reintroduced in a later release once the underlying issues are addressed. (#10874)🔧 Maintenance & Chores
- Cycle Detection Refactor: Replaced the array-based cycle tracker in
toJSONObjectwith aWeakSet, improving performance and memory behaviour on large nested structures. (#10832)- composeSignals Cleanup: Refactored
composeSignalsto use a clearer early-return structure, simplifying the cancellation/abort composition path. (#10844)- AI Readiness & Repo Docs: Added
AGENTS.mdand related contributor-guide updates for both human and AI agents, plus post-release documentation improvements. (#10835, #10841)- Docs Improvements: Clarified the GET request example, fixed the interceptor
ejectexample to reference the correct instance, and corrected the Buzzoid sponsor description in the README. (#10836, #10853, #10856)- Sponsorship Tooling: Fixed empty sponsor arrays in the sponsor processing script, added the ability to inject additional sponsors, updated the sponsorship link, and added a Twicsy advertisement entry. (#10843, #10859, #10869)
- Dependencies: Bumped
@commitlint/clifrom 20.5.0 to 20.5.2. (#10846)🌟 New Contributors
We are thrilled to welcome our new contributors. Thank you for helping improve axios:
▶Commits
1337d6bchore(release): prepare release 1.16.1 (#10877)858a790fix: remove all caches (#10882)34adfd9revert: "fix: support URL object as config.url input (#10866)" (#10874)847d89bfix: support URL object as config.url input (#10866)4094886fix(progress): guard malformed XHR upload events (#10868)44f0c5bchore: change sponsorship link and add Twicsy advertisement (#10869)64e1095chore: update PR and issue template to use h2 (#10865)3e6b4e1fix: error unexpected token in fetch JS compatibility issue with Webpack 4 (#...c4453bafix: add the ability to add additional sponsors to the process sponsors scrip...caa00a9fix: https data in cleartext to proxy (#10858)- Additional commits viewable in compare view
Updates vite from 8.0.12 to 8.0.13
▶Changelog
Sourced from vite's changelog.
8.0.13 (2026-05-14)
Features
- bundled-dev: add lazy bundling support (#21406) (4f0949f)
- optimizer: improve the esbuild plugin converter to pass some properties of build result to
onEnd(#22357) (47071ce)- update rolldown to 1.0.1 (#22444) (8c766a6)
Bug Fixes
- build: copy public directory after building same environment with
write=false(#22328) (158e8ae)- css: await sass/less/styl worker disposal on teardown (fix #22274) (#22275) (b7edcb7)
- css: keep deprecated
name/originalFileNamein syntheticassetFileNamescall (#22439) (8e59c97)- make
isBundledper environment (#22257) (a576326)- ssr: avoid rewriting labels that collide with imports (#22451) (d9b18e0)
Miscellaneous Chores
▶Commits
a46f11arelease: v8.0.13d9b18e0fix(ssr): avoid rewriting labels that collide with imports (#22451)4f0949ffeat(bundled-dev): add lazy bundling support (#21406)158e8aefix(build): copy public directory after building same environment with `write...47071cefeat(optimizer): improve the esbuild plugin converter to pass some properties...8e59c97fix(css): keep deprecatedname/originalFileNamein synthetic `assetFileNa...a576326fix: makeisBundledper environment (#22257)8c766a6feat: update rolldown to 1.0.1 (#22444)b7edcb7fix(css): await sass/less/styl worker disposal on teardown (fix #22274) (#22275)fcdc87cchore: update changelog (#22413)- Additional commits viewable in compare view
Updates vue-router from 5.0.6 to 5.0.7
▶Release notes
Sourced from vue-router's releases.
v5.0.7
🚀 Features
- Upgrade to babel 8 - by
@posva(8d3e6)- Make
defineParamParser()more intuitive - by@posva(8715b)- Upgrade
@vue/devtools-api- by@posva(87c3a)- matcher: Hint at
params: {}workaround in discarded params warning - by@posvaand shanliuling in vuejs/router#2689 (c2b13)- param-parsers: Add include/exclude options - by
@posva(91cde)🐞 Bug Fixes
- matcher:
- Finalize param token before processing escaped colon - by
@babu-chand@posvain vuejs/router#2654 (20521)- query:
- Use Object.create(null) to prevent prototype pollution - by
@wdskuki, wdsmini and@posvain vuejs/router#2661 (be88c)- resolve:
- Omit empty optional params from resolved params - by
@babu-chand@posvain vuejs/router#2434 (1ef09)- types:
- Wire RouteNamedMap via generated routes.d.ts - by
@posvain vuejs/router#2700 (aef99)- unplugin:
- Avoid generating empty routes - by
@FrontEndDogand@posvain vuejs/router#2642 (10a8b)- Apply definePage path-param parser overrides - by
@posvain vuejs/router#2699 (c8074)- volar:
- Drop runtime
@vue/language-coreimport - by@danielroein vuejs/router#2710 (8af50)View changes on GitHub
▶Commits
ddd20c3release: [email protected]91cdec3feat(param-parsers): add include/exclude options8af50c9fix(volar): drop runtime@vue/language-coreimport (#2710)b840cd6chore(ci): set least-privilege workflow token permissions (#2708)51c1672chore(release): use@clack/promptsaf77a7cchore: playground param type641200arefactor(param-parsers): simplify defineParamParser9b9896echore: commentsd41897brefactor: wip of defineParamParser17d51fbchore: logs- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
▶Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions