@roboteby/parry 1.1.0-rc.1 → 1.1.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +18 -4
  2. package/README.md +17 -2
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -8,12 +8,26 @@ without adding a changelog generation dependency.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [1.1.0-rc.1] - 2026-07-02
12
+
11
13
  ### Added
12
14
 
13
- - Release workflow preparation.
14
- - npm package hardening.
15
- - Package tarball validation scripts.
15
+ - Published the first npm release candidate as `@roboteby/parry@1.1.0-rc.1`
16
+ under the `rc` dist-tag.
17
+ - Documented the release candidate installation path with
18
+ `npm install @roboteby/parry@rc`.
19
+ - Added package hardening, release workflow documentation, and package tarball
20
+ validation scripts.
21
+ - Included the current application-layer protection surface: route policies,
22
+ distributed rate limiting, BruteForceGuard, Threat Events, metrics, and the
23
+ read-only Admin API.
24
+ - Added documentation for Admin API authentication modes, payload regression
25
+ testing, Docker demo usage, AWS reference infrastructure, and CI/CD.
16
26
 
17
27
  ### Security
18
28
 
19
- - Documented npm publishing and supply-chain hardening with Trusted Publishing/OIDC.
29
+ - Documented npm publishing and supply-chain hardening with Trusted
30
+ Publishing/OIDC.
31
+ - Clarified that Parry is application-layer Express middleware and does not
32
+ replace CloudFront, AWS WAF, Shield, Cloudflare, CDN, ALB, or edge-layer
33
+ volumetric DDoS protection.
package/README.md CHANGED
@@ -1,4 +1,8 @@
1
- # parry-express-security-middleware
1
+ # Parry
2
+
3
+ [![npm rc version](https://img.shields.io/npm/v/@roboteby/parry/rc?label=npm%20rc)](https://www.npmjs.com/package/@roboteby/parry)
4
+ [![license](https://img.shields.io/npm/l/@roboteby/parry)](https://github.com/RobotEby/parry-express-security-middleware/blob/main/LICENSE)
5
+ [![node](https://img.shields.io/node/v/@roboteby/parry)](https://www.npmjs.com/package/@roboteby/parry)
2
6
 
3
7
  Application-layer security middleware for Express.js.
4
8
 
@@ -42,11 +46,15 @@ It is designed for development and production-like deployments:
42
46
  ## Installation
43
47
 
44
48
  ```bash
45
- npm install @roboteby/parry
49
+ npm install @roboteby/parry@rc
46
50
  ```
47
51
 
48
52
  Parry expects Express to be installed by your application.
49
53
 
54
+ ## Release Candidate
55
+
56
+ `@roboteby/parry@1.1.0-rc.1` is published on npm under the `rc` tag for validation before promotion to the stable `latest` channel. Use `npm install @roboteby/parry@rc` to test the release candidate, review detector behavior and Admin API configuration in your environment, and pin the exact version if you need reproducible rollout testing.
57
+
50
58
  ## Quick Start
51
59
 
52
60
  ```js
@@ -225,6 +233,12 @@ curl -X POST http://localhost:3000/echo \
225
233
 
226
234
  The `change-me` token is for local demos only.
227
235
 
236
+ ## cURL Guide
237
+
238
+ The demo API can be validated with a set of local cURL examples covering health checks, Admin API authentication, Threat Events, brute-force blocks, active bans, CORS, request IDs, and frontend proxy checks.
239
+
240
+ See [docs/curl-guide.md](https://github.com/RobotEby/parry-express-security-middleware/blob/main/docs/curl-guide.md).
241
+
228
242
  ## Security Model
229
243
 
230
244
  Parry operates inside the Express application. It helps identify and block suspicious application-layer requests, but it does not replace edge and infrastructure controls.
@@ -247,6 +261,7 @@ Additional documentation is available in the repository:
247
261
  - [Admin API authentication](https://github.com/RobotEby/parry-express-security-middleware/blob/main/docs/admin-api-auth.md)
248
262
  - [AWS Admin API authentication](https://github.com/RobotEby/parry-express-security-middleware/blob/main/docs/aws-admin-auth.md)
249
263
  - [Docker demo](https://github.com/RobotEby/parry-express-security-middleware/blob/main/docs/docker-demo.md)
264
+ - [cURL guide](https://github.com/RobotEby/parry-express-security-middleware/blob/main/docs/curl-guide.md)
250
265
  - [AWS infrastructure notes](https://github.com/RobotEby/parry-express-security-middleware/blob/main/docs/aws-infra.md)
251
266
  - [CI/CD](https://github.com/RobotEby/parry-express-security-middleware/blob/main/docs/ci-cd.md)
252
267
  - [Release process](https://github.com/RobotEby/parry-express-security-middleware/blob/main/docs/release.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roboteby/parry",
3
- "version": "1.1.0-rc.1",
3
+ "version": "1.1.1",
4
4
  "description": "Application-layer security middleware for Express.js with injection detection, abuse mitigation, brute-force protection and distributed rate limiting.",
5
5
  "main": "./src/index.js",
6
6
  "types": "./types/index.d.ts",