Skip to content

Commit ff4ec34

Browse files
authored
chore: Release 1.13.2 (#2081)
## Motivation Release 1.13.2 ## Change Summary Describe the changes being made in 1-2 concise sentences. ## Merge Checklist _Choose all relevant options below by adding an `x` now or at any time before submitting for review_ - [x] PR title adheres to the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) standard - [x] PR has a [changeset](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#35-adding-changesets) - [x] PR has been tagged with a change label(s) (i.e. documentation, feature, bugfix, or chore) - [ ] PR includes [documentation](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#32-writing-docs) if necessary. - [x] All [commits have been signed](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#22-signing-commits) ## Additional Context If this is a relatively large or complex change, provide more details here that will help reviewers <!-- start pr-codex --> --- ## PR-Codex overview The focus of this PR is to update package versions and dependencies across multiple repositories. ### Detailed summary - Updated package versions to `0.14.16`, `0.8.11`, `0.11.17`, `0.4.0`, `1.13.2` - Updated dependencies in various packages - Added rpc to expose `LinkCompactStateMessage` with explicit handling of type > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 4c64539 commit ff4ec34

File tree

18 files changed

+60
-48
lines changed

18 files changed

+60
-48
lines changed

.changeset/big-bulldogs-hunt.md

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

.changeset/cold-shrimps-flow.md

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

.changeset/eight-bags-fetch.md

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

.changeset/hungry-pillows-shout.md

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

.changeset/lazy-flies-rule.md

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

.changeset/proud-crabs-teach.md

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

.changeset/slow-dolphins-live.md

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

apps/hubble/CHANGELOG.md

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

3+
## 1.13.2
4+
5+
### Patch Changes
6+
7+
- e58e963d: fix: Always log when updating contact info
8+
- 27a1cfc8: fix: updated the cli tool to flush logs before exiting
9+
- f25f133f: chore: Segment bundle delay stats by message status
10+
- dab95118: Add rpc to expose LinkCompactStateMessage + explicit handling of type
11+
- 6ceb8f54: add libp2p/peer-store patch to resolve corrupt peer id loads
12+
- Updated dependencies [dab95118]
13+
- @farcaster/hub-nodejs@0.11.17
14+
315
## 1.13.1
416

517
### Patch Changes

apps/hubble/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/hubble",
3-
"version": "1.13.1",
3+
"version": "1.13.2",
44
"description": "Farcaster Hub",
55
"author": "",
66
"license": "",
@@ -75,7 +75,7 @@
7575
"@chainsafe/libp2p-noise": "^11.0.0 ",
7676
"@datastructures-js/priority-queue": "^6.3.1",
7777
"@faker-js/faker": "~7.6.0",
78-
"@farcaster/hub-nodejs": "^0.11.16",
78+
"@farcaster/hub-nodejs": "^0.11.17",
7979
"@fastify/cors": "^8.4.0",
8080
"@figma/hot-shots": "^9.0.0-figma.1",
8181
"@grpc/grpc-js": "~1.8.22",

apps/hubble/src/console/console.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import {
77
getSSLHubRpcClient,
88
toFarcasterTime,
99
fromFarcasterTime,
10+
bytesToHexString,
11+
hexStringToBytes,
1012
} from "@farcaster/hub-nodejs";
1113
import path from "path";
1214
import * as repl from "repl";
@@ -94,6 +96,8 @@ export const startConsole = async (addressString: string, useInsecure: boolean)
9496
replServer.context["SyncId"] = SyncId;
9597
replServer.context["toFarcasterTime"] = toFarcasterTime;
9698
replServer.context["fromFarcasterTime"] = fromFarcasterTime;
99+
replServer.context["bytesToHex"] = bytesToHexString;
100+
replServer.context["hexToBytes"] = hexStringToBytes;
97101

98102
// Run the info command to start
99103

0 commit comments

Comments
 (0)