@nugehs/bouncer 0.1.2 → 0.1.3
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 +13 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to `@nugehs/bouncer` are documented here.
|
|
|
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
|
+
## [0.1.3] - 2026-06-10
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- README: demo GIF showing `bouncer check` against a demo Next.js app.
|
|
13
|
+
- Release workflow now publishes `server.json` to the MCP Registry (GitHub OIDC),
|
|
14
|
+
which 0.1.x releases were silently skipping.
|
|
15
|
+
- `version` lifecycle hook keeps `server.json` in sync with `package.json`.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- README badges use semantic colors instead of brand red.
|
|
20
|
+
|
|
8
21
|
## [0.1.1] - 2026-06-09
|
|
9
22
|
### Added
|
|
10
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nugehs/bouncer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"mcpName": "io.github.nugehs/bouncer",
|
|
5
5
|
"description": "bouncer — static compliance-controls checker. Verifies the controls a regulation requires actually exist in your code (UK Online Safety Act, ICO Children's Code), as deterministic rule packs. No LLM required.",
|
|
6
6
|
"type": "module",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"mcp": "node src/cli.js mcp",
|
|
20
20
|
"doctor": "node src/cli.js doctor",
|
|
21
21
|
"test": "node --test tests/*.test.js",
|
|
22
|
+
"version": "node scripts/sync-server-version.mjs && git add server.json",
|
|
22
23
|
"prepublishOnly": "npm test"
|
|
23
24
|
},
|
|
24
25
|
"engines": {
|