Skip to content

Commit

Permalink
Hotfix/v0.6.3 (#1216)
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass authored Aug 17, 2023
1 parent 550c07d commit e5bbe73
Show file tree
Hide file tree
Showing 15 changed files with 61 additions and 46 deletions.
3 changes: 3 additions & 0 deletions .github/releases/v0.6.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This release updates Stronghold to the [latest major version](https://github.com/iotaledger/stronghold.rs/releases/tag/iota-stronghold-v2.0.0) to improve the security of the contained data.
\n\n
The new Stronghold release introduces an updated Snapshot format and requires old Snapshots to be migrated to the new format. You can find detailed migration instructions [here](https://wiki.iota.org/identity.rs/tutorials/migrate-stronghold/).
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [v0.6.3](https://github.com/iotaledger/identity.rs/tree/v0.6.3) (2023-08-03)

[Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.6.2...v0.6.3)

This release updates Stronghold to the [latest major version](https://github.com/iotaledger/stronghold.rs/releases/tag/iota-stronghold-v2.0.0) to improve the security of the contained data.
\n\n
The new Stronghold release introduces an updated Snapshot format and requires old Snapshots to be migrated to the new format. You can find detailed migration instructions [here](https://wiki.iota.org/identity.rs/tutorials/migrate-stronghold/).

### Patch

- Update identity 0.6 to Stronghold 2.0 [\#1174](https://github.com/iotaledger/identity.rs/pull/1174)

## [v0.6.2](https://github.com/iotaledger/identity.rs/tree/v0.6.2) (2023-03-08)

[Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.6.1...v0.6.2)
Expand Down
10 changes: 5 additions & 5 deletions bindings/stronghold-nodejs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions bindings/stronghold-nodejs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
identity_account_storage = { version = "0.6.3-rc.1", path = "../../identity_account_storage", default-features = false, features = ["stronghold", "send-sync-storage", "encryption"] }
identity_core = { version = "0.6.3-rc.1", path = "../../identity_core", default-features = false }
identity_iota_core = { version = "0.6.3-rc.1", path = "../../identity_iota_core", default-features = false }
identity_account_storage = { version = "0.6.3", path = "../../identity_account_storage", default-features = false, features = ["stronghold", "send-sync-storage", "encryption"] }
identity_core = { version = "0.6.3", path = "../../identity_core", default-features = false }
identity_iota_core = { version = "0.6.3", path = "../../identity_iota_core", default-features = false }
napi = { version = "2.4.3", default-features = false, features = ["napi4", "tokio_rt", "serde-json"] }
napi-derive = { version = "2.4.1", default-features = false, features = ["compat-mode", "full"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion bindings/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4", default-features = false }

[dependencies.identity_iota]
version = "0.6.3-rc.1"
version = "0.6.3"
path = "../../identity_iota"
default-features = false
features = ["account", "storage-test-suite", "unstable-encryption", "revocation-bitmap"]
Expand Down
14 changes: 7 additions & 7 deletions identity_account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_account"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -11,12 +11,12 @@ repository = "https://github.com/iotaledger/identity.rs"
description = "High-level interface for managing IOTA DID Documents."

[dependencies]
identity_account_storage = { version = "=0.6.3-rc.1", path = "../identity_account_storage", default-features = false }
identity_core = { version = "=0.6.3-rc.1", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.6.3-rc.1", path = "../identity_credential", default-features = false }
identity_did = { version = "=0.6.3-rc.1", path = "../identity_did", default-features = false }
identity_iota_client = { version = "=0.6.3-rc.1", path = "../identity_iota_client", default-features = false }
identity_iota_core = { version = "=0.6.3-rc.1", path = "../identity_iota_core", default-features = false }
identity_account_storage = { version = "=0.6.3", path = "../identity_account_storage", default-features = false }
identity_core = { version = "=0.6.3", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.6.3", path = "../identity_credential", default-features = false }
identity_did = { version = "=0.6.3", path = "../identity_did", default-features = false }
identity_iota_client = { version = "=0.6.3", path = "../identity_iota_client", default-features = false }
identity_iota_core = { version = "=0.6.3", path = "../identity_iota_core", default-features = false }
log = { version = "0.4", default-features = false }
paste = { version = "1.0" }
rand = { version = "0.8", default-features = false, features = [
Expand Down
8 changes: 4 additions & 4 deletions identity_account_storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_account_storage"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -18,9 +18,9 @@ async-trait = { version = "0.1", default-features = false }
function_name = { version = "0.2", default-features = false, optional = true }
futures = { version = "0.3", optional = true }
hashbrown = { version = "0.11", features = ["serde"] }
identity_core = { version = "=0.6.3-rc.1", path = "../identity_core", default-features = false }
identity_did = { version = "=0.6.3-rc.1", path = "../identity_did", default-features = false }
identity_iota_core = { version = "=0.6.3-rc.1", path = "../identity_iota_core", default-features = false }
identity_core = { version = "=0.6.3", path = "../identity_core", default-features = false }
identity_did = { version = "=0.6.3", path = "../identity_did", default-features = false }
identity_iota_core = { version = "=0.6.3", path = "../identity_iota_core", default-features = false }
iota-crypto = { version = ">=0.7, <0.10", default-features = false, features = [
"hmac",
"pbkdf",
Expand Down
4 changes: 2 additions & 2 deletions identity_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_core"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/iotaledger/identity.rs"
description = "The core traits and types for the identity-rs library."

[dependencies]
identity-diff = { version = "=0.6.3-rc.1", path = "../identity_diff", default-features = false }
identity-diff = { version = "=0.6.3", path = "../identity_diff", default-features = false }
multibase = { version = "0.9", default-features = false, features = ["std"] }
serde = { version = "1.0", default-features = false, features = [
"std",
Expand Down
6 changes: 3 additions & 3 deletions identity_credential/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_credential"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -11,8 +11,8 @@ repository = "https://github.com/iotaledger/identity.rs"
description = "An implementation of the Verifiable Credentials standard."

[dependencies]
identity_core = { version = "=0.6.3-rc.1", path = "../identity_core", default-features = false }
identity_did = { version = "=0.6.3-rc.1", path = "../identity_did", default-features = false }
identity_core = { version = "=0.6.3", path = "../identity_core", default-features = false }
identity_did = { version = "=0.6.3", path = "../identity_did", default-features = false }
lazy_static = { version = "1.4", default-features = false }
serde = { version = "1.0", default-features = false, features = [
"std",
Expand Down
4 changes: 2 additions & 2 deletions identity_did/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_did"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -20,7 +20,7 @@ flate2 = { version = "1.0.23", default-features = false, features = [
"rust_backend",
], optional = true }
form_urlencoded = { version = "=1.1.0" }
identity_core = { version = "=0.6.3-rc.1", path = "../identity_core" }
identity_core = { version = "=0.6.3", path = "../identity_core" }
indexmap = { version = "1.7", default-features = false, features = [
"std",
"serde-1",
Expand Down
4 changes: 2 additions & 2 deletions identity_diff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-diff"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/iotaledger/identity.rs"
description = "`Diff` trait to compute and merge data structure differences."

[dependencies]
identity-diff-derive = { version = "=0.6.3-rc.1", path = "derive", optional = true }
identity-diff-derive = { version = "=0.6.3", path = "derive", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
strum = { version = "0.24.0", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion identity_diff/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-diff-derive"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand Down
16 changes: 8 additions & 8 deletions identity_iota/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_iota"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -13,13 +13,13 @@ description = "Framework for Self-Sovereign Identity with IOTA DID."

[dependencies]
# identity_comm = { version = "=0.5.0-dev.4", path = "../identity_comm", optional = true }
identity_account = { version = "=0.6.3-rc.1", path = "../identity_account", default-features = false, optional = true }
identity_account_storage = { version = "=0.6.3-rc.1", path = "../identity_account_storage", default-features = false, optional = true }
identity_core = { version = "=0.6.3-rc.1", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.6.3-rc.1", path = "../identity_credential", default-features = false }
identity_did = { version = "=0.6.3-rc.1", path = "../identity_did", default-features = false }
identity_iota_client = { version = "=0.6.3-rc.1", path = "../identity_iota_client", default-features = false }
identity_iota_core = { version = "=0.6.3-rc.1", path = "../identity_iota_core", default-features = false }
identity_account = { version = "=0.6.3", path = "../identity_account", default-features = false, optional = true }
identity_account_storage = { version = "=0.6.3", path = "../identity_account_storage", default-features = false, optional = true }
identity_core = { version = "=0.6.3", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.6.3", path = "../identity_credential", default-features = false }
identity_did = { version = "=0.6.3", path = "../identity_did", default-features = false }
identity_iota_client = { version = "=0.6.3", path = "../identity_iota_client", default-features = false }
identity_iota_core = { version = "=0.6.3", path = "../identity_iota_core", default-features = false }

[dev-dependencies]
criterion = { version = "0.3" }
Expand Down
10 changes: 5 additions & 5 deletions identity_iota_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_iota_client"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -16,10 +16,10 @@ bee-rest-api = { version = "0.1.7", default-features = false }
brotli = { version = "3.3", default-features = false, features = ["std"] }
form_urlencoded = { version = "=1.1.0" }
futures = { version = "0.3" }
identity_core = { version = "=0.6.3-rc.1", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.6.3-rc.1", path = "../identity_credential" }
identity_did = { version = "=0.6.3-rc.1", path = "../identity_did", default-features = false }
identity_iota_core = { version = "=0.6.3-rc.1", path = "../identity_iota_core", default-features = false }
identity_core = { version = "=0.6.3", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.6.3", path = "../identity_credential" }
identity_did = { version = "=0.6.3", path = "../identity_did", default-features = false }
identity_iota_core = { version = "=0.6.3", path = "../identity_iota_core", default-features = false }
itertools = { version = "0.10" }
lazy_static = { version = "1.4", default-features = false }
log = { version = "0.4", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions identity_iota_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_iota_core"
version = "0.6.3-rc.1"
version = "0.6.3"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -14,8 +14,8 @@ description = "Core data structures for the IOTA DID Method."
bee-message = { version = "0.1.6", default-features = false, features = [
"serde",
] }
identity_core = { version = "=0.6.3-rc.1", path = "../identity_core", default-features = false }
identity_did = { version = "=0.6.3-rc.1", path = "../identity_did", default-features = false }
identity_core = { version = "=0.6.3", path = "../identity_core", default-features = false }
identity_did = { version = "=0.6.3", path = "../identity_did", default-features = false }
lazy_static = { version = "1.4", default-features = false }
serde = { version = "1.0", default-features = false, features = [
"std",
Expand Down

0 comments on commit e5bbe73

Please sign in to comment.