·
117 commits
to main
since this release
Patch Changes
-
Added the ability to specify a "createdAt" filter when subscribing to tags in our useRealtime hooks: (#2158)
// Only subscribe to runs created in the last 10 hours useRealtimeRunWithTags("my-tag", { createdAt: "10h" });
You can also now choose to skip subscribing to specific columns by specifying the
skipColumns
option:useRealtimeRun(run.id, { skipColumns: ["usageDurationMs"] });
-
Fixes an issue with realtime when re-subscribing to a run, that would temporarily display stale data and the changes. Now when re-subscribing to a run only the latest changes will be vended (#2162)
-
Updated dependencies:
@trigger.dev/[email protected]