diff --git a/CHANGELOG.md b/CHANGELOG.md index f0359c55..3d30e9a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,89 @@ + +# 1.3.4 highfalutin-petroglyph (2014-11-24) + +## Bug Fixes + +- **$browser:** allow chaining url() calls in setter mode + ([764fa869](https://github.com/angular/angular.js/commit/764fa869dd8809d494924c23f30ddaa4cac84249), + [#10157](https://github.com/angular/angular.js/issues/10157)) +- **$http:** return empty headers, ignore properties in Object prototype + ([637c020f](https://github.com/angular/angular.js/commit/637c020f828a7ceeaacf83bb1a54ed3092e6c273), + [#7779](https://github.com/angular/angular.js/issues/7779), [#10113](https://github.com/angular/angular.js/issues/10113), [#10091](https://github.com/angular/angular.js/issues/10091)) +- **$locale:** Allow currency filter to fall back to maxFrac from locale + ([6dbd606a](https://github.com/angular/angular.js/commit/6dbd606ad7b708d5886c0e7ffee20ae8f8719711), + [#10179](https://github.com/angular/angular.js/issues/10179)) +- **$location:** allow empty string URLs to reset path, search, and hash + ([7812dfce](https://github.com/angular/angular.js/commit/7812dfcee8ab98cbf38261f9948d9541656bf554), + [#10063](https://github.com/angular/angular.js/issues/10063), [#10064](https://github.com/angular/angular.js/issues/10064)) +- **$route:** fix redirection with optional/eager params + ([891acf4c](https://github.com/angular/angular.js/commit/891acf4c201823fd2c925ee321c70d06737d5944), + [#9819](https://github.com/angular/angular.js/issues/9819), [#9827](https://github.com/angular/angular.js/issues/9827)) +- **Angular:** properly get node name for svg element wrapper + ([09a98323](https://github.com/angular/angular.js/commit/09a9832358960c98392c9df1a9fd9592f59bc844), + [#10078](https://github.com/angular/angular.js/issues/10078), [#10172](https://github.com/angular/angular.js/issues/10172)) +- **NgModelController:** typo $rawModelValue -> $$rawModelValue + ([4f4ff5f3](https://github.com/angular/angular.js/commit/4f4ff5f31b82c6f7be409ea4edbad4c2913ac1f1)) +- **input:** + - set ngTrueValue on required checkbox + ([8692f87a](https://github.com/angular/angular.js/commit/8692f87a4689fa0dd3640f4dcab5c6b6f960489b), + [#5164](https://github.com/angular/angular.js/issues/5164)) + - call $setTouched in blur asynchronously if necessary + ([eab27187](https://github.com/angular/angular.js/commit/eab271876cb87c1f5f6c6f29e814fb8fecad87ff), + [#8762](https://github.com/angular/angular.js/issues/8762), [#9808](https://github.com/angular/angular.js/issues/9808), [#10014](https://github.com/angular/angular.js/issues/10014)) +- **input[date]:** do not use `$isEmpty` to check the model validity + ([40406e2f](https://github.com/angular/angular.js/commit/40406e2f22713efbd37ef3eff408339727cb62d9)) +- **linky:** encode double quotes when serializing email addresses + ([8ee8ffeb](https://github.com/angular/angular.js/commit/8ee8ffeba0a5a133fa792745c1019d294ecfcef3), + [#8945](https://github.com/angular/angular.js/issues/8945), [#8964](https://github.com/angular/angular.js/issues/8964), [#5946](https://github.com/angular/angular.js/issues/5946), [#10090](https://github.com/angular/angular.js/issues/10090), [#9256](https://github.com/angular/angular.js/issues/9256)) +- **ngMaxlength:** ignore maxlength when not set to a non-negative integer + ([92f87b11](https://github.com/angular/angular.js/commit/92f87b114242b01876e1dc5c6fddd061352ecb2c), + [#9874](https://github.com/angular/angular.js/issues/9874)) +- **ngModel:** don't run parsers when executing $validate + ([e3764e30](https://github.com/angular/angular.js/commit/e3764e30a301ec6136c8e6b5493d39feb3cd1ecc)) +- **ngModelOptions:** preserve context of getter/setters + ([bb4d3b73](https://github.com/angular/angular.js/commit/bb4d3b73a1ccf3dee55b0c25baf031bae5cbb676), + [#9394](https://github.com/angular/angular.js/issues/9394), [#9865](https://github.com/angular/angular.js/issues/9865)) + + +## Features + +- **ngMaxlength:** add support for disabling max length limit + ([5c1fdff6](https://github.com/angular/angular.js/commit/5c1fdff691b9367d73f72f6a0298cb6a6e259f35), + [#9995](https://github.com/angular/angular.js/issues/9995)) +- **ngModelController:** add $setDirty method + ([e8941c0f](https://github.com/angular/angular.js/commit/e8941c0fe5217d2e705bad8253dc0162aff4c709), + [#10038](https://github.com/angular/angular.js/issues/10038), [#10049](https://github.com/angular/angular.js/issues/10049)) +- **ngPluralize:** add support for `count` to be a one-time expression + ([2b41a586](https://github.com/angular/angular.js/commit/2b41a5868aee79e3872ad92db66e30959207d98e), + [#10004](https://github.com/angular/angular.js/issues/10004)) + + +## Performance Improvements + +- ***:** use Object.create instead of creating temporary constructors + ([bf6a79c3](https://github.com/angular/angular.js/commit/bf6a79c3484f474c300b5442ae73483030ef5782), + [#10058](https://github.com/angular/angular.js/issues/10058)) + + +## Breaking Changes + +- **ngModelOptions:** due to [bb4d3b73](https://github.com/angular/angular.js/commit/bb4d3b73a1ccf3dee55b0c25baf031bae5cbb676), + previously, ngModel invoked getter/setters in the global context. + +For example: + +```js + +``` + +would previously invoke `model.value()` in the global context. + +Now, ngModel invokes `value` with `model` as the context. + +It's unlikely that real apps relied on this behavior. If they did they can use `.bind` to explicilty +bind a getter/getter to the global context, or just reference globals normally without `this`. + + # 1.2.27 prime-factorization (2014-11-20)