File tree 2 files changed +21
-1
lines changed
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 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 )
22
+
3
23
## v4.4.0 - 2021-07-12
4
24
5
25
** Fixes**
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ const (
241
241
242
242
const (
243
243
// Version of Echo
244
- Version = "4.4 .0"
244
+ Version = "4.5 .0"
245
245
website = "https://echo.labstack.com"
246
246
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
247
247
banner = `
You can’t perform that action at this time.
0 commit comments