Skip to content

Commit 59bcfe7

Browse files
authored
chore: release 1.13.5 (#2114)
## Motivation - Reduce network bandwidth with gossip improvements - Support experimental sync APIs (note: may be removed or significantly altered in the future) ## Change Summary - Update p2p gossip to reduce unnecessary contact updates - Add experimental sync control APIs ## 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) - [x] 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 This PR updates versions and adds endpoints for sync control in `hub-web` and `hub-nodejs`, and includes various improvements and fixes in the `hubble` app. ### Detailed summary - Updated `hub-web` version to 0.8.12 - Updated `hub-nodejs` version to 0.11.19 - Added endpoints for sync control - Improved gossip contact info frequency in `hubble` app - Added experimental HTTP APIs for sync control in `hubble` app > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 224e75f commit 59bcfe7

9 files changed

+26
-21
lines changed

.changeset/cold-kids-compete.md

-5
This file was deleted.

.changeset/sweet-students-rule.md

-7
This file was deleted.

.changeset/tiny-kangaroos-refuse.md

-5
This file was deleted.

apps/hubble/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @farcaster/hubble
22

3+
## 1.13.5
4+
5+
### Patch Changes
6+
7+
- 224e75fa: fix: gossip contact info every 30 minutes instead of every minute, avoid gossiping contact info on peer connect, skip contact info updates that happen too frequently
8+
- c723f655: feat: Add endpoints to control sync
9+
- 667a5b30: feat: add experimental HTTP APIs to control sync
10+
- Updated dependencies [c723f655]
11+
- @farcaster/hub-nodejs@0.11.19
12+
313
## 1.13.4
414

515
### Patch Changes

apps/hubble/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/hubble",
3-
"version": "1.13.4",
3+
"version": "1.13.5",
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.18",
78+
"@farcaster/hub-nodejs": "^0.11.19",
7979
"@fastify/cors": "^8.4.0",
8080
"@figma/hot-shots": "^9.0.0-figma.1",
8181
"@grpc/grpc-js": "~1.8.22",

packages/hub-nodejs/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @farcaster/hub-nodejs
22

3+
## 0.11.19
4+
5+
### Patch Changes
6+
7+
- c723f655: feat: Add endpoints to control sync
8+
39
## 0.11.18
410

511
### Patch Changes

packages/hub-nodejs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/hub-nodejs",
3-
"version": "0.11.18",
3+
"version": "0.11.19",
44
"main": "./dist/index.js",
55
"module": "./dist/index.mjs",
66
"types": "./dist/index.d.ts",

packages/hub-web/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @farcaster/hub-web
22

3+
## 0.8.12
4+
5+
### Patch Changes
6+
7+
- c723f655: feat: Add endpoints to control sync
8+
39
## 0.8.11
410

511
### Patch Changes

packages/hub-web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/hub-web",
3-
"version": "0.8.11",
3+
"version": "0.8.12",
44
"main": "./dist/index.js",
55
"module": "./dist/index.mjs",
66
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)