diff --git a/.changeset/bumpy-otters-kiss.md b/.changeset/bumpy-otters-kiss.md deleted file mode 100644 index e8bea2c30610..000000000000 --- a/.changeset/bumpy-otters-kiss.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": patch ---- - -Select only successfully deployed deployments when tailing. diff --git a/.changeset/shaggy-frogs-tap.md b/.changeset/shaggy-frogs-tap.md deleted file mode 100644 index cfa76fa60fda..000000000000 --- a/.changeset/shaggy-frogs-tap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": patch ---- - -Cap the number of errors and warnings for bulk KV put to avoid consuming too much memory diff --git a/.changeset/thick-dots-sit.md b/.changeset/thick-dots-sit.md deleted file mode 100644 index 9170ed557086..000000000000 --- a/.changeset/thick-dots-sit.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -"wrangler": patch ---- - -add support for assets bindings to `getPlatformProxy` - -this change makes sure that that `getPlatformProxy`, when the input configuration -file contains an assets field, correctly returns the appropriate asset binding proxy - -example: - -```jsonc -// wrangler.jsonc -{ - "name": "my-worker", - "assets": { - "directory": "./public/", - "binding": "ASSETS", - }, -} -``` - -```js -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(); -``` diff --git a/.changeset/thin-grapes-rescue.md b/.changeset/thin-grapes-rescue.md deleted file mode 100644 index a0f73d8405ea..000000000000 --- a/.changeset/thin-grapes-rescue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wrangler": patch ---- - -Better messaging for account owned tokens in `wrangler whoami` diff --git a/packages/wrangler/CHANGELOG.md b/packages/wrangler/CHANGELOG.md index d5d48981f884..fd59d11a7924 100644 --- a/packages/wrangler/CHANGELOG.md +++ b/packages/wrangler/CHANGELOG.md @@ -1,5 +1,44 @@ # wrangler +## 3.114.11 + +### Patch Changes + +- [#9685](https://github.com/cloudflare/workers-sdk/pull/9685) [`cbea64b`](https://github.com/cloudflare/workers-sdk/commit/cbea64b37f58301485e632b99749db445e223522) Thanks [@WillTaylorDev](https://github.com/WillTaylorDev)! - Select only successfully deployed deployments when tailing. + +- [#9776](https://github.com/cloudflare/workers-sdk/pull/9776) [`6e09672`](https://github.com/cloudflare/workers-sdk/commit/6e09672d26f29ebed1b359775b5adafa34a162b5) Thanks [@vicb](https://github.com/vicb)! - Cap the number of errors and warnings for bulk KV put to avoid consuming too much memory + +- [#9694](https://github.com/cloudflare/workers-sdk/pull/9694) [`dacfc35`](https://github.com/cloudflare/workers-sdk/commit/dacfc3521da735e8d0d748e5b42ccb826660676c) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - add support for assets bindings to `getPlatformProxy` + + this change makes sure that that `getPlatformProxy`, when the input configuration + file contains an assets field, correctly returns the appropriate asset binding proxy + + example: + + ```jsonc + // wrangler.jsonc + { + "name": "my-worker", + "assets": { + "directory": "./public/", + "binding": "ASSETS", + }, + } + ``` + + ```js + 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(); + ``` + +- [#9807](https://github.com/cloudflare/workers-sdk/pull/9807) [`4dd026b`](https://github.com/cloudflare/workers-sdk/commit/4dd026b65a25b61ea8c43e94016946e26a14cbe7) Thanks [@penalosa](https://github.com/penalosa)! - Better messaging for account owned tokens in `wrangler whoami` + ## 3.114.10 ### Patch Changes diff --git a/packages/wrangler/package.json b/packages/wrangler/package.json index eba21b2c61f0..94cbee0ef71b 100644 --- a/packages/wrangler/package.json +++ b/packages/wrangler/package.json @@ -1,6 +1,6 @@ { "name": "wrangler", - "version": "3.114.10", + "version": "3.114.11", "description": "Command-line interface for all things Cloudflare Workers", "keywords": [ "wrangler",