From 81faf424939a8d72ba5d1fd14714c7296bf530c0 Mon Sep 17 00:00:00 2001 From: Huabing Zhao Date: Mon, 2 Dec 2024 09:36:57 +0800 Subject: [PATCH] [release/v1.2] release note for v1.2.3 (#4820) * [release/v1.2] release note for v1.2.3 (#4813) * release note for v1.2.3 Signed-off-by: Huabing Zhao --------- Signed-off-by: Huabing Zhao * address comment Signed-off-by: Huabing Zhao --------- Signed-off-by: Huabing Zhao Co-authored-by: Arko Dasgupta --- VERSION | 2 +- release-notes/current.yaml | 1 - release-notes/v1.2.3.yaml | 9 +++++++++ site/content/en/news/releases/notes/v1.2.3.md | 13 +++++++++++++ 4 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 release-notes/v1.2.3.yaml create mode 100644 site/content/en/news/releases/notes/v1.2.3.md diff --git a/VERSION b/VERSION index cc904638af8..4367f900087 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v1.2.2 +v1.2.3 diff --git a/release-notes/current.yaml b/release-notes/current.yaml index 58ffa73ccb0..d1c6dd95c06 100644 --- a/release-notes/current.yaml +++ b/release-notes/current.yaml @@ -17,7 +17,6 @@ new features: | # Fixes for bugs identified in previous versions. bug fixes: | - Disabled the retry policy for the JWT provider to reduce requests sent to the JWKS endpoint. Failed async fetches will retry every 1s. # Enhancements that improve performance. performance improvements: | diff --git a/release-notes/v1.2.3.yaml b/release-notes/v1.2.3.yaml new file mode 100644 index 00000000000..b5fc7bf6fa1 --- /dev/null +++ b/release-notes/v1.2.3.yaml @@ -0,0 +1,9 @@ +date: December 2, 2024 + +bug fixes: | + Disabled the retry policy for the JWT provider to reduce requests sent to the JWKS endpoint. Failed async fetches will retry every 1s. + Used a waitGroup instead of an enabled channel in the status updater. + +Other changes: | + EG Listens on IPv4 by default, but if IPFamily is set to IPv6 or DualStack, it listens on :: and enables ipv4_compat for DualStack. + diff --git a/site/content/en/news/releases/notes/v1.2.3.md b/site/content/en/news/releases/notes/v1.2.3.md new file mode 100644 index 00000000000..4e2500ba3a6 --- /dev/null +++ b/site/content/en/news/releases/notes/v1.2.3.md @@ -0,0 +1,13 @@ +--- +title: "v1.2.3" +publishdate: 2024-12-02 +--- + +Date: December 2, 2024 + +## Bug fixes +- Disabled the retry policy for the JWT provider to reduce requests sent to the JWKS endpoint. Failed async fetches will retry every 1s. +- Used a waitGroup instead of an enabled channel in the status updater. + +## Other changes +- EG Listens on IPv4 by default, but if IPFamily is set to IPv6 or DualStack, it listens on :: and enables ipv4_compat for DualStack.