Skip to content

Latest commit

 

History

History
69 lines (42 loc) · 2.2 KB

CHANGELOG.md

File metadata and controls

69 lines (42 loc) · 2.2 KB

Changelog

All notable changes to the project will be documented in this file.

4.0.1 (2022-08-27)

Bug Fixes

  • add base64url without buffer (7dc8d53)

4.0.0 (2022-08-25)

BREAKING CHANGES

  • Removes the buffer dependency and switches to the more modern Uint8Array

3.1.1 (2022-06-01)

Bug Fixes

  • allow compressed private keys (a7cfc6a)

3.1.0 (2022-05-31)

Features

  • replace crypto dependencies (50bc8eb)

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[3.0.0]

Changed

  • Added async functions that use Web Crypto API used for hashing, if available. Otherwise uses the Node.js crypto module.

[2.0.3]

Changed

  • No longer exporting buggy @types/bn.js package. Lib consumers no longer require enabling synthetic default imports.

[2.0.2]

Changed

  • Fixed bug with type packages listed in devDependencies instead of dependencies.

[2.0.1]

Added

[2.0.0]

Changed

  • Ported to Typescript.

[1.0.0]

Changed

  • We now have an .eslintrc definition and code that passes that linting spec.

[0.8.0]

Added

  • You can now add custom header fields to the JWS header by passing an object to the TokenSigner.sign() method's customHeader parameter.

Changed

  • Use Buffer.from instead of deprecated new Buffer()