release: v3.2.13
This commit is contained in:
parent
a0cacc0d83
commit
b9deb6e50e
24
CHANGELOG.md
24
CHANGELOG.md
@ -1,3 +1,27 @@
|
||||
## [3.2.13](https://github.com/vuejs/vue-next/compare/v3.2.12...v3.2.13) (2021-09-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **compiler-core:** add check when v-else-if is behind v-else ([#4603](https://github.com/vuejs/vue-next/issues/4603)) ([5addef8](https://github.com/vuejs/vue-next/commit/5addef8ecdee58e630e4e80befc28bfef43b6b2d))
|
||||
* **compiler-core:** dedupe renderSlot's default props ([#4557](https://github.com/vuejs/vue-next/issues/4557)) ([0448125](https://github.com/vuejs/vue-next/commit/044812525feef125c3a1a8de57bd7d67fb8f3cab))
|
||||
* **compiler-core:** ensure hoisted scopeId code can be treeshaken ([cb2d7c0](https://github.com/vuejs/vue-next/commit/cb2d7c0e3c2ccbfd92eb7d19e2cfddad30bcaf62))
|
||||
* **compiler-core:** more robust member expression check when running in node ([d23fde3](https://github.com/vuejs/vue-next/commit/d23fde3d3b17b2a8c058749cb28d5b1dd08c8963)), closes [#4640](https://github.com/vuejs/vue-next/issues/4640)
|
||||
* **compiler-core:** only merge true handlers ([#4577](https://github.com/vuejs/vue-next/issues/4577)) ([d8a36d0](https://github.com/vuejs/vue-next/commit/d8a36d0198a427d3b6447128a3882287c0003413))
|
||||
* **compiler-core:** support ts syntax in expressions when isTS is true ([0dc521b](https://github.com/vuejs/vue-next/commit/0dc521b9e15ce4aa3d5229e90d2173644529e92b))
|
||||
* **compiler-dom:** fix transition children check for whitespace nodes ([ed6470c](https://github.com/vuejs/vue-next/commit/ed6470c845efa57d902c50a7b97e4a40331e9621)), closes [#4637](https://github.com/vuejs/vue-next/issues/4637)
|
||||
* **hydration:** ensure hydrated event listeners have bound instance ([#4529](https://github.com/vuejs/vue-next/issues/4529)) ([58b1fa5](https://github.com/vuejs/vue-next/commit/58b1fa5ed15edc7264785cd722282a011ea3042c)), closes [#4479](https://github.com/vuejs/vue-next/issues/4479)
|
||||
* **runtime-core:** return the exposeProxy from mount ([#4606](https://github.com/vuejs/vue-next/issues/4606)) ([5aa4255](https://github.com/vuejs/vue-next/commit/5aa425580808d0588aef12ead81c91f7147e1042))
|
||||
* **types:** incorrect type inference of array ([#4578](https://github.com/vuejs/vue-next/issues/4578)) ([140f089](https://github.com/vuejs/vue-next/commit/140f08991727d7c15db907eea5a101979fe390b2))
|
||||
* **watch:** remove redundant parameter default value ([#4565](https://github.com/vuejs/vue-next/issues/4565)) ([11a2098](https://github.com/vuejs/vue-next/commit/11a2098a69f47e0919647de0deabd14022febda1))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **compiler-sfc:** allow disabling sourcemap when not needed ([585615b](https://github.com/vuejs/vue-next/commit/585615beb1727e6eb32c41f1e0bba6975ff40b28))
|
||||
|
||||
|
||||
|
||||
## [3.2.12](https://github.com/vuejs/vue-next/compare/v3.2.11...v3.2.12) (2021-09-17)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"private": true,
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
],
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compiler-core",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "@vue/compiler-core",
|
||||
"main": "index.js",
|
||||
"module": "dist/compiler-core.esm-bundler.js",
|
||||
@ -32,7 +32,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-core#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/shared": "3.2.13",
|
||||
"@babel/parser": "^7.15.0",
|
||||
"estree-walker": "^2.0.2",
|
||||
"source-map": "^0.6.1"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compiler-dom",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "@vue/compiler-dom",
|
||||
"main": "index.js",
|
||||
"module": "dist/compiler-dom.esm-bundler.js",
|
||||
@ -37,7 +37,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-dom#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/compiler-core": "3.2.12"
|
||||
"@vue/shared": "3.2.13",
|
||||
"@vue/compiler-core": "3.2.13"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compiler-sfc",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"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/vue-next/tree/master/packages/compiler-sfc#readme",
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.15.0",
|
||||
"@vue/compiler-core": "3.2.12",
|
||||
"@vue/compiler-dom": "3.2.12",
|
||||
"@vue/compiler-ssr": "3.2.12",
|
||||
"@vue/ref-transform": "3.2.12",
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/compiler-core": "3.2.13",
|
||||
"@vue/compiler-dom": "3.2.13",
|
||||
"@vue/compiler-ssr": "3.2.13",
|
||||
"@vue/ref-transform": "3.2.13",
|
||||
"@vue/shared": "3.2.13",
|
||||
"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.12",
|
||||
"version": "3.2.13",
|
||||
"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/vue-next/tree/master/packages/compiler-ssr#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/compiler-dom": "3.2.12"
|
||||
"@vue/shared": "3.2.13",
|
||||
"@vue/compiler-dom": "3.2.13"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/reactivity",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "@vue/reactivity",
|
||||
"main": "index.js",
|
||||
"module": "dist/reactivity.esm-bundler.js",
|
||||
@ -36,6 +36,6 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/reactivity#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12"
|
||||
"@vue/shared": "3.2.13"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/ref-transform",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "@vue/ref-transform",
|
||||
"main": "dist/ref-transform.cjs.js",
|
||||
"files": [
|
||||
@ -29,8 +29,8 @@
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/dev/packages/ref-transform#readme",
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.15.0",
|
||||
"@vue/compiler-core": "3.2.12",
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/compiler-core": "3.2.13",
|
||||
"@vue/shared": "3.2.13",
|
||||
"estree-walker": "^2.0.2",
|
||||
"magic-string": "^0.25.7"
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/runtime-core",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "@vue/runtime-core",
|
||||
"main": "index.js",
|
||||
"module": "dist/runtime-core.esm-bundler.js",
|
||||
@ -32,7 +32,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-core#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/reactivity": "3.2.12"
|
||||
"@vue/shared": "3.2.13",
|
||||
"@vue/reactivity": "3.2.13"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/runtime-dom",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "@vue/runtime-dom",
|
||||
"main": "index.js",
|
||||
"module": "dist/runtime-dom.esm-bundler.js",
|
||||
@ -35,8 +35,8 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-dom#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/runtime-core": "3.2.12",
|
||||
"@vue/shared": "3.2.13",
|
||||
"@vue/runtime-core": "3.2.13",
|
||||
"csstype": "^2.6.8"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/runtime-test",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "@vue/runtime-test",
|
||||
"private": true,
|
||||
"main": "index.js",
|
||||
@ -25,7 +25,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-test#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/runtime-core": "3.2.12"
|
||||
"@vue/shared": "3.2.13",
|
||||
"@vue/runtime-core": "3.2.13"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/server-renderer",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "@vue/server-renderer",
|
||||
"main": "index.js",
|
||||
"module": "dist/server-renderer.esm-bundler.js",
|
||||
@ -31,10 +31,10 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/server-renderer#readme",
|
||||
"peerDependencies": {
|
||||
"vue": "3.2.12"
|
||||
"vue": "3.2.13"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/compiler-ssr": "3.2.12"
|
||||
"@vue/shared": "3.2.13",
|
||||
"@vue/compiler-ssr": "3.2.13"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/sfc-playground",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/shared",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"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.12",
|
||||
"version": "3.2.13",
|
||||
"private": true,
|
||||
"buildOptions": {
|
||||
"name": "Vue",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/template-explorer",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"private": true,
|
||||
"buildOptions": {
|
||||
"formats": [
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@vue/compat",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"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/vue-next/tree/master/packages/vue-compat#readme",
|
||||
"peerDependencies": {
|
||||
"vue": "3.2.12"
|
||||
"vue": "3.2.13"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vue",
|
||||
"version": "3.2.12",
|
||||
"version": "3.2.13",
|
||||
"description": "The progressive JavaScript framework for buiding modern web UI.",
|
||||
"main": "index.js",
|
||||
"module": "dist/vue.runtime.esm-bundler.js",
|
||||
@ -40,10 +40,10 @@
|
||||
},
|
||||
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/vue#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.2.12",
|
||||
"@vue/compiler-dom": "3.2.12",
|
||||
"@vue/runtime-dom": "3.2.12",
|
||||
"@vue/compiler-sfc": "3.2.12",
|
||||
"@vue/server-renderer": "3.2.12"
|
||||
"@vue/shared": "3.2.13",
|
||||
"@vue/compiler-dom": "3.2.13",
|
||||
"@vue/runtime-dom": "3.2.13",
|
||||
"@vue/compiler-sfc": "3.2.13",
|
||||
"@vue/server-renderer": "3.2.13"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user