Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/bumpy-otters-kiss.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-frogs-tap.md

This file was deleted.

32 changes: 0 additions & 32 deletions .changeset/thick-dots-sit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-grapes-rescue.md

This file was deleted.

39 changes: 39 additions & 0 deletions packages/wrangler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading