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

perf(pollux): Improve CredentialService's API ATL-3225 #372

Merged
merged 7 commits into from Feb 17, 2023

Conversation

FabioPinheiro
Copy link
Contributor

Overview

perf(pollux): Improve CredentialService's API ATL-3225

Checklist

My PR contains...

  • No code changes (changes to documentation, CI, metadata, etc.)
  • Bug fixes (non-breaking change which fixes an issue)
  • Improvements (misc. changes to existing features)
  • Features (non-breaking change which adds functionality)

My changes...

  • are breaking changes
  • are not breaking changes
  • If yes to above: I have updated the documentation accordingly

Documentation

  • My changes do not require a change to the project documentation
  • My changes require a change to the project documentation
  • If yes to above: I have updated the documentation accordingly

Tests

  • My changes can not or do not need to be tested
  • My changes can and should be tested by unit and/or integration tests
  • If yes to above: I have added tests to cover my changes
  • If yes to above: I have taken care to cover edge cases in my tests

@FabioPinheiro FabioPinheiro requested review from a team, atala-dev and essbante-io and removed request for a team February 14, 2023 15:46
@atala-dev
Copy link
Contributor

atala-dev commented Feb 14, 2023

🦙 MegaLinter status: ✅ SUCCESS

Descriptor Linter Files Fixed Errors
✅ REPOSITORY dustilock yes no
✅ REPOSITORY git_diff yes no
✅ REPOSITORY syft yes no

See detailed report in MegaLinter reports
Set VALIDATE_ALL_CODEBASE: true in mega-linter.yml to validate all sources, not only the diff

MegaLinter is graciously provided by OX Security

@github-actions
Copy link
Contributor

github-actions bot commented Feb 14, 2023

Pollux Lib Test Results

  7 files    7 suites   1m 7s ⏱️
84 tests 84 ✔️ 0 💤 0
85 runs  85 ✔️ 0 💤 0

Results for commit a113401.

♻️ This comment has been updated with latest results.

@@ -169,12 +169,16 @@ private class CredentialServiceImpl(
record <- credentialRepository
.getIssueCredentialRecord(record.id)
.mapError(RepositoryError.apply)
.flatMap {
case None => ZIO.fail(RecordIdNotFound(recordId))
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes look good - I understand you are removing the use of Option and switching to an error class which is a factory pattern - is this what's increasing performance? In previous projects, I saw the use of Option logically correct as it's not an error if a record doesn't exist [or rather, it's possible that this is a case and it may exist in the future or not at all], so we modelled it as a positive path and didn't use an error but mapped an Option of None to a 404 in the HTTP layer - does something similar happen here?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be considered an error IMO. This one is about telling your prism agent to accept a credential offer you are supposed to have received previously, while that offer doesn't exist in your system. Option is a good fit for methods returning a record based on a parameter which is not the primary key => typically findXXX() methods as opposed to getXXX() methods. Using Option as a return type forces you to handle it on the caller side while you can't really do something with it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like these changes. The business logic is more concise without Option[]

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@davidpoltorak-io But the E (error) is also a value. In reality we are even returning more information than before.

Interns of semantics you can not accept a offer acceptCredentialOffer if the offer does not exist.

The method getIssueCredentialRecord still returns you an Option because this is a possibility for the method. But yes I agree with you that need scala docs on the API interfaces.

Copy link
Contributor

@patlo-iog patlo-iog left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes look good. Suspect there are some conflicts with the recently merged pollux PR.

Copy link
Contributor

@bvoiturier bvoiturier left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

…entialService_API_ATL-3225' into pollux/improve_CredentialService_API_ATL-3225
@FabioPinheiro FabioPinheiro merged commit ad5602d into main Feb 17, 2023
@FabioPinheiro FabioPinheiro deleted the pollux/improve_CredentialService_API_ATL-3225 branch February 17, 2023 16:29
atala-dev added a commit that referenced this pull request Feb 17, 2023
# [pollux-v0.28.1](pollux-v0.28.0...pollux-v0.28.1) (2023-02-17)

### Performance Improvements

* **pollux:** Improve CredentialService's API ATL-3225 ([#372](#372)) ([ad5602d](ad5602d))
* **pollux:** Update to Mercury 0.19.0 ([#355](#355)) ([fb60ca8](fb60ca8))
FabioPinheiro added a commit that referenced this pull request Aug 17, 2023
…epo subject to the Developer Certificate of Origin (DCO), Version 1.1.

d8258ee feat: update anoncreds demo after the new getJson methods (#584)
5c5eb23 docs: update link on mercury mediator README (#567)
a9a8290 feat: new Anoncreds Demo (#562)
be7fe96 build: Replace io.d11:zhttp lib with dev.zio:zio-http (#504)
b128292 feat: expose API for default did:peer of prism agent (#509)
b07da78 feat: Reply to Trust Pings (#496)
421b5d1 build: use single sbt project on the top level (#490)
588b82e fix(mercury) Improve logs on MessagingService (#448)
ec107ad feat(prism-agent): allow published and unpublished DIDs in the issuingDID field (#454)
f52c5e0 feat(prism-agent): update pollux to 0.41.0; (#447)
8eaea61 Update roots-id-mediator (#439)
d477c68 feat(pollux): Add ignoreWithZeroRetries filter to SQL queries (#445)
5eef919 Update connect to 0.12.0 (#440)
af01359 feat(prism-agent): Add filter by thid to OpenAPI when fetching records (#436)
fb7f2d2 feat(connect): Use TIMESTAMP instead of BIGINT ATL-3786 (#431)
02fe4d8 fix(prism-agent): Fix for ATL-3624 (#430)
bbbc797 feat(pollux): Add method interface in PresentationService (#427)
bc7e783 fix(pollux): fix 56f7aab by exclude scala-java8-compat (#423)
9a62057 feat(pollux): Add method in PresentationService need for ATL-3624 (#422)
63cd430 fix(prism-agent): update pollux to 0.35.2 (#419)
2ece2c6 fix(pollux): Fix Instant encoder in JdbcPresentationRepository (#418)
20770c8 fix(prism-agent): update pollux to 0.35.1 (#414)
c02aba8 fix(pollux): Fix column meta_next_retry (#413)
59afe8c feat(prism-agent): update pollux from 0.33.0 to 0.35.0 (#410)
d724a02 feat(prism-agent): update libs: pollux 0.33.0; connect 0.11.0; mercury 0.20.0 (#403)
37dee86 feat(pollux): Add meta fields to presentation table (for retries) (#405)
c7efde6 feat(pollux): Add retries field for ATL-3205 (#380)
cc11479 feat(pollux): Replace UUID with String - ATL-3555 (#397)
b7f02ac fix(prism-agent): Update Mercury Connect Pollux (#382)
ad5602d perf(pollux): Improve CredentialService's API ATL-3225 (#372)
66f4ad7 perf(connect): Improve ConnectionService's API ATL-3218 (#370)
fb60ca8 perf(pollux): Update to Mercury 0.19.0 (#355)
326698b perf(connect): Update to Mercury 0.19.0 (#353)
a2d9c98 feat(mercury): Support for pleaseAck (needed for ATL-3222) (#366)
d87613c feat(mercury): ATL-3424 Expose HTTP status (#351)
64a7857 feat(prism-agent): Upgrade libs (#344)
8823325 perf(connect): Update to Mercury 0.17.0 (#346)
ebf583c feat(connect): Add method reportProcessingFailure (#345)
8e90c5f perf(pollux): Update to Mercury 0.17.0 (#347)
7cbcebc feat(connect): Add retries field for ATL-3202 (#335)
6d3b351 ci(connect): Add CI action for connect (#343)
3758232 feat(prism-agent): Upgrade mercury connect pollux (#340)
50b1a83 docs: Add RepositoriesRelationships.md (#311)
4c7516c feat(pollux): Dummy commit to make a release (2) (#338)
2168e13 feat(pollux): Dummy commit to make a release (#337)
82eca31 feat(mercury): Expose pthid on the connection protocol (#333)
633b17b build(pollux): upgrade mercury to 0.16.0 (#328)
f4b99fc feat(pollux): upgrade mercury to 0.16.0 (#327)
fe1c802 build(mercury-mediator): Update to Mercury 0.16.0 (#329)
e12ca22 feat(mercury): Split DidComm into DidAgent and DidOps (#319)
ea3d819 feat(mercury): Add extra method invitation2Connect (#309)
eb91f59 ci(mercury): re enable ci for mercury (#314)
27097cc doc(shared): Interdependencies.md (#299)
43014c5 fix(mercury): Add compilation flags and fix code (#302)
7055fcc refactor(mercury): Sort imports (#305)
e990a92 feat(mercury-mediator): Update to Mercury 0.12.0; Fix code (#257)
94c7895 feat(mercury): replace method buildBaseAttachment with buildBase64Attachment (#278)
4385440 feat(mercury): Improve support for ForwardMessage in MessagingService (#269)
88ad415 feat(mercury): Support a mediator in service uri field (#263)
33ed7ba feat(prism-agent): Update mercury to 0.12.0 & pollux to 0.10.0 & connect to 0.4.0 (#248)
7f511e0 feat(mercury): New Messaging Service with support for forward messaging (#244)
cabda08  feat(prism-agent): Integrate Verification Flow - ATL-2117 (#147)
ca8a638 feat(mercury): Make Message class and protocol-connection more robust (#235)
d4e2c57 feat(mercury): Message field 'to' must be an Array (#215)
efcccf5 build(connect): Update mercury to 0.10.0 (#210)
05d601a build(pollux): Update mercury to 0.10.0 (#209)
713e659 feat(pollux): remove issuanceDate to fix the main branch (#207)
1749e9d feat(mercury): clean unwanted dependencies (#206)
2c967f1 feat(pollux): Pollux part for the Verification Flow - ATL-2117 (#202)
28b083a feat(mercury): Update protocol-present-proof to v3 & add our extensions (#192)
e5d1810 feat(mercury): New DidValidator (#180)
3401e10 Update shared (lib) to 0.2.0 (#170)
80e034d chore(castor): Reverte file castor/lib/version.sbt (#169)
f3102e8 build(mercury): Fix build when sbt-scoverage is disabled (#139)
be6afb3 feat(mercury): Replace zhttp with zio-http (#137)
fcaaeda feat(mercury): Add plugin sbt-scoverage (#133)
6d377d8 feat(mercury): Simplify PeerDID (#132)
5a3e2fd feat(mercury): add utils methods on issue-credential-protocol (#131)
7f2434d build(mercury): New module agent-cli-didcommx (#125)
45a4b1d build(pollux, prism-agent): refine mercury dependency & bump to version 0.5.0 (#122)
43e2568 build(castor): Do not publish root and add GitHub token (#119)
57326d3 build(pollux): Fix build - Do not publish root & publish vcJWT (#118)
284455f build(pollux): Merge Pollux projects lib &` vc-jwt (#108)
5546190 feat(mercury): Use present-proof protocol in AgentCli (#112)
3fd370a feat(mercury): Bump Mercury version in Mediator (#110)
4158f8c build(pollux): Bump Mercury Version to 0.4.0 in Pollux (#107)
db4b21a feat(prism-agent; mercury; pollux): Integrate Mercury into prism-agent ATL-2077; ATL-2076 (#93)
c4068c6 feat(mercury): AgentCLI for Issue Credential ATL-1740 (#82)
1450c30 feat(mercury): Fix project mercury-mediator ATL-2030 (#84)
93f9e22 feat(mercury): Fix release ATL-2030 (#78)
e88ecd3 feat(mercury): Split Mercury projects (#73)
5be9c2c feat(mercury): New CLI Agent for mercury (#56)
43ad49a feat(mercury): New CI workflow for mercury and fixes (#57)
a3ee0d3 feat(mercury): Coordinate Mediation Protocol (#33)
fdad327 feat(mercury): Expose open api-spec for mediator (#38)
f6b5f77 feat(mercury): Jupyter docker workstation and notebooks (#32)
f5a3711 feat(mercury): Report Problem Protocol (#21)
f6af73f feat(mercury): New docker-compose with ROOTS-ID's mediator (#26)
93d2769 build(mercury): Update scala3-library to 3.2.0 (#20)
27fc9dc feat(mercury): Mercury Mailbox Mediator Demo (#16)
4e396f5 ci: Disable Mega-Linter CI  (#19)
9aacdbd doc(mercury): Add Mercury Mailbox Mediator OpenAPI Specs [ATL-1576]

Signed-off-by: FabioPinheiro <fabiomgpinheiro@gmail.com>
FabioPinheiro added a commit that referenced this pull request Aug 21, 2023
…epo subject to the Developer Certificate of Origin (DCO), Version 1.1.

d8258ee feat: update anoncreds demo after the new getJson methods (#584)
5c5eb23 docs: update link on mercury mediator README (#567)
a9a8290 feat: new Anoncreds Demo (#562)
be7fe96 build: Replace io.d11:zhttp lib with dev.zio:zio-http (#504)
b128292 feat: expose API for default did:peer of prism agent (#509)
b07da78 feat: Reply to Trust Pings (#496)
421b5d1 build: use single sbt project on the top level (#490)
588b82e fix(mercury) Improve logs on MessagingService (#448)
ec107ad feat(prism-agent): allow published and unpublished DIDs in the issuingDID field (#454)
f52c5e0 feat(prism-agent): update pollux to 0.41.0; (#447)
8eaea61 Update roots-id-mediator (#439)
d477c68 feat(pollux): Add ignoreWithZeroRetries filter to SQL queries (#445)
5eef919 Update connect to 0.12.0 (#440)
af01359 feat(prism-agent): Add filter by thid to OpenAPI when fetching records (#436)
fb7f2d2 feat(connect): Use TIMESTAMP instead of BIGINT ATL-3786 (#431)
02fe4d8 fix(prism-agent): Fix for ATL-3624 (#430)
bbbc797 feat(pollux): Add method interface in PresentationService (#427)
bc7e783 fix(pollux): fix 56f7aab by exclude scala-java8-compat (#423)
9a62057 feat(pollux): Add method in PresentationService need for ATL-3624 (#422)
63cd430 fix(prism-agent): update pollux to 0.35.2 (#419)
2ece2c6 fix(pollux): Fix Instant encoder in JdbcPresentationRepository (#418)
20770c8 fix(prism-agent): update pollux to 0.35.1 (#414)
c02aba8 fix(pollux): Fix column meta_next_retry (#413)
59afe8c feat(prism-agent): update pollux from 0.33.0 to 0.35.0 (#410)
d724a02 feat(prism-agent): update libs: pollux 0.33.0; connect 0.11.0; mercury 0.20.0 (#403)
37dee86 feat(pollux): Add meta fields to presentation table (for retries) (#405)
c7efde6 feat(pollux): Add retries field for ATL-3205 (#380)
cc11479 feat(pollux): Replace UUID with String - ATL-3555 (#397)
b7f02ac fix(prism-agent): Update Mercury Connect Pollux (#382)
ad5602d perf(pollux): Improve CredentialService's API ATL-3225 (#372)
66f4ad7 perf(connect): Improve ConnectionService's API ATL-3218 (#370)
fb60ca8 perf(pollux): Update to Mercury 0.19.0 (#355)
326698b perf(connect): Update to Mercury 0.19.0 (#353)
a2d9c98 feat(mercury): Support for pleaseAck (needed for ATL-3222) (#366)
d87613c feat(mercury): ATL-3424 Expose HTTP status (#351)
64a7857 feat(prism-agent): Upgrade libs (#344)
8823325 perf(connect): Update to Mercury 0.17.0 (#346)
ebf583c feat(connect): Add method reportProcessingFailure (#345)
8e90c5f perf(pollux): Update to Mercury 0.17.0 (#347)
7cbcebc feat(connect): Add retries field for ATL-3202 (#335)
6d3b351 ci(connect): Add CI action for connect (#343)
3758232 feat(prism-agent): Upgrade mercury connect pollux (#340)
50b1a83 docs: Add RepositoriesRelationships.md (#311)
4c7516c feat(pollux): Dummy commit to make a release (2) (#338)
2168e13 feat(pollux): Dummy commit to make a release (#337)
82eca31 feat(mercury): Expose pthid on the connection protocol (#333)
633b17b build(pollux): upgrade mercury to 0.16.0 (#328)
f4b99fc feat(pollux): upgrade mercury to 0.16.0 (#327)
fe1c802 build(mercury-mediator): Update to Mercury 0.16.0 (#329)
e12ca22 feat(mercury): Split DidComm into DidAgent and DidOps (#319)
ea3d819 feat(mercury): Add extra method invitation2Connect (#309)
eb91f59 ci(mercury): re enable ci for mercury (#314)
27097cc doc(shared): Interdependencies.md (#299)
43014c5 fix(mercury): Add compilation flags and fix code (#302)
7055fcc refactor(mercury): Sort imports (#305)
e990a92 feat(mercury-mediator): Update to Mercury 0.12.0; Fix code (#257)
94c7895 feat(mercury): replace method buildBaseAttachment with buildBase64Attachment (#278)
4385440 feat(mercury): Improve support for ForwardMessage in MessagingService (#269)
88ad415 feat(mercury): Support a mediator in service uri field (#263)
33ed7ba feat(prism-agent): Update mercury to 0.12.0 & pollux to 0.10.0 & connect to 0.4.0 (#248)
7f511e0 feat(mercury): New Messaging Service with support for forward messaging (#244)
cabda08  feat(prism-agent): Integrate Verification Flow - ATL-2117 (#147)
ca8a638 feat(mercury): Make Message class and protocol-connection more robust (#235)
d4e2c57 feat(mercury): Message field 'to' must be an Array (#215)
efcccf5 build(connect): Update mercury to 0.10.0 (#210)
05d601a build(pollux): Update mercury to 0.10.0 (#209)
713e659 feat(pollux): remove issuanceDate to fix the main branch (#207)
1749e9d feat(mercury): clean unwanted dependencies (#206)
2c967f1 feat(pollux): Pollux part for the Verification Flow - ATL-2117 (#202)
28b083a feat(mercury): Update protocol-present-proof to v3 & add our extensions (#192)
e5d1810 feat(mercury): New DidValidator (#180)
3401e10 Update shared (lib) to 0.2.0 (#170)
80e034d chore(castor): Reverte file castor/lib/version.sbt (#169)
f3102e8 build(mercury): Fix build when sbt-scoverage is disabled (#139)
be6afb3 feat(mercury): Replace zhttp with zio-http (#137)
fcaaeda feat(mercury): Add plugin sbt-scoverage (#133)
6d377d8 feat(mercury): Simplify PeerDID (#132)
5a3e2fd feat(mercury): add utils methods on issue-credential-protocol (#131)
7f2434d build(mercury): New module agent-cli-didcommx (#125)
45a4b1d build(pollux, prism-agent): refine mercury dependency & bump to version 0.5.0 (#122)
43e2568 build(castor): Do not publish root and add GitHub token (#119)
57326d3 build(pollux): Fix build - Do not publish root & publish vcJWT (#118)
284455f build(pollux): Merge Pollux projects lib &` vc-jwt (#108)
5546190 feat(mercury): Use present-proof protocol in AgentCli (#112)
3fd370a feat(mercury): Bump Mercury version in Mediator (#110)
4158f8c build(pollux): Bump Mercury Version to 0.4.0 in Pollux (#107)
db4b21a feat(prism-agent; mercury; pollux): Integrate Mercury into prism-agent ATL-2077; ATL-2076 (#93)
c4068c6 feat(mercury): AgentCLI for Issue Credential ATL-1740 (#82)
1450c30 feat(mercury): Fix project mercury-mediator ATL-2030 (#84)
93f9e22 feat(mercury): Fix release ATL-2030 (#78)
e88ecd3 feat(mercury): Split Mercury projects (#73)
5be9c2c feat(mercury): New CLI Agent for mercury (#56)
43ad49a feat(mercury): New CI workflow for mercury and fixes (#57)
a3ee0d3 feat(mercury): Coordinate Mediation Protocol (#33)
fdad327 feat(mercury): Expose open api-spec for mediator (#38)
f6b5f77 feat(mercury): Jupyter docker workstation and notebooks (#32)
f5a3711 feat(mercury): Report Problem Protocol (#21)
f6af73f feat(mercury): New docker-compose with ROOTS-ID's mediator (#26)
93d2769 build(mercury): Update scala3-library to 3.2.0 (#20)
27fc9dc feat(mercury): Mercury Mailbox Mediator Demo (#16)
4e396f5 ci: Disable Mega-Linter CI  (#19)
9aacdbd doc(mercury): Add Mercury Mailbox Mediator OpenAPI Specs [ATL-1576]

Signed-off-by: FabioPinheiro <fabiomgpinheiro@gmail.com>
antonbaliasnikov pushed a commit that referenced this pull request Aug 21, 2023
…epo subject to the Developer Certificate of Origin (DCO), Version 1.1.

d8258ee feat: update anoncreds demo after the new getJson methods (#584)
5c5eb23 docs: update link on mercury mediator README (#567)
a9a8290 feat: new Anoncreds Demo (#562)
be7fe96 build: Replace io.d11:zhttp lib with dev.zio:zio-http (#504)
b128292 feat: expose API for default did:peer of prism agent (#509)
b07da78 feat: Reply to Trust Pings (#496)
421b5d1 build: use single sbt project on the top level (#490)
588b82e fix(mercury) Improve logs on MessagingService (#448)
ec107ad feat(prism-agent): allow published and unpublished DIDs in the issuingDID field (#454)
f52c5e0 feat(prism-agent): update pollux to 0.41.0; (#447)
8eaea61 Update roots-id-mediator (#439)
d477c68 feat(pollux): Add ignoreWithZeroRetries filter to SQL queries (#445)
5eef919 Update connect to 0.12.0 (#440)
af01359 feat(prism-agent): Add filter by thid to OpenAPI when fetching records (#436)
fb7f2d2 feat(connect): Use TIMESTAMP instead of BIGINT ATL-3786 (#431)
02fe4d8 fix(prism-agent): Fix for ATL-3624 (#430)
bbbc797 feat(pollux): Add method interface in PresentationService (#427)
bc7e783 fix(pollux): fix 56f7aab by exclude scala-java8-compat (#423)
9a62057 feat(pollux): Add method in PresentationService need for ATL-3624 (#422)
63cd430 fix(prism-agent): update pollux to 0.35.2 (#419)
2ece2c6 fix(pollux): Fix Instant encoder in JdbcPresentationRepository (#418)
20770c8 fix(prism-agent): update pollux to 0.35.1 (#414)
c02aba8 fix(pollux): Fix column meta_next_retry (#413)
59afe8c feat(prism-agent): update pollux from 0.33.0 to 0.35.0 (#410)
d724a02 feat(prism-agent): update libs: pollux 0.33.0; connect 0.11.0; mercury 0.20.0 (#403)
37dee86 feat(pollux): Add meta fields to presentation table (for retries) (#405)
c7efde6 feat(pollux): Add retries field for ATL-3205 (#380)
cc11479 feat(pollux): Replace UUID with String - ATL-3555 (#397)
b7f02ac fix(prism-agent): Update Mercury Connect Pollux (#382)
ad5602d perf(pollux): Improve CredentialService's API ATL-3225 (#372)
66f4ad7 perf(connect): Improve ConnectionService's API ATL-3218 (#370)
fb60ca8 perf(pollux): Update to Mercury 0.19.0 (#355)
326698b perf(connect): Update to Mercury 0.19.0 (#353)
a2d9c98 feat(mercury): Support for pleaseAck (needed for ATL-3222) (#366)
d87613c feat(mercury): ATL-3424 Expose HTTP status (#351)
64a7857 feat(prism-agent): Upgrade libs (#344)
8823325 perf(connect): Update to Mercury 0.17.0 (#346)
ebf583c feat(connect): Add method reportProcessingFailure (#345)
8e90c5f perf(pollux): Update to Mercury 0.17.0 (#347)
7cbcebc feat(connect): Add retries field for ATL-3202 (#335)
6d3b351 ci(connect): Add CI action for connect (#343)
3758232 feat(prism-agent): Upgrade mercury connect pollux (#340)
50b1a83 docs: Add RepositoriesRelationships.md (#311)
4c7516c feat(pollux): Dummy commit to make a release (2) (#338)
2168e13 feat(pollux): Dummy commit to make a release (#337)
82eca31 feat(mercury): Expose pthid on the connection protocol (#333)
633b17b build(pollux): upgrade mercury to 0.16.0 (#328)
f4b99fc feat(pollux): upgrade mercury to 0.16.0 (#327)
fe1c802 build(mercury-mediator): Update to Mercury 0.16.0 (#329)
e12ca22 feat(mercury): Split DidComm into DidAgent and DidOps (#319)
ea3d819 feat(mercury): Add extra method invitation2Connect (#309)
eb91f59 ci(mercury): re enable ci for mercury (#314)
27097cc doc(shared): Interdependencies.md (#299)
43014c5 fix(mercury): Add compilation flags and fix code (#302)
7055fcc refactor(mercury): Sort imports (#305)
e990a92 feat(mercury-mediator): Update to Mercury 0.12.0; Fix code (#257)
94c7895 feat(mercury): replace method buildBaseAttachment with buildBase64Attachment (#278)
4385440 feat(mercury): Improve support for ForwardMessage in MessagingService (#269)
88ad415 feat(mercury): Support a mediator in service uri field (#263)
33ed7ba feat(prism-agent): Update mercury to 0.12.0 & pollux to 0.10.0 & connect to 0.4.0 (#248)
7f511e0 feat(mercury): New Messaging Service with support for forward messaging (#244)
cabda08  feat(prism-agent): Integrate Verification Flow - ATL-2117 (#147)
ca8a638 feat(mercury): Make Message class and protocol-connection more robust (#235)
d4e2c57 feat(mercury): Message field 'to' must be an Array (#215)
efcccf5 build(connect): Update mercury to 0.10.0 (#210)
05d601a build(pollux): Update mercury to 0.10.0 (#209)
713e659 feat(pollux): remove issuanceDate to fix the main branch (#207)
1749e9d feat(mercury): clean unwanted dependencies (#206)
2c967f1 feat(pollux): Pollux part for the Verification Flow - ATL-2117 (#202)
28b083a feat(mercury): Update protocol-present-proof to v3 & add our extensions (#192)
e5d1810 feat(mercury): New DidValidator (#180)
3401e10 Update shared (lib) to 0.2.0 (#170)
80e034d chore(castor): Reverte file castor/lib/version.sbt (#169)
f3102e8 build(mercury): Fix build when sbt-scoverage is disabled (#139)
be6afb3 feat(mercury): Replace zhttp with zio-http (#137)
fcaaeda feat(mercury): Add plugin sbt-scoverage (#133)
6d377d8 feat(mercury): Simplify PeerDID (#132)
5a3e2fd feat(mercury): add utils methods on issue-credential-protocol (#131)
7f2434d build(mercury): New module agent-cli-didcommx (#125)
45a4b1d build(pollux, prism-agent): refine mercury dependency & bump to version 0.5.0 (#122)
43e2568 build(castor): Do not publish root and add GitHub token (#119)
57326d3 build(pollux): Fix build - Do not publish root & publish vcJWT (#118)
284455f build(pollux): Merge Pollux projects lib &` vc-jwt (#108)
5546190 feat(mercury): Use present-proof protocol in AgentCli (#112)
3fd370a feat(mercury): Bump Mercury version in Mediator (#110)
4158f8c build(pollux): Bump Mercury Version to 0.4.0 in Pollux (#107)
db4b21a feat(prism-agent; mercury; pollux): Integrate Mercury into prism-agent ATL-2077; ATL-2076 (#93)
c4068c6 feat(mercury): AgentCLI for Issue Credential ATL-1740 (#82)
1450c30 feat(mercury): Fix project mercury-mediator ATL-2030 (#84)
93f9e22 feat(mercury): Fix release ATL-2030 (#78)
e88ecd3 feat(mercury): Split Mercury projects (#73)
5be9c2c feat(mercury): New CLI Agent for mercury (#56)
43ad49a feat(mercury): New CI workflow for mercury and fixes (#57)
a3ee0d3 feat(mercury): Coordinate Mediation Protocol (#33)
fdad327 feat(mercury): Expose open api-spec for mediator (#38)
f6b5f77 feat(mercury): Jupyter docker workstation and notebooks (#32)
f5a3711 feat(mercury): Report Problem Protocol (#21)
f6af73f feat(mercury): New docker-compose with ROOTS-ID's mediator (#26)
93d2769 build(mercury): Update scala3-library to 3.2.0 (#20)
27fc9dc feat(mercury): Mercury Mailbox Mediator Demo (#16)
4e396f5 ci: Disable Mega-Linter CI  (#19)
9aacdbd doc(mercury): Add Mercury Mailbox Mediator OpenAPI Specs [ATL-1576]

Signed-off-by: FabioPinheiro <fabiomgpinheiro@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants