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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 1.55.2

### Changed

- Raise the [omnyhub](https://pub.dev/packages/omnyhub) constraint to `^1.3.0`. A
maintenance bump only: 1.3.0 is an additive, backward-compatible control-plane
release (heartbeat telemetry, one-way node push, connection lifecycle hooks,
node retention, injectable node transport) whose changes are confined to its
node protocol, which OmnyShell does not use — it rides on omnyhub's transport
primitives (`Connection`, `Message`, `ConnectionCodec`, `TypedConnection`,
`WebSocketConnection`) via `FrameConnection`, and those are unchanged apart from
the new optional `TypedConnection.onDecodeError` hook. No behaviour change and
no API change here; the full suite passes unmodified.

## 1.55.1

### Changed
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
/// This is the single source of truth for "what build is this": it is rendered
/// in the CLI banner and is the default a node reports as its
/// [NodeConfig.agentVersion] / [PlatformInfo.agentVersion].
const String omnyShellVersion = '1.55.1';
const String omnyShellVersion = '1.55.2';
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: >-
connect to a Hub by node identity (not host:port); the Hub authenticates,
authorizes and brokers encrypted sessions to Nodes over WebSocket-on-TLS.
Ships Hub, Node, Client and CLI implementations behind first-class Dart APIs.
version: 1.55.1
version: 1.55.2
repository: https://github.com/OmnyGrid/omnyshell

environment:
Expand All @@ -23,7 +23,7 @@ dependencies:
http: ^1.2.0
meta: ^1.18.3
omnydrive: ^1.12.1
omnyhub: ^1.2.0
omnyhub: ^1.3.0
path: ^1.9.0
pointycastle: ^4.0.0
#portable_pty: ^0.0.5 # waiting crash fix.
Expand Down
Loading