Skip to content

Commit de81faf

Browse files
committed
release: v3.0.0-alpha.10
1 parent c403c39 commit de81faf

File tree

15 files changed

+72
-37
lines changed

15 files changed

+72
-37
lines changed

CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# [3.0.0-alpha.10](https://github.com/vuejs/vue-next/compare/v3.0.0-alpha.9...v3.0.0-alpha.10) (2020-03-24)
2+
3+
4+
### Bug Fixes
5+
6+
* fix option merge global mixins presence check ([10ad965](https://github.com/vuejs/vue-next/commit/10ad965100a88e28cb528690f2e09070fefc8872))
7+
* **compiler-core:** assign patchFlag for template v-if fragment ([a1da9c2](https://github.com/vuejs/vue-next/commit/a1da9c28a0a7030124b1deb9369685760c67be47)), closes [#850](https://github.com/vuejs/vue-next/issues/850)
8+
* **compiler-core:** support interpolation in RCDATA mode (e.g. textarea) ([0831b98](https://github.com/vuejs/vue-next/commit/0831b98eac344d9bdfd6f6e922902adb91ea180a))
9+
* **keep-alive:** should update re-activated component with latest props ([1237387](https://github.com/vuejs/vue-next/commit/123738727a0af54fd632bf838dc3aa024722ee41))
10+
* **reactivity:** should not observe frozen objects ([1b2149d](https://github.com/vuejs/vue-next/commit/1b2149dbb2dd224d01e90c1a9332bfe67aa465ce)), closes [#867](https://github.com/vuejs/vue-next/issues/867)
11+
* **reactivity:** should not trigger map keys iteration when keys did not change ([45ba06a](https://github.com/vuejs/vue-next/commit/45ba06ac5f49876b4f05e5996f595b2c4a761f47)), closes [#877](https://github.com/vuejs/vue-next/issues/877)
12+
* **runtime-core:** fix boolean props validation ([3b282e7](https://github.com/vuejs/vue-next/commit/3b282e7e3c96786af0a5ff61822882d1ed3f4db3))
13+
* **runtime-dom:** invalid lineGradient svg tag ([#863](https://github.com/vuejs/vue-next/issues/863)) ([d425818](https://github.com/vuejs/vue-next/commit/d425818901428ff919a0179fc910410cbcfa119b)), closes [#862](https://github.com/vuejs/vue-next/issues/862)
14+
* **TransitionGroup:** ignore comment node when warn (fix[#869](https://github.com/vuejs/vue-next/issues/869)) ([#875](https://github.com/vuejs/vue-next/issues/875)) ([0dba5d4](https://github.com/vuejs/vue-next/commit/0dba5d44e60d33b909f4e4d05663c7ddf746a1f2))
15+
* do not drop SFC runtime behavior code in global builds ([4c1a193](https://github.com/vuejs/vue-next/commit/4c1a193617bee8ace6fad289b78e9d2557cb081e)), closes [#873](https://github.com/vuejs/vue-next/issues/873)
16+
* dynamic component fallback to native element ([f529dbd](https://github.com/vuejs/vue-next/commit/f529dbde236e9eaedbded78e926951a189234f9c)), closes [#870](https://github.com/vuejs/vue-next/issues/870)
17+
* **runtime-core:** fix component proxy props presence check ([b3890a9](https://github.com/vuejs/vue-next/commit/b3890a93e39342fd16e5fd72c59f361fc211309c)), closes [#864](https://github.com/vuejs/vue-next/issues/864)
18+
* **suspense:** clear effects on suspense resolve ([ebc1ca8](https://github.com/vuejs/vue-next/commit/ebc1ca8eff82789987c09a9f6a934898b00153ff))
19+
* **transition:** fix duration prop validation ([0dc2478](https://github.com/vuejs/vue-next/commit/0dc24785699101fa24d2a68786feaaac8a887520)), closes [#868](https://github.com/vuejs/vue-next/issues/868)
20+
21+
22+
### Features
23+
24+
* **asyncComponent:** SSR/hydration support for async component ([cba2f1a](https://github.com/vuejs/vue-next/commit/cba2f1aadbd0d4ae246040ecd5a91d8dd4e8fd1a))
25+
* **runtime-core:** async component support ([c3bb316](https://github.com/vuejs/vue-next/commit/c3bb3169f497fc834654d8ae700f18b1a6613127))
26+
* **runtime-core:** support `config.optionMergeStrategies` ([528621b](https://github.com/vuejs/vue-next/commit/528621ba41b1d7113940077574217d01d182b35f))
27+
* add hook for transforming h's arguments ([#851](https://github.com/vuejs/vue-next/issues/851)) ([b7d1e0f](https://github.com/vuejs/vue-next/commit/b7d1e0fa2ffe4561a589580eca6e92171c311347))
28+
29+
30+
### Performance Improvements
31+
32+
* **transform-vif:** don't need to createBlock for a component ([#853](https://github.com/vuejs/vue-next/issues/853)) ([a3601e9](https://github.com/vuejs/vue-next/commit/a3601e9fa73d10f524ed3bdf3ae44df8847c1230))
33+
34+
35+
136
# [3.0.0-alpha.9](https://github.com/vuejs/vue-next/compare/v3.0.0-alpha.8...v3.0.0-alpha.9) (2020-03-16)
237

338

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"workspaces": [
55
"packages/*"
66
],

packages/compiler-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-core",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",
@@ -30,7 +30,7 @@
3030
},
3131
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-core#readme",
3232
"dependencies": {
33-
"@vue/shared": "3.0.0-alpha.9",
33+
"@vue/shared": "3.0.0-alpha.10",
3434
"@babel/parser": "^7.8.6",
3535
"@babel/types": "^7.8.6",
3636
"estree-walker": "^0.8.1",

packages/compiler-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-dom",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/compiler-dom",
55
"main": "index.js",
66
"module": "dist/compiler-dom.esm-bundler.js",
@@ -34,7 +34,7 @@
3434
},
3535
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-dom#readme",
3636
"dependencies": {
37-
"@vue/shared": "3.0.0-alpha.9",
38-
"@vue/compiler-core": "3.0.0-alpha.9"
37+
"@vue/shared": "3.0.0-alpha.10",
38+
"@vue/compiler-core": "3.0.0-alpha.10"
3939
}
4040
}

packages/compiler-sfc/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-sfc",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/compiler-sfc",
55
"main": "dist/compiler-sfc.cjs.js",
66
"types": "dist/compiler-sfc.d.ts",
@@ -27,13 +27,13 @@
2727
},
2828
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-sfc#readme",
2929
"peerDependencies": {
30-
"vue": "3.0.0-alpha.9"
30+
"vue": "3.0.0-alpha.10"
3131
},
3232
"dependencies": {
33-
"@vue/shared": "3.0.0-alpha.9",
34-
"@vue/compiler-core": "3.0.0-alpha.9",
35-
"@vue/compiler-dom": "3.0.0-alpha.9",
36-
"@vue/compiler-ssr": "3.0.0-alpha.9",
33+
"@vue/shared": "3.0.0-alpha.10",
34+
"@vue/compiler-core": "3.0.0-alpha.10",
35+
"@vue/compiler-dom": "3.0.0-alpha.10",
36+
"@vue/compiler-ssr": "3.0.0-alpha.10",
3737
"consolidate": "^0.15.1",
3838
"hash-sum": "^2.0.0",
3939
"lru-cache": "^5.1.1",

packages/compiler-ssr/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-ssr",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/compiler-ssr",
55
"main": "dist/compiler-ssr.cjs.js",
66
"types": "dist/compiler-ssr.d.ts",
@@ -27,7 +27,7 @@
2727
},
2828
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-ssr#readme",
2929
"dependencies": {
30-
"@vue/shared": "3.0.0-alpha.9",
31-
"@vue/compiler-dom": "3.0.0-alpha.9"
30+
"@vue/shared": "3.0.0-alpha.10",
31+
"@vue/compiler-dom": "3.0.0-alpha.10"
3232
}
3333
}

packages/reactivity/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/reactivity",
55
"main": "index.js",
66
"module": "dist/reactivity.esm-bundler.js",
@@ -34,6 +34,6 @@
3434
},
3535
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/reactivity#readme",
3636
"dependencies": {
37-
"@vue/shared": "3.0.0-alpha.9"
37+
"@vue/shared": "3.0.0-alpha.10"
3838
}
3939
}

packages/runtime-core/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-core",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/runtime-core",
55
"main": "index.js",
66
"module": "dist/runtime-core.esm-bundler.js",
@@ -31,7 +31,7 @@
3131
},
3232
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-core#readme",
3333
"dependencies": {
34-
"@vue/shared": "3.0.0-alpha.9",
35-
"@vue/reactivity": "3.0.0-alpha.9"
34+
"@vue/shared": "3.0.0-alpha.10",
35+
"@vue/reactivity": "3.0.0-alpha.10"
3636
}
3737
}

packages/runtime-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-dom",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/runtime-dom",
55
"main": "index.js",
66
"module": "dist/runtime-dom.esm-bundler.js",
@@ -37,8 +37,8 @@
3737
},
3838
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-dom#readme",
3939
"dependencies": {
40-
"@vue/shared": "3.0.0-alpha.9",
41-
"@vue/runtime-core": "3.0.0-alpha.9",
40+
"@vue/shared": "3.0.0-alpha.10",
41+
"@vue/runtime-core": "3.0.0-alpha.10",
4242
"csstype": "^2.6.8"
4343
}
4444
}

packages/runtime-test/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-test",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/runtime-test",
55
"private": true,
66
"main": "index.js",
@@ -30,7 +30,7 @@
3030
},
3131
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-test#readme",
3232
"dependencies": {
33-
"@vue/shared": "3.0.0-alpha.9",
34-
"@vue/runtime-core": "3.0.0-alpha.9"
33+
"@vue/shared": "3.0.0-alpha.10",
34+
"@vue/runtime-core": "3.0.0-alpha.10"
3535
}
3636
}

packages/server-renderer/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/server-renderer",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "@vue/server-renderer",
55
"main": "index.js",
66
"types": "dist/server-renderer.d.ts",
@@ -27,10 +27,10 @@
2727
},
2828
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/server-renderer#readme",
2929
"peerDependencies": {
30-
"vue": "3.0.0-alpha.9"
30+
"vue": "3.0.0-alpha.10"
3131
},
3232
"dependencies": {
33-
"@vue/shared": "3.0.0-alpha.9",
34-
"@vue/compiler-ssr": "3.0.0-alpha.9"
33+
"@vue/shared": "3.0.0-alpha.10",
34+
"@vue/compiler-ssr": "3.0.0-alpha.10"
3535
}
3636
}

packages/shared/package.json

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

packages/size-check/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/size-check",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"private": true,
55
"buildOptions": {
66
"name": "Vue",

packages/template-explorer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/template-explorer",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"private": true,
55
"buildOptions": {
66
"formats": [

packages/vue/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue",
3-
"version": "3.0.0-alpha.9",
3+
"version": "3.0.0-alpha.10",
44
"description": "vue",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -36,9 +36,9 @@
3636
},
3737
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/vue#readme",
3838
"dependencies": {
39-
"@vue/shared": "3.0.0-alpha.9",
40-
"@vue/compiler-dom": "3.0.0-alpha.9",
41-
"@vue/runtime-dom": "3.0.0-alpha.9"
39+
"@vue/shared": "3.0.0-alpha.10",
40+
"@vue/compiler-dom": "3.0.0-alpha.10",
41+
"@vue/runtime-dom": "3.0.0-alpha.10"
4242
},
4343
"devDependencies": {
4444
"lodash": "^4.17.15",

0 commit comments

Comments
 (0)