Skip to content

Commit 528469a

Browse files
docs: add changelog for jwt v5 (#285)
1 parent bc85a17 commit 528469a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

CHANGES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ twilio-go changelog
1111
- [PR #281](https://github.com/twilio/twilio-go/pull/281): orgs api. Thanks to [@manisha1997](https://github.com/manisha1997)!
1212

1313
**Library - Fix**
14-
- [PR #280](https://github.com/twilio/twilio-go/pull/280): update github.com/golang-jwt/jwt to address vulnerability. Thanks to [@sigi-glovebox](https://github.com/sigi-glovebox)!
14+
- [PR #280](https://github.com/twilio/twilio-go/pull/280): update github.com/golang-jwt/jwt to address vulnerability. Thanks to [@sigi-glovebox](https://github.com/sigi-glovebox)! **(breaking change)**
15+
- The JWT library been updated to version v5 and may require changes to your code. We recommend adding indirect dependency to your go.mod file to ensure compatibility. For example, you can add the following line to your go.mod file:
16+
```
17+
require (
18+
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
19+
)
20+
```
1521

1622
**Api**
1723
- Add `response_key` for `Usage Triggers` fetch endpoint.

0 commit comments

Comments
 (0)