v1.1.0 - Non Merklized credential support
What's Changed
- Bump @iden3/js-crypto from 1.0.0 to 1.0.1 by @dependabot in #122
- Feature/pid-1040 by @Kolezhniuk in #123
- bump version to next minor. by @vmidyllic in #130
Important
There is change in theexported interface of JSON Parser class
from
async parseClaim( credential: W3CCredential, credentialType: string, jsonSchemaBytes: Uint8Array, opts?: CoreClaimOptions ): Promise<CoreClaim>
to
static async parseClaim(credential: W3CCredential, opts?: CoreClaimOptions): Promise<CoreClaim>
To adopt changes you need to exlude
credentialType
jsonSchemaBytesand
opts` parameters from the call and invoke this method as static.
Full Changelog: v1.0.3...v1.1.0