diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b901db4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +VC Verifier Changelog +================= + + +WIP +--- +- tbd. + + +1.0.0 (2023-02-07) +--- + +- Supported did methods + - `did:key` + - `did:web` +- Verification of [W3C verifiable presentations and credentials](https://www.w3.org/TR/vc-data-model/) +- Revocations using [RevocationList2020](https://w3c-ccg.github.io/vc-status-rl-2020/) +- Fetching verifiable credentials by id for verification +- Querying of a [credential registry](https://w3c.github.io/did-spec-registries/#credentialregistry) by subject id for verification +- Rendering of product passports if credentials refer to `https://ssi.eecc.de/api/registry/context/productpassport` or an inheriting context +- Download of credentials as pdf or json +- Credential rendering as QR-Code +- Merging properties of the same subject id if overwritten \ No newline at end of file diff --git a/frontend/src/store/index.js b/frontend/src/store/index.js index b7d9272..bd11c73 100644 --- a/frontend/src/store/index.js +++ b/frontend/src/store/index.js @@ -3,7 +3,7 @@ import { createStore } from 'vuex' export default createStore({ state: { - version: '0.6.0', + version: '1.0.0', verifiables: [], VC_REGISTRY: process.env.VC_REGISTRY || 'https://ssi.eecc.de/api/registry/vcs/', showQRModal: false