Skip to content

Commit 8a8f906

Browse files
authored
Merge pull request #170 from farcasterxyz/changeset-release/main
chore: version packages
2 parents 2dbbbc4 + de984d4 commit 8a8f906

11 files changed

Lines changed: 37 additions & 19 deletions

File tree

.changeset/breezy-rocks-boil.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/purple-humans-count.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tender-impalas-attack.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/emulator-native/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @farcaster/snap-emulator-native
22

3+
## 1.0.33
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`3f25a68`](https://github.com/farcasterxyz/snap/commit/3f25a68acf08132891a6d4e72bd66c0265b5fe35), [`e2e45a1`](https://github.com/farcasterxyz/snap/commit/e2e45a152df97194072e25094fc44042e1082b0a), [`7bd3591`](https://github.com/farcasterxyz/snap/commit/7bd3591c7fb4ed17f5d2aca7b8fbb058cf1ec757)]:
8+
- @farcaster/snap@2.3.0
9+
310
## 1.0.32
411

512
### Patch Changes

apps/emulator-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/snap-emulator-native",
3-
"version": "1.0.32",
3+
"version": "1.0.33",
44
"private": true,
55
"main": "index.ts",
66
"scripts": {

pkgs/hono/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @farcaster/snap-hono
22

3+
## 2.1.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`3f25a68`](https://github.com/farcasterxyz/snap/commit/3f25a68acf08132891a6d4e72bd66c0265b5fe35), [`e2e45a1`](https://github.com/farcasterxyz/snap/commit/e2e45a152df97194072e25094fc44042e1082b0a), [`7bd3591`](https://github.com/farcasterxyz/snap/commit/7bd3591c7fb4ed17f5d2aca7b8fbb058cf1ec757)]:
8+
- @farcaster/snap@2.3.0
9+
310
## 2.1.0
411

512
### Minor Changes

pkgs/hono/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/snap-hono",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Hono integration for Farcaster Snap servers",
55
"repository": {
66
"type": "git",

pkgs/snap/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @farcaster/snap
22

3+
## 2.3.0
4+
5+
### Minor Changes
6+
7+
- [#167](https://github.com/farcasterxyz/snap/pull/167) [`e2e45a1`](https://github.com/farcasterxyz/snap/commit/e2e45a152df97194072e25094fc44042e1082b0a) Thanks [@bob-obringer](https://github.com/bob-obringer)! - Add optional `value` field to `cell_grid` cells. When set, the cell's `value` (string, 1–30 chars) is what's written to `inputs[name]` on press or selection. When omitted, the existing `"row,col"` fallback applies. This removes a recurring foot-gun for grids with meaningful labels (calendar days, alphabet letters, region codes) where action handlers previously had to reverse-lookup row/col into the cell's label.
8+
9+
- [#168](https://github.com/farcasterxyz/snap/pull/168) [`7bd3591`](https://github.com/farcasterxyz/snap/commit/7bd3591c7fb4ed17f5d2aca7b8fbb058cf1ec757) Thanks [@bob-obringer](https://github.com/bob-obringer)! - Tighten horizontal stack gap scale and add column-aware defaults. Horizontal `gap` now resolves to `none/sm/md/lg = 0/4/8/16 px` (down from `0/4/8/12`; `lg` grows by 4px, `sm`/`md` grow lighter). When `gap` is omitted on a horizontal stack, the default is chosen by column count: 2 cols → `lg` (16px), 3 cols → `md` (8px), 4+ cols → `sm` (4px), unknown → `md`. Column count comes from `columns` when set, or is inferred from button-row children, or falls back to direct child count for any horizontal stack. Vertical stacks are unchanged. An explicit `gap` always wins.
10+
11+
### Patch Changes
12+
13+
- [#168](https://github.com/farcasterxyz/snap/pull/168) [`3f25a68`](https://github.com/farcasterxyz/snap/commit/3f25a68acf08132891a6d4e72bd66c0265b5fe35) Thanks [@bob-obringer](https://github.com/bob-obringer)! - fix(snap): web `text` no longer fills column height inside a vertical stack. The component used `flex-1` to fill horizontal width, which silently set `flex-grow: 1` along the parent's main axis — so when a vertical stack was a peer of a tall element (e.g. a `9:16` image), text children stretched to evenly fill the column instead of stacking at the top with their gap. Switched the vertical-stack class to `min-w-0` only (block elements already fill width via their parent's `w-full`). Native is unaffected since RN text uses explicit `width: "100%"` rather than flex-grow.
14+
315
## 2.2.0
416

517
### Minor Changes

pkgs/snap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/snap",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Farcaster Snaps 🫰",
55
"repository": {
66
"type": "git",

pkgs/turso/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @farcaster/snap-turso
22

3+
## 2.0.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`3f25a68`](https://github.com/farcasterxyz/snap/commit/3f25a68acf08132891a6d4e72bd66c0265b5fe35), [`e2e45a1`](https://github.com/farcasterxyz/snap/commit/e2e45a152df97194072e25094fc44042e1082b0a), [`7bd3591`](https://github.com/farcasterxyz/snap/commit/7bd3591c7fb4ed17f5d2aca7b8fbb058cf1ec757)]:
8+
- @farcaster/snap@2.3.0
9+
310
## 2.0.7
411

512
### Patch Changes

0 commit comments

Comments
 (0)