-
Notifications
You must be signed in to change notification settings - Fork 69
chore(cli-lib-alpha): stop releasing deprecated package #905
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
chore(cli-lib-alpha): stop releasing deprecated package #905
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #905 +/- ##
==========================================
+ Coverage 81.91% 83.00% +1.09%
==========================================
Files 71 71
Lines 10350 10345 -5
Branches 1268 1289 +21
==========================================
+ Hits 8478 8587 +109
+ Misses 1832 1718 -114
Partials 40 40
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
5680ed8 to
6de0e28
Compare
|
Total lines changed 27324 is greater than 1000. Please consider breaking this PR down. |
No that's fine. I'm removing things on purpose. |
Stop releasing the deprecated `@aws-cdk/cli-lib-alpha` package. This change removes the package from the code base and integ tests. If we ever need to release it again, we can revert this PR. I tried to just disable releasing, but then integ tests fail and I think removing it all in one PR is just easier if we need to go back to it. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license
| // This is necessary because the new versioning of @aws-cdk/cli-lib-alpha | ||
| // matches the CLI and not the framework. | ||
| CLI_LIB_VERSION_MIRRORS_CLI: 'true', |
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.
this change could be the reason why we don't pick up the right version anymore
#905 intended to trigger a release for `@aws-cdk-testing/cli-integ`, where it did not rely on the deprecated `cli-lib-alpha` module. because it was marked as a chore, the release was skipped and the latest version still runs the tests that were removed in #905. These tests are now failing because they cannot find the right version of `cli-lib-alpha`. By releasing a version of `@aws-cdk-testing/cli-integ`, we won't have to worry about this anymore. this PR is intended to trigger a release and nothing else. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license
Stop releasing the deprecated
@aws-cdk/cli-lib-alphapackage. This change removes the package from the code base and integ tests. If we ever need to release it again, we can revert this PR.I tried to just disable releasing, but then integ tests fail and I think removing it all in one PR is just easier if we need to go back to it.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license