Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

v7.0.0

Compare
Choose a tag to compare
@kentcdodds kentcdodds released this 07 Sep 22:18

<a name"7.0.0">

7.0.0 (2015-09-07)

Bug Fixes

  • api-check: Remove deprecated api (9f2edcc0)
  • ngModelAttrs: Change expression to statement (4ce876df, closes #294)
  • ngModelAttrsManipulator:
  • validateOptions: Remove deprecated API (4f9d2475)

Features

  • ngModelAttrsManipulator: 🎆 Add support for property accessor keys 🎇 (33ae9c60, closes #452)
  • validation: Remove deprecated async magic ✨ (4813d630)

Breaking Changes

  • If you used skipNgModelAttrsManipulator before and did not heed the deprecation warning, you're going to want to move it to extras. (b5593720)
  • If you were using validateOptions, you'll need to switch to apiCheck (4f9d2475)
  • If you used to define your apiCheck in your wrappers and types as an object, you must now define it as a function that returns this object. (9f2edcc0)
  • Anywhere you define ngModelAttrs if you're using expression you should change it to statement. (4ce876df)
  • If you were not heeding the deprecation warning before, you're going to need to move any async validation you have going on to the asyncValidation object (4813d630)
  • If you were depending on the behavior before of not overriding existing attributes, this will break you. (aaa767c6)
  • We're now altering the ng-model regardless of anything. If you used to have dots or brackets in your properties, this will break you. Most of you probably wont have a problem. (33ae9c60)