Skip to content

Releases: wevm/frog

frog@0.17.4

03 Oct 13:43
2b8e8ca
Compare
Choose a tag to compare

Patch Changes

  • #495 8201ed3 Thanks @dalechyn! - Bumped hono-og to 0.0.28 which has a fix for constant memory leak issue.

  • #495 8201ed3 Thanks @dalechyn! - Bumped hono-og to the latest version which should solve the memory leak
    issue for those who don't use Vercel as the deployment platform.

frog@0.17.3

27 Sep 00:00
795b01e
Compare
Choose a tag to compare

Patch Changes

  • #491 3581ee6 Thanks @dalechyn! - Bumped hono-og to 0.0.28 which has a fix for constant memory leak issue.

frog@0.17.2

10 Sep 11:19
1475c7e
Compare
Choose a tag to compare

Patch Changes

  • #484 34cfb2a Thanks @dalechyn! - Fixed an issue with parsing Composer Action data when verified is false.

  • #483 84c4330 Thanks @dalechyn! - Fixed an issue where min/max height/width would not handle custom values.

frog@0.17.1

29 Aug 15:13
628178f
Compare
Choose a tag to compare

Patch Changes

  • #478 0f482cd Thanks @dalechyn! - Fixed an issue where getFrameMetadata would return escaped symbols.

frog@0.17.0

22 Aug 23:20
850e8f5
Compare
Choose a tag to compare

Minor Changes

  • #476 4539665 Thanks @dalechyn! - Breaking Change: parent and channelKey are deprecated in ComposerActionMessage

    import { postComposerActionMessage } from 'frog/next'
    
    postComposerActionMessage({
      type: "createCast",
      data: {
        cast: {
          embeds: [/*...*/];
          text: 'Hi';
    -     parent: '0x...'
    -     channelKey: '...'
        };
      };
    })
    import { postComposerCreateCastActionMessage } from 'frog/next'
    
    postComposerCreateCastActionMessage({
      embeds: [/*...*/];
      text: 'Hi';
    - parent: '0x...'
    - channelKey: '...'
    })

    See More.

frog@0.16.1

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.

frog@0.16.0

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.

frog@0.15.9

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.

frog@0.15.8

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.

frog@0.15.7

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.