release: v3.2.45

This commit is contained in:
Evan You 2022-11-11 17:35:27 +08:00
parent 24964dab25
commit 6f663d47e5
19 changed files with 99 additions and 73 deletions

View File

@ -1,3 +1,29 @@
## [3.2.45](https://github.com/vuejs/core/compare/v3.2.44...v3.2.45) (2022-11-11)
### Bug Fixes
* **compiler/v-model:** catch incorrect v-model usage on prop bindings ([001184e](https://github.com/vuejs/core/commit/001184e6bbbc85c4698f460b1f810beca3aed262)), closes [#5584](https://github.com/vuejs/core/issues/5584)
* **custom-elements:** also dispatch hyphenated version of emitted events ([#5378](https://github.com/vuejs/core/issues/5378)) ([0b39e46](https://github.com/vuejs/core/commit/0b39e46192c6258d5bf9d3b6992b84edb0b641d3)), closes [#5373](https://github.com/vuejs/core/issues/5373)
* **custom-elements:** custom element should re-instantiate when inserted again ([#6966](https://github.com/vuejs/core/issues/6966)) ([67890da](https://github.com/vuejs/core/commit/67890daad1a8474c5178565f32a4efa427db911a)), closes [#6934](https://github.com/vuejs/core/issues/6934)
* **custom-elements:** define declared properties in constructor ([#5328](https://github.com/vuejs/core/issues/5328)) ([55382ae](https://github.com/vuejs/core/commit/55382aed58aa3d937f442ad9445b3fff83a07de1))
* **custom-elements:** ensure custom elements can inherit provides from ancestors ([#5098](https://github.com/vuejs/core/issues/5098)) ([192dcb6](https://github.com/vuejs/core/commit/192dcb648c0630ac20d2009eed512e142a72654a)), closes [#5096](https://github.com/vuejs/core/issues/5096)
* **custom-elements:** fix event emitting for async custom elements ([#5601](https://github.com/vuejs/core/issues/5601)) ([665f2ae](https://github.com/vuejs/core/commit/665f2ae121ec31d65cf22bd577f12fb1d9ffa4a2)), closes [#5599](https://github.com/vuejs/core/issues/5599)
* **custom-elements:** fix number type props casting check ([89f37ce](https://github.com/vuejs/core/commit/89f37ceb62363c77697d177675790a9ab81ba34f)), closes [#5793](https://github.com/vuejs/core/issues/5793) [#5794](https://github.com/vuejs/core/issues/5794)
* **custom-elements:** properties set pre-upgrade should not show up in $attrs ([afe8899](https://github.com/vuejs/core/commit/afe889999cbcaa11020c46c30b591a5ee6c3d4cf))
* **custom-elements:** respect slot props in custom element mode ([ffef822](https://github.com/vuejs/core/commit/ffef8228694b39638f07c0fe5bc30d826262b672))
* **custom-elements:** should not reflect non-decalred properties set before upgrade ([5e50909](https://github.com/vuejs/core/commit/5e509091000779acbfae4c85cc1cc3973b1b2e64))
* **hmr/keep-alive:** fix error in reload component ([#7049](https://github.com/vuejs/core/issues/7049)) ([a54bff2](https://github.com/vuejs/core/commit/a54bff2c9c8e1d908b4a0f3826ac715c9a35e68c)), closes [#7042](https://github.com/vuejs/core/issues/7042)
* **runtime-core:** fix move/removal of static fragments containing text nodes ([#6858](https://github.com/vuejs/core/issues/6858)) ([4049ffc](https://github.com/vuejs/core/commit/4049ffcf29dc12dca71f682edf0b422a5c502e23)), closes [#6852](https://github.com/vuejs/core/issues/6852)
* **sfc:** also generate getter for import bindings during dev ([0594400](https://github.com/vuejs/core/commit/0594400980d3bdc394e92db63fc939a6609f7a94))
* **sfc:** ensure `<script setup>` binding behavior consistency on `this` between prod and dev ([f73925d](https://github.com/vuejs/core/commit/f73925d76a76ee259749b8b48cb68895f539a00f)), closes [#6248](https://github.com/vuejs/core/issues/6248)
* **sfc:** ensure consistent dev/prod behavior for non-reactive variables declared in `<script setup>` ([5a3d45a](https://github.com/vuejs/core/commit/5a3d45ae29e26938a36e16c7ab9a804bfe4bcb08)), closes [#5655](https://github.com/vuejs/core/issues/5655)
* **teleport/css-v-bind:** fix css v-bind for teleported content ([42239cf](https://github.com/vuejs/core/commit/42239cf2846f50b6ac2c060dad381113840d9ea1)), closes [#4605](https://github.com/vuejs/core/issues/4605) [#4609](https://github.com/vuejs/core/issues/4609)
* **teleport/css-v-bind:** fix css v-bind in teleport in child component slot ([11214ee](https://github.com/vuejs/core/commit/11214eedd2699e15106c44927f4d1206b111fbd3))
* **v-model:** fix incorrect codegen for non-ref bindings ([15e889a](https://github.com/vuejs/core/commit/15e889afaf75143484946b2dde281572ebf9e8ab)), closes [#6241](https://github.com/vuejs/core/issues/6241)
## [3.2.44](https://github.com/vuejs/core/compare/v3.2.43...v3.2.44) (2022-11-09)

View File

@ -1,6 +1,6 @@
{
"private": true,
"version": "3.2.44",
"version": "3.2.45",
"packageManager": "pnpm@7.1.0",
"scripts": {
"dev": "node scripts/dev.js",

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-core",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/compiler-core",
"main": "index.js",
"module": "dist/compiler-core.esm-bundler.js",
@ -32,7 +32,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
"dependencies": {
"@vue/shared": "3.2.44",
"@vue/shared": "3.2.45",
"@babel/parser": "^7.16.4",
"estree-walker": "^2.0.2",
"source-map": "^0.6.1"

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-dom",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/compiler-dom",
"main": "index.js",
"module": "dist/compiler-dom.esm-bundler.js",
@ -37,7 +37,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-dom#readme",
"dependencies": {
"@vue/shared": "3.2.44",
"@vue/compiler-core": "3.2.44"
"@vue/shared": "3.2.45",
"@vue/compiler-core": "3.2.45"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-sfc",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/compiler-sfc",
"main": "dist/compiler-sfc.cjs.js",
"module": "dist/compiler-sfc.esm-browser.js",
@ -33,11 +33,11 @@
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-sfc#readme",
"dependencies": {
"@babel/parser": "^7.16.4",
"@vue/compiler-core": "3.2.44",
"@vue/compiler-dom": "3.2.44",
"@vue/compiler-ssr": "3.2.44",
"@vue/reactivity-transform": "3.2.44",
"@vue/shared": "3.2.44",
"@vue/compiler-core": "3.2.45",
"@vue/compiler-dom": "3.2.45",
"@vue/compiler-ssr": "3.2.45",
"@vue/reactivity-transform": "3.2.45",
"@vue/shared": "3.2.45",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7",
"source-map": "^0.6.1",

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-ssr",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/compiler-ssr",
"main": "dist/compiler-ssr.cjs.js",
"types": "dist/compiler-ssr.d.ts",
@ -28,7 +28,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-ssr#readme",
"dependencies": {
"@vue/shared": "3.2.44",
"@vue/compiler-dom": "3.2.44"
"@vue/shared": "3.2.45",
"@vue/compiler-dom": "3.2.45"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/reactivity-transform",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/reactivity-transform",
"main": "dist/reactivity-transform.cjs.js",
"files": [
@ -29,8 +29,8 @@
"homepage": "https://github.com/vuejs/core/tree/dev/packages/reactivity-transform#readme",
"dependencies": {
"@babel/parser": "^7.16.4",
"@vue/compiler-core": "3.2.44",
"@vue/shared": "3.2.44",
"@vue/compiler-core": "3.2.45",
"@vue/shared": "3.2.45",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7"
},

View File

@ -1,6 +1,6 @@
{
"name": "@vue/reactivity",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/reactivity",
"main": "index.js",
"module": "dist/reactivity.esm-bundler.js",
@ -36,6 +36,6 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/reactivity#readme",
"dependencies": {
"@vue/shared": "3.2.44"
"@vue/shared": "3.2.45"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/runtime-core",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/runtime-core",
"main": "index.js",
"module": "dist/runtime-core.esm-bundler.js",
@ -32,7 +32,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
"dependencies": {
"@vue/shared": "3.2.44",
"@vue/reactivity": "3.2.44"
"@vue/shared": "3.2.45",
"@vue/reactivity": "3.2.45"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/runtime-dom",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/runtime-dom",
"main": "index.js",
"module": "dist/runtime-dom.esm-bundler.js",
@ -35,8 +35,8 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-dom#readme",
"dependencies": {
"@vue/shared": "3.2.44",
"@vue/runtime-core": "3.2.44",
"@vue/shared": "3.2.45",
"@vue/runtime-core": "3.2.45",
"csstype": "^2.6.8"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/runtime-test",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/runtime-test",
"private": true,
"main": "index.js",
@ -25,7 +25,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-test#readme",
"dependencies": {
"@vue/shared": "3.2.44",
"@vue/runtime-core": "3.2.44"
"@vue/shared": "3.2.45",
"@vue/runtime-core": "3.2.45"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/server-renderer",
"version": "3.2.44",
"version": "3.2.45",
"description": "@vue/server-renderer",
"main": "index.js",
"module": "dist/server-renderer.esm-bundler.js",
@ -32,10 +32,10 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/server-renderer#readme",
"peerDependencies": {
"vue": "3.2.44"
"vue": "3.2.45"
},
"dependencies": {
"@vue/shared": "3.2.44",
"@vue/compiler-ssr": "3.2.44"
"@vue/shared": "3.2.45",
"@vue/compiler-ssr": "3.2.45"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/sfc-playground",
"version": "3.2.44",
"version": "3.2.45",
"private": true,
"scripts": {
"dev": "vite",
@ -12,7 +12,7 @@
"vite": "^3.0.0"
},
"dependencies": {
"vue": "3.2.44",
"vue": "3.2.45",
"@vue/repl": "^1.3.0",
"file-saver": "^2.0.5",
"jszip": "^3.6.0"

View File

@ -1,6 +1,6 @@
{
"name": "@vue/shared",
"version": "3.2.44",
"version": "3.2.45",
"description": "internal utils shared across @vue packages",
"main": "index.js",
"module": "dist/shared.esm-bundler.js",

View File

@ -1,6 +1,6 @@
{
"name": "@vue/size-check",
"version": "3.2.44",
"version": "3.2.45",
"private": true,
"scripts": {
"build": "vite build"

View File

@ -1,6 +1,6 @@
{
"name": "@vue/template-explorer",
"version": "3.2.44",
"version": "3.2.45",
"private": true,
"buildOptions": {
"formats": [

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compat",
"version": "3.2.44",
"version": "3.2.45",
"description": "Vue 3 compatibility build for Vue 2",
"main": "index.js",
"module": "dist/vue.runtime.esm-bundler.js",
@ -43,6 +43,6 @@
"source-map": "^0.6.1"
},
"peerDependencies": {
"vue": "3.2.44"
"vue": "3.2.45"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "vue",
"version": "3.2.44",
"version": "3.2.45",
"description": "The progressive JavaScript framework for building modern web UI.",
"main": "index.js",
"module": "dist/vue.runtime.esm-bundler.js",
@ -68,10 +68,10 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue#readme",
"dependencies": {
"@vue/shared": "3.2.44",
"@vue/compiler-dom": "3.2.44",
"@vue/runtime-dom": "3.2.44",
"@vue/compiler-sfc": "3.2.44",
"@vue/server-renderer": "3.2.44"
"@vue/shared": "3.2.45",
"@vue/compiler-dom": "3.2.45",
"@vue/runtime-dom": "3.2.45",
"@vue/compiler-sfc": "3.2.45",
"@vue/server-renderer": "3.2.45"
}
}

View File

@ -108,7 +108,7 @@ importers:
specifiers:
'@babel/parser': ^7.16.4
'@babel/types': ^7.16.0
'@vue/shared': 3.2.44
'@vue/shared': 3.2.45
estree-walker: ^2.0.2
source-map: ^0.6.1
dependencies:
@ -121,8 +121,8 @@ importers:
packages/compiler-dom:
specifiers:
'@vue/compiler-core': 3.2.44
'@vue/shared': 3.2.44
'@vue/compiler-core': 3.2.45
'@vue/shared': 3.2.45
dependencies:
'@vue/compiler-core': link:../compiler-core
'@vue/shared': link:../shared
@ -133,12 +133,12 @@ importers:
'@babel/types': ^7.16.0
'@types/estree': ^0.0.48
'@types/lru-cache': ^5.1.0
'@vue/compiler-core': 3.2.44
'@vue/compiler-dom': 3.2.44
'@vue/compiler-ssr': 3.2.44
'@vue/compiler-core': 3.2.45
'@vue/compiler-dom': 3.2.45
'@vue/compiler-ssr': 3.2.45
'@vue/consolidate': ^0.17.3
'@vue/reactivity-transform': 3.2.44
'@vue/shared': 3.2.44
'@vue/reactivity-transform': 3.2.45
'@vue/shared': 3.2.45
estree-walker: ^2.0.2
hash-sum: ^2.0.0
lru-cache: ^5.1.1
@ -176,15 +176,15 @@ importers:
packages/compiler-ssr:
specifiers:
'@vue/compiler-dom': 3.2.44
'@vue/shared': 3.2.44
'@vue/compiler-dom': 3.2.45
'@vue/shared': 3.2.45
dependencies:
'@vue/compiler-dom': link:../compiler-dom
'@vue/shared': link:../shared
packages/reactivity:
specifiers:
'@vue/shared': 3.2.44
'@vue/shared': 3.2.45
dependencies:
'@vue/shared': link:../shared
@ -193,8 +193,8 @@ importers:
'@babel/core': ^7.16.0
'@babel/parser': ^7.16.4
'@babel/types': ^7.16.0
'@vue/compiler-core': 3.2.44
'@vue/shared': 3.2.44
'@vue/compiler-core': 3.2.45
'@vue/shared': 3.2.45
estree-walker: ^2.0.2
magic-string: ^0.25.7
dependencies:
@ -209,16 +209,16 @@ importers:
packages/runtime-core:
specifiers:
'@vue/reactivity': 3.2.44
'@vue/shared': 3.2.44
'@vue/reactivity': 3.2.45
'@vue/shared': 3.2.45
dependencies:
'@vue/reactivity': link:../reactivity
'@vue/shared': link:../shared
packages/runtime-dom:
specifiers:
'@vue/runtime-core': 3.2.44
'@vue/shared': 3.2.44
'@vue/runtime-core': 3.2.45
'@vue/shared': 3.2.45
csstype: ^2.6.8
dependencies:
'@vue/runtime-core': link:../runtime-core
@ -227,16 +227,16 @@ importers:
packages/runtime-test:
specifiers:
'@vue/runtime-core': 3.2.44
'@vue/shared': 3.2.44
'@vue/runtime-core': 3.2.45
'@vue/shared': 3.2.45
dependencies:
'@vue/runtime-core': link:../runtime-core
'@vue/shared': link:../shared
packages/server-renderer:
specifiers:
'@vue/compiler-ssr': 3.2.44
'@vue/shared': 3.2.44
'@vue/compiler-ssr': 3.2.45
'@vue/shared': 3.2.45
dependencies:
'@vue/compiler-ssr': link:../compiler-ssr
'@vue/shared': link:../shared
@ -248,7 +248,7 @@ importers:
file-saver: ^2.0.5
jszip: ^3.6.0
vite: ^3.0.0
vue: 3.2.44
vue: 3.2.45
dependencies:
'@vue/repl': 1.3.0_vue@packages+vue
file-saver: 2.0.5
@ -274,11 +274,11 @@ importers:
packages/vue:
specifiers:
'@vue/compiler-dom': 3.2.44
'@vue/compiler-sfc': 3.2.44
'@vue/runtime-dom': 3.2.44
'@vue/server-renderer': 3.2.44
'@vue/shared': 3.2.44
'@vue/compiler-dom': 3.2.45
'@vue/compiler-sfc': 3.2.45
'@vue/runtime-dom': 3.2.45
'@vue/server-renderer': 3.2.45
'@vue/shared': 3.2.45
dependencies:
'@vue/compiler-dom': link:../compiler-dom
'@vue/compiler-sfc': link:../compiler-sfc