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 735
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 #2141 from Artemkaaas/bugfix/pending-messages
Indy 1.15.0
- Loading branch information
Showing
45 changed files
with
276 additions
and
159 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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 @@ | ||
[package] | ||
name = "indy-cli" | ||
version = "1.14.4" | ||
version = "1.15.0" | ||
authors = ["Hyperledger Indy Contributors <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = """\ | ||
|
@@ -34,10 +34,10 @@ serde_json = "1.0.40" | |
serde_derive = "1.0.97" | ||
term = "0.4.6" | ||
rpassword = "1.0.0" | ||
indy = { version = "1.14.4", path = "../wrappers/rust/" } | ||
indy = { version = "1.15.0", path = "../wrappers/rust/" } | ||
|
||
[package.metadata.deb] | ||
depends = "libindy (= 1.14.4), libncursesw5-dev" | ||
depends = "libindy (= 1.15.0), libncursesw5-dev" | ||
section = "devel" | ||
priority = "optional" | ||
assets = [ | ||
|
@@ -48,8 +48,8 @@ changelog = "./debian/changelog" | |
|
||
[package.metadata.deb.variants.indy-cli-xenial] | ||
name = "indy-cli" | ||
provides = "indy-cli (= 1.14.4)" | ||
provides = "indy-cli (= 1.15.0)" | ||
|
||
[package.metadata.deb.variants.indy-cli-bionic] | ||
name = "indy-cli" | ||
provides = "indy-cli (= 1.14.4)" | ||
provides = "indy-cli (= 1.15.0)" |
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
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!-- markdownlint-disable MD033 --> | ||
|
||
# Libindy 1.14 to 1.15 migration Guide | ||
|
||
This document is written for developers using Libindy to provide necessary information and | ||
to simplify their transition to Libindy 1.14 from Libindy 1.15. If you are using older Libindy | ||
version you can check migration guides history: | ||
|
||
* [Libindy 1.3 to 1.4 migration](https://github.com/hyperledger/indy-sdk/blob/v1.4.0/doc/migration-guide.md) | ||
* [Libindy 1.4 to 1.5 migration](https://github.com/hyperledger/indy-sdk/blob/v1.5.0/doc/migration-guide-1.4.0-1.5.0.md) | ||
* [Libindy 1.5 to 1.6 migration](https://github.com/hyperledger/indy-sdk/blob/v1.6.0/doc/migration-guide-1.5.0-1.6.0.md) | ||
* [Libindy 1.6 to 1.7 migration](https://github.com/hyperledger/indy-sdk/blob/v1.7.0/doc/migration-guide-1.6.0-1.7.0.md) | ||
* [Libindy 1.7 to 1.8 migration](https://github.com/hyperledger/indy-sdk/blob/v1.8.0/doc/migration-guide-1.7.0-1.8.0.md) | ||
* [Libindy 1.8 to 1.9 migration](https://github.com/hyperledger/indy-sdk/blob/v1.9.0/docs/migration-guides/migration-guide-1.8.0-1.9.0.md) | ||
* [Libindy 1.9 to 1.10 migration](https://github.com/hyperledger/indy-sdk/blob/v1.10.0/docs/migration-guides/migration-guide-1.9.0-1.10.0.md) | ||
* [Libindy 1.10 to 1.11 migration](https://github.com/hyperledger/indy-sdk/blob/v1.11.0/docs/migration-guides/migration-guide-1.10.0-1.11.0.md) | ||
* [Libindy 1.11 to 1.12 migration](https://github.com/hyperledger/indy-sdk/blob/v1.12.0/docs/migration-guides/migration-guide-1.11.0-1.12.0.md) | ||
* [Libindy 1.12 to 1.13 migration](https://github.com/hyperledger/indy-sdk/blob/v1.13.0/docs/migration-guides/migration-guide-1.12.0-1.13.0.md) | ||
* [Libindy 1.13 to 1.14 migration](https://github.com/hyperledger/indy-sdk/blob/v1.14.0/docs/migration-guides/migration-guide-1.13.0-1.14.0.md) | ||
|
||
## Table of contents | ||
|
||
* [Notes](#notes) | ||
* [Libindy 1.14 to 1.15 migration](#libindy-114-to-115-migration) | ||
|
||
## Libindy 1.14 to 1.15 migration | ||
|
||
The Libindy 1.14.5 release contains bug fixes that don't affect API functions. | ||
The most important of them: | ||
* Provided correction for `Fix proof verification in case of credential attribute encoded value contains leading zeros` (IS-1491). | ||
Indy 1.14.3 changes "0" to "" which leads to proof rejection. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 @@ | ||
[package] | ||
name = "libindy" | ||
version = "1.14.4" | ||
version = "1.15.0" | ||
authors = ["Hyperledger Indy Contributors <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -98,34 +98,34 @@ maintainer-scripts = "./debian" | |
changelog = "./debian/changelog" | ||
|
||
[package.metadata.deb.variants.libindy-xenial] | ||
provides = "libindy (= 1.14.4)" | ||
provides = "libindy (= 1.15.0)" | ||
name = "libindy" | ||
depends = "libzmq5, libsodium18, libssl1.0.0" | ||
assets = [ | ||
["target/release/libindy.so", "usr/lib/", "644"], | ||
] | ||
|
||
[package.metadata.deb.variants.libindy-bionic] | ||
provides = "libindy (= 1.14.4)" | ||
provides = "libindy (= 1.15.0)" | ||
name = "libindy" | ||
depends = "libzmq5, libsodium23, libssl1.1" | ||
assets = [ | ||
["target/release/libindy.so", "usr/lib/", "644"], | ||
] | ||
|
||
[package.metadata.deb.variants.libindy-dev-xenial] | ||
provides = "libindy-dev (= 1.14.4)" | ||
provides = "libindy-dev (= 1.15.0)" | ||
name = "libindy-dev" | ||
depends = "libindy (= 1.14.4)" | ||
depends = "libindy (= 1.15.0)" | ||
assets = [ | ||
["include/*.h", "usr/include/indy/", "644"], | ||
["target/release/libindy.a", "usr/lib/", "644"], | ||
] | ||
|
||
[package.metadata.deb.variants.libindy-dev-bionic] | ||
provides = "libindy-dev (= 1.14.4)" | ||
provides = "libindy-dev (= 1.15.0)" | ||
name = "libindy-dev" | ||
depends = "libindy (= 1.14.4)" | ||
depends = "libindy (= 1.15.0)" | ||
assets = [ | ||
["include/*.h", "usr/include/indy/", "644"], | ||
["target/release/libindy.a", "usr/lib/", "644"], | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 @@ | ||
[package] | ||
name = "null-payment-method" | ||
version = "1.14.4" | ||
version = "1.15.0" | ||
authors = ["Hyperledger Indy Contributors <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = """\ | ||
|
@@ -29,13 +29,13 @@ serde_derive = "1.0.97" | |
|
||
[dev-dependencies] | ||
dirs = "1.0.4" | ||
indy = { version="1.14.4", path="../wrappers/rust" } | ||
indy = { version="1.15.0", path="../wrappers/rust" } | ||
|
||
[target.'cfg(target_os = "android")'.dependencies] | ||
android_logger = "0.5" | ||
|
||
[package.metadata.deb] | ||
depends = "libindy (= 1.14.4)" | ||
depends = "libindy (= 1.15.0)" | ||
section = "devel" | ||
priority = "optional" | ||
assets = [ | ||
|
@@ -46,8 +46,8 @@ changelog = "./debian/changelog" | |
|
||
[package.metadata.deb.variants.libnullpay-xenial] | ||
name = "libnullpay" | ||
provides = "libnullpay (= 1.14.4)" | ||
provides = "libnullpay (= 1.15.0)" | ||
|
||
[package.metadata.deb.variants.libnullpay-bionic] | ||
name = "libnullpay" | ||
provides = "libnullpay (= 1.14.4)" | ||
provides = "libnullpay (= 1.15.0)" |
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,4 +1,4 @@ | ||
libnullpay (1.14.4) unstable; urgency=medium | ||
libnullpay (1.15.0) unstable; urgency=medium | ||
|
||
[ Hyperledger ] | ||
* Initial release |
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
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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# LibVCX migration guide from 0.7.x to 0.8.0 | ||
## A Developer Guide for LibVCX migration | ||
|
||
This document is written for developers using LibVCX to provide necessary information and | ||
to simplify their transition to LibVCX 0.8.x from LibVCX 0.7.x. | ||
|
||
* [API](#api) | ||
* [Protocols Compatibility](#protocols-compatibility) | ||
|
||
#### Protocols compatibility | ||
|
||
* Supported `protocol_version`: `3.0` which actually is an alternative to combination of settings: `protocol_version`: `2.0` and `communication_method`: `aries`. | ||
|
||
* Fixed compatibility between proprietary (`protocol_version`: `2.0`/`1.0`) and aries communication protocols (`protocol_version`: `3.0`). | ||
|
||
Added a new enum variant `Pending` for IssuerCredentials/Credentials/Proofs/DisclosedProofs objects. | ||
Initially create `Pending` objects and convert them to V1/V3 after receiving the connection handle. | ||
`Pending` objects have `3.0` versions during serialization. |
Oops, something went wrong.