Releases: jplhomer/superflare
Releases · jplhomer/superflare
superflare@0.1.1
Patch Changes
- aaebb5b: Fix the name and location of the local SQLite db
@superflare/remix@0.0.18
Patch Changes
- Updated dependencies [aaebb5b]
- superflare@0.1.1
superflare@0.1.0
Minor Changes
-
1a16f73: Adds support for scheduled tasks using Cron Triggers.
To schedule a task, call the
run
method on theschedule
object passed to the callback function fromhandleScheduled
function:import { handleScheduled } from "superflare"; export default { async scheduled(event: ScheduledEvent, env: Env, ctx: ExecutionContext) { return await handleScheduled(event, env, ctx, config, (schedule) => { schedule .run(async () => { // Some task that runs every day at midnight UTC }) .daily(); }); }, };
Learn more about Scheduled Tasks.
@superflare/remix@0.0.17
Patch Changes
- Updated dependencies [1a16f73]
- superflare@0.1.0
superflare@0.0.24
Patch Changes
- e7ea5e5: Add helpers to get people to check their Cloudflare Queue, R2, etc settings
@superflare/remix@0.0.16
Patch Changes
- Updated dependencies [e7ea5e5]
- superflare@0.0.24
superflare@0.0.23
Patch Changes
- 1bb00a5: Fix the storage API, introduce
storage().putRandom()
, and provide a better way to stream file uploads withparseMultipartFormData
@superflare/remix@0.0.15
Patch Changes
- Updated dependencies [1bb00a5]
- superflare@0.0.23
superflare@0.0.22
Patch Changes
- 5ae4bac: - Fix
$relationship.create()
and$relationship.save()
to accept a single model and an array of models.
superflare@0.0.21
Patch Changes
- 1c37d48: Add a delete method to the R2 storage adapter