Skip to content

Commit

Permalink
docs: Checklist for compatibility concerns
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Jan 23, 2024
1 parent 4fa8e9e commit 039fce5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/work_item.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ assignees: ''

## Security Considerations

## Compatibility Considerations

## Scaling Considerations

## Test Plan

## Compatibility Considerations

## Upgrade Considerations
11 changes: 7 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ refs: #XXXX

<!-- Does this change introduce new assumptions or dependencies that, if violated, could introduce security vulnerabilities? How does this PR change the boundaries between mutually-suspicious components? What new authorities are introduced by this change, perhaps by new API calls? -->

### Compatibility Considerations

<!-- Does this change break any prior usage patterns? Does this change allow usage patterns to evolve? -->

### Scaling Considerations

<!-- Does this change require or encourage significant increase in consumption of CPU cycles, RAM, on-chain storage, message exchanges, or other scarce resources? If so, can that be prevented or mitigated? -->
Expand All @@ -31,6 +27,13 @@ refs: #XXXX

<!-- Every PR should of course come with tests of its own functionality. What additional tests are still needed beyond those unit tests? How does this affect CI, other test automation, or the testnet? -->

### Compatibility Considerations

<!-- Does this change break any prior usage patterns? Does this change allow usage patterns to evolve? -->

### Upgrade Considerations

<!-- What aspects of this PR are relevant to upgrading live production systems, and how should they be addressed? -->

- [ ] Includes `*BREAKING*:` in the commit message with migration instructions for any breaking change.
- [ ] Updates `NEWS.md` for user-facing changes.

0 comments on commit 039fce5

Please sign in to comment.