You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,34 @@
1
1
# Changelog
2
2
3
+
## v5.1.0 - 2026-03-31
4
+
5
+
**Security**
6
+
7
+
This change does not break the API contract, but it does introduce breaking changes in logic/behavior.
8
+
If your application is using `c.RealIP()` beware and read https://echo.labstack.com/docs/ip-address
9
+
10
+
`v4` behavior can be restored with:
11
+
```go
12
+
e:= echo.New()
13
+
e.IPExtractor = echo.LegacyIPExtractor()
14
+
```
15
+
16
+
* Remove legacy IP extraction logic from context.RealIP method by @aldas in https://github.com/labstack/echo/pull/2933
17
+
18
+
19
+
**Enhancements**
20
+
21
+
* Add echo-opentelemetry to the README.md by @aldas in https://github.com/labstack/echo/pull/2908
22
+
* fix: correct spelling mistakes in comments and field name by @crawfordxx in https://github.com/labstack/echo/pull/2916
23
+
* Add https://github.com/labstack/echo-prometheus to the middleware list in README.md by @aldas in https://github.com/labstack/echo/pull/2919
24
+
* Add StartConfig.Listener so server with custom Listener is easier to create by @aldas in https://github.com/labstack/echo/pull/2920
25
+
* Fix rate limiter documentation for default burst value by @karesansui-u in https://github.com/labstack/echo/pull/2925
26
+
* Add doc comments to clarify usage of File related methods and leading slash handling by @aldas in https://github.com/labstack/echo/pull/2928
27
+
* Add NewDefaultFS function to help create filesystem that allows absolute paths by @aldas in https://github.com/labstack/echo/pull/2931
28
+
* Do not set http.Server.WriteTimeout in StartConfig by @aldas in https://github.com/labstack/echo/pull/2932
[](https://github.com/labstack/echo/actions)
0 commit comments