docs: v0.31.2 release notes and version bump
* docs: v0.31.1 release notes and version bump * docs: v0.31.2 release notes and version bump --------- Co-authored-by: Nathan Esquenazi <nesquena@gmail.com>
This commit is contained in:
15
CHANGELOG.md
15
CHANGELOG.md
@@ -5,6 +5,21 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## [v0.31.2] CLI session delete fix
|
||||||
|
*April 5, 2026 | 424 tests*
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
- **CLI sessions could not be deleted from the sidebar.** The delete handler only
|
||||||
|
removed the WebUI JSON session file, so CLI-backed sessions came back on refresh.
|
||||||
|
Added `delete_cli_session(sid)` in `api/models.py` and call it from
|
||||||
|
`/api/session/delete` so the SQLite `state.db` row and messages are removed too.
|
||||||
|
(#87, #88)
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
- The public test suite still passes at 424/424.
|
||||||
|
- Issue #87 already had a comment confirming the root cause, so no new issue comment
|
||||||
|
was needed here.
|
||||||
|
|
||||||
## [v0.31] UI Polish + Deployment Hardening
|
## [v0.31] UI Polish + Deployment Hardening
|
||||||
*April 4, 2026 | 424 tests*
|
*April 4, 2026 | 424 tests*
|
||||||
|
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
> Goal: Full 1:1 parity with the Hermes CLI experience via a clean dark web UI.
|
> Goal: Full 1:1 parity with the Hermes CLI experience via a clean dark web UI.
|
||||||
> Everything you can do from the CLI terminal, you can do from this UI.
|
> Everything you can do from the CLI terminal, you can do from this UI.
|
||||||
>
|
>
|
||||||
> Last updated: v0.31 (April 4, 2026)
|
> Last updated: v0.31.2 (April 5, 2026)
|
||||||
> Tests: 424 total (401 passing, 23 pre-existing failures)
|
> Tests: 424 total (424 passing, 0 failures)
|
||||||
> Source: <repo>/
|
> Source: <repo>/
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -897,6 +897,6 @@ genuinely differentiating for an open-source project
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
*Last updated: April 4, 2026*
|
*Last updated: April 5, 2026*
|
||||||
*Current version: v0.31 | 424 tests*
|
*Current version: v0.31.2 | 424 tests*
|
||||||
*Next sprint: Sprint 24 (Web Polish + Bug Fix Pass)*
|
*Next sprint: Sprint 24 (Web Polish + Bug Fix Pass)*
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
> Prerequisites: SSH tunnel is active on port 8787. Open http://localhost:8787 in browser.
|
> Prerequisites: SSH tunnel is active on port 8787. Open http://localhost:8787 in browser.
|
||||||
> Server health check: curl http://127.0.0.1:8787/health should return {"status":"ok"}.
|
> Server health check: curl http://127.0.0.1:8787/health should return {"status":"ok"}.
|
||||||
>
|
>
|
||||||
> Automated tests: 424 total (401 passing, 23 pre-existing failures).
|
> Automated tests: 424 total (424 passing, 0 failures)
|
||||||
> Run: `pytest tests/ -v --timeout=60`
|
> Run: `pytest tests/ -v --timeout=60`
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="layout">
|
<div class="layout">
|
||||||
<aside class="sidebar">
|
<aside class="sidebar">
|
||||||
<div class="sidebar-header"><div class="logo">H</div><div><h1 style="margin:0;font-size:15px;font-weight:700;letter-spacing:-.01em">Hermes</h1><div style="font-size:10px;color:var(--muted);opacity:.8;margin-top:1px">v0.31</div></div></div>
|
<div class="sidebar-header"><div class="logo">H</div><div><h1 style="margin:0;font-size:15px;font-weight:700;letter-spacing:-.01em">Hermes</h1><div style="font-size:10px;color:var(--muted);opacity:.8;margin-top:1px">v0.31.2</div></div></div>
|
||||||
<div class="sidebar-nav">
|
<div class="sidebar-nav">
|
||||||
<button class="nav-tab active" data-panel="chat" data-label="Chat" onclick="switchPanel('chat')" title="Chat">💬</button>
|
<button class="nav-tab active" data-panel="chat" data-label="Chat" onclick="switchPanel('chat')" title="Chat">💬</button>
|
||||||
<button class="nav-tab" data-panel="tasks" data-label="Tasks" onclick="switchPanel('tasks')" title="Tasks">📅</button>
|
<button class="nav-tab" data-panel="tasks" data-label="Tasks" onclick="switchPanel('tasks')" title="Tasks">📅</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user