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
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,25 @@
1
1
# Changelog
2
2
3
+
## v4.5.0 - 2021-08-02
4
+
5
+
**Important notes**
6
+
7
+
> This is BREAKING CHANGE for JWT middleware users.
8
+
9
+
JWT library for JWT middleware has been changed from [github.com/dgrijalva/jwt-go](https://github.com/dgrijalva/jwt-go) to
10
+
[github.com/golang-jwt/jwt](https://github.com/golang-jwt/jwt) due former library being unmaintained and having security
11
+
issues. For detailed information please read https://github.com/labstack/echo/discussions/1940
12
+
13
+
You can change library imports as follows:
14
+
```bash
15
+
find -type f -name "*.go" -exec sed -i "s/dgrijalva\/jwt-go/golang-jwt\/jwt/g" {} \;
16
+
go mod tidy
17
+
```
18
+
19
+
**Fixes**
20
+
21
+
* Change JWT library to `github.com/golang-jwt/jwt`[#1946](https://github.com/labstack/echo/pull/1946)
0 commit comments