Skip to content

Commit

Permalink
chore(release): 6.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [6.0.0](5.12.4...6.0.0) (2022-04-04)

### Bug Fixes

* remove parseKey, change ES256K and Ed25519 signers to Uint8Array only ([#224](#224)) ([9132caf](9132caf)), closes [#222](#222)

### BREAKING CHANGES

* The Signer classes exported by this library no longer accept private keys with string encodings, only `Uint8Array`. This reduces the potential ambiguity between different formats. Some utility methods are exported that allow users to convert some popular encodings to raw `Uint8Array`.
  • Loading branch information
semantic-release-bot committed Apr 4, 2022
1 parent 9132caf commit 30b9ac8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [6.0.0](https://github.com/decentralized-identity/did-jwt/compare/5.12.4...6.0.0) (2022-04-04)


### Bug Fixes

* remove parseKey, change ES256K and Ed25519 signers to Uint8Array only ([#224](https://github.com/decentralized-identity/did-jwt/issues/224)) ([9132caf](https://github.com/decentralized-identity/did-jwt/commit/9132caf50d58a79ccf42e43664cca048db885c78)), closes [#222](https://github.com/decentralized-identity/did-jwt/issues/222)


### BREAKING CHANGES

* The Signer classes exported by this library no longer accept private keys with string encodings, only `Uint8Array`. This reduces the potential ambiguity between different formats. Some utility methods are exported that allow users to convert some popular encodings to raw `Uint8Array`.

## [5.12.4](https://github.com/decentralized-identity/did-jwt/compare/5.12.3...5.12.4) (2022-01-27)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "did-jwt",
"version": "5.12.4",
"version": "6.0.0",
"description": "Library for Signing and Verifying JWTs that use DIDs as issuers and JWEs that use DIDs as recipients",
"type": "module",
"source": "src/index.ts",
Expand Down

0 comments on commit 30b9ac8

Please sign in to comment.