Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit ee142dc

Browse files
committed
Changelog for Libvcx
Signed-off-by: artem.ivanov <[email protected]>
1 parent 9756592 commit ee142dc

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99
* Add support for custom loggers to libindy
1010
* Performance improvements when ssearching wallets with large number of DIDs
1111
* Added test_zmq tool
12-
* LibVCX: TODO sumary of changes
12+
* LibVCX:
13+
* Added `protocol_type:4.0` implying that all inputs and outputs are expected to be in the Aries message format.
14+
* Added a new function `vcx_delete_credential` to delete credential from the wallet.
15+
* Changed behavior of `vcx_*_update_state_with_message` functions to not update the status of messages on the Agency. Instead, the application using VCX should care about changing of message status.
16+
* Bugfixes
1317
* Bugfixes
1418

1519
## 1.15.0 - 2020-03-25

vcx/docs/migration-guide-0.8.x-0.9.0.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,25 @@ to simplify their transition to LibVCX 0.9.x from LibVCX 0.8.x.
99

1010
#### Protocols compatibility
1111

12-
* TODO
12+
* Supported `protocol_version`: `4.0`.
13+
When VCX is set to use `protocol_version`: `4.0` for all VCX API functions the following met:
14+
* all inputs are expected to be in the Aries message format.
15+
* all outputs will be in the Aries message format.
16+
17+
* Added a new function `vcx_delete_credential` to delete credential from the wallet.
18+
19+
20+
* Changed behavior of `vcx_*_update_state_with_message` functions for Aries protocols handling.
21+
22+
In previous Libvcx versions was possible situation when
23+
1. VCX processed some message
24+
2. VCX automatically update message status on the Agency
25+
3. VCX return result to the app
26+
4. An application failed before storing new VCX object state.
27+
5. That makes the message unavailable anymore.
28+
29+
The behavior of `vcx_*_update_state_with_message` functions was changed to not update the status of messages on the Agency internally.
30+
Instead, the application using VCX should care about changing of message status using `vcx_messages_update_status` function.
31+
32+
* Bugfixes
33+

vcx/libvcx/debian/changelog

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ libvcx (0.9.0) unstable; urgency=medium
33
[ Hyperledger ]
44

55
## 0.9.0
6-
* Bugfixes
7-
* TODO
6+
* Added `protocol_type:4.0` implying that all inputs and outputs are expected to be in the Aries message format.
7+
* Added a new function `vcx_delete_credential` to delete credential from the wallet.
8+
* Changed behavior of `vcx_*_update_state_with_message` functions to not update the status of messages on the Agency. Instead, the application using VCX should care about changing of message status.
9+
* Bugfixes
810

911
## 0.8.0
1012
* Bugfixes

0 commit comments

Comments
 (0)