agent-discover 1.0.23 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,60 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.25] - 2026-04-08
9
+
10
+ ### Changed
11
+
12
+ - Tidied `.gitignore` with section headers and added `test-results/` + `playwright-report/`.
13
+
14
+ ## [1.0.24] - 2026-04-08
15
+
16
+ ### Added
17
+
18
+ - **Playwright E2E dashboard test suite** at `tests/e2e-ui/dashboard.pw.ts`. Boots the standalone HTTP+WS server against a temp SQLite DB on a free port, seeds three mock server entries via the registry, and verifies: page loads with no console/page errors, websocket upgrade, REST `/api/servers` returns the seeded entries, the installed list renders the seeded server cards, the Browse tab switches into view. Runnable via `npm run test:e2e:ui`. Devdep `@playwright/test`. Vitest count unchanged at 151.
19
+
20
+ ## [1.0.23] - 2026-04-08
21
+
22
+ ### Changed
23
+
24
+ - Dropped the `seedMetaFromUserVersion` shim in favour of `agent-common`'s `adoptUserVersion` + `addColumnIfMissing` helpers.
25
+
26
+ ## [1.0.22] - 2026-04-08
27
+
28
+ ### Changed
29
+
30
+ - Version bump after a tag collision on the database.ts shim release.
31
+
32
+ ## [1.0.21] - 2026-04-08
33
+
34
+ ### Changed
35
+
36
+ - `storage/database.ts` delegated to `agent-common`'s `createDb`, with a `user_version` → `_meta` seeding shim for in-place migration of existing DBs.
37
+
38
+ ## [1.0.20] - 2026-04-08
39
+
40
+ ### Changed
41
+
42
+ - `index.ts` MCP dispatcher delegated to `agent-common`'s `startMcpServer`, with `dynamic tools` + `onToolCalled` notify hooks for the proxy lifecycle.
43
+
44
+ ## [1.0.19] - 2026-04-08
45
+
46
+ ### Changed
47
+
48
+ - `transport/ws.ts` delegated to `agent-common`'s `setupWebSocket`.
49
+
50
+ ## [1.0.18] - 2026-04-08
51
+
52
+ ### Changed
53
+
54
+ - `transport/rest.ts` `json` / `readBody` / `serveStatic` helpers delegated to `agent-common`, with strict 404 fallback.
55
+
56
+ ## [1.0.17] - 2026-04-08
57
+
58
+ ### Changed
59
+
60
+ - Added `agent-common` as a runtime dependency for events, package metadata, and the dashboard server primitives.
61
+
8
62
  ## [1.0.16] - 2026-04-07
9
63
 
10
64
  ### Changed
@@ -2,7 +2,7 @@
2
2
  "id": "agent-discover",
3
3
  "name": "Discover",
4
4
  "icon": "explore",
5
- "version": "1.0.23",
5
+ "version": "1.0.26",
6
6
  "description": "MCP server registry — browse, install, configure, monitor",
7
7
  "ui": "./dist/ui/app.js",
8
8
  "css": "./dist/ui/styles.css",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-discover",
3
- "version": "1.0.23",
3
+ "version": "1.0.26",
4
4
  "mcpName": "io.github.keshrath/agent-discover",
5
5
  "description": "MCP server registry and marketplace — discover, install, activate, and manage MCP tools on demand",
6
6
  "type": "module",
@@ -29,6 +29,7 @@
29
29
  "start:server": "node dist/server.js",
30
30
  "test": "vitest run",
31
31
  "test:watch": "vitest",
32
+ "test:e2e:ui": "playwright test",
32
33
  "test:coverage": "vitest run --coverage",
33
34
  "lint": "eslint src/ tests/",
34
35
  "lint:fix": "eslint src/ tests/ --fix",