Skip to content

chore(deps): bump the npm_and_yarn group in /console/atest-ui with 6 updates - #775

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/console/atest-ui/npm_and_yarn-f612ab833f
Open

chore(deps): bump the npm_and_yarn group in /console/atest-ui with 6 updates#775
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/console/atest-ui/npm_and_yarn-f612ab833f

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubJul 21, 2025

Copy link
Copy Markdown
Contributor

Bumps the npm_and_yarn group in /console/atest-ui with 6 updates:

PackageFromTo
vue-i18n11.1.911.1.10
@intlify/core-base11.1.911.1.10
esbuild0.18.200.25.8
@vitejs/plugin-vue4.2.36.0.0
@vitejs/plugin-vue-jsx3.0.15.0.1
vite4.5.147.0.5

Updates vue-i18n from 11.1.9 to 11.1.10

Release notes

Sourced from vue-i18n's releases.

v11.1.10

🔒 Security Fixes

  • fix: DOM-based XSS via tag attributes for escape parameter, about details see GHSA-x8qp-wqqm-57ph

Full Changelog: intlify/vue-i18n@v11.1.9...v11.1.10

Commits

Updates @intlify/core-base from 11.1.9 to 11.1.10

Release notes

Sourced from @​intlify/core-base's releases.

v11.1.10

🔒 Security Fixes

  • fix: DOM-based XSS via tag attributes for escape parameter, about details see GHSA-x8qp-wqqm-57ph

Full Changelog: intlify/vue-i18n@v11.1.9...v11.1.10

Commits

Updates esbuild from 0.18.20 to 0.25.8

Release notes

Sourced from esbuild's releases.

v0.25.8

  • Fix another TypeScript parsing edge case (#4248)

    This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the ?: operator. The regression specifically involves parsing an arrow function containing a #private identifier inside the middle of a ?: ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:

    classCachedDict{
    #has =(a: string)=>dict.has(a);has=window
    ? (word: string): boolean=>this.#has(word)
    : this.#has;}
  • Fix a regression with the parsing of source phase imports

    The change in the previous release to parse source phase imports failed to properly handle the following cases:

    importsourcefrom'bar'importsourcefromfrom'bar'importsourcetypefoofrom'bar'

    Parsing for these cases should now be fixed. The first case was incorrectly treated as a syntax error because esbuild was expecting the second case. And the last case was previously allowed but is now forbidden. TypeScript hasn't added this feature yet so it remains to be seen whether the last case will be allowed, but it's safer to disallow it for now. At least Babel doesn't allow the last case when parsing TypeScript, and Babel was involved with the source phase import specification.

v0.25.7

  • Parse and print JavaScript imports with an explicit phase (#4238)

    This release adds basic syntax support for the defer and source import phases in JavaScript:

    • defer

      This is a stage 3 proposal for an upcoming JavaScript feature that will provide one way to eagerly load but lazily initialize imported modules. The imported module is automatically initialized on first use. Support for this syntax will also be part of the upcoming release of TypeScript 5.9. The syntax looks like this:

      importdefer*asfoofrom"<specifier>";constbar=awaitimport.defer("<specifier>");

      Note that this feature deliberately cannot be used with the syntax import defer foo from "<specifier>" or import defer { foo } from "<specifier>".

    • source

      This is a stage 3 proposal for an upcoming JavaScript feature that will provide another way to eagerly load but lazily initialize imported modules. The imported module is returned in an uninitialized state. Support for this syntax may or may not be a part of TypeScript 5.9 (see this issue for details). The syntax looks like this:

      importsourcefoofrom"<specifier>";constbar=awaitimport.source("<specifier>");

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2023

This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).

0.19.11

  • Fix TypeScript-specific class transform edge case (#3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original codeclassFooextendsBar{
    #private =1;public: any;constructor(){super();}}// Old output (with esbuild v0.19.9)classFooextendsBar{constructor(){super();this.#private =1;}
    #private;}// Old output (with esbuild v0.19.10)classFooextendsBar{constructor(){this.#private =1;super();}
    #private;}// New outputclassFooextendsBar{
    #private =1;constructor(){super();}}

  • Minifier: allow reording a primitive past a side-effect (#3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

... (truncated)

Commits
  • 8c71947 publish 0.25.8 to npm
  • 0508f24 some parsing fixes for source phase imports
  • 6e4be2f js parser: recover from bad #private identifiers
  • c9c6357 fix #4248: #private ids in arrow fn body in ?:
  • 9b42f68 publish 0.25.7 to npm
  • 9ba01d1 abs-paths: js api and tests
  • ca196c9 fix for parser backtracking crash
  • 2979b84 fix #4241: ts arrow function type backtrack (hack)
  • 1180410 fix an unused variable warning
  • fc3da57 fix #4238: add defer and source import phases
  • Additional commits viewable in compare view

Updates @vitejs/plugin-vue from 4.2.3 to 6.0.0

Release notes

Sourced from @​vitejs/plugin-vue's releases.

plugin-vue@6.0.0

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.0-beta.2

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-vue@6.0.0-beta.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.2.4

Please refer to CHANGELOG.md for details.

plugin-vue@5.2.3

Please refer to CHANGELOG.md for details.

plugin-vue@5.2.2

Please refer to CHANGELOG.md for details.

plugin-vue@5.2.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.2.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.5

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.4

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.3

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.2

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.1.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.5

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.4

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from @​vitejs/plugin-vue's changelog.

6.0.0 (2025-06-24)

Bug Fixes

  • deps: update all non-major dependencies (#590) (43426c8)
  • deps: update all non-major dependencies (#600) (a4c32a8)
  • deps: update all non-major dependencies (#605) (67534e5)
  • deps: update all non-major dependencies (#609) (98c52eb)

Miscellaneous Chores

  • add description and keywords field to package.json (#604) (67ab76b)
  • deps: update dependency rollup to ^4.41.1 (#591) (256ac31)
  • deps: update dependency rollup to ^4.43.0 (#601) (a495edf)
  • remove Vite 7 beta from supported range (#598) (c7ddd62)

Code Refactoring

6.0.0-beta.2 (2025-06-06)

⚠ BREAKING CHANGES

  • bump required node version to 20.19+, 22.12+ and drop CJS build (#596)

Features

Bug Fixes

Code Refactoring

  • bump required node version to 20.19+, 22.12+ and drop CJS build (#596) (56df545)

6.0.0-beta.1 (2025-06-02)

Bug Fixes

6.0.0-beta.0 (2025-05-21)

⚠ BREAKING CHANGES

  • vue: separate include and exclude from api.options and add filter (#582)

Features

  • vue: separate include and exclude from api.options and add filter (#582) (e3beac8)

... (truncated)

Commits
  • 9c07818 release: plugin-vue@6.0.0
  • c7ddd62 chore: remove Vite 7 beta from supported range (#598)
  • 98c52eb fix(deps): update all non-major dependencies (#609)
  • 5de85f6 refactor: always use crypto.hash (#606)
  • 67534e5 fix(deps): update all non-major dependencies (#605)
  • 67ab76b chore: add description and keywords field to package.json (#604)
  • a495edf chore(deps): update dependency rollup to ^4.43.0 (#601)
  • a4c32a8 fix(deps): update all non-major dependencies (#600)
  • 256ac31 chore(deps): update dependency rollup to ^4.41.1 (#591)
  • 43426c8 fix(deps): update all non-major dependencies (#590)
  • Additional commits viewable in compare view

Updates @vitejs/plugin-vue-jsx from 3.0.1 to 5.0.1

Release notes

Sourced from @​vitejs/plugin-vue-jsx's releases.

plugin-vue@5.0.1

Please refer to CHANGELOG.md for details.

plugin-vue-jsx@5.0.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0

Please refer to CHANGELOG.md for details.

plugin-vue-jsx@5.0.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0-beta.0

Please refer to CHANGELOG.md for details.

plugin-vue-jsx@5.0.0-beta.0

Please refer to CHANGELOG.md for details.

plugin-vue@5.0.0-alpha.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.6.2

Please refer to CHANGELOG.md for details.

plugin-vue@4.6.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.6.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.5.2

Please refer to CHANGELOG.md for details.

plugin-vue@4.5.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.5.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.4.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.4.0

Please refer to CHANGELOG.md for details.

plugin-vue@4.3.4

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from @​vitejs/plugin-vue-jsx's changelog.

5.0.1 (2025-07-03)

Bug Fixes

  • deps: update all non-major dependencies (#618) (46f6c99)
  • vue-jsx: handle type asserted export default defineComponent (#615) (3602d4d)

5.0.0 (2025-06-24)

Bug Fixes

  • deps: update all non-major dependencies (#590) (43426c8)
  • deps: update all non-major dependencies (#600) (a4c32a8)
  • deps: update all non-major dependencies (#605) (67534e5)
  • deps: update all non-major dependencies (#609) (98c52eb)
  • vue-jsx: replace export default defineComponent with babel (#348) (5feb9a2)

Miscellaneous Chores

  • add description and keywords field to package.json (#604) (67ab76b)
  • remove Vite 7 beta from supported range (#598) (c7ddd62)

5.0.0-beta.0 (2025-06-06)

⚠ BREAKING CHANGES

  • bump required node version to 20.19+, 22.12+ and drop CJS build (#596)

Features

Code Refactoring

  • bump required node version to 20.19+, 22.12+ and drop CJS build (#596) (56df545)

4.2.0 (2025-05-20)

Features

Bug Fixes

  • deps: update all non-major dependencies (#527) (8495d12)
  • deps: update all non-major dependencies (#578) (405647f)

4.1.2 (2025-03-17)

Bug Fixes

  • deps: update all non-major dependencies (#482) (cdbae68)
  • deps: update all non-major dependencies (#502) (5bfbbc6)
  • deps: update all non-major dependencies (#510) (28bca4b)
  • properly interpret boolean values in define (#545) (46d3d65)

... (truncated)

Commits
  • 0fbc4a4 feat: provide default value for VUE_PROD_HYDRATION_MISMATCH_DETAILS (new ...
  • db4cf1c chore: upgrade vitest
  • cad0825 fix(deps): update all non-major dependencies (#298)
  • 9c93426 chore(deps): update upstream (#302)
  • fcabfa5 refactor!: drop vite 4
  • f5d8a29 chore(deps): update upstream (major) (#295)
  • 4b7be52 refactor!: drop node 14&16 (#296)
  • 3b654cd release: plugin-vue-jsx@3.1.0
  • a13cfbd refactor(plugin-vue-jsx): improve the readability (#289)
  • c316d43 fix(deps): update all non-major dependencies (#262)
  • Additional commits viewable in compare view

Updates vite from 4.5.14 to 7.0.5

Release notes

Sourced from vite's releases.

v7.0.5

Please refer to CHANGELOG.md for details.

v7.0.4

Please refer to CHANGELOG.md for details.

v7.0.3

Please refer to CHANGELOG.md for details.

create-vite@7.0.3

Please refer to CHANGELOG.md for details.

v7.0.2

Please refer to CHANGELOG.md for details.

create-vite@7.0.2

Please refer to CHANGELOG.md for details.

v7.0.1

Please refer to CHANGELOG.md for details.

create-vite@7.0.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.1

Please refer to CHANGELOG.md for details.

create-vite@7.0.0

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0

Please refer to CHANGELOG.md for details.

v7.0.0

Please refer to CHANGELOG.md for details.

v7.0.0-beta.2

Please refer to CHANGELOG.md for details.

v7.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0-beta.0

Please refer to CHANGELOG.md for details.

v7.0.0-beta.0

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

7.0.5 (2025-07-17)

Bug Fixes

Miscellaneous Chores

  • deps: update dependency rolldown to ^1.0.0-beta.27 (#20405) (1165667)

Code Refactoring

  • use foo.endsWith("bar") instead of /bar$/.test(foo) (#20413) (862e192)

7.0.4 (2025-07-10)

Bug Fixes

  • allow resolving bare specifiers to relative paths for entries (#20379) (324669c)

Build System

7.0.3 (2025-07-08)

Bug Fixes

Miscellaneous Chores

Code Refactoring

  • minor changes to reduce diff between normal Vite and rolldown-vite (#20354) (2e8050e)

7.0.2 (2025-07-04)

Bug Fixes

7.0.1 (2025-07-03)

Bug Fixes

... (truncated)

Commits

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabotdependabotBot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 21, 2025
@CLAassistant

Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@github-actions

github-actionsBot commented Jul 21, 2025

Copy link
Copy Markdown

There are 1 test cases, failed count 0:

NameAverageMaxMinCountError
10.845767ms12.251368ms9.812783ms30

Reported by api-testing.

Bumps the npm_and_yarn group in /console/atest-ui with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) | `11.1.9` | `11.1.10` |
| [@intlify/core-base](https://github.com/intlify/vue-i18n/tree/HEAD/packages/core) | `11.1.9` | `11.1.10` |
| [esbuild](https://github.com/evanw/esbuild) | `0.18.20` | `0.25.8` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `4.2.3` | `6.0.0` |
| [@vitejs/plugin-vue-jsx](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx) | `3.0.1` | `5.0.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `4.5.14` | `7.0.5` |
Updates `vue-i18n` from 11.1.9 to 11.1.10
- [Release notes](https://github.com/intlify/vue-i18n/releases)
- [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/intlify/vue-i18n/commits/v11.1.10/packages/vue-i18n)
Updates `@intlify/core-base` from 11.1.9 to 11.1.10
- [Release notes](https://github.com/intlify/vue-i18n/releases)
- [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/intlify/vue-i18n/commits/v11.1.10/packages/core)
Updates `esbuild` from 0.18.20 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md)
- [Commits](evanw/esbuild@v0.18.20...v0.25.8)
Updates `@vitejs/plugin-vue` from 4.2.3 to 6.0.0
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@6.0.0/packages/plugin-vue)
Updates `@vitejs/plugin-vue-jsx` from 3.0.1 to 5.0.1
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue-jsx/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@5.0.1/packages/plugin-vue-jsx)
Updates `vite` from 4.5.14 to 7.0.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.0.5/packages/vite)
---
updated-dependencies:
- dependency-name: vue-i18n
dependency-version: 11.1.10
dependency-type: direct:production
dependency-group: npm_and_yarn
- dependency-name: "@intlify/core-base"
dependency-version: 11.1.10
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: esbuild
dependency-version: 0.25.8
dependency-type: indirect
dependency-group: npm_and_yarn
- dependency-name: "@vitejs/plugin-vue"
dependency-version: 6.0.0
dependency-type: direct:development
dependency-group: npm_and_yarn
- dependency-name: "@vitejs/plugin-vue-jsx"
dependency-version: 5.0.1
dependency-type: direct:development
dependency-group: npm_and_yarn
- dependency-name: vite
dependency-version: 7.0.5
dependency-type: direct:development
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabotBotforce-pushed the dependabot/npm_and_yarn/console/atest-ui/npm_and_yarn-f612ab833f branch from d5014cb to b88ba5eCompareJuly 28, 2025 03:20
@sonarqubecloud

Copy link
Copy Markdown

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filejavascriptPull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@CLAassistant