Stabilize process streams and releases#827
Draft
ghostwriternr wants to merge 18 commits into
Draft
Conversation
ghostwriternr
requested review from
aron-cf,
scuffi and
whoiskatrin
as code owners
July 17, 2026 13:18
🦋 Changeset detectedLatest commit: 37f17f9 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
ghostwriternr
enabled auto-merge (squash)
July 17, 2026 13:18
commit: |
Contributor
🐳 Docker Images Published
Usage: FROM cloudflare/sandbox:0.0.0-pr-827-37f17f9cVersion: 📦 Standalone BinaryFor arbitrary Dockerfiles: COPY --from=cloudflare/sandbox:0.0.0-pr-827-37f17f9c /container-server/sandbox /sandbox
ENTRYPOINT ["/sandbox"]Download via GitHub CLI: gh run download 29599322840 -n sandbox-binaryExtract from Docker: docker run --rm cloudflare/sandbox:0.0.0-pr-827-37f17f9c cat /container-server/sandbox > sandbox && chmod +x sandbox |
ghostwriternr
force-pushed
the
naresh/stabilize-next-release
branch
4 times, most recently
from
July 17, 2026 15:18
ffa2892 to
c285625
Compare
Member
Author
|
Temporarily closing to run the existing privileged cleanup for the saturated disposable E2E environment. Will reopen after cleanup completes. |
Prevent an older build from replacing a newer Worker and container release when several commits reach a release branch close together.
Shell prompts can arrive before command output, so collect terminal data until the expected command result is observed.
Process subscriptions outlive the RPC calls that create them. Keep their control connection active until each stream settles so idle cleanup cannot truncate command output or port waits.
Preview publishing resolves workspace dependency versions and requires every internal package to declare one.
ghostwriternr
force-pushed
the
naresh/stabilize-next-release
branch
from
July 17, 2026 15:34
c285625 to
61e6eea
Compare
ghostwriternr
marked this pull request as draft
July 20, 2026 10:57
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.
Keep process log and port-watch subscriptions connected until they
settle. These subscriptions outlive the RPC call that creates them, so
ordinary idle cleanup was closing their control connection and truncating
command output and port waits.
Make the reusable E2E environment safe under overlapping deployments. CI
now fences the current PR revision, always redeploys immutable artifacts,
waits for all five container applications to finish rolling out, removes
stuck old-version instances, and smoke-tests every runtime before Vitest
or Playwright begins. Worker-only changes preserve existing containers
because Cloudflare only starts a rollout when the configured image changes.
Serialize branch releases so older builds cannot overwrite newer ones,
make the terminal assertion tolerate asynchronous shell prompts, and add
the internal workspace version required by preview publishing.