@W-21729309 Merge bundle uninstall and installed list CLI code to main (plugin)#1152
Open
@W-21729309 Merge bundle uninstall and installed list CLI code to main (plugin)#1152
Conversation
Made-with: Cursor
Introduces the command to display all installed package bundles in the target org, including details about each bundle and its associated packages. Updates the command schema and adds relevant messages for user guidance.
Made-with: Cursor
- Bumped @salesforce/core from ^8.27.0 to ^8.27.1. - Updated AWS SDK dependencies to their latest versions. - Changed INSTALL_URL_BASE usage from .toString() to .href in multiple files for consistency.
…-and-uninstall-cli
Collaborator
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

@W-21729309
What does this PR do?
This PR adds two new CLI commands for package bundle management:
package bundle uninstall — Allows users to uninstall a package bundle version from a target org. Supports uninstalling by bundle version ID (1Q8...) or alias, with optional --wait polling and --verbose progress output.
package bundle installed list — Allows users to list all installed package bundle versions in a target org, including details about each bundle and its associated component packages. This replaces the old package bundle install list command (which is removed in this PR on the plugin side).
On the packaging library side, this introduces:
PackageBundleUninstall class with methods for creating uninstall requests, polling status, and querying uninstall statuses
PackageBundleInstalledList class for querying installed bundle versions and their components
Supporting types and interfaces for uninstall and installed-list SObjects
On the plugin-packaging CLI side, this introduces:
PackageBundleUninstallCommand with flags for bundle ID/alias, wait, and verbose
PackageBundleInstalledListCommand for displaying installed bundles
Removes the deprecated package bundle install list command in favor of package bundle installed list
What issues does this PR fix or reference?