Minor Changes
-
#7871
f2a8d4a
Thanks @dario-piotrowicz! - add support for assets bindings togetPlatformProxy
this change makes sure that that
getPlatformProxy
, when the input configuration
file contains an assets field, correctly returns the appropriate asset binding proxyexample:
import { getPlatformProxy } from "wrangler"; const { env, dispose } = await getPlatformProxy(); const text = await (await env.ASSETS.fetch("http://0.0.0.0/file.txt")).text(); console.log(text); // logs the content of file.txt await dispose();
Patch Changes
-
#9717
d2f2f72
Thanks @nikitassharma! - Containers should default to a "dev" instance type when no instance type is specified in the wrangler config -
#9620
1b967ea
Thanks @gpanders! - Simplify containers images list output format -
#9684
94a340e
Thanks @WillTaylorDev! - Select only successfully deployed deployments when tailing.