|
| 1 | +## Description |
| 2 | + |
| 3 | +<!-- Brief description of the changes --> |
| 4 | + |
| 5 | +## Type of Change |
| 6 | + |
| 7 | +<!-- Check all that apply --> |
| 8 | + |
| 9 | +- [ ] Normative change (affects specification behavior) |
| 10 | +- [ ] Editorial change (typos, clarifications, formatting) |
| 11 | +- [ ] Schema change (JSON Schema modifications) |
| 12 | +- [ ] Test vectors (new or modified test cases) |
| 13 | +- [ ] Conformance (runner or profile updates) |
| 14 | +- [ ] Documentation (non-normative docs) |
| 15 | +- [ ] CI/Infrastructure |
| 16 | + |
| 17 | +## Checklist |
| 18 | + |
| 19 | +<!-- Complete all applicable items --> |
| 20 | + |
| 21 | +### For All Changes |
| 22 | + |
| 23 | +- [ ] I have read the [CONTRIBUTING](../CONTRIBUTING.adoc) guidelines |
| 24 | +- [ ] My commits are signed (DCO) |
| 25 | +- [ ] I have updated relevant documentation |
| 26 | + |
| 27 | +### For Normative Changes |
| 28 | + |
| 29 | +- [ ] I have added/updated test vectors for this change |
| 30 | +- [ ] I have updated affected JSON schemas |
| 31 | +- [ ] I have considered backwards compatibility (see below) |
| 32 | + |
| 33 | +### For Schema Changes |
| 34 | + |
| 35 | +- [ ] I have run `just schema-validate` |
| 36 | +- [ ] All existing valid vectors still pass |
| 37 | +- [ ] New vectors added for new functionality |
| 38 | + |
| 39 | +### For Test Vectors |
| 40 | + |
| 41 | +- [ ] Vectors follow the format in `vectors/README.adoc` |
| 42 | +- [ ] I have run `just vectors-validate` |
| 43 | +- [ ] Coverage report shows adequate coverage |
| 44 | + |
| 45 | +## Compatibility Analysis |
| 46 | + |
| 47 | +<!-- Required for normative changes --> |
| 48 | + |
| 49 | +### Is this a breaking change? |
| 50 | + |
| 51 | +- [ ] Yes - requires MAJOR version bump |
| 52 | +- [ ] No - backwards compatible |
| 53 | + |
| 54 | +### If breaking, describe migration path: |
| 55 | + |
| 56 | +<!-- How should existing implementations adapt? --> |
| 57 | + |
| 58 | +### Affected surfaces: |
| 59 | + |
| 60 | +<!-- List affected interfaces from docs/surface-contract.adoc --> |
| 61 | + |
| 62 | +- [ ] Producer seam |
| 63 | +- [ ] Consumer seam |
| 64 | +- [ ] Transparency log seam |
| 65 | +- [ ] None / Internal only |
| 66 | + |
| 67 | +## Security Analysis |
| 68 | + |
| 69 | +<!-- Required for normative changes --> |
| 70 | + |
| 71 | +### Security impact: |
| 72 | + |
| 73 | +- [ ] No security impact |
| 74 | +- [ ] Security improvement |
| 75 | +- [ ] Potential security consideration (describe below) |
| 76 | + |
| 77 | +### Security considerations: |
| 78 | + |
| 79 | +<!-- If applicable, describe security implications --> |
| 80 | + |
| 81 | +### Threat model updates: |
| 82 | + |
| 83 | +<!-- Does this change require updates to docs/threat-model.adoc? --> |
| 84 | + |
| 85 | +- [ ] No updates needed |
| 86 | +- [ ] Updates included in this PR |
| 87 | + |
| 88 | +## Testing |
| 89 | + |
| 90 | +### How was this tested? |
| 91 | + |
| 92 | +<!-- Describe testing performed --> |
| 93 | + |
| 94 | +### Test commands run: |
| 95 | + |
| 96 | +```bash |
| 97 | +# Example: |
| 98 | +just check |
| 99 | +just schema-validate |
| 100 | +just vectors-validate |
| 101 | +``` |
| 102 | + |
| 103 | +## Related Issues |
| 104 | + |
| 105 | +<!-- Link related issues using #number --> |
| 106 | + |
| 107 | +Fixes # |
| 108 | +Related to # |
| 109 | + |
| 110 | +## Additional Notes |
| 111 | + |
| 112 | +<!-- Any additional context or notes for reviewers --> |
0 commit comments