Skip to content

Commit 312513d

Browse files
committed
release: v3.0.0-alpha.7
1 parent e42d6b0 commit 312513d

File tree

15 files changed

+58
-26
lines changed

15 files changed

+58
-26
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# [3.0.0-alpha.7](https://github.com/vuejs/vue-next/compare/v3.0.0-alpha.6...v3.0.0-alpha.7) (2020-02-26)
2+
3+
4+
### Bug Fixes
5+
6+
* **renderSlot:** set slot render as a STABLE_FRAGMENT ([#776](https://github.com/vuejs/vue-next/issues/776)) ([8cb0b83](https://github.com/vuejs/vue-next/commit/8cb0b8308801159177ec16ab5a3e23672c4c1d00)), closes [#766](https://github.com/vuejs/vue-next/issues/766)
7+
* **runtime-core:** fix slot fallback + slots typing ([4a5b91b](https://github.com/vuejs/vue-next/commit/4a5b91bd1faec76bbaa0522b095f4a07ca88a9e5)), closes [#773](https://github.com/vuejs/vue-next/issues/773)
8+
* **runtime-core:** make watchEffect ignore deep option ([#765](https://github.com/vuejs/vue-next/issues/765)) ([19a799c](https://github.com/vuejs/vue-next/commit/19a799c28b149b14e85d9e2081fa65ed58d108ba))
9+
* **runtime-core:** set appContext.provides to Object.create(null) ([#781](https://github.com/vuejs/vue-next/issues/781)) ([04f83fa](https://github.com/vuejs/vue-next/commit/04f83fa6810e07915e98b94c954ff0c1859aaa49))
10+
* **template-explorer:** rename watch -> watchEffect ([#780](https://github.com/vuejs/vue-next/issues/780)) ([59393dd](https://github.com/vuejs/vue-next/commit/59393dd75766720330cb69e22086c97a392dbbe4))
11+
* **template-ref:** fix string template refs inside slots ([3eab143](https://github.com/vuejs/vue-next/commit/3eab1438432a3bab15ccf2f6092fc3e4355f3cdd))
12+
* **types:** ref value type unwrapping should happen at creation time ([d4c6957](https://github.com/vuejs/vue-next/commit/d4c6957e2d8ac7920a649f3a3576689cd5e1099f))
13+
* **types:** shallowRef should not unwrap value type ([3206e5d](https://github.com/vuejs/vue-next/commit/3206e5dfe58fd0e93644d13929558d71c5171888))
14+
15+
16+
### Code Refactoring
17+
18+
* **directives:** remove binding.instance ([52cc7e8](https://github.com/vuejs/vue-next/commit/52cc7e823148289b3dcdcb6b521984ab815fce79))
19+
20+
21+
### BREAKING CHANGES
22+
23+
* **directives:** custom directive bindings no longer expose instance
24+
25+
This is a rarely used property that creates extra complexity in
26+
ensuring it points to the correct instance. From a design
27+
perspective, a custom directive should be scoped to the element and
28+
data it is bound to and should not have access to the entire
29+
instance in the first place.
30+
31+
32+
133
# [3.0.0-alpha.6](https://github.com/vuejs/vue-next/compare/v3.0.0-alpha.5...v3.0.0-alpha.6) (2020-02-22)
234

335

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.6",
3+
"version": "3.0.0-alpha.7",
44
"workspaces": [
55
"packages/*"
66
],

packages/compiler-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-core",
3-
"version": "3.0.0-alpha.6",
3+
"version": "3.0.0-alpha.7",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",

packages/compiler-dom/package.json

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

packages/compiler-sfc/package.json

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

packages/compiler-ssr/package.json

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

packages/reactivity/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity",
3-
"version": "3.0.0-alpha.6",
3+
"version": "3.0.0-alpha.7",
44
"description": "@vue/reactivity",
55
"main": "index.js",
66
"module": "dist/reactivity.esm-bundler.js",

packages/runtime-core/package.json

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

packages/runtime-dom/package.json

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

packages/runtime-test/package.json

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

packages/server-renderer/package.json

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

packages/shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@vue/shared",
3-
"version": "3.0.0-alpha.6",
3+
"version": "3.0.0-alpha.7",
44
"private": true
55
}

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.6",
3+
"version": "3.0.0-alpha.7",
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.6",
3+
"version": "3.0.0-alpha.7",
44
"private": true,
55
"buildOptions": {
66
"formats": [

packages/vue/package.json

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

0 commit comments

Comments
 (0)