From 928a3c74af1bcaeedc99449c241682e23a883906 Mon Sep 17 00:00:00 2001 From: Sanjay Raveendran Date: Fri, 6 Dec 2024 23:04:00 -0800 Subject: [PATCH 1/2] chore: Release 1.17 --- apps/hubble/CHANGELOG.md | 6 ++++++ apps/hubble/package.json | 2 +- apps/hubble/src/hubble.ts | 3 ++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/hubble/CHANGELOG.md b/apps/hubble/CHANGELOG.md index 2d7303cb1b..09c40a0ca7 100644 --- a/apps/hubble/CHANGELOG.md +++ b/apps/hubble/CHANGELOG.md @@ -1,5 +1,11 @@ # @farcaster/hubble +## 1.17.0 + +### Minor Changes + +- chore: Release 1.17 + ## 1.16.3 ### Patch Changes diff --git a/apps/hubble/package.json b/apps/hubble/package.json index 765520f63e..b0f3c2f194 100644 --- a/apps/hubble/package.json +++ b/apps/hubble/package.json @@ -1,6 +1,6 @@ { "name": "@farcaster/hubble", - "version": "1.16.3", + "version": "1.17.0", "description": "Farcaster Hub", "author": "", "license": "", diff --git a/apps/hubble/src/hubble.ts b/apps/hubble/src/hubble.ts index 322324790a..f0ca9a24b2 100644 --- a/apps/hubble/src/hubble.ts +++ b/apps/hubble/src/hubble.ts @@ -119,7 +119,7 @@ export const SNAPSHOT_S3_UPLOAD_BUCKET = "farcaster-snapshots"; export const SNAPSHOT_S3_DOWNLOAD_BUCKET = "download.farcaster.xyz"; export const S3_REGION = "auto"; -export const FARCASTER_VERSION = "2024.10.16"; +export const FARCASTER_VERSION = "2024.11.27"; 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 @@ -136,6 +136,7 @@ export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [ { version: "2024.7.24", expiresAt: 1726617600000 }, // expires at 9/18/24 00:00 UTC { version: "2024.9.4", expiresAt: 1730246400000 }, // expires at 10/30/24 00:00 UTC { version: "2024.10.16", expiresAt: 1733875200000 }, // expires at 12/11/24 00:00 UTC + { version: "2024.11.27", expiresAt: 1737504000000 }, // expires at 1/22/25 00:00 UTC ]; const MAX_CONTACT_INFO_AGE_MS = 1000 * 60 * 60; // 60 minutes From f01f643c4d7ebf044260551de64fa457a9c284ff Mon Sep 17 00:00:00 2001 From: Sanjay Raveendran Date: Fri, 6 Dec 2024 23:13:37 -0800 Subject: [PATCH 2/2] Fix lint --- apps/hubble/src/profile/gossipProfileWorker.js | 2 +- apps/hubble/src/rpc/server.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/hubble/src/profile/gossipProfileWorker.js b/apps/hubble/src/profile/gossipProfileWorker.js index 966528059d..d9ef59f316 100644 --- a/apps/hubble/src/profile/gossipProfileWorker.js +++ b/apps/hubble/src/profile/gossipProfileWorker.js @@ -1,4 +1,4 @@ -receivedimport { parentPort, threadId } from "worker_threads"; +import { parentPort, threadId } from "worker_threads"; import { ProfileWorkerAction } from "./gossipProfile.js"; import { Factories } from "@farcaster/hub-nodejs"; import { GossipNode } from "../network/p2p/gossipNode.js"; diff --git a/apps/hubble/src/rpc/server.ts b/apps/hubble/src/rpc/server.ts index 62247d7789..310d22cb43 100644 --- a/apps/hubble/src/rpc/server.ts +++ b/apps/hubble/src/rpc/server.ts @@ -761,7 +761,6 @@ export default class Server { // Don't wait for this to finish, just return the messages we have. this.syncEngine?.revokeSyncIds(corruptedSyncIds ?? []); - // biome-ignore lint/style/noParameterAssign: legacy code, avoid using ignore for new code messages = messages.filter((message) => message.data !== undefined && message.hash.length > 0); }