From 9011a65b564310566ab75d5374a63bd1fd10c372 Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Mon, 6 Oct 2014 15:43:54 -0700 Subject: [PATCH] docs(changelog): release notes for 1.3.0-rc.5 --- CHANGELOG.md | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 277586aa399c..c2c6cc100e24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,63 @@ + +# 1.3.0-rc.5 impossible-choreography (2014-10-06) + + +## Bug Fixes + +- **$browser:** + - don’t use history API when only the hash changes + ([7cb01a80](https://github.com/angular/angular.js/commit/7cb01a80beec669d8f6aae1dc211d2f0b7d4eac4), + [858360b6](https://github.com/angular/angular.js/commit/858360b680a2bb5c19429c1be1c9506700cda476), + [0656484d](https://github.com/angular/angular.js/commit/0656484d3e709c5162570b0dd6473b0b6140e5b2), + [#9423](https://github.com/angular/angular.js/issues/9423), [#9424](https://github.com/angular/angular.js/issues/9424), + [#9143](https://github.com/angular/angular.js/issues/9143), [#9406](https://github.com/angular/angular.js/issues/9406)) + - handle async href on url change in <=IE9 + ([404b95fe](https://github.com/angular/angular.js/commit/404b95fe30a1bcd1313adafbd0018578d5b21d3d), + [#9235](https://github.com/angular/angular.js/issues/9235)) +- **$compile:** + - remove comment nodes from templates before asserting single root node + ([feba0174](https://github.com/angular/angular.js/commit/feba0174db0f8f929273beb8b90691734a9292e2), + [#9212](https://github.com/angular/angular.js/issues/9212), [#9215](https://github.com/angular/angular.js/issues/9215)) + - use the correct namespace for transcluded svg elements + ([f3539f3c](https://github.com/angular/angular.js/commit/f3539f3cb5d9477f50f065c6a0ac7d6ca0a31092), + [#9344](https://github.com/angular/angular.js/issues/9344), [#9415](https://github.com/angular/angular.js/issues/9415)) +- **$http:** honor application/json response header and parse json primitives + ([7b6c1d08](https://github.com/angular/angular.js/commit/7b6c1d08aceba6704a40302f373400aed9ed0e0b), + [#2973](https://github.com/angular/angular.js/issues/2973)) +- **$location:** allow 0 in `path()` and `hash()` + ([b8c5b871](https://github.com/angular/angular.js/commit/b8c5b87119a06edb8e8d1cefad81ee8d1f64f070)) +- **form:** fix submit prevention + ([86c7d122](https://github.com/angular/angular.js/commit/86c7d1221c706993044583d51a0c61423fee5bcf), + [#3370](https://github.com/angular/angular.js/issues/3370), [#3776](https://github.com/angular/angular.js/issues/3776)) +- **orderBy:** sort by identity if no predicate is given + ([607f016a](https://github.com/angular/angular.js/commit/607f016a0ba705ce40df0164360fb96a9d7f5912), + [#5847](https://github.com/angular/angular.js/issues/5847), [#4579](https://github.com/angular/angular.js/issues/4579), [#9403](https://github.com/angular/angular.js/issues/9403)) +- **select:** use $viewValue instead of $modelValue + ([f7174169](https://github.com/angular/angular.js/commit/f7174169f4f710d605f6a67f39f90a67a07d4cab), + [#8929](https://github.com/angular/angular.js/issues/8929)) + + +## Performance Improvements + +- **ngBind:** set `textContent` rather than using `element.text()` + ([074a146d](https://github.com/angular/angular.js/commit/074a146d8b1ee7c93bf6d5892448a5c2a0143a28), + [#9369](https://github.com/angular/angular.js/issues/9369), [#9396](https://github.com/angular/angular.js/issues/9396)) + + +## Breaking Changes + +- **$compile:** due to [feba0174](https://github.com/angular/angular.js/commit/feba0174db0f8f929273beb8b90691734a9292e2), + + +If a template contains directives within comment nodes, and there is more than a single node in the +template, those comment nodes are removed. The impact of this breaking change is expected to be +quite low. + +Closes #9212 +Closes #9215 + + + # 1.3.0-rc.4 unicorn-hydrafication (2014-10-01)