Skip to content

Commit 036914c

Browse files
committed
release: v3.3.0-alpha.8
1 parent 6003ef7 commit 036914c

File tree

20 files changed

+81
-72
lines changed

20 files changed

+81
-72
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# [3.3.0-alpha.8](https://github.com/vuejs/core/compare/v3.3.0-alpha.7...v3.3.0-alpha.8) (2023-04-04)
2+
3+
4+
### Bug Fixes
5+
6+
* **compiler-sfc:** check binding is prop before erroring ([f3145a9](https://github.com/vuejs/core/commit/f3145a915aaec11c915f1df258c5209ae4782bcc)), closes [#8017](https://github.com/vuejs/core/issues/8017)
7+
8+
9+
110
# [3.3.0-alpha.7](https://github.com/vuejs/core/compare/v3.3.0-alpha.6...v3.3.0-alpha.7) (2023-04-03)
211

312

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

0 commit comments

Comments
 (0)