Skip to content

Commit

Permalink
release: v1.8.0 (#1582)
Browse files Browse the repository at this point in the history
  • Loading branch information
varunsrin authored Nov 15, 2023
1 parent 6bfb694 commit 45f071e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .changeset/thick-cherries-kneel.md

This file was deleted.

10 changes: 10 additions & 0 deletions apps/hubble/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @farcaster/hubble

## 1.8.0

### Minor Changes

- Expiry date changed to 1/10/24 0:00:00 UTC

### Patch Changes

- 6bfb694b: fix: Handle docker-compose versions in hubble.sh

## 1.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/hubble/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/hubble",
"version": "1.7.2",
"version": "1.8.0",
"description": "Farcaster Hub",
"author": "",
"license": "",
Expand Down
3 changes: 2 additions & 1 deletion apps/hubble/src/hubble.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,15 @@ export const APP_NICKNAME = process.env["HUBBLE_NAME"] ?? "Farcaster Hub";
export const SNAPSHOT_S3_DEFAULT_BUCKET = "download.farcaster.xyz";
export const S3_REGION = "us-east-1";

export const FARCASTER_VERSION = "2023.10.4";
export const FARCASTER_VERSION = "2023.11.15";
export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [
{ version: "2023.3.1", expiresAt: 1682553600000 }, // expires at 4/27/23 00:00 UTC
{ version: "2023.4.19", expiresAt: 1686700800000 }, // expires at 6/14/23 00:00 UTC
{ version: "2023.5.31", expiresAt: 1690329600000 }, // expires at 7/26/23 00:00 UTC
{ version: "2023.7.12", expiresAt: 1693958400000 }, // expires at 9/6/23 00:00 UTC
{ version: "2023.8.23", expiresAt: 1697587200000 }, // expires at 10/18/23 00:00 UTC
{ version: "2023.10.4", expiresAt: 1701216000000 }, // expires at 11/28/23 00:00 UTC
{ version: "2023.11.15", expiresAt: 1704844800000 }, // expires at 1/10/23 00:00 UTC
];

const MAX_CONTACT_INFO_AGE_MS = GOSSIP_SEEN_TTL;
Expand Down

0 comments on commit 45f071e

Please sign in to comment.