|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 0.0.16 (2022-06-30) |
| 4 | + |
| 5 | +### Added |
| 6 | + |
| 7 | +- New WASM bindings: |
| 8 | + - `allNetworkNames()` lists all network names that are accepted as a parameter in some methods. |
| 9 | + - `Bip39.shortEntropy()`, `Bip39.shortPhrase()` improves compatibility with old wallets like Coinomi. |
| 10 | + - `wrapWithNonce()` helps adding extra entropy to a JSON document, where selective masking will be used. |
| 11 | + - `MorpheusPrivate.path` and `MorpheusPrivateKind.path` returns BIP32 derivation paths to allow compatibility with other wallets. |
| 12 | + - `MorpheusOperationSigner.signWithId()` makes it easier to sign with a key if only its identifier is known to the caller. |
| 13 | + - `JwtBuilder.timeToLive` property helps to override the default 5s expiration of tokens. |
| 14 | + - `new MorpheusSignableOperation(json)` and `new MorpheusSignedOperation(json)` mirrors `MorpheusSignableOperation.toJSON()` and |
| 15 | + `MorpheusSignedOperation.toJSON()`, so it is easier to build complex SSI transactions. |
| 16 | +- Documented all WASM methods in the SDK, except those related to Coeus for now. |
| 17 | + |
| 18 | +### Changed |
| 19 | + |
| 20 | +- Vault freshly created from a random seed is dirty (unsaved). |
| 21 | +- All crates are now using Rust edition 2021. |
| 22 | + |
| 23 | +## 0.0.15 (2021-11-09) |
| 24 | + |
| 25 | +### Fixed |
| 26 | + |
| 27 | +- `JsSubtreePolicies` methods should not take ownership of self |
| 28 | + |
| 29 | +### Added |
| 30 | + |
| 31 | +- Exposed all 4 DID kinds (persona, device, group, resource) through WASM, FFI and vault file format. |
| 32 | +- Exposed SignedJson serialization format through WASM and FFI. |
| 33 | +- Made the native Rust SDK more usable by re-exporting symbols through it. |
| 34 | +- Morpheus node stores transaction ID of PoE SSI operations, so it can be queried in IBeforeProofHistory. |
| 35 | +- scripts/publish.sh helps publishing all crates in the correct order. |
| 36 | + |
3 | 37 | ## 0.0.14 (2021-07-21)
|
4 | 38 |
|
5 | 39 | ### Fixed
|
|
14 | 48 |
|
15 | 49 | ### Added
|
16 | 50 |
|
17 |
| -- You can now set the vendor field (aka. smart bridge field) and set a manual fee on Hydra core transactions using the 2 new optional arguments TypeScript SDK HydraTxBuilder factory methods got. |
| 51 | +- You can now set the vendor field (aka. smart bridge field) and set a manual fee on Hydra core transactions using the 2 new optional |
| 52 | + arguments TypeScript SDK HydraTxBuilder factory methods got. |
18 | 53 | - Added some missing bindings to WASM and FFI, `SecpKeyId.toAddress` being the most important one.
|
19 |
| -- Multicipher objects (`MPrivateKey`, `MPublicKey` and `MKeyId`) can be safely downcasted in Rust to secp256p1 and ed25519 cipher objects. Not supported in WASM and FFI yet. |
| 54 | +- Multicipher objects (`MPrivateKey`, `MPublicKey` and `MKeyId`) can be safely downcasted in Rust to secp256p1 and ed25519 cipher |
| 55 | + objects. Not supported in WASM and FFI yet. |
20 | 56 |
|
21 | 57 | ### Changed
|
22 | 58 |
|
|
27 | 63 |
|
28 | 64 | ### Added
|
29 | 65 |
|
30 |
| -- You can now set the vendor field (aka. smart bridge field) and set a manual fee on Hydra core transactions using the 2 new optional arguments TypeScript SDK HydraTxBuilder factory methods got. |
| 66 | +- You can now set the vendor field (aka. smart bridge field) and set a manual fee on Hydra core transactions using the 2 new optional |
| 67 | + arguments TypeScript SDK HydraTxBuilder factory methods got. |
31 | 68 |
|
32 | 69 | ## 0.0.12 (2021-03-17)
|
33 | 70 |
|
34 | 71 | ### Added
|
35 | 72 |
|
36 |
| -- Crate `iop-sdk` now exports important types and is generally usable as an early draft in clients. Note that it currently does not follow any conventions of the Dart and Typescript SDKs but exposes some internal implementation details. |
| 73 | +- Crate `iop-sdk` now exports important types and is generally usable as an early draft in clients. Note that it currently does not |
| 74 | + follow any conventions of the Dart and Typescript SDKs but exposes some internal implementation details. |
37 | 75 | - Hydra and Morpheus vault plugins are now thread-safe and thus easily usable in async environments as well.
|
38 | 76 |
|
39 | 77 | ### Changed
|
40 | 78 |
|
41 |
| -- BREAKING: renamed Hydra and Morpheus `vault::Plugin` function `rewind()` to `init()` for clarity. Naming changes also affect FFI and WASM interfaces. |
42 |
| -- BREAKING: suffixed functions that mutate Hydra and Morpheus vaults (by generating keys into them) with `_mut`. This does not affect FFI and WASM though. |
| 79 | +- BREAKING: renamed Hydra and Morpheus `vault::Plugin` function `rewind()` to `init()` for clarity. Naming changes also affect FFI |
| 80 | + and WASM interfaces. |
| 81 | +- BREAKING: suffixed functions that mutate Hydra and Morpheus vaults (by generating keys into them) with `_mut`. This does not affect |
| 82 | + FFI and WASM though. |
43 | 83 | - updated dependencies
|
44 | 84 |
|
45 | 85 | ### Fixed
|
|
81 | 121 |
|
82 | 122 | ## 0.0.6 (2020-11-06)
|
83 | 123 |
|
84 |
| -We're heavily refactoring our crate structure while implementing Coeus, our decentralized naming system as our second Layer-2 component. Our end goal is to make fine-grained crates for reducing dependency footprint for integrators by separating client/server sides and making Morpheus and Coeus optional plugins. |
| 124 | +We're heavily refactoring our crate structure while implementing Coeus, our decentralized naming system as our second Layer-2 |
| 125 | +component. Our end goal is to make fine-grained crates for reducing dependency footprint for integrators by separating client/server |
| 126 | +sides and making Morpheus and Coeus optional plugins. |
85 | 127 |
|
86 | 128 | ### Added
|
87 | 129 |
|
88 |
| -- Coeus: generic decentralized naming system built on top of a distributed ledger. Allows binding arbitrary data to names, allowing naming schemas, wallets, DIDs, devices, etc. This helps public figures and services to be more accessible and transparent. For more details, see the [IOP Developer Portal](https://developer.iop.technology/dns). |
| 130 | +- Coeus: generic decentralized naming system built on top of a distributed ledger. Allows binding arbitrary data to names, allowing |
| 131 | + naming schemas, wallets, DIDs, devices, etc. This helps public figures and services to be more accessible and transparent. For more |
| 132 | + details, see the [IOP Developer Portal](https://developer.iop.technology/dns). |
89 | 133 |
|
90 | 134 | ### Changed
|
91 | 135 |
|
92 | 136 | - BREAKING: changed crate hierarchy
|
93 | 137 | - coeus-core: a temporary crate with proto, sdk and node parts are not separated yet
|
94 |
| - - coeus-core-wasm: WebAssembly bindings for Coeus, sdk and node parts are not separated yet |
| 138 | + - coeus-core-wasm: WebAssembly bindings for Coeus, sdk and node parts are not separated yet |
95 | 139 | - hydra-proto: extracted hydra-dependent blockchain features (e.g. Morpheus and Coeus transactions) into their own crate
|
96 | 140 | - hydra-sdk: Hydra BIP32 subtree plugin for the Vault
|
97 | 141 | - morpheus-sdk-legacy: the old morpheus-sdk is now considered to be legacy code and was thus renamed
|
@@ -126,4 +170,4 @@ We're heavily refactoring our crate structure while implementing Coeus, our dece
|
126 | 170 |
|
127 | 171 | ## 0.0.2 (2020-07-28)
|
128 | 172 |
|
129 |
| -Initial release |
| 173 | +Initial release |
0 commit comments