Skip to content

Releases: wevm/frog

frog@0.14.2

11 Jul 12:59
f59042d
Compare
Choose a tag to compare

Patch Changes

frog@0.14.1

10 Jul 21:25
13d8d35
Compare
Choose a tag to compare

Patch Changes

  • #409 9304567 Thanks @dalechyn! - Fixed an issue where c.deriveState would not modify state in initial frame handler.

frog@0.14.0

10 Jul 16:49
34c60d6
Compare
Choose a tag to compare

Minor Changes

  • #407 902f03d Thanks @dalechyn! - Breaking Change. Added chainId back as a parameter to .signature handler's c.signTypedData response.

    app.signature('/sign', (c) =>
      c.signTypedData({
    +   chainId: 'eip155:8543',
        /**/
      })

frog@0.13.1

09 Jul 00:25
7735a24
Compare
Choose a tag to compare

Patch Changes

  • #401 5cd9839 Thanks @dalechyn! - Fixed an issue with serializing typed data messages that have bigint fields.

frog@0.13.0

08 Jul 23:47
d994a44
Compare
Choose a tag to compare

Minor Changes

  • #398 88b5361 Thanks @dalechyn! - Removed chainId property from the .signature handler response. See more.
    app.signature('/sign', (c) =>
      c.signTypedData({
    -   chainId: 'eip155:8543',
        /**/
      })

Patch Changes

  • #398 88b5361 Thanks @dalechyn! - Fixed a bug where Button.Signature would not set a correct post_url.

frog@0.12.3

05 Jul 21:11
da7a1d6
Compare
Choose a tag to compare

Patch Changes

frog@0.12.2

02 Jul 19:23
b9ce771
Compare
Choose a tag to compare

Patch Changes

  • #389 c1abdbd Thanks @dalechyn! - Fixed an issue where Fragment (<>...</>) was handled as a separate node. Now it simply unwraps children.

frog@0.12.1

28 Jun 22:04
300ec1a
Compare
Choose a tag to compare

Patch Changes

  • #380 6ab441b Thanks @crebsy! - Fixed an issue with session logouts by reading frog_user cookie.

  • #383 dac1d21 Thanks @dalechyn! - Fixed incorrectly unescaped HTML entities in Frame Preview Buttons leading to incorrect UI shown.

  • #385 38a1d45 Thanks @dalechyn! - Fixed an issue where a Component returning null would crash the image rendering process.

frog@0.12.0

21 Jun 22:02
239bbf1
Compare
Choose a tag to compare

Minor Changes

  • #376 3a67a9e Thanks @dalechyn! - Breaking change. Added title as a required parameter to Frog constructor.

    - const app = new Frog()
    + const app = new Frog({ title: 'My Title' })

Patch Changes

frog@0.11.10

19 Jun 14:44
d288be3
Compare
Choose a tag to compare

Patch Changes

  • #374 b5d43d8 Thanks @dalechyn! - Added previously missed type exports for CastActionContext, CastActionHandler, CastActionResponse, ImageContext, ImageResponse and ImageHandler

  • #366 bbe3e09 Thanks @dalechyn! - Added support of c.error responses in .frame and .transaction handlers in DevTools.