Skip to content

Commit a8c7708

Browse files
committed
Update version and changelog for 4.5.0
1 parent 8a41c62 commit a8c7708

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

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+
323
## v4.4.0 - 2021-07-12
424

525
**Fixes**

echo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ const (
241241

242242
const (
243243
// Version of Echo
244-
Version = "4.4.0"
244+
Version = "4.5.0"
245245
website = "https://echo.labstack.com"
246246
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
247247
banner = `

0 commit comments

Comments
 (0)