Skip to content

Commit

Permalink
[release/v1.1] Release/v1.1.3 (#4613)
Browse files Browse the repository at this point in the history
* [release/v1.1] release v1.1.3 (#4600)

* release: v1.1.3

Signed-off-by: Guy Daich <[email protected]>

* remove gw-api, fix style

Signed-off-by: Guy Daich <[email protected]>

---------

Signed-off-by: Guy Daich <[email protected]>
(cherry picked from commit a88e6eb)
Signed-off-by: Guy Daich <[email protected]>

* release: v1.1.3

Signed-off-by: Guy Daich <[email protected]>

* update yml2md to new format

Signed-off-by: Guy Daich <[email protected]>

---------

Signed-off-by: Guy Daich <[email protected]>
  • Loading branch information
guydc authored Nov 4, 2024
1 parent 180c6ce commit abd3397
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 13 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.2
v1.1.3
28 changes: 28 additions & 0 deletions release-notes/v1.1.3.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
date: November 1, 2024

# Changes that are expected to cause an incompatibility with previous versions, such as deletions or modifications to existing APIs.
breaking changes: |
# New features or capabilities added in this release.
new features: |
# Fixes for bugs identified in previous versions.
bug fixes: |
Fixed unsupported listener protocol type causing an error while updating Gateway Status
Fixed some status updates were being discarded by the status updater
Fixed error level logging for admin and metrics modules
Fixed Dashboard typos
Fixed Ratelimit Deployment ignoring pod labels and annotation merge
Fixed the API Server receives unnecessary requests
Fixed set invalid Listener.SupportedKinds to empty list
Fixed losing timeout settings that originate from the route when translating the backend traffic policy
Fixed xds translation failure when wasm http code source configured without sha
# Enhancements that improve performance.
performance improvements: |
# Other notable changes not covered by the above sections.
Other changes: |
Bumped Envoy proxy to 1.31.3
Bumped github.com/docker/docker to 27.3.1+incompatible
31 changes: 31 additions & 0 deletions site/content/en/news/releases/notes/v1.1.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: "v1.1.3"
publishdate: 2024-11-01
---

Date: November 1, 2024

## Breaking changes
-

## New features
-

## Bug fixes
- Fixed unsupported listener protocol type causing an error while updating Gateway Status
- Fixed some status updates were being discarded by the status updater
- Fixed error level logging for admin and metrics modules
- Fixed Dashboard typos
- Fixed Ratelimit Deployment ignoring pod labels and annotation merge
- Fixed the API Server receives unnecessary requests
- Fixed set invalid Listener.SupportedKinds to empty list
- Fixed losing timeout settings that originate from the route when translating the backend traffic policy
- Fixed xds translation failure when wasm http code source configured without sha

## Performance improvements
-

## Other changes
- Bumped Envoy proxy to 1.31.3
- Bumped github.com/docker/docker to 27.3.1+incompatible

54 changes: 42 additions & 12 deletions tools/src/release-notes-docs/yml2md.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def format_date(date_str):
return datetime.strptime(date_str, date_format).date()
except ValueError:
pass # If the format doesn't match, move to the next one

raise ValueError(f"Date string '{date_str}' does not match any supported format.")

def capitalize(name):
Expand Down Expand Up @@ -46,19 +46,49 @@ def convert_yaml_to_markdown(input_yaml_file, output_markdown_path):

file.write("Date: {}\n\n".format(data['date']))

for area in data['changes']:
file.write("## {}\n".format(capitalize(area['area'])))
if 'change' in area:
file.write(change_to_markdown(area['change']) + '\n\n')
# old release notes format
if 'changes' in data:
for area in data['changes']:
file.write("## {}\n".format(capitalize(area['area'])))
if 'change' in area:
file.write(change_to_markdown(area['change']) + '\n\n')

if 'breaking-change' in area:
file.write("### Breaking Changes\n")
file.write(change_to_markdown(area['breaking-change']) + '\n\n')

if 'deprecation' in area:
file.write("### Deprecations\n")
file.write(change_to_markdown(area['deprecation']) + '\n\n')
# new release notes format
else:
if 'breaking changes' in data:
file.write("## {}\n".format(capitalize('breaking changes')))
file.write(change_to_markdown(data['breaking changes']) + '\n\n')

if 'security updates' in data:
file.write("## {}\n".format(capitalize('security updates')))
file.write(change_to_markdown(data['security updates']) + '\n\n')

if 'new features' in data:
file.write("## {}\n".format(capitalize('new features')))
file.write(change_to_markdown(data['new features']) + '\n\n')

if 'bug fixes' in data:
file.write("## {}\n".format(capitalize('bug fixes')))
file.write(change_to_markdown(data['bug fixes']) + '\n\n')

if 'breaking-change' in area:
file.write("### Breaking Changes\n")
file.write(change_to_markdown(area['breaking-change']) + '\n\n')
if 'performance improvements' in data:
file.write("## {}\n".format(capitalize('performance improvements')))
file.write(change_to_markdown(data['performance improvements']) + '\n\n')

if 'deprecation' in area:
file.write("### Deprecations\n")
file.write(change_to_markdown(area['deprecation']) + '\n\n')
if 'deprecations' in data:
file.write("## {}\n".format(capitalize('deprecations')))
file.write(change_to_markdown(data['deprecations']) + '\n\n')

if 'Other changes' in data:
file.write("## {}\n".format(capitalize('Other changes')))
file.write(change_to_markdown(data['Other changes']) + '\n\n')
print("Markdown file '{}' has been generated.".format(output_markdown_file))

if __name__ == "__main__":
Expand All @@ -68,4 +98,4 @@ def convert_yaml_to_markdown(input_yaml_file, output_markdown_path):

input_yaml_file = sys.argv[1]
output_markdown_path = sys.argv[2]
convert_yaml_to_markdown(input_yaml_file, output_markdown_path)
convert_yaml_to_markdown(input_yaml_file, output_markdown_path)

0 comments on commit abd3397

Please sign in to comment.