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
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/).

## 1.5.0

### New Features

- Logs viewer: in-page search with match highlighting and a match count, one-click export of the full log to a file, and a responsive full-screen console (both service and manager logs).
- Dashboard polish: wider Services panel with a slim, self-explanatory Notifications rail; `LOGS`/`DOCS` rendered as clear buttons with keyboard focus rings; content biased to the top with a small capped gap; and denser service rows so more services fit without scrolling.

### Bugfixes

- Logs export and search now return the actual log instead of a validation error (the view no longer requests the invalid `tail=all`).
- Stabilized the flaky `test_read_timerange` SDK test (a concurrent database clean could trim rows mid-test).

## 1.4.0

### New Features
Expand Down
2 changes: 1 addition & 1 deletion manager/assets/dashboard_styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ a{color:inherit;text-decoration:none;}
grid-template-columns:1.3fr .7fr auto;
grid-template-areas:"id state actions";
align-items:center;gap:.8rem;
padding:.95rem 1.2rem;border-bottom:1px solid var(--line-soft);
padding:.5rem 1.2rem;border-bottom:1px solid var(--line-soft);
transition:background .15s;
}
.svc:last-child{border-bottom:none}
Expand Down
8 changes: 8 additions & 0 deletions tests/manager_test/test_ui_redesign.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,14 @@ def test_notifications_panel_has_explanation():
assert ".panel-sub" in css


def test_service_rows_are_compact():
css = (ASSETS / "dashboard_styles.css").read_text().replace(" ", "")
assert ".svc{" in css
svc_block = css.split(".svc{", 1)[1].split("}", 1)[0]
# tight vertical row padding so more services fit without scrolling
assert "padding:.5rem1.2rem" in svc_block


def test_service_links_look_like_buttons():
css = (ASSETS / "dashboard_styles.css").read_text().replace(" ", "")
# .lnk is now a bordered pill, not underline-on-hover text
Expand Down
Loading