|
2 | 2 | # <angular/> 0.9.17 vegetable-reanimation (in progress) #
|
3 | 3 |
|
4 | 4 | ### New Features
|
5 |
| -- Added prepend() to jqLite |
6 |
| -- Added ng:options directive (http://docs.angularjs.org/#!angular.directive.ng:options) |
7 |
| -- Added ng:disabled, ng:selected, ng:checked, ng:multiple, ng:readonly directive. |
| 5 | +- New [ng:options] directive to better bind a model to `<select>` and `<option>` elements. |
| 6 | +- New [ng:disabled], [ng:selected], [ng:checked], [ng:multiple] and [ng:readonly] directives. |
| 7 | +- Added support for string representation of month and day in [date] filter. |
| 8 | +- Added support for `prepend()` to [jqLite]. |
8 | 9 |
|
9 | 10 |
|
10 | 11 | ### Bug Fixes
|
11 | 12 | - Number filter would return incorrect value when fractional part had leading zeros.
|
12 |
| -- Issue #399: return unsorted array if no predicate |
13 |
| -- Fixed issues with incorrect value of $position in ng:repeat when collection size changes |
| 13 | +- Issue #338: Show error when template with with multiple DOM roots is being compiled. |
| 14 | +- Issue #399: return unsorted array if no predicate. |
| 15 | +- Fixed issues with incorrect value of $position in ng:repeat when collection size changes. |
| 16 | +- Fixed JSONP support in [$xhr] which didn't work without jquery since v0.9.13. |
14 | 17 |
|
15 | 18 |
|
16 | 19 | ### Breaking changes
|
17 | 20 | - $service now has $service.invoke for method injection ($service(self, fn) no longer works)
|
18 | 21 | - injection name inference no longer supports method curry and linking functions. Both must be
|
19 | 22 | explicitly specified using $inject property.
|
20 |
| -- Dynamic Iteration (ng:repeater) on <option> elements is no longer supported. Use ng:options |
21 |
| -- Removal of index formatter since its only use was with repeated options (see above) |
22 |
| -- Not providing predicate to orderBy will now return the unsorted array, instead of ordering by |
23 |
| - natural order. |
| 23 | +- Dynamic iteration (ng:repeat) on <option> elements is no longer supported. Use ng:options |
| 24 | +- Removal of index formatter (`ng:format="index"`) since its only use was with repeated `<options>` |
| 25 | + (see above). |
| 26 | +- Calling [$orderBy] without a predicate now returns the original unsorted array, instead of |
| 27 | + ordering by natural order. |
24 | 28 |
|
25 | 29 |
|
26 | 30 |
|
@@ -535,14 +539,23 @@ with the `$route` service
|
535 | 539 | [ng:repeat]: http://docs.angularjs.org/#!/api/angular.widget.@ng:repeat
|
536 | 540 | [ng:view]: http://docs.angularjs.org/#!/api/angular.widget.ng:view
|
537 | 541 | [ng:include]: http://docs.angularjs.org/#!/api/angular.widget.ng:include
|
| 542 | +[ng:options]: http://docs.angularjs.org/#!/api/angular.directive.ng:options |
| 543 | +[ng:disabled]: http://docs.angularjs.org/#!/api/angular.directive.ng:disabled |
| 544 | +[ng:selected]: http://docs.angularjs.org/#!/api/angular.directive.ng:selected |
| 545 | +[ng:checked]: http://docs.angularjs.org/#!/api/angular.directive.ng:checked |
| 546 | +[ng:multiple]: http://docs.angularjs.org/#!/api/angular.directive.ng:multiple |
| 547 | +[ng:readonly]: http://docs.angularjs.org/#!/api/angular.directive.ng:readonly |
538 | 548 | [$defer]: http://docs.angularjs.org/#!/api/angular.service.$defer
|
539 | 549 | [$cookies]: http://docs.angularjs.org/#!/api/angular.service.$cookies
|
540 | 550 | [$xhr]: http://docs.angularjs.org/#!/api/angular.service.$xhr
|
541 | 551 | [$xhr.cache]: http://docs.angularjs.org/#!/api/angular.service.$xhr.cache
|
542 | 552 | [$resource]: http://docs.angularjs.org/#!/api/angular.service.$resource
|
| 553 | +[$orderBy]: http://docs.angularjs.org/#!/api/angular.Array.orderBy |
| 554 | +[date]: http://docs.angularjs.org/#!/api/angular.filter.date |
543 | 555 | [directive]: http://docs.angularjs.org/#!/api/angular.directive
|
544 | 556 | [ng:autobind]: http://docs.angularjs.org/#!/api/angular.directive.ng:autobind
|
545 | 557 | [guide.di]: http://docs.angularjs.org/#!/guide/dev_guide.di
|
546 | 558 | [downloading]: http://docs.angularjs.org/#!/misc/downloading
|
547 | 559 | [contribute]: http://docs.angularjs.org/#!/misc/contribute
|
| 560 | +[jqLite]: http://docs.angularjs.org/#!/api/angular.element |
548 | 561 | [Jstd Scenario Adapter]: https://github.com/angular/angular.js/blob/master/src/jstd-scenario-adapter/Adapter.js
|
0 commit comments