-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update/main/dal
- Loading branch information
Showing
12 changed files
with
193 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
AGENT_VERSION=1.40.0 | ||
PRISM_NODE_VERSION=2.3.0 | ||
PRISM_NODE_VERSION=2.5.0 | ||
VAULT_DEV_ROOT_TOKEN_ID=root |
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,3 +1,3 @@ | ||
AGENT_VERSION=1.25.0 | ||
PRISM_NODE_VERSION=2.3.0 | ||
PRISM_NODE_VERSION=2.5.0 | ||
VAULT_DEV_ROOT_TOKEN_ID=root |
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
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
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
23 changes: 23 additions & 0 deletions
23
...ration-tests/src/test/resources/features/credential/anoncred/issuance-refactoring.feature
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,23 @@ | ||
@anoncred @issuance @refactoring | ||
Feature: Issue Anoncreds credential using different REST API request versions | ||
|
||
Background: | ||
Given Issuer and Holder have an existing connection | ||
And Issuer has a published DID for 'ANONCRED' | ||
And Issuer has an anoncred schema definition | ||
And Holder has an unpublished DID for 'ANONCRED' | ||
|
||
Scenario Outline: Issuing jwt credential using different API version | ||
When Issuer prepares the credential in 'ANONCREDS_V1' format using the '<createCredentialOfferApiVersion>' API | ||
And Issuer prepares to use a 'short' form of DID with key id 'assertion-1' | ||
And Issuer prepares the claims '<claims>' for the credential | ||
And Issuer sends the prepared anoncreds credential offer to Holder | ||
And Holder receives the credential offer | ||
And Holder accepts anoncred credential offer | ||
And Issuer issues the credential | ||
Then Holder receives the issued credential | ||
Examples: | ||
| createCredentialOfferApiVersion | claims | | ||
| V0 | ANONCREDS_STUDENT_CLAIMS | | ||
| V1 | ANONCREDS_STUDENT_CLAIMS | | ||
|