Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vuejs/vue
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.6.0-beta.1
Choose a base ref
...
head repository: vuejs/vue
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.6.0-beta.2
Choose a head ref

Commits on Jan 16, 2019

  1. Copy the full SHA
    a47a0ee View commit details
  2. 4
    Copy the full SHA
    4fca045 View commit details

Commits on Jan 18, 2019

  1. feat(ssr): allow template option to be function in renderToString (#9324

    )
    
    Also allows return Promise for async handling
    DominusVilicus authored and yyx990803 committed Jan 18, 2019
    Copy the full SHA
    b65f6d7 View commit details
  2. Copy the full SHA
    df064ce View commit details
  3. Copy the full SHA
    42fdf3f View commit details
  4. chore: fix flow

    yyx990803 committed Jan 18, 2019
    Copy the full SHA
    b0f2f83 View commit details

Commits on Jan 19, 2019

  1. Copy the full SHA
    6ca18bd View commit details
  2. chore: update README in dist (#9346)

    multics authored and yyx990803 committed Jan 19, 2019
    Copy the full SHA
    ec84032 View commit details

Commits on Jan 23, 2019

  1. 3
    Copy the full SHA
    67e85de View commit details
  2. Copy the full SHA
    8d84572 View commit details
  3. chore: update sponsor

    yyx990803 committed Jan 23, 2019
    Copy the full SHA
    ba9907c View commit details
  4. fix: async edge case fix should apply to more browsers

    also optimize fix performance by avoiding calls to performance.now()
    yyx990803 committed Jan 23, 2019
    Copy the full SHA
    ba0ebd4 View commit details
  5. chore: update comment

    yyx990803 committed Jan 23, 2019
    Copy the full SHA
    60a277c View commit details

Commits on Jan 24, 2019

  1. Copy the full SHA
    32072e8 View commit details
  2. test: fix tests in IE/Edge

    yyx990803 committed Jan 24, 2019
    Copy the full SHA
    8cb2069 View commit details
  3. 4
    Copy the full SHA
    1868561 View commit details
  4. Copy the full SHA
    770c6ed View commit details

Commits on Jan 26, 2019

  1. perf: improve scoped slots change detection accuracy (#9371)

    Ensure that state mutations that only affect parent scope only trigger parent update and does not affect child components with only scoped slots.
    yyx990803 authored Jan 26, 2019
    Copy the full SHA
    f219bed View commit details
  2. Copy the full SHA
    dbc0582 View commit details
  3. build: build 2.6.0-beta.2

    yyx990803 committed Jan 26, 2019
    Copy the full SHA
    90f47d1 View commit details
  4. build: release 2.6.0-beta.2

    yyx990803 committed Jan 26, 2019
    Copy the full SHA
    624c799 View commit details
Showing with 34,540 additions and 955 deletions.
  1. +7 −2 BACKERS.md
  2. +7 −2 README.md
  3. +1 −1 dist/README.md
  4. +11,667 −0 dist/vue.common.dev.js
  5. +6 −0 dist/vue.common.prod.js
  6. +11,724 −0 dist/vue.esm.browser.js
  7. +6 −0 dist/vue.esm.browser.min.js
  8. +300 −140 dist/vue.esm.js
  9. +319 −84 dist/vue.js
  10. +2 −2 dist/vue.min.js
  11. +8,269 −0 dist/vue.runtime.common.dev.js
  12. +6 −0 dist/vue.runtime.common.prod.js
  13. +91 −28 dist/vue.runtime.esm.js
  14. +91 −28 dist/vue.runtime.js
  15. +2 −2 dist/vue.runtime.min.js
  16. +12 −1 flow/compiler.js
  17. +1 −1 flow/options.js
  18. +1 −0 flow/vnode.js
  19. +1 −1 package.json
  20. +294 −69 packages/vue-server-renderer/basic.js
  21. +325 −77 packages/vue-server-renderer/build.dev.js
  22. +1 −1 packages/vue-server-renderer/build.prod.js
  23. +1 −1 packages/vue-server-renderer/package.json
  24. +229 −57 packages/vue-template-compiler/browser.js
  25. +210 −113 packages/vue-template-compiler/build.js
  26. +1 −1 packages/vue-template-compiler/package.json
  27. +1 −1 scripts/feature-flags.js
  28. +4 −2 scripts/release.sh
  29. +18 −9 src/compiler/codegen/events.js
  30. +25 −10 src/compiler/codegen/index.js
  31. +37 −13 src/compiler/helpers.js
  32. +127 −80 src/compiler/parser/index.js
  33. +15 −5 src/core/instance/lifecycle.js
  34. +35 −0 src/core/instance/render-helpers/bind-dynamic-keys.js
  35. +3 −0 src/core/instance/render-helpers/index.js
  36. +4 −3 src/core/instance/render-helpers/resolve-slots.js
  37. +24 −1 src/core/observer/scheduler.js
  38. +4 −0 src/core/util/next-tick.js
  39. +2 −1 src/core/vdom/helpers/normalize-scoped-slots.js
  40. +1 −0 src/core/vdom/modules/directives.js
  41. +5 −8 src/platforms/web/runtime/modules/dom-props.js
  42. +11 −10 src/platforms/web/runtime/modules/events.js
  43. +19 −5 src/server/create-renderer.js
  44. +4 −4 src/server/render.js
  45. +15 −6 src/server/template-renderer/index.js
  46. +1 −1 src/shared/constants.js
  47. +13 −13 test/ssr/ssr-string.spec.js
  48. +62 −0 test/ssr/ssr-template.spec.js
  49. +196 −124 test/unit/features/component/component-scoped-slot.spec.js
  50. +124 −0 test/unit/features/directives/bind.spec.js
  51. +46 −30 test/unit/features/directives/model-checkbox.spec.js
  52. +117 −0 test/unit/features/directives/on.spec.js
  53. +3 −3 test/unit/features/instance/properties.spec.js
  54. +22 −0 test/unit/features/options/directives.spec.js
  55. +17 −10 test/unit/modules/compiler/codegen.spec.js
  56. +7 −2 test/unit/modules/compiler/parser.spec.js
  57. +2 −2 types/options.d.ts
  58. +1 −1 types/test/options-test.ts
  59. +1 −0 types/vnode.d.ts
9 changes: 7 additions & 2 deletions BACKERS.md
Original file line number Diff line number Diff line change
@@ -68,8 +68,8 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
<tbody>
<tr>
<td align="center" valign="middle">
<a href="https://studio.qcloud.coding.net/campaign/favorite-plugins/?utm_source=vue.js&utm_content=cs-logo" target="_blank">
<img width="177px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/cloudstudio.png">
<a href="https://e.coding.net/?utm_source=vue.js" target="_blank">
<img width="177px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/coding.png">
</a>
</td>
<td align="center" valign="middle">
@@ -199,6 +199,11 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/isle_of_code.png">
</a>
</td>
<td align="center" valign="middle">
<a href="https://yakaz.com/" target="_blank">
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/yakaz.png">
</a>
</td>
</tr><tr></tr>
</tbody>
</table>
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -78,8 +78,8 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
<tbody>
<tr>
<td align="center" valign="middle">
<a href="https://studio.qcloud.coding.net/campaign/favorite-plugins/?utm_source=vue.js&utm_content=cs-logo" target="_blank">
<img width="177px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/cloudstudio.png">
<a href="https://e.coding.net/?utm_source=vue.js" target="_blank">
<img width="177px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/coding.png">
</a>
</td>
<td align="center" valign="middle">
@@ -204,6 +204,11 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/isle_of_code.png">
</a>
</td>
<td align="center" valign="middle">
<a href="https://yakaz.com/" target="_blank">
<img width="148px" src="https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/yakaz.png">
</a>
</td>
</tr><tr></tr>
</tbody>
</table>
2 changes: 1 addition & 1 deletion dist/README.md
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ module.exports = {
}
}
}
````
```

#### Rollup

Loading