Commit e254c50
Version Packages (#2689)
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.
# Releases
## @farcaster/core@0.18.11
### Patch Changes
- af9bda8: feat: pull in snapchain V16 protos (signers and scopes /
gasless signers)
Regenerates protobuf bindings against snapchain `e8e89a3`, the client
surface for engine version V16 (`LATEST_PROTOCOL_VERSION` 10 → 11;
`ProtocolFeature::GaslessSigners` gate). V16 activates testnet
2026-04-28 20:00 UTC and mainnet 2026-05-07 17:00 UTC.
- `MESSAGE_TYPE_KEY_ADD` (16) and `MESSAGE_TYPE_KEY_REMOVE` (17) on
`MessageType`, plus `KeyAddBody` / `KeyRemoveBody` and corresponding
`KeyAddData` / `KeyAddMessage` / `KeyRemoveData` / `KeyRemoveMessage`
type narrowings and `isKeyAdd*` / `isKeyRemove*` typeguards in `core`.
- Backfills the previously-missing `isLendStorageData` /
`isLendStorageMessage` typeguards.
- New unified signer surface in RPC: `GetSigner` and `GetSignersByFid`
return both on-chain and off-chain (gasless) keys via `SignerResponse`
and `SignersByFidResponse`. The pre-existing `GetOnChainSigner` and
`GetOnChainSignersByFid` are now marked deprecated; existing callers
are unaffected. The `Signer` proto message is re-exported from `core`
as `SignerInfo` to disambiguate from the existing cryptographic
`Signer` interface.
- `GetSignersByFid` accepts a `SignersByFidRequest` so callers can
request current per-FID nonce counters (`current_user_nonce`,
`requester_fid_nonces`).
- `BlocksRequest.shard_id` is removed (server already ignored it; field
number `1` is `reserved` on the wire).
Adds `LendStorage*`, `KeyAdd*`, and `KeyRemove*` factories plus runtime
tests for the new typeguards.
## @farcaster/hub-nodejs@0.15.11
### Patch Changes
- af9bda8: feat: pull in snapchain V16 protos (signers and scopes /
gasless signers)
Regenerates protobuf bindings against snapchain `e8e89a3`, the client
surface for engine version V16 (`LATEST_PROTOCOL_VERSION` 10 → 11;
`ProtocolFeature::GaslessSigners` gate). V16 activates testnet
2026-04-28 20:00 UTC and mainnet 2026-05-07 17:00 UTC.
- `MESSAGE_TYPE_KEY_ADD` (16) and `MESSAGE_TYPE_KEY_REMOVE` (17) on
`MessageType`, plus `KeyAddBody` / `KeyRemoveBody` and corresponding
`KeyAddData` / `KeyAddMessage` / `KeyRemoveData` / `KeyRemoveMessage`
type narrowings and `isKeyAdd*` / `isKeyRemove*` typeguards in `core`.
- Backfills the previously-missing `isLendStorageData` /
`isLendStorageMessage` typeguards.
- New unified signer surface in RPC: `GetSigner` and `GetSignersByFid`
return both on-chain and off-chain (gasless) keys via `SignerResponse`
and `SignersByFidResponse`. The pre-existing `GetOnChainSigner` and
`GetOnChainSignersByFid` are now marked deprecated; existing callers
are unaffected. The `Signer` proto message is re-exported from `core`
as `SignerInfo` to disambiguate from the existing cryptographic
`Signer` interface.
- `GetSignersByFid` accepts a `SignersByFidRequest` so callers can
request current per-FID nonce counters (`current_user_nonce`,
`requester_fid_nonces`).
- `BlocksRequest.shard_id` is removed (server already ignored it; field
number `1` is `reserved` on the wire).
Adds `LendStorage*`, `KeyAdd*`, and `KeyRemove*` factories plus runtime
tests for the new typeguards.
- Updated dependencies [af9bda8]
- @farcaster/core@0.18.11
## @farcaster/hub-web@0.11.9
### Patch Changes
- af9bda8: feat: pull in snapchain V16 protos (signers and scopes /
gasless signers)
Regenerates protobuf bindings against snapchain `e8e89a3`, the client
surface for engine version V16 (`LATEST_PROTOCOL_VERSION` 10 → 11;
`ProtocolFeature::GaslessSigners` gate). V16 activates testnet
2026-04-28 20:00 UTC and mainnet 2026-05-07 17:00 UTC.
- `MESSAGE_TYPE_KEY_ADD` (16) and `MESSAGE_TYPE_KEY_REMOVE` (17) on
`MessageType`, plus `KeyAddBody` / `KeyRemoveBody` and corresponding
`KeyAddData` / `KeyAddMessage` / `KeyRemoveData` / `KeyRemoveMessage`
type narrowings and `isKeyAdd*` / `isKeyRemove*` typeguards in `core`.
- Backfills the previously-missing `isLendStorageData` /
`isLendStorageMessage` typeguards.
- New unified signer surface in RPC: `GetSigner` and `GetSignersByFid`
return both on-chain and off-chain (gasless) keys via `SignerResponse`
and `SignersByFidResponse`. The pre-existing `GetOnChainSigner` and
`GetOnChainSignersByFid` are now marked deprecated; existing callers
are unaffected. The `Signer` proto message is re-exported from `core`
as `SignerInfo` to disambiguate from the existing cryptographic
`Signer` interface.
- `GetSignersByFid` accepts a `SignersByFidRequest` so callers can
request current per-FID nonce counters (`current_user_nonce`,
`requester_fid_nonces`).
- `BlocksRequest.shard_id` is removed (server already ignored it; field
number `1` is `reserved` on the wire).
Adds `LendStorage*`, `KeyAdd*`, and `KeyRemove*` factories plus runtime
tests for the new typeguards.
- Updated dependencies [af9bda8]
- @farcaster/core@0.18.11
<!-- start pr-codex -->
---
## PR-Codex overview
This PR focuses on updating the versions of the `@farcaster/core`,
`@farcaster/hub-web`, and `@farcaster/hub-nodejs` packages to include
new features and improvements related to snapchain V16 protos, enhancing
the handling of signers and scopes.
### Detailed summary
- Updated `version` of `@farcaster/core` to `0.18.11`
- Updated `version` of `@farcaster/hub-web` to `0.11.9`
- Updated `version` of `@farcaster/hub-nodejs` to `0.15.11`
- Added new features in `CHANGELOG.md` for all packages:
- Regenerated protobuf bindings for snapchain V16
- Introduced new message types and typeguards in `core`
- Deprecated old signer retrieval methods in RPC
- Added new RPC methods for gasless signers
- Introduced nonce counters in `GetSignersByFid` request
- Removed unused `shard_id` from `BlocksRequest`
> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`
<!-- end pr-codex -->
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>1 parent af9bda8 commit e254c50
7 files changed
Lines changed: 110 additions & 39 deletions
File tree
- .changeset
- packages
- core
- hub-nodejs
- hub-web
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
3 | 36 | | |
4 | 37 | | |
5 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
3 | 39 | | |
4 | 40 | | |
5 | 41 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
3 | 39 | | |
4 | 40 | | |
5 | 41 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
0 commit comments