build(deps): bump the npm group across 1 directory with 48 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(9 months ago)
(9 months ago)
(9 months ago)
dependencies javascript
Bumps the npm group with 20 updates in the /website directory:
| Package | From | To |
|---|---|---|
| vitepress | 1.6.3 |
1.6.4 |
| vue | 3.5.13 |
3.5.22 |
| @iconify-json/simple-icons | 1.2.25 |
1.2.55 |
| @vitejs/plugin-vue | 5.2.1 |
5.2.4 |
| @vue/devtools-api | 7.7.2 |
7.7.7 |
| @vueuse/integrations | 12.7.0 |
12.8.2 |
| algoliasearch | 5.20.3 |
5.41.0 |
| focus-trap | 7.6.4 |
7.6.5 |
| micromark-util-types | 2.0.1 |
2.0.2 |
| minisearch | 7.1.2 |
7.2.0 |
| nanoid | 3.3.8 |
3.3.11 |
| postcss | 8.5.3 |
8.5.6 |
| preact | 10.26.2 |
10.27.2 |
| property-information | 7.0.0 |
7.1.0 |
| rollup | 4.34.8 |
4.52.5 |
| tabbable | 6.2.0 |
6.3.0 |
| unist-util-is | 6.0.0 |
6.0.1 |
| unist-util-visit-parents | 6.0.1 |
6.0.2 |
| vfile-message | 4.0.2 |
4.0.3 |
| vite | 5.4.14 |
5.4.21 |
Updates vitepress from 1.6.3 to 1.6.4
Commits
1fc537brelease: v1.6.4e7a0ae8chore: error when tryingrolldown-vitewith vitepress v1 (#4888)- See full diff in compare view
Updates vue from 3.5.13 to 3.5.22
Release notes
Sourced from vue's releases.
v3.5.22
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.v3.5.21
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.v3.5.20
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.v3.5.19
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.v3.5.18
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.v3.5.17
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.v3.5.16
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.v3.5.15
For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the
minorbranch.v3.5.14
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.22 (2025-09-25)
Bug Fixes
- compiler-core: identifiers in switch-case should not be inferred as references (#13923) (5953c9f)
- compiler-dom: nodes with v-once shouldn't be stringified (#13878) (95c1975)
- compiler-sfc: add support for
@vue-ignorein runtime type resolution (#13906) (ba7f7f9)- compiler-sfc: enhance inferRuntimeType to support TSMappedType with indexed access (#13848) (e388f1a), closes #13847
- compiler-sfc: ensure css custom properties do not start with a digit (#13870) (9c27951)
- compiler-sfc: ensure props bindings register before compiling template (#13922) (abd5638), closes #13920
- compiler-ssr: ensure v-show has a higher priority in SSR (#12171) (836b829), closes #12162
- custom-element: properly mount multiple Teleports in custom element component w/ shadowRoot false (#13900) (5e1e791), closes #13899
- custom-element: set prop runs pending mutations before disconnect (#13897) (c4a88cd), closes #13315
- custom-element: use
PatchFlags.BAILfor slot when props are present (#13907) (5358bca), closes #13904- reactivity: respect readonly during ref unwrapping (#13905) (aba7fed), closes #13903
- reactivity: update iterator to check for completion instead of value presence (#13761) (2078f8b)
- runtime-core: simplify block-tracking disabling in
hhelper (#13841) (75220c7)- transition-group: run
forceReflowon the correct document (fix #13849) (#13853) (1be5ddf)- types: more precise types for Events and added missing definitions (#9675) (8bb8fb2)
- types: set dom stub type to
neverinstead of{}(#13915) (8620a61), closes #11564- types: widen directive arg type from string to any (#13758) (4b71706), closes #13757
Features
- custom-element: allow specifying additional options for
shadowRootin custom elements (#12965) (47e628d), closes #12964Reverts
- Revert "fix(hmr): prevent VUE_HMR_RUNTIME from being overwritten by vue runtime in 3rd-party libraries" (#13925) (6b68f72), closes #13925
3.5.21 (2025-09-02)
Bug Fixes
- compiler-core: force dynamic slots when slot referencing scope vars (#9427) (99d54b2), closes #9380
- compiler-sfc: check lang before attempt to compile script (#13508) (55922ff), closes #8368
- compiler-sfc: support
${configDir}in paths for TypeScript 5.5+ (#13491) (8696e34), closes #13484- compiler-sfc: support global augments with named exports (#13789) (35da3c6)
- custom-element: prevent defineCustomElement from mutating the options object (#13791) (e322436)
- hmr: prevent
__VUE_HMR_RUNTIME__from being overwritten by vue runtime in 3rd-party libraries (#13817) (1392734), closes vitejs/vite-plugin-vue#644- hmr: prevent update unmounting component during HMR reload (#13815) (ef20b86), closes vitejs/vite-plugin-vue#599
- runtime-core: disable tracking block in h function (#8213) (8f6b505), closes #6913
- runtime-core: use separate emits caches for components and mixins (#11661) (15fc75f)
- Suspence: handle Suspense + KeepAlive HMR updating edge case (#13076) (5d75a17), closes #13075
... (truncated)
Commits
5a8aa0brelease: v3.5.221be5ddffix(transition-group): runforceReflowon the correct document (fix #13849)...d44a5a9chore(deps): update build (#13856)c8a9917chore(deps): update dependency jsdom to v27 (#13913)b46481achore(deps): update compiler (#13857)8593647chore(deps): update test (#13882)f2487d8chore(deps): update actions/github-script action to v8 (#13885)b374ec7chore(deps): update actions/setup-node action to v5 (#13912)9612b95chore(deps): update all non-major dependencies (#13883)5953c9ffix(compiler-core): identifiers in switch-case should not be inferred as refe...- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vue since your current version.
Updates @babel/helper-string-parser from 7.25.9 to 7.27.1
Release notes
Sourced from @babel/helper-string-parser's releases.
v7.27.1 (2025-04-30)
Thanks
@kermanxand@woaitsAryanfor your first PRs!:eyeglasses: Spec Compliance
babel-parserbabel-parser,babel-types:bug: Bug Fix
babel-plugin-proposal-destructuring-private,babel-plugin-proposal-do-expressions,babel-traversebabel-helper-wrap-function,babel-plugin-transform-async-to-generator
- #17251 Fix: propagate argument evaluation errors through async promise chain (
@magic-akari)babel-helper-remap-async-to-generator,babel-plugin-transform-async-to-generatorbabel-helper-fixtures,babel-parserbabel-generator,babel-parserbabel-parserbabel-compat-data,babel-preset-envbabel-traverse
- #17156 fix: Objects and arrays with multiple references should not be evaluated (
@liuxingbaoyu)babel-generator:nail_care: Polish
babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining,babel-plugin-proposal-decorators,babel-plugin-transform-arrow-functions,babel-plugin-transform-class-properties,babel-plugin-transform-destructuring,babel-plugin-transform-object-rest-spread,babel-plugin-transform-optional-chaining,babel-plugin-transform-parameters,babel-traverse
- #17221 Reduce generated names size for the 10th-11th (
@nicolo-ribaudo):house: Internal
babel-runtime-corejs2,babel-runtime-corejs3,babel-runtime
- #17263 Remove unused
regenerator-runtimedep in@babel/runtime(@nicolo-ribaudo)babel-compat-data,babel-preset-envbabel-compat-data,babel-standalonebabel-register
- #16844 Migrate
@babel/registerto cts (@liuxingbaoyu)babel-helpers,babel-plugin-transform-async-generator-functions,babel-plugin-transform-regenerator,babel-preset-env,babel-runtime-corejs3
- #17205 Inline regenerator in the relevant packages (
@nicolo-ribaudo)- All packages
... (truncated)
Changelog
Sourced from @babel/helper-string-parser's changelog.
v7.27.1 (2025-04-30)
:eyeglasses: Spec Compliance
babel-parserbabel-parser,babel-types:bug: Bug Fix
babel-plugin-proposal-destructuring-private,babel-plugin-proposal-do-expressions,babel-traversebabel-helper-wrap-function,babel-plugin-transform-async-to-generator
- #17251 Fix: propagate argument evaluation errors through async promise chain (
@magic-akari)babel-helper-remap-async-to-generator,babel-plugin-transform-async-to-generatorbabel-helper-fixtures,babel-parserbabel-generator,babel-parserbabel-parserbabel-compat-data,babel-preset-envbabel-traverse
- #17156 fix: Objects and arrays with multiple references should not be evaluated (
@liuxingbaoyu)babel-generator:nail_care: Polish
babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining,babel-plugin-proposal-decorators,babel-plugin-transform-arrow-functions,babel-plugin-transform-class-properties,babel-plugin-transform-destructuring,babel-plugin-transform-object-rest-spread,babel-plugin-transform-optional-chaining,babel-plugin-transform-parameters,babel-traverse
- #17221 Reduce generated names size for the 10th-11th (
@nicolo-ribaudo):house: Internal
babel-runtime-corejs2,babel-runtime-corejs3,babel-runtime
- #17263 Remove unused
regenerator-runtimedep in@babel/runtime(@nicolo-ribaudo)babel-compat-data,babel-preset-envbabel-compat-data,babel-standalone- Other
babel-register
- #16844 Migrate
@babel/registerto cts (@liuxingbaoyu)babel-cli,babel-compat-data,babel-core,babel-generator,babel-helper-compilation-targets,babel-helper-fixtures,babel-helper-module-imports,babel-helper-module-transforms,babel-helper-plugin-test-runner,babel-helper-transform-fixture-test-runner,babel-helpers,babel-node,babel-parser,babel-plugin-transform-modules-amd,babel-plugin-transform-modules-commonjs,babel-plugin-transform-modules-systemjs,babel-plugin-transform-modules-umd,babel-plugin-transform-react-display-name,babel-plugin-transform-regenerator,babel-plugin-transform-runtime,babel-plugin-transform-typeof-symbol,babel-plugin-transform-typescript,babel-preset-env,babel-register,babel-standalone,babel-typesbabel-plugin-transform-regenerator
... (truncated)
Commits
Updates @babel/helper-validator-identifier from 7.25.9 to 7.28.5
Release notes
Sourced from @babel/helper-validator-identifier's releases.
v7.28.5 (2025-10-23)
Thank you
@CO0Ki3,@Olexandr88, and@youthfulhpsfor your first PRs!:eyeglasses: Spec Compliance
babel-parser
- #17446 Allow
Runtime Errors for Function Call Assignment Targets(@liuxingbaoyu)babel-helper-validator-identifier:bug: Bug Fix
babel-plugin-proposal-destructuring-privatebabel-parserbabel-plugin-proposal-discard-binding,babel-plugin-transform-destructuring
- #17519 fix:
restcorrectly returns plain array (@liuxingbaoyu)babel-helper-create-class-features-plugin,babel-helper-member-expression-to-functions,babel-plugin-transform-block-scoping,babel-plugin-transform-optional-chaining,babel-traverse,babel-typesbabel-traverse:house: Internal
:running_woman: Performance
babel-core
- #17490 Faster finding of locations in
buildCodeFrameError(@liuxingbaoyu)Committers: 8
- Babel Bot (
@babel-bot)- Byeongho Yoo (
@youthfulhps)- Huáng Jùnliàng (
@JLHwung)- Hyeon Dokko (
@CO0Ki3)- Nicolò Ribaudo (
@nicolo-ribaudo)@Olexandr88@liuxingbaoyu- fisker Cheung (
@fisker)v7.28.4 (2025-09-05)
Thanks
@gwillenand@mrginglymusfor your first PRs!:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)
... (truncated)
Changelog
Sourced from @babel/helper-validator-identifier's changelog.
v7.28.5 (2025-10-23)
:eyeglasses: Spec Compliance
babel-parser
- #17446 Allow
Runtime Errors for Function Call Assignment Targets(@liuxingbaoyu)babel-helper-validator-identifier:bug: Bug Fix
babel-plugin-proposal-destructuring-privatebabel-parserbabel-plugin-proposal-discard-binding,babel-plugin-transform-destructuring
- #17519 fix:
restcorrectly returns plain array (@liuxingbaoyu)babel-helper-create-class-features-plugin,babel-helper-member-expression-to-functions,babel-plugin-transform-block-scoping,babel-plugin-transform-optional-chaining,babel-traverse,babel-typesbabel-traverse:house: Internal
:running_woman: Performance
babel-core
- #17490 Faster finding of locations in
buildCodeFrameError(@liuxingbaoyu)v7.28.4 (2025-09-05)
:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)babel-core
- #17474 Switch to
@jridgewell/remapping(@mrginglymus)v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin,babel-plugin-proposal-decorators,babel-plugin-transform-class-static-block,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo):bug: Bug Fix
babel-parser:nail_care: Polish
babel-plugin-transform-regenerator,babel-plugin-transform-runtime
... (truncated)
Commits
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @babel/helper-validator-identifier since your current version.
Updates @babel/parser from 7.26.9 to 7.28.5
Release notes
Sourced from @babel/parser's releases.
v7.28.5 (2025-10-23)
Thank you
@CO0Ki3,@Olexandr88, and@youthfulhpsfor your first PRs!:eyeglasses: Spec Compliance
babel-parser
- #17446 Allow
Runtime Errors for Function Call Assignment Targets(@liuxingbaoyu)babel-helper-validator-identifier:bug: Bug Fix
babel-plugin-proposal-destructuring-privatebabel-parserbabel-plugin-proposal-discard-binding,babel-plugin-transform-destructuring
- #17519 fix:
restcorrectly returns plain array (@liuxingbaoyu)babel-helper-create-class-features-plugin,babel-helper-member-expression-to-functions,babel-plugin-transform-block-scoping,babel-plugin-transform-optional-chaining,babel-traverse,babel-typesbabel-traverse:house: Internal
:running_woman: Performance
babel-core
- #17490 Faster finding of locations in
buildCodeFrameError(@liuxingbaoyu)Committers: 8
- Babel Bot (
@babel-bot)- Byeongho Yoo (
@youthfulhps)- Huáng Jùnliàng (
@JLHwung)- Hyeon Dokko (
@CO0Ki3)- Nicolò Ribaudo (
@nicolo-ribaudo)@Olexandr88@liuxingbaoyu- fisker Cheung (
@fisker)v7.28.4 (2025-09-05)
Thanks
@gwillenand@mrginglymusfor your first PRs!:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)
... (truncated)
Changelog
Sourced from @babel/parser's changelog.
v7.28.5 (2025-10-23)
:eyeglasses: Spec Compliance
babel-parser
- #17446 Allow
Runtime Errors for Function Call Assignment Targets(@liuxingbaoyu)babel-helper-validator-identifier:bug: Bug Fix
babel-plugin-proposal-destructuring-privatebabel-parserbabel-plugin-proposal-discard-binding,babel-plugin-transform-destructuring
- #17519 fix:
restcorrectly returns plain array (@liuxingbaoyu)babel-helper-create-class-features-plugin,babel-helper-member-expression-to-functions,babel-plugin-transform-block-scoping,babel-plugin-transform-optional-chaining,babel-traverse,babel-typesbabel-traverse:house: Internal
:running_woman: Performance
babel-core
- #17490 Faster finding of locations in
buildCodeFrameError(@liuxingbaoyu)v7.28.4 (2025-09-05)
:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)babel-core
- #17474 Switch to
@jridgewell/remapping(@mrginglymus)v7.28.3 (2025-08-14)
:eyeglasses: Spec Compliance
babel-helper-create-class-features-plugin,babel-plugin-proposal-decorators,babel-plugin-transform-class-static-block,babel-preset-env
- #17443 [static blocks] Do not inject new static fields after static code (
@nicolo-ribaudo):bug: Bug Fix
babel-parser:nail_care: Polish
babel-plugin-transform-regenerator,babel-plugin-transform-runtime
... (truncated)
Commits
61647aev7.28.50a0dcd8Improve@babel/parsererror typing (#17521)f3fb75eEnablestrictNullChecksforparser(#17498)cd491dbchore: simplify parseArrayLike (#17526)758bef6AllowRuntime Errors for Function Call Assignment Targets(#17446)e7031b7[Babel 8] TreatallowSuperOutsideMethodas top-level only (#17505)6378bc0fix: improve ts-only declaration parsing (#17491)35055e3v7.28.4f04083a[Babel 8] Align TSMappedType AST (#17479)ef155f5v7.28.3- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @babel/parser since your current version.
Updates @babel/types from 7.26.9 to 7.28.5
Release notes
Sourced from @babel/types's releases.
v7.28.5 (2025-10-23)
Thank you
@CO0Ki3,@Olexandr88, and@youthfulhpsfor your first PRs!:eyeglasses: Spec Compliance
babel-parser
- #17446 Allow
Runtime Errors for Function Call Assignment Targets(@liuxingbaoyu)babel-helper-validator-identifier:bug: Bug Fix
babel-plugin-proposal-destructuring-privatebabel-parserbabel-plugin-proposal-discard-binding,babel-plugin-transform-destructuring
- #17519 fix:
restcorrectly returns plain array (@liuxingbaoyu)babel-helper-create-class-features-plugin,babel-helper-member-expression-to-functions,babel-plugin-transform-block-scoping,babel-plugin-transform-optional-chaining,babel-traverse,babel-typesbabel-traverse:house: Internal
:running_woman: Performance
babel-core
- #17490 Faster finding of locations in
buildCodeFrameError(@liuxingbaoyu)Committers: 8
- Babel Bot (
@babel-bot)- Byeongho Yoo (
@youthfulhps)- Huáng Jùnliàng (
@JLHwung)- Hyeon Dokko (
@CO0Ki3)- Nicolò Ribaudo (
@nicolo-ribaudo)@Olexandr88@liuxingbaoyu- fisker Cheung (
@fisker)v7.28.4 (2025-09-05)
Thanks
@gwillenand@mrginglymusfor your first PRs!:house: Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regenerator
- #17455 chore: Clean up
transform-regenerator(@liuxingbaoyu)
... (truncated)
Changelog
Sourced from @babel/types's changelog.
v7.28.5 (2025-10-23)
:eyeglasses: Spec Compliance
babel-parser
- #17446 Allow
Runtime Errors for Function Call Assignment Targets(@liuxingbaoyu)babel-helper-validator-identifier:bug: Bug Fix
Technical Details
| ID: | 11032907 |
| UUID: | 3545538279 |
| Node ID: | PR_kwDOPTkn6s6vTy2m |
| Host: | GitHub |
| Repository: | xhgg606/https-github.com-Winkmoon-KernelSU |