diff --git a/CHANGELOG.md b/CHANGELOG.md index ab64d45..5db1a19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # w3c/vc-di-bbs-test-suite ChangeLog +## 1.1.0 - 2023-12-14 -## 1.0.0 - 2023-12-dd +### Changed +- Updated `vc-api-test-suite-implementations` package name to + `vc-test-suite-implementations`. + +## 1.0.0 - 2023-12-11 - See git history for changes. diff --git a/README.md b/README.md index 15179d3..b823ed2 100644 --- a/README.md +++ b/README.md @@ -55,14 +55,12 @@ A simplified manifest would look like this: "issuers": [{ "id": "", "endpoint": "https://mycompany.example/credentials/issue", - "method": "POST", "supportedEcdsaKeyTypes": ["P-256"] "tags": ["bbs-2023"] }], "verifiers": [{ "id": "", "endpoint": "https://mycompany.example/credentials/verify", - "method": "POST", "supportedEcdsaKeyTypes": ["P-256", "P-384"] "tags": ["bbs-2023"] }] @@ -71,12 +69,12 @@ A simplified manifest would look like this: The example above represents an unauthenticated endpoint. You may add ZCAP or OAuth2 authentication to your endpoints. You can find an example in the -[vc-api-test-suite-implementations README](https://github.com/w3c-ccg/vc-api-test-suite-implementations#adding-a-new-implementation). +[vc-test-suite-implementations README](https://github.com/w3c-ccg/vc-test-suite-implementations#adding-a-new-implementation). To run the tests, some implementations may require client secrets that can be passed as environment variables to the test script. To see which implementations require client secrets, please check the implementation manifest within the -[vc-api-test-suite-implementations](https://github.com/w3c-ccg/vc-api-test-suite-implementations/tree/main/implementations) library. +[vc-test-suite-implementations](https://github.com/w3c-ccg/vc-test-suite-implementations/tree/main/implementations) library. ### Docker Integration (TODO) diff --git a/package.json b/package.json index 2bdc8f3..b9d7d05 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "mocha": "^10.2.0", "uuid": "^9.0.0", "varint": "^6.0.0", - "vc-api-test-suite-implementations": "github:w3c-ccg/vc-api-test-suite-implementations" + "vc-test-suite-implementations": "github:w3c-ccg/vc-test-suite-implementations" }, "devDependencies": { "eslint": "^8.52.0", diff --git a/tests/10-bbs-create.js b/tests/10-bbs-create.js index ae338e1..a99cff4 100644 --- a/tests/10-bbs-create.js +++ b/tests/10-bbs-create.js @@ -10,7 +10,7 @@ import { checkDataIntegrityProofFormat } from 'data-integrity-test-suite-assertion'; import {documentLoader} from './documentLoader.js'; -import {endpoints} from 'vc-api-test-suite-implementations'; +import {endpoints} from 'vc-test-suite-implementations'; import {validVc as vc} from './mock-data.js'; const tag = 'bbs-2023'; diff --git a/tests/20-bbs-verify.js b/tests/20-bbs-verify.js index 704a69e..2636400 100644 --- a/tests/20-bbs-verify.js +++ b/tests/20-bbs-verify.js @@ -8,7 +8,7 @@ import {verificationFail, verificationSuccess} from './assertions.js'; import { checkDataIntegrityProofVerifyErrors } from 'data-integrity-test-suite-assertion'; -import {endpoints} from 'vc-api-test-suite-implementations'; +import {endpoints} from 'vc-test-suite-implementations'; import {klona} from 'klona'; const tag = 'bbs-2023'; diff --git a/tests/30-bbs-interop.js b/tests/30-bbs-interop.js index 42cdd80..208c77c 100644 --- a/tests/30-bbs-interop.js +++ b/tests/30-bbs-interop.js @@ -2,7 +2,7 @@ * Copyright (c) 2023 Digital Bazaar, Inc. All rights reserved. */ import {createDisclosedVc, createInitialVc} from './helpers.js'; -import {endpoints} from 'vc-api-test-suite-implementations'; +import {endpoints} from 'vc-test-suite-implementations'; import {validVc as vc} from './mock-data.js'; import {verificationSuccess} from './assertions.js';