CHANGELOG.md so that users can quickly know whether they will be affected by the version and assess the upgrade risk if applicable..txt change file to the .changelog directory to describe the change when sending a pull request. The file will then be parsed via the go-changelog tool to generate a CHANGELOG.md file subject to the following update rules:.changelog directory and named in the format of {PR-NUMBER}.txt. For example, if the pull request number is 1326, the changelog should be named .changelog/1326.txt.
changelog.txt has the following format, where {HEADER} is the changelog type, and {ENTRY} is the changelog details.```release-note:{HEADER}{ENTRY}```
```release-note:bugresource/tencentcloud_teo_zone: change tag description from zoneName to zoneId.``````release-note:enhancementresource/tencentcloud_redis_instance: support update `security_groups`.```
release-note:new-resource.```release-note:new-resourcetencentcloud_postgresql_instance```
release-note:new-data-source.```release-note:new-data-sourcetencentcloud_sqlserver_zone_config```
release-note:bug, with a prefix indicating the corresponding resource or data source, a colon, and a summary.provider prefix for a provider-level fix.```release-note:bugresource/tencentcloud_cdn_domain: Fix `https_config` inconsistency after apply```
release-note:enhancement, with a prefix indicating the corresponding resource or data source, a colon, and a summary.provider prefix for a provider-level feature enhancement.```release-note:enhancementresource/tencentcloud_cdn_domain: Support follow redirect and authentication```
release-note:deprecation, with a prefix indicating the corresponding resource or data source, a colon, and a summary.provider prefix for a provider-level feature disuse.```release-note:deprecationresource/tencentcloud_kubernetes_cluster: The `as_enabled` attribute is being deprecated.```
Feedback