From fcb76cd9adcc2d9eff9f1a1832fc89c8bacff117 Mon Sep 17 00:00:00 2001 From: Shane da Silva Date: Mon, 8 Jul 2024 18:59:58 -0700 Subject: [PATCH] chore(shuttle) Release 0.4.3 (#2136) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Why is this change needed? Releases a bug fix that is affecting Shuttle users. ## Merge Checklist - [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) - [ ] 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. --- ## PR-Codex overview This PR updates the version of `@farcaster/shuttle` package to `0.4.3` and includes a patch to handle "no such key" error when querying group on first start. ### Detailed summary - Updated package version to `0.4.3` - Patched to handle "no such key" error when querying group on first start > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- .changeset/calm-rings-lie.md | 5 ----- packages/shuttle/CHANGELOG.md | 6 ++++++ packages/shuttle/package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/calm-rings-lie.md diff --git a/.changeset/calm-rings-lie.md b/.changeset/calm-rings-lie.md deleted file mode 100644 index 8109da459..000000000 --- a/.changeset/calm-rings-lie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@farcaster/shuttle": patch ---- - -Gracefully handle "no such key" when querying group on first start diff --git a/packages/shuttle/CHANGELOG.md b/packages/shuttle/CHANGELOG.md index 9f6a9239a..3ec80d2a6 100644 --- a/packages/shuttle/CHANGELOG.md +++ b/packages/shuttle/CHANGELOG.md @@ -1,5 +1,11 @@ # @farcaster/hub-shuttle +## 0.4.3 + +### Patch Changes + +- 45180584: Gracefully handle "no such key" when querying group on first start + ## 0.4.2 ### Patch Changes diff --git a/packages/shuttle/package.json b/packages/shuttle/package.json index fb414a7a4..01bf4097e 100644 --- a/packages/shuttle/package.json +++ b/packages/shuttle/package.json @@ -1,6 +1,6 @@ { "name": "@farcaster/shuttle", - "version": "0.4.2", + "version": "0.4.3", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts",