Skip to content

Commit 551f606

Browse files
committed
release: v3.2.40
1 parent 96cd924 commit 551f606

File tree

19 files changed

+95
-73
lines changed

19 files changed

+95
-73
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## [3.2.40](https://github.com/vuejs/core/compare/v3.2.39...v3.2.40) (2022-09-28)
2+
3+
4+
### Bug Fixes
5+
6+
* **compat:** list cjs dependencies for compat build ([96cd924](https://github.com/vuejs/core/commit/96cd924e440984a37e4759673f3c16921b69affe)), closes [#6602](https://github.com/vuejs/core/issues/6602)
7+
* **compiler-dom:** remove v-bind boolean attribute with literal false value when stringifying ([#6635](https://github.com/vuejs/core/issues/6635)) ([6c6fe2c](https://github.com/vuejs/core/commit/6c6fe2c0cd89ce513503b1f85e0ddb696fd81e54)), closes [#6617](https://github.com/vuejs/core/issues/6617)
8+
* **compiler-sfc:** fix expression check for v-on with object literal value ([#6652](https://github.com/vuejs/core/issues/6652)) ([6958ec1](https://github.com/vuejs/core/commit/6958ec1b37fb4a9244ae222a35fcac032d26ad8a)), closes [#6650](https://github.com/vuejs/core/issues/6650) [#6674](https://github.com/vuejs/core/issues/6674)
9+
* **compilre-core:** dynamic v-on and static v-on should be merged ([#6747](https://github.com/vuejs/core/issues/6747)) ([f9d43b9](https://github.com/vuejs/core/commit/f9d43b99f83af7fc140938a1d8d2db89666fb4e1)), closes [#6742](https://github.com/vuejs/core/issues/6742)
10+
* **runtime-core:** avoid hoisted vnodes retaining detached DOM nodes ([fc5bdb3](https://github.com/vuejs/core/commit/fc5bdb36ed429d6c3c956f373206ce75467adaf3)), closes [#6591](https://github.com/vuejs/core/issues/6591)
11+
* **runtime-core:** Lifecycle hooks should support callbacks shared by reference ([#6687](https://github.com/vuejs/core/issues/6687)) ([c71a08e](https://github.com/vuejs/core/commit/c71a08e6fd44ee06c6b4f61d67727a7b7503605e)), closes [#6686](https://github.com/vuejs/core/issues/6686)
12+
* **runtime-core:** remove prod-only hoisted clone behavior for manual DOM manipulation compat ([aa70188](https://github.com/vuejs/core/commit/aa70188c41fab1a4139748dd7b7c71532d063f3a)), closes [#6727](https://github.com/vuejs/core/issues/6727) [#6739](https://github.com/vuejs/core/issues/6739)
13+
* **runtime-core:** unset removed props first in full diff mode ([c0d8db8](https://github.com/vuejs/core/commit/c0d8db81a636f0ad1e725b7c04608d3a211cf163)), closes [#6571](https://github.com/vuejs/core/issues/6571)
14+
* **runtime-dom:** fix unnecessary warning when setting coerced dom property value ([b1817fe](https://github.com/vuejs/core/commit/b1817fe9eeb66a18f405ada9072149515654a9bd)), closes [#6616](https://github.com/vuejs/core/issues/6616)
15+
* **ssr:** avoid ast.helpers duplication ([#6664](https://github.com/vuejs/core/issues/6664)) ([57ffc3e](https://github.com/vuejs/core/commit/57ffc3e546395ba048009396a4b82d3f968cca2c))
16+
* **ssr:** fix dynamic slot regression in ssr ([8963c55](https://github.com/vuejs/core/commit/8963c5508cde3a0c990b2748787ffb582b16f23f)), closes [#6651](https://github.com/vuejs/core/issues/6651)
17+
* **ssr:** fix hydration mismatch when entire multi-root template is stringified ([9698dd3](https://github.com/vuejs/core/commit/9698dd3cf1dfdb95d4dc4b4f7bd24ff94b4b5d84)), closes [#6637](https://github.com/vuejs/core/issues/6637)
18+
* **ssr:** fix pre tag windows newline hydration mismatch ([0382019](https://github.com/vuejs/core/commit/03820193a8f768293d665ca2753439fe73aed0fd)), closes [#6410](https://github.com/vuejs/core/issues/6410)
19+
* **ssr:** respect case when rendering dynamic attrs on svg ([121eb32](https://github.com/vuejs/core/commit/121eb32fb0a21cf9988d788cfad1b4249b15997b)), closes [#6755](https://github.com/vuejs/core/issues/6755)
20+
21+
22+
123
## [3.2.39](https://github.com/vuejs/core/compare/v3.2.38...v3.2.39) (2022-09-08)
224

325

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"packageManager": "[email protected]",
55
"scripts": {
66
"dev": "node scripts/dev.js",

packages/compiler-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-core",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
3434
"dependencies": {
35-
"@vue/shared": "3.2.39",
35+
"@vue/shared": "3.2.40",
3636
"@babel/parser": "^7.16.4",
3737
"estree-walker": "^2.0.2",
3838
"source-map": "^0.6.1"

packages/compiler-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-dom",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/compiler-dom",
55
"main": "index.js",
66
"module": "dist/compiler-dom.esm-bundler.js",
@@ -37,7 +37,7 @@
3737
},
3838
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-dom#readme",
3939
"dependencies": {
40-
"@vue/shared": "3.2.39",
41-
"@vue/compiler-core": "3.2.39"
40+
"@vue/shared": "3.2.40",
41+
"@vue/compiler-core": "3.2.40"
4242
}
4343
}

packages/compiler-sfc/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-sfc",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/compiler-sfc",
55
"main": "dist/compiler-sfc.cjs.js",
66
"module": "dist/compiler-sfc.esm-browser.js",
@@ -33,11 +33,11 @@
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-sfc#readme",
3434
"dependencies": {
3535
"@babel/parser": "^7.16.4",
36-
"@vue/compiler-core": "3.2.39",
37-
"@vue/compiler-dom": "3.2.39",
38-
"@vue/compiler-ssr": "3.2.39",
39-
"@vue/reactivity-transform": "3.2.39",
40-
"@vue/shared": "3.2.39",
36+
"@vue/compiler-core": "3.2.40",
37+
"@vue/compiler-dom": "3.2.40",
38+
"@vue/compiler-ssr": "3.2.40",
39+
"@vue/reactivity-transform": "3.2.40",
40+
"@vue/shared": "3.2.40",
4141
"estree-walker": "^2.0.2",
4242
"magic-string": "^0.25.7",
4343
"source-map": "^0.6.1",

packages/compiler-ssr/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-ssr",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/compiler-ssr",
55
"main": "dist/compiler-ssr.cjs.js",
66
"types": "dist/compiler-ssr.d.ts",
@@ -28,7 +28,7 @@
2828
},
2929
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-ssr#readme",
3030
"dependencies": {
31-
"@vue/shared": "3.2.39",
32-
"@vue/compiler-dom": "3.2.39"
31+
"@vue/shared": "3.2.40",
32+
"@vue/compiler-dom": "3.2.40"
3333
}
3434
}

packages/reactivity-transform/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity-transform",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/reactivity-transform",
55
"main": "dist/reactivity-transform.cjs.js",
66
"files": [
@@ -29,8 +29,8 @@
2929
"homepage": "https://github.com/vuejs/core/tree/dev/packages/reactivity-transform#readme",
3030
"dependencies": {
3131
"@babel/parser": "^7.16.4",
32-
"@vue/compiler-core": "3.2.39",
33-
"@vue/shared": "3.2.39",
32+
"@vue/compiler-core": "3.2.40",
33+
"@vue/shared": "3.2.40",
3434
"estree-walker": "^2.0.2",
3535
"magic-string": "^0.25.7"
3636
},

packages/reactivity/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/reactivity",
55
"main": "index.js",
66
"module": "dist/reactivity.esm-bundler.js",
@@ -36,6 +36,6 @@
3636
},
3737
"homepage": "https://github.com/vuejs/core/tree/main/packages/reactivity#readme",
3838
"dependencies": {
39-
"@vue/shared": "3.2.39"
39+
"@vue/shared": "3.2.40"
4040
}
4141
}

packages/runtime-core/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-core",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/runtime-core",
55
"main": "index.js",
66
"module": "dist/runtime-core.esm-bundler.js",
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
3434
"dependencies": {
35-
"@vue/shared": "3.2.39",
36-
"@vue/reactivity": "3.2.39"
35+
"@vue/shared": "3.2.40",
36+
"@vue/reactivity": "3.2.40"
3737
}
3838
}

packages/runtime-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-dom",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/runtime-dom",
55
"main": "index.js",
66
"module": "dist/runtime-dom.esm-bundler.js",
@@ -35,8 +35,8 @@
3535
},
3636
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-dom#readme",
3737
"dependencies": {
38-
"@vue/shared": "3.2.39",
39-
"@vue/runtime-core": "3.2.39",
38+
"@vue/shared": "3.2.40",
39+
"@vue/runtime-core": "3.2.40",
4040
"csstype": "^2.6.8"
4141
}
4242
}

packages/runtime-test/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-test",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/runtime-test",
55
"private": true,
66
"main": "index.js",
@@ -25,7 +25,7 @@
2525
},
2626
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-test#readme",
2727
"dependencies": {
28-
"@vue/shared": "3.2.39",
29-
"@vue/runtime-core": "3.2.39"
28+
"@vue/shared": "3.2.40",
29+
"@vue/runtime-core": "3.2.40"
3030
}
3131
}

packages/server-renderer/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/server-renderer",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "@vue/server-renderer",
55
"main": "index.js",
66
"module": "dist/server-renderer.esm-bundler.js",
@@ -32,10 +32,10 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/server-renderer#readme",
3434
"peerDependencies": {
35-
"vue": "3.2.39"
35+
"vue": "3.2.40"
3636
},
3737
"dependencies": {
38-
"@vue/shared": "3.2.39",
39-
"@vue/compiler-ssr": "3.2.39"
38+
"@vue/shared": "3.2.40",
39+
"@vue/compiler-ssr": "3.2.40"
4040
}
4141
}

packages/sfc-playground/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/sfc-playground",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"private": true,
55
"scripts": {
66
"dev": "vite",
@@ -12,7 +12,7 @@
1212
"vite": "^3.0.0"
1313
},
1414
"dependencies": {
15-
"vue": "3.2.39",
15+
"vue": "3.2.40",
1616
"@vue/repl": "^1.3.0",
1717
"file-saver": "^2.0.5",
1818
"jszip": "^3.6.0"

packages/shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/shared",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "internal utils shared across @vue packages",
55
"main": "index.js",
66
"module": "dist/shared.esm-bundler.js",

packages/size-check/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/size-check",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"private": true,
55
"scripts": {
66
"build": "vite build"

packages/template-explorer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/template-explorer",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"private": true,
55
"buildOptions": {
66
"formats": [

packages/vue-compat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compat",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "Vue 3 compatibility build for Vue 2",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -43,6 +43,6 @@
4343
"source-map": "^0.6.1"
4444
},
4545
"peerDependencies": {
46-
"vue": "3.2.39"
46+
"vue": "3.2.40"
4747
}
4848
}

packages/vue/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue",
3-
"version": "3.2.39",
3+
"version": "3.2.40",
44
"description": "The progressive JavaScript framework for building modern web UI.",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -68,10 +68,10 @@
6868
},
6969
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue#readme",
7070
"dependencies": {
71-
"@vue/shared": "3.2.39",
72-
"@vue/compiler-dom": "3.2.39",
73-
"@vue/runtime-dom": "3.2.39",
74-
"@vue/compiler-sfc": "3.2.39",
75-
"@vue/server-renderer": "3.2.39"
71+
"@vue/shared": "3.2.40",
72+
"@vue/compiler-dom": "3.2.40",
73+
"@vue/runtime-dom": "3.2.40",
74+
"@vue/compiler-sfc": "3.2.40",
75+
"@vue/server-renderer": "3.2.40"
7676
}
7777
}

0 commit comments

Comments
 (0)