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

Merged
merged 1 commit into from
Oct 16, 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
5 changes: 0 additions & 5 deletions .changeset/red-bags-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-badgers-tan.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.16.0

### Minor Changes

- chore: Update protocol version

### Patch Changes

- Updated dependencies [91b77204]
- @farcaster/hub-nodejs@0.12.6

## 1.15.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/hubble/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/hubble",
"version": "1.15.7",
"version": "1.16.0",
"description": "Farcaster Hub",
"author": "",
"license": "",
Expand Down Expand Up @@ -75,7 +75,7 @@
"@chainsafe/libp2p-noise": "15.1.0",
"@datastructures-js/priority-queue": "^6.3.1",
"@faker-js/faker": "~7.6.0",
"@farcaster/hub-nodejs": "^0.12.5",
"@farcaster/hub-nodejs": "^0.12.6",
"@fastify/cors": "^8.4.0",
"@figma/hot-shots": "^9.0.0-figma.1",
"@grpc/grpc-js": "~1.11.1",
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 @@ -118,7 +118,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.9.4";
export const FARCASTER_VERSION = "2024.10.16";
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 @@ -134,6 +134,7 @@ export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [
{ 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
{ 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
];

const MAX_CONTACT_INFO_AGE_MS = 1000 * 60 * 60; // 60 minutes
Expand Down
6 changes: 6 additions & 0 deletions packages/hub-nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @farcaster/hub-nodejs

## 0.12.6

### Patch Changes

- 91b77204: Add createDefaultMetadataKeyInterceptor

## 0.12.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hub-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/hub-nodejs",
"version": "0.12.5",
"version": "0.12.6",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/shuttle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @farcaster/hub-shuttle

## 0.6.8

### Patch Changes

- 727041cb: feat(shuttle): Parametrize hub connection timeouts for HubSubscriber and MessageReconciliation
- Updated dependencies [91b77204]
- @farcaster/hub-nodejs@0.12.6

## 0.6.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/shuttle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/shuttle",
"version": "0.6.7",
"version": "0.6.8",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand All @@ -17,7 +17,7 @@
"license": "MIT",
"dependencies": {
"@farcaster/hot-shots": "^10.0.0",
"@farcaster/hub-nodejs": "^0.12.4",
"@farcaster/hub-nodejs": "^0.12.6",
"commander": "11.0.0",
"dotenv": "16.4.5",
"ioredis": "^5.3.2",
Expand Down
Loading