From 01418ea4f222bff2c3d585d5efa2396b50bf80d2 Mon Sep 17 00:00:00 2001 From: Sanjay Date: Wed, 8 Jan 2025 17:05:31 -0800 Subject: [PATCH] chore: Release 1.18 (#2467) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Why is this change needed? Release 1.18 ## 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. --- ## PR-Codex overview This PR focuses on updating the version of the `@farcaster/hubble` package and making minor adjustments to the `FARCASTER_VERSION` and its schedule. It includes a changelog entry for the release. ### Detailed summary - Updated `version` in `apps/hubble/package.json` from `1.17.0` to `1.18.0`. - Added changelog entry for version `1.18.0` in `apps/hubble/CHANGELOG.md`. - Updated `FARCASTER_VERSION` in `apps/hubble/src/hubble.ts` from `2024.11.27` to `2025.1.8`. - Added new version `2025.1.8` to `FARCASTER_VERSIONS_SCHEDULE`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- .changeset/silent-crews-explain.md | 5 ----- apps/hubble/CHANGELOG.md | 10 ++++++++++ apps/hubble/package.json | 2 +- apps/hubble/src/hubble.ts | 3 ++- 4 files changed, 13 insertions(+), 7 deletions(-) delete mode 100644 .changeset/silent-crews-explain.md diff --git a/.changeset/silent-crews-explain.md b/.changeset/silent-crews-explain.md deleted file mode 100644 index 1d96ab093f..0000000000 --- a/.changeset/silent-crews-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@farcaster/hubble": patch ---- - -fix: Ensure we always have a minimum number of connected peers diff --git a/apps/hubble/CHANGELOG.md b/apps/hubble/CHANGELOG.md index 09c40a0ca7..f5f04a0b5f 100644 --- a/apps/hubble/CHANGELOG.md +++ b/apps/hubble/CHANGELOG.md @@ -1,5 +1,15 @@ # @farcaster/hubble +## 1.18.0 + +### Minor Changes + +- chore: Release 1.18 + +### Patch Changes + +- 85c7e5e3: fix: Ensure we always have a minimum number of connected peers + ## 1.17.0 ### Minor Changes diff --git a/apps/hubble/package.json b/apps/hubble/package.json index b0f3c2f194..94a2d10b24 100644 --- a/apps/hubble/package.json +++ b/apps/hubble/package.json @@ -1,6 +1,6 @@ { "name": "@farcaster/hubble", - "version": "1.17.0", + "version": "1.18.0", "description": "Farcaster Hub", "author": "", "license": "", diff --git a/apps/hubble/src/hubble.ts b/apps/hubble/src/hubble.ts index f631ad2fa7..e0bfcc8d42 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.11.27"; +export const FARCASTER_VERSION = "2025.1.8"; 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 @@ -137,6 +137,7 @@ export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [ { 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 + { version: "2025.1.8", expiresAt: 1741132800000 }, // expires at 1/22/25 00:00 UTC ]; const MAX_CONTACT_INFO_AGE_MS = 1000 * 60 * 60; // 60 minutes