Skip to content

Commit

Permalink
chore: Release 1.12.2 (#2007)
Browse files Browse the repository at this point in the history
## Motivation

Release 1.12.2

## Change Summary

Describe the changes being made in 1-2 concise sentences.

## Merge Checklist

_Choose all relevant options below by adding an `x` now or at any time
before submitting for review_

- [x] PR title adheres to the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/) standard
- [x] PR has a
[changeset](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#35-adding-changesets)
- [x] PR has been tagged with a change label(s) (i.e. documentation,
feature, bugfix, or chore)
- [ ] PR includes
[documentation](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#32-writing-docs)
if necessary.
- [x] All [commits have been
signed](https://github.com/farcasterxyz/hub-monorepo/blob/main/CONTRIBUTING.md#22-signing-commits)

## Additional Context

If this is a relatively large or complex change, provide more details
here that will help reviewers

<!-- start pr-codex -->

---

## PR-Codex overview
This PR updates version numbers across multiple packages and adds a new
method `approxSize` to `getInfo()` in the core package.

### Detailed summary
- Updated versions to 0.14.12 in core package
- Updated versions to 0.11.12 in hub-nodejs package
- Updated versions to 0.8.9 in hub-web package
- Added `approxSize` method to `getInfo()` in core package
- Various dependency updates and fixes in different packages

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`

<!-- end pr-codex -->
  • Loading branch information
sanjayprabhu committed May 17, 2024
1 parent 8c759d6 commit 9e1d8d2
Show file tree
Hide file tree
Showing 14 changed files with 44 additions and 38 deletions.
5 changes: 0 additions & 5 deletions .changeset/fast-emus-own.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/few-impalas-call.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-lizards-build.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-flowers-fry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tiny-trains-shout.md

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
jobs:
build-image:
timeout-minutes: 10
runs-on: 'warp-ubuntu-latest-arm64-32x'
runs-on: 'warp-ubuntu-latest-arm64-16x'

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -59,9 +59,9 @@ jobs:
matrix:
include:
- node_version: 20
runs_on: 'warp-ubuntu-latest-x64-32x'
runs_on: 'warp-ubuntu-latest-x64-16x'
- node_version: 21
runs_on: 'warp-ubuntu-latest-arm64-32x'
runs_on: 'warp-ubuntu-latest-arm64-16x'

runs-on: ${{ matrix.runs_on }}
name: test (${{ matrix.node_version }})
Expand Down
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.12.2

### Patch Changes

- 8e7dec10: fix: Fix incorrect link message padding
- c261fba6: added approxSize to getInfo()
- 0e342af3: fix: Fetch previous snapshot if current db one is not present
- 8c759d66: fix: Throttle pruning so hub is not overloaded
- Updated dependencies [c261fba6]
- @farcaster/hub-nodejs@0.11.12

## 1.12.1

### 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.12.1",
"version": "1.12.2",
"description": "Farcaster Hub",
"author": "",
"license": "",
Expand Down Expand Up @@ -75,7 +75,7 @@
"@chainsafe/libp2p-noise": "^11.0.0 ",
"@datastructures-js/priority-queue": "^6.3.1",
"@faker-js/faker": "~7.6.0",
"@farcaster/hub-nodejs": "^0.11.11",
"@farcaster/hub-nodejs": "^0.11.12",
"@fastify/cors": "^8.4.0",
"@figma/hot-shots": "^9.0.0-figma.1",
"@grpc/grpc-js": "~1.8.21",
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.12

### Patch Changes

- c261fba6: added approxSize to getInfo()

## 0.14.11

### 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.14.11",
"version": "0.14.12",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/hub-nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @farcaster/hub-nodejs

## 0.11.12

### Patch Changes

- c261fba6: added approxSize to getInfo()
- Updated dependencies [c261fba6]
- @farcaster/core@0.14.12

## 0.11.11

### 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.11.11",
"version": "0.11.12",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand All @@ -20,7 +20,7 @@
"url": "https://github.com/farcasterxyz/hub-monorepo/blob/main/packages/hub-nodejs"
},
"dependencies": {
"@farcaster/core": "0.14.11",
"@farcaster/core": "0.14.12",
"@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.8.9

### Patch Changes

- c261fba6: added approxSize to getInfo()
- 920f6c02: fix: grpcWeb import
- Updated dependencies [c261fba6]
- @farcaster/core@0.14.12

## 0.8.8

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

0 comments on commit 9e1d8d2

Please sign in to comment.