This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 734
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #903 from jovfer/feature/rc_1_5_0
RC 1.5.0
- Loading branch information
Showing
706 changed files
with
71,323 additions
and
12,715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
cargo-registry | ||
target | ||
build | ||
node_modules | ||
.idea | ||
*.iml | ||
.venv | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,91 @@ | ||
# 1.4.0 | ||
# Changelog | ||
|
||
* Indy CLI tool added. | ||
## 1.5.0 | ||
|
||
* Introduction of [Wallet Storage](/~https://github.com/hyperledger/indy-sdk/tree/master/doc/design/003-wallet-storage) concept: | ||
* In v1.4 libindy allowed to plug different wallet implementations. Plugged wallet in v1.4 handled both security | ||
and storage layers. In contrast Libindy v1.5 restricts plugged interface by handling only storage layer. | ||
All encryption is performed in libindy. It simplifies plugged wallets and provides warranty of a good security level | ||
for 3d party wallets implementations. | ||
* The format of wallet data was changed for better security and support of efficient search | ||
* Added EXPERIMENTAL [Wallet Export/Import API](/~https://github.com/hyperledger/indy-sdk/tree/master/doc/design/009-wallet-export-import) and | ||
corresponded commands to Indy CLI | ||
* ```indy_list_wallets``` endpoint is DEPRECATED and will be removed in the next release. The main idea is avoid | ||
maintaining created wallet list on libindy side. It will allow to access wallets from a cluster and solve | ||
some problems on mobile platforms. ```indy_create_wallet``` and ```indy_open_wallet``` endpoints will | ||
also get related changes in the next release. | ||
* Added [Non-Secrets API](/~https://github.com/hyperledger/indy-sdk/tree/master/doc/design/003-wallet-storage#non-secrets-api) that allows store and read | ||
application specific data in the wallet | ||
* Added EXPERIMENTAL [Generic Payments API](/~https://github.com/hyperledger/indy-sdk/tree/master/doc/design/004-payment-interface#payment-method-api) that provides | ||
ability to register custom payment method | ||
and then create payment addresses, build payment-related transactions, assign fees to transactions | ||
* Added ability to [load custom plugins using Indy CLI](/~https://github.com/hyperledger/indy-sdk/tree/master/doc/design/006-cli-plugins) | ||
* Added the set of commands in Indy CLI providing ability to perform | ||
[the main payments operations](/~https://github.com/hyperledger/indy-sdk/tree/master/doc/design/007-cli-payments): | ||
* Creation of payment address | ||
* Listing of payment addresses | ||
* Getting list of UTXO for payment address | ||
* Sending payment transaction | ||
* Adding fees to transactions | ||
* Getting transactions fees amount | ||
* Implemented simple [Nullpay payment plugin](/~https://github.com/hyperledger/indy-sdk/tree/master/libnullpay) that provide experience | ||
similar to real payments system | ||
* Implemented publishing of Ubuntu and Windows packages for `Nullpay` plugin | ||
* Added new Ledger API endpoints and corresponded commands in Indy CLI | ||
* GET Validator Info request builder | ||
* Restart POOL request builder | ||
* Add Multi Signature to request | ||
* Optimized Pool connection process. Libindy v1.5 uses cache of Pool Ledger to speed up opening pool operation. | ||
* Bugfixes | ||
|
||
Notes: | ||
|
||
* There is [migration guide](doc/migration-guide-1.4.0-1.5.0.md) about API changes | ||
* Wallet format of libindy v1.5 isn't compatible with a wallet format of libindy v1.4. As result it is impossible to use wallets | ||
created with older libindy versions with libindy v1.5. | ||
* Tails handling contains breaking-change hotfix and blob-storage tails files generated by v1.4 is incompatible with 1.5. | ||
|
||
## 1.4.0 | ||
|
||
* Indy CLI tool added | ||
* Switching from DID-based crypto to keys-based crypto: | ||
* All DID-based crypto functions (`signus` module) are removed. | ||
* Added key-based `crypto` module. | ||
* Added functions to resolve keys for DIDs. | ||
* Agent API moved into `crypto` module. | ||
* All DID-based crypto functions (`signus` module) are removed | ||
* Added key-based `crypto` module | ||
* Added functions to resolve keys for DIDs | ||
* Agent API moved into `crypto` module | ||
* Support the latest version of CL crypto (through `indy-crypto` library): | ||
* Added nonce for all protocol steps. | ||
* Added consistency proofs for protocol steps. | ||
* Representation of Proofs changed (sub-proofs now are ordered). | ||
* Added nonce for all protocol steps | ||
* Added consistency proofs for protocol steps | ||
* Representation of Proofs changed (sub-proofs now are ordered) | ||
* Support of complete Credentials Revocation workflow in Anoncreds API: | ||
* Support large Tails handling through BlobStorage API. | ||
* Support new Revocation transactions. | ||
* Add calls for remote Witness calculation. | ||
* State-less approach in Credential issuance process. | ||
* Unified reference approach for Anoncreds entities. | ||
* Extend DID API: added some methods for iteration over entities in the wallet. | ||
* Bugfixes. | ||
* Support large Tails handling through BlobStorage API | ||
* Support new Revocation transactions | ||
* Add calls for remote Witness calculation | ||
* State-less approach in Credential issuance process | ||
* Unified reference approach for Anoncreds entities | ||
* Extend DID API: added some methods for iteration over entities in the wallet. | ||
* Bugfixes | ||
|
||
Notes: | ||
* There is [migration guide](doc/migration-guide.md) about API changes. | ||
* The changes for Credential Revocation invalidates any Anoncreds made with SDK 1.3. They must be reissued. | ||
* This release is intended for development purposes only. The 1.5.0 release of the SDK will contain changes to the wallet format. If you plan to put durable artifacts in the wallet, let us know so we can discuss migration to the future format. | ||
|
||
# 1.3.0 | ||
* There is [migration guide](doc/migration-guide-1.3.0-1.4.0.md) about API changes | ||
* The changes for Credential Revocation invalidates any Anoncreds made with SDK 1.3. They must be reissued | ||
* This release is intended for development purposes only. The 1.5.0 release of the SDK will contain changes to the wallet format. If you plan to put durable artifacts in the wallet, let us know so we can discuss migration to the future format | ||
|
||
## 1.3.0 | ||
|
||
* Encryption option for default wallet is added. | ||
* Encryption option for default wallet is added | ||
|
||
# 1.2.0 | ||
## 1.2.0 | ||
|
||
* indy_key_for_local_did added. | ||
* indy_key_for_local_did added | ||
|
||
# 1.1.0 | ||
## 1.1.0 | ||
|
||
* Replaced Agent2Agent API. | ||
* New Crypto API. | ||
* Updated Signus API. | ||
* Replaced Agent2Agent API | ||
* New Crypto API | ||
* Updated Signus API | ||
|
||
# 1.0.0 | ||
## 1.0.0 | ||
|
||
* Initial release. | ||
* Initial release |
Oops, something went wrong.