agent-discover 1.0.25 → 1.0.27

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,66 @@ 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.27] - 2026-04-08
9
+
10
+ ### Documentation
11
+
12
+ - Self-documenting release: documents this version + retroactively records the 1.0.26 release whose payload was the 1.0.17 – 1.0.25 backfill.
13
+
14
+ ## [1.0.25] - 2026-04-08
15
+
16
+ ### Changed
17
+
18
+ - Tidied `.gitignore` with section headers and added `test-results/` + `playwright-report/`.
19
+
20
+ ## [1.0.24] - 2026-04-08
21
+
22
+ ### Added
23
+
24
+ - **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.
25
+
26
+ ## [1.0.23] - 2026-04-08
27
+
28
+ ### Changed
29
+
30
+ - Dropped the `seedMetaFromUserVersion` shim in favour of `agent-common`'s `adoptUserVersion` + `addColumnIfMissing` helpers.
31
+
32
+ ## [1.0.22] - 2026-04-08
33
+
34
+ ### Changed
35
+
36
+ - Version bump after a tag collision on the database.ts shim release.
37
+
38
+ ## [1.0.21] - 2026-04-08
39
+
40
+ ### Changed
41
+
42
+ - `storage/database.ts` delegated to `agent-common`'s `createDb`, with a `user_version` → `_meta` seeding shim for in-place migration of existing DBs.
43
+
44
+ ## [1.0.20] - 2026-04-08
45
+
46
+ ### Changed
47
+
48
+ - `index.ts` MCP dispatcher delegated to `agent-common`'s `startMcpServer`, with `dynamic tools` + `onToolCalled` notify hooks for the proxy lifecycle.
49
+
50
+ ## [1.0.19] - 2026-04-08
51
+
52
+ ### Changed
53
+
54
+ - `transport/ws.ts` delegated to `agent-common`'s `setupWebSocket`.
55
+
56
+ ## [1.0.18] - 2026-04-08
57
+
58
+ ### Changed
59
+
60
+ - `transport/rest.ts` `json` / `readBody` / `serveStatic` helpers delegated to `agent-common`, with strict 404 fallback.
61
+
62
+ ## [1.0.17] - 2026-04-08
63
+
64
+ ### Changed
65
+
66
+ - Added `agent-common` as a runtime dependency for events, package metadata, and the dashboard server primitives.
67
+
8
68
  ## [1.0.16] - 2026-04-07
9
69
 
10
70
  ### Changed
@@ -2,7 +2,7 @@
2
2
  "id": "agent-discover",
3
3
  "name": "Discover",
4
4
  "icon": "explore",
5
- "version": "1.0.25",
5
+ "version": "1.0.27",
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.25",
3
+ "version": "1.0.27",
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",