Releases: panva/jose
Releases · panva/jose
v1.9.0
v1.8.0
v1.7.0
v1.6.1
v1.6.0
Bug Fixes
- use the correct ECPrivateKey version when importing EC JWK (24acd20)
Features
- electron v6.x support (e7ad82c)
Notes
Electron v6.x runtime is supported to the extent of the crypto engine BoringSSL feature parity with standard Node.js OpenSSL. The following is disabled in Electron runtime because of its lack of support.
- JWE
A128KW
,A192KW
andA256KW
algs are not available, this also means that other JWAs depending on those are not working, those areECDH-ES+A128KW
,ECDH-ES+A192KW
,ECDH-ES+A256KW
,PBES2-HS256+A128KW
,PBES2-HS384+A192KW
,PBES2-HS512+A256KW
) - OKP curves
Ed448
,X25519
andX448
are not supported - EC curve
secp256k1
is not supported
v1.5.2
v1.5.1
v1.5.0
Features
- validate JWTs according to a JWT profile - ID Token (6c98b61)
It is now possible to pass a profile to JWT.verify
and have the JWT validated according to it. This makes sure you pass all the right options and that required claims are present, prohibited claims are missing and that the right JWT typ is used.
More profiles will be added in the future.