@@ -10,11 +10,11 @@ implementation of [JSON Web
10
10
Tokens] ( https://datatracker.ietf.org/doc/html/rfc7519 ) .
11
11
12
12
Starting with [ v4.0.0] ( https://github.com/golang-jwt/jwt/releases/tag/v4.0.0 )
13
- this project adds Go module support, but maintains backwards compatibility with
13
+ this project adds Go module support, but maintains backward compatibility with
14
14
older ` v3.x.y ` tags and upstream ` github.com/dgrijalva/jwt-go ` . See the
15
15
[ ` MIGRATION_GUIDE.md ` ] ( ./MIGRATION_GUIDE.md ) for more information. Version
16
16
v5.0.0 introduces major improvements to the validation of tokens, but is not
17
- entirely backwards compatible.
17
+ entirely backward compatible.
18
18
19
19
> After the original author of the library suggested migrating the maintenance
20
20
> of ` jwt-go ` , a dedicated team of open source maintainers decided to clone the
@@ -24,15 +24,15 @@ entirely backwards compatible.
24
24
25
25
26
26
** SECURITY NOTICE:** Some older versions of Go have a security issue in the
27
- crypto/elliptic. Recommendation is to upgrade to at least 1.15 See issue
27
+ crypto/elliptic. The recommendation is to upgrade to at least 1.15 See issue
28
28
[ dgrijalva/jwt-go #216 ] ( https://github.com/dgrijalva/jwt-go/issues/216 ) for more
29
29
detail.
30
30
31
31
** SECURITY NOTICE:** It's important that you [ validate the ` alg ` presented is
32
32
what you
33
33
expect] ( https://auth0.com/blog/critical-vulnerabilities-in-json-web-token-libraries/ ) .
34
34
This library attempts to make it easy to do the right thing by requiring key
35
- types match the expected alg, but you should take the extra step to verify it in
35
+ types to match the expected alg, but you should take the extra step to verify it in
36
36
your usage. See the examples provided.
37
37
38
38
### Supported Go versions
@@ -41,7 +41,7 @@ Our support of Go versions is aligned with Go's [version release
41
41
policy] ( https://golang.org/doc/devel/release#policy ) . So we will support a major
42
42
version of Go until there are two newer major releases. We no longer support
43
43
building jwt-go with unsupported Go versions, as these contain security
44
- vulnerabilities which will not be fixed.
44
+ vulnerabilities that will not be fixed.
45
45
46
46
## What the heck is a JWT?
47
47
@@ -117,7 +117,7 @@ notable differences:
117
117
118
118
This library is considered production ready. Feedback and feature requests are
119
119
appreciated. The API should be considered stable. There should be very few
120
- backwards -incompatible changes outside of major version updates (and only with
120
+ backward -incompatible changes outside of major version updates (and only with
121
121
good reason).
122
122
123
123
This project uses [ Semantic Versioning 2.0.0] ( http://semver.org ) . Accepted pull
0 commit comments