Skip to content

Commit

Permalink
chore: Release 1.5 (#1287)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayprabhu authored Aug 23, 2023
1 parent be6ee3c commit ec0264e
Show file tree
Hide file tree
Showing 23 changed files with 58 additions and 82 deletions.
5 changes: 0 additions & 5 deletions .changeset/cool-fans-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/green-camels-roll.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-pens-clap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/new-penguins-end.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rare-pigs-teach.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/short-seals-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-crews-remember.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/spotty-hats-visit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-tools-act.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-nails-suffer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-pumas-collect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-jars-exist.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/yellow-humans-rescue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-lemons-develop.md

This file was deleted.

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

## 1.5.0

### Minor Changes

- be6ee3c8: feat: Make l2 rpc url required to start hubble ahead of mainnet migration

### Patch Changes

- ee3897f3: feat: Add startup checks and progress bars
- 01a3c08e: feat: fetch l2 contract addresses from network config
- b50024c8: fix: Improve startup checks to be clearer
- 315a0873: feat: add an events-reset command to clear l2 events from the db
- 74313c17: Switch startup checks to check against OP Mainnet
- a3d6b21e: fix: Cleanup startup checks and add cleaner exit failures
- e6180074: feat: enforce storage pruning 1 day after migration
- a508e56f: chore: Improve gen.submitMessages() for testing
- 930d8635: chore: Update the Grafana dashboard
- 7a969943: fix: Improve logging for DB migration failures
- 27287d2d: feat: hubble.sh script to install and upgrade hubble
- bf1c44d2: feat: Update signer onchain event to store new fields and add additional RPC calls
- acfb44d7: feat: SyncEngine syncs from L2 if required post migration
- Updated dependencies [bf1c44d2]
- @farcaster/hub-nodejs@0.10.5

## 1.4.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.4.6",
"version": "1.5.0",
"description": "Farcaster Hub",
"author": "",
"license": "",
Expand Down Expand Up @@ -59,7 +59,7 @@
"@chainsafe/libp2p-gossipsub": "6.1.0",
"@chainsafe/libp2p-noise": "^11.0.0 ",
"@faker-js/faker": "~7.6.0",
"@farcaster/hub-nodejs": "^0.10.4",
"@farcaster/hub-nodejs": "^0.10.5",
"@farcaster/rocksdb": "^5.5.0",
"@grpc/grpc-js": "~1.8.21",
"@libp2p/interface-connection": "^3.0.2",
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 @@ -83,12 +83,13 @@ export type HubSubmitSource = "gossip" | "rpc" | "eth-provider" | "l2-provider"
export const APP_VERSION = packageJson.version;
export const APP_NICKNAME = process.env["HUBBLE_NAME"] ?? "Farcaster Hub";

export const FARCASTER_VERSION = "2023.7.12";
export const FARCASTER_VERSION = "2023.8.23";
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
];

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.5

### Patch Changes

- e6180074: feat: enforce storage pruning 1 day after migration
- bf1c44d2: feat: Update signer onchain event to store new fields and add additional RPC calls

## 0.12.4

### 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.12.4",
"version": "0.12.5",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
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.5

### Patch Changes

- bf1c44d2: feat: Update signer onchain event to store new fields and add additional RPC calls
- Updated dependencies [e6180074]
- Updated dependencies [bf1c44d2]
- @farcaster/core@0.12.5

## 0.10.4

### 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.4",
"version": "0.10.5",
"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.12.4",
"@farcaster/core": "0.12.5",
"@grpc/grpc-js": "~1.8.21",
"@noble/hashes": "^1.3.0",
"neverthrow": "^6.0.0"
Expand Down
9 changes: 9 additions & 0 deletions packages/hub-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @farcaster/hub-web

## 0.6.2

### Patch Changes

- bf1c44d2: feat: Update signer onchain event to store new fields and add additional RPC calls
- Updated dependencies [e6180074]
- Updated dependencies [bf1c44d2]
- @farcaster/core@0.12.5

## 0.6.1

### 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.6.1",
"version": "0.6.2",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -29,7 +29,7 @@
"ts-proto": "^1.146.0"
},
"dependencies": {
"@farcaster/core": "^0.12.4",
"@farcaster/core": "^0.12.5",
"@improbable-eng/grpc-web": "^0.15.0",
"rxjs": "^7.8.0"
}
Expand Down

0 comments on commit ec0264e

Please sign in to comment.