You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v0.2.2: HTTP method specification, cron triggers, test coverage
Add HTTP method field (GET/POST/PUT/PATCH/DELETE) to handlers, workflow
steps, and parallel branches. GET requests omit the body.
Add cron source type with schedule expressions and optional timezone.
Fires cron.tick events on schedule, matching handlers and workflows.
Improve test coverage: 14 gap-coverage tests added across config,
verify, db, api, and alert modules. 4 redundant tests removed.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/).
6
6
7
+
## [0.2.2] - 2026-03-10
8
+
9
+
### Added
10
+
-**HTTP method specification**: `method` field on handlers, workflow steps, and parallel branches. Supports `GET`, `POST` (default), `PUT`, `PATCH`, `DELETE`. GET requests omit the body.
11
+
-**Cron triggers**: New `cron` source type with `schedule` (cron expression) and optional `timezone`. Fires `cron.tick` events on schedule, matching handlers and workflows.
12
+
13
+
### Changed
14
+
- Test coverage improvements: 14 gap-coverage tests added, 4 redundant tests removed (174 total unit tests).
0 commit comments