Vue.js: v2.0.0-beta.7 Release

Release date:
August 5, 2016
Previous version:
v2.0.0-beta.6 (released August 1, 2016)
Magnitude:
1,621 Diff Delta
Contributors:
1 total committer
Data confidence:
Commits:

Top Contributors in v2.0.0-beta.7

yyx990803

Directory Browser for v2.0.0-beta.7

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

New

  • Improved warning information for SSR hydration failures.
  • Support :class and :style binding values when using class and style in v-bind="object".

Fixed

  • Fixed SSR hydration failures when using <transition> that evaluates to empty nodes.
  • #3379 :style bindings now work for plain strings as well
  • #3386 & #3391 slot children not correctly updating

Breaking Changes

  • When using render functions, it is now no longer necessary (nor supported) to wrap component children inside a function:
  render (h) {
    // before
    return h(Comp, () => [...children])

    // after
    return h(Comp, [...children])
  }

If you are using JSX, make sure to upgrade to babel-plugin-transform-vue-jsx to ^3.0.0.