release: v3.2.33
This commit is contained in:
parent
62eba63172
commit
56879e6b23
21
CHANGELOG.md
21
CHANGELOG.md
@ -1,3 +1,24 @@
|
||||
## [3.2.33](https://github.com/vuejs/core/compare/v3.2.32...v3.2.33) (2022-04-14)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **compat:** copy additional properties for functions bound via globalProperties ([#4873](https://github.com/vuejs/core/issues/4873)) ([1612971](https://github.com/vuejs/core/commit/16129714714e19c5c6bfbd05c439ff68bcac00b9)), closes [#4403](https://github.com/vuejs/core/issues/4403)
|
||||
* **compiler-sfc:** handle type modifier in import specifiers ([#5498](https://github.com/vuejs/core/issues/5498)) ([8e29ef6](https://github.com/vuejs/core/commit/8e29ef6019d1b9d9c8f67b4ebba0223b8e0f914c))
|
||||
* **custom-elements:** work with async component + slots ([#4657](https://github.com/vuejs/core/issues/4657)) ([f4d2c9f](https://github.com/vuejs/core/commit/f4d2c9fc6afea827a081c1eeab78ce5c0cc620ca)), closes [#4639](https://github.com/vuejs/core/issues/4639)
|
||||
* **reactivity-transform:** should not rewrite catch param ([#5711](https://github.com/vuejs/core/issues/5711)) ([1f14f19](https://github.com/vuejs/core/commit/1f14f194396bf9296a1046d3f680d6d318cd0e40)), closes [#5709](https://github.com/vuejs/core/issues/5709)
|
||||
* **reactivity:** fix ref tracking of self-stopping effects ([154233a](https://github.com/vuejs/core/commit/154233abdb19b8330bbc1ff0d3e007f2558cd81c)), closes [#5707](https://github.com/vuejs/core/issues/5707)
|
||||
* **runtime-core:** ensure custom events are not emitted anymore after unmount. ([#5679](https://github.com/vuejs/core/issues/5679)) ([71c9536](https://github.com/vuejs/core/commit/71c953662528c4f0be68e7b412585c6809794528)), closes [#5674](https://github.com/vuejs/core/issues/5674)
|
||||
* **runtime-core:** fix use of non-existent-in-prod internal property in defineProperty trap ([f641c4b](https://github.com/vuejs/core/commit/f641c4b2289dfdbbbea87538e36fa35f2a115ddc)), closes [#5710](https://github.com/vuejs/core/issues/5710)
|
||||
* **runtime-dom:** catch more cases of DOM property setting error ([#5552](https://github.com/vuejs/core/issues/5552)) ([fa1d14c](https://github.com/vuejs/core/commit/fa1d14c2c82a70743ed837ee91c8966373aa8142)), closes [#5545](https://github.com/vuejs/core/issues/5545)
|
||||
* **runtime-dom:** patch translate as an attr ([#5485](https://github.com/vuejs/core/issues/5485)) ([2c09969](https://github.com/vuejs/core/commit/2c09969b1316b88f9a60406ce7c49cf1110bc400)), closes [#5462](https://github.com/vuejs/core/issues/5462)
|
||||
* **runtime-dom:** properly handle style properties with undefined values ([#5348](https://github.com/vuejs/core/issues/5348)) ([85af139](https://github.com/vuejs/core/commit/85af1398637ee91c6ebabb73bf42250320311e19)), closes [#5322](https://github.com/vuejs/core/issues/5322)
|
||||
* **ssr:** avoid rendering reserved internal keys in output ([#5564](https://github.com/vuejs/core/issues/5564)) ([cc238cd](https://github.com/vuejs/core/commit/cc238cdb8e9e90b700c22dfb0530d395e60c9836)), closes [#5563](https://github.com/vuejs/core/issues/5563)
|
||||
* **transition:** fix broken leave transition on dev root fragment ([#5268](https://github.com/vuejs/core/issues/5268)) ([767d212](https://github.com/vuejs/core/commit/767d212d20a9a488d183610d048ba131bbfd067e))
|
||||
* **transition:** handle transition for v-if branches with comment ([62eba63](https://github.com/vuejs/core/commit/62eba63172414ae0aa895d4b1927c7889c398f2f)), closes [#5675](https://github.com/vuejs/core/issues/5675)
|
||||
|
||||
|
||||
|
||||
## [3.2.32](https://github.com/vuejs/core/compare/v3.2.31...v3.2.32) (2022-04-12)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"private": true,
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"scripts": {
|
||||
"dev": "node scripts/dev.js",
|
||||
"build": "node scripts/build.js",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compiler-core",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32",
|
||||
"@vue/shared": "3.2.33",
|
||||
"@babel/parser": "^7.16.4",
|
||||
"estree-walker": "^2.0.2",
|
||||
"source-map": "^0.6.1"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compiler-dom",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32",
|
||||
"@vue/compiler-core": "3.2.32"
|
||||
"@vue/shared": "3.2.33",
|
||||
"@vue/compiler-core": "3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compiler-sfc",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32",
|
||||
"@vue/compiler-dom": "3.2.32",
|
||||
"@vue/compiler-ssr": "3.2.32",
|
||||
"@vue/reactivity-transform": "3.2.32",
|
||||
"@vue/shared": "3.2.32",
|
||||
"@vue/compiler-core": "3.2.33",
|
||||
"@vue/compiler-dom": "3.2.33",
|
||||
"@vue/compiler-ssr": "3.2.33",
|
||||
"@vue/reactivity-transform": "3.2.33",
|
||||
"@vue/shared": "3.2.33",
|
||||
"estree-walker": "^2.0.2",
|
||||
"magic-string": "^0.25.7",
|
||||
"source-map": "^0.6.1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compiler-ssr",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32",
|
||||
"@vue/compiler-dom": "3.2.32"
|
||||
"@vue/shared": "3.2.33",
|
||||
"@vue/compiler-dom": "3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/reactivity-transform",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32",
|
||||
"@vue/shared": "3.2.32",
|
||||
"@vue/compiler-core": "3.2.33",
|
||||
"@vue/shared": "3.2.33",
|
||||
"estree-walker": "^2.0.2",
|
||||
"magic-string": "^0.25.7"
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/reactivity",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32"
|
||||
"@vue/shared": "3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/runtime-core",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32",
|
||||
"@vue/reactivity": "3.2.32"
|
||||
"@vue/shared": "3.2.33",
|
||||
"@vue/reactivity": "3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/runtime-dom",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32",
|
||||
"@vue/runtime-core": "3.2.32",
|
||||
"@vue/shared": "3.2.33",
|
||||
"@vue/runtime-core": "3.2.33",
|
||||
"csstype": "^2.6.8"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/runtime-test",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"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.32",
|
||||
"@vue/runtime-core": "3.2.32"
|
||||
"@vue/shared": "3.2.33",
|
||||
"@vue/runtime-core": "3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/server-renderer",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"description": "@vue/server-renderer",
|
||||
"main": "index.js",
|
||||
"module": "dist/server-renderer.esm-bundler.js",
|
||||
@ -31,10 +31,10 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/core/tree/main/packages/server-renderer#readme",
|
||||
"peerDependencies": {
|
||||
"vue": "3.2.32"
|
||||
"vue": "3.2.33"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.32",
|
||||
"@vue/compiler-ssr": "3.2.32"
|
||||
"@vue/shared": "3.2.33",
|
||||
"@vue/compiler-ssr": "3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/sfc-playground",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
@ -12,7 +12,7 @@
|
||||
"vite": "^2.7.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"vue": "3.2.32",
|
||||
"vue": "3.2.33",
|
||||
"@vue/repl": "^0.4.8",
|
||||
"file-saver": "^2.0.5",
|
||||
"jszip": "^3.6.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/shared",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"description": "internal utils shared across @vue packages",
|
||||
"main": "index.js",
|
||||
"module": "dist/shared.esm-bundler.js",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/size-check",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "vite build"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/template-explorer",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"private": true,
|
||||
"buildOptions": {
|
||||
"formats": [
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compat",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"description": "Vue 3 compatibility build for Vue 2",
|
||||
"main": "index.js",
|
||||
"module": "dist/vue.runtime.esm-bundler.js",
|
||||
@ -38,6 +38,6 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue-compat#readme",
|
||||
"peerDependencies": {
|
||||
"vue": "3.2.32"
|
||||
"vue": "3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vue",
|
||||
"version": "3.2.32",
|
||||
"version": "3.2.33",
|
||||
"description": "The progressive JavaScript framework for building modern web UI.",
|
||||
"main": "index.js",
|
||||
"module": "dist/vue.runtime.esm-bundler.js",
|
||||
@ -66,10 +66,10 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.32",
|
||||
"@vue/compiler-dom": "3.2.32",
|
||||
"@vue/runtime-dom": "3.2.32",
|
||||
"@vue/compiler-sfc": "3.2.32",
|
||||
"@vue/server-renderer": "3.2.32"
|
||||
"@vue/shared": "3.2.33",
|
||||
"@vue/compiler-dom": "3.2.33",
|
||||
"@vue/runtime-dom": "3.2.33",
|
||||
"@vue/compiler-sfc": "3.2.33",
|
||||
"@vue/server-renderer": "3.2.33"
|
||||
}
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ importers:
|
||||
specifiers:
|
||||
'@babel/parser': ^7.16.4
|
||||
'@babel/types': ^7.16.0
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/shared': 3.2.33
|
||||
estree-walker: ^2.0.2
|
||||
source-map: ^0.6.1
|
||||
dependencies:
|
||||
@ -117,8 +117,8 @@ importers:
|
||||
|
||||
packages/compiler-dom:
|
||||
specifiers:
|
||||
'@vue/compiler-core': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/compiler-core': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
dependencies:
|
||||
'@vue/compiler-core': link:../compiler-core
|
||||
'@vue/shared': link:../shared
|
||||
@ -129,12 +129,12 @@ importers:
|
||||
'@babel/types': ^7.16.0
|
||||
'@types/estree': ^0.0.48
|
||||
'@types/lru-cache': ^5.1.0
|
||||
'@vue/compiler-core': 3.2.32
|
||||
'@vue/compiler-dom': 3.2.32
|
||||
'@vue/compiler-ssr': 3.2.32
|
||||
'@vue/compiler-core': 3.2.33
|
||||
'@vue/compiler-dom': 3.2.33
|
||||
'@vue/compiler-ssr': 3.2.33
|
||||
'@vue/consolidate': ^0.17.3
|
||||
'@vue/reactivity-transform': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/reactivity-transform': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
estree-walker: ^2.0.2
|
||||
hash-sum: ^2.0.0
|
||||
lru-cache: ^5.1.1
|
||||
@ -172,15 +172,15 @@ importers:
|
||||
|
||||
packages/compiler-ssr:
|
||||
specifiers:
|
||||
'@vue/compiler-dom': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/compiler-dom': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
dependencies:
|
||||
'@vue/compiler-dom': link:../compiler-dom
|
||||
'@vue/shared': link:../shared
|
||||
|
||||
packages/reactivity:
|
||||
specifiers:
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/shared': 3.2.33
|
||||
dependencies:
|
||||
'@vue/shared': link:../shared
|
||||
|
||||
@ -189,8 +189,8 @@ importers:
|
||||
'@babel/core': ^7.16.0
|
||||
'@babel/parser': ^7.16.4
|
||||
'@babel/types': ^7.16.0
|
||||
'@vue/compiler-core': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/compiler-core': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
estree-walker: ^2.0.2
|
||||
magic-string: ^0.25.7
|
||||
dependencies:
|
||||
@ -205,16 +205,16 @@ importers:
|
||||
|
||||
packages/runtime-core:
|
||||
specifiers:
|
||||
'@vue/reactivity': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/reactivity': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
dependencies:
|
||||
'@vue/reactivity': link:../reactivity
|
||||
'@vue/shared': link:../shared
|
||||
|
||||
packages/runtime-dom:
|
||||
specifiers:
|
||||
'@vue/runtime-core': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/runtime-core': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
csstype: ^2.6.8
|
||||
dependencies:
|
||||
'@vue/runtime-core': link:../runtime-core
|
||||
@ -223,16 +223,16 @@ importers:
|
||||
|
||||
packages/runtime-test:
|
||||
specifiers:
|
||||
'@vue/runtime-core': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/runtime-core': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
dependencies:
|
||||
'@vue/runtime-core': link:../runtime-core
|
||||
'@vue/shared': link:../shared
|
||||
|
||||
packages/server-renderer:
|
||||
specifiers:
|
||||
'@vue/compiler-ssr': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/compiler-ssr': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
dependencies:
|
||||
'@vue/compiler-ssr': link:../compiler-ssr
|
||||
'@vue/shared': link:../shared
|
||||
@ -244,7 +244,7 @@ importers:
|
||||
file-saver: ^2.0.5
|
||||
jszip: ^3.6.0
|
||||
vite: ^2.7.1
|
||||
vue: 3.2.32
|
||||
vue: 3.2.33
|
||||
dependencies:
|
||||
'@vue/repl': 0.4.8_vue@packages+vue
|
||||
file-saver: 2.0.5
|
||||
@ -270,11 +270,11 @@ importers:
|
||||
|
||||
packages/vue:
|
||||
specifiers:
|
||||
'@vue/compiler-dom': 3.2.32
|
||||
'@vue/compiler-sfc': 3.2.32
|
||||
'@vue/runtime-dom': 3.2.32
|
||||
'@vue/server-renderer': 3.2.32
|
||||
'@vue/shared': 3.2.32
|
||||
'@vue/compiler-dom': 3.2.33
|
||||
'@vue/compiler-sfc': 3.2.33
|
||||
'@vue/runtime-dom': 3.2.33
|
||||
'@vue/server-renderer': 3.2.33
|
||||
'@vue/shared': 3.2.33
|
||||
dependencies:
|
||||
'@vue/compiler-dom': link:../compiler-dom
|
||||
'@vue/compiler-sfc': link:../compiler-sfc
|
||||
|
Loading…
Reference in New Issue
Block a user