Skip to content

Commit

Permalink
chore: release 1.4 (#1117)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayprabhu authored Jul 12, 2023
1 parent a38720b commit f4587bb
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 17 deletions.
5 changes: 0 additions & 5 deletions .changeset/dull-onions-sniff.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-terms-occur.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-rice-laugh.md

This file was deleted.

11 changes: 11 additions & 0 deletions apps/hubble/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @farcaster/hubble

## 1.4.0

### Minor Changes

- a38720b: chore: Hard fail on missing RPC urls.

### Patch Changes

- 2817141: perf: Tune sync parameters and add mergeMessages profile
- b5becd9: fix: Improve logging for open iterators and add hub events timeout

## 1.3.4

### 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.3.4",
"version": "1.4.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 @@ -75,11 +75,12 @@ export type HubSubmitSource = "gossip" | "rpc" | "eth-provider" | "sync" | "fnam
export const APP_VERSION = packageJson.version;
export const APP_NICKNAME = process.env["HUBBLE_NAME"] ?? "Farcaster Hub";

export const FARCASTER_VERSION = "2023.5.31";
export const FARCASTER_VERSION = "2023.7.12";
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
{ version: "2023.5.31", expiresAt: 1690329600000 }, // expires at 7/26/23 00:00 UTC
{ version: "2023.7.12", expiresAt: 1693958400000 }, // expires at 9/6/23 00:00 UTC
];

export interface HubInterface {
Expand Down

0 comments on commit f4587bb

Please sign in to comment.