Skip to content

Commit

Permalink
chore: Release 1.10 (#1692)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayprabhu authored Feb 9, 2024
1 parent d90fb0b commit 330ce83
Show file tree
Hide file tree
Showing 16 changed files with 65 additions and 39 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-donuts-glow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/early-hotels-reflect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fair-ducks-bathe.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/itchy-llamas-act.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-pots-pay.md

This file was deleted.

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

## 1.10.0

### Minor Changes

- ae91b73a: Add Solana verification support

### Patch Changes

- 97a42165: fix: Don't broadcast old messages on gossip
- d90fb0b5: fix: Increase sync max duration
- be07bc86: fix: Properly init the merkle trie so we don't miss l2events
- a9105e20: fix: Add 8G heap to docker commands
- Updated dependencies [ae91b73a]
- @farcaster/hub-nodejs@0.11.0

## 1.9.9

### 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.9.9",
"version": "1.10.0",
"description": "Farcaster Hub",
"author": "",
"license": "",
Expand Down Expand Up @@ -70,7 +70,7 @@
"@chainsafe/libp2p-gossipsub": "6.1.0",
"@chainsafe/libp2p-noise": "^11.0.0 ",
"@faker-js/faker": "~7.6.0",
"@farcaster/hub-nodejs": "^0.10.24",
"@farcaster/hub-nodejs": "^0.11.0",
"@farcaster/rocksdb": "^5.5.0",
"@fastify/cors": "^8.4.0",
"@grpc/grpc-js": "~1.8.21",
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 @@ -92,7 +92,7 @@ export const APP_NICKNAME = process.env["HUBBLE_NAME"] ?? "Farcaster Hub";
export const SNAPSHOT_S3_DEFAULT_BUCKET = "download.farcaster.xyz";
export const S3_REGION = "us-east-1";

export const FARCASTER_VERSION = "2023.12.27";
export const FARCASTER_VERSION = "2024.2.7";
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 @@ -102,6 +102,7 @@ export const FARCASTER_VERSIONS_SCHEDULE: VersionSchedule[] = [
{ version: "2023.10.4", expiresAt: 1701216000000 }, // expires at 11/28/23 00:00 UTC
{ version: "2023.11.15", expiresAt: 1704844800000 }, // expires at 1/10/24 00:00 UTC
{ version: "2023.12.27", expiresAt: 1708473600000 }, // expires at 2/21/24 00:00 UTC
{ version: "2024.2.7", expiresAt: 1712102400000 }, // expires at 4/3/24 00:00 UTC
];

const MAX_CONTACT_INFO_AGE_MS = GOSSIP_SEEN_TTL;
Expand Down
11 changes: 11 additions & 0 deletions apps/replicator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @farcaster/replicator

## 0.3.0

### Minor Changes

- ae91b73a: Add Solana verification support

### Patch Changes

- Updated dependencies [ae91b73a]
- @farcaster/hub-nodejs@0.11.0

## 0.2.10

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/replicator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/replicator",
"version": "0.2.10",
"version": "0.3.0",
"description": "Replicate Farcaster hub data into Postgres",
"author": "",
"license": "",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@bull-board/api": "^5.8.4",
"@bull-board/fastify": "^5.8.4",
"@commander-js/extra-typings": "^11.0.0",
"@farcaster/hub-nodejs": "^0.10.24",
"@farcaster/hub-nodejs": "^0.11.0",
"bullmq": "^4.11.4",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @farcaster/core

## 0.14.0

### Minor Changes

- ae91b73a: Add Solana verification support

## 0.13.8

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

## 0.11.0

### Minor Changes

- ae91b73a: Add Solana verification support

### Patch Changes

- Updated dependencies [ae91b73a]
- @farcaster/core@0.14.0

## 0.10.24

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions 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.10.24",
"version": "0.11.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand All @@ -16,7 +16,7 @@
],
"license": "MIT",
"dependencies": {
"@farcaster/core": "0.13.8",
"@farcaster/core": "0.14.0",
"@grpc/grpc-js": "~1.8.21",
"@noble/hashes": "^1.3.0",
"neverthrow": "^6.0.0"
Expand Down
11 changes: 11 additions & 0 deletions packages/hub-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @farcaster/hub-web

## 0.8.0

### Minor Changes

- ae91b73a: Add Solana verification support

### Patch Changes

- Updated dependencies [ae91b73a]
- @farcaster/core@0.14.0

## 0.7.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/hub-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/hub-web",
"version": "0.7.6",
"version": "0.8.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -28,7 +28,7 @@
"ts-proto": "^1.146.0"
},
"dependencies": {
"@farcaster/core": "^0.13.8",
"@farcaster/core": "^0.14.0",
"@improbable-eng/grpc-web": "^0.15.0",
"rxjs": "^7.8.0"
}
Expand Down

0 comments on commit 330ce83

Please sign in to comment.