chore: Release 1.17 (#2418)

## Why is this change needed?

Release 1.17

## 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.


<!-- start pr-codex -->

---

## PR-Codex overview
This PR focuses on updating the versioning information and release notes
for the `@farcaster/hubble` package, including a version bump and
changes to the `FARCASTER_VERSION` and its schedule.

### Detailed summary
- Updated `CHANGELOG.md` to include version `1.17.0` and a minor change
note.
- Changed `version` in `package.json` from `1.16.3` to `1.17.0`.
- Updated `FARCASTER_VERSION` in `hubble.ts` from `2024.10.16` to
`2024.11.27`.
- Added a new version entry `2024.11.27` to
`FARCASTER_VERSIONS_SCHEDULE`.

>  Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`

<!-- end pr-codex -->
This commit is contained in:
Sanjay
2024-12-06 23:52:33 -08:00
committed by GitHub
parent 79a463ddcf
commit 2633a3f449
5 changed files with 10 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
# @farcaster/hubble
## 1.17.0
### Minor Changes
- chore: Release 1.17
## 1.16.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@farcaster/hubble",
"version": "1.16.3",
"version": "1.17.0",
"description": "Farcaster Hub",
"author": "",
"license": "",

View File

@@ -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

View File

@@ -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";

View File

@@ -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);
}