-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: DIDComm V2 messaging support (#1458)
Co-authored-by: Karim Stekelenburg <[email protected]> Co-authored-by: Ariel Gentile <[email protected]> Co-authored-by: Timo Glastra <[email protected]> Co-authored-by: Jim Ezesinachi <[email protected]> Co-authored-by: Ry Jones <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kim Ebert <[email protected]> Co-authored-by: Grammatopoulos Athanasios Vasileios <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Victor Anene <[email protected]> Co-authored-by: Jim Ezesinachi <[email protected]> Co-authored-by: KolbyRKunz <[email protected]> Co-authored-by: Berend Sliedrecht <[email protected]> Co-authored-by: Jason C. Leach <[email protected]> Co-authored-by: Martin Auer <[email protected]> Co-authored-by: Niall Shaw <[email protected]> Co-authored-by: Pritam Singh <[email protected]> Co-authored-by: Mo <[email protected]> Co-authored-by: NB-MikeRichardson <[email protected]> Co-authored-by: Amit-Padmani <[email protected]> Co-authored-by: DaevMithran <[email protected]> Co-authored-by: Alexander Shenshin <[email protected]> fix(openid4vc-client): set package to private (#1210) fix: fix typing issues with typescript 4.9 (#1214) Fixes #1205 resolver (#1247) fix: set updateAt on records when updating a record (#1272) fix(transport)!: added docs moved connection to connectionId (#1222) fix(indy-vdr): export relevant packages from root (#1291) fix(askar): generate nonce suitable for anoncreds (#1295) resolver and registrar for did:indy (#1253) fix: imports from core (#1303) fix: thread id improvements (#1311) fix: loosen base64 validation (#1312) fix(samples): dummy module response message type (#1321) fix: seed and private key validation and return type in registrars (#1324) fix!: don't emit legacy did:sov prefix for new protocols (#1245) fix(askar): anoncrypt messages unpacking (#1332) fix: expose indy pool configs and action menu messages (#1333) fix: create new socket if socket state is 'closing' (#1337) fix(anoncreds): include prover_did for legacy indy (#1342) fix(indy-sdk): import from core (#1346) fix(anoncreds-rs): save revocation registry index (#1351) fix: isNewSocket logic (#1355) fix(tenant): Correctly configure storage for multi tenant agents (#1359) Fixes hyperledger#1353 fix(anoncreds): Buffer not imported from core (#1367) fix(core): repository event when calling deleteById (#1356) fix(askar): custom error handling (#1372) fix: return HTTP 415 if unsupported content type (#1313) fix: remove named capture groups (#1378) fix example usage of indy-sdk-react-native package (#1382) fix: connection id in sessions for new connections (#1383) fix: did cache key not being set correctly (#1394) fix: incorrect type for anoncreds registration (#1396) fix: reference to indyLedgers in IndyXXXNotConfiguredError (#1397) fix: add reflect-metadata (#1409) fix: various anoncreds revocation fixes (#1416) fix: jsonld credential format identifier version (#1412) fix: remove `deleteOnFinish` and added documentation (#1418) fix(askar): default key derivation method (#1420) fix(anoncreds): make revocation status list inline with the spec (#1421) fix(anoncreds-rs): revocation status list as JSON (#1422) fix: issuance with unqualified identifiers (#1431) fix(connections): store imageUrl when using DIDExchange (#1433) fix(indy-vdr): do not force indy-vdr version (#1434) fix: small issues with migration and WAL files (#1443) fix: migration of link secret (#1444) fix: Emit RoutingCreated event for mediator routing record (#1445) fix: small updates to cheqd module and demo (#1439) fix: remove scope check from response (#1450)
- Loading branch information
Showing
1,041 changed files
with
60,884 additions
and
29,488 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# arm + amd compatible Dockerfile | ||
FROM ghcr.io/findy-network/findy-base:indy-1.16.ubuntu-18.04 AS indy-base | ||
|
||
FROM ubuntu:18.04 | ||
|
||
# install indy deps and files from base | ||
RUN apt-get update && apt-get install -y libsodium23 libssl1.1 libzmq5 git zsh | ||
|
||
COPY --from=indy-base /usr/include/indy /usr/include/indy | ||
COPY --from=indy-base /usr/lib/libindy.a /usr/lib/libindy.a | ||
COPY --from=indy-base /usr/lib/libindy.so /usr/lib/libindy.so | ||
|
||
RUN apt-get install -y curl python3 build-essential ca-certificates && \ | ||
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash && \ | ||
export NVM_DIR="$HOME/.nvm" && \ | ||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && \ | ||
nvm install v16 && \ | ||
npm install yarn -g |
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,7 @@ | ||
# | ||
# Any environment variables that the container needs | ||
# go in here. | ||
# | ||
# Example(s) | ||
# GENESIS_TXN_PATH=/work/network/genesis/local-genesis.txn | ||
# |
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,8 @@ | ||
{ | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"runArgs": ["--env-file", ".devcontainer/devcontainer.env"], | ||
"workspaceMount": "source=${localWorkspaceFolder},target=/work,type=bind", | ||
"workspaceFolder": "/work" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Setup cheqd | ||
description: Setup a cheqd network to perform tests | ||
author: '[email protected]' | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Start cheqd localnet | ||
run: docker run --rm -d -p 26657:26657 ghcr.io/cheqd/cheqd-testnet:latest | ||
shell: bash | ||
|
||
branding: | ||
icon: scissors | ||
color: purple |
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 was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
FROM ubuntu:18.04 as base | ||
FROM ubuntu:20.04 as base | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
|
Oops, something went wrong.