File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v4.11.2 - 2023-10-11
4
+
5
+ ** Security**
6
+
7
+ * Bump golang.org/x/net to prevent CVE-2023 -39325 / CVE-2023 -44487 HTTP/2 Rapid Reset Attack [ #2527 ] ( https://github.com/labstack/echo/pull/2527 )
8
+ * fix(sec): randomString bias introduced by #2490 [ #2492 ] ( https://github.com/labstack/echo/pull/2492 )
9
+ * CSRF/RequestID mw: switch math/random usage to crypto/random [ #2490 ] ( https://github.com/labstack/echo/pull/2490 )
10
+
11
+ ** Enhancements**
12
+
13
+ * Delete unused context in body_limit.go [ #2483 ] ( https://github.com/labstack/echo/pull/2483 )
14
+ * Use Go 1.21 in CI [ #2505 ] ( https://github.com/labstack/echo/pull/2505 )
15
+ * Fix some typos [ #2511 ] ( https://github.com/labstack/echo/pull/2511 )
16
+ * Allow CORS middleware to send Access-Control-Max-Age: 0 [ #2518 ] ( https://github.com/labstack/echo/pull/2518 )
17
+ * Bump dependancies [ #2522 ] ( https://github.com/labstack/echo/pull/2522 )
18
+
3
19
## v4.11.1 - 2023-07-16
4
20
5
21
** Fixes**
Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ const (
259
259
260
260
const (
261
261
// Version of Echo
262
- Version = "4.11.1 "
262
+ Version = "4.11.2 "
263
263
website = "https://echo.labstack.com"
264
264
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
265
265
banner = `
You can’t perform that action at this time.
0 commit comments