Skip to content

Latest commit

 

History

History
223 lines (107 loc) · 12.3 KB

CHANGELOG.md

File metadata and controls

223 lines (107 loc) · 12.3 KB

2.1.10 (2022-05-20)

Bug Fixes

2.1.9 (2022-01-13)

Bug Fixes

  • deps: bump dependencies to latest (7cb7a88)

2.1.8 (2021-11-23)

Bug Fixes

  • normalizeCredential overwrite of "evidence" when "vc" is missing (#86) (0039298)

2.1.7 (2021-08-31)

Bug Fixes

  • forward JWT options when creating a VC or VP (#90) (13cea08), closes #89

2.1.6 (2021-07-22)

Bug Fixes

  • build: revert back to microbundle and module output (d28729a), closes #84

2.1.5 (2021-07-21)

Bug Fixes

  • build: revert to tsc for compilation (#85) (b7dedea), closes #84

2.1.4 (2021-07-13)

Bug Fixes

2.1.3 (2021-06-16)

Bug Fixes

  • w3c additional props should not be overwritten inside JWT (#78) (d2a5c44)

2.1.2 (2021-05-28)

Bug Fixes

  • mapp additional W3C spec fields to and from JWT VC (#75) (e0482dc), closes #73

2.1.1 (2021-05-18)

Bug Fixes

2.1.0 (2021-04-08)

Features

  • add ability to add to the JWT header of the VC/VP (#71) (79d2d76), closes #69

2.0.2 (2021-03-26)

Bug Fixes

  • deps: use Resolvable type from did-resolver (e731e7e)

2.0.1 (2021-03-25)

Bug Fixes

2.0.0 (2021-03-11)

Bug Fixes

BREAKING CHANGES

  • deps: the type of Resolver used for verification has been upgraded to the latest spec and no longer returns just the DID Document

1.2.0 (2021-03-11)

Features

  • add option to keep original fields when transforming JWT<->JOSE payload formats (#63) (cf59b6f), closes #62 #22

1.1.0 (2021-02-24)

Features

  • support challenge & domain in Presentation creation and verification (#61) (3a75c47), closes #60 #22

1.0.7 (2021-01-18)

Bug Fixes

1.0.6 (2020-08-18)

Bug Fixes

1.0.5 (2020-08-18)

Bug Fixes

  • set credentialSubject.id as optional (#45) (c31ee17)

1.0.4 (2020-07-20)

Bug Fixes

1.0.3 (2020-07-02)

Bug Fixes

  • stop input from being mutated by converter methods (#41) (346e6f7)

1.0.2 (2020-06-29)

Bug Fixes

1.0.1 (2020-06-26)

Bug Fixes

  • build: Use tsc instead of microbundle (#38) (f75a967)

1.0.0 (2020-06-25)

Bug Fixes

  • build: add babel plugin to fix microbundle 0.12 build error (e14c2aa)
  • use ES256K as the default JWT algorithm (a097c69)

Code Refactoring

  • rename creation and validation methods to reflect JWT target (829956f)
  • rename credential validation methods (2bb2e5a)
  • rename existing payload types to reflect JWT target (af74207)

Features

  • add a method to convert a credential payload from W3C to JWT (f7e86f0)
  • add a normalizer method to an unambiguous Verifiable<Credential> (ffbd67f)
  • add methods to convert to unambiguous Verifiable<Presentation> and JWTPresentationPayload (1721e4a)
  • define W3C compatible data types for credentials and presentations (adb27e9)
  • homogenize verifyCredential()/verifyPresentation() API (e9fbb99)
  • homogenize createCredentialJwt/PresentationJwt API (3999382)

BREAKING CHANGES

  • removed Verifiable from the credential validation methods since the parameter is only the payload validateJwtVerifiableCredentialPayload -> validateJwtCredentialPayload validateVerifiableCredentialPayload -> validateCredentialPayload
  • renamed createPresentationJWT to createVerifiablePresentationAJwt
  • the following methods have been renamed: createVerifiableCredential -> createVerifiableCredentialJwt createPresentation -> createPresentationJwt validateVerifiableCredentialAttributes -> validateJwtVerifiableCredentialPayload validatePresentationAttributes -> validateJwtPresentationPayload

Also exporting the JWT type which maps to string

  • the following interface definitions have been renamed: VerifiableCredentialPayload -> JwtVerifiableCredentialPayload PresentationPayload -> JwtPresentationPayload

0.2.0 (2020-04-30)

Features

  • remove explicit declaration of the nullable credentialStatus (078ba82)

0.1.6 (2020-04-28)

Bug Fixes