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._
1
2
# __ 2.23.15__ __ 2024-01-31__
2
3
## __ AWS CloudFormation__
3
4
- ### Features
@@ -401,3 +402,4 @@ Special thanks to the following contributors to this release:
401
402
## __ Redshift Serverless__
402
403
- ### Features
403
404
- 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):
127
127
def write (self , s ):
128
128
self .output_file .write (s )
129
129
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
+
130
134
def write_changelog ():
131
135
unreleased = load_unreleased_changes (".changes/next-release" )
132
136
released = load_all_released_changes (".changes" )
@@ -141,6 +145,7 @@ def write_changelog():
141
145
return
142
146
143
147
with open ('CHANGELOG.md' , 'w' ) as cl :
148
+ write_archived_changelogs_message (cl )
144
149
writer = ChangelogWriter (cl )
145
150
for changes in all_changes :
146
151
writer .write_changes (changes )
You can’t perform that action at this time.
0 commit comments