forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added template for release notes (istio#25368)
* Added template for release notes * Update template.yaml * Update template.yaml * Update template.yaml * Update CODEOWNERS * Update template.yaml * Update CODEOWNERS
- Loading branch information
1 parent
c36134f
commit cd08e3e
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This YAML file describes the format for specifying a release notes entry for Istio. | ||
# This should be filled in for all user facing changes. | ||
|
||
# kind describes the type of change that this represents. | ||
# Valid Values are: | ||
# - bug-fix -- Used to specify that this change represents a bug fix. | ||
# - security-fix -- Used to specify that this change represents a security fix. | ||
# - feature -- Used to specify a new feature that has been added. | ||
# - test -- Used to describe additional testing added. This file is optional for | ||
# tests, but included for completeness. | ||
kind: | ||
|
||
# area describes the area that this change affects. | ||
# Valid values are: | ||
# - traffic-management | ||
# - security | ||
# - telemetry | ||
# - installation | ||
# - istioctl | ||
# - documentation | ||
area: | ||
|
||
# issue is a (potentially comma separated list) of GitHub issues resolved in this note. | ||
issue: | ||
|
||
# releaseNotes is a markdown listing of any user facing changes. This will appear in the | ||
# release notes. | ||
releaseNotes: | ||
|
||
# upgradeNotes is a markdown listing of any changes that will affect the upgrade | ||
# process. This will appear in the release notes. | ||
upgradeNotes: | ||
|
||
# securityNotes is a markdown listing of any changes related to the security of | ||
# Istio. | ||
securityNotes: |