-
Notifications
You must be signed in to change notification settings - Fork 4.6k
chore(*): upgrade all dependencies, switch from bower to npm and other improvements #430
Conversation
So there's good news and bad news. 👍 The good news is that everyone that needs to sign a CLA (the pull request submitter and all commit authors) have done so. Everything is all good there. 😕 The bad news is that it appears that one or more commits were authored by someone other than the pull request submitter. We need to confirm that all authors are ok with their commits being contributed to this project. Please have them confirm that here in the pull request. Note to project maintainer: This is a terminal state, meaning the |
Basically, 5d33f6d is the new commit. The rest are just rebased on top of that. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like we need to update the version of node that we run on Travis: https://travis-ci.org/angular/angular-phonecat/builds/355802674#L701
Otherwise LGTM
91e33dc
to
02e4f57
Compare
The non-step commits are the new ones (the rest are just step commits rebased on top of the new ones). There seems to be some issue with the way tests are run off of branches on CI (I believe the wrong commits are checked out), but I don't have time to look into it right now. I'll try to revisit in |
e7c2b1a
to
2b3a969
Compare
Notes:
|
Similar to what was done in 6234cda for the `v1.4.x` branch. The tutorial will slightly change for v1.7.x (see angular/angular-phonecat#430 for details), so this commit ensures the tutorial for older versions (v1.5.x, v1.6.x) remains usable.
fdb1d95
to
70fcbc8
Compare
Protractor's `browser.getLocationAbsUrl()` has been deprecated and `browser.getCurrentUrl()` is the recommended alternative. Related: angular/angular-phonecat#430
f6b4132
to
f15c630
Compare
Protractor's `browser.getLocationAbsUrl()` has been deprecated and `browser.getCurrentUrl()` is the recommended alternative. Related: angular/angular-phonecat#430
Merged as c953da6f9...c9eef4716. |
Protractor's `browser.getLocationAbsUrl()` has been deprecated and `browser.getCurrentUrl()` is the recommended alternative. Related: angular/angular-phonecat#430
Protractor's `browser.getLocationAbsUrl()` has been deprecated and `browser.getCurrentUrl()` is the recommended alternative. Related: angular/angular-phonecat#430
Through protractor we transitively depend on a ChromeDriver version that does not support the latest stable Chrome version. Upgrading protractor fixes this. I took the chance to upgrade all dependencies.
I also committed the lockfile that is automatically created by
npm install
these days, so unfamiliar users won't be left wondering what this new file is all about and what to do with it every time theynpm install
(or run scripts that donpm install
, such asnpm test
ornpm run protractor
).Fixes #429.
Related PR: angular/angular.js#16753