From 25f0f86cfbe576e5945a727fd47ba740a3aafa95 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Aug 2023 10:26:41 +0200 Subject: [PATCH] Release v0.7.0-alpha.7 (#1218) --- CHANGELOG.md | 44 ++++++++++++++++++++++++++++++++ bindings/wasm/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- identity_core/Cargo.toml | 2 +- identity_credential/Cargo.toml | 10 ++++---- identity_did/Cargo.toml | 4 +-- identity_document/Cargo.toml | 8 +++--- identity_iota/Cargo.toml | 18 ++++++------- identity_iota_core/Cargo.toml | 12 ++++----- identity_jose/Cargo.toml | 4 +-- identity_resolver/Cargo.toml | 12 ++++----- identity_storage/Cargo.toml | 16 ++++++------ identity_verification/Cargo.toml | 8 +++--- 13 files changed, 93 insertions(+), 49 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 155a1bab78..4e16b3fec1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,49 @@ # Changelog +## [v0.7.0-alpha.7](https://github.com/iotaledger/identity.rs/tree/v0.7.0-alpha.7) (2023-08-15) + +[Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.7.0-alpha.6...v0.7.0-alpha.7) + +### Added + +- Improve `Proof` [#1209](https://github.com/iotaledger/identity.rs/pull/1209) +- Polish `identity_jose` [#1201](https://github.com/iotaledger/identity.rs/pull/1201) +- Add `resolve_multiple` to Resolver [#1189](https://github.com/iotaledger/identity.rs/pull/1189) +- Make JWT presentations generic [#1186](https://github.com/iotaledger/identity.rs/pull/1186) +- Support JWT presentations [#1175](https://github.com/iotaledger/identity.rs/pull/1175) +- Polish JWK thumbprint and document extension API [#1173](https://github.com/iotaledger/identity.rs/pull/1173) +- Stronghold Storage Implementation [#1157](https://github.com/iotaledger/identity.rs/pull/1157) +- Implement `KeyIdStorage` in Rust [#1134](https://github.com/iotaledger/identity.rs/pull/1134) + +### Changed + +- Bump `iota-sdk` and other dependencies [#1208](https://github.com/iotaledger/identity.rs/pull/1208) +- Polish `identity_credential` [#1205](https://github.com/iotaledger/identity.rs/pull/1205) +- Polish `identity_resolver` and`identity_storage` [#1204](https://github.com/iotaledger/identity.rs/pull/1204) +- Polish `identity_iota_core` [#1203](https://github.com/iotaledger/identity.rs/pull/1203) +- Rename `JwtPresentation` to `Presentation` [#1200](https://github.com/iotaledger/identity.rs/pull/1200) +- Polish `identity_document` [#1198](https://github.com/iotaledger/identity.rs/pull/1198) +- Polish `identity_did` & `identity_verification` [#1197](https://github.com/iotaledger/identity.rs/pull/1197) +- Polish `identity_core` [#1196](https://github.com/iotaledger/identity.rs/pull/1196) +- Remove identity-diff remains [#1195](https://github.com/iotaledger/identity.rs/pull/1195) +- Remove legacy signing and verification APIs [#1194](https://github.com/iotaledger/identity.rs/pull/1194) +- Remove old `Presentation` type [#1190](https://github.com/iotaledger/identity.rs/pull/1190) +- Remove reexported `Resolver` validation APIs [#1183](https://github.com/iotaledger/identity.rs/pull/1183) +- Use JWT credentials for Domain Linkage [#1180](https://github.com/iotaledger/identity.rs/pull/1180) +- Remove `identity_agent` & `identity_comm` [#1168](https://github.com/iotaledger/identity.rs/pull/1168) +- Remove `identity-diff` crate [#1167](https://github.com/iotaledger/identity.rs/pull/1167) +- JwkStorageDocument & JwtCredential validation [#1152](https://github.com/iotaledger/identity.rs/pull/1152) +- Adapt StorageError to be more generic [#1144](https://github.com/iotaledger/identity.rs/pull/1144) +- Add initial PublicKeyJwk support [#1143](https://github.com/iotaledger/identity.rs/pull/1143) +- Split JWS `Decoder` functionality [#1133](https://github.com/iotaledger/identity.rs/pull/1133) + +### Patch + +- Feature-gate Domain Linkage [#1184](https://github.com/iotaledger/identity.rs/pull/1184) +- Update method spec and JWK method type [#1176](https://github.com/iotaledger/identity.rs/pull/1176) +- Replace `iota-client` with `iota-sdk` [#1161](https://github.com/iotaledger/identity.rs/pull/1161) +- Pin `form_urlencoded` to `1.1.0` [#1136](https://github.com/iotaledger/identity.rs/pull/1136) + ## [v0.7.0-alpha.6](https://github.com/iotaledger/identity.rs/tree/v0.7.0-alpha.6) (2023-03-03) [Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.7.0-alpha.5...v0.7.0-alpha.6) diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index 0f0cc8133c..49bda49c1e 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -30,7 +30,7 @@ wasm-bindgen = { version = "0.2.85", features = ["serde-serialize"] } wasm-bindgen-futures = { version = "0.4", default-features = false } [dependencies.identity_iota] -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" path = "../../identity_iota" default-features = false features = ["client", "revocation-bitmap", "resolver", "eddsa", "domain-linkage"] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 5461021e01..05e0eada42 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors = ["IOTA Stiftung"] edition = "2021" publish = false diff --git a/identity_core/Cargo.toml b/identity_core/Cargo.toml index de27ce5e07..20203c2a18 100644 --- a/identity_core/Cargo.toml +++ b/identity_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_core" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition.workspace = true homepage.workspace = true diff --git a/identity_credential/Cargo.toml b/identity_credential/Cargo.toml index 57c9332bcb..0f7dd59a06 100644 --- a/identity_credential/Cargo.toml +++ b/identity_credential/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_credential" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors = ["IOTA Stiftung"] edition = "2021" homepage.workspace = true @@ -15,10 +15,10 @@ description = "An implementation of the Verifiable Credentials standard." dataurl = { version = "0.1.2", default-features = false, optional = true } flate2 = { version = "1.0.23", default-features = false, features = ["rust_backend"], optional = true } futures = { version = "0.3", default-features = false, optional = true } -identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false } -identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", default-features = false } -identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default-features = false } +identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } +identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } +identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default-features = false } indexmap = { version = "2.0", default-features = false, features = ["std", "serde"] } itertools = { version = "0.11", default-features = false, features = ["use_std"], optional = true } once_cell = { version = "1.18", default-features = false, features = ["std"] } diff --git a/identity_did/Cargo.toml b/identity_did/Cargo.toml index b70760c22e..c3331899de 100644 --- a/identity_did/Cargo.toml +++ b/identity_did/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_did" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition = "2021" homepage.workspace = true @@ -13,7 +13,7 @@ description = "Agnostic implementation of the Decentralized Identifiers (DID) st [dependencies] did_url = { version = "0.1", default-features = false, features = ["std", "serde"] } form_urlencoded = { version = "1.2.0", default-features = false, features = ["alloc"] } -identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core" } +identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core" } serde.workspace = true strum.workspace = true thiserror.workspace = true diff --git a/identity_document/Cargo.toml b/identity_document/Cargo.toml index 6ddbc7cc86..94cc72e40f 100644 --- a/identity_document/Cargo.toml +++ b/identity_document/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_document" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -13,9 +13,9 @@ description = "Method-agnostic implementation of the Decentralized Identifiers ( [dependencies] did_url = { version = "0.1", default-features = false, features = ["std", "serde"] } -identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core" } -identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did" } -identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default-features = false } +identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core" } +identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did" } +identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default-features = false } indexmap = { version = "2.0", default-features = false, features = ["std", "serde"] } serde.workspace = true strum.workspace = true diff --git a/identity_iota/Cargo.toml b/identity_iota/Cargo.toml index da60db8f81..c09b767ce9 100644 --- a/identity_iota/Cargo.toml +++ b/identity_iota/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -12,14 +12,14 @@ rust-version.workspace = true description = "Framework for Self-Sovereign Identity with IOTA DID." [dependencies] -identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.6", path = "../identity_credential", features = ["validator"], default-features = false } -identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", default-features = false } -identity_iota_core = { version = "=0.7.0-alpha.6", path = "../identity_iota_core", default-features = false } -identity_resolver = { version = "=0.7.0-alpha.6", path = "../identity_resolver", default-features = false, optional = true } -identity_storage = { version = "=0.7.0-alpha.6", path = "../identity_storage", default-features = false, features = ["iota-document"] } -identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default-features = false } +identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", features = ["validator"], default-features = false } +identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } +identity_iota_core = { version = "=0.7.0-alpha.7", path = "../identity_iota_core", default-features = false } +identity_resolver = { version = "=0.7.0-alpha.7", path = "../identity_resolver", default-features = false, optional = true } +identity_storage = { version = "=0.7.0-alpha.7", path = "../identity_storage", default-features = false, features = ["iota-document"] } +identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default-features = false } [dev-dependencies] anyhow = "1.0.64" diff --git a/identity_iota_core/Cargo.toml b/identity_iota_core/Cargo.toml index 2042e3131e..1e8d04528f 100644 --- a/identity_iota_core/Cargo.toml +++ b/identity_iota_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota_core" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -14,11 +14,11 @@ description = "An IOTA Ledger integration for the IOTA DID Method." [dependencies] async-trait = { version = "0.1.56", default-features = false, optional = true } futures = { version = "0.3", default-features = false } -identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.6", path = "../identity_credential", default-features = false, features = ["validator"] } -identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", default-features = false } -identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default-features = false } +identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", default-features = false, features = ["validator"] } +identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } +identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default-features = false } iota-sdk = { version = "1.0.2", default-features = false, features = ["serde", "std"], optional = true } num-derive = { version = "0.4", default-features = false } num-traits = { version = "0.2", default-features = false, features = ["std"] } diff --git a/identity_jose/Cargo.toml b/identity_jose/Cargo.toml index 65d3c8897e..bacddec403 100644 --- a/identity_jose/Cargo.toml +++ b/identity_jose/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_jose" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -12,7 +12,7 @@ rust-version.workspace = true description = "A library for JOSE (JSON Object Signing and Encryption)" [dependencies] -identity_core = { version = "0.7.0-alpha.6", path = "../identity_core", default-features = false } +identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } iota-crypto = { version = "0.23", default-features = false, features = ["std", "sha"] } serde.workspace = true serde_json = { version = "1.0", default-features = false, features = ["std"] } diff --git a/identity_resolver/Cargo.toml b/identity_resolver/Cargo.toml index 86aa11b451..640c897ea3 100644 --- a/identity_resolver/Cargo.toml +++ b/identity_resolver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_resolver" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -15,16 +15,16 @@ description = "DID Resolution utilities for the identity.rs library." # This is currently necessary for the ResolutionHandler trait. This can be made an optional dependency if alternative ways of attaching handlers are introduced. async-trait = { version = "0.1", default-features = false } futures = { version = "0.3" } -identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.6", path = "../identity_credential", default-features = false, features = ["validator"] } -identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", default-features = false } +identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", default-features = false, features = ["validator"] } +identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } strum.workspace = true thiserror = { version = "1.0", default-features = false } [dependencies.identity_iota_core] -version = "=0.7.0-alpha.6" +version = "=0.7.0-alpha.7" path = "../identity_iota_core" default-features = false features = ["send-sync-client-ext", "iota-client"] diff --git a/identity_storage/Cargo.toml b/identity_storage/Cargo.toml index 67e39dc1d0..373a4a5503 100644 --- a/identity_storage/Cargo.toml +++ b/identity_storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_storage" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -14,12 +14,12 @@ description = "Abstractions over storage for cryptographic keys used in DID Docu [dependencies] async-trait = { version = "0.1.64", default-features = false } futures = { version = "0.3.27", default-features = false, features = ["async-await"] } -identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.6", path = "../identity_credential", default-features = false, features = ["credential", "presentation"] } -identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false } -identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", default-features = false } -identity_iota_core = { version = "=0.7.0-alpha.6", path = "../identity_iota_core", default-features = false, optional = true } -identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default_features = false } +identity_core = { version = "=0.7.0-alpha.7", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", default-features = false, features = ["credential", "presentation"] } +identity_did = { version = "=0.7.0-alpha.7", path = "../identity_did", default-features = false } +identity_document = { version = "=0.7.0-alpha.7", path = "../identity_document", default-features = false } +identity_iota_core = { version = "=0.7.0-alpha.7", path = "../identity_iota_core", default-features = false, optional = true } +identity_verification = { version = "=0.7.0-alpha.7", path = "../identity_verification", default_features = false } iota-crypto = { version = "0.23", default-features = false, features = ["blake2b", "ed25519", "random"], optional = true } iota-sdk = { version = "1.0", default-features = false, features = ["tls", "client", "stronghold"], optional = true } iota_stronghold = { version = "2.0", optional = true, default-features = false } @@ -32,7 +32,7 @@ tokio = { version = "1.29.0", default-features = false, features = ["macros", "s zeroize = { version = "1.6.0", default_features = false, optional = true } [dev-dependencies] -identity_credential = { version = "=0.7.0-alpha.6", path = "../identity_credential", features = ["revocation-bitmap"] } +identity_credential = { version = "=0.7.0-alpha.7", path = "../identity_credential", features = ["revocation-bitmap"] } once_cell = { version = "1.18", default-features = false } tokio = { version = "1.29.0", default-features = false, features = ["macros", "sync", "rt"] } diff --git a/identity_verification/Cargo.toml b/identity_verification/Cargo.toml index 23253d6a03..f54a00a717 100644 --- a/identity_verification/Cargo.toml +++ b/identity_verification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_verification" -version = "0.7.0-alpha.6" +version = "0.7.0-alpha.7" authors.workspace = true edition.workspace = true homepage.workspace = true @@ -9,9 +9,9 @@ rust-version.workspace = true description = "Verification data types and functionality for identity.rs" [dependencies] -identity_core = { version = "=0.7.0-alpha.6", path = "./../identity_core", default-features = false } -identity_did = { version = "=0.7.0-alpha.6", path = "./../identity_did", default-features = false } -identity_jose = { version = "=0.7.0-alpha.6", path = "./../identity_jose", default-features = false } +identity_core = { version = "=0.7.0-alpha.7", path = "./../identity_core", default-features = false } +identity_did = { version = "=0.7.0-alpha.7", path = "./../identity_did", default-features = false } +identity_jose = { version = "=0.7.0-alpha.7", path = "./../identity_jose", default-features = false } serde.workspace = true strum.workspace = true thiserror.workspace = true