Minor Changes
-
#15699
45b3b81Thanks @skepticfx! - Remove the experimental Container image environment bindingDurable Object-managed Containers now use
ctx.container.imageswithout Wrangler generatingenv.EXPERIMENTAL_CLOUDFLARE_CONTAINER_IMAGES. Update code using the experimental environment binding to readctx.container.imagesand regenerate your Worker types.Version deployments identify managed applications from native named images, and
--containers-rollout=nonepreserves native Container metadata. Containers without named images must first be provisioned withwrangler deploy;versions uploadverifies that their applications already exist. The old binding is no longer read or reserved, including on previously uploaded versions.keep_varsretains existing variables as usual; redeploy without it to remove an existing experimental binding.
Patch Changes
-
#15707
95af41dThanks @halfstack-dev! - Support nested D1 migration layouts inreadD1Migrations()readD1Migrations()now accepts the samemigrationsDir/migrationsPatternoptions Wrangler uses, so Vitest can apply Drizzle-style nested files such as0001_init/migration.sql. Discovery is shared with Wrangler via@cloudflare/workers-utils, so the test path andwrangler d1 migrations applystay aligned.The original
readD1Migrations(migrationsPath)signature still reads only top-level*.sqlfiles in that directory.