Skip to content

Commit 2043fd4

Browse files
committed
docs:release notes: prepare for notes for 0.9.17 release
1 parent ce4f27a commit 2043fd4

File tree

1 file changed

+22
-9
lines changed

1 file changed

+22
-9
lines changed

CHANGELOG.md

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,29 @@
22
# <angular/> 0.9.17 vegetable-reanimation (in progress) #
33

44
### 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].
89

910

1011
### Bug Fixes
1112
- 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.
1417

1518

1619
### Breaking changes
1720
- $service now has $service.invoke for method injection ($service(self, fn) no longer works)
1821
- injection name inference no longer supports method curry and linking functions. Both must be
1922
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.
2428

2529

2630

@@ -535,14 +539,23 @@ with the `$route` service
535539
[ng:repeat]: http://docs.angularjs.org/#!/api/angular.widget.@ng:repeat
536540
[ng:view]: http://docs.angularjs.org/#!/api/angular.widget.ng:view
537541
[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
538548
[$defer]: http://docs.angularjs.org/#!/api/angular.service.$defer
539549
[$cookies]: http://docs.angularjs.org/#!/api/angular.service.$cookies
540550
[$xhr]: http://docs.angularjs.org/#!/api/angular.service.$xhr
541551
[$xhr.cache]: http://docs.angularjs.org/#!/api/angular.service.$xhr.cache
542552
[$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
543555
[directive]: http://docs.angularjs.org/#!/api/angular.directive
544556
[ng:autobind]: http://docs.angularjs.org/#!/api/angular.directive.ng:autobind
545557
[guide.di]: http://docs.angularjs.org/#!/guide/dev_guide.di
546558
[downloading]: http://docs.angularjs.org/#!/misc/downloading
547559
[contribute]: http://docs.angularjs.org/#!/misc/contribute
560+
[jqLite]: http://docs.angularjs.org/#!/api/angular.element
548561
[Jstd Scenario Adapter]: https://github.com/angular/angular.js/blob/master/src/jstd-scenario-adapter/Adapter.js

0 commit comments

Comments
 (0)