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
35 changes: 0 additions & 35 deletions .changeset/deep-lizards-move.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/full-areas-lick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-sites-camp.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-hairs-feel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rare-peaches-change.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/silly-things-walk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-shirts-add.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-walls-tie.md

This file was deleted.

12 changes: 12 additions & 0 deletions packages/miniflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# miniflare

## 3.20250718.1

### Minor Changes

- [#10015](https://github.com/cloudflare/workers-sdk/pull/10015) [`b5d9bb0`](https://github.com/cloudflare/workers-sdk/commit/b5d9bb026ebfb4c732c3c4999aa5ac0757f1a1b2) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - add `structuredWorkerdLogs` option

add a new top-level option named `structuredWorkerdLogs` that makes workerd print to stdout structured logs (stringified jsons of the following shape: `{ timestamp: number, level: string, message: string }`) instead of printing logs to stdout and stderr

### Patch Changes

- [#10216](https://github.com/cloudflare/workers-sdk/pull/10216) [`76d3002`](https://github.com/cloudflare/workers-sdk/commit/76d3002bf7e03f4b5ee255c9fd0eaa81f092311d) Thanks [@devin-ai-integration](https://github.com/apps/devin-ai-integration)! - Add macOS version validation to prevent EPIPE errors on unsupported macOS versions (below 13.5). Miniflare and C3 fail hard while Wrangler shows warnings but continues execution.

## 3.20250718.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/miniflare/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "miniflare",
"version": "3.20250718.0",
"version": "3.20250718.1",
"description": "Fun, full-featured, fully-local simulator for Cloudflare Workers",
"keywords": [
"cloudflare",
Expand Down
7 changes: 7 additions & 0 deletions packages/pages-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @cloudflare/pages-shared

## 0.13.20

### Patch Changes

- Updated dependencies [[`b5d9bb0`](https://github.com/cloudflare/workers-sdk/commit/b5d9bb026ebfb4c732c3c4999aa5ac0757f1a1b2), [`76d3002`](https://github.com/cloudflare/workers-sdk/commit/76d3002bf7e03f4b5ee255c9fd0eaa81f092311d)]:
- miniflare@3.20250718.1

## 0.13.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pages-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/pages-shared",
"version": "0.13.19",
"version": "0.13.20",
"private": true,
"repository": {
"type": "git",
Expand Down
51 changes: 51 additions & 0 deletions packages/wrangler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,56 @@
# wrangler

## 3.114.13

### Patch Changes

- [#10015](https://github.com/cloudflare/workers-sdk/pull/10015) [`b5d9bb0`](https://github.com/cloudflare/workers-sdk/commit/b5d9bb026ebfb4c732c3c4999aa5ac0757f1a1b2) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix `wrangler dev` logs being logged on the incorrect level in some cases

currently the way `wrangler dev` prints logs is faulty, for example the following code

```js
console.error("this is an error");
console.warn("this is a warning");
console.debug("this is a debug");
```

inside a worker would cause the following logs:

```text
✘ [ERROR] this is an error

✘ [ERROR] this is a warning

this is a debug
```

(note that the warning is printed as an error and the debug log is printed even if by default it should not)

the changes here make sure that the logs are instead logged to their correct level, so for the code about the following will be logged instead:

```text
✘ [ERROR] this is an error

▲ [WARNING] this is a warning
```

(running `wrangler dev` with the `--log-level=debug` flag will also cause the debug log to be included as well)

- [#10187](https://github.com/cloudflare/workers-sdk/pull/10187) [`f480ec7`](https://github.com/cloudflare/workers-sdk/commit/f480ec74d1aaf05681fb8ebabcbcf147cfd6ea8a) Thanks [@workers-devprod](https://github.com/workers-devprod)! - Deleting when Pages project binds to worker requires confirmation

- [#10182](https://github.com/cloudflare/workers-sdk/pull/10182) [`1f686ef`](https://github.com/cloudflare/workers-sdk/commit/1f686ef3d20e2986d1c2d6d554a7fb99004b9924) Thanks [@devin-ai-integration](https://github.com/apps/devin-ai-integration)! - fix: report startup errors before workerd profiling

- [#10226](https://github.com/cloudflare/workers-sdk/pull/10226) [`989e17e`](https://github.com/cloudflare/workers-sdk/commit/989e17e71aeefad3d021a368b57d2f6af6827d1a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Enforce 64-character limit for Workflow binding names locally to match production validation

- [#10216](https://github.com/cloudflare/workers-sdk/pull/10216) [`76d3002`](https://github.com/cloudflare/workers-sdk/commit/76d3002bf7e03f4b5ee255c9fd0eaa81f092311d) Thanks [@devin-ai-integration](https://github.com/apps/devin-ai-integration)! - Add macOS version validation to prevent EPIPE errors on unsupported macOS versions (below 13.5). Miniflare and C3 fail hard while Wrangler shows warnings but continues execution.

- [#10261](https://github.com/cloudflare/workers-sdk/pull/10261) [`8c38b65`](https://github.com/cloudflare/workers-sdk/commit/8c38b65a7fcb424e5674575595c1663b6b363be9) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: strip ANSI escape codes from log files to improve readability and parsing

- [#10171](https://github.com/cloudflare/workers-sdk/pull/10171) [`0d73563`](https://github.com/cloudflare/workers-sdk/commit/0d73563833d47bb61582eb5569b0af74e8f4de1e) Thanks [@devin-ai-integration](https://github.com/apps/devin-ai-integration)! - Handle UTF BOM in config files - detect and remove UTF-8 BOMs, error on unsupported BOMs (UTF-16, UTF-32)

- Updated dependencies [[`b5d9bb0`](https://github.com/cloudflare/workers-sdk/commit/b5d9bb026ebfb4c732c3c4999aa5ac0757f1a1b2), [`76d3002`](https://github.com/cloudflare/workers-sdk/commit/76d3002bf7e03f4b5ee255c9fd0eaa81f092311d)]:
- miniflare@3.20250718.1

## 3.114.12

### 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.12",
"version": "3.114.13",
"description": "Command-line interface for all things Cloudflare Workers",
"keywords": [
"wrangler",
Expand Down
Loading