mirror of https://github.com/vuejs/core.git
release: v3.3.0-alpha.10
This commit is contained in:
parent
4b5b384485
commit
33adc2a17a
31
CHANGELOG.md
31
CHANGELOG.md
|
@ -1,3 +1,34 @@
|
|||
# [3.3.0-alpha.10](https://github.com/vuejs/core/compare/v3.3.0-alpha.9...v3.3.0-alpha.10) (2023-04-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **hmr:** invalidate cached props/emits options on hmr ([4b5b384](https://github.com/vuejs/core/commit/4b5b384485cf8f6124f6738b89e3d047358f3a11))
|
||||
* **runtime-core:** properly merge props and emits options from mixins ([#8052](https://github.com/vuejs/core/issues/8052)) ([c94ef02](https://github.com/vuejs/core/commit/c94ef02421d7422bc59d10cf2eee9f4e7dcea6c8)), closes [#7989](https://github.com/vuejs/core/issues/7989)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **compiler-sfc:** expose type import deps on compiled script block ([8d8ddd6](https://github.com/vuejs/core/commit/8d8ddd686c832b2ea29b87ef47666b13c4ad5d4c))
|
||||
* **compiler-sfc:** expose type resolve APIs ([f22e32e](https://github.com/vuejs/core/commit/f22e32e365bf6292cb606cb7289609e82da8b790))
|
||||
* **compiler-sfc:** mark props destructure as experimental and require explicit opt-in ([6b13e04](https://github.com/vuejs/core/commit/6b13e04b4c83fcdbb180dc1d59f536a1309c2960))
|
||||
* **compiler-sfc:** support intersection and union types in macros ([d1f973b](https://github.com/vuejs/core/commit/d1f973bff82581fb335d6fc05623d1ad3d84fb7c)), closes [#7553](https://github.com/vuejs/core/issues/7553)
|
||||
* **compiler-sfc:** support limited built-in utility types in macros ([1cfab4c](https://github.com/vuejs/core/commit/1cfab4c695b0c28f549f8c97faee5099581792a7))
|
||||
* **compiler-sfc:** support mapped types, string types & template type in macros ([fb8ecc8](https://github.com/vuejs/core/commit/fb8ecc803e58bfef0971346c63fefc529812daa7))
|
||||
* **compiler-sfc:** support namespace members type in macros ([5ff40bb](https://github.com/vuejs/core/commit/5ff40bb0dc2918b7db15fe9f49db2a135a925572))
|
||||
* **compiler-sfc:** support relative imported types in macros ([8aa4ea8](https://github.com/vuejs/core/commit/8aa4ea81d6e4d3110aa1619cca594543da4c9b63))
|
||||
* **compiler-sfc:** support resolving type imports from modules ([3982bef](https://github.com/vuejs/core/commit/3982bef533b451d1b59fa243560184a13fe8c18c))
|
||||
* **compiler-sfc:** support specifying global types for sfc macros ([4e028b9](https://github.com/vuejs/core/commit/4e028b966991937c83fb2529973fd3d41080bb61)), closes [/github.com/vuejs/core/pull/8083#issuecomment-1508468713](https://github.com//github.com/vuejs/core/pull/8083/issues/issuecomment-1508468713)
|
||||
* **compiler-sfc:** support string indexed type in macros ([3f779dd](https://github.com/vuejs/core/commit/3f779ddbf85054c8915fa4537f8a79baab392d5c))
|
||||
* **compiler-sfc:** support string/number indexed types in macros ([760755f](https://github.com/vuejs/core/commit/760755f4f83680bee13ad546cdab2e48ade38dff))
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* **compiler:** use source-map-js ([19e17a9](https://github.com/vuejs/core/commit/19e17a951c3387cbd6a1597e6cd9048a4aad4528))
|
||||
|
||||
|
||||
|
||||
# [3.3.0-alpha.9](https://github.com/vuejs/core/compare/v3.3.0-alpha.8...v3.3.0-alpha.9) (2023-04-08)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"private": true,
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"packageManager": "pnpm@7.26.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/compiler-core",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"description": "@vue/compiler-core",
|
||||
"main": "index.js",
|
||||
"module": "dist/compiler-core.esm-bundler.js",
|
||||
|
@ -33,7 +33,7 @@
|
|||
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.21.3",
|
||||
"@vue/shared": "3.3.0-alpha.9",
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"estree-walker": "^2.0.2",
|
||||
"source-map-js": "^1.0.2"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/compiler-dom",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.3.0-alpha.9",
|
||||
"@vue/compiler-core": "3.3.0-alpha.9"
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"@vue/compiler-core": "3.3.0-alpha.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/compiler-sfc",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.20.15",
|
||||
"@vue/compiler-core": "3.3.0-alpha.9",
|
||||
"@vue/compiler-dom": "3.3.0-alpha.9",
|
||||
"@vue/compiler-ssr": "3.3.0-alpha.9",
|
||||
"@vue/reactivity-transform": "3.3.0-alpha.9",
|
||||
"@vue/shared": "3.3.0-alpha.9",
|
||||
"@vue/compiler-core": "3.3.0-alpha.10",
|
||||
"@vue/compiler-dom": "3.3.0-alpha.10",
|
||||
"@vue/compiler-ssr": "3.3.0-alpha.10",
|
||||
"@vue/reactivity-transform": "3.3.0-alpha.10",
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"estree-walker": "^2.0.2",
|
||||
"magic-string": "^0.30.0",
|
||||
"postcss": "^8.1.10",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/compiler-ssr",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.3.0-alpha.9",
|
||||
"@vue/compiler-dom": "3.3.0-alpha.9"
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"@vue/compiler-dom": "3.3.0-alpha.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,5 +4,5 @@
|
|||
"dependencies": {
|
||||
"vue": "workspace:*"
|
||||
},
|
||||
"version": "3.3.0-alpha.9"
|
||||
"version": "3.3.0-alpha.10"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/reactivity-transform",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.20.15",
|
||||
"@vue/compiler-core": "3.3.0-alpha.9",
|
||||
"@vue/shared": "3.3.0-alpha.9",
|
||||
"@vue/compiler-core": "3.3.0-alpha.10",
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"estree-walker": "^2.0.2",
|
||||
"magic-string": "^0.30.0"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/reactivity",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.3.0-alpha.9"
|
||||
"@vue/shared": "3.3.0-alpha.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/runtime-core",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.3.0-alpha.9",
|
||||
"@vue/reactivity": "3.3.0-alpha.9"
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"@vue/reactivity": "3.3.0-alpha.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/runtime-dom",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.3.0-alpha.9",
|
||||
"@vue/runtime-core": "3.3.0-alpha.9",
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"@vue/runtime-core": "3.3.0-alpha.10",
|
||||
"csstype": "^3.1.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/runtime-test",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.3.0-alpha.9",
|
||||
"@vue/runtime-core": "3.3.0-alpha.9"
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"@vue/runtime-core": "3.3.0-alpha.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/server-renderer",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.3.0-alpha.9"
|
||||
"vue": "3.3.0-alpha.10"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.3.0-alpha.9",
|
||||
"@vue/compiler-ssr": "3.3.0-alpha.9"
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"@vue/compiler-ssr": "3.3.0-alpha.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/sfc-playground",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/shared",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"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.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "vite build"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/template-explorer",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"private": true,
|
||||
"buildOptions": {
|
||||
"formats": [
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vue/compat",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"description": "Vue 3 compatibility build for Vue 2",
|
||||
"main": "index.js",
|
||||
"module": "dist/vue.runtime.esm-bundler.js",
|
||||
|
@ -43,6 +43,6 @@
|
|||
"source-map-js": "^1.0.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "3.3.0-alpha.9"
|
||||
"vue": "3.3.0-alpha.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vue",
|
||||
"version": "3.3.0-alpha.9",
|
||||
"version": "3.3.0-alpha.10",
|
||||
"description": "The progressive JavaScript framework for building modern web UI.",
|
||||
"main": "index.js",
|
||||
"module": "dist/vue.runtime.esm-bundler.js",
|
||||
|
@ -81,10 +81,10 @@
|
|||
},
|
||||
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue#readme",
|
||||
"dependencies": {
|
||||
"@vue/shared": "3.3.0-alpha.9",
|
||||
"@vue/compiler-dom": "3.3.0-alpha.9",
|
||||
"@vue/runtime-dom": "3.3.0-alpha.9",
|
||||
"@vue/compiler-sfc": "3.3.0-alpha.9",
|
||||
"@vue/server-renderer": "3.3.0-alpha.9"
|
||||
"@vue/shared": "3.3.0-alpha.10",
|
||||
"@vue/compiler-dom": "3.3.0-alpha.10",
|
||||
"@vue/runtime-dom": "3.3.0-alpha.10",
|
||||
"@vue/compiler-sfc": "3.3.0-alpha.10",
|
||||
"@vue/server-renderer": "3.3.0-alpha.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -100,7 +100,7 @@ importers:
|
|||
specifiers:
|
||||
'@babel/parser': ^7.21.3
|
||||
'@babel/types': ^7.21.3
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
estree-walker: ^2.0.2
|
||||
source-map-js: ^1.0.2
|
||||
dependencies:
|
||||
|
@ -113,8 +113,8 @@ importers:
|
|||
|
||||
packages/compiler-dom:
|
||||
specifiers:
|
||||
'@vue/compiler-core': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/compiler-core': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
dependencies:
|
||||
'@vue/compiler-core': link:../compiler-core
|
||||
'@vue/shared': link:../shared
|
||||
|
@ -125,12 +125,12 @@ importers:
|
|||
'@babel/types': ^7.21.3
|
||||
'@types/estree': ^0.0.48
|
||||
'@types/lru-cache': ^5.1.0
|
||||
'@vue/compiler-core': 3.3.0-alpha.9
|
||||
'@vue/compiler-dom': 3.3.0-alpha.9
|
||||
'@vue/compiler-ssr': 3.3.0-alpha.9
|
||||
'@vue/compiler-core': 3.3.0-alpha.10
|
||||
'@vue/compiler-dom': 3.3.0-alpha.10
|
||||
'@vue/compiler-ssr': 3.3.0-alpha.10
|
||||
'@vue/consolidate': ^0.17.3
|
||||
'@vue/reactivity-transform': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/reactivity-transform': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
estree-walker: ^2.0.2
|
||||
hash-sum: ^2.0.0
|
||||
lru-cache: ^5.1.1
|
||||
|
@ -168,8 +168,8 @@ importers:
|
|||
|
||||
packages/compiler-ssr:
|
||||
specifiers:
|
||||
'@vue/compiler-dom': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/compiler-dom': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
dependencies:
|
||||
'@vue/compiler-dom': link:../compiler-dom
|
||||
'@vue/shared': link:../shared
|
||||
|
@ -182,7 +182,7 @@ importers:
|
|||
|
||||
packages/reactivity:
|
||||
specifiers:
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
dependencies:
|
||||
'@vue/shared': link:../shared
|
||||
|
||||
|
@ -191,8 +191,8 @@ importers:
|
|||
'@babel/core': ^7.21.3
|
||||
'@babel/parser': ^7.20.15
|
||||
'@babel/types': ^7.21.3
|
||||
'@vue/compiler-core': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/compiler-core': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
estree-walker: ^2.0.2
|
||||
magic-string: ^0.30.0
|
||||
dependencies:
|
||||
|
@ -207,16 +207,16 @@ importers:
|
|||
|
||||
packages/runtime-core:
|
||||
specifiers:
|
||||
'@vue/reactivity': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/reactivity': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
dependencies:
|
||||
'@vue/reactivity': link:../reactivity
|
||||
'@vue/shared': link:../shared
|
||||
|
||||
packages/runtime-dom:
|
||||
specifiers:
|
||||
'@vue/runtime-core': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/runtime-core': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
csstype: ^3.1.1
|
||||
dependencies:
|
||||
'@vue/runtime-core': link:../runtime-core
|
||||
|
@ -225,16 +225,16 @@ importers:
|
|||
|
||||
packages/runtime-test:
|
||||
specifiers:
|
||||
'@vue/runtime-core': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/runtime-core': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
dependencies:
|
||||
'@vue/runtime-core': link:../runtime-core
|
||||
'@vue/shared': link:../shared
|
||||
|
||||
packages/server-renderer:
|
||||
specifiers:
|
||||
'@vue/compiler-ssr': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/compiler-ssr': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
dependencies:
|
||||
'@vue/compiler-ssr': link:../compiler-ssr
|
||||
'@vue/shared': link:../shared
|
||||
|
@ -275,11 +275,11 @@ importers:
|
|||
|
||||
packages/vue:
|
||||
specifiers:
|
||||
'@vue/compiler-dom': 3.3.0-alpha.9
|
||||
'@vue/compiler-sfc': 3.3.0-alpha.9
|
||||
'@vue/runtime-dom': 3.3.0-alpha.9
|
||||
'@vue/server-renderer': 3.3.0-alpha.9
|
||||
'@vue/shared': 3.3.0-alpha.9
|
||||
'@vue/compiler-dom': 3.3.0-alpha.10
|
||||
'@vue/compiler-sfc': 3.3.0-alpha.10
|
||||
'@vue/runtime-dom': 3.3.0-alpha.10
|
||||
'@vue/server-renderer': 3.3.0-alpha.10
|
||||
'@vue/shared': 3.3.0-alpha.10
|
||||
dependencies:
|
||||
'@vue/compiler-dom': link:../compiler-dom
|
||||
'@vue/compiler-sfc': link:../compiler-sfc
|
||||
|
|
Loading…
Reference in New Issue