Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v1.8.0 #1582

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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