Skip to content

Commit 9a09e47

Browse files
committed
release: v3.3.0-alpha.7
1 parent 5a2f5d5 commit 9a09e47

File tree

20 files changed

+92
-72
lines changed

20 files changed

+92
-72
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# [3.3.0-alpha.7](https://github.com/vuejs/core/compare/v3.3.0-alpha.6...v3.3.0-alpha.7) (2023-04-03)
2+
3+
4+
### Bug Fixes
5+
6+
* **compiler-dom:** handle newlines when evaluating constants during stringification ([#7995](https://github.com/vuejs/core/issues/7995)) ([5261085](https://github.com/vuejs/core/commit/52610851137b9c5f6f57d771fd604fba309b3c97)), closes [#7994](https://github.com/vuejs/core/issues/7994)
7+
* **compiler-sfc:** use dynamic defaults merging for methods with computed keys ([482f2e3](https://github.com/vuejs/core/commit/482f2e3434a1edc47a181890354838e206d08922)), closes [#7113](https://github.com/vuejs/core/issues/7113)
8+
9+
10+
### Features
11+
12+
* **compiler-sfc:** codegen support for defineEmits() short syntax (followup of [#7992](https://github.com/vuejs/core/issues/7992)) ([ef73ea5](https://github.com/vuejs/core/commit/ef73ea53eaf853d43e70946d2d448ae8c0a83e4f))
13+
* **compiler-sfc:** support arbitrary expression as withDefaults argument ([fe61944](https://github.com/vuejs/core/commit/fe619443d2e99301975de120685dbae8d66c03a6)), closes [#6459](https://github.com/vuejs/core/issues/6459)
14+
* **reactivity:** improve support of getter usage in reactivity APIs ([#7997](https://github.com/vuejs/core/issues/7997)) ([59e8284](https://github.com/vuejs/core/commit/59e828448e7f37643cd0eaea924a764e9d314448))
15+
* **sfc:** revert withDefaults() deprecation ([4af5d1b](https://github.com/vuejs/core/commit/4af5d1b0754035058436f9e4e5c12aedef199177))
16+
* **sfc:** support more ergnomic defineEmits type syntax ([#7992](https://github.com/vuejs/core/issues/7992)) ([8876dcc](https://github.com/vuejs/core/commit/8876dccf42a7f05375d97cb18c1afdfd0fc51c94))
17+
* **types/slots:** support slot presence / props type checks via `defineSlots` macro and `slots` option ([#7982](https://github.com/vuejs/core/issues/7982)) ([5a2f5d5](https://github.com/vuejs/core/commit/5a2f5d59cffa36a99e6f2feab6b3ba7958b7362f))
18+
19+
20+
121
# [3.3.0-alpha.6](https://github.com/vuejs/core/compare/v3.3.0-alpha.5...v3.3.0-alpha.6) (2023-03-30)
222

323

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.3.0-alpha.6",
3+
"version": "3.3.0-alpha.7",
44
"packageManager": "[email protected]",
55
"type": "module",
66
"scripts": {

packages/compiler-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-core",
3-
"version": "3.3.0-alpha.6",
3+
"version": "3.3.0-alpha.7",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",
@@ -33,7 +33,7 @@
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
3434
"dependencies": {
3535
"@babel/parser": "^7.21.3",
36-
"@vue/shared": "3.3.0-alpha.6",
36+
"@vue/shared": "3.3.0-alpha.7",
3737
"estree-walker": "^2.0.2",
3838
"source-map": "^0.6.1"
3939
},

packages/compiler-dom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-dom",
3-
"version": "3.3.0-alpha.6",
3+
"version": "3.3.0-alpha.7",
44
"description": "@vue/compiler-dom",
55
"main": "index.js",
66
"module": "dist/compiler-dom.esm-bundler.js",
@@ -37,7 +37,7 @@
3737
},
3838
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-dom#readme",
3939
"dependencies": {
40-
"@vue/shared": "3.3.0-alpha.6",
41-
"@vue/compiler-core": "3.3.0-alpha.6"
40+
"@vue/shared": "3.3.0-alpha.7",
41+
"@vue/compiler-core": "3.3.0-alpha.7"
4242
}
4343
}

packages/compiler-sfc/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-sfc",
3-
"version": "3.3.0-alpha.6",
3+
"version": "3.3.0-alpha.7",
44
"description": "@vue/compiler-sfc",
55
"main": "dist/compiler-sfc.cjs.js",
66
"module": "dist/compiler-sfc.esm-browser.js",
@@ -33,11 +33,11 @@
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-sfc#readme",
3434
"dependencies": {
3535
"@babel/parser": "^7.20.15",
36-
"@vue/compiler-core": "3.3.0-alpha.6",
37-
"@vue/compiler-dom": "3.3.0-alpha.6",
38-
"@vue/compiler-ssr": "3.3.0-alpha.6",
39-
"@vue/reactivity-transform": "3.3.0-alpha.6",
40-
"@vue/shared": "3.3.0-alpha.6",
36+
"@vue/compiler-core": "3.3.0-alpha.7",
37+
"@vue/compiler-dom": "3.3.0-alpha.7",
38+
"@vue/compiler-ssr": "3.3.0-alpha.7",
39+
"@vue/reactivity-transform": "3.3.0-alpha.7",
40+
"@vue/shared": "3.3.0-alpha.7",
4141
"estree-walker": "^2.0.2",
4242
"magic-string": "^0.30.0",
4343
"postcss": "^8.1.10",

packages/compiler-ssr/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-ssr",
3-
"version": "3.3.0-alpha.6",
3+
"version": "3.3.0-alpha.7",
44
"description": "@vue/compiler-ssr",
55
"main": "dist/compiler-ssr.cjs.js",
66
"types": "dist/compiler-ssr.d.ts",
@@ -28,7 +28,7 @@
2828
},
2929
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-ssr#readme",
3030
"dependencies": {
31-
"@vue/shared": "3.3.0-alpha.6",
32-
"@vue/compiler-dom": "3.3.0-alpha.6"
31+
"@vue/shared": "3.3.0-alpha.7",
32+
"@vue/compiler-dom": "3.3.0-alpha.7"
3333
}
3434
}

packages/dts-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"dependencies": {
55
"vue": "workspace:*"
66
},
7-
"version": "3.3.0-alpha.6"
7+
"version": "3.3.0-alpha.7"
88
}

packages/reactivity-transform/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity-transform",
3-
"version": "3.3.0-alpha.6",
3+
"version": "3.3.0-alpha.7",
44
"description": "@vue/reactivity-transform",
55
"main": "dist/reactivity-transform.cjs.js",
66
"files": [
@@ -29,8 +29,8 @@
2929
"homepage": "https://github.com/vuejs/core/tree/dev/packages/reactivity-transform#readme",
3030
"dependencies": {
3131
"@babel/parser": "^7.20.15",
32-
"@vue/compiler-core": "3.3.0-alpha.6",
33-
"@vue/shared": "3.3.0-alpha.6",
32+
"@vue/compiler-core": "3.3.0-alpha.7",
33+
"@vue/shared": "3.3.0-alpha.7",
3434
"estree-walker": "^2.0.2",
3535
"magic-string": "^0.30.0"
3636
},

packages/reactivity/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity",
3-
"version": "3.3.0-alpha.6",
3+
"version": "3.3.0-alpha.7",
44
"description": "@vue/reactivity",
55
"main": "index.js",
66
"module": "dist/reactivity.esm-bundler.js",
@@ -36,6 +36,6 @@
3636
},
3737
"homepage": "https://github.com/vuejs/core/tree/main/packages/reactivity#readme",
3838
"dependencies": {
39-
"@vue/shared": "3.3.0-alpha.6"
39+
"@vue/shared": "3.3.0-alpha.7"
4040
}
4141
}

packages/runtime-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-core",
3-
"version": "3.3.0-alpha.6",
3+
"version": "3.3.0-alpha.7",
44
"description": "@vue/runtime-core",
55
"main": "index.js",
66
"module": "dist/runtime-core.esm-bundler.js",
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
3434
"dependencies": {
35-
"@vue/shared": "3.3.0-alpha.6",
36-
"@vue/reactivity": "3.3.0-alpha.6"
35+
"@vue/shared": "3.3.0-alpha.7",
36+
"@vue/reactivity": "3.3.0-alpha.7"
3737
}
3838
}

0 commit comments

Comments
 (0)