We have ng-redux as one of our package dependencies. While working on a security issues with lodash < 4.17.13 I realized that ng-redux is bringing in lodash@4.17.13 instead of latest version inferring it from ^4.17.13
Here's how package.json specifies the dependencies:
Background
We have
ng-redux
as one of our package dependencies. While working on a security issues withlodash < 4.17.13
I realized thatng-redux
is bringing inlodash@4.17.13
instead of latest version inferring it from^4.17.13
Here's how package.json specifies the dependencies:
There was a change made to remove precise locking of lodash dependency in this PR but seems like the
lockfile
wasn't updated with that change.Details
This PR runs
yarn
command for this repo and updates the dependencies.