Skip to content

Commit 5cf205e

Browse files
committed
Merge branch 'main' into minor
2 parents 826550c + 466b30f commit 5cf205e

File tree

7 files changed

+514
-660
lines changed

7 files changed

+514
-660
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Please make sure to respect issue requirements and use [the new issue helper](ht
3434

3535
## Stay In Touch
3636

37-
- [Twitter](https://twitter.com/vuejs)
37+
- [X](https://x.com/vuejs)
3838
- [Blog](https://blog.vuejs.org/)
3939
- [Job Board](https://vuejobs.com/?ref=vuejs)
4040

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"version": "3.5.13",
4-
"packageManager": "pnpm@10.6.5",
4+
"packageManager": "pnpm@10.7.0",
55
"type": "module",
66
"scripts": {
77
"dev": "node scripts/dev.js",
@@ -69,20 +69,20 @@
6969
"@rollup/plugin-json": "^6.1.0",
7070
"@rollup/plugin-node-resolve": "^16.0.1",
7171
"@rollup/plugin-replace": "5.0.4",
72-
"@swc/core": "^1.11.12",
72+
"@swc/core": "^1.11.13",
7373
"@types/hash-sum": "^1.0.2",
74-
"@types/node": "^22.13.13",
75-
"@types/semver": "^7.5.8",
74+
"@types/node": "^22.13.14",
75+
"@types/semver": "^7.7.0",
7676
"@types/serve-handler": "^6.1.4",
7777
"@vitest/coverage-v8": "^3.0.9",
7878
"@vitest/eslint-plugin": "^1.1.38",
7979
"@vue/consolidate": "1.0.0",
8080
"conventional-changelog-cli": "^5.0.0",
8181
"enquirer": "^2.4.1",
82-
"esbuild": "^0.25.1",
82+
"esbuild": "^0.25.2",
8383
"esbuild-plugin-polyfill-node": "^0.3.0",
8484
"eslint": "^9.23.0",
85-
"eslint-plugin-import-x": "^4.9.1",
85+
"eslint-plugin-import-x": "^4.9.4",
8686
"estree-walker": "catalog:",
8787
"jsdom": "^26.0.0",
8888
"lint-staged": "^15.5.0",
@@ -97,7 +97,7 @@
9797
"pug": "^3.0.3",
9898
"puppeteer": "~24.4.0",
9999
"rimraf": "^6.0.1",
100-
"rollup": "^4.37.0",
100+
"rollup": "^4.38.0",
101101
"rollup-plugin-dts": "^6.2.1",
102102
"rollup-plugin-esbuild": "^6.2.1",
103103
"rollup-plugin-polyfill-node": "^0.13.0",
@@ -108,7 +108,7 @@
108108
"todomvc-app-css": "^2.4.3",
109109
"tslib": "^2.8.1",
110110
"typescript": "~5.6.2",
111-
"typescript-eslint": "^8.27.0",
111+
"typescript-eslint": "^8.28.0",
112112
"vite": "catalog:",
113113
"vitest": "^3.0.9"
114114
},

packages-private/sfc-playground/src/download/template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
},
1313
"devDependencies": {
1414
"@vitejs/plugin-vue": "^5.2.3",
15-
"vite": "^6.2.2"
15+
"vite": "^6.2.3"
1616
}
1717
}

packages/compiler-core/src/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ const tokenizer = new Tokenizer(stack, {
388388
CompilerDeprecationTypes.COMPILER_V_BIND_SYNC,
389389
currentOptions,
390390
currentProp.loc,
391-
currentProp.rawName,
391+
currentProp.arg!.loc.source,
392392
)
393393
) {
394394
currentProp.name = 'model'

packages/runtime-dom/src/patchProp.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,12 @@ function shouldSetAsProp(
102102
// them as attributes.
103103
// Note that `contentEditable` doesn't have this problem: its DOM
104104
// property is also enumerated string values.
105-
if (key === 'spellcheck' || key === 'draggable' || key === 'translate') {
105+
if (
106+
key === 'spellcheck' ||
107+
key === 'draggable' ||
108+
key === 'translate' ||
109+
key === 'autocorrect'
110+
) {
106111
return false
107112
}
108113

0 commit comments

Comments
 (0)