|
| 1 | +<a name="1.3.0-beta.5"></a> |
| 2 | +# 1.3.0-beta.5 chimeric-glitterfication (2014-04-03) |
| 3 | + |
| 4 | + |
| 5 | +## Bug Fixes |
| 6 | + |
| 7 | +- **$animate:** |
| 8 | + - insert elements at the start of the parent container instead of at the end |
| 9 | + ([1cb8584e](https://github.com/angular/angular.js/commit/1cb8584e8490ecdb1b410a8846c4478c6c2c0e53), |
| 10 | + [#4934](https://github.com/angular/angular.js/issues/4934), [#6275](https://github.com/angular/angular.js/issues/6275)) |
| 11 | + - ensure the CSS driver properly works with SVG elements |
| 12 | + ([c67bd69c](https://github.com/angular/angular.js/commit/c67bd69c58812da82b1a3a31d430df7aad8a50a8), |
| 13 | + [#6030](https://github.com/angular/angular.js/issues/6030)) |
| 14 | +- **$parse:** mark constant unary minus expressions as constant |
| 15 | + ([7914d346](https://github.com/angular/angular.js/commit/7914d3463b5ec560c616a0c9fd008bc0e3f7c786), |
| 16 | + [#6932](https://github.com/angular/angular.js/issues/6932)) |
| 17 | +- **Scope:** |
| 18 | + - revert the `__proto__` cleanup as that could cause regressions |
| 19 | + ([71c11e96](https://github.com/angular/angular.js/commit/71c11e96c64d5d4eb71f48c1eb778c2ba5c63377)) |
| 20 | + - more scope clean up on $destroy to minimize leaks |
| 21 | + ([d64d41ed](https://github.com/angular/angular.js/commit/d64d41ed992430a4fc89cd415c03acf8d56022e6), |
| 22 | + [#6794](https://github.com/angular/angular.js/issues/6794), [#6856](https://github.com/angular/angular.js/issues/6856), [#6968](https://github.com/angular/angular.js/issues/6968)) |
| 23 | +- **ngClass:** handle ngClassOdd/Even affecting the same classes |
| 24 | + ([c9677920](https://github.com/angular/angular.js/commit/c9677920d462046710fc72ca422ab7400f551d2e), |
| 25 | + [#5271](https://github.com/angular/angular.js/issues/5271)) |
| 26 | + |
| 27 | + |
| 28 | +## Breaking Changes |
| 29 | + |
| 30 | +- **$animate:** due to [1cb8584e](https://github.com/angular/angular.js/commit/1cb8584e8490ecdb1b410a8846c4478c6c2c0e53), |
| 31 | +`$animate` will no longer default the after parameter to the last element of the parent |
| 32 | +container. Instead, when after is not specified, the new element will be inserted as the |
| 33 | +first child of the parent container. |
| 34 | + |
| 35 | +To update existing code, change all instances of `$animate.enter()` or `$animate.move()` from: |
| 36 | + |
| 37 | +`$animate.enter(element, parent);` |
| 38 | + |
| 39 | +to: |
| 40 | + |
| 41 | +`$animate.enter(element, parent, angular.element(parent[0].lastChild));` |
| 42 | + |
| 43 | + |
| 44 | +<a name="1.2.16"></a> |
| 45 | +# 1.2.16 badger-enumeration (2014-04-03) |
| 46 | + |
| 47 | + |
| 48 | +## Bug Fixes |
| 49 | + |
| 50 | +- **$animate:** |
| 51 | + - prevent cancellation timestamp from being too far in the future |
| 52 | + ([35d635cb](https://github.com/angular/angular.js/commit/35d635cbcbdc20f304781655f3563111afa6567f), |
| 53 | + [#6748](https://github.com/angular/angular.js/issues/6748)) |
| 54 | + - run CSS animations before JS animations to avoid style inheritance |
| 55 | + ([0e5106ec](https://github.com/angular/angular.js/commit/0e5106ec2ccc8596c589b89074d3b27d27bf395a), |
| 56 | + [#6675](https://github.com/angular/angular.js/issues/6675)) |
| 57 | +- **$parse:** mark constant unary minus expressions as constant |
| 58 | + ([6e420ff2](https://github.com/angular/angular.js/commit/6e420ff28d9b3e76ac2c3598bf3797540ef8a1d3), |
| 59 | + [#6932](https://github.com/angular/angular.js/issues/6932)) |
| 60 | +- **Scope:** |
| 61 | + - more scope clean up on $destroy to minimize leaks |
| 62 | + ([7e4e696e](https://github.com/angular/angular.js/commit/7e4e696ec3adf9d6fc77a7aa7e0909a9675fd43a), |
| 63 | + [#6794](https://github.com/angular/angular.js/issues/6794), [#6856](https://github.com/angular/angular.js/issues/6856), [#6968](https://github.com/angular/angular.js/issues/6968)) |
| 64 | + - aggressively clean up scope on $destroy to minimize leaks |
| 65 | + ([8d4d437e](https://github.com/angular/angular.js/commit/8d4d437e8cd8d7cebab5d9ae5c8bcfeef2118ce9), |
| 66 | + [#6794](https://github.com/angular/angular.js/issues/6794), [#6856](https://github.com/angular/angular.js/issues/6856)) |
| 67 | +- **filter.ngdoc:** Check if "input" variable is defined |
| 68 | + ([a275d539](https://github.com/angular/angular.js/commit/a275d539f9631d6ec64d03814b3b09420e6cf1ee), |
| 69 | + [#6819](https://github.com/angular/angular.js/issues/6819)) |
| 70 | +- **input:** don't perform HTML5 validation on updated model-value |
| 71 | + ([b2363e31](https://github.com/angular/angular.js/commit/b2363e31023df8240113f68b4e01d942f8009b60), |
| 72 | + [#6796](https://github.com/angular/angular.js/issues/6796), [#6806](https://github.com/angular/angular.js/issues/6806)) |
| 73 | +- **ngClass:** handle ngClassOdd/Even affecting the same classes |
| 74 | + ([55fe6d63](https://github.com/angular/angular.js/commit/55fe6d6331e501325c2658df8995dcc083fc4ffb), |
| 75 | + [#5271](https://github.com/angular/angular.js/issues/5271)) |
| 76 | + |
| 77 | + |
| 78 | +## Features |
| 79 | + |
| 80 | +- **$http:** add xhr statusText to completeRequest callback |
| 81 | + ([32c09c1d](https://github.com/angular/angular.js/commit/32c09c1d195fcb98f6e29fc7e554a867f4762301), |
| 82 | + [#2335](https://github.com/angular/angular.js/issues/2335), [#2665](https://github.com/angular/angular.js/issues/2665), [#6713](https://github.com/angular/angular.js/issues/6713)) |
| 83 | + |
| 84 | + |
1 | 85 | <a name="1.3.0-beta.4"></a>
|
2 | 86 | # 1.3.0-beta.4 inconspicuous-deception (2014-03-28)
|
3 | 87 |
|
|
0 commit comments