Floating `next` package and image tags can resolve to different code later
Source references: 4The upgrade installs `@cloudflare/sandbox@next`, uses `cloudflare/sandbox:next`, and explicitly permits remaining on floating `next`. The container tag can move to a new image on a later pull, and a fresh dependency resolution can select a newer preview release.
Builds at different times may execute dependency or image code that was not reviewed in this migration, introducing compatibility failures, supply-chain exposure, or production drift.
Both the package and image use floating `next` tags, so later installs or pulls may resolve to different preview releases. Requiring the same release line does not make builds reproducible over time. The user can require both to be pinned to one tested exact prerelease, with a lockfile or image digest retained.
```shnpm install @cloudflare/sandbox@next``````dockerfileFROM cloudflare/sandbox:next# Python: cloudflare/sandbox:next-python```Same prerelease tag on Worker and image when not on floating `next`.Show 3 other places
```shnpm install @cloudflare/sandbox@next``````dockerfileFROM cloudflare/sandbox:next# Python: cloudflare/sandbox:next-python```Same prerelease tag on Worker and image when not on floating `next`.