Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .changeset/cli-qr-code.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/cloud-relay-keepalive.md

This file was deleted.

16 changes: 16 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# sideband

## 0.6.2

### Patch Changes

- [#56](https://github.com/sidebandtech/sideband/pull/56) [`00fca3e`](https://github.com/sidebandtech/sideband/commit/00fca3eadceb2bb92990e0fbcd608ea5ceae232c) Thanks [@koistya](https://github.com/koistya)! - Print a QR code in the terminal at daemon startup alongside the Quick Connect URL.
- Renders below the URL/code block using Unicode half-block characters (`▀▄█ `) — halves
the height vs full-size QR, works on light and dark terminals without ANSI color codes
- Skipped when the terminal is too narrow to fit the QR without line-wrapping (dynamic
guard based on actual matrix width + 2-char left margin)
- Silently skipped on error — QR rendering never blocks startup
- Not reprinted on QC renewal (would spam the terminal); only URL + code are shown
- Zero new transitive dependencies (`qr` package, 0 deps, 7 KB gzipped)

- Updated dependencies [[`00fca3e`](https://github.com/sidebandtech/sideband/commit/00fca3eadceb2bb92990e0fbcd608ea5ceae232c)]:
- @sideband/cloud@0.6.1

## 0.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sideband",
"version": "0.6.1",
"version": "0.6.2",
"description": "Sideband daemon CLI — run `npx sideband` to start a relay-connected daemon in seconds.",
"license": "Apache-2.0",
"repository": {
Expand Down
11 changes: 11 additions & 0 deletions packages/cloud/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @sideband/cloud

## 0.6.1

### Patch Changes

- [#56](https://github.com/sidebandtech/sideband/pull/56) [`00fca3e`](https://github.com/sidebandtech/sideband/commit/00fca3eadceb2bb92990e0fbcd608ea5ceae232c) Thanks [@koistya](https://github.com/koistya)! - Fix relay keepalive lifecycle on both client and daemon sides.
- **Daemon (`listen`):** add SBRP Ping every 45s in `runMux` to prevent the relay from
closing idle daemon connections (relay sweeps at 90s; cleared in `finally` on disconnect)
- **Client (`connect`):** fix keepalive timer race — capture interval handle in a local
`const timer` so a stale in-flight `send` failure from a previous connection cannot clear
the active connection's timer; `terminate()` now clears explicitly before transport close

## 0.6.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cloud/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sideband/cloud",
"version": "0.6.0",
"version": "0.6.1",
"description": "Cloud relay SDK for Sideband: connect clients and daemons via relay.sideband.cloud with automatic session management, token renewal, and E2EE.",
"license": "Apache-2.0",
"repository": {
Expand Down