I have created an Angular project using older cli version which by default installed Angular version 5.2.7 but now I want to upgrade my application to latest stable angular build i.e. 5.2.10.
So the problem which I am struggling is that when we install angular package we have also installed other packages such as animation, http, forms, core, common and etc. And all these modules are dependent. If there is any version mismatch then application will break.
So the question is, what are those packages which need to be updated when we want to upgrade our angular version? Where we can find list of all the package dependencies(with their compatible version no) that need to be upgraded along with a new angular version.
Does official angular development team or may be their git hub page contains these dependencies list?