@nugehs/bouncer 0.1.1 → 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/README.md +3 -1
- package/package.json +3 -2
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/README.md
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
**Static compliance-controls checker — the controls a regulation requires, verified in your code.**
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@nugehs/bouncer) [](https://github.com/nugehs/bouncer/actions/workflows/ci.yml) [](LICENSE) [](#) [](#)
|
|
6
6
|
|
|
7
7
|
**[nugehs.github.io/bouncer-web](https://nugehs.github.io/bouncer-web/)** (site)
|
|
8
8
|
|
|
9
|
+

|
|
10
|
+
|
|
9
11
|
bouncer verifies that the controls a
|
|
10
12
|
regulation *requires* actually exist in your code — UK Online Safety Act, ICO
|
|
11
13
|
Children's Code (AADC) — expressed as deterministic **rule packs**. It runs in CI,
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nugehs/bouncer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"mcpName": "io.github.nugehs/bouncer",
|
|
5
|
-
"description": "bouncer
|
|
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",
|
|
7
7
|
"bin": {
|
|
8
8
|
"bouncer": "src/cli.js"
|
|
@@ -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": {
|