Skip to content

Commit

Permalink
chore: changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
dalechyn committed Aug 22, 2024
1 parent 7dd542e commit 91a855a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .changeset/tiny-walls-collect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
"frog": minor
---

**Breaking Change**: `parent` is deprecated in `ComposerActionMessage`

```diff
import { postComposerActionMessage } from 'frog/next'

postComposerActionMessage({
type: "createCast",
data: {
cast: {
embeds: [/*...*/];
text: 'Hi';
- parent: '0x...'
};
};
})
```

```diff
import { postComposerCreateCastActionMessage } from 'frog/next'

postComposerCreateCastActionMessage({
embeds: [/*...*/];
text: 'Hi';
- parent: '0x...'
})
```

[See More](https://warpcast.com/horsefacts.eth/0x98185a2f).

0 comments on commit 91a855a

Please sign in to comment.