@angular-wave/angular.ts 0.8.0 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@types/angular.d.ts +3 -3
- package/@types/core/compile/compile.d.ts +5 -2
- package/@types/core/di/ng-module.d.ts +61 -25
- package/@types/interface.d.ts +1 -1
- package/@types/router/directives/state-directives.d.ts +2 -2
- package/@types/router/directives/view-directive.d.ts +1 -1
- package/@types/router/params/param-type.d.ts +0 -1
- package/@types/router/{globals.d.ts → router.d.ts} +1 -1
- package/@types/router/state/state-registry.d.ts +2 -2
- package/@types/router/state/state-service.d.ts +6 -9
- package/@types/router/transition/transition-service.d.ts +3 -3
- package/@types/router/transition/transition.d.ts +4 -4
- package/@types/router/url/url-matcher.d.ts +0 -1
- package/@types/router/url/url-rule.d.ts +13 -4
- package/@types/router/url/url-service.d.ts +2 -2
- package/@types/shared/hof.d.ts +0 -6
- package/CHANGELOG.md +0 -72
- package/CONTRIBUTING.md +0 -1
- package/DEVELOPERS.md +0 -1
- package/TRIAGING.md +0 -1
- package/dist/angular-ts.esm.js +103 -103
- package/dist/angular-ts.umd.js +103 -103
- package/dist/angular-ts.umd.min.js +1 -1
- package/docs/layouts/shortcodes/version.html +1 -1
- package/docs/static/typedoc/assets/hierarchy.js +1 -1
- package/docs/static/typedoc/assets/navigation.js +1 -1
- package/docs/static/typedoc/assets/search.js +1 -1
- package/docs/static/typedoc/assets/style.css +2 -9
- package/docs/static/typedoc/classes/NgModule.html +3 -3
- package/docs/static/typedoc/types/Injectable.html +4 -1
- package/docs/static/typedoc/types/InjectableFactory.html +1 -4
- package/package.json +2 -2
- package/src/angular.js +10 -10
- package/src/angular.spec.js +4 -4
- package/src/core/compile/compile.js +1 -1
- package/src/core/di/ng-module.js +26 -21
- package/src/core/parse/parse.spec.js +29 -30
- package/src/directive/events/event.spec.js +5 -5
- package/src/directive/messages/messages.md +0 -4
- package/src/directive/repeat/repeat.js +1 -1
- package/src/injection-tokens.js +2 -2
- package/src/interface.ts +1 -2
- package/src/ng.js +5 -5
- package/src/ng.spec.js +1 -1
- package/src/router/directives/state-directives.js +5 -5
- package/src/router/directives/state-directives.spec.js +2 -2
- package/src/router/directives/view-directive.js +5 -5
- package/src/router/directives/view-directive.spec.js +20 -20
- package/src/router/params/param-type.js +0 -1
- package/src/router/params/param.js +1 -1
- package/src/router/{globals.js → router.js} +1 -1
- package/src/router/services.spec.js +3 -3
- package/src/router/state/state-registry.js +2 -2
- package/src/router/state/state-service.js +5 -8
- package/src/router/template-factory.spec.js +6 -6
- package/src/router/transition/transition-service.js +2 -2
- package/src/router/transition/transition.js +2 -2
- package/src/router/url/url-matcher.js +9 -11
- package/src/router/url/url-rule.js +7 -2
- package/src/router/url/url-service.js +6 -3
- package/src/router/url/url-service.spec.js +6 -39
- package/src/router/view-scroll.js +3 -1
- package/src/router/view-scroll.spec.js +11 -11
- package/src/services/location/location.js +9 -2
- package/src/services/location/location.spec.js +6 -0
- package/src/shared/common.js +5 -5
- package/src/shared/hof.js +0 -14
- package/src/shared/min-err.spec.js +1 -1
- package/src/shared/url-utils/url-utils.spec.js +0 -1
- package/src/shared/utils.spec.js +4 -4
- package/tsconfig.json +1 -7
package/CHANGELOG.md
CHANGED
|
@@ -6729,7 +6729,6 @@ version 1.5 or higher.
|
|
|
6729
6729
|
|
|
6730
6730
|
- **$component**:
|
|
6731
6731
|
_These breaking changes affect only applications updating from previous 1.5 beta / rc versions_
|
|
6732
|
-
|
|
6733
6732
|
- Due to [d91cf167](https://github.com/angular/angular.js/commit/d91cf167960d47ce38fec0d33cab6119268623f0),
|
|
6734
6733
|
the default `controllerAs` value for components is now `$ctrl` (previously the name of the component was used).
|
|
6735
6734
|
To migrate, either set `controllerAs` to the component name, or change the property name in your templates
|
|
@@ -12363,7 +12362,6 @@ See https://github.com/angular/angular.js/issues/10236 for an example.
|
|
|
12363
12362
|
promise unwrapping has been removed. It has been deprecated since 1.2.0-rc.3.
|
|
12364
12363
|
It can no longer be turned on.
|
|
12365
12364
|
Two methods have been removed:
|
|
12366
|
-
|
|
12367
12365
|
- `$parseProvider.unwrapPromises`
|
|
12368
12366
|
- `$parseProvider.logPromiseWarnings`
|
|
12369
12367
|
|
|
@@ -12664,7 +12662,6 @@ $scope.resetWithCancel = function (e) {
|
|
|
12664
12662
|
no longer has a `.parts` array set on it.
|
|
12665
12663
|
|
|
12666
12664
|
Instead it has two arrays:
|
|
12667
|
-
|
|
12668
12665
|
- `.expressions`, an array of the expressions in the
|
|
12669
12666
|
interpolated text. The expressions are parsed with
|
|
12670
12667
|
`$parse`, with an extra layer converting them to strings
|
|
@@ -13120,7 +13117,6 @@ For more info: http://blog.angularjs.org/2013/12/angularjs-13-new-release-approa
|
|
|
13120
13117
|
## Breaking Changes
|
|
13121
13118
|
|
|
13122
13119
|
- **$animate:**
|
|
13123
|
-
|
|
13124
13120
|
- due to [4f84f6b3](https://github.com/angular/angular.js/commit/4f84f6b3e4210ae1eb14728a46d43dd961700a0c),
|
|
13125
13121
|
ngClass and {{ class }} will now call the `setClass`
|
|
13126
13122
|
animation callback instead of addClass / removeClass when both a
|
|
@@ -13140,7 +13136,6 @@ For more info: http://blog.angularjs.org/2013/12/angularjs-13-new-release-approa
|
|
|
13140
13136
|
change callbacks are only fired if registered on the element being animated.
|
|
13141
13137
|
|
|
13142
13138
|
- **input:**
|
|
13143
|
-
|
|
13144
13139
|
- due to [a9fcb0d0](https://github.com/angular/angular.js/commit/a9fcb0d0fc6456f80501b8820d02b04d7c15b6d6),
|
|
13145
13140
|
input[type=file] will no longer support ngModel. Due to browser support being spotty among target browsers,
|
|
13146
13141
|
file inputs cannot be cleanly supported, and even features which technically do work (such as ng-change)
|
|
@@ -13859,7 +13854,6 @@ There are no breaking changes in this release (promise!)
|
|
|
13859
13854
|
## Breaking Changes
|
|
13860
13855
|
|
|
13861
13856
|
- **$compile:**
|
|
13862
|
-
|
|
13863
13857
|
- due to [d0efd5ee](https://github.com/angular/angular.js/commit/d0efd5eefcc0aaf167c766513e152b74dd31bafe),
|
|
13864
13858
|
Child elements that are defined either in the application template or in some other
|
|
13865
13859
|
directives template do not get the isolate scope. In theory, nobody should rely on this behavior, as
|
|
@@ -13898,7 +13892,6 @@ There are no breaking changes in this release (promise!)
|
|
|
13898
13892
|
|
|
13899
13893
|
Closes [#1924](https://github.com/angular/angular.js/issues/1924) and
|
|
13900
13894
|
[#2500](https://github.com/angular/angular.js/issues/2500)
|
|
13901
|
-
|
|
13902
13895
|
- due to [79223eae](https://github.com/angular/angular.js/commit/79223eae5022838893342c42dacad5eca83fabe8),
|
|
13903
13896
|
|
|
13904
13897
|
Previously, the interpolation priority was `-100` in 1.2.0-rc.2, and `100` before 1.2.0-rc.2.
|
|
@@ -13927,7 +13920,6 @@ There are no breaking changes in this release (promise!)
|
|
|
13927
13920
|
the scope chain. It has been a long standing best practice to keep
|
|
13928
13921
|
sensitive APIs outside of the scope chain (in a closure or your
|
|
13929
13922
|
controller.) That's easier said that done for two reasons:
|
|
13930
|
-
|
|
13931
13923
|
1. JavaScript does not have a notion of private properties so if you need
|
|
13932
13924
|
someone on the scope chain for JavaScript use, you also expose it to
|
|
13933
13925
|
Angular expressions
|
|
@@ -13935,7 +13927,6 @@ There are no breaking changes in this release (promise!)
|
|
|
13935
13927
|
entire controller on the scope chain greatly increasing the exposed surface.
|
|
13936
13928
|
|
|
13937
13929
|
Though Angular expressions are written and controlled by the developer, they:
|
|
13938
|
-
|
|
13939
13930
|
1. Typically deal with user input
|
|
13940
13931
|
2. Don't get the kind of test coverage that JavaScript code would
|
|
13941
13932
|
|
|
@@ -13972,7 +13963,6 @@ There are no breaking changes in this release (promise!)
|
|
|
13972
13963
|
([e7730297](https://github.com/angular/angular.js/commit/e773029717f11d727af609a139b173a135c79eab))
|
|
13973
13964
|
|
|
13974
13965
|
- **Directives:**
|
|
13975
|
-
|
|
13976
13966
|
- **ngRepeat:** support repeating over `ngInclude` and other directives that replace repeated nodes
|
|
13977
13967
|
([9efa46ae](https://github.com/angular/angular.js/commit/9efa46ae640cde17487c341daa9a75c0bd79da02),
|
|
13978
13968
|
[#3104](https://github.com/angular/angular.js/issues/3104))
|
|
@@ -14042,7 +14032,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14042
14032
|
([4ff1a650](https://github.com/angular/angular.js/commit/4ff1a65031e985bf930f6761c1ecf46e4db98d6e),
|
|
14043
14033
|
[#1705](https://github.com/angular/angular.js/issues/1705))
|
|
14044
14034
|
- **Scope:**
|
|
14045
|
-
|
|
14046
14035
|
- `$evalAsync` executes on the right scope
|
|
14047
14036
|
([10cc1a42](https://github.com/angular/angular.js/commit/10cc1a42c925749f88433546d41d35ba07a88e6f))
|
|
14048
14037
|
- make `stopPropagation` only stop its own event
|
|
@@ -14050,12 +14039,10 @@ There are no breaking changes in this release (promise!)
|
|
|
14050
14039
|
[#4204](https://github.com/angular/angular.js/issues/4204))
|
|
14051
14040
|
|
|
14052
14041
|
- **Filters:**
|
|
14053
|
-
|
|
14054
14042
|
- **date:** allow negative millisecond value strings
|
|
14055
14043
|
([025c9219](https://github.com/angular/angular.js/commit/025c92190376414c15f15fd20a75b41489a4e70a))
|
|
14056
14044
|
|
|
14057
14045
|
- **Directives:**
|
|
14058
|
-
|
|
14059
14046
|
- correct priority of structural directives (ngRepeat, ngSwitchWhen, ngIf, ngInclude, ngView)
|
|
14060
14047
|
([b7af76b4](https://github.com/angular/angular.js/commit/b7af76b4c5aa77648cc1bfd49935b48583419023))
|
|
14061
14048
|
- **input:** `false` is no longer an empty value by default
|
|
@@ -14075,7 +14062,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14075
14062
|
[#3759](https://github.com/angular/angular.js/issues/3759))
|
|
14076
14063
|
|
|
14077
14064
|
- **jqLite:**
|
|
14078
|
-
|
|
14079
14065
|
- ignore class methods on comment elements
|
|
14080
14066
|
([64fd2c42](https://github.com/angular/angular.js/commit/64fd2c421ed582c16812d164a8a6f031b8e66287))
|
|
14081
14067
|
- use get/setAttribute so that jqLite works on SVG nodes
|
|
@@ -14083,7 +14069,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14083
14069
|
[#3858](https://github.com/angular/angular.js/issues/3858))
|
|
14084
14070
|
|
|
14085
14071
|
- **Misc:**
|
|
14086
|
-
|
|
14087
14072
|
- **isArrayLike:** correctly handle string primitives
|
|
14088
14073
|
([5b8c7884](https://github.com/angular/angular.js/commit/5b8c78843e8d62a7a67cead8bf04c76aa8ee411d),
|
|
14089
14074
|
[#3356](https://github.com/angular/angular.js/issues/3356))
|
|
@@ -14092,7 +14077,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14092
14077
|
[#3331](https://github.com/angular/angular.js/issues/3331))
|
|
14093
14078
|
|
|
14094
14079
|
- **ngRoute:**
|
|
14095
|
-
|
|
14096
14080
|
- **ngView:** IE8 regression due to expando on non-element nodes
|
|
14097
14081
|
([255e8c13](https://github.com/angular/angular.js/commit/255e8c13cf0fd78f1c4d7c279be7bf47c2402956),
|
|
14098
14082
|
[#3971](https://github.com/angular/angular.js/issues/3971))
|
|
@@ -14100,7 +14084,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14100
14084
|
([0ff86c32](https://github.com/angular/angular.js/commit/0ff86c323359fba1a60bacab178e3c68528f8e1f))
|
|
14101
14085
|
|
|
14102
14086
|
- **ngResource:**
|
|
14103
|
-
|
|
14104
14087
|
- pass transformed value to both callbacks and promises
|
|
14105
14088
|
([e36e28eb](https://github.com/angular/angular.js/commit/e36e28ebd4a6c144e47d11fba8e211d8d5a9d03e),
|
|
14106
14089
|
[#3817](https://github.com/angular/angular.js/issues/3817))
|
|
@@ -14109,7 +14092,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14109
14092
|
[#4280](https://github.com/angular/angular.js/issues/4280))
|
|
14110
14093
|
|
|
14111
14094
|
- **ngSanitize:**
|
|
14112
|
-
|
|
14113
14095
|
- sanitize DOCTYPE declarations correctly
|
|
14114
14096
|
([e66c23fe](https://github.com/angular/angular.js/commit/e66c23fe55f8571a014b0686c8dbca128e7a8240),
|
|
14115
14097
|
[#3931](https://github.com/angular/angular.js/issues/3931))
|
|
@@ -14117,7 +14099,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14117
14099
|
([21e9e8cf](https://github.com/angular/angular.js/commit/21e9e8cf68ef007136da6cc212d2f1f252fb668a))
|
|
14118
14100
|
|
|
14119
14101
|
- **ngTouch:**
|
|
14120
|
-
|
|
14121
14102
|
- ngClick does not pass touchend event when jQuery is loaded
|
|
14122
14103
|
([9fd92cc3](https://github.com/angular/angular.js/commit/9fd92cc3c93a6378e8887fd46fd4ad182a375544))
|
|
14123
14104
|
- add $event to ng-swipe
|
|
@@ -14126,7 +14107,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14126
14107
|
[#4321](https://github.com/angular/angular.js/issues/4321))
|
|
14127
14108
|
|
|
14128
14109
|
- **ngAnimate:**
|
|
14129
|
-
|
|
14130
14110
|
- ensure that a timeStamp is created if not provided by the browser event
|
|
14131
14111
|
([cd216c4c](https://github.com/angular/angular.js/commit/cd216c4c30adfebb3ef633f18fab2d98e8c52ebc),
|
|
14132
14112
|
[#3053](https://github.com/angular/angular.js/issues/3053))
|
|
@@ -14175,7 +14155,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14175
14155
|
the order of postLink fn is now mirror opposite of the order in which corresponding preLinking and compile functions execute.
|
|
14176
14156
|
|
|
14177
14157
|
Previously the compile/link fns executed in this order controlled via priority:
|
|
14178
|
-
|
|
14179
14158
|
- CompilePriorityHigh, CompilePriorityMedium, CompilePriorityLow
|
|
14180
14159
|
- compile child nodes
|
|
14181
14160
|
- PreLinkPriorityHigh, PreLinkPriorityMedium, PreLinkPriorityLow
|
|
@@ -14183,7 +14162,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14183
14162
|
- PostLinkPriorityHigh, PostLinkPriorityMedium, PostLinkPriorityLow
|
|
14184
14163
|
|
|
14185
14164
|
This was changed to:
|
|
14186
|
-
|
|
14187
14165
|
- CompilePriorityHigh, CompilePriorityMedium, CompilePriorityLow
|
|
14188
14166
|
- compile child nodes
|
|
14189
14167
|
- PreLinkPriorityHigh, PreLinkPriorityMedium, PreLinkPriorityLow
|
|
@@ -14196,7 +14174,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14196
14174
|
directive was adjusted).
|
|
14197
14175
|
|
|
14198
14176
|
- **$parse:**
|
|
14199
|
-
|
|
14200
14177
|
- due to [5dc35b52](https://github.com/angular/angular.js/commit/5dc35b527b3c99f6544b8cb52e93c6510d3ac577),
|
|
14201
14178
|
$parse and templates in general will no longer automatically unwrap promises. This feature has been deprecated and if absolutely needed, it can be reenabled during transitional period via `$parseProvider.unwrapPromises(true)` api.
|
|
14202
14179
|
- due to [b6a37d11](https://github.com/angular/angular.js/commit/b6a37d112b3e1478f4d14a5f82faabf700443748),
|
|
@@ -14272,7 +14249,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14272
14249
|
([920a3804](https://github.com/angular/angular.js/commit/920a3804136d49cdaf7bc2712f5832bc50409dc9))
|
|
14273
14250
|
|
|
14274
14251
|
- **Directives:**
|
|
14275
|
-
|
|
14276
14252
|
- **ngTransclude:**
|
|
14277
14253
|
- clear the transclusion point before transcluding
|
|
14278
14254
|
([eed299a3](https://github.com/angular/angular.js/commit/eed299a31b5a6dd0363133c5f9271bf33d090c94))
|
|
@@ -14282,7 +14258,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14282
14258
|
([40c0220c](https://github.com/angular/angular.js/commit/40c0220c47c620070b30aec6ec4552c68a8689eb))
|
|
14283
14259
|
|
|
14284
14260
|
- **Filters:**
|
|
14285
|
-
|
|
14286
14261
|
- **filter:** filter on false properties
|
|
14287
14262
|
([3bc4e7fd](https://github.com/angular/angular.js/commit/3bc4e7fd20372c0cad8298bff019b32681b16026),
|
|
14288
14263
|
[#2797](https://github.com/angular/angular.js/issues/2797))
|
|
@@ -14290,7 +14265,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14290
14265
|
([5e45fd4a](https://github.com/angular/angular.js/commit/5e45fd4ac6ff7c00d34deb099fca12301cafd7b0))
|
|
14291
14266
|
|
|
14292
14267
|
- **Misc:**
|
|
14293
|
-
|
|
14294
14268
|
- parse IE11 UA string correctly
|
|
14295
14269
|
([427ee93f](https://github.com/angular/angular.js/commit/427ee93f11d0ef64b8844f9b43b2a0f21f2be2cb),
|
|
14296
14270
|
[#3682](https://github.com/angular/angular.js/issues/3682))
|
|
@@ -14299,7 +14273,6 @@ There are no breaking changes in this release (promise!)
|
|
|
14299
14273
|
([6382e21f](https://github.com/angular/angular.js/commit/6382e21fb28541a2484ac1a241d41cf9fbbe9d2c))
|
|
14300
14274
|
|
|
14301
14275
|
- **ngAnimate:**
|
|
14302
|
-
|
|
14303
14276
|
- ensure that `ngClass` is always compiled before enter, leave and move animations are applied
|
|
14304
14277
|
([36ad40b1](https://github.com/angular/angular.js/commit/36ad40b18cfdd0690411a5169aa94e222946b5cf),
|
|
14305
14278
|
[#3727](https://github.com/angular/angular.js/issues/3727), [#3603](https://github.com/angular/angular.js/issues/3603))
|
|
@@ -14363,12 +14336,10 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14363
14336
|
[#2915](https://github.com/angular/angular.js/issues/2915))
|
|
14364
14337
|
|
|
14365
14338
|
- **ngMock**
|
|
14366
|
-
|
|
14367
14339
|
- $timeout should forward delay argument
|
|
14368
14340
|
([a5fb372e](https://github.com/angular/angular.js/commit/a5fb372e1e6aed8cdb1f572f1df3d6fe89388f3e))
|
|
14369
14341
|
|
|
14370
14342
|
- **jqLite:**
|
|
14371
|
-
|
|
14372
14343
|
- return array from multi select in val()
|
|
14373
14344
|
([01cd3495](https://github.com/angular/angular.js/commit/01cd34957e778a2fa8d26e2805c2dd5a7f986465))
|
|
14374
14345
|
- forgive unregistration of a non-registered handler
|
|
@@ -14379,7 +14350,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14379
14350
|
([815053e4](https://github.com/angular/angular.js/commit/815053e403ace666b2383643227ecde5f36742c5))
|
|
14380
14351
|
|
|
14381
14352
|
- **Directives:**
|
|
14382
|
-
|
|
14383
14353
|
- **form:** pick the right attribute name for ngForm
|
|
14384
14354
|
([dc1e55ce](https://github.com/angular/angular.js/commit/dc1e55ce1a314b6c1ad4b9d5b4a31226e1fa1e18),
|
|
14385
14355
|
[#2997](https://github.com/angular/angular.js/issues/2997))
|
|
@@ -14393,7 +14363,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14393
14363
|
([3b898664](https://github.com/angular/angular.js/commit/3b898664eea9913b6b25261d7310a61de476d173))
|
|
14394
14364
|
|
|
14395
14365
|
- **Filters:**
|
|
14396
|
-
|
|
14397
14366
|
- **number:** always convert scientific notation to decimal
|
|
14398
14367
|
([408e8682](https://github.com/angular/angular.js/commit/408e868237d80f9332f2c540f91b2809d9938fbc))
|
|
14399
14368
|
- **orderBy:** remove redundant if statement
|
|
@@ -14403,7 +14372,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14403
14372
|
([751c77f8](https://github.com/angular/angular.js/commit/751c77f87b34389c5b85a23c71080d367c42d31b))
|
|
14404
14373
|
|
|
14405
14374
|
- **jqLite:**
|
|
14406
|
-
|
|
14407
14375
|
- return array from multi select in val()
|
|
14408
14376
|
([01cd3495](https://github.com/angular/angular.js/commit/01cd34957e778a2fa8d26e2805c2dd5a7f986465))
|
|
14409
14377
|
- forgive unregistration of a non-registered handler
|
|
@@ -14446,7 +14414,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14446
14414
|
[b8ea7f6a](https://github.com/angular/angular.js/commit/b8ea7f6aba2e675b85826b0bee1f21ddd7b866a5))
|
|
14447
14415
|
|
|
14448
14416
|
- **$compile:**
|
|
14449
|
-
|
|
14450
14417
|
- support animation hooks bindings to class attributes
|
|
14451
14418
|
([f2dfa891](https://github.com/angular/angular.js/commit/f2dfa8916f8ed855d55187f5400c4c2566ce9a1b))
|
|
14452
14419
|
- support multi-element directive
|
|
@@ -14458,7 +14425,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14458
14425
|
([a7150f12](https://github.com/angular/angular.js/commit/a7150f1256f2a97a931b3c0d16eab70f45e81cae))
|
|
14459
14426
|
|
|
14460
14427
|
- **$q:**
|
|
14461
|
-
|
|
14462
14428
|
- add `.catch()` as shorthand for defining promise error handlers
|
|
14463
14429
|
([a207665d](https://github.com/angular/angular.js/commit/a207665dad69248139b150cd3fe8ba13059bffb4),
|
|
14464
14430
|
[#2048](https://github.com/angular/angular.js/issues/2048),
|
|
@@ -14467,7 +14433,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14467
14433
|
([2a5c3555](https://github.com/angular/angular.js/commit/2a5c3555829da51f55abd810a828c73b420316d3))
|
|
14468
14434
|
|
|
14469
14435
|
- **$resource:**
|
|
14470
|
-
|
|
14471
14436
|
- support an unescaped URL port in the url template
|
|
14472
14437
|
([b94ca12f](https://github.com/angular/angular.js/commit/b94ca12fa0b027d8592f5717e038b7b116c59384),
|
|
14473
14438
|
[#2778](https://github.com/angular/angular.js/issues/2778))
|
|
@@ -14481,13 +14446,11 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14481
14446
|
([f1b94b4b](https://github.com/angular/angular.js/commit/f1b94b4b599ab701bc75b55bbbbb73c5ef329a93))
|
|
14482
14447
|
|
|
14483
14448
|
- **Misc:**
|
|
14484
|
-
|
|
14485
14449
|
- add source maps to all min files
|
|
14486
14450
|
([908071af](https://github.com/angular/angular.js/commit/908071afbf32c46fe9110e4a67e104bbd4b3a56b),
|
|
14487
14451
|
[#1714](https://github.com/angular/angular.js/issues/1714))
|
|
14488
14452
|
|
|
14489
14453
|
- **Directives:**
|
|
14490
|
-
|
|
14491
14454
|
- add `ngFocus` and `ngBlur` directives
|
|
14492
14455
|
([2bb27d49](https://github.com/angular/angular.js/commit/2bb27d4998805fd89db25192f53d26d259ae615f),
|
|
14493
14456
|
[#1277](https://github.com/angular/angular.js/issues/1277))
|
|
@@ -14506,14 +14469,12 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14506
14469
|
[#2454](https://github.com/angular/angular.js/issues/2454))
|
|
14507
14470
|
|
|
14508
14471
|
- **ngMobile/ngTouch:**
|
|
14509
|
-
|
|
14510
14472
|
- emit `swipeleft` and `swiperight` events
|
|
14511
14473
|
([ab189142](https://github.com/angular/angular.js/commit/ab189142988043d0513bb796c3b54ca7d07f242d))
|
|
14512
14474
|
- refactor swipe logic from `ngSwipe` directive to `$swipe` service.
|
|
14513
14475
|
([f4c6b2c7](https://github.com/angular/angular.js/commit/f4c6b2c7894cb2d82ac69a1500a27785360b81c3))
|
|
14514
14476
|
|
|
14515
14477
|
- **ngMock:**
|
|
14516
|
-
|
|
14517
14478
|
- $timeout.flushNext can expect specific timeout delays
|
|
14518
14479
|
([462ed033](https://github.com/angular/angular.js/commit/462ed033d512ae94cb188efc9453de84ace4e17e))
|
|
14519
14480
|
- support delay limit for $timeout.flush
|
|
@@ -14539,7 +14500,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14539
14500
|
## Bug Fixes
|
|
14540
14501
|
|
|
14541
14502
|
- **$compile:**
|
|
14542
|
-
|
|
14543
14503
|
- correct controller instantiation for async directives
|
|
14544
14504
|
([c173ca41](https://github.com/angular/angular.js/commit/c173ca412878d537b18df01f39e400ea48a4b398),
|
|
14545
14505
|
[#3493](https://github.com/angular/angular.js/issues/3493),
|
|
@@ -14578,7 +14538,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14578
14538
|
([15e1a29c](https://github.com/angular/angular.js/commit/15e1a29cd08993b599f390e83a249ec17f753972))
|
|
14579
14539
|
|
|
14580
14540
|
- **$http:**
|
|
14581
|
-
|
|
14582
14541
|
- allow interceptors to completely override headers
|
|
14583
14542
|
([514dc0eb](https://github.com/angular/angular.js/commit/514dc0eb16a8fe3fa7c44094d743714f73754321),
|
|
14584
14543
|
[#2770](https://github.com/angular/angular.js/issues/2770))
|
|
@@ -14586,7 +14545,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14586
14545
|
([53359d54](https://github.com/angular/angular.js/commit/53359d549e364759d5b382c229f7d326799bf418))
|
|
14587
14546
|
|
|
14588
14547
|
- **$location:**
|
|
14589
|
-
|
|
14590
14548
|
- don't initialize url hash in hashbang mode unnecessarily
|
|
14591
14549
|
([d4d34aba](https://github.com/angular/angular.js/commit/d4d34aba6efbd98050235f5b264899bb788117df))
|
|
14592
14550
|
- prevent infinite digest error due to IE bug
|
|
@@ -14599,7 +14557,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14599
14557
|
([705c9d95](https://github.com/angular/angular.js/commit/705c9d95bc3157547ac6008d2f0a6a0c0e0ca60a))
|
|
14600
14558
|
|
|
14601
14559
|
- **$parse:**
|
|
14602
|
-
|
|
14603
14560
|
- unwrap promise when setting a field
|
|
14604
14561
|
([61906d35](https://github.com/angular/angular.js/commit/61906d3517428b6d52d3284b8d26d1a46e01dad7),
|
|
14605
14562
|
[#1827](https://github.com/angular/angular.js/issues/1827))
|
|
@@ -14618,7 +14575,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14618
14575
|
[#3210](https://github.com/angular/angular.js/issues/3210))
|
|
14619
14576
|
|
|
14620
14577
|
- **Scope:**
|
|
14621
|
-
|
|
14622
14578
|
- ensure that isolate scopes use the main evalAsync queue
|
|
14623
14579
|
([3967f5f7](https://github.com/angular/angular.js/commit/3967f5f7d6c8aa7b41a5352b12f457e2fbaa251a))
|
|
14624
14580
|
- watches can now be safely unregistered inside watch handlers
|
|
@@ -14626,7 +14582,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14626
14582
|
[#2915](https://github.com/angular/angular.js/issues/2915))
|
|
14627
14583
|
|
|
14628
14584
|
- **jqLite:**
|
|
14629
|
-
|
|
14630
14585
|
- properly detect unsupported calls for on()/off()
|
|
14631
14586
|
([3824e400](https://github.com/angular/angular.js/commit/3824e40011df1c0fdf5964d78776f1a12a29c144),
|
|
14632
14587
|
[4f5dfbc3](https://github.com/angular/angular.js/commit/4f5dfbc362d9683177708ebcc00c98cf594d1287),
|
|
@@ -14651,7 +14606,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14651
14606
|
([b3d7a038](https://github.com/angular/angular.js/commit/b3d7a038d774d823ef861b76fb8bfa22e60a3df5))
|
|
14652
14607
|
|
|
14653
14608
|
- **ngMobile/ngTouch:**
|
|
14654
|
-
|
|
14655
14609
|
- emit click event for touchy clicks
|
|
14656
14610
|
([fb7d891d](https://github.com/angular/angular.js/commit/fb7d891dacdcb9f799061d5fbb96cdd2dd912196),
|
|
14657
14611
|
[#3219](https://github.com/angular/angular.js/issues/3219),
|
|
@@ -14665,7 +14619,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14665
14619
|
([0bbd20f2](https://github.com/angular/angular.js/commit/0bbd20f255b2954b5c41617fe718cf6eca36a972))
|
|
14666
14620
|
|
|
14667
14621
|
- **ngMock:**
|
|
14668
|
-
|
|
14669
14622
|
- keep withCredentials on passThrough
|
|
14670
14623
|
([3079a6f4](https://github.com/angular/angular.js/commit/3079a6f4e097a777414b8c3a8a87b8e1e20b55b5))
|
|
14671
14624
|
- keep mock.$log the api in sync with $log
|
|
@@ -14677,7 +14630,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14677
14630
|
[#2856](https://github.com/angular/angular.js/issues/2856))
|
|
14678
14631
|
|
|
14679
14632
|
- **Directives:**
|
|
14680
|
-
|
|
14681
14633
|
- **ngRepeat:** - handle iteration over identical obj values
|
|
14682
14634
|
([47a2a982](https://github.com/angular/angular.js/commit/47a2a9829f0a847bbee61cd142c43000d73ea98b),
|
|
14683
14635
|
[#2787](https://github.com/angular/angular.js/issues/2787),
|
|
@@ -14711,7 +14663,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14711
14663
|
[#3230](https://github.com/angular/angular.js/issues/3230))
|
|
14712
14664
|
|
|
14713
14665
|
- **Filters:**
|
|
14714
|
-
|
|
14715
14666
|
- **numberFilter:** always convert scientific notation to decimal
|
|
14716
14667
|
([a13c01a8](https://github.com/angular/angular.js/commit/a13c01a8e48ea4a0d59394eb94f1b12c50cfef61))
|
|
14717
14668
|
|
|
@@ -14746,7 +14697,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14746
14697
|
too many things changed, we'll write up a separate doc with migration instructions and will publish it at <http://yearofmoo.com>. Please check out the [ngAnimate module docs](http://ci.angularjs.org/job/angular.js-angular-master/lastSuccessfulBuild/artifact/build/docs/api/ngAnimate) and [$animate api docs](http://ci.angularjs.org/job/angular.js-angular-master/lastSuccessfulBuild/artifact/build/docs/api/ng.$animate) in the meantime.
|
|
14747
14698
|
|
|
14748
14699
|
- **$compile:**
|
|
14749
|
-
|
|
14750
14700
|
- due to [1adf29af](https://github.com/angular/angular.js/commit/1adf29af13890d61286840177607edd552a9df97) and [3e39ac7e](https://github.com/angular/angular.js/commit/3e39ac7e1b10d4812a44dad2f959a93361cd823b),
|
|
14751
14701
|
`img[src]` URLs are now being sanitized and a whitelist configured via `$compileProvider` can be used to configure what safe urls look like.
|
|
14752
14702
|
|
|
@@ -14839,7 +14789,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14839
14789
|
```
|
|
14840
14790
|
|
|
14841
14791
|
- **$resource:**
|
|
14842
|
-
|
|
14843
14792
|
- due to [05772e15](https://github.com/angular/angular.js/commit/05772e15fbecfdc63d4977e2e8839d8b95d6a92d),
|
|
14844
14793
|
resource instance does not have a `$then` function anymore. Use the `$promise.then` instead.
|
|
14845
14794
|
|
|
@@ -14897,7 +14846,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14897
14846
|
```
|
|
14898
14847
|
|
|
14899
14848
|
- **$route:**
|
|
14900
|
-
|
|
14901
14849
|
- due to [04cebcc1](https://github.com/angular/angular.js/commit/04cebcc133c8b433a3ac5f72ed19f3631778142b),
|
|
14902
14850
|
the syntax for named wildcard parameters in routes has changed from `*wildcard` to `:wildcard*`
|
|
14903
14851
|
|
|
@@ -14946,7 +14894,6 @@ Contains only these fixes cherry-picked from [v1.2.0rc1](#1.2.0rc1).
|
|
|
14946
14894
|
`$location.search` now supports multiple keys with the same value provided that the values are stored in an array in `$location.search`.
|
|
14947
14895
|
|
|
14948
14896
|
Before this change:
|
|
14949
|
-
|
|
14950
14897
|
- `parseKeyValue` only took the last key overwriting all the previous keys;
|
|
14951
14898
|
- `toKeyValue` joined the keys together in a comma delimited string.
|
|
14952
14899
|
|
|
@@ -15016,7 +14963,6 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
|
|
|
15016
14963
|
- allow to globally disable and enable animations
|
|
15017
14964
|
([5476cb6e](https://github.com/angular/angular.js/commit/5476cb6e9b6d7a16e3a86585bc2db5e63b16cd4d))
|
|
15018
14965
|
- **$http:**
|
|
15019
|
-
|
|
15020
14966
|
- add support for aborting via timeout promises
|
|
15021
14967
|
([9f4f5937](https://github.com/angular/angular.js/commit/9f4f5937112655a9881d3281da8e72035bc8b180),
|
|
15022
14968
|
[#1159](https://github.com/angular/angular.js/issues/1159))
|
|
@@ -15040,7 +14986,6 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
|
|
|
15040
14986
|
[#2556](https://github.com/angular/angular.js/issues/2556))
|
|
15041
14987
|
|
|
15042
14988
|
- **Directives:**
|
|
15043
|
-
|
|
15044
14989
|
- **ngAnimate:**
|
|
15045
14990
|
- add support for CSS3 Animations with working delays and multiple durations
|
|
15046
14991
|
([14757874](https://github.com/angular/angular.js/commit/14757874a7cea7961f31211b245c417bd4b20512))
|
|
@@ -15057,14 +15002,12 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
|
|
|
15057
15002
|
([af0eaa30](https://github.com/angular/angular.js/commit/af0eaa304748f330739a4b0aadb13201126c5407))
|
|
15058
15003
|
|
|
15059
15004
|
- **Mobile:**
|
|
15060
|
-
|
|
15061
15005
|
- **ngClick:** Add a CSS class while the element is held down via a tap
|
|
15062
15006
|
([52a55ec6](https://github.com/angular/angular.js/commit/52a55ec61895951999cb0d74e706725b965e9c9f))
|
|
15063
15007
|
- **ngSwipe:** Add ngSwipeRight/Left directives to ngMobile
|
|
15064
15008
|
([5e0f876c](https://github.com/angular/angular.js/commit/5e0f876c39099adb6a0300c429b8df1f6b544846))
|
|
15065
15009
|
|
|
15066
15010
|
- **docs:**
|
|
15067
|
-
|
|
15068
15011
|
- Add FullText search to replace Google search in docs
|
|
15069
15012
|
([3a49b7ee](https://github.com/angular/angular.js/commit/3a49b7eec4836ec9dc1588e6cedda942755dc7bf))
|
|
15070
15013
|
- external links to github, plunkr and jsfiddle available for code examples
|
|
@@ -15078,7 +15021,6 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
|
|
|
15078
15021
|
([629fb373](https://github.com/angular/angular.js/commit/629fb37351ce5778a40a8bc8cd7c1385b382ce75))
|
|
15079
15022
|
|
|
15080
15023
|
## Bug Fixes
|
|
15081
|
-
|
|
15082
15024
|
- **$animator:** remove dependency on window.setTimeout
|
|
15083
15025
|
([021bdf39](https://github.com/angular/angular.js/commit/021bdf3922b6525bd117e59fb4945b30a5a55341))
|
|
15084
15026
|
|
|
@@ -15086,7 +15028,6 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
|
|
|
15086
15028
|
([de2cdb06](https://github.com/angular/angular.js/commit/de2cdb0658b8b8cff5a59e26c5ec1c9b470efb9b))
|
|
15087
15029
|
|
|
15088
15030
|
- **$location:**
|
|
15089
|
-
|
|
15090
15031
|
- prevent navigation when event isDefaultPrevented
|
|
15091
15032
|
([2c69a673](https://github.com/angular/angular.js/commit/2c69a6735e8af5d1b9b73fd221274d374e8efdea))
|
|
15092
15033
|
- compare against actual instead of current URL
|
|
@@ -15100,7 +15041,6 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
|
|
|
15100
15041
|
([77ff1085](https://github.com/angular/angular.js/commit/77ff1085554675f1a8375642996e5b1e51f9ed2d))
|
|
15101
15042
|
|
|
15102
15043
|
- **$resource:**
|
|
15103
|
-
|
|
15104
15044
|
- null default param results in TypeError
|
|
15105
15045
|
([cefbcd47](https://github.com/angular/angular.js/commit/cefbcd470d4c9020cc3487b2326d45058ef831e2))
|
|
15106
15046
|
- collapse empty suffix parameters correctly
|
|
@@ -15116,7 +15056,6 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
|
|
|
15116
15056
|
([0401a7f5](https://github.com/angular/angular.js/commit/0401a7f598ef9a36ffe1f217e1a98961046fa551))
|
|
15117
15057
|
|
|
15118
15058
|
- **Directives:**
|
|
15119
|
-
|
|
15120
15059
|
- **ngAnimate:**
|
|
15121
15060
|
- eval ng-animate expression on each animation
|
|
15122
15061
|
([fd21c750](https://github.com/angular/angular.js/commit/fd21c7502f0a25364a810c26ebeecb678e5783c5))
|
|
@@ -15198,7 +15137,6 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
|
|
|
15198
15137
|
[#2417](https://github.com/angular/angular.js/issues/2417))
|
|
15199
15138
|
|
|
15200
15139
|
- **Directives:**
|
|
15201
|
-
|
|
15202
15140
|
- **ngPluralize:** handle the empty string as a valid override
|
|
15203
15141
|
([67a4a25b](https://github.com/angular/angular.js/commit/67a4a25b890fada0043c1ff98e5437d793f44d0c),
|
|
15204
15142
|
[#2575](https://github.com/angular/angular.js/issues/2575))
|
|
@@ -15227,7 +15165,6 @@ _Note: This release also contains all bug fixes available in [1.0.6](#1.0.6)._
|
|
|
15227
15165
|
## Features
|
|
15228
15166
|
|
|
15229
15167
|
- **$compile:**
|
|
15230
|
-
|
|
15231
15168
|
- allow directives to modify interpolated attributes
|
|
15232
15169
|
([fe8d893b](https://github.com/angular/angular.js/commit/fe8d893b839e9b14e3e55a3a0523cc1e6355bdd5))
|
|
15233
15170
|
- support for dynamic template generation
|
|
@@ -15249,7 +15186,6 @@ _Note: This release also contains all bug fixes available in [1.0.6](#1.0.6)._
|
|
|
15249
15186
|
([5e18a15f](https://github.com/angular/angular.js/commit/5e18a15fb01d2e81adda68503754289fa9655082))
|
|
15250
15187
|
|
|
15251
15188
|
- **http:**
|
|
15252
|
-
|
|
15253
15189
|
- support request/response promise chaining
|
|
15254
15190
|
([4ae46814](https://github.com/angular/angular.js/commit/4ae46814ff4e7c0bbcdbbefc0a97277283a84065))
|
|
15255
15191
|
- set custom default cache in $http.defaults.cache
|
|
@@ -16362,7 +16298,6 @@ docs. The biggest improvements and changes are listed below.
|
|
|
16362
16298
|
- the compiler now transparently supports several directive syntaxes. For example while before there
|
|
16363
16299
|
was just one way to use `ng:include` directive: `<ng:include src="someSrc"></ng:include>`. The new
|
|
16364
16300
|
compiler treats all of the following as equivalent:
|
|
16365
|
-
|
|
16366
16301
|
- `<ng:include src="someSrc"></ng:include>`
|
|
16367
16302
|
- `<ng-include src="someSrc"></ng-include>`
|
|
16368
16303
|
- `<ng-include src="someSrc"></ng-include>`
|
|
@@ -16402,7 +16337,6 @@ docs. The biggest improvements and changes are listed below.
|
|
|
16402
16337
|
|
|
16403
16338
|
- `angular.markup` and `angular.attrMarkup` were replaced with interpolation via `$interpolate`
|
|
16404
16339
|
service.
|
|
16405
|
-
|
|
16406
16340
|
- In the past `{{foo}}` markup was getting translated to `<span ng-bind="foo"></span>` during the
|
|
16407
16341
|
early stage of template compilation. Addition of this extra node was in some cases undesirable
|
|
16408
16342
|
and caused problems. The new compiler with the help of the $interpolate service removes the need
|
|
@@ -16540,14 +16474,12 @@ behavior and migrate your controllers one at a time: <https://gist.github.com/16
|
|
|
16540
16474
|
- fn signature change for change listener functions registered via `scope.$watch` - this means that
|
|
16541
16475
|
the scope object can be listed in the arguments list only if it's needed and skipped otherwise.
|
|
16542
16476
|
([commit](https://github.com/angular/angular.js/commit/0196411dbe179afe24f4faa6d6503ff3f69472da))
|
|
16543
|
-
|
|
16544
16477
|
- before: `scope.$watch('someModel', function(scope, newVal, oldVal) {})`
|
|
16545
16478
|
- after: `scope.$watch('someModel', function(newVal, oldVal, scope) {})`
|
|
16546
16479
|
|
|
16547
16480
|
- `scope.$watch` now compares object by reference and only if extra boolean flag is passed
|
|
16548
16481
|
comparison by equality is used. This was done to avoid unintended performance issues.
|
|
16549
16482
|
([commit](https://github.com/angular/angular.js/commit/d6e3e1baabc3acc930e4fda387b62cbd03e64577))
|
|
16550
|
-
|
|
16551
16483
|
- before: `scope.$watch('expression', function(scope, newVal, oldVal) {})`
|
|
16552
16484
|
- after: `scope.$watch('expression', function(newVal, oldVal, scope) {}, true)`
|
|
16553
16485
|
|
|
@@ -16786,7 +16718,6 @@ behavior and migrate your controllers one at a time: <https://gist.github.com/16
|
|
|
16786
16718
|
## Features:
|
|
16787
16719
|
|
|
16788
16720
|
- New forms, validation, support for HTML5 input widgets. Please check out:
|
|
16789
|
-
|
|
16790
16721
|
- [Forms overview](http://docs-next.angularjs.org/guide/dev_guide.forms)
|
|
16791
16722
|
- [form widget](http://docs-next.angularjs.org/api/angular.widget.form)
|
|
16792
16723
|
- [input widget](http://docs-next.angularjs.org/api/angular.widget.input)
|
|
@@ -16901,9 +16832,7 @@ behavior and migrate your controllers one at a time: <https://gist.github.com/16
|
|
|
16901
16832
|
|
|
16902
16833
|
- $location related changes - for complete list of api changes see:
|
|
16903
16834
|
[Migrating from earlier AngularTS releases](http://docs-next.angularjs.org/#!/guide/dev_guide.services.$location)
|
|
16904
|
-
|
|
16905
16835
|
- $location api changes:
|
|
16906
|
-
|
|
16907
16836
|
- $location.href -> $location.absUrl()
|
|
16908
16837
|
- $location.hash -> $location.url()
|
|
16909
16838
|
- $location.hashPath -> $location.path()
|
|
@@ -17376,7 +17305,6 @@ behavior and migrate your controllers one at a time: <https://gist.github.com/16
|
|
|
17376
17305
|
scope namespace pollution. (commit 3ea5941f)
|
|
17377
17306
|
|
|
17378
17307
|
Complete list of affected services:
|
|
17379
|
-
|
|
17380
17308
|
- $location
|
|
17381
17309
|
- $route
|
|
17382
17310
|
- $cookies
|
package/CONTRIBUTING.md
CHANGED
|
@@ -163,7 +163,6 @@ Before you submit your pull request consider the following guidelines:
|
|
|
163
163
|
restarted.
|
|
164
164
|
|
|
165
165
|
- If we suggest changes, then:
|
|
166
|
-
|
|
167
166
|
- Make the required updates.
|
|
168
167
|
- Re-run the AngularTS test suite to ensure tests are still passing.
|
|
169
168
|
- Commit your changes to your branch (e.g. `my-fix-branch`).
|
package/DEVELOPERS.md
CHANGED
|
@@ -356,7 +356,6 @@ is interested in the following block tags:
|
|
|
356
356
|
- `@description` - used to provide a description of a component in markdown
|
|
357
357
|
- `@link` - specifies a link to a URL or a type in the API reference.
|
|
358
358
|
Links to the API have the following structure:
|
|
359
|
-
|
|
360
359
|
- the module namespace, followed by `.` (optional, default `ng`)
|
|
361
360
|
- the `@ngdoc` type (see below), followed by `:` (optional, automatically inferred)
|
|
362
361
|
- the name
|
package/TRIAGING.md
CHANGED
|
@@ -60,7 +60,6 @@ This process based on the idea of minimizing user pain
|
|
|
60
60
|
- You are responsible for mentoring contributors helping with this issue.
|
|
61
61
|
1. Label `origin: google` for issues from Google
|
|
62
62
|
1. Assign a milestone:
|
|
63
|
-
|
|
64
63
|
- Backlog - triaged fixes and features, should be the default choice
|
|
65
64
|
- Current 1.x.y milestone (e.g. 1.3.0-beta-2) - regressions and urgent bugs only
|
|
66
65
|
|