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
2 changes: 0 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,5 @@ jobs:
- run: npm i
- run: npm run build
- run: npx pkg-pr-new publish
- run: cd example && npm i && cd ..
- run: npm run typecheck
- run: cd example && npm run lint && cd ..
- run: npm test
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.2.8 alpha

- Adds asynchronous events - wait for an event in a workflow, send
events asynchronously - allows pause/resume, human-in-loop, etc.
- Supports nested workflows with step.runWorkflow.
- Surfaces return value of the workflow in the status
- You can start a workflow directly from the CLI / dashboard without having to
make a mutation to call workflow.start:
- `{ fn: "path/to/file:workflowName", args: { ...your workflow args } }`
- Reduces read bandwidth when reading the journal after running many steps in parallel.
- Simplifies the onComplete type requirement so you can accept a workflowId as a string.
This helps when you have statically generated types which can't do branded strings.

## 0.2.7

- Support for console logging & timing in workflows
Expand Down
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default [
...typescriptEslint.configs["recommended"].rules,
...pluginJs.configs.recommended.rules,
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-explicit-any": "off",
// allow (_arg: number) => {} and const _foo = 1;
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
Expand Down
Loading
Loading