Skip to content

Releases: wevm/frog

[email protected]

16 Jun 17:03
05d9893
Compare
Choose a tag to compare

Patch Changes

  • #364 fb1f847 Thanks @dalechyn! - Fixed an issue with .image handler not recieving correct __context which is normally injected in parseImage function that wasn't previously used in Image rendering. As a consequence, c2f4d56 as an attempt to fix __context not being passed to components is no longer relevant, thus reverted.

[email protected]

14 Jun 14:23
48dc453
Compare
Choose a tag to compare

Patch Changes

  • #360 42f143d Thanks @dalechyn! - Fixed an issue with valibot having an incorrect schema on parsing POST request.

[email protected]

11 Jun 11:34
b63d3f8
Compare
Choose a tag to compare

Patch Changes

  • #355 7d75e97 Thanks @dalechyn! - Fixed a bug where properties on UI elements having 0 value were not being set, such as left="0" and etc.

  • #354 e1d5597 Thanks @dalechyn! - Bumped hono and related packages versions.

  • #356 7ab81f0 Thanks @dalechyn! - Fixed an issue where other Frog instances routed via .route constructed an incorrect image URL due to the absence of basePath.

  • #348 8286f21 Thanks @dalechyn! - Fixed a type issue where margin* and letterSpacing props in Box accepted only negative values.

[email protected]

07 Jun 20:34
3f9cefe
Compare
Choose a tag to compare

Patch Changes

  • #342 904cfbf Thanks @dalechyn! - Fixed incorrect internal image route matching that previously was only working when assetsUrl and baseUrl were the same.

  • #341 f6033d3 Thanks @dalechyn! - Added support of custom handler for Cast Actions if one wants to rely on the Context to give out a response for GET method. I.e. having the Action name to be derived from the path parameter.

  • #347 a14da7b Thanks @dalechyn! - Added Sepolia, Arbitrum Sepolia and Optimism Sepolia support. See more.

  • #345 c2f4d56 Thanks @dalechyn! - Fixed an issue where user defined vars were not passed to Text, Spacer, Divider and Image components.

[email protected]

28 May 21:30
95a57f7
Compare
Choose a tag to compare

Patch Changes

[email protected]

23 May 19:51
e113451
Compare
Choose a tag to compare

Patch Changes

  • #333 d457c65 Thanks @dalechyn! - Added Gnosis chain support.

  • #294 c9257f5 Thanks @dalechyn! - Introduced .image handler to handle images separately from the frame handler.

  • #325 d8aabe7 Thanks @dalechyn! - Removed tailwindConfig from the allowed properties in imageOptions since it's not fully implemented in Satori.

  • #324 a22492a Thanks @dalechyn! - Deleted font property from imageOptions type in frame handler response.

[email protected]

21 May 13:56
32bfa4e
Compare
Choose a tag to compare

Patch Changes

  • 7e8134c Thanks @tmm! - Added Arbitrum chains for transaction support.

[email protected]

16 May 17:45
823540c
Compare
Choose a tag to compare

Patch Changes

  • 117aae5 Thanks @tmm! - Changed devtools cookie names to be (more) unique to avoid localhost conflicts

[email protected]

16 May 15:44
c9bec3d
Compare
Choose a tag to compare

Patch Changes

  • a9123a0 Thanks @tmm! - Added createNeynar for composing hub and middleware.

[email protected]

16 May 14:54
b36a9e8
Compare
Choose a tag to compare

Minor Changes

  • #255 752ccab Thanks @dalechyn! - Breaking change Frog UI icon property requires an icon map imported from the 'frog/ui/icons' entrypoint. This also makes it easier for you to supply your own custom icons.

    + import { lucide } from 'frog/ui/icons'
    
    export const system = createSystem({
    - icons: 'lucide',
    + icons: lucide,
    })

    In addition, the following separate entrypoints were added for resource constrained environments.

    • frog/ui/icons/heroicons
    • frog/ui/icons/lucide
    • frog/ui/icons/radix-icons