File tree Expand file tree Collapse file tree 14 files changed +45
-22
lines changed Expand file tree Collapse file tree 14 files changed +45
-22
lines changed Original file line number Diff line number Diff line change 1+ # [ 3.0.0-alpha.1] ( https://github.com/vuejs/vue-next/compare/v3.0.0-alpha.0...v3.0.0-alpha.1 ) (2020-01-02)
2+
3+
4+ ### Bug Fixes
5+
6+ * ** runtime-core:** pass options to plugins ([ #561 ] ( https://github.com/vuejs/vue-next/issues/561 ) ) ([ 4d20981] ( https://github.com/vuejs/vue-next/commit/4d20981eb069b20e1627916b977aedb2d68eca86 ) )
7+ * ** sfc:** treat custom block content as raw text ([ d6275a3] ( https://github.com/vuejs/vue-next/commit/d6275a3c310e6e9426f897afe35ff6cdb125c023 ) )
8+ * mounting new children ([ 7d436ab] ( https://github.com/vuejs/vue-next/commit/7d436ab59a30562a049e199ae579df7ac8066829 ) )
9+ * ** core:** clone mounted hoisted vnodes on patch ([ 47a6a84] ( https://github.com/vuejs/vue-next/commit/47a6a846311203fa59584486265f5da387afa51d ) )
10+ * ** fragment:** perform direct remove when removing fragments ([ 2fdb499] ( https://github.com/vuejs/vue-next/commit/2fdb499bd96b4d1a8a7a1964d59e8dc5dacd9d22 ) )
11+
12+
13+ ### Features
14+
15+ * ** hmr:** root instance reload ([ eda495e] ( https://github.com/vuejs/vue-next/commit/eda495efd824f17095728a4d2a6db85ca874e5ca ) )
16+
17+
18+ ### Performance Improvements
19+
20+ * ** compiler-core:** simplify ` advancePositionWithMutation ` ([ #564 ] ( https://github.com/vuejs/vue-next/issues/564 ) ) ([ ad2a0bd] ( https://github.com/vuejs/vue-next/commit/ad2a0bde988de743d4abc62b681b6a4888545a51 ) )
21+
22+
23+
124# [ 3.0.0-alpha.0] ( https://github.com/vuejs/vue-next/compare/a8522cf48c09efbb2063f129cf1bea0dae09f10a...v3.0.0-alpha.0 ) (2019-12-20)
225
326For changes between 2.x and 3.0 up to this release, please refer to merged RFCs [ here] ( https://github.com/vuejs/rfcs/pulls?q=is%3Apr+is%3Amerged+label%3A3.x ) .
Original file line number Diff line number Diff line change 11{
22 "private" : true ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "workspaces" : [
55 " packages/*"
66 ],
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue/compiler-core" ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "description" : " @vue/compiler-core" ,
55 "main" : " index.js" ,
66 "module" : " dist/compiler-core.esm-bundler.js" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue/compiler-dom" ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "description" : " @vue/compiler-dom" ,
55 "main" : " index.js" ,
66 "module" : " dist/compiler-dom.esm-bundler.js" ,
3434 },
3535 "homepage" : " https://github.com/vuejs/vue/tree/dev/packages/compiler-dom#readme" ,
3636 "dependencies" : {
37- "@vue/compiler-core" : " 3.0.0-alpha.0 "
37+ "@vue/compiler-core" : " 3.0.0-alpha.1 "
3838 }
3939}
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue/compiler-sfc" ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "description" : " @vue/compiler-sfc" ,
55 "main" : " dist/compiler-sfc.cjs.js" ,
66 "types" : " dist/compiler-sfc.d.ts" ,
2727 },
2828 "homepage" : " https://github.com/vuejs/vue/tree/dev/packages/compiler-sfc#readme" ,
2929 "peerDependencies" : {
30- "vue" : " 3.0.0-alpha.0 "
30+ "vue" : " 3.0.0-alpha.1 "
3131 },
3232 "dependencies" : {
33- "@vue/compiler-core" : " 3.0.0-alpha.0 " ,
34- "@vue/compiler-dom" : " 3.0.0-alpha.0 " ,
33+ "@vue/compiler-core" : " 3.0.0-alpha.1 " ,
34+ "@vue/compiler-dom" : " 3.0.0-alpha.1 " ,
3535 "consolidate" : " ^0.15.1" ,
3636 "hash-sum" : " ^2.0.0" ,
3737 "lru-cache" : " ^5.1.1" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue/reactivity" ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "description" : " @vue/reactivity" ,
55 "main" : " index.js" ,
66 "module" : " dist/reactivity.esm-bundler.js" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue/runtime-core" ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "description" : " @vue/runtime-core" ,
55 "main" : " index.js" ,
66 "module" : " dist/runtime-core.esm-bundler.js" ,
3131 },
3232 "homepage" : " https://github.com/vuejs/vue/tree/dev/packages/runtime-core#readme" ,
3333 "dependencies" : {
34- "@vue/reactivity" : " 3.0.0-alpha.0 "
34+ "@vue/reactivity" : " 3.0.0-alpha.1 "
3535 }
3636}
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue/runtime-dom" ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "description" : " @vue/runtime-dom" ,
55 "main" : " index.js" ,
66 "module" : " dist/runtime-dom.esm-bundler.js" ,
3737 },
3838 "homepage" : " https://github.com/vuejs/vue/tree/dev/packages/runtime-dom#readme" ,
3939 "dependencies" : {
40- "@vue/runtime-core" : " 3.0.0-alpha.0 "
40+ "@vue/runtime-core" : " 3.0.0-alpha.1 "
4141 }
4242}
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue/runtime-test" ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "description" : " @vue/runtime-test" ,
55 "private" : true ,
66 "main" : " index.js" ,
3030 },
3131 "homepage" : " https://github.com/vuejs/vue/tree/dev/packages/runtime-test#readme" ,
3232 "dependencies" : {
33- "@vue/runtime-core" : " 3.0.0-alpha.0 "
33+ "@vue/runtime-core" : " 3.0.0-alpha.1 "
3434 }
3535}
Original file line number Diff line number Diff line change 11{
22 "name" : " @vue/server-renderer" ,
3- "version" : " 3.0.0-alpha.0 " ,
3+ "version" : " 3.0.0-alpha.1 " ,
44 "description" : " @vue/server-renderer" ,
55 "main" : " index.js" ,
66 "types" : " dist/server-renderer.d.ts" ,
You can’t perform that action at this time.
0 commit comments