Releases: jplhomer/superflare
Releases · jplhomer/superflare
[email protected]
Patch Changes
- aaebb5b: Fix the name and location of the local SQLite db
@superflare/[email protected]
Patch Changes
- Updated dependencies [aaebb5b]
[email protected]
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/[email protected]
Patch Changes
- Updated dependencies [1a16f73]
[email protected]
Patch Changes
- e7ea5e5: Add helpers to get people to check their Cloudflare Queue, R2, etc settings
@superflare/[email protected]
Patch Changes
- Updated dependencies [e7ea5e5]
[email protected]
Patch Changes
- 1bb00a5: Fix the storage API, introduce
storage().putRandom()
, and provide a better way to stream file uploads withparseMultipartFormData
@superflare/[email protected]
Patch Changes
- Updated dependencies [1bb00a5]
[email protected]
Patch Changes
- 5ae4bac: - Fix
$relationship.create()
and$relationship.save()
to accept a single model and an array of models.
[email protected]
Patch Changes
- 1c37d48: Add a delete method to the R2 storage adapter