From bb758d3afda118e816270e16c7cfc81049581599 Mon Sep 17 00:00:00 2001 From: chen Date: Thu, 22 Feb 2024 14:24:52 +0800 Subject: [PATCH 1/2] bump to v2.7.1 --- CHANGELOG.md | 17 +++++++++++++++++ Makefile | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9994593331..ec1621df65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [v2.7.1](https://github.com/megaease/easegress/tree/v2.7.1) (2024-02-22) + +[Full Changelog](https://github.com/megaease/easegress/compare/v2.7.0...v2.7.1) + +**Implemented enhancements:** +* Enabled `egctl create httpproxy` command to support automatic updates for `AutoCertManager`. +* Introduced an exportable custom plain logger. +* Expanded `egctl` command utility across various namespaces. +* Optimized proxy filter to immediately flush responses for Server-Sent Events (SSE). +* Enhanced template functionality with additional functions in `RequestBuilder` and `ResponseBuilder`. +* Updated documentation and adhered to the latest CNCF Code of Conduct for community guidelines. + +**Fixed bugs:** +* Resolved the `AutoCertManager` did not remove duplicate DNS records issue. +* Corrected proxy filter behavior to properly escape paths. + + ## [v2.7.0](https://github.com/megaease/easegress/tree/v2.7.0) (2023-12-29) [Full Changelog](https://github.com/megaease/easegress/compare/v2.6.4...v2.7.0) diff --git a/Makefile b/Makefile index fc06056fd2..9e2a4481c3 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ IMAGE_NAME?=megaease/easegress BUILDER_IMAGE_NAME?=megaease/golang:1.21.7-alpine # Version -RELEASE?=v2.7.0 +RELEASE?=v2.7.1 # Git Related GIT_REPO_INFO=$(shell cd ${MKFILE_DIR} && git config --get remote.origin.url) From f79e0ba3a481d8b42a1b2b9108e1969a21b62f77 Mon Sep 17 00:00:00 2001 From: chen Date: Thu, 22 Feb 2024 14:38:31 +0800 Subject: [PATCH 2/2] update golang version --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec1621df65..4a3bab8d55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ [Full Changelog](https://github.com/megaease/easegress/compare/v2.7.0...v2.7.1) **Implemented enhancements:** +* Upgraded to Golang version 1.21. * Enabled `egctl create httpproxy` command to support automatic updates for `AutoCertManager`. * Introduced an exportable custom plain logger. * Expanded `egctl` command utility across various namespaces.