Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add invitation did for reuse connection #114

Closed
wants to merge 27 commits into from
Closed
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8777694
refactor: updated the RPC url (#77)
tipusinghaw Mar 14, 2024
ff7bcf5
fix:add out-of-band-record-id (#81)
pallavighule Mar 18, 2024
d8fa146
Create DMP_2024.yml (#83)
ajile-in Mar 19, 2024
1374790
feat: upgrade credo to 0.5.0 (#78)
sairanjit Mar 27, 2024
a50f8b1
feat: added messageType on the credo core
Apr 5, 2024
6626122
fix: agent authentication
GHkrishna Apr 10, 2024
7baffd4
fix: agent auth
GHkrishna Apr 10, 2024
6e45182
Merge pull request #87 from credebl/notification-patch
KulkarniShashank Apr 10, 2024
9dc7c41
Merge branch 'develop' of https://github.com/credebl/credo-controller…
GHkrishna Apr 10, 2024
b340e65
Merge pull request #88 from credebl/fix/agent-auth
GHkrishna Apr 10, 2024
153010e
fix: specify Node.js version 18.19.0 in engines
Apr 12, 2024
29dd8d0
Merge pull request #92 from credebl/node-version
KulkarniShashank Apr 12, 2024
542e4a0
fix: specify Node.js version 18.19.0 in yaml file
Apr 12, 2024
aa503cd
Merge pull request #93 from credebl/node-version
KulkarniShashank Apr 12, 2024
0962da3
Merge pull request #90 from credebl/develop
vivekayanworks Apr 12, 2024
0bb1cfc
refactor:add outOfBandId into issuance webhook event (#94)
pallavighule Apr 18, 2024
81e66a3
merge: develop to main (#98)
tipusinghaw Apr 22, 2024
f9b3d16
fix: specify Node.js version 18.19.0 in engines
Apr 12, 2024
c586c17
fix: specify Node.js version 18.19.0 in yaml file
Apr 12, 2024
5dc99ac
feat: migrated to amoy (#96)
tipusinghaw Apr 19, 2024
07de941
refactor: add the recipientKey in create invitation functionality
Apr 29, 2024
e4f0df6
refactor:add outOfBandId into issuance webhook event (#94)
pallavighule Apr 18, 2024
65b4ea9
Merge branch 'main' into develop-to-main-30-04-2024
sairanjit Apr 30, 2024
3e03c0b
Merge pull request #105 from credebl/develop-to-main-30-04-2024
tipusinghaw Apr 30, 2024
86c4fcf
Merge pull request #106 from credebl/develop
tipusinghaw Apr 30, 2024
b3ea36b
fix: process problem report
sairanjit May 8, 2024
fa12595
Merge branch 'main' into fix/process-problem-report
sairanjit May 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions patches/@credo-ts+core+0.5.3+002+fix-process-problem-report.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
diff --git a/node_modules/@credo-ts/core/build/modules/credentials/protocol/BaseCredentialProtocol.js b/node_modules/@credo-ts/core/build/modules/credentials/protocol/BaseCredentialProtocol.js
index 30dbb7a..5b1b54c 100644
--- a/node_modules/@credo-ts/core/build/modules/credentials/protocol/BaseCredentialProtocol.js
+++ b/node_modules/@credo-ts/core/build/modules/credentials/protocol/BaseCredentialProtocol.js
@@ -19,11 +19,9 @@ class BaseCredentialProtocol {
*/
async processProblemReport(messageContext) {
const { message: credentialProblemReportMessage, agentContext } = messageContext;
- const connection = messageContext.assertReadyConnection();
agentContext.config.logger.debug(`Processing problem report with message id ${credentialProblemReportMessage.id}`);
const credentialRecord = await this.getByProperties(agentContext, {
threadId: credentialProblemReportMessage.threadId,
- connectionId: connection.id,
});
// Update record
credentialRecord.errorMessage = `${credentialProblemReportMessage.description.code}: ${credentialProblemReportMessage.description.en}`;
diff --git a/node_modules/@credo-ts/core/build/modules/proofs/protocol/BaseProofProtocol.js b/node_modules/@credo-ts/core/build/modules/proofs/protocol/BaseProofProtocol.js
index 25d2948..cf9e315 100644
--- a/node_modules/@credo-ts/core/build/modules/proofs/protocol/BaseProofProtocol.js
+++ b/node_modules/@credo-ts/core/build/modules/proofs/protocol/BaseProofProtocol.js
@@ -8,11 +8,10 @@ const ProofState_1 = require("../models/ProofState");
const repository_1 = require("../repository");
class BaseProofProtocol {
async processProblemReport(messageContext) {
- const { message: proofProblemReportMessage, agentContext, connection } = messageContext;
+ const { message: proofProblemReportMessage, agentContext } = messageContext;
agentContext.config.logger.debug(`Processing problem report with message id ${proofProblemReportMessage.id}`);
const proofRecord = await this.getByProperties(agentContext, {
threadId: proofProblemReportMessage.threadId,
- connectionId: connection === null || connection === void 0 ? void 0 : connection.id,
});
// Update record
proofRecord.errorMessage = `${proofProblemReportMessage.description.code}: ${proofProblemReportMessage.description.en}`;
Loading