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 1.17 #2418

Merged
merged 2 commits into from
Dec 7, 2024
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
6 changes: 6 additions & 0 deletions apps/hubble/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @farcaster/hubble

## 1.17.0

### Minor Changes

- chore: Release 1.17

## 1.16.3

### 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.16.3",
"version": "1.17.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 @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/hubble/src/profile/gossipProfileWorker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion apps/hubble/src/rpc/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
Loading