Releases: reddit/edgecontext
Releases · reddit/edgecontext
v1.7.1-beta.2
v1.7.1-beta.1
What's Changed
- go: upgrade jwt library to v5 by @pacejackson in #23
- Add additional options for service auth by @ajermaky in #25
- Upgrade publish libraries by @ajermaky in #26
New Contributors
Full Changelog: v1.6.3...v1.7.1-beta.1
v1.7.1-beta
What's Changed
- go: upgrade jwt library to v5 by @pacejackson in #23
- Add additional options for service auth by @ajermaky in #25
New Contributors
Full Changelog: v1.6.3...v1.7.1-beta
v1.7.0-beta
Update go library to use the latest version of the JWT library.
The underlying JWT library had some breaking changes that percolated up to this one:
- jwt.StandardClaims was deprecated in v4 and removed in v5, replaced with jwt.RegisteredClaims. If you referenced AuthenticationToken.StardardClaims directly, then you will have to change that to AuthenticationToken.RegisteredClaims.
- jwt.NewValidationError was removed. Replaced by new errors in the edgecontext library and additional checks in the ParseWithClaims call. This may affect you if you were checking the errors returned by ParseWithClaims, specifically check errors.As against a *jwt.VerificationError. This type was completely removed, so you will need to check against specific errors, either the errors from the JWT library or the new ones added in here.
v0.2.0-beta
Update go library to use the latest version of the JWT library.
The underlying JWT library had some breaking changes that percolated up to this one:
jwt.StandardClaims
was deprecated in v4 and removed in v5, replaced withjwt.RegisteredClaims
. If you referencedAuthenticationToken.StardardClaims
directly, then you will have to change that toAuthenticationToken.RegisteredClaims
.jwt.NewValidationError
was removed. Replaced by new errors in the edgecontext library and additional checks in theParseWithClaims
call. This may affect you if you were checking the errors returned byParseWithClaims
, specifically checkerrors.As
against a*jwt.VerificationError
. This type was completely removed, so you will need to check against specific errors, either the errors from the JWT library or the new ones added in here.
New Python version
v1.6.2
This release updates the validation of LocaleCode, and also adds support to Baseplate.go's detach
library in the go library.