@thymian/rules-rfc-9110 0.1.8 → 0.1.9-canary.20260513-e6b82ed

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.
@@ -1 +1 @@
1
- {"version":3,"file":"recipient-must-reject-or-replace-invalid-characters.rule.d.ts","sourceRoot":"","sources":["../../../../src/rules/fields/field-values/recipient-must-reject-or-replace-invalid-characters.rule.ts"],"names":[],"mappings":";AAKA,wBAaU"}
1
+ {"version":3,"file":"recipient-must-reject-or-replace-invalid-characters.rule.d.ts","sourceRoot":"","sources":["../../../../src/rules/fields/field-values/recipient-must-reject-or-replace-invalid-characters.rule.ts"],"names":[],"mappings":";AAKA,wBAeU"}
@@ -4,6 +4,8 @@ import { httpRule } from '@thymian/core';
4
4
  // Can be implemented in analytics context to validate message handling
5
5
  export default httpRule('rfc9110/recipient-must-reject-or-replace-invalid-characters')
6
6
  .severity('error')
7
+ // We need to make this informational for now since we do not yet have the functionality to craft or send an intentionally invalid HTTP request.
8
+ // To test this rule against a real HTTP server, we would have to establish a TCP connection ourselves and manually construct the HTTP request.
7
9
  .type('informational')
8
10
  .url('https://www.rfc-editor.org/rfc/rfc9110.html#section-5.5')
9
11
  .description('Field values containing CR, LF, or NUL characters are invalid and dangerous, due to the varying ways that implementations might parse and interpret those characters; a recipient of CR, LF, or NUL within a field value MUST either reject the message or replace each of those characters with SP before further processing or forwarding of that message.')
@@ -1 +1 @@
1
- {"version":3,"file":"recipient-must-reject-or-replace-invalid-characters.rule.js","sourceRoot":"","sources":["../../../../src/rules/fields/field-values/recipient-must-reject-or-replace-invalid-characters.rule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,kEAAkE;AAClE,yEAAyE;AACzE,uEAAuE;AACvE,eAAe,QAAQ,CACrB,6DAA6D,CAC9D;KACE,QAAQ,CAAC,OAAO,CAAC;KACjB,IAAI,CAAC,eAAe,CAAC;KACrB,GAAG,CAAC,yDAAyD,CAAC;KAC9D,WAAW,CACV,8VAA8V,CAC/V;KACA,OAAO,CACN,qGAAqG,CACtG;KACA,IAAI,CAAC,QAAQ,EAAE,cAAc,EAAE,UAAU,CAAC;KAC1C,IAAI,EAAE,CAAC"}
1
+ {"version":3,"file":"recipient-must-reject-or-replace-invalid-characters.rule.js","sourceRoot":"","sources":["../../../../src/rules/fields/field-values/recipient-must-reject-or-replace-invalid-characters.rule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,kEAAkE;AAClE,yEAAyE;AACzE,uEAAuE;AACvE,eAAe,QAAQ,CACrB,6DAA6D,CAC9D;KACE,QAAQ,CAAC,OAAO,CAAC;IAClB,gJAAgJ;IAChJ,+IAA+I;KAC9I,IAAI,CAAC,eAAe,CAAC;KACrB,GAAG,CAAC,yDAAyD,CAAC;KAC9D,WAAW,CACV,8VAA8V,CAC/V;KACA,OAAO,CACN,qGAAqG,CACtG;KACA,IAAI,CAAC,QAAQ,EAAE,cAAc,EAAE,UAAU,CAAC;KAC1C,IAAI,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thymian/rules-rfc-9110",
3
- "version": "0.1.8",
3
+ "version": "0.1.9-canary.20260513-e6b82ed",
4
4
  "description": "Thymian rule set implementing RFC 9110 HTTP semantics validation",
5
5
  "license": "AGPL-3.0-only",
6
6
  "bugs": {
@@ -41,7 +41,7 @@
41
41
  "!**/*.tsbuildinfo"
42
42
  ],
43
43
  "dependencies": {
44
- "@thymian/core": "0.1.8"
44
+ "@thymian/core": "0.1.9-canary.20260513-e6b82ed"
45
45
  },
46
46
  "devDependencies": {}
47
47
  }