chore(shuttle): Rename package to shuttle and release beta (#1915)

## Motivation

Describe why this issue should be fixed and link to any relevant design
docs, issues or other relevant items.

## 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 renames the package `@farcaster/hub-shuttle` to
`@farcaster/shuttle` and releases it as a beta version.

### Detailed summary
- Renamed package to `@farcaster/shuttle`
- Released beta version 0.2.0
- Updated dependencies in example app
- Updated imports in example app to reflect package name change

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

<!-- end pr-codex -->
This commit is contained in:
Sanjay
2024-04-15 16:33:58 -07:00
committed by GitHub
parent 8ce91dcb7b
commit b707e121cc
33 changed files with 12 additions and 11 deletions

View File

@@ -1,5 +0,0 @@
---
"@farcaster/hub-shuttle": patch
---
feat: Support redis streams for scalability and add reconciliation workers

View File

@@ -1,5 +1,11 @@
# @farcaster/hub-shuttle
## 0.2.0
### Minor Changes
- chore: Rename to shuttle and release beta
## 0.1.6
### Patch Changes

View File

Before

Width:  |  Height:  |  Size: 149 KiB

After

Width:  |  Height:  |  Size: 149 KiB

View File

@@ -1,6 +1,6 @@
{
"name": "@farcaster/hub-shuttle",
"version": "0.1.6",
"name": "@farcaster/shuttle",
"version": "0.2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",

View File

@@ -11,7 +11,7 @@ import {
EventStreamConnection,
HubEventStreamConsumer,
HubSubscriber,
} from "../index"; // If you want to use this as a standalone app, replace this import with "@faracaster/hub-shuttle"
} from "../index"; // If you want to use this as a standalone app, replace this import with "@farcaster/shuttle"
import { migrateToLatest } from "./migration";
import { bytesToHexString, HubEvent, Message } from "@farcaster/hub-nodejs";
import { log } from "./log";

View File

@@ -1,10 +1,10 @@
{
"name": "@farcaster/hub-shuttle",
"version": "0.1.5",
"name": "@farcaster/shuttle-example",
"version": "0.2.0",
"main": "./app.ts",
"license": "MIT",
"dependencies": {
"@farcaster/hub-shuttle": "^0.1.4",
"@farcaster/shuttle": "^0.2.0",
"@figma/hot-shots": "^9.0.0-figma.1",
"commander": "^11.0.0",
"ioredis": "^5.3.2",