File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 1+ #### 👋 _ Looking for changelogs for older versions? You can find them in the [ changelogs] ( ./changelogs ) directory._
12# __ 2.23.15__ __ 2024-01-31__
23## __ AWS CloudFormation__
34 - ### Features
@@ -401,3 +402,4 @@ Special thanks to the following contributors to this release:
401402## __ Redshift Serverless__
402403 - ### Features
403404 - Updates to ConfigParameter for RSS workgroup, removal of use_fips_ssl
405+
Original file line number Diff line number Diff line change @@ -127,6 +127,10 @@ def get_map_for_type(self, t):
127127 def write (self , s ):
128128 self .output_file .write (s )
129129
130+ def write_archived_changelogs_message (changelog_file ):
131+ message = " #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._\n "
132+ changelog_file .write (message )
133+
130134def write_changelog ():
131135 unreleased = load_unreleased_changes (".changes/next-release" )
132136 released = load_all_released_changes (".changes" )
@@ -141,6 +145,7 @@ def write_changelog():
141145 return
142146
143147 with open ('CHANGELOG.md' , 'w' ) as cl :
148+ write_archived_changelogs_message (cl )
144149 writer = ChangelogWriter (cl )
145150 for changes in all_changes :
146151 writer .write_changes (changes )
You can’t perform that action at this time.
0 commit comments