131131
132132
133133## Bug Fixes
134- - **Angular :**
134+ - **AngularJS :**
135135 - do not auto-bootstrap if the `src` exists but is empty
136136 ([3536e8](https://github.com/angular/angular.js/commit/3536e83d8a085b02bd6dcec8324800b7e6c734e4))
137137 - do not auto bootstrap if the currentScript has been clobbered
@@ -702,7 +702,7 @@ consolidating all the changes shown in the previous 1.6.0 release candidates.**
702702
703703Previously, `$compileProvider.preAssignBindingsEnabled` was set to true by default. This means
704704bindings were pre-assigned on component/directive controller instances (which made them available
705- inside the constructors). In Angular 1.5+ the place to put the initialization logic relying on
705+ inside the constructors). In AngularJS 1.5+ the place to put the initialization logic relying on
706706bindings being present is the controller's `$onInit` method.
707707
708708To migrate follow the example below:
@@ -1902,7 +1902,7 @@ validation), you can overwrite the built-in `step` validator with a custom direc
19021902# 1.5.9 timeturning-lockdown (2016-11-24)
19031903
19041904This is an interim release primarily to publish some security fixes, in particular a modification to
1905- ensure that Angular 1 can pass the linter checks for Mozilla add-ons.
1905+ ensure that AngularJS can pass the linter checks for Mozilla add-ons.
19061906
19071907## Security Fixes
19081908- **bootstrap:**
@@ -1990,7 +1990,7 @@ ensure that Angular 1 can pass the linter checks for Mozilla add-ons.
19901990
19911991Previously, `$compileProvider.preAssignBindingsEnabled` was
19921992set to true by default. This means bindings were pre-assigned in component
1993- constructors. In Angular 1.5+ the place to put the initialization logic
1993+ constructors. In AngularJS 1.5+ the place to put the initialization logic
19941994relying on bindings being present is the controller `$onInit` method.
19951995
19961996To migrate follow the example below:
@@ -5116,12 +5116,12 @@ before the $parsers are applied. Previously, the modelValue
51165116
51175117This fixes issues where `input[date]` and `input[number]` cannot
51185118be validated because the viewValue string is parsed into
5119- `Date` and `Number` respectively (starting with Angular 1.3).
5119+ `Date` and `Number` respectively (starting with AngularJS 1.3).
51205120It also brings the directives in line with HTML5 constraint
51215121validation, which validates against the input value.
51225122
51235123This change is unlikely to cause applications to fail, because even
5124- in Angular 1.2, the value that was validated by pattern could have
5124+ in AngularJS 1.2, the value that was validated by pattern could have
51255125been manipulated by the $parsers, as all validation was done
51265126inside this pipeline.
51275127
@@ -5232,12 +5232,12 @@ before the $parsers are applied. Previously, the modelValue
52325232
52335233This fixes issues where `input[date]` and `input[number]` cannot
52345234be validated because the viewValue string is parsed into
5235- `Date` and `Number` respectively (starting with Angular 1.3).
5235+ `Date` and `Number` respectively (starting with AngularJS 1.3).
52365236It also brings the directives in line with HTML5 constraint
52375237validation, which validates against the input value.
52385238
52395239This change is unlikely to cause applications to fail, because even
5240- in Angular 1.2, the value that was validated by pattern could have
5240+ in AngularJS 1.2, the value that was validated by pattern could have
52415241been manipulated by the $parsers, as all validation was done
52425242inside this pipeline.
52435243
@@ -5451,7 +5451,7 @@ describe('$q.when', function() {
54515451 it('should not need a call to $timeout.flush() to resolve already resolved promises',
54525452 inject(function($q, $timeout) {
54535453 $q.when('foo');
5454- // In Angular 1.4.3 a call to `$timeout.flush();` was needed
5454+ // In AngularJS 1.4.3 a call to `$timeout.flush();` was needed
54555455 $timeout.verifyNoPendingTasks();
54565456 }));
54575457
@@ -6927,7 +6927,7 @@ it is now implemented in the ngOptions directive itself.
69276927the `select` directive will now use strict comparison of the `ngModel` scope value against `option`
69286928values to determine which option is selected. This means `Number` scope values will not be matched
69296929against numeric option strings.
6930- In Angular 1.3.x, setting `scope.x = 200` would select the `option` with the value 200 in the following `select`:
6930+ In AngularJS 1.3.x, setting `scope.x = 200` would select the `option` with the value 200 in the following `select`:
69316931
69326932```
69336933<select ng-model="x">
@@ -6936,7 +6936,7 @@ In Angular 1.3.x, setting `scope.x = 200` would select the `option` with the val
69366936</select>
69376937```
69386938
6939- In Angular 1.4.x, the 'unknown option' will be selected.
6939+ In AngularJS 1.4.x, the 'unknown option' will be selected.
69406940To remedy this, you can simply initialize the model as a string: `scope.x = '200'`, or if you want to
69416941keep the model as a `Number`, you can do the conversion via `$formatters` and `$parsers` on `ngModel`:
69426942
@@ -15510,7 +15510,7 @@ with the `$route` service
1551015510
1551115511### Breaking changes
1551215512- we now support ISO 8601 extended format datetime strings (YYYY-MM-DDTHH:mm:ss.SSSZ) as defined
15513- in EcmaScript 5 throughout angular . This means that the following apis switched from
15513+ in EcmaScript 5 throughout AngularJS . This means that the following apis switched from
1551415514 YYYY-MM-DDTHH:mm:ssZ to YYYY-MM-DDTHH:mm:ss.SSSZ (note the added millis) when representing dates:
1551515515 - angular.Date.toString
1551615516 - angular.String.fromDate
0 commit comments