Skip to content

Releases: jplhomer/superflare

superflare@0.1.1

15 Dec 14:35
e34da01
Compare
Choose a tag to compare

Patch Changes

  • aaebb5b: Fix the name and location of the local SQLite db

@superflare/remix@0.0.18

15 Dec 14:35
e34da01
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [aaebb5b]
    • superflare@0.1.1

superflare@0.1.0

25 Apr 13:58
919e4dc
Compare
Choose a tag to compare

Minor Changes

  • 1a16f73: Adds support for scheduled tasks using Cron Triggers.

    To schedule a task, call the run method on the schedule object passed to the callback function from handleScheduled 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

25 Apr 13:58
919e4dc
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [1a16f73]
    • superflare@0.1.0

superflare@0.0.24

24 Mar 18:57
23e2bf7
Compare
Choose a tag to compare

Patch Changes

  • e7ea5e5: Add helpers to get people to check their Cloudflare Queue, R2, etc settings

@superflare/remix@0.0.16

24 Mar 18:57
23e2bf7
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [e7ea5e5]
    • superflare@0.0.24

superflare@0.0.23

23 Mar 01:48
9e498e6
Compare
Choose a tag to compare

Patch Changes

  • 1bb00a5: Fix the storage API, introduce storage().putRandom(), and provide a better way to stream file uploads with parseMultipartFormData

@superflare/remix@0.0.15

23 Mar 01:48
9e498e6
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [1bb00a5]
    • superflare@0.0.23

superflare@0.0.22

21 Mar 15:38
eb4486a
Compare
Choose a tag to compare

Patch Changes

  • 5ae4bac: - Fix $relationship.create() and $relationship.save() to accept a single model and an array of models.

superflare@0.0.21

21 Mar 15:32
209c4b3
Compare
Choose a tag to compare

Patch Changes

  • 1c37d48: Add a delete method to the R2 storage adapter