-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Outdated package-lock.json
version fields
#4060
Comments
Thanks for letting us know. No impact to end users, correct? |
Not that I'm aware of, but I can't find a definitive answer. The packages are still published with the correct version. I found relevant information from the lerna repository to avoid this in the future: lerna#1415 |
I've attempted to fix this issue by adding this Line 13 in 94e05a7
npx lerna bootstrap --ignore-scripts -- --package-lock-only --no-audit While this bumps the --- a/packages/@aws-cdk/aws-autoscaling-common/package-lock.json
+++ b/packages/@aws-cdk/aws-autoscaling-common/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@aws-cdk/aws-autoscaling-common",
- "version": "1.8.0",
+ "version": "1.9.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@@ -25,18 +25,6 @@
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==",
"dev": true
- },
- "cdk-build-tools": {
- "version": "file:../../../tools/cdk-build-tools",
- "dev": true
- },
- "cdk-integ-tools": {
- "version": "file:../../../tools/cdk-integ-tools",
- "dev": true
- },
- "pkglint": {
- "version": "file:../../../tools/pkglint",
- "dev": true
}
}
} |
I don't think these are important actually in package-lock files. @RomainMuller what do you think? |
The |
We no longer use |
🐛 Bug Report
What is the problem?
Every package's
package-lock.json
version field wasn't updated for the 1.8.0 release:aws-cdk/packages/@aws-cdk/core/package-lock.json
Line 3 in f63bf6f
This causes changes when building the application
Reproduction Steps
Environment
Other information
This probably should have been caught by #3451
The text was updated successfully, but these errors were encountered: