feat: add deploy dry-run, mainnet CI target, rollback procedure, and versioning policy - #1295
Merged
Gbangbolaoluwagbemiga merged 1 commit intoJul 29, 2026
Conversation
…versioning policy Implements four mainnet-readiness issues: - scripts/deploy.sh: add --dry-run mode (simulate instead of broadcast), --confirm-mainnet guard, and --wasm path option (HyperSafeD#1135) - .github/workflows/soroban-deploy.yml: add mainnet deployment target gated behind GitHub Environment with manual approval (HyperSafeD#1136) - ROLLBACK_PROCEDURE.md: document 5 failure scenarios with circuit-breaker, proxy redeploy, and timelock mitigations (HyperSafeD#1137) - VERSIONING_POLICY.md: define semver policy for CLI, output schemas, rule sets, exit codes, and library API (HyperSafeD#1138) Closes HyperSafeD#1135 Closes HyperSafeD#1136 Closes HyperSafeD#1137 Closes HyperSafeD#1138
|
@Abidoyesimze is attempting to deploy a commit to the gbangbolaoluwagbemiga's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@devsimze Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Gbangbolaoluwagbemiga
merged commit Jul 29, 2026
3f68b1d
into
HyperSafeD:main
16 of 26 checks passed
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.
Summary
Implements four mainnet-readiness deployment operations issues (A3 workstream).
Changes
#1135 — Deploy dry-run mode
scripts/deploy.shrewritten with--dry-run,--confirm-mainnet,--wasmflagssoroban contract simulate(preflight) instead ofsoroban contract deploy#1136 — Mainnet CI target with manual approval
targetinput (testnet|mainnet) toworkflow_dispatchbuild+testnet-deploy+mainnet-deploy+summaryjobsmainnet-deployjob gated behindmainnetGitHub Environment (requires reviewer approval)SOROBAN_MAINNET_SECRET_KEYand runs dry-run before live deploy with--confirm-mainnet#1137 — Rollback procedure
ROLLBACK_PROCEDURE.mdcovering 5 failure scenarios: bad WASM upload, failed init, post-deploy vulnerability, storage exhaustion, admin key compromise#1138 — Versioning policy
VERSIONING_POLICY.mddefining semver for CLI flags, SARIF/JSON output schemas, rule set changes, exit codes, and library APIschemas/analysis-output.jsonandschemas/sarif-2.1.0.jsonCHANGELOG.mdandREADME.mdFiles changed
.github/workflows/soroban-deploy.yml— mainnet target + shared buildscripts/deploy.sh— dry-run + confirm-mainnetROLLBACK_PROCEDURE.md— new fileVERSIONING_POLICY.md— new fileCHANGELOG.md— link to versioning policyREADME.md— links to both new docsCloses #1135
Closes #1136
Closes #1137
Closes #1138