Skip to content

Commit 16d3b65

Browse files
committedSep 4, 2022
Changelog for 4.9.0
1 parent 0ac4d74 commit 16d3b65

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed
 

‎CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## v4.9.0 - 2022-09-04
4+
5+
**Security**
6+
7+
* Fix open redirect vulnerability in handlers serving static directories (e.Static, e.StaticFs, echo.StaticDirectoryHandler) [#2260](https://github.com/labstack/echo/pull/2260)
8+
9+
**Enhancements**
10+
11+
* Allow configuring ErrorHandler in CSRF middleware [#2257](https://github.com/labstack/echo/pull/2257)
12+
* Replace HTTP method constants in tests with stdlib constants [#2247](https://github.com/labstack/echo/pull/2247)
13+
14+
315
## v4.8.0 - 2022-08-10
416

517
**Most notable things**

‎echo.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ const (
248248

249249
const (
250250
// Version of Echo
251-
Version = "4.8.0"
251+
Version = "4.9.0"
252252
website = "https://echo.labstack.com"
253253
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
254254
banner = `

0 commit comments

Comments
 (0)
Please sign in to comment.