Skip to content

Commit 681ac7c

Browse files
committed
release: v3.3.0-alpha.9
1 parent 32b91db commit 681ac7c

File tree

20 files changed

+98
-72
lines changed

20 files changed

+98
-72
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# [3.3.0-alpha.9](https://github.com/vuejs/core/compare/v3.3.0-alpha.8...v3.3.0-alpha.9) (2023-04-08)
2+
3+
4+
### Bug Fixes
5+
6+
* **compiler-sfc:** accept `StringLiteral` node in `defineEmit` tuple syntax ([#8041](https://github.com/vuejs/core/issues/8041)) ([3ccbea0](https://github.com/vuejs/core/commit/3ccbea08e09217b50a410d7b49ebb138e0c4c1e7)), closes [#8040](https://github.com/vuejs/core/issues/8040)
7+
* **compiler-sfc:** fix binding type for constants when hoistStatic is disabled ([#8029](https://github.com/vuejs/core/issues/8029)) ([f7f4624](https://github.com/vuejs/core/commit/f7f4624191bbdc09600dbb0eb048b947c3a4f761))
8+
* **compiler-sfc:** skip empty `defineOptions` and support TypeScript type assertions ([#8028](https://github.com/vuejs/core/issues/8028)) ([9557529](https://github.com/vuejs/core/commit/955752951e1d31b90d817bd20830fe3f89018771))
9+
* **compiler-ssr:** disable v-once transform in ssr vdom fallback branch ([05f94cf](https://github.com/vuejs/core/commit/05f94cf7b01dd05ed7d3170916a38b175d5df292)), closes [#7644](https://github.com/vuejs/core/issues/7644)
10+
* **types:** improve defineProps return type with generic arguments ([91a931a](https://github.com/vuejs/core/commit/91a931ae8707b8d43f10216e1ce8e18b12158f99))
11+
* **types:** more public type argument order fix ([af563bf](https://github.com/vuejs/core/commit/af563bf428200367b6f5bb7944f690c85d810202))
12+
* **types:** retain type parameters order for public types ([bdf557f](https://github.com/vuejs/core/commit/bdf557f6f233c039fff8007b1b16aec00c4e68aa))
13+
14+
15+
### Features
16+
17+
* **app:** app.runWithContext() ([#7451](https://github.com/vuejs/core/issues/7451)) ([869f3fb](https://github.com/vuejs/core/commit/869f3fb93e61400be4fd925e0850c2b1564749e2))
18+
* **sfc:** introduce `defineModel` macro and `useModel` helper ([#8018](https://github.com/vuejs/core/issues/8018)) ([14f3d74](https://github.com/vuejs/core/commit/14f3d747a34d45415b0036b274517d70a27ec0d3))
19+
20+
21+
### Reverts
22+
23+
* Revert "chore: remove unused args passed to ssrRender" ([b117b88](https://github.com/vuejs/core/commit/b117b8844881a732a021432066230ff2215049ea))
24+
25+
26+
127
# [3.3.0-alpha.8](https://github.com/vuejs/core/compare/v3.3.0-alpha.7...v3.3.0-alpha.8) (2023-04-04)
228

329

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.8",
3+
"version": "3.3.0-alpha.9",
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.8",
3+
"version": "3.3.0-alpha.9",
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.8",
36+
"@vue/shared": "3.3.0-alpha.9",
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.8",
3+
"version": "3.3.0-alpha.9",
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.8",
41-
"@vue/compiler-core": "3.3.0-alpha.8"
40+
"@vue/shared": "3.3.0-alpha.9",
41+
"@vue/compiler-core": "3.3.0-alpha.9"
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.8",
3+
"version": "3.3.0-alpha.9",
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.8",
37-
"@vue/compiler-dom": "3.3.0-alpha.8",
38-
"@vue/compiler-ssr": "3.3.0-alpha.8",
39-
"@vue/reactivity-transform": "3.3.0-alpha.8",
40-
"@vue/shared": "3.3.0-alpha.8",
36+
"@vue/compiler-core": "3.3.0-alpha.9",
37+
"@vue/compiler-dom": "3.3.0-alpha.9",
38+
"@vue/compiler-ssr": "3.3.0-alpha.9",
39+
"@vue/reactivity-transform": "3.3.0-alpha.9",
40+
"@vue/shared": "3.3.0-alpha.9",
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.8",
3+
"version": "3.3.0-alpha.9",
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.8",
32-
"@vue/compiler-dom": "3.3.0-alpha.8"
31+
"@vue/shared": "3.3.0-alpha.9",
32+
"@vue/compiler-dom": "3.3.0-alpha.9"
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.8"
7+
"version": "3.3.0-alpha.9"
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.8",
3+
"version": "3.3.0-alpha.9",
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.8",
33-
"@vue/shared": "3.3.0-alpha.8",
32+
"@vue/compiler-core": "3.3.0-alpha.9",
33+
"@vue/shared": "3.3.0-alpha.9",
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.8",
3+
"version": "3.3.0-alpha.9",
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.8"
39+
"@vue/shared": "3.3.0-alpha.9"
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.8",
3+
"version": "3.3.0-alpha.9",
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.8",
36-
"@vue/reactivity": "3.3.0-alpha.8"
35+
"@vue/shared": "3.3.0-alpha.9",
36+
"@vue/reactivity": "3.3.0-alpha.9"
3737
}
3838
}

packages/runtime-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/runtime-dom",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"description": "@vue/runtime-dom",
55
"main": "index.js",
66
"module": "dist/runtime-dom.esm-bundler.js",
@@ -35,8 +35,8 @@
3535
},
3636
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-dom#readme",
3737
"dependencies": {
38-
"@vue/shared": "3.3.0-alpha.8",
39-
"@vue/runtime-core": "3.3.0-alpha.8",
38+
"@vue/shared": "3.3.0-alpha.9",
39+
"@vue/runtime-core": "3.3.0-alpha.9",
4040
"csstype": "^3.1.1"
4141
}
4242
}

packages/runtime-test/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-test",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"description": "@vue/runtime-test",
55
"private": true,
66
"main": "index.js",
@@ -25,7 +25,7 @@
2525
},
2626
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-test#readme",
2727
"dependencies": {
28-
"@vue/shared": "3.3.0-alpha.8",
29-
"@vue/runtime-core": "3.3.0-alpha.8"
28+
"@vue/shared": "3.3.0-alpha.9",
29+
"@vue/runtime-core": "3.3.0-alpha.9"
3030
}
3131
}

packages/server-renderer/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/server-renderer",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"description": "@vue/server-renderer",
55
"main": "index.js",
66
"module": "dist/server-renderer.esm-bundler.js",
@@ -32,10 +32,10 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/server-renderer#readme",
3434
"peerDependencies": {
35-
"vue": "3.3.0-alpha.8"
35+
"vue": "3.3.0-alpha.9"
3636
},
3737
"dependencies": {
38-
"@vue/shared": "3.3.0-alpha.8",
39-
"@vue/compiler-ssr": "3.3.0-alpha.8"
38+
"@vue/shared": "3.3.0-alpha.9",
39+
"@vue/compiler-ssr": "3.3.0-alpha.9"
4040
}
4141
}

packages/sfc-playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/sfc-playground",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"private": true,
55
"scripts": {
66
"dev": "vite",

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/shared",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"description": "internal utils shared across @vue packages",
55
"main": "index.js",
66
"module": "dist/shared.esm-bundler.js",

packages/size-check/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/size-check",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"private": true,
55
"scripts": {
66
"build": "vite build"

packages/template-explorer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/template-explorer",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"private": true,
55
"buildOptions": {
66
"formats": [

packages/vue-compat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compat",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"description": "Vue 3 compatibility build for Vue 2",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -43,6 +43,6 @@
4343
"source-map": "^0.6.1"
4444
},
4545
"peerDependencies": {
46-
"vue": "3.3.0-alpha.8"
46+
"vue": "3.3.0-alpha.9"
4747
}
4848
}

packages/vue/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue",
3-
"version": "3.3.0-alpha.8",
3+
"version": "3.3.0-alpha.9",
44
"description": "The progressive JavaScript framework for building modern web UI.",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -81,10 +81,10 @@
8181
},
8282
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue#readme",
8383
"dependencies": {
84-
"@vue/shared": "3.3.0-alpha.8",
85-
"@vue/compiler-dom": "3.3.0-alpha.8",
86-
"@vue/runtime-dom": "3.3.0-alpha.8",
87-
"@vue/compiler-sfc": "3.3.0-alpha.8",
88-
"@vue/server-renderer": "3.3.0-alpha.8"
84+
"@vue/shared": "3.3.0-alpha.9",
85+
"@vue/compiler-dom": "3.3.0-alpha.9",
86+
"@vue/runtime-dom": "3.3.0-alpha.9",
87+
"@vue/compiler-sfc": "3.3.0-alpha.9",
88+
"@vue/server-renderer": "3.3.0-alpha.9"
8989
}
9090
}

0 commit comments

Comments
 (0)