Skip to content

Commit 7753485

Browse files
committed
release: v3.0.0-rc.3
1 parent 615dccd commit 7753485

File tree

15 files changed

+60
-37
lines changed

15 files changed

+60
-37
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# [3.0.0-rc.3](https://github.com/vuejs/vue-next/compare/v3.0.0-rc.2...v3.0.0-rc.3) (2020-07-21)
2+
3+
4+
### Bug Fixes
5+
6+
* **build:** make transition tree-shakeable again ([ad199e1](https://github.com/vuejs/vue-next/commit/ad199e1a252f80c85a8e40a4b4539ad27c39505c))
7+
* **compiler-sfc:** `<style vars scoped>` prefixing should only apply to pre-transform source ([4951d43](https://github.com/vuejs/vue-next/commit/4951d4352605eb9f4bcbea40ecc68fc6cbc3dce2)), closes [#1623](https://github.com/vuejs/vue-next/issues/1623)
8+
* **compiler-sfc:** use correct importer with `useCssVars` ([#1658](https://github.com/vuejs/vue-next/issues/1658)) ([6f148d0](https://github.com/vuejs/vue-next/commit/6f148d0b9a0630dc87c741ed951c82b639e776b2))
9+
* **runtime-core:** do not use bail patchFlag on cloned vnodes ([6390ddf](https://github.com/vuejs/vue-next/commit/6390ddfb7d0ed83ac4bae15d0497cba4de3e1972)), closes [#1665](https://github.com/vuejs/vue-next/issues/1665)
10+
* **runtime-core:** fix attr fallthrough on compiled framgent w/ single static element + comments ([1af3531](https://github.com/vuejs/vue-next/commit/1af35317195772ea8f2728abc8f5ac159a5b7b75))
11+
* **v-model:** v-model listeners should not fallthrough to plain element root ([c852bf1](https://github.com/vuejs/vue-next/commit/c852bf18d7a51be0c3255357f0c30f39ae9bb540)), closes [#1643](https://github.com/vuejs/vue-next/issues/1643)
12+
* **watch:** fix watching reactive array ([#1656](https://github.com/vuejs/vue-next/issues/1656)) ([288b4ea](https://github.com/vuejs/vue-next/commit/288b4eab9e10187eb14d4d6d54dc9f077343a2a5)), closes [#1655](https://github.com/vuejs/vue-next/issues/1655)
13+
14+
15+
### Features
16+
17+
* **compiler-core/internal:** add `onContextCreated` option to `generate` ([#1672](https://github.com/vuejs/vue-next/issues/1672)) ([615dccd](https://github.com/vuejs/vue-next/commit/615dccd00e7d85a3f4b82e62d6cb6c41f167d8c6))
18+
* **runtime-core:** respect function name when using `defineComponent` function shorthand ([#1661](https://github.com/vuejs/vue-next/issues/1661)) ([304830a](https://github.com/vuejs/vue-next/commit/304830a764cd9f28098cfb0ac0e520e1bb2f57c7))
19+
* provide ability to overwrite feature flags in esm-bundler builds ([54727f9](https://github.com/vuejs/vue-next/commit/54727f9874abe8d0c99ee153d252269ae519b45d))
20+
* **computed:** add readonly flag if no setter is provided ([#1654](https://github.com/vuejs/vue-next/issues/1654)) ([dabdc5e](https://github.com/vuejs/vue-next/commit/dabdc5e115514f98b5f8559a3819e96416939f43))
21+
22+
23+
124
# [3.0.0-rc.2](https://github.com/vuejs/vue-next/compare/v3.0.0-rc.1...v3.0.0-rc.2) (2020-07-19)
225

326

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

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.0.0-rc.2",
3+
"version": "3.0.0-rc.3",
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-rc.2",
33+
"@vue/shared": "3.0.0-rc.3",
3434
"@babel/parser": "^7.10.4",
3535
"estree-walker": "^2.0.1",
3636
"source-map": "^0.6.1"

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.0.0-rc.2",
3+
"version": "3.0.0-rc.3",
44
"description": "@vue/compiler-dom",
55
"main": "index.js",
66
"module": "dist/compiler-dom.esm-bundler.js",
@@ -35,7 +35,7 @@
3535
},
3636
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-dom#readme",
3737
"dependencies": {
38-
"@vue/shared": "3.0.0-rc.2",
39-
"@vue/compiler-core": "3.0.0-rc.2"
38+
"@vue/shared": "3.0.0-rc.3",
39+
"@vue/compiler-core": "3.0.0-rc.3"
4040
}
4141
}

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.0.0-rc.2",
3+
"version": "3.0.0-rc.3",
44
"description": "@vue/compiler-sfc",
55
"main": "dist/compiler-sfc.cjs.js",
66
"types": "dist/compiler-sfc.d.ts",
@@ -31,14 +31,14 @@
3131
},
3232
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-sfc#readme",
3333
"peerDependencies": {
34-
"vue": "3.0.0-rc.2"
34+
"vue": "3.0.0-rc.3"
3535
},
3636
"dependencies": {
3737
"@babel/parser": "^7.10.4",
38-
"@vue/compiler-core": "3.0.0-rc.2",
39-
"@vue/compiler-dom": "3.0.0-rc.2",
40-
"@vue/compiler-ssr": "3.0.0-rc.2",
41-
"@vue/shared": "3.0.0-rc.2",
38+
"@vue/compiler-core": "3.0.0-rc.3",
39+
"@vue/compiler-dom": "3.0.0-rc.3",
40+
"@vue/compiler-ssr": "3.0.0-rc.3",
41+
"@vue/shared": "3.0.0-rc.3",
4242
"consolidate": "^0.15.1",
4343
"estree-walker": "^2.0.1",
4444
"hash-sum": "^2.0.0",

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.0.0-rc.2",
3+
"version": "3.0.0-rc.3",
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-rc.2",
31-
"@vue/compiler-dom": "3.0.0-rc.2"
30+
"@vue/shared": "3.0.0-rc.3",
31+
"@vue/compiler-dom": "3.0.0-rc.3"
3232
}
3333
}

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.0.0-rc.2",
3+
"version": "3.0.0-rc.3",
44
"description": "@vue/reactivity",
55
"main": "index.js",
66
"module": "dist/reactivity.esm-bundler.js",
@@ -35,6 +35,6 @@
3535
},
3636
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/reactivity#readme",
3737
"dependencies": {
38-
"@vue/shared": "3.0.0-rc.2"
38+
"@vue/shared": "3.0.0-rc.3"
3939
}
4040
}

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.0.0-rc.2",
3+
"version": "3.0.0-rc.3",
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-rc.2",
35-
"@vue/reactivity": "3.0.0-rc.2"
34+
"@vue/shared": "3.0.0-rc.3",
35+
"@vue/reactivity": "3.0.0-rc.3"
3636
}
3737
}

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.0.0-rc.2",
3+
"version": "3.0.0-rc.3",
44
"description": "@vue/runtime-dom",
55
"main": "index.js",
66
"module": "dist/runtime-dom.esm-bundler.js",
@@ -34,8 +34,8 @@
3434
},
3535
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-dom#readme",
3636
"dependencies": {
37-
"@vue/shared": "3.0.0-rc.2",
38-
"@vue/runtime-core": "3.0.0-rc.2",
37+
"@vue/shared": "3.0.0-rc.3",
38+
"@vue/runtime-core": "3.0.0-rc.3",
3939
"csstype": "^2.6.8"
4040
}
4141
}

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.0.0-rc.2",
3+
"version": "3.0.0-rc.3",
44
"description": "@vue/runtime-test",
55
"private": true,
66
"main": "index.js",
@@ -24,7 +24,7 @@
2424
},
2525
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-test#readme",
2626
"dependencies": {
27-
"@vue/shared": "3.0.0-rc.2",
28-
"@vue/runtime-core": "3.0.0-rc.2"
27+
"@vue/shared": "3.0.0-rc.3",
28+
"@vue/runtime-core": "3.0.0-rc.3"
2929
}
3030
}

0 commit comments

Comments
 (0)