Skip to content
Open
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
573 changes: 0 additions & 573 deletions docs/content/docs/v4/changelog/eager-processing.mdx

This file was deleted.

1 change: 0 additions & 1 deletion docs/content/docs/v4/changelog/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ Stay up to date with the latest changes to Workflow SDK.

## 2026

- [Eager processing of steps and incremental event replay](/docs/changelog/eager-processing) - March 2026
- [Serializable AbortController and AbortSignal](/docs/changelog/serializable-abort-controller) — March 12, 2026
2 changes: 1 addition & 1 deletion docs/content/docs/v4/changelog/meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "Changelog",
"pages": ["index", "eager-processing", "resilient-start"],
"pages": ["index", "resilient-start"],
"defaultOpen": false
}
314 changes: 31 additions & 283 deletions docs/content/docs/v4/changelog/resilient-start.mdx

Large diffs are not rendered by default.

480 changes: 67 additions & 413 deletions docs/content/docs/v5/changelog/eager-processing.mdx

Large diffs are not rendered by default.

314 changes: 31 additions & 283 deletions docs/content/docs/v5/changelog/resilient-start.mdx

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/core/src/runtime/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export async function loadWorkflowRunEvents(
// Preserve the last non-null cursor across pages. A World may
// legitimately return `{ data: [], cursor: null, hasMore: false }`
// on a trailing empty page — for example when the previous page's
// underlying DynamoDB query hit `Limit` exactly and returned a
// underlying DB query hit the limit exactly and returned a
// `LastEvaluatedKey` "just in case". Overwriting with that null
// would lose the position past the last real event we loaded and
// force the runtime into the "no cursor after initial load" full-
Expand Down
Loading