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.1

### Changed

- Raise the [omnyhub](https://pub.dev/packages/omnyhub) constraint to `^1.2.0` and
[omnydrive](https://pub.dev/packages/omnydrive) to `^1.12.1`. A maintenance bump
only: omnyhub 1.2.0 is a purely additive control-plane release (bidirectional
node RPC, enrolment, application-defined discovery) 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`), and those are unchanged. omnydrive
1.12.1 is itself just the same omnyhub bump. No behaviour change and no API
change here; the full suite passes unmodified.

## 1.55.0

### 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.0';
const String omnyShellVersion = '1.55.1';
6 changes: 3 additions & 3 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.0
version: 1.55.1
repository: https://github.com/OmnyGrid/omnyshell

environment:
Expand All @@ -22,8 +22,8 @@ dependencies:
ffi: ^2.1.0
http: ^1.2.0
meta: ^1.18.3
omnydrive: ^1.12.0
omnyhub: ^1.1.0
omnydrive: ^1.12.1
omnyhub: ^1.2.0
path: ^1.9.0
pointycastle: ^4.0.0
#portable_pty: ^0.0.5 # waiting crash fix.
Expand Down
Loading