Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 345 Bytes

UPGRADE.md

File metadata and controls

13 lines (9 loc) · 345 Bytes

Notes on upgrading between versions

2.0.0-alpha.4

  • EmberValidations.Mixin is no longer used. You can mix EmberValidations directly into your controllers:
// now invalid
export default Ember.Controller.extend(EmberValidations.Mixin, {

// new valid syntax
export default Ember.Controller.extend(EmberValidations, {