release: v3.2.4

This commit is contained in:
Evan You 2021-08-17 12:26:50 -04:00
parent 951fbb197b
commit ceace3a8cc
17 changed files with 55 additions and 39 deletions

View File

@ -1,3 +1,19 @@
## [3.2.4](https://github.com/vuejs/vue-next/compare/v3.2.3...v3.2.4) (2021-08-17)
### Bug Fixes
* **compiler-sfc:** fix import usage check for lowercase imported components ([57f1081](https://github.com/vuejs/vue-next/commit/57f10812cc7f1e9f6c92736c36aba577943996fd)), closes [#4358](https://github.com/vuejs/vue-next/issues/4358)
* **runtime-core:** ensure consistent arguments for tempalte and render funtion slot usage ([644971e](https://github.com/vuejs/vue-next/commit/644971ec06642817cf7e720ad4980182d2140f53)), closes [#4367](https://github.com/vuejs/vue-next/issues/4367)
* **runtime-core:** fix child component double update on props change ([c1f564e](https://github.com/vuejs/vue-next/commit/c1f564e1dc40eda9af657c30cd787a8d770dde0f)), closes [#4365](https://github.com/vuejs/vue-next/issues/4365)
### Reverts
* Revert "chore: add missing space in warning message (#4359) [ci skip]" ([951fbb1](https://github.com/vuejs/vue-next/commit/951fbb197b63c2bd1528e78601c28424211ba6b8)), closes [#4359](https://github.com/vuejs/vue-next/issues/4359)
## [3.2.3](https://github.com/vuejs/vue-next/compare/v3.2.2...v3.2.3) (2021-08-16)

View File

@ -1,6 +1,6 @@
{
"private": true,
"version": "3.2.3",
"version": "3.2.4",
"workspaces": [
"packages/*"
],

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-core",
"version": "3.2.3",
"version": "3.2.4",
"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.3",
"@vue/shared": "3.2.4",
"@babel/parser": "^7.12.0",
"@babel/types": "^7.12.0",
"estree-walker": "^2.0.1",

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-dom",
"version": "3.2.3",
"version": "3.2.4",
"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.3",
"@vue/compiler-core": "3.2.3"
"@vue/shared": "3.2.4",
"@vue/compiler-core": "3.2.4"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-sfc",
"version": "3.2.3",
"version": "3.2.4",
"description": "@vue/compiler-sfc",
"main": "dist/compiler-sfc.cjs.js",
"types": "dist/compiler-sfc.d.ts",
@ -34,10 +34,10 @@
"@babel/parser": "^7.13.9",
"@babel/types": "^7.13.0",
"@types/estree": "^0.0.48",
"@vue/compiler-core": "3.2.3",
"@vue/compiler-dom": "3.2.3",
"@vue/compiler-ssr": "3.2.3",
"@vue/shared": "3.2.3",
"@vue/compiler-core": "3.2.4",
"@vue/compiler-dom": "3.2.4",
"@vue/compiler-ssr": "3.2.4",
"@vue/shared": "3.2.4",
"consolidate": "^0.16.0",
"estree-walker": "^2.0.1",
"hash-sum": "^2.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-ssr",
"version": "3.2.3",
"version": "3.2.4",
"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.3",
"@vue/compiler-dom": "3.2.3"
"@vue/shared": "3.2.4",
"@vue/compiler-dom": "3.2.4"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/reactivity",
"version": "3.2.3",
"version": "3.2.4",
"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.3"
"@vue/shared": "3.2.4"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/runtime-core",
"version": "3.2.3",
"version": "3.2.4",
"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.3",
"@vue/reactivity": "3.2.3"
"@vue/shared": "3.2.4",
"@vue/reactivity": "3.2.4"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/runtime-dom",
"version": "3.2.3",
"version": "3.2.4",
"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.3",
"@vue/runtime-core": "3.2.3",
"@vue/shared": "3.2.4",
"@vue/runtime-core": "3.2.4",
"csstype": "^2.6.8"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/runtime-test",
"version": "3.2.3",
"version": "3.2.4",
"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.3",
"@vue/runtime-core": "3.2.3"
"@vue/shared": "3.2.4",
"@vue/runtime-core": "3.2.4"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/server-renderer",
"version": "3.2.3",
"version": "3.2.4",
"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.3"
"vue": "3.2.4"
},
"dependencies": {
"@vue/shared": "3.2.3",
"@vue/compiler-ssr": "3.2.3"
"@vue/shared": "3.2.4",
"@vue/compiler-ssr": "3.2.4"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@vue/sfc-playground",
"version": "3.2.3",
"version": "3.2.4",
"private": true,
"scripts": {
"dev": "vite",

View File

@ -1,6 +1,6 @@
{
"name": "@vue/shared",
"version": "3.2.3",
"version": "3.2.4",
"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.3",
"version": "3.2.4",
"private": true,
"buildOptions": {
"name": "Vue",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compat",
"version": "3.2.3",
"version": "3.2.4",
"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.3"
"vue": "3.2.4"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "vue",
"version": "3.2.3",
"version": "3.2.4",
"description": "The progressive JavaScript framework for buiding modern web UI.",
"main": "index.js",
"module": "dist/vue.runtime.esm-bundler.js",
@ -37,9 +37,9 @@
},
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/vue#readme",
"dependencies": {
"@vue/shared": "3.2.3",
"@vue/compiler-dom": "3.2.3",
"@vue/runtime-dom": "3.2.3"
"@vue/shared": "3.2.4",
"@vue/compiler-dom": "3.2.4",
"@vue/runtime-dom": "3.2.4"
},
"devDependencies": {
"lodash": "^4.17.15",