Skip to content

Commit 11654a6

Browse files
committed
release: v3.0.0-alpha.13
1 parent acfcc55 commit 11654a6

File tree

15 files changed

+87
-37
lines changed

15 files changed

+87
-37
lines changed

CHANGELOG.md

+50
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
# [3.0.0-alpha.13](https://github.com/vuejs/vue-next/compare/v3.0.0-alpha.12...v3.0.0-alpha.13) (2020-04-15)
2+
3+
4+
### Bug Fixes
5+
6+
* **compiler-core:** should not generate CLASS/STYLE patch flags on components ([a6e2b10](https://github.com/vuejs/vue-next/commit/a6e2b1052a4d461767147a6c13854fcb4f9509d2)), closes [#677](https://github.com/vuejs/vue-next/issues/677)
7+
* **runtime-core:** fix kebab-case props update ([7cbf684](https://github.com/vuejs/vue-next/commit/7cbf68461118ced0c7c6eb79a395ae2b148e3737)), closes [#955](https://github.com/vuejs/vue-next/issues/955)
8+
* **runtime-core:** should resolve value instead of delete for dynamic props with options ([c80b857](https://github.com/vuejs/vue-next/commit/c80b857eb5b19f48f498147479a779af9953be32))
9+
* **runtime-dom:** fix patching for attributes starting with `on` ([6eb3399](https://github.com/vuejs/vue-next/commit/6eb339931185a57cc36ddb6e12314a5283948169)), closes [#949](https://github.com/vuejs/vue-next/issues/949)
10+
* **runtime-dom:** should patch svg innerHtml ([#956](https://github.com/vuejs/vue-next/issues/956)) ([27b5c71](https://github.com/vuejs/vue-next/commit/27b5c71944637bc04d715382851cc63ca7efc47a))
11+
* **runtime-dom/v-on:** support event.stopImmediatePropagation on multiple listeners ([d45e475](https://github.com/vuejs/vue-next/commit/d45e47569d366b932c0e3461afc6478b45a4602d)), closes [#916](https://github.com/vuejs/vue-next/issues/916)
12+
* **scheduler:** sort jobs before flushing ([78977c3](https://github.com/vuejs/vue-next/commit/78977c399734da7c4f8d58f2ccd650533e89249f)), closes [#910](https://github.com/vuejs/vue-next/issues/910) [/github.com/vuejs/vue-next/issues/910#issuecomment-613097539](https://github.com//github.com/vuejs/vue-next/issues/910/issues/issuecomment-613097539)
13+
* **types:** UnwrapRef should bail on DOM element types ([#952](https://github.com/vuejs/vue-next/issues/952)) ([33ccfc0](https://github.com/vuejs/vue-next/commit/33ccfc0a8b69de13065c4b995f88722dd72a1ae9)), closes [#951](https://github.com/vuejs/vue-next/issues/951)
14+
15+
16+
### Code Refactoring
17+
18+
* **reactivity:** remove stale API `markReadonly` ([e8a866e](https://github.com/vuejs/vue-next/commit/e8a866ec9945ec0464035be4c4c58d6212080a50))
19+
* **runtime-core:** remove emit return value ([55566e8](https://github.com/vuejs/vue-next/commit/55566e8f520eee8a07b85221174989c47c443c35))
20+
21+
22+
### Features
23+
24+
* **reactivity:** add support for `customRef` API ([b83c580](https://github.com/vuejs/vue-next/commit/b83c5801315e5e28ac51ecff743206e665f4d868))
25+
* **reactivity:** add support for `toRef` API ([486dc18](https://github.com/vuejs/vue-next/commit/486dc188fe1593448d2bfb0c3c4c3c02b2d78ea4))
26+
* **runtime-core:** detect and warn against components made reactive ([2e06f5b](https://github.com/vuejs/vue-next/commit/2e06f5bbe84155588dea82d90822a41dc93d0688)), closes [#962](https://github.com/vuejs/vue-next/issues/962)
27+
* **runtime-core:** warn async data() ([3e7bb7d](https://github.com/vuejs/vue-next/commit/3e7bb7d110818d7b90ca4acc47afc30508f465b7))
28+
29+
30+
### Reverts
31+
32+
* Revert "feat(reactivity): add effect to public api (#909)" (#961) ([9e9d264](https://github.com/vuejs/vue-next/commit/9e9d2644127a17f770f325d1f1c88b12a34c8789)), closes [#909](https://github.com/vuejs/vue-next/issues/909) [#961](https://github.com/vuejs/vue-next/issues/961)
33+
34+
35+
### BREAKING CHANGES
36+
37+
* **reactivity:** `markReadonly` has been removed.
38+
* **runtime-dom:** Only props starting with `on` followed by an uppercase
39+
letter or a non-letter character are considered event listeners.
40+
* **runtime-core:** this.$emit() and setupContext.emit() no longer
41+
return values. For logic that relies on return value of listeners,
42+
the listener should be declared as an `onXXX` prop and be called
43+
directly. This still allows the parent component to pass in
44+
a handler using `v-on`, since `v-on:foo` internally compiles
45+
to `onFoo`.
46+
47+
ref: https://github.com/vuejs/rfcs/pull/16
48+
49+
50+
151
# [3.0.0-alpha.12](https://github.com/vuejs/vue-next/compare/v3.0.0-alpha.11...v3.0.0-alpha.12) (2020-04-08)
252

353

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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
33+
"@vue/shared": "3.0.0-alpha.13",
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
38-
"@vue/compiler-core": "3.0.0-alpha.12"
37+
"@vue/shared": "3.0.0-alpha.13",
38+
"@vue/compiler-core": "3.0.0-alpha.13"
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.12",
3+
"version": "3.0.0-alpha.13",
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.12"
30+
"vue": "3.0.0-alpha.13"
3131
},
3232
"dependencies": {
33-
"@vue/shared": "3.0.0-alpha.12",
34-
"@vue/compiler-core": "3.0.0-alpha.12",
35-
"@vue/compiler-dom": "3.0.0-alpha.12",
36-
"@vue/compiler-ssr": "3.0.0-alpha.12",
33+
"@vue/shared": "3.0.0-alpha.13",
34+
"@vue/compiler-core": "3.0.0-alpha.13",
35+
"@vue/compiler-dom": "3.0.0-alpha.13",
36+
"@vue/compiler-ssr": "3.0.0-alpha.13",
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
31-
"@vue/compiler-dom": "3.0.0-alpha.12"
30+
"@vue/shared": "3.0.0-alpha.13",
31+
"@vue/compiler-dom": "3.0.0-alpha.13"
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.12",
3+
"version": "3.0.0-alpha.13",
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.12"
37+
"@vue/shared": "3.0.0-alpha.13"
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
35-
"@vue/reactivity": "3.0.0-alpha.12"
34+
"@vue/shared": "3.0.0-alpha.13",
35+
"@vue/reactivity": "3.0.0-alpha.13"
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
41-
"@vue/runtime-core": "3.0.0-alpha.12",
40+
"@vue/shared": "3.0.0-alpha.13",
41+
"@vue/runtime-core": "3.0.0-alpha.13",
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
34-
"@vue/runtime-core": "3.0.0-alpha.12"
33+
"@vue/shared": "3.0.0-alpha.13",
34+
"@vue/runtime-core": "3.0.0-alpha.13"
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.12",
3+
"version": "3.0.0-alpha.13",
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.12"
30+
"vue": "3.0.0-alpha.13"
3131
},
3232
"dependencies": {
33-
"@vue/shared": "3.0.0-alpha.12",
34-
"@vue/compiler-ssr": "3.0.0-alpha.12"
33+
"@vue/shared": "3.0.0-alpha.13",
34+
"@vue/compiler-ssr": "3.0.0-alpha.13"
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
3+
"version": "3.0.0-alpha.13",
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.12",
40-
"@vue/compiler-dom": "3.0.0-alpha.12",
41-
"@vue/runtime-dom": "3.0.0-alpha.12"
39+
"@vue/shared": "3.0.0-alpha.13",
40+
"@vue/compiler-dom": "3.0.0-alpha.13",
41+
"@vue/runtime-dom": "3.0.0-alpha.13"
4242
},
4343
"devDependencies": {
4444
"lodash": "^4.17.15",

0 commit comments

Comments
 (0)