PR #96 opened: chore(deps-dev): bump the minor-and-patch group across 1 directory with 6 updates
Bumps the minor-and-patch group with 5 updates in the / directory:
| Package | From | To |
|---|---|---|
| @tailwindcss/postcss | 4.2.4 | 4.3.0 |
| axios | 1.15.2 | 1.16.0 |
| postcss | 8.5.12 | 8.5.14 |
| vite | 8.0.10 | 8.0.12 |
| vue | 3.5.33 | 3.5.34 |
Updates @tailwindcss/postcss from 4.2.4 to 4.3.0
▶Release notes
Sourced from @tailwindcss/postcss's releases.
v4.3.0
Added
- Add
@container-sizeutility (#18901)- Add
scrollbar-{auto,thin,none}utilities forscrollbar-width, andscrollbar-thumb-*/scrollbar-track-*color utilities forscrollbar-color(#19981, #20019)- Add
scrollbar-gutter-*utilities (#20018)- Add
zoom-*utilities (#20020)- Add
tab-*utilities (#20022)- Allow using
@variantwith stacked variants (e.g.@variant hover:focus { … }) (#19996)- Allow using
@variantwith compound variants (e.g.@variant hover, focus { … }) (#19996)- Support
--default(…)in--value(…)and--modifier(…)for functional@utilitydefinitions (#19989)Fixed
- Ensure
@pluginresolves package JavaScript entries instead of browser CSS entries when using@tailwindcss/vite(#19949)- Fix relative
@importand@pluginpaths resolving from the wrong directory when using@tailwindcss/vite(#19965)- Ensure CSS files containing
@variantare processed by@tailwindcss/vite(#19966)- Resolve imports relative to
basewhenresult.opts.fromis not provided when using@tailwindcss/postcss(#19980)- Canonicalization: preserve significant
_whitespace in arbitrary values (#19986)- Canonicalization: add parentheses when removing whitespace from arbitrary values would hurt readability (e.g.
w-[calc(100%---spacing(60))]→w-[calc(100%-(--spacing(60)))]) (#19986)- Canonicalization: preserve the original unit in arbitrary values instead of normalizing to base units (e.g.
-mt-[20in]→mt-[-20in], notmt-[-1920px]) (#19988)- Canonicalization: migrate arbitrary
:has()variants from[&:has(…)]tohas-[…](#19991)- Upgrade: don’t migrate inline
styleattributes (e.g.style="flex-grow: 1"→style="flex-grow: 1", notstyle="grow: 1") (#19918)- Allow multiple
@utilitydefinitions with the same name but different value types (#19777)- Export missing
PluginWithConfigtype fromtailwindcss/pluginto fix errors when inferring plugin config types (#19707)- Ensure
startandendlegacy utilities without values do not generate CSS (#20003)- Ensure
--value(…)is required in functional@utilitydefinitions (#20005)- Canonicalization: preserve required whitespace around operators in negated arbitrary values (e.g.
-left-[(var(--a)+var(--b))]) (#20011)
▶Changelog
Sourced from @tailwindcss/postcss's changelog.
[4.3.0] - 2026-05-08
Added
- Add
@container-sizeutility (#18901)- Add
scrollbar-{auto,thin,none}utilities forscrollbar-width, andscrollbar-thumb-*/scrollbar-track-*color utilities forscrollbar-color(#19981, #20019)- Add
scrollbar-gutter-*utilities (#20018)- Add
zoom-*utilities (#20020)- Add
tab-*utilities (#20022)- Allow using
@variantwith stacked variants (e.g.@variant hover:focus { … }) (#19996)- Allow using
@variantwith compound variants (e.g.@variant hover, focus { … }) (#19996)- Support
--default(…)in--value(…)and--modifier(…)for functional@utilitydefinitions (#19989)Fixed
- Ensure
@pluginresolves package JavaScript entries instead of browser CSS entries when using@tailwindcss/vite(#19949)- Fix relative
@importand@pluginpaths resolving from the wrong directory when using@tailwindcss/vite(#19965)- Ensure CSS files containing
@variantare processed by@tailwindcss/vite(#19966)- Resolve imports relative to
basewhenresult.opts.fromis not provided when using@tailwindcss/postcss(#19980)- Canonicalization: preserve significant
_whitespace in arbitrary values (#19986)- Canonicalization: add parentheses when removing whitespace from arbitrary values would hurt readability (e.g.
w-[calc(100%---spacing(60))]→w-[calc(100%-(--spacing(60)))]) (#19986)- Canonicalization: preserve the original unit in arbitrary values instead of normalizing to base units (e.g.
-mt-[20in]→mt-[-20in], notmt-[-1920px]) (#19988)- Canonicalization: migrate arbitrary
:has()variants from[&:has(…)]tohas-[…](#19991)- Upgrade: don’t migrate inline
styleattributes (e.g.style="flex-grow: 1"→style="flex-grow: 1", notstyle="grow: 1") (#19918)- Allow multiple
@utilitydefinitions with the same name but different value types (#19777)- Export missing
PluginWithConfigtype fromtailwindcss/pluginto fix errors when inferring plugin config types (#19707)- Ensure
startandendlegacy utilities without values do not generate CSS (#20003)- Ensure
--value(…)is required in functional@utilitydefinitions (#20005)- Canonicalization: preserve required whitespace around operators in negated arbitrary values (e.g.
-left-[(var(--a)+var(--b))]) (#20011)
▶Commits
588bd734.3.0 (#20023)12eb5aeCleanup noisy test output (#20015)4255671Improve snapshot tests (#20013)52f94c7Improve codebase quality (#19999)d194d4cdocs: fix various typos in comments and documentation (#19878)bfb5732Fall back to the pluginbasewhen PostCSS has nofromoption (#19980)3a890c3Bump dependencies (#19957)- See full diff in compare view
Updates axios from 1.15.2 to 1.16.0
▶Release notes
Sourced from axios's releases.
v1.16.0 — May 2, 2026
This release adds support for the QUERY HTTP method and a new
ECONNREFUSEDerror constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.⚠️ Notable Changes
A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:
- Fetch adapter now enforces
maxBodyLengthandmaxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#10795)- Proxy requests now preserve user-supplied
Hostheaders. Previously, the proxy path could overwrite a customHost. Virtual-host-style routing through a proxy will now behave correctly. (#10822)- Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g.
https://user:p%40ss@host), the decoded value is what now goes on the wire. (#10825)parseProtocolnow strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#10729)- Deprecated
unescape()replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacyunescape()quirks may see different output bytes. (#7378)transformRequestinput typing change was reverted. The typing change introduced in #10745 was reverted in #10810 after follow-up review — net behavior is unchanged from 1.15.2. (#10745, #10810)🚀 New Features
- QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#10802)
- ECONNREFUSED Error Constant: Exposed
ECONNREFUSEDas a constant onAxiosErrorso callers can match connection-refused failures without comparing string literals (closes #6485). (#10680)- Encode Helper Export: Exported the internal
encodehelper frombuildURLso userland param serializers can reuse the same encoding logic that axios uses internally. (#6897)🐛 Bug Fixes
- HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing
requestDetailsargument onbeforeRedirect, preserved user-suppliedHostheaders when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#10794, #10800, #6241, #10822, #10825)- HTTP Adapter — Streams & Timeouts: Preserved the partial response object on
AxiosErrorwhen a stream is aborted after headers arrive, honoured thetimeoutoption during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression andmaxRedirects: 0. (#10708, #10819, #7149)- Fetch Adapter: Enforced
maxBodyLength/maxContentLengthin the fetch adapter, set theUser-Agentheader to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws aTypeErrorin restricted environments. (#10795, #10772, #10806, #7260)- XHR Adapter: Unsubscribed the
cancelTokenandAbortSignallisteners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#10787)- Error Handling: Attached the parsed response to
AxiosErrorwhenJSON.parsefails insidedispatchRequest, preventedsettlefrom emittingundefinederror codes, and tightened theparseProtocolregex to require a colon in the protocol separator. (#10724, #7276, #10729)- Types & Exports: Aligned the CommonJS
CancelTokentypings with the ESM build, fixed a compiler error caused byRawAxiosHeaders, and re-exportedcreatefrom the package index. (#7414, #6389, #6460)- UTF-8 Encoding: Replaced the deprecated
unescape()call with a modern UTF-8 encoding implementation. (#7378)- Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#10833)
🔧 Maintenance & Chores
- Refactor — ES6 Modernisation: Modernised the
utilsmodule and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#10588, #7419)- Tests: Hardened the HTTP test server lifecycle to fix flaky
FormDataEPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#10820, #10791, #10796)- Docs: Documented
paramsSerializer.encodefor strict RFC 3986 query encoding, updated theparseReviverTypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#10821, #10782, #10759, #10804)- Reverted: Reverted the
transformRequestinput typing change from #10745 after follow-up review. (#10745, #10810)- Dependencies: Bumped
actions/setup-node, thegithub-actionsgroup, andpostcss(in/docs) to their latest versions. (#10785, #10813, #10814)- Release: Updated changelog and packages, and prepared the 1.16.0 release. (#10790, #10834)
🌟 New Contributors
We are thrilled to welcome our new contributors. Thank you for helping improve axios:
... (truncated)
▶Changelog
Sourced from axios's changelog.
v1.16.0 — May 2, 2026
This release adds support for the QUERY HTTP method and a new
ECONNREFUSEDerror constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.⚠️ Notable Changes
A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:
- Fetch adapter now enforces
maxBodyLengthandmaxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#10795)- Proxy requests now preserve user-supplied
Hostheaders. Previously, the proxy path could overwrite a customHost. Virtual-host-style routing through a proxy will now behave correctly. (#10822)- Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g.
https://user:p%40ss@host), the decoded value is what now goes on the wire. (#10825)parseProtocolnow strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#10729)- Deprecated
unescape()replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacyunescape()quirks may see different output bytes. (#7378)transformRequestinput typing change was reverted. The typing change introduced in #10745 was reverted in #10810 after follow-up review — net behavior is unchanged from 1.15.2. (#10745, #10810)🚀 New Features
- QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#10802)
- ECONNREFUSED Error Constant: Exposed
ECONNREFUSEDas a constant onAxiosErrorso callers can match connection-refused failures without comparing string literals (closes #6485). (#10680)- Encode Helper Export: Exported the internal
encodehelper frombuildURLso userland param serializers can reuse the same encoding logic that axios uses internally. (#6897)🐛 Bug Fixes
- HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing
requestDetailsargument onbeforeRedirect, preserved user-suppliedHostheaders when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#10794, #10800, #6241, #10822, #10825)- HTTP Adapter — Streams & Timeouts: Preserved the partial response object on
AxiosErrorwhen a stream is aborted after headers arrive, honoured thetimeoutoption during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression andmaxRedirects: 0. (#10708, #10819, #7149)- Fetch Adapter: Enforced
maxBodyLength/maxContentLengthin the fetch adapter, set theUser-Agentheader to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws aTypeErrorin restricted environments. (#10795, #10772, #10806, #7260)- XHR Adapter: Unsubscribed the
cancelTokenandAbortSignallisteners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#10787)- Error Handling: Attached the parsed response to
AxiosErrorwhenJSON.parsefails insidedispatchRequest, preventedsettlefrom emittingundefinederror codes, and tightened theparseProtocolregex to require a colon in the protocol separator. (#10724, #7276, #10729)- Types & Exports: Aligned the CommonJS
CancelTokentypings with the ESM build, fixed a compiler error caused byRawAxiosHeaders, and re-exportedcreatefrom the package index. (#7414, #6389, #6460)- UTF-8 Encoding: Replaced the deprecated
unescape()call with a modern UTF-8 encoding implementation. (#7378)- Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#10833)
🔧 Maintenance & Chores
- Refactor — ES6 Modernisation: Modernised the
utilsmodule and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#10588, #7419)- Tests: Hardened the HTTP test server lifecycle to fix flaky
FormDataEPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#10820, #10791, #10796)- Docs: Documented
paramsSerializer.encodefor strict RFC 3986 query encoding, updated theparseReviverTypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#10821, #10782, #10759, #10804)- Reverted: Reverted the
transformRequestinput typing change from #10745 after follow-up review. (#10745, #10810)- Dependencies: Bumped
actions/setup-node, thegithub-actionsgroup, andpostcss(in/docs) to their latest versions. (#10785, #10813, #10814)- Release: Updated changelog and packages, and prepared the 1.16.0 release. (#10790, #10834)
🌟 New Contributors
We are thrilled to welcome our new contributors. Thank you for helping improve axios:
... (truncated)
▶Commits
df53d7dchore(release): prepare release 1.16.0 (#10834)9d92bcdfix: gadgets and smaller issues (#10833)5107ee6fix: prevent undefined error codes in settle (#7276)e573499fix(fetch): defer global access in fetch adapter (#7260)ad68e1afix(http): honor timeout during connect without redirects (#10819)2a51828fix(http): decode URL basic auth credentials (#10825)0e8b6bbfix(http): preserve user-supplied Host header when forwarding through a proxy...79f39e1docs: document paramsSerializer.encode for strict RFC 3986 query encoding (#1...0fe3a5f[Docs/Types] UpdateparseReviverTypeScript definitions for ES2023 and add ...cd6737fchore: matches the sibling responseStream.on(aborted) handler and added tests...- Additional commits viewable in compare view
Updates postcss from 8.5.12 to 8.5.14
▶Release notes
Sourced from postcss's releases.
8.5.14
- Fixed custom syntax regression (by
@43081j).8.5.13
- Fixed
postcss-scsscommend regression.
▶Changelog
Sourced from postcss's changelog.
8.5.14
- Fixed custom syntax regression (by
@43081j).8.5.13
- Fixed
postcss-scsscommend regression.
▶Commits
3ec1394Release 8.5.14 versionf2bb827Update dependenciesd75953dMerge pull request #2084 from 43081j/raw-raws-rawing68bd213fix: always callrawto retrieve raw valuesaf58cf1Release 8.5.13 versionf227dbdTemporary ignore pnpm 11 configd3abd40Update dependenciesdd06c3eRevert stringifier changes because of the conflict with postcss-scssae889c8Try to fix CIe0093e4Move to pnpm 11- See full diff in compare view
Updates tailwindcss from 4.2.4 to 4.3.0
▶Release notes
Sourced from tailwindcss's releases.
v4.3.0
Added
- Add
@container-sizeutility (#18901)- Add
scrollbar-{auto,thin,none}utilities forscrollbar-width, andscrollbar-thumb-*/scrollbar-track-*color utilities forscrollbar-color(#19981, #20019)- Add
scrollbar-gutter-*utilities (#20018)- Add
zoom-*utilities (#20020)- Add
tab-*utilities (#20022)- Allow using
@variantwith stacked variants (e.g.@variant hover:focus { … }) (#19996)- Allow using
@variantwith compound variants (e.g.@variant hover, focus { … }) (#19996)- Support
--default(…)in--value(…)and--modifier(…)for functional@utilitydefinitions (#19989)Fixed
- Ensure
@pluginresolves package JavaScript entries instead of browser CSS entries when using@tailwindcss/vite(#19949)- Fix relative
@importand@pluginpaths resolving from the wrong directory when using@tailwindcss/vite(#19965)- Ensure CSS files containing
@variantare processed by@tailwindcss/vite(#19966)- Resolve imports relative to
basewhenresult.opts.fromis not provided when using@tailwindcss/postcss(#19980)- Canonicalization: preserve significant
_whitespace in arbitrary values (#19986)- Canonicalization: add parentheses when removing whitespace from arbitrary values would hurt readability (e.g.
w-[calc(100%---spacing(60))]→w-[calc(100%-(--spacing(60)))]) (#19986)- Canonicalization: preserve the original unit in arbitrary values instead of normalizing to base units (e.g.
-mt-[20in]→mt-[-20in], notmt-[-1920px]) (#19988)- Canonicalization: migrate arbitrary
:has()variants from[&:has(…)]tohas-[…](#19991)- Upgrade: don’t migrate inline
styleattributes (e.g.style="flex-grow: 1"→style="flex-grow: 1", notstyle="grow: 1") (#19918)- Allow multiple
@utilitydefinitions with the same name but different value types (#19777)- Export missing
PluginWithConfigtype fromtailwindcss/pluginto fix errors when inferring plugin config types (#19707)- Ensure
startandendlegacy utilities without values do not generate CSS (#20003)- Ensure
--value(…)is required in functional@utilitydefinitions (#20005)- Canonicalization: preserve required whitespace around operators in negated arbitrary values (e.g.
-left-[(var(--a)+var(--b))]) (#20011)
▶Changelog
Sourced from tailwindcss's changelog.
[4.3.0] - 2026-05-08
Added
- Add
@container-sizeutility (#18901)- Add
scrollbar-{auto,thin,none}utilities forscrollbar-width, andscrollbar-thumb-*/scrollbar-track-*color utilities forscrollbar-color(#19981, #20019)- Add
scrollbar-gutter-*utilities (#20018)- Add
zoom-*utilities (#20020)- Add
tab-*utilities (#20022)- Allow using
@variantwith stacked variants (e.g.@variant hover:focus { … }) (#19996)- Allow using
@variantwith compound variants (e.g.@variant hover, focus { … }) (#19996)- Support
--default(…)in--value(…)and--modifier(…)for functional@utilitydefinitions (#19989)Fixed
- Ensure
@pluginresolves package JavaScript entries instead of browser CSS entries when using@tailwindcss/vite(#19949)- Fix relative
@importand@pluginpaths resolving from the wrong directory when using@tailwindcss/vite(#19965)- Ensure CSS files containing
@variantare processed by@tailwindcss/vite(#19966)- Resolve imports relative to
basewhenresult.opts.fromis not provided when using@tailwindcss/postcss(#19980)- Canonicalization: preserve significant
_whitespace in arbitrary values (#19986)- Canonicalization: add parentheses when removing whitespace from arbitrary values would hurt readability (e.g.
w-[calc(100%---spacing(60))]→w-[calc(100%-(--spacing(60)))]) (#19986)- Canonicalization: preserve the original unit in arbitrary values instead of normalizing to base units (e.g.
-mt-[20in]→mt-[-20in], notmt-[-1920px]) (#19988)- Canonicalization: migrate arbitrary
:has()variants from[&:has(…)]tohas-[…](#19991)- Upgrade: don’t migrate inline
styleattributes (e.g.style="flex-grow: 1"→style="flex-grow: 1", notstyle="grow: 1") (#19918)- Allow multiple
@utilitydefinitions with the same name but different value types (#19777)- Export missing
PluginWithConfigtype fromtailwindcss/pluginto fix errors when inferring plugin config types (#19707)- Ensure
startandendlegacy utilities without values do not generate CSS (#20003)- Ensure
--value(…)is required in functional@utilitydefinitions (#20005)- Canonicalization: preserve required whitespace around operators in negated arbitrary values (e.g.
-left-[(var(--a)+var(--b))]) (#20011)
▶Commits
588bd734.3.0 (#20023)59936c6Addtab-*utilities (#20022)90a2373addzoom-*utilities (#20020)2e1ccf7Addscrollbar-gutter-*utilities (#20018)754e751Use non-existing example in tests (#20021)12eb5aeCleanup noisy test output (#20015)4255671Improve snapshot tests (#20013)8c77989Ensure math operators are surrounded by whitespace in arbitrary values (#20011)b4db3b9Add scrollbar-width and scrollbar-color utilities (#19981)08cad84Support--default(…)in--value(…)and--modifier(…)to support fallbac...- Additional commits viewable in compare view
Updates vite from 8.0.10 to 8.0.12
▶Release notes
Sourced from vite's releases.
v8.0.12
Please refer to CHANGELOG.md for details.
v8.0.11
Please refer to CHANGELOG.md for details.
▶Changelog
Sourced from vite's changelog.
8.0.12 (2026-05-11)
Features
Bug Fixes
- deps: update all non-major dependencies (#22420) (2be6000)
- module-runner: prevent partial-exports race on concurrent imports of in-flight invalidated re-export chains (#22369) (f5a22e6)
- refer to
rolldownOptionsinstead of deprecatedrollupOptionsin messages (#22400) (b675c7b)- worker: apply
build.targetto worker bundle (#22404) (3c93fde)- worker: forward define to worker bundle transform (#22408) (d4838a0)
Miscellaneous Chores
- deps: update dependency eslint-plugin-n to v18 (#22423) (2fe7bd2)
- deps: update rolldown-related dependencies (#22421) (66b9eb3)
8.0.11 (2026-05-07)
Features
Bug Fixes
- deps: update all non-major dependencies (#22334) (672c962)
- deps: update all non-major dependencies (#22382) (5c0cfcb)
- glob: align hmr matcher options with glob enumeration (#22306) (30028f9)
- make separate object instance for each environment (#22276) (7c2aa3b)
Documentation
- create-vite: list react-compiler templates in README (#22347) (7c3a61f)
- explain mergeConfig skips null/undefined (#22325) (2151f70)
- mention native config loader in CLI options (#22348) (0420c5d)
- update evan's x handle (640202a)
Miscellaneous Chores
- deps: update dependency tsdown to ^0.21.10 (#22333) (3b51e05)
- deps: update rolldown-related dependencies (#22383) (555ff36)
- deps: update transitive packages to fix npm audit alerts (#22316) (86aee62)
Code Refactoring
- devtools integration (#22312) (3c8bf06)
- remove unnecessary async (#22296) (b31fd35)
- show direct path type in bad character warning (#22339) (0c162e9)
Tests
... (truncated)
▶Commits
4dce8b4release: v8.0.12b675c7bfix: refer torolldownOptionsinstead of deprecatedrollupOptionsin mess...66b9eb3chore(deps): update rolldown-related dependencies (#22421)2fe7bd2chore(deps): update dependency eslint-plugin-n to v18 (#22423)2be6000fix(deps): update all non-major dependencies (#22420)d4838a0fix(worker): forward define to worker bundle transform (#22408)cf0ff41feat: update rolldown to 1.0.0 (#22401)3c93fdefix(worker): applybuild.targetto worker bundle (#22404)f5a22e6fix(module-runner): prevent partial-exports race on concurrent imports of in-...66f3194release: v8.0.11- Additional commits viewable in compare view
Updates vue from 3.5.33 to 3.5.34
▶Release notes
Sourced from vue's releases.
v3.5.34
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.
▶Changelog
Sourced from vue's changelog.
3.5.34 (2026-05-06)
Bug Fixes
- compiler-sfc: infer Vue ref wra...
Description has been truncated