api-testing
api-testing copied to clipboard
chore(deps): bump the npm_and_yarn group in /console/atest-ui with 6 updates
Bumps the npm_and_yarn group in /console/atest-ui with 6 updates:
| Package | From | To |
|---|---|---|
| vue-i18n | 11.1.9 |
11.1.10 |
| @intlify/core-base | 11.1.9 |
11.1.10 |
| esbuild | 0.18.20 |
0.25.8 |
| @vitejs/plugin-vue | 4.2.3 |
6.0.0 |
| @vitejs/plugin-vue-jsx | 3.0.1 |
5.0.1 |
| vite | 4.5.14 |
7.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 https://github.com/intlify/vue-i18n/security/advisories/GHSA-x8qp-wqqm-57ph
Full Changelog: https://github.com/intlify/vue-i18n/compare/v11.1.9...v11.1.10
Commits
ecbbd3arelease: v11.1.10- See full diff in compare view
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 https://github.com/intlify/vue-i18n/security/advisories/GHSA-x8qp-wqqm-57ph
Full Changelog: https://github.com/intlify/vue-i18n/compare/v11.1.9...v11.1.10
Commits
ecbbd3arelease: v11.1.10- See full diff in compare view
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#privateidentifier 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:class CachedDict { #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:
import source from 'bar' import source from from 'bar' import source type foo from '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
deferandsourceimport phases in JavaScript:
deferThis 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:
import defer * as foo from "<specifier>"; const bar = await import.defer("<specifier>");Note that this feature deliberately cannot be used with the syntax
import defer foo from "<specifier>"orimport defer { foo } from "<specifier>".
sourceThis 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:
import source foo from "<specifier>"; const bar = await import.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 withuseDefineForClassFieldsset tofalseif 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#privateinstance 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 tosuper()(sincesuper()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 code class Foo extends Bar { #private = 1; public: any; constructor() { super(); } }// Old output (with esbuild v0.19.9)
class Foo extends Bar {
constructor() {
super();
this.#private = 1;
}
#private;
}// Old output (with esbuild v0.19.10)
class Foo extends Bar {
constructor() {
this.#private = 1;
super();
}
#private;
}// New output
class Foo extends Bar {
#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
8c71947publish 0.25.8 to npm0508f24some parsing fixes for source phase imports6e4be2fjs parser: recover from bad#privateidentifiersc9c6357fix #4248:#privateids in arrow fn body in?:9b42f68publish 0.25.7 to npm9ba01d1abs-paths: js api and testsca196c9fix for parser backtracking crash2979b84fix #4241: ts arrow function type backtrack (hack)1180410fix an unused variable warningfc3da57fix #4238: adddeferandsourceimport 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.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
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
descriptionandkeywordsfield 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
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.optionsand add filter (#582)Features
... (truncated)
Commits
9c07818release: [email protected]c7ddd62chore: remove Vite 7 beta from supported range (#598)98c52ebfix(deps): update all non-major dependencies (#609)5de85f6refactor: always usecrypto.hash(#606)67534e5fix(deps): update all non-major dependencies (#605)67ab76bchore: adddescriptionandkeywordsfield to package.json (#604)a495edfchore(deps): update dependency rollup to ^4.43.0 (#601)a4c32a8fix(deps): update all non-major dependencies (#600)256ac31chore(deps): update dependency rollup to ^4.41.1 (#591)43426c8fix(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.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
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 defineComponentwith babel (#348) (5feb9a2)Miscellaneous Chores
- add
descriptionandkeywordsfield 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
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
... (truncated)
Commits
0fbc4a4feat: provide default value for VUE_PROD_HYDRATION_MISMATCH_DETAILS (new ...db4cf1cchore: upgrade vitestcad0825fix(deps): update all non-major dependencies (#298)9c93426chore(deps): update upstream (#302)fcabfa5refactor!: drop vite 4f5d8a29chore(deps): update upstream (major) (#295)4b7be52refactor!: drop node 14&16 (#296)3b654cdrelease: [email protected]a13cfbdrefactor(plugin-vue-jsx): improve the readability (#289)c316d43fix(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.
[email protected]
Please refer to CHANGELOG.md for details.
v7.0.2
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v7.0.1
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
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.
[email protected]
Please refer to CHANGELOG.md for details.
[email protected]
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
- deps: update all non-major dependencies (#20406) (1a1cc8a)
- remove special handling for
Accept: text/html(#20376) (c9614b9)- watch assets referenced by
new URL(, import.meta.url)(#20382) (6bc8bf6)Miscellaneous Chores
Code Refactoring
7.0.4 (2025-07-10)
Bug Fixes
Build System
7.0.3 (2025-07-08)
Bug Fixes
- client: protect against window being defined but addEv undefined (#20359) (31d1467)
- define: replace optional values (#20338) (9465ae1)
- deps: update all non-major dependencies (#20366) (43ac73d)
Miscellaneous Chores
- deps: update dependency dotenv to v17 (#20325) (45040d4)
- deps: update dependency rolldown to ^1.0.0-beta.24 (#20365) (5ab25e7)
- use
n/prefer-node-protocolrule (#20368) (38bb268)Code Refactoring
7.0.2 (2025-07-04)
Bug Fixes
7.0.1 (2025-07-03)
Bug Fixes
... (truncated)
Commits
832f687release: v7.0.5c9614b9fix: remove special handling forAccept: text/html(#20376)862e192refactor: usefoo.endsWith("bar")instead of/bar$/.test(foo)(#20413)6bc8bf6fix: watch assets referenced bynew URL(, import.meta.url)(#20382)1a1cc8afix(deps): update all non-major dependencies (#20406)1165667chore(deps): update dependency rolldown to ^1.0.0-beta.27 (#20405)8a65433release: v7.0.4324669cfix: allow resolving bare specifiers to relative paths for entries (#20379)5e29602build: remove@oxc-project/runtimedevDep (#20389)f562df8release: v7.0.3- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@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 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.