list released versions #14
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
edit: this PR also fixes a bunch of broken CI
This pull request introduces a new command for listing the latest release versions of all packages and refactors the release command structure to improve code reuse and maintainability. The most notable changes include the addition of the
ReleaseListCommand, extraction of shared repository-fetching logic into the abstract base class, and enhancements to user interaction and progress feedback during release operations.New Features
ReleaseListCommand(release:list) to display the latest version of each package, with options to filter by stable/unstable releases.Refactoring and Code Reuse
find_repositoriesandget_gitsplit_repositories) fromReleaseCommandtoAbstractReleaseCommandfor reuse in multiple commands.AbstractReleaseCommand::interact, removing duplicate logic from child commands.User Experience Improvements
ReleaseCommandandReleaseListCommandfor clearer feedback during long-running operations.Cleanup and Minor Fixes
PeclCommand.ReleaseCommandnow handled by the base class.These changes collectively make the release workflow more modular, user-friendly, and maintainable.