release: v3.2.5

This commit is contained in:
Evan You 2021-08-24 11:54:22 -04:00
parent 32827506ff
commit a137d73e91
18 changed files with 65 additions and 43 deletions

View File

@ -1,3 +1,25 @@
## [3.2.5](https://github.com/vuejs/vue-next/compare/v3.2.4...v3.2.5) (2021-08-24)
### Bug Fixes
* **compiler-core:** fix duplicated component identifier for names with non-ascii chars ([#4429](https://github.com/vuejs/vue-next/issues/4429)) ([3282750](https://github.com/vuejs/vue-next/commit/32827506ff2b6174d63525e7713830838840c671)), closes [#4422](https://github.com/vuejs/vue-next/issues/4422)
* **compiler-sfc:** fix 'export default' rewrite with extra whitespaces ([#4375](https://github.com/vuejs/vue-next/issues/4375)) ([4792ebd](https://github.com/vuejs/vue-next/commit/4792ebd6879115f887e393c7ed0a8475a705b6b0))
* **compiler-sfc:** fix `<script>` and `<script setup>` co-usage ordering edge case ([#4419](https://github.com/vuejs/vue-next/issues/4419)) ([9826382](https://github.com/vuejs/vue-next/commit/98263821f8c42abcff46fae2b0375219c84fb6a4)), closes [#4395](https://github.com/vuejs/vue-next/issues/4395) [#4376](https://github.com/vuejs/vue-next/issues/4376)
* **compiler-sfc:** should also expose regular script block bindings when `<script setup>` is used ([872b3f7](https://github.com/vuejs/vue-next/commit/872b3f7ec5e1a41c60018bb1f64d841c309b8939)), closes [#4369](https://github.com/vuejs/vue-next/issues/4369)
* **types:** improve the type of createElementBlock ([#4406](https://github.com/vuejs/vue-next/issues/4406)) ([ebd0bac](https://github.com/vuejs/vue-next/commit/ebd0baca98b618945fba223b94833c2b34cdf6a2)), closes [#4391](https://github.com/vuejs/vue-next/issues/4391)
### Features
* **experimental:** expose ref macro types using separate d.ts file ([b408451](https://github.com/vuejs/vue-next/commit/b40845153cd4dbdd76bfb74816f4e6b109c9f049))
* **experimental:** shouldTransform for ref-transform ([e565831](https://github.com/vuejs/vue-next/commit/e565831c98ac5110bf3550f15575ee6d01961992))
* **experimental:** standalone ref transform ([db8dc75](https://github.com/vuejs/vue-next/commit/db8dc753c0647edfb878d3b0f7b5b16bcfd2c23c))
* **experimental:** support ref transform for sfc normal `<script>` ([06051c4](https://github.com/vuejs/vue-next/commit/06051c4bf207ff9ac09292b8a5a73b254608cf0e))
* **ref-transform:** auto infer parser plugins ([6453359](https://github.com/vuejs/vue-next/commit/6453359852d4c93fe436bb94d73181eaa218b527))
## [3.2.4](https://github.com/vuejs/vue-next/compare/v3.2.3...v3.2.4) (2021-08-17)

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-core",
"version": "3.2.4",
"version": "3.2.5",
"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.4",
"@vue/shared": "3.2.5",
"@babel/parser": "^7.15.0",
"@babel/types": "^7.15.0",
"estree-walker": "^2.0.2",

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@vue/compiler-sfc",
"version": "3.2.4",
"version": "3.2.5",
"description": "@vue/compiler-sfc",
"main": "dist/compiler-sfc.cjs.js",
"types": "dist/compiler-sfc.d.ts",
@ -34,11 +34,11 @@
"@babel/parser": "^7.15.0",
"@babel/types": "^7.15.0",
"@types/estree": "^0.0.48",
"@vue/compiler-core": "3.2.4",
"@vue/compiler-dom": "3.2.4",
"@vue/compiler-ssr": "3.2.4",
"@vue/ref-transform": "3.2.4",
"@vue/shared": "3.2.4",
"@vue/compiler-core": "3.2.5",
"@vue/compiler-dom": "3.2.5",
"@vue/compiler-ssr": "3.2.5",
"@vue/ref-transform": "3.2.5",
"@vue/shared": "3.2.5",
"consolidate": "^0.16.0",
"estree-walker": "^2.0.2",
"hash-sum": "^2.0.0",

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@vue/ref-transform",
"version": "3.2.4",
"version": "3.2.5",
"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.4",
"@vue/shared": "3.2.4",
"@vue/compiler-core": "3.2.5",
"@vue/shared": "3.2.5",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7"
},

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "vue",
"version": "3.2.4",
"version": "3.2.5",
"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.4",
"@vue/compiler-dom": "3.2.4",
"@vue/runtime-dom": "3.2.4"
"@vue/shared": "3.2.5",
"@vue/compiler-dom": "3.2.5",
"@vue/runtime-dom": "3.2.5"
},
"devDependencies": {
"lodash": "^4.17.15",