@jaypie/mcp 0.8.14 → 0.8.15
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/dist/suites/docs/index.js +1 -1
- package/package.json +1 -1
- package/release-notes/constructs/1.2.40.md +11 -0
- package/skills/cdk.md +12 -0
|
@@ -9,7 +9,7 @@ import { gt } from 'semver';
|
|
|
9
9
|
/**
|
|
10
10
|
* Docs Suite - Documentation services (skill, version, release_notes)
|
|
11
11
|
*/
|
|
12
|
-
const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.15#cf726c0a"
|
|
13
13
|
;
|
|
14
14
|
const __filename$1 = fileURLToPath(import.meta.url);
|
|
15
15
|
const __dirname$1 = path.dirname(__filename$1);
|
package/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.40
|
|
3
|
+
date: 2026-04-05
|
|
4
|
+
summary: Add managedRuleOverrides to JaypieWafConfig for overriding specific WAF rule actions
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Add `managedRuleOverrides` prop to `JaypieWafConfig` for overriding actions on specific rules within AWS managed rule groups
|
|
10
|
+
- Enables downgrading rules like `SizeRestrictions_BODY` to count mode so large webhook payloads (e.g., GitHub) are not blocked
|
|
11
|
+
- Closes #272
|
package/skills/cdk.md
CHANGED
|
@@ -341,6 +341,18 @@ new JaypieDistribution(this, "Dist", {
|
|
|
341
341
|
handler,
|
|
342
342
|
waf: { logBucket: myWafBucket },
|
|
343
343
|
});
|
|
344
|
+
|
|
345
|
+
// Override specific managed rule actions (e.g., allow large request bodies)
|
|
346
|
+
new JaypieDistribution(this, "Dist", {
|
|
347
|
+
handler,
|
|
348
|
+
waf: {
|
|
349
|
+
managedRuleOverrides: {
|
|
350
|
+
AWSManagedRulesCommonRuleSet: [
|
|
351
|
+
{ name: "SizeRestrictions_BODY", actionToUse: { count: {} } },
|
|
352
|
+
],
|
|
353
|
+
},
|
|
354
|
+
},
|
|
355
|
+
});
|
|
344
356
|
```
|
|
345
357
|
|
|
346
358
|
Cost: $5/month per WebACL + $1/month per rule + $0.60 per million requests. Use `waf: false` to opt out.
|