mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 17:50:07 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
1.0 KiB
1.0 KiB
Change log
Version 3.1.2
- Add a generic as return type so the user can specify what's expected, this will still be
unknownby default - Export
JwtHeaderandJwtPayloadthat can be used with the generic return type as-is or extended.
Version 3.1.0
- Add TypeScript type definition
- Fix CJS default export
Version 3.0.0
- Include an ESM build for native JavaScript imports
Warning: this version has some potentially breaking changes!
- If you've previously imported the library as
import * as jwt_decode from 'jwt-decode', you'll have to change your import toimport jwt_decode from 'jwt-decode';.