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: CHANGES.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,13 @@ twilio-go changelog
11
11
-[PR #281](https://github.com/twilio/twilio-go/pull/281): orgs api. Thanks to [@manisha1997](https://github.com/manisha1997)!
12
12
13
13
**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
+
```
15
21
16
22
**Api**
17
23
- Add `response_key` for `Usage Triggers` fetch endpoint.
0 commit comments