Skip to content

Commit

Permalink
chore: Release 1.6.0 (#1453)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayprabhu authored Oct 4, 2023
1 parent a70b9bf commit 649bfe5
Show file tree
Hide file tree
Showing 19 changed files with 64 additions and 66 deletions.
5 changes: 0 additions & 5 deletions .changeset/afraid-spies-visit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/beige-drinks-prove.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dry-mayflies-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/forty-cycles-cough.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/great-parents-occur.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-dots-cheer.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/lucky-donuts-sleep.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/new-pears-divide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pink-tables-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-guests-cry.md

This file was deleted.

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

## 1.6.0

### Minor Changes

- 09b7949c: feat: make verifications globally unique

### Patch Changes

- 8abf1864: feat: add migration to clear onchain events and force re-sync
- c64400dc: fix: Use DB_SCHEMA version in snapshot path
- 4dea7e28: chore: Upgrade ed25519-dalek in rust
- 472e8ae3: feat: Add a flag to clear l2 events
- ef795c71: upgrade viem to 1.12.2
- ef795c71: fall back to eth_getLogs in event sync
- b7c2b0a9: chore: Replace hub-web with HTTP api examples
- 14f67cf2: feat: Add peer scoring
- 03cd3333: feat: Audit peer's messages during sync
- Updated dependencies [14f67cf2]
- @farcaster/hub-nodejs@0.10.11

## 1.5.6

### 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.5.6",
"version": "1.6.0",
"description": "Farcaster Hub",
"author": "",
"license": "",
Expand Down Expand Up @@ -69,7 +69,7 @@
"@chainsafe/libp2p-gossipsub": "6.1.0",
"@chainsafe/libp2p-noise": "^11.0.0 ",
"@faker-js/faker": "~7.6.0",
"@farcaster/hub-nodejs": "^0.10.10",
"@farcaster/hub-nodejs": "^0.10.11",
"@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 @@ -80,13 +80,14 @@ 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.8.23";
export const FARCASTER_VERSION = "2023.10.4";
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
{ version: "2023.8.23", expiresAt: 1697587200000 }, // expires at 10/18/23 00:00 UTC
{ version: "2023.10.4", expiresAt: 1701216000000 }, // expires at 11/28/23 00:00 UTC
];

export interface HubInterface {
Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @farcaster/core

## 0.12.11

### Patch Changes

- ef795c71: upgrade viem to 1.12.2
- 14f67cf2: feat: Add peer scoring

## 0.12.10

### Patch Changes
Expand Down
6 changes: 4 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/core",
"version": "0.12.10",
"version": "0.12.11",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand All @@ -11,7 +11,9 @@
"types": "./dist/index.d.ts"
}
},
"files": ["dist"],
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@noble/curves": "^1.0.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/hub-nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @farcaster/hub-nodejs

## 0.10.11

### Patch Changes

- 14f67cf2: feat: Add peer scoring
- Updated dependencies [ef795c71]
- Updated dependencies [14f67cf2]
- @farcaster/core@0.12.11

## 0.10.10

### Patch Changes
Expand Down
8 changes: 5 additions & 3 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.10",
"version": "0.10.11",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand All @@ -11,10 +11,12 @@
"types": "./dist/index.d.ts"
}
},
"files": ["dist"],
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@farcaster/core": "0.12.10",
"@farcaster/core": "0.12.11",
"@grpc/grpc-js": "~1.8.21",
"@noble/hashes": "^1.3.0",
"neverthrow": "^6.0.0"
Expand Down
10 changes: 10 additions & 0 deletions packages/hub-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @farcaster/hub-web

## 0.6.6

### Patch Changes

- b7c2b0a9: chore: Replace hub-web with HTTP api examples
- 14f67cf2: feat: Add peer scoring
- Updated dependencies [ef795c71]
- Updated dependencies [14f67cf2]
- @farcaster/core@0.12.11

## 0.6.5

### Patch Changes
Expand Down
8 changes: 5 additions & 3 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.6.5",
"version": "0.6.6",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand All @@ -11,7 +11,9 @@
"types": "./dist/index.d.ts"
}
},
"files": ["dist"],
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "tsup --config tsup.config.ts",
Expand All @@ -27,7 +29,7 @@
"ts-proto": "^1.146.0"
},
"dependencies": {
"@farcaster/core": "^0.12.9",
"@farcaster/core": "^0.12.11",
"@improbable-eng/grpc-web": "^0.15.0",
"rxjs": "^7.8.0"
}
Expand Down

0 comments on commit 649bfe5

Please sign in to comment.