Issue
I need to migrate my AngularJS version from 1.6.10 to 1.7.8. I would like to know will there be any code breakage after migration?
If anyone could provide the list of differences between 1.6.x and 1.7.x would be much more helpful.
Solution
Migrating from (AngularJS) 1.6 to 1.7 contains the information you're looking for. The most notable changes are:
$resource
has now support for request and requestError interceptorsSeveral deprecated features have been removed:
- the
$controllerProvider.allowGlobals()
flag- the
$compileProvider.preAssignBindingsEnabled()
flag- the
angular.lowercase
andangular.uppercase
methods- the
$cookieStore
service from thengCookies
module- the
ngClick
override directive and corresponding services from thengTouch
module- the complete
ngScenario
module
In the linked resource there is also the full list of breaking changes.
The link for the specific version 1.7.8 is: https://code.angularjs.org/1.7.8/docs/guide/migration
Answered By - lealceldeiro
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.