diff --git a/bindings/wasm/CHANGELOG.md b/bindings/wasm/CHANGELOG.md index ad7595e1b3..c6ff533e11 100644 --- a/bindings/wasm/CHANGELOG.md +++ b/bindings/wasm/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [wasm-v0.7.0-alpha.7](https://github.com/iotaledger/identity.rs/tree/wasm-v0.7.0-alpha.7) (2023-09-28) + +[Full Changelog](https://github.com/iotaledger/identity.rs/compare/wasm-v0.7.0-alpha.6...wasm-v0.7.0-alpha.7) + + + + +### Changed +- Use `VC Data Model v1.1` JWT encoding instead of `VC-JWT` [#1234](https://github.com/iotaledger/identity.rs/pull/1234) +- Change `verifiable_credential` to type `Vec` in `Presentation` [#1231](https://github.com/iotaledger/identity.rs/pull/1231) + + +### Added +- Allow arbitrary JWS header parameters [#1245](https://github.com/iotaledger/identity.rs/pull/1245) +- Allow custom JWT claims for presentations [#1244](https://github.com/iotaledger/identity.rs/pull/1244) +- Allow custom `kid` to be set in JWS [#1239](https://github.com/iotaledger/identity.rs/pull/1239) +- Allow custom JWT claims for credentials [#1237](https://github.com/iotaledger/identity.rs/pull/1237) + + +### Patch +- Fix holder claim check in VP [#1236](https://github.com/iotaledger/identity.rs/pull/1236) +- Fix issuer claim check in VC [#1235](https://github.com/iotaledger/identity.rs/pull/1235) + ## [wasm-v0.7.0-alpha.6](https://github.com/iotaledger/identity.rs/tree/wasm-v0.7.0-alpha.6) (2023-08-15) [Full Changelog](https://github.com/iotaledger/identity.rs/compare/wasm-v0.7.0-alpha.5...wasm-v0.7.0-alpha.6) diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index c1e6b8453b..b59dade148 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_wasm" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" diff --git a/bindings/wasm/package-lock.json b/bindings/wasm/package-lock.json index 9df19bc6f9..4a95a99873 100644 --- a/bindings/wasm/package-lock.json +++ b/bindings/wasm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@iota/identity-wasm", - "version": "0.7.0-alpha.6", + "version": "0.7.0-alpha.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@iota/identity-wasm", - "version": "0.7.0-alpha.6", + "version": "0.7.0-alpha.7", "license": "Apache-2.0", "dependencies": { "@noble/ed25519": "^1.7.3", diff --git a/bindings/wasm/package.json b/bindings/wasm/package.json index 8314b41537..b468694fa4 100644 --- a/bindings/wasm/package.json +++ b/bindings/wasm/package.json @@ -1,6 +1,6 @@ { "name": "@iota/identity-wasm", - "version": "0.7.0-alpha.6", + "version": "0.7.0-alpha.7", "description": "WASM bindings for IOTA Identity - A Self Sovereign Identity Framework implementing the DID and VC standards from W3C. To be used in Javascript/Typescript", "repository": { "type": "git",