CLI: Update Go SDK to 0bf19a19dfd789f8a73e02513360d019fcb9d37d#118
Open
kernel-internal[bot] wants to merge 3 commits intomainfrom
Open
CLI: Update Go SDK to 0bf19a19dfd789f8a73e02513360d019fcb9d37d#118kernel-internal[bot] wants to merge 3 commits intomainfrom
kernel-internal[bot] wants to merge 3 commits intomainfrom
Conversation
Update Go SDK dependency to latest version. Full SDK method enumeration performed - all SDK methods have corresponding CLI commands (no coverage gaps found). Triggered by: kernel/kernel-go-sdk@b6a60bb Co-authored-by: Cursor <[email protected]>
4 tasks
Updates the Go SDK dependency to the latest version. Coverage Analysis: Full enumeration of SDK methods and CLI commands was performed. No coverage gaps were found - all SDK methods have corresponding CLI commands. Co-authored-by: Cursor <[email protected]>
- `kernel deploy delete <id>`: deletes a single deployment by ID with confirmation prompt (skippable via --yes) - `kernel app delete <name>`: deletes all deployments for an app, optionally scoped to a specific --version, with parallel deletion and a progress spinner Both commands use the new Deployments.Delete SDK method added in the go-sdk bump. Co-authored-by: Cursor <[email protected]>
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.
This PR updates the Go SDK dependency to the latest version.
SDK Update
Coverage Analysis
A full enumeration of SDK methods and CLI commands was performed. No coverage gaps were found.
Triggered by: kernel/kernel-go-sdk@0bf19a1
Reviewer: @rgarcia
Note
Medium Risk
Introduces new deletion commands that can permanently remove deployments/apps; mistakes in argument/flag usage or concurrency could lead to unintended destructive operations.
Overview
Adds destructive CLI capabilities:
kernel deploy delete <deployment_id>(with confirmation and--yes, plus 404-friendly handling) andkernel app delete <app_name>to delete all deployments for an app, optionally scoped by--version.app deletelists deployments and then deletes them in parallel viaerrgroupwith spinner progress feedback. The PR also bumpsgithub.com/kernel/kernel-go-sdkto0bf19a19...and promotesgolang.org/x/syncto a direct dependency.Written by Cursor Bugbot for commit 256b8e3. This will update automatically on new commits. Configure here.