Changelog guide
Infrahub utilizes a tool called towncrier for Changelog management and generation.
The Changelog is maintained in a CHANGELOG.md file in the main directory of each package in this repository.
Multiple Changelogs can be merged into a single Release Note for the overall project.
Infrahub follows the best practices from Keep a Changelog, and our categories of change are:
- Added for new features
 - Changed for changes in existing functionality
 - Deprecated for soon-to-be removed features
 - Removed for now removed features
 - Fixed for any bug fixes
 - Security in case of vulnerabilities
 
Creating changelog entries
What this means in practice for contributing to Infrahub is:
- Any PR to the 
develop(orstable) branch that closes an issue should contain at least one Markdown formatted "Newsfragment" file in the relatedchangelogdirectorychangelog/for Infrahub changespython-sdk/changelogfor Infrahub SDK changes
 - This file should be named with the format 
<github issue id>.<change type>.md. For example:- A Newsfragment file named 
1234.fixed.mdrepresents a bug fix PR closing GitHub Issue #1234 - This allows 
towncrierto populate the correct section of the Changelog with the relevant information - Note: If a PR doesn't close (or at least reference) a specific issue, you can utilize plain-text for the prefix by appending 
+to the filename.- For example: 
+this_is_not_a_github_issue.fixed.md 
 - For example: 
 
 - A Newsfragment file named 
 - Available Newsfragment suffixes are:
addedchangeddeprecatedremovedfixedsecurity
 - Upon release of a new version, maintainers (and eventually CI) will execute 
towncrier buildin each package directory which will do the following:- Consolidate all Newsfragment files in each 
changelogdirectories into a respective file each namedCHANGELOG.md, and automatically prepend the changelog into the relevant release section git rmall individual Newsfragment files
 - Consolidate all Newsfragment files in each