Skip to content

Commit 29a4853

Browse files
authored
Merge pull request #1065 from anikitinDSR/1.6.79-rc
1.6.79 rc
2 parents 2a8f2ab + c0949cb commit 29a4853

File tree

401 files changed

+9113
-28060
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

401 files changed

+9113
-28060
lines changed

Diff for: CHANGELOG.md

+826
Large diffs are not rendered by default.

Diff for: Jenkinsfile.cd

+1-24
Original file line numberDiff line numberDiff line change
@@ -27,29 +27,6 @@ def nodeTestUbuntu = {
2727
}
2828
}
2929

30-
def clientTestUbuntu = {
31-
try {
32-
echo 'Ubuntu Test: Checkout csm'
33-
checkout scm
34-
35-
echo 'Ubuntu Test: Build docker image'
36-
def testEnv = dockerHelpers.build(name)
37-
38-
testEnv.inside('--network host') {
39-
echo 'Ubuntu Test: Install dependencies'
40-
testHelpers.install()
41-
42-
echo 'Ubuntu Test: Test'
43-
testHelpers.testRunner([resFile: "test-result-client.${NODE_NAME}.txt", testDir: 'indy_client'])
44-
//testHelpers.testJUnit(resFile: "test-result-client.${NODE_NAME}.xml")
45-
}
46-
}
47-
finally {
48-
echo 'Ubuntu Test: Cleanup'
49-
step([$class: 'WsCleanup'])
50-
}
51-
}
52-
5330
def commonTestUbuntu = {
5431
try {
5532
echo 'Ubuntu Test: Checkout csm'
@@ -91,4 +68,4 @@ options = new TestAndPublishOptions()
9168
options.enable([StagesEnum.PACK_RELEASE_COPY, StagesEnum.PACK_RELEASE_COPY_ST])
9269
options.setCopyWithDeps(true)
9370
options.setPrContexts([env.INDY_GITHUB_PR_REQUIRED_CONTEXT ?: "ci/hyperledger-jenkins/pr-merge"])
94-
testAndPublish(name, [ubuntu: [node: nodeTestUbuntu, client: clientTestUbuntu, common: commonTestUbuntu]], true, options, [ubuntu: buildDebUbuntu])
71+
testAndPublish(name, [ubuntu: [node: nodeTestUbuntu, common: commonTestUbuntu]], true, options, [ubuntu: buildDebUbuntu])

Diff for: Jenkinsfile.ci

-8
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,6 @@ def tests = [
142142
python: python
143143
)
144144
},
145-
client: { python ->
146-
test(
147-
resFile: "test-result-client.${NODE_NAME}.txt",
148-
testDir: 'indy_client',
149-
python: python,
150-
useRunner: true
151-
)
152-
},
153145
node: { python ->
154146
test(
155147
resFile: "test-result-node.${NODE_NAME}.txt",

Diff for: README.md

+2-13
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,10 @@ Indy Node repo consists of the following parts:
6969
So, if you want to work with Indy Node, you will need to have the Plenum code as well in most of the cases
7070
and work with two projects at the same time
7171
(see [How to Start Working with the Code](#how-to-start-working-with-the-code) below).
72-
- [indy-anoncreds](https://github.com/hyperledger/indy-anoncreds)
73-
- A python implementation of the anonymous credentials ideas developed by IBM Research.
74-
- This is quite independent from indy-node/plenum. So, in most cases you don't need this code to contribute to Indy-Node.
75-
- It will be deprecated soon in favor of anoncreds implementation in indy-sdk (see below).
7672
- [indy-sdk](https://github.com/hyperledger/indy-sdk)
7773
- An official SDK for Indy.
7874
- it contains client and anoncreds implementation
7975
- You don't need it to contribute to Indy-Node. But please use indy-sdk for your own applications dealing with Indy ecosystem.
80-
- It will replace indy-client and indy-anoncreds parsts soon.
8176
- [indy-crypto](https://github.com/hyperledger/indy-crypto)
8277
- A shared crypto library
8378
- It's based on [AMCL](https://github.com/milagro-crypto/amcl)
@@ -119,14 +114,6 @@ The described process is automated in one of the ways below (it allow to install
119114
Please have a look at [Dev Setup](docs/setup-dev.md)
120115

121116

122-
## How to Start Indy Client CLI
123-
Once installed, you can play with the command-line interface by running Indy from a terminal.
124-
125-
Note: For Windows, we recommended using either [cmder](http://cmder.net/) or [conemu](https://conemu.github.io/).
126-
```
127-
indy
128-
```
129-
130117
## Continuous Integration and Delivery
131118

132119
Please have a look at [Continuous integration/delivery](docs/ci-cd.md)
@@ -167,10 +154,12 @@ If you made changes in both indy-plenum and indy-node, you need to do the follow
167154
- Please have a look at documents and diagrams in [docs](docs) folder
168155
- Please have a look at documents and diagrams in Plenum's [docs](https://github.com/hyperledger/indy-plenum/tree/master/docs) folder:
169156
- [Technical Overview of Plenum](https://github.com/hyperledger/indy-plenum/blob/master/docs/main.md)
157+
- [Plenum Consensus Algorithm Diagram](https://github.com/hyperledger/indy-plenum/blob/master/docs/diagrams/consensus-protocol.png)
170158
- [Glossary](https://github.com/hyperledger/indy-plenum/blob/master/docs/glossary.md)
171159
- [Storages](https://github.com/hyperledger/indy-plenum/blob/master/docs/storage.md)
172160
- [Request Handling](https://github.com/hyperledger/indy-plenum/blob/master/docs/request_handling.md)
173161
- [Catchup](https://github.com/hyperledger/indy-plenum/blob/master/docs/catchup.md)
162+
- [Catchup Diagram](https://github.com/hyperledger/indy-plenum/blob/master/docs/diagrams/catchup-procedure.png)
174163
- [Plugins](https://github.com/hyperledger/indy-plenum/blob/master/docs/plugins.md)
175164
- Relationship between Entities and Transactions: [relationship diagram](docs/relationship-diagram.png)
176165
- Supported transactions and their format: [transactions](docs/transactions.md)
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,71 @@
11
- pool create AS-pool gen_txn_file=./pool_transactions_genesis
2-
Pool config "AS-pool" has been created
2+
Pool config "AS-pool" has been created
33

44
pool connect AS-pool
5-
Pool "AS-pool" has been connected
5+
Pool "AS-pool" has been connected
66

77
wallet create AS-01-wallet-1 key=testkey storage_config={"pool":"AS-pool"}
8-
Wallet "AS-01-wallet-1" has been created
8+
Wallet "AS-01-wallet-1" has been created
99

1010
wallet open AS-01-wallet-1 key=testkey
11-
Wallet "AS-01-wallet-1" has been opened
11+
Wallet "AS-01-wallet-1" has been opened
1212

1313
did new seed=000000000000000000000000Trustee1 metadata="default trustee"
14-
Did "V4SGRU86Z58d6TV7PBUe6f" has been created with "~CoRER63DVYnWZtK8uAzNbx" verkey
15-
Metadata has been saved for DID "V4SGRU86Z58d6TV7PBUe6f"
14+
Did "V4SGRU86Z58d6TV7PBUe6f" has been created with "~CoRER63DVYnWZtK8uAzNbx" verkey
15+
Metadata has been saved for DID "V4SGRU86Z58d6TV7PBUe6f"
1616

1717
did new seed=000000000000000000000NewSteward1 metadata="new steward"
18-
Did "5Ur5boqV3EXobXhtfow83q" has been created with "~WWyzovtLNpZW8iAfu9qSN5" verkey
19-
Metadata has been saved for DID "5Ur5boqV3EXobXhtfow83q"
18+
Did "5Ur5boqV3EXobXhtfow83q" has been created with "~WWyzovtLNpZW8iAfu9qSN5" verkey
19+
Metadata has been saved for DID "5Ur5boqV3EXobXhtfow83q"
2020

2121
did use V4SGRU86Z58d6TV7PBUe6f
22-
Did "V4SGRU86Z58d6TV7PBUe6f" has been set as active
22+
Did "V4SGRU86Z58d6TV7PBUe6f" has been set as active
2323

2424
ledger nym did=5Ur5boqV3EXobXhtfow83q verkey=~WWyzovtLNpZW8iAfu9qSN5 role=STEWARD
25-
Nym request has been sent to Ledger.
26-
Metadata:
25+
Nym request has been sent to Ledger.
26+
Metadata:
2727
+---------------------+---------------------+
2828
| Request ID | Transaction time |
2929
+---------------------+---------------------+
3030
| 1527781962070712451 | 2018-05-31 15:52:42 |
3131
+---------------------+---------------------+
32-
Data:
32+
Data:
3333
+------------------------+-------------------------+---------+
3434
| Did | Verkey | Role |
3535
+------------------------+-------------------------+---------+
3636
| 5Ur5boqV3EXobXhtfow83q | ~WWyzovtLNpZW8iAfu9qSN5 | STEWARD |
3737
+------------------------+-------------------------+---------+
3838

3939
did use 5Ur5boqV3EXobXhtfow83q
40-
Did "5Ur5boqV3EXobXhtfow83q" has been set as active
40+
Did "5Ur5boqV3EXobXhtfow83q" has been set as active
4141

4242
did rotate-key
43-
Verkey for did "5Ur5boqV3EXobXhtfow83q" has been updated. New verkey: "J1WyzFAvS4DUoGGf6eo9sX1iXJ7jayeX677Nh3VAwVRk"
43+
Verkey for did "5Ur5boqV3EXobXhtfow83q" has been updated. New verkey: "J1WyzFAvS4DUoGGf6eo9sX1iXJ7jayeX677Nh3VAwVRk"
4444

4545
ledger nym did=NyLkggDnCtZY6ngkfNqzg2 verkey=~LTar8Y3uzcQEt3HdhgqtSz
46-
Nym request has been sent to Ledger.
47-
Metadata:
46+
Nym request has been sent to Ledger.
47+
Metadata:
4848
+---------------------+---------------------+
4949
| Request ID | Transaction time |
5050
+---------------------+---------------------+
5151
| 1527781962599906305 | 2018-05-31 15:52:42 |
5252
+---------------------+---------------------+
53-
Data:
53+
Data:
5454
+------------------------+-------------------------+------+
5555
| Did | Verkey | Role |
5656
+------------------------+-------------------------+------+
5757
| NyLkggDnCtZY6ngkfNqzg2 | ~LTar8Y3uzcQEt3HdhgqtSz | - |
5858
+------------------------+-------------------------+------+
5959

6060
- ledger get-nym did=NyLkggDnCtZY6ngkfNqzg2
61-
Following NYM has been received.
62-
Metadata:
61+
Following NYM has been received.
62+
Metadata:
6363
+-----------------+---------------------+---------------------+
6464
| Sequence Number | Request ID | Transaction time |
6565
+-----------------+---------------------+---------------------+
6666
| 1526 | 1527781962844903608 | 2018-05-31 15:52:42 |
6767
+-----------------+---------------------+---------------------+
68-
Data:
68+
Data:
6969
+------------------------+------------------------+-------------------------+------+
7070
| Identifier | Dest | Verkey | Role |
7171
+------------------------+------------------------+-------------------------+------+
@@ -80,60 +80,60 @@ did list
8080
+------------------------+----------------------------------------------+-----------------+
8181
| 5Ur5boqV3EXobXhtfow83q | J1WyzFAvS4DUoGGf6eo9sX1iXJ7jayeX677Nh3VAwVRk | new steward |
8282
+------------------------+----------------------------------------------+-----------------+
83-
Current did "5Ur5boqV3EXobXhtfow83q"
83+
Current did "5Ur5boqV3EXobXhtfow83q"
8484

8585
wallet create AS-01-identity-wallet key=testkey storage_config={"pool":"AS-pool"}
86-
Wallet "AS-01-identity-wallet" has been created
86+
Wallet "AS-01-identity-wallet" has been created
8787

8888
wallet open AS-01-identity-wallet key=testkey
89-
Wallet "AS-01-wallet-1" has been closed
90-
Wallet "AS-01-identity-wallet" has been opened
89+
Wallet "AS-01-wallet-1" has been closed
90+
Wallet "AS-01-identity-wallet" has been opened
9191

9292
did new seed=00000000000000000000000Identity1 metadata="new identity"
93-
Did "NyLkggDnCtZY6ngkfNqzg2" has been created with "~LTar8Y3uzcQEt3HdhgqtSz" verkey
94-
Metadata has been saved for DID "NyLkggDnCtZY6ngkfNqzg2"
93+
Did "NyLkggDnCtZY6ngkfNqzg2" has been created with "~LTar8Y3uzcQEt3HdhgqtSz" verkey
94+
Metadata has been saved for DID "NyLkggDnCtZY6ngkfNqzg2"
9595

9696
did use NyLkggDnCtZY6ngkfNqzg2
97-
Did "NyLkggDnCtZY6ngkfNqzg2" has been set as active
97+
Did "NyLkggDnCtZY6ngkfNqzg2" has been set as active
9898

9999
- ledger get-nym did=NyLkggDnCtZY6ngkfNqzg2
100-
Following NYM has been received.
101-
Metadata:
100+
Following NYM has been received.
101+
Metadata:
102102
+-----------------+---------------------+---------------------+
103103
| Sequence Number | Request ID | Transaction time |
104104
+-----------------+---------------------+---------------------+
105105
| 1526 | 1527781964929492594 | 2018-05-31 15:52:42 |
106106
+-----------------+---------------------+---------------------+
107-
Data:
107+
Data:
108108
+------------------------+------------------------+-------------------------+------+
109109
| Identifier | Dest | Verkey | Role |
110110
+------------------------+------------------------+-------------------------+------+
111111
| 5Ur5boqV3EXobXhtfow83q | NyLkggDnCtZY6ngkfNqzg2 | ~LTar8Y3uzcQEt3HdhgqtSz | - |
112112
+------------------------+------------------------+-------------------------+------+
113113

114114
did rotate-key
115-
Verkey for did "NyLkggDnCtZY6ngkfNqzg2" has been updated. New verkey: "5TKaMf8EXoad6tLMptGNuh4563Vg9znFnBJ1iZH7zDJu"
115+
Verkey for did "NyLkggDnCtZY6ngkfNqzg2" has been updated. New verkey: "5TKaMf8EXoad6tLMptGNuh4563Vg9znFnBJ1iZH7zDJu"
116116

117117
- ledger get-nym did=NyLkggDnCtZY6ngkfNqzg2
118-
Following NYM has been received.
119-
Metadata:
118+
Following NYM has been received.
119+
Metadata:
120120
+-----------------+---------------------+---------------------+
121121
| Sequence Number | Request ID | Transaction time |
122122
+-----------------+---------------------+---------------------+
123123
| 1527 | 1527781965229610522 | 2018-05-31 15:52:45 |
124124
+-----------------+---------------------+---------------------+
125-
Data:
125+
Data:
126126
+------------------------+------------------------+----------------------------------------------+------+
127127
| Identifier | Dest | Verkey | Role |
128128
+------------------------+------------------------+----------------------------------------------+------+
129129
| 5Ur5boqV3EXobXhtfow83q | NyLkggDnCtZY6ngkfNqzg2 | 5TKaMf8EXoad6tLMptGNuh4563Vg9znFnBJ1iZH7zDJu | - |
130130
+------------------------+------------------------+----------------------------------------------+------+
131131

132132
wallet close
133-
Wallet "AS-01-identity-wallet" has been closed
133+
Wallet "AS-01-identity-wallet" has been closed
134134

135135
pool disconnect
136-
Pool "AS-pool" has been disconnected
136+
Pool "AS-pool" has been disconnected
137137

138138
wallet list
139139
+-----------------------+----------------------+---------+
@@ -151,4 +151,4 @@ pool list
151151
| AS-pool |
152152
+---------+
153153

154-
Goodbye...
154+
Goodbye...

0 commit comments

Comments
 (0)