Skip to content

Commit

Permalink
chore: Release 1.14 (#2208)
Browse files Browse the repository at this point in the history
## Why is this change needed?

Release 1.14

## 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 updates the version of `@farcaster/hubble` to `1.14.0`,
introduces minor and patch changes, and updates the `FARCASTER_VERSION`
constant in `hubble.ts`.

### Detailed summary
- Updated `@farcaster/hubble` version to `1.14.0`
- Minor and patch changes in `CHANGELOG.md`
- Updated `FARCASTER_VERSION` constant in `hubble.ts`

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

<!-- end pr-codex -->
  • Loading branch information
sanjayprabhu authored Jul 24, 2024
1 parent d1dce89 commit f1d80de
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 22 deletions.
5 changes: 0 additions & 5 deletions .changeset/rare-pots-look.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/serious-falcons-drum.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-shoes-occur.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-poets-camp.md

This file was deleted.

12 changes: 12 additions & 0 deletions apps/hubble/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.13.8",
"version": "1.14.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 @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f1d80de

Please sign in to comment.