Skip to content

Commit 01418ea

Browse files
authored
chore: Release 1.18 (#2467)
## 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. <!-- start pr-codex --> --- ## 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}` <!-- end pr-codex -->
1 parent 85c7e5e commit 01418ea

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.changeset/silent-crews-explain.md

-5
This file was deleted.

apps/hubble/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @farcaster/hubble
22

3+
## 1.18.0
4+
5+
### Minor Changes
6+
7+
- chore: Release 1.18
8+
9+
### Patch Changes
10+
11+
- 85c7e5e3: fix: Ensure we always have a minimum number of connected peers
12+
313
## 1.17.0
414

515
### Minor Changes

apps/hubble/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@farcaster/hubble",
3-
"version": "1.17.0",
3+
"version": "1.18.0",
44
"description": "Farcaster Hub",
55
"author": "",
66
"license": "",

apps/hubble/src/hubble.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export const SNAPSHOT_S3_UPLOAD_BUCKET = "farcaster-snapshots";
119119
export const SNAPSHOT_S3_DOWNLOAD_BUCKET = "download.farcaster.xyz";
120120
export const S3_REGION = "auto";
121121

122-
export const FARCASTER_VERSION = "2024.11.27";
122+
export const FARCASTER_VERSION = "2025.1.8";
123123
export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [
124124
{ version: "2023.3.1", expiresAt: 1682553600000 }, // expires at 4/27/23 00:00 UTC
125125
{ version: "2023.4.19", expiresAt: 1686700800000 }, // expires at 6/14/23 00:00 UTC
@@ -137,6 +137,7 @@ export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [
137137
{ version: "2024.9.4", expiresAt: 1730246400000 }, // expires at 10/30/24 00:00 UTC
138138
{ version: "2024.10.16", expiresAt: 1733875200000 }, // expires at 12/11/24 00:00 UTC
139139
{ version: "2024.11.27", expiresAt: 1737504000000 }, // expires at 1/22/25 00:00 UTC
140+
{ version: "2025.1.8", expiresAt: 1741132800000 }, // expires at 1/22/25 00:00 UTC
140141
];
141142

142143
const MAX_CONTACT_INFO_AGE_MS = 1000 * 60 * 60; // 60 minutes

0 commit comments

Comments
 (0)