nucypher/newsfragments
derekpierre 74df16e015
Apply AI RFCs from #3571.
- Use random uuid4 as id for request
- Improve error handling in case code/message isn't available.
- Add to headers dictionary instead of recreating
- offchain -> off-chain
2025-01-02 10:04:15 -05:00
..
.gitignore Initial setup for towncrier 2020-05-28 11:59:08 -07:00
3500.feature.rst Add newsfragment for #3500. 2024-09-18 11:50:52 -04:00
3511.feature.rst newsfragments for PR #3511 2024-09-12 15:52:47 -04:00
3523.dev.rst Add dev newsfragment for #3523. 2024-09-12 15:53:20 -04:00
3535.dev.rst Add dev newsfragment for #3535. 2024-09-12 15:53:08 -04:00
3538.feature.rst newsgrag for PR #3538 2024-09-12 15:53:26 -04:00
3539.dev.rst Add dev newsfragment for #3539. 2024-09-12 15:52:58 -04:00
3545.dev.rst Add dev newsfragment for #3545. 2024-09-12 15:53:39 -04:00
3547.dev.rst Add dev newsfragment for #3547. 2024-09-12 15:53:45 -04:00
3553.dev.rst Add dev newsfragment for #3553. 2024-09-16 13:38:38 -04:00
3554.dev.rst Add dev newsfragment for #3554. 2024-09-18 09:59:07 -04:00
3556.dev.rst Add dev newsfragment for #3556. 2024-09-23 12:00:36 -04:00
3557.dev.rst Add newsfragment 2024-10-01 14:22:10 +02:00
3558.feature.rst Add feature newsfragment for #3558. 2024-10-03 09:12:22 -04:00
3560.feature.rst Add feature newsfragment for #3560. 2024-10-25 16:32:15 -04:00
3562.feature.rst Add feature newsfragment for #3562. 2024-11-01 09:39:04 -04:00
3563.dev.rst Add dev newsfragment to #3563. 2024-11-06 11:04:49 -05:00
3564.dev.rst Update test from EIP712 to EIP4361 2024-11-29 17:39:40 +01:00
3569.feature.rst Apply RFCs for #3569. 2024-12-18 10:27:45 -05:00
3571.feature.rst Apply AI RFCs from #3571. 2025-01-02 10:04:15 -05:00
README.md Dev newsfragments will show up in release notes but under its own section (off to the side). 2022-11-17 09:29:45 -05:00
validate_files.py Allow for *.dev.rst newsfragments for dev-specific work, which allows for the release note gh action to pass without including information (pr/issue number) in the release notes. 2022-11-16 14:07:38 -05:00

README.md

This directory collects "newsfragments": short files that each contain a snippet of ReST-formatted text that will be added to the next release notes. This should be a description of aspects of the change (if any) that are relevant to users. It contrasts with the commit message and PR description, which are descriptions of the change relevant to people working on the code itself.

The pull request (PR) number should be included in the newsfragment file name. Each newsfragment file should be named <PR_NUMBER>.<TYPE>.rst, where <TYPE> is one of:

  • feature - features
  • bugfix - bugfixes
  • doc - documentation
  • removal - deprecations and removals
  • misc - other
  • dev - internal development tasks

For example: 123.feature.rst, 456.bugfix.rst, 789.doc.rst.

There can be multiple newsfragment files of different types for the same PR e.g. 123.feature.rst and 123.removal.rst.

Along with the required PR newsfragment file (enforced by a GitHub Action), additional newsfragment files for issues linked to the PR can optionally be included by following the same naming convention above, and using <ISSUE_NUMBER> instead of <PR_NUMBER>.

Note that the towncrier tool will automatically reflow your text, so don't try to do any fancy formatting. Run towncrier --draft to preview what the release notes entry will look like in the final release notes.