Skip to content

Commit 60b4b63

Browse files
authored
Merge branch 'main' into penalosa/native-registry
2 parents 8449f78 + 67ab88b commit 60b4b63

File tree

161 files changed

+11856
-1466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+11856
-1466
lines changed

.changeset/add-step-context.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
"@cloudflare/workflows-shared": minor
3+
---
4+
5+
Adds step context with attempt count to step.do() callbacks.
6+
7+
Workflow step callbacks now receive a context object containing the current attempt number (1-indexed).
8+
This allows developers to access which retry attempt is currently executing.
9+
10+
Example:
11+
12+
```ts
13+
await step.do("my-step", async (ctx) => {
14+
// ctx.attempt is 1 on first try, 2 on first retry, etc.
15+
console.log(`Attempt ${ctx.attempt}`);
16+
});
17+
```

.changeset/bright-peas-stare.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@cloudflare/local-explorer-ui": minor
3+
---
4+
5+
Add initial data studio with D1 and Durable Objects support
6+
7+
Adds a data studio interface to the local explorer UI, allowing you to browse and interact with D1 databases and Durable Objects during local development. The studio provides table browsing, query execution, and data editing capabilities.

.changeset/c3-frameworks-update-12717.md

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

.changeset/c3-frameworks-update-12720.md

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

.changeset/loud-taxis-tie.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@cloudflare/unenv-preset": minor
3+
---
4+
5+
Use the native workerd `node:perf_hooks` module and `Performance` global classes when available
6+
7+
They are enabled when the `enable_nodejs_perf_hooks_module` compatibility flag is set. This feature is currently experimental and requires the above flag and `experimental` compatibility flag to be set.

.changeset/pin-workerd-latest.md

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

.changeset/polite-schools-buy.md

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

.changeset/remove-ai-search-workaround.md

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

.changeset/remove-chalk-create-cloudflare.md

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

.changeset/rude-ends-battle.md

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

0 commit comments

Comments
 (0)