Skip to content

Commit deef953

Browse files
authored
chore: Release 1.13 (#2043)
## Motivation Release 1.13 ## 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 This PR updates versions and dependencies across multiple packages. ### Detailed summary - Extended verifications signature max length - Updated dependencies in `hub-nodejs` and `shuttle` - Changed `farcaster/core` version to `0.14.14` - Released `hubble` version `1.13.0` - Updated `FARCASTER_VERSION` to `2024.6.12` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent de52fbc commit deef953

File tree

13 files changed

+42
-28
lines changed

13 files changed

+42
-28
lines changed

.changeset/blue-snails-vanish.md

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

.changeset/chilled-starfishes-chew.md

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

.changeset/olive-readers-suffer.md

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

.changeset/two-ghosts-develop.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.0
4+
5+
### Minor Changes
6+
7+
- feat: Release 1.13
8+
9+
### Patch Changes
10+
11+
- 1c2dde78: feat: All HUB_OPTIONS env var to docker compose
12+
- 35d395f3: [chore] Determine app version via manual JSON.parse instead of import
13+
- @farcaster/hub-nodejs@0.11.15
14+
315
## 1.12.3
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.12.3",
3+
"version": "1.13.0",
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.13",
78+
"@farcaster/hub-nodejs": "^0.11.15",
7979
"@fastify/cors": "^8.4.0",
8080
"@figma/hot-shots": "^9.0.0-figma.1",
8181
"@grpc/grpc-js": "~1.8.21",

apps/hubble/src/hubble.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export const SNAPSHOT_S3_UPLOAD_BUCKET = "farcaster-snapshots";
107107
export const SNAPSHOT_S3_DOWNLOAD_BUCKET = "download.farcaster.xyz";
108108
export const S3_REGION = "auto";
109109

110-
export const FARCASTER_VERSION = "2024.5.1";
110+
export const FARCASTER_VERSION = "2024.6.12";
111111
export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [
112112
{ version: "2023.3.1", expiresAt: 1682553600000 }, // expires at 4/27/23 00:00 UTC
113113
{ version: "2023.4.19", expiresAt: 1686700800000 }, // expires at 6/14/23 00:00 UTC
@@ -120,6 +120,7 @@ export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [
120120
{ version: "2024.2.7", expiresAt: 1712102400000 }, // expires at 4/3/24 00:00 UTC
121121
{ version: "2024.3.20", expiresAt: 1715731200000 }, // expires at 5/15/24 00:00 UTC
122122
{ version: "2024.5.1", expiresAt: 1719360000000 }, // expires at 6/26/24 00:00 UTC
123+
{ version: "2024.6.12", expiresAt: 1722988800000 }, // expires at 8/7/24 00:00 UTC
123124
];
124125

125126
const MAX_CONTACT_INFO_AGE_MS = GOSSIP_SEEN_TTL;

packages/core/CHANGELOG.md

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

3+
## 0.14.14
4+
5+
### Patch Changes
6+
7+
- de52fbce: feat: extend verifications signature max length
8+
39
## 0.14.13
410

511
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/core",
3-
"version": "0.14.13",
3+
"version": "0.14.14",
44
"main": "./dist/index.js",
55
"module": "./dist/index.mjs",
66
"types": "./dist/index.d.ts",

packages/hub-nodejs/CHANGELOG.md

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

3+
## 0.11.15
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [de52fbce]
8+
- @farcaster/core@0.14.14
9+
310
## 0.11.14
411

512
### Patch Changes

0 commit comments

Comments
 (0)