Skip to content

Releases: wevm/frog

[email protected]

13 Aug 21:12
d06102f
Compare
Choose a tag to compare

Patch Changes

  • #472 8529049 Thanks @dalechyn! - Fixed an issue where a frame without any fonts passed would crash the render process.

[email protected]

10 Aug 22:38
88f1b89
Compare
Choose a tag to compare

Minor Changes

  • #466 d4899ab Thanks @dalechyn! - Breaking Change: Renamed exported Context type to FrameBaseContext.
    Fixed an issue where frame message was parsed incorrectly and was expecting cast_id in Composer Action Handler.
    Exported previously forgotten types.

Patch Changes

  • #471 24d3bec Thanks @dalechyn! - Fixed an issue where defining fonts in multiple places would override each other. Now all defined fonts are grouped altogether.

[email protected]

01 Aug 21:51
e0b2e2c
Compare
Choose a tag to compare

Patch Changes

  • #457 56f4be4 Thanks @dalechyn! - Fixed an issue where verifyOrigin constructor parameter was not populated in some of the handlers.

[email protected]

01 Aug 15:55
9905e32
Compare
Choose a tag to compare

Patch Changes

  • #455 e1c8689 Thanks @dalechyn! - Fixed an issue where basePath was not provided to the callback used in initialState parameter.

[email protected]

26 Jul 21:14
e5a1d78
Compare
Choose a tag to compare

Patch Changes

  • #449 0fb3dee Thanks @dalechyn! - Added initialState as a fallback to c.previousState in handlers that depend on the state but cannot retrieve one.

[email protected]

26 Jul 17:45
df0d913
Compare
Choose a tag to compare

Patch Changes

  • #450 368a2a9 Thanks @dalechyn! - Fixed an issue where using Button.Reset would lead to "Cannot destructure property 'property' of 'intent.props' as it is undefined." error.

[email protected]

26 Jul 15:14
41218bd
Compare
Choose a tag to compare

Patch Changes

[email protected]

25 Jul 20:36
5abfaa5
Compare
Choose a tag to compare

Patch Changes

  • #445 b52f5d2 Thanks @dalechyn! - Fixed an issue with Vercel/Next.JS deployments where "property" could not be read from intent as the "props" was missing.

[email protected]

25 Jul 18:58
506d281
Compare
Choose a tag to compare

Patch Changes

[email protected]

24 Jul 19:24
38ef6a6
Compare
Choose a tag to compare

Patch Changes

  • #436 6ff12c3 Thanks @dalechyn! - Added verifyOrigin flag to Frog constructor.

  • #435 43f4205 Thanks @dalechyn! - Implemented a feature where initialState can be a callback receiving Hono's Context.

    This is particularly useful when dealing with path parameters to dynamically initiate state.
    This state will also be accessible in c.previousState in the Image Handler.