Skip to content

Commit 3c828f3

Browse files
committed
release: v3.4.0-alpha.1
1 parent 16e06ca commit 3c828f3

File tree

20 files changed

+87
-74
lines changed

20 files changed

+87
-74
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# [3.4.0-alpha.1](https://github.com/vuejs/core/compare/v3.3.7...v3.4.0-alpha.1) (2023-10-28)
2+
3+
4+
### Features
5+
6+
* **compiler-core:** export error message ([#8729](https://github.com/vuejs/core/issues/8729)) ([f7e80ee](https://github.com/vuejs/core/commit/f7e80ee4a065a9eaba98720abf415d9e87756cbd))
7+
* **compiler-sfc:** expose resolve type-based props and emits ([#8874](https://github.com/vuejs/core/issues/8874)) ([9e77580](https://github.com/vuejs/core/commit/9e77580c0c2f0d977bd0031a1d43cc334769d433))
8+
* export runtime error strings ([#9301](https://github.com/vuejs/core/issues/9301)) ([feb2f2e](https://github.com/vuejs/core/commit/feb2f2edce2d91218a5e9a52c81e322e4033296b))
9+
* **reactivity:** more efficient reactivity system ([#5912](https://github.com/vuejs/core/issues/5912)) ([16e06ca](https://github.com/vuejs/core/commit/16e06ca08f5a1e2af3fc7fb35de153dbe0c3087d)), closes [#311](https://github.com/vuejs/core/issues/311) [#1811](https://github.com/vuejs/core/issues/1811) [#6018](https://github.com/vuejs/core/issues/6018) [#7160](https://github.com/vuejs/core/issues/7160) [#8714](https://github.com/vuejs/core/issues/8714) [#9149](https://github.com/vuejs/core/issues/9149) [#9419](https://github.com/vuejs/core/issues/9419) [#9464](https://github.com/vuejs/core/issues/9464)
10+
* **runtime-core:** add `once` option to watch ([#9034](https://github.com/vuejs/core/issues/9034)) ([a645e7a](https://github.com/vuejs/core/commit/a645e7aa51006516ba668b3a4365d296eb92ee7d))
11+
12+
13+
114
## [3.3.7](https://github.com/vuejs/core/compare/v3.3.6...v3.3.7) (2023-10-24)
215

316

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.7",
3+
"version": "3.4.0-alpha.1",
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.7",
3+
"version": "3.4.0-alpha.1",
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.23.0",
36-
"@vue/shared": "3.3.7",
36+
"@vue/shared": "3.4.0-alpha.1",
3737
"estree-walker": "^2.0.2",
3838
"source-map-js": "^1.0.2"
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.7",
3+
"version": "3.4.0-alpha.1",
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.7",
41-
"@vue/compiler-core": "3.3.7"
40+
"@vue/shared": "3.4.0-alpha.1",
41+
"@vue/compiler-core": "3.4.0-alpha.1"
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.7",
3+
"version": "3.4.0-alpha.1",
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.23.0",
36-
"@vue/compiler-core": "3.3.7",
37-
"@vue/compiler-dom": "3.3.7",
38-
"@vue/compiler-ssr": "3.3.7",
39-
"@vue/reactivity-transform": "3.3.7",
40-
"@vue/shared": "3.3.7",
36+
"@vue/compiler-core": "3.4.0-alpha.1",
37+
"@vue/compiler-dom": "3.4.0-alpha.1",
38+
"@vue/compiler-ssr": "3.4.0-alpha.1",
39+
"@vue/reactivity-transform": "3.4.0-alpha.1",
40+
"@vue/shared": "3.4.0-alpha.1",
4141
"estree-walker": "^2.0.2",
4242
"magic-string": "^0.30.5",
4343
"postcss": "^8.4.31",

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.7",
3+
"version": "3.4.0-alpha.1",
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.7",
32-
"@vue/compiler-dom": "3.3.7"
31+
"@vue/shared": "3.4.0-alpha.1",
32+
"@vue/compiler-dom": "3.4.0-alpha.1"
3333
}
3434
}

packages/dts-built-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"@vue/reactivity": "workspace:*",
88
"vue": "workspace:*"
99
},
10-
"version": "3.3.7"
10+
"version": "3.4.0-alpha.1"
1111
}

packages/dts-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"vue": "workspace:*",
66
"@vue/dts-built-test": "workspace:*"
77
},
8-
"version": "3.3.7"
8+
"version": "3.4.0-alpha.1"
99
}

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.7",
3+
"version": "3.4.0-alpha.1",
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.23.0",
32-
"@vue/compiler-core": "3.3.7",
33-
"@vue/shared": "3.3.7",
32+
"@vue/compiler-core": "3.4.0-alpha.1",
33+
"@vue/shared": "3.4.0-alpha.1",
3434
"estree-walker": "^2.0.2",
3535
"magic-string": "^0.30.5"
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.7",
3+
"version": "3.4.0-alpha.1",
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.7"
39+
"@vue/shared": "3.4.0-alpha.1"
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.7",
3+
"version": "3.4.0-alpha.1",
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.7",
36-
"@vue/reactivity": "3.3.7"
35+
"@vue/shared": "3.4.0-alpha.1",
36+
"@vue/reactivity": "3.4.0-alpha.1"
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.7",
3+
"version": "3.4.0-alpha.1",
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.7",
39-
"@vue/runtime-core": "3.3.7",
38+
"@vue/shared": "3.4.0-alpha.1",
39+
"@vue/runtime-core": "3.4.0-alpha.1",
4040
"csstype": "^3.1.2"
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.7",
3+
"version": "3.4.0-alpha.1",
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.7",
29-
"@vue/runtime-core": "3.3.7"
28+
"@vue/shared": "3.4.0-alpha.1",
29+
"@vue/runtime-core": "3.4.0-alpha.1"
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.7",
3+
"version": "3.4.0-alpha.1",
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.7"
35+
"vue": "3.4.0-alpha.1"
3636
},
3737
"dependencies": {
38-
"@vue/shared": "3.3.7",
39-
"@vue/compiler-ssr": "3.3.7"
38+
"@vue/shared": "3.4.0-alpha.1",
39+
"@vue/compiler-ssr": "3.4.0-alpha.1"
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.7",
3+
"version": "3.4.0-alpha.1",
44
"type": "module",
55
"private": true,
66
"scripts": {

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.7",
3+
"version": "3.4.0-alpha.1",
44
"description": "internal utils shared across @vue packages",
55
"main": "index.js",
66
"module": "dist/shared.esm-bundler.js",

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.7",
3+
"version": "3.4.0-alpha.1",
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.7",
3+
"version": "3.4.0-alpha.1",
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-js": "^1.0.2"
4444
},
4545
"peerDependencies": {
46-
"vue": "3.3.7"
46+
"vue": "3.4.0-alpha.1"
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.7",
3+
"version": "3.4.0-alpha.1",
44
"description": "The progressive JavaScript framework for building modern web UI.",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -96,11 +96,11 @@
9696
},
9797
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue#readme",
9898
"dependencies": {
99-
"@vue/shared": "3.3.7",
100-
"@vue/compiler-dom": "3.3.7",
101-
"@vue/runtime-dom": "3.3.7",
102-
"@vue/compiler-sfc": "3.3.7",
103-
"@vue/server-renderer": "3.3.7"
99+
"@vue/shared": "3.4.0-alpha.1",
100+
"@vue/compiler-dom": "3.4.0-alpha.1",
101+
"@vue/runtime-dom": "3.4.0-alpha.1",
102+
"@vue/compiler-sfc": "3.4.0-alpha.1",
103+
"@vue/server-renderer": "3.4.0-alpha.1"
104104
},
105105
"peerDependencies": {
106106
"typescript": "*"

0 commit comments

Comments
 (0)