diff --git a/.changeset/rare-pots-look.md b/.changeset/rare-pots-look.md deleted file mode 100644 index d5be634bb7..0000000000 --- a/.changeset/rare-pots-look.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@farcaster/hubble": patch ---- - -fix: Fix incorrect target fid check for link messages older than the compact state diff --git a/.changeset/serious-falcons-drum.md b/.changeset/serious-falcons-drum.md deleted file mode 100644 index 2e90a1d8d0..0000000000 --- a/.changeset/serious-falcons-drum.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@farcaster/hubble": patch ---- - -fix: do not let deleted fname events allow old fname events to be re-added diff --git a/.changeset/sixty-shoes-occur.md b/.changeset/sixty-shoes-occur.md deleted file mode 100644 index d02e405664..0000000000 --- a/.changeset/sixty-shoes-occur.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@farcaster/hubble": minor ---- - -fix: full state events should not include deleted messages diff --git a/.changeset/violet-poets-camp.md b/.changeset/violet-poets-camp.md deleted file mode 100644 index 33fda5112e..0000000000 --- a/.changeset/violet-poets-camp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@farcaster/hubble": patch ---- - -fix: Migrate storage cache to rust and fix race condition diff --git a/apps/hubble/CHANGELOG.md b/apps/hubble/CHANGELOG.md index 5ef1c0df93..a3a9df89ca 100644 --- a/apps/hubble/CHANGELOG.md +++ b/apps/hubble/CHANGELOG.md @@ -1,5 +1,17 @@ # @farcaster/hubble +## 1.14.0 + +### Minor Changes + +- be54d203: fix: full state events should not include deleted messages + +### Patch Changes + +- a5f867fb: fix: Fix incorrect target fid check for link messages older than the compact state +- d1dce89f: fix: do not let deleted fname events allow old fname events to be re-added +- 554d82a4: fix: Migrate storage cache to rust and fix race condition + ## 1.13.8 ### Patch Changes diff --git a/apps/hubble/package.json b/apps/hubble/package.json index 4611ae7d92..821f55f3ec 100644 --- a/apps/hubble/package.json +++ b/apps/hubble/package.json @@ -1,6 +1,6 @@ { "name": "@farcaster/hubble", - "version": "1.13.8", + "version": "1.14.0", "description": "Farcaster Hub", "author": "", "license": "", diff --git a/apps/hubble/src/hubble.ts b/apps/hubble/src/hubble.ts index e6a6f65091..314ecdea4b 100644 --- a/apps/hubble/src/hubble.ts +++ b/apps/hubble/src/hubble.ts @@ -108,7 +108,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.6.12"; +export const FARCASTER_VERSION = "2024.7.24"; 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 @@ -122,6 +122,7 @@ export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [ { version: "2024.3.20", expiresAt: 1715731200000 }, // expires at 5/15/24 00:00 UTC { version: "2024.5.1", expiresAt: 1719360000000 }, // expires at 6/26/24 00:00 UTC { version: "2024.6.12", expiresAt: 1722988800000 }, // expires at 8/7/24 00:00 UTC + { version: "2024.7.24", expiresAt: 1726617600000 }, // expires at 9/18/24 00:00 UTC ]; const MAX_CONTACT_INFO_AGE_MS = 1000 * 60 * 60; // 60 minutes