From cb3a7ac2d093b25d6bb76b56d16eaccbae2064de Mon Sep 17 00:00:00 2001 From: "Graciliano M. P." Date: Tue, 14 Jul 2026 21:58:16 -0300 Subject: [PATCH] =?UTF-8?q?Dashboard=20v0.2.3=20=E2=80=94=20rebuild=20agai?= =?UTF-8?q?nst=20OmnyServer=200.15.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The login footer reads the omnyserver version the dashboard was built against; the last deploy was beside 0.15.0. Bump the dashboard so the gated Pages deploy rebuilds it against 0.15.1 — the footer now reads `Dashboard v0.2.3 · OmnyServer v0.15.1`. Also move the dependency floor from ^0.14.0 (which excluded 0.15.x — stale, and only unnoticed because the deploy path-overrides omnyserver to this repo) to ^0.15.0. Co-Authored-By: Claude Opus 4.8 (1M context) --- omnyserver_web/CHANGELOG.md | 7 +++++++ omnyserver_web/lib/version.dart | 2 +- omnyserver_web/pubspec.yaml | 10 +++++----- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/omnyserver_web/CHANGELOG.md b/omnyserver_web/CHANGELOG.md index f616a86..c860e98 100644 --- a/omnyserver_web/CHANGELOG.md +++ b/omnyserver_web/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.2.3 + +- Rebuilt against **OmnyServer 0.15.1** — the login footer now reads + `Dashboard v0.2.3 · OmnyServer v0.15.1`. The dependency floor moves to + `^0.15.0` (the deploy path-overrides it to the server in this repo, so the + dashboard ships beside the API it was built with). + ## 0.2.2 - **The login screen now shows its versions** — the dashboard build and the diff --git a/omnyserver_web/lib/version.dart b/omnyserver_web/lib/version.dart index c1f7fda..7c1b2a4 100644 --- a/omnyserver_web/lib/version.dart +++ b/omnyserver_web/lib/version.dart @@ -4,7 +4,7 @@ import 'package:omnyserver/omnyserver_client_web.dart' show omnyServerVersion; /// /// The Pages deploy builds against the server in this repo, so this and /// [omnyServerVersion] always move together. -const String omnyServerWebVersion = '0.2.2'; +const String omnyServerWebVersion = '0.2.3'; /// The one version line shown in the UI: this dashboard build, and the /// OmnyServer version it was built against. diff --git a/omnyserver_web/pubspec.yaml b/omnyserver_web/pubspec.yaml index 53c13c3..27a433a 100644 --- a/omnyserver_web/pubspec.yaml +++ b/omnyserver_web/pubspec.yaml @@ -3,7 +3,7 @@ description: >- Browser dashboard for an OmnyServer Hub — see the fleet, watch live node status, run formulas and presets, and open a shell on any node. Installable PWA, no custom backend. -version: 0.2.2 +version: 0.2.3 repository: https://github.com/OmnyGrid/omnyserver publish_to: none @@ -11,12 +11,12 @@ environment: sdk: ^3.12.2 dependencies: - # The Hub's REST client and the entities it decodes, browser-safe. 0.14.0 is - # the version that exposes `omnyserver_client_web.dart` and the transport seam - # this app is built on. CI and the Pages deploy override this with a path + # The Hub's REST client and the entities it decodes, browser-safe. 0.15.0 is + # the baseline the dashboard targets (the version footer reads its + # `omnyServerVersion`). CI and the Pages deploy override this with a path # dependency on `..`, so the dashboard always ships against the API it is # released beside. - omnyserver: ^0.14.0 + omnyserver: ^0.15.0 # The shared web foundation: state primitives, storage, router, UI kit — and # the terminal, so a node's shell opens here instead of being rebuilt. omnyshell_web: ^1.15.0