Skip to content

Commit 0dc3ec2

Browse files
Version Packages
1 parent cbea64b commit 0dc3ec2

File tree

6 files changed

+40
-48
lines changed

6 files changed

+40
-48
lines changed

.changeset/bumpy-otters-kiss.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/shaggy-frogs-tap.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/thick-dots-sit.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

.changeset/thin-grapes-rescue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/wrangler/CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# wrangler
22

3+
## 3.114.11
4+
5+
### Patch Changes
6+
7+
- [#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.
8+
9+
- [#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
10+
11+
- [#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`
12+
13+
this change makes sure that that `getPlatformProxy`, when the input configuration
14+
file contains an assets field, correctly returns the appropriate asset binding proxy
15+
16+
example:
17+
18+
```jsonc
19+
// wrangler.jsonc
20+
{
21+
"name": "my-worker",
22+
"assets": {
23+
"directory": "./public/",
24+
"binding": "ASSETS",
25+
},
26+
}
27+
```
28+
29+
```js
30+
import { getPlatformProxy } from "wrangler";
31+
32+
const { env, dispose } = await getPlatformProxy();
33+
34+
const text = await (await env.ASSETS.fetch("http://0.0.0.0/file.txt")).text();
35+
console.log(text); // logs the content of file.txt
36+
37+
await dispose();
38+
```
39+
40+
- [#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`
41+
342
## 3.114.10
443

544
### Patch Changes

packages/wrangler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wrangler",
3-
"version": "3.114.10",
3+
"version": "3.114.11",
44
"description": "Command-line interface for all things Cloudflare Workers",
55
"keywords": [
66
"wrangler",

0 commit comments

Comments
 (0)