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(connect): ATL-6599 Use ZIO Failures and Defects effectively + RFC-9457 in connect #927

Conversation

bvoiturier
Copy link
Contributor

@bvoiturier bvoiturier commented Mar 15, 2024

Description:

ATL-6599 Implement the following error-handling ADRs for Connect:

Checklist:

  • My PR follows the contribution guidelines of this project
  • My PR is free of third-party dependencies that don't comply with the Allowlist
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • I have added tests that prove my fix is effective or that my feature works
  • I have checked the PR title to follow the conventional commit specification

…s we consider them unrecoverable by default

Signed-off-by: Benjamin Voiturier <[email protected]>
Signed-off-by: Benjamin Voiturier <[email protected]>
Signed-off-by: Benjamin Voiturier <[email protected]>
…the connection service methods

Signed-off-by: Benjamin Voiturier <[email protected]>
Signed-off-by: Benjamin Voiturier <[email protected]>
… with a random UUID

Signed-off-by: Benjamin Voiturier <[email protected]>
Copy link
Contributor

github-actions bot commented Mar 15, 2024

Unit Test Results

 90 files  ±0   90 suites  ±0   20m 32s ⏱️ + 1m 14s
776 tests ±0  768 ✅ ±0  8 💤 ±0  0 ❌ ±0 
783 runs  ±0  775 ✅ ±0  8 💤 ±0  0 ❌ ±0 

Results for commit f8e56e0. ± Comparison against base commit 9a38cc9.

♻️ This comment has been updated with latest results.

@bvoiturier bvoiturier changed the title Feat/atl 6599 use zio failures and defects effectively in connect feat(connect): ATL-6599 Use ZIO Failures and Defects effectively + RFC-9457 in connect Mar 15, 2024
…ng failures, and rejections - in a consistent way

Signed-off-by: Benjamin Voiturier <[email protected]>
…e to controller ErrorResponse

Signed-off-by: Benjamin Voiturier <[email protected]>
…es a server error. Log other defects at debug level.

Signed-off-by: Benjamin Voiturier <[email protected]>
Signed-off-by: Benjamin Voiturier <[email protected]>
@shotexa
Copy link
Contributor

shotexa commented Mar 26, 2024

While I was working on Revocation PR, I've added 2 endpoints, and I wanted to hide 500 error messages just like you did it in this PR, and log them as well, here and here. Now since you've made this functionality work for every URL, please remove this .logError and .mapError calls from this endpoints 🙏 @bvoiturier

Copy link

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@bvoiturier
Copy link
Contributor Author

While I was working on Revocation PR, I've added 2 endpoints, and I wanted to hide 500 error messages just like you did it in this PR, and log them as well, here and here. Now since you've made this functionality work for every URL, please remove this .logError and .mapError calls from this endpoints 🙏 @bvoiturier

This won't actually work, @shotexa. The logic in this PR will only filter out unmanaged errors (ZIO defects) propagating through the call stack as exceptions and not the managed errors (ZIO failures) propagating via the effect's error channel.

The rule is not to type unexpected errors and let them propagate through the call stack as exceptions until they are caught "at the end of the world" and logged/obfuscated appropriately. Any managed error bubbling up to the top level via the error channel will be mapped to an ErrorResponse and reported "as is" to the user.

In your case, the code should be refactored to properly segregate managed failures and unmanaged defects. This should be done when the error-handling ADRs are applied to this part of the codebase...

@shotexa
Copy link
Contributor

shotexa commented Mar 27, 2024

While I was working on Revocation PR, I've added 2 endpoints, and I wanted to hide 500 error messages just like you did it in this PR, and log them as well, here and here. Now since you've made this functionality work for every URL, please remove this .logError and .mapError calls from this endpoints 🙏 @bvoiturier

This won't actually work, @shotexa. The logic in this PR will only filter out unmanaged errors (ZIO defects) propagating through the call stack as exceptions and not the managed errors (ZIO failures) propagating via the effect's error channel.

The rule is not to type unexpected errors and let them propagate through the call stack as exceptions until they are caught "at the end of the world" and logged/obfuscated appropriately. Any managed error bubbling up to the top level via the error channel will be mapped to an ErrorResponse and reported "as is" to the user.

In your case, the code should be refactored to properly segregate managed failures and unmanaged defects. This should be done when the error-handling ADRs are applied to this part of the codebase...

So, just so I can understand it correctly. Currently if in any endpoint, error is thrown in repository layer user will receive the message similar to "could not find column bla bla bla", but we plan to hide this in one of the upcoming PR related to error handling?

@bvoiturier
Copy link
Contributor Author

bvoiturier commented Mar 27, 2024

So, just so I can understand it correctly. Currently if in any endpoint, error is thrown in repository layer user will receive the message similar to "could not find column bla bla bla", but we plan to hide this in one of the upcoming PR related to error handling?

No. Actually, the present PR ensures that any thrown exception that is not caught, and therefore propagated through the call stack up to the "end of the world" (i.e. application entry point), will be reported to the user as a 500 - Internal Server Error without further details (no sensitive data leaked).

At the same time, the error response will contain a unique instance-id visible by the user and will be logged in the server console with the related stack trace, if any.

The thing is, in your code, the 500 errors are not exceptions but rather ZIO failures appearing in the effect's error channel. So I propose to fix this as part of the "error-handling in status list" refactoring effort.

@shotexa
Copy link
Contributor

shotexa commented Mar 27, 2024

So, just so I can understand it correctly. Currently if in any endpoint, error is thrown in repository layer user will receive the message similar to "could not find column bla bla bla", but we plan to hide this in one of the upcoming PR related to error handling?

No. Actually, the present PR ensures that any thrown exception that is not caught, and therefore propagated through the call stack up to the "end of the world" (i.e. application entry point), will be reported to the user as a 500 - Internal Server Error without further details (no sensitive data leaked).

At the same time, the error response will contain a unique instance-id visible by the user and will be logged in the server console with the related stack trace, if any.

The thing is, in your code, the 500 errors are not exceptions but rather ZIO failures appearing in the effect's error channel. So I propose to fix this as part of the "error-handling in status list" refactoring effort.

What refactoring would be needed other than removing these extra .logError and .mapError calls? I mean since we are not catching errors in the repository layer now, any error (defect) happening there will already be returned as 500 error to the user, right? so this kind of errors won't land in the effects error channel anyway. I've added these lines just so I can filter errors coming from the repository layer, but since they are handled already, this extra lines serve no purpose. I might not be seeing something here tho.

@bvoiturier
Copy link
Contributor Author

What refactoring would be needed other than removing these extra .logError and .mapError calls? I mean since we are not catching errors in the repository layer now, any error (defect) happening there will already be returned as 500 error to the user, right? so this kind of errors won't land in the effects error channel anyway. I've added these lines just so I can filter errors coming from the repository layer, but since they are handled already, this extra lines serve no purpose. I might not be seeing something here tho.

The refactoring is about making the status list code part (actually, step-by-step, all parts) compliant with the error-handling ADRs referenced in the description above. The present PR is about applying this to the 'connect' part/slice of the code base. And looking at the number of files changed count (35), it is not trivial. So my proposition is to include the changes you are requesting in this broader refactoring effort and not mix it with this PR.

I've added these lines just so I can filter errors coming from the repository layer, but since they are handled already, this extra lines serve no purpose.

They won't actually be handled by this PR. They are failures defined in the error channel and will reported "as is" to the user. This PR will only "obfuscate" defects/exceptions. So I think your extra lines are purposeful.

@bvoiturier bvoiturier marked this pull request as ready for review March 28, 2024 08:36
@bvoiturier bvoiturier merged commit eb898e0 into main Mar 28, 2024
11 checks passed
@bvoiturier bvoiturier deleted the feat/ATL-6599-use-zio-failures-and-defects-effectively-in-connect branch March 28, 2024 08:54
@bvoiturier bvoiturier restored the feat/ATL-6599-use-zio-failures-and-defects-effectively-in-connect branch March 28, 2024 08:57
github-actions bot pushed a commit that referenced this pull request Apr 26, 2024
# 1.0.0-snapshot.1 (2024-04-26)

### Bug Fixes

*  all performance tests run succesfully, add group thresholds ([#750](https://github.com/hyperledger/identus-cloud-agent/issues/750)) ([5204838](https://github.com/hyperledger/identus-cloud-agent/commit/520483836e5b572e8aeeecd28f4bbe7cc668c3d9))
* add Anoncreds Integration Test ([#923](https://github.com/hyperledger/identus-cloud-agent/issues/923)) ([27a157f](https://github.com/hyperledger/identus-cloud-agent/commit/27a157fb5a83a33704230b35eca80f297eec9a85))
* add missing leading '/' in rewrite rule target ([#692](https://github.com/hyperledger/identus-cloud-agent/issues/692)) ([f2be228](https://github.com/hyperledger/identus-cloud-agent/commit/f2be22895c893525b50a0848d2951e668c5fe688))
* add more heap size for unit tests ([#421](https://github.com/hyperledger/identus-cloud-agent/issues/421)) ([1734533](https://github.com/hyperledger/identus-cloud-agent/commit/1734533534f911090fff45adc79b15ff61ca4122))
* add shared-crypto module and apollo wrapper for other key types ([#958](https://github.com/hyperledger/identus-cloud-agent/issues/958)) ([7eaa66c](https://github.com/hyperledger/identus-cloud-agent/commit/7eaa66c51904e58c309fd3bb0a8e8864c7902cb9))
* Adding Apollo ADR ([#573](https://github.com/hyperledger/identus-cloud-agent/issues/573)) ([e036bc8](https://github.com/hyperledger/identus-cloud-agent/commit/e036bc84446c8b7eb008f536def2adaca08e071f))
* Adding labels [skip ci] ([#737](https://github.com/hyperledger/identus-cloud-agent/issues/737)) ([5182098](https://github.com/hyperledger/identus-cloud-agent/commit/5182098f7bc6db479ee64d7133389732a38d174a))
* Adding localhost environment variable in run.sh script for local development ([#728](https://github.com/hyperledger/identus-cloud-agent/issues/728)) ([1a904a6](https://github.com/hyperledger/identus-cloud-agent/commit/1a904a6f72676fb89f87dd2da14c01d291371f8c))
* align keycloak version ([#936](https://github.com/hyperledger/identus-cloud-agent/issues/936)) ([c920fd6](https://github.com/hyperledger/identus-cloud-agent/commit/c920fd661d31b56466497e462fd0139755290b33))
* allow configurable path convention for vault secrets ([#918](https://github.com/hyperledger/identus-cloud-agent/issues/918)) ([234a272](https://github.com/hyperledger/identus-cloud-agent/commit/234a2725614b05466391894f248c7175fb62c5b6))
* anoncred test ([#940](https://github.com/hyperledger/identus-cloud-agent/issues/940)) ([bb5ead1](https://github.com/hyperledger/identus-cloud-agent/commit/bb5ead1de3b6d2c3fae0019d50a5310b37a2eab3))
* another indentation in apisixroute ([#683](https://github.com/hyperledger/identus-cloud-agent/issues/683)) ([d7c5e52](https://github.com/hyperledger/identus-cloud-agent/commit/d7c5e526c2b40897b3e26a8272468f21fc1dd81f))
* APISIX config route and rule names too long ([#691](https://github.com/hyperledger/identus-cloud-agent/issues/691)) ([bef008e](https://github.com/hyperledger/identus-cloud-agent/commit/bef008ecb8f07a7e92cba1ba009a343af7a71adb))
* **architecture:** use explicit version number for Structurizr Lite docker image ([#11](https://github.com/hyperledger/identus-cloud-agent/issues/11)) ([380d024](https://github.com/hyperledger/identus-cloud-agent/commit/380d024b516e1cd0d9b41b7514a3c6d12bc8bb13))
* **castor:** add missing did document field ([#251](https://github.com/hyperledger/identus-cloud-agent/issues/251)) ([27370ab](https://github.com/hyperledger/identus-cloud-agent/commit/27370abae1a26e0441d81ac10619539a7bc60aaf))
* **castor:** align DID document translation logic ([#595](https://github.com/hyperledger/identus-cloud-agent/issues/595)) ([bb1f112](https://github.com/hyperledger/identus-cloud-agent/commit/bb1f1121975c3bc8288b1d4577efd3922e5adce7))
* **castor:** fix DID parser that failing to parse some DIDs ([#581](https://github.com/hyperledger/identus-cloud-agent/issues/581)) ([24b2300](https://github.com/hyperledger/identus-cloud-agent/commit/24b230023ad2812dc13aa7229163ead5eb56183d))
* **castor:** fix unintended ordering behavior when parsing long-form DID ([#471](https://github.com/hyperledger/identus-cloud-agent/issues/471)) ([5ed0978](https://github.com/hyperledger/identus-cloud-agent/commit/5ed097850126e6c40f7d7119c947446c813edde7))
* **castor:** README.md is added to increase the version of the castor library ([cdd4772](https://github.com/hyperledger/identus-cloud-agent/commit/cdd47728c17f7c99d36f868e46c75cc7cf4afa92))
* **castor:** use URI that is compliant to RFC3986 ([#385](https://github.com/hyperledger/identus-cloud-agent/issues/385)) ([f92fed6](https://github.com/hyperledger/identus-cloud-agent/commit/f92fed658a20832398538dec51c9ae56b3cf3975))
* change admin auth priority and improve auth error message ([#800](https://github.com/hyperledger/identus-cloud-agent/issues/800)) ([32d4340](https://github.com/hyperledger/identus-cloud-agent/commit/32d43401a69c339f54380bd8d5dfe2fa383cb8d7))
* change attribute for appuser to login ([#721](https://github.com/hyperledger/identus-cloud-agent/issues/721)) ([a0e0a74](https://github.com/hyperledger/identus-cloud-agent/commit/a0e0a7412172a7cc2010c39c8ee106319e710986))
* change private sdk 1.4 to public maven ([#685](https://github.com/hyperledger/identus-cloud-agent/issues/685)) ([128bcac](https://github.com/hyperledger/identus-cloud-agent/commit/128bcac5b7006b485ea3dc9272fde29d159f1a03))
* change repository and name for rest api clients ([#745](https://github.com/hyperledger/identus-cloud-agent/issues/745)) ([0f84e28](https://github.com/hyperledger/identus-cloud-agent/commit/0f84e28c3f2800c1d73353e40620a840fbb6b93a))
* Change resource defaults for postgres ([#827](https://github.com/hyperledger/identus-cloud-agent/issues/827)) ([87809c4](https://github.com/hyperledger/identus-cloud-agent/commit/87809c4b4d6a3baf0afa37a2cf7ddf6c41a80eb6))
* Changing yq command [skip ci] ATL-5777 ([#736](https://github.com/hyperledger/identus-cloud-agent/issues/736)) ([01bdfa7](https://github.com/hyperledger/identus-cloud-agent/commit/01bdfa74056d983bc1fd494c99b1bab8496dc62f))
* check for active RLS on db application user ([#775](https://github.com/hyperledger/identus-cloud-agent/issues/775)) ([a792f43](https://github.com/hyperledger/identus-cloud-agent/commit/a792f43eaae0ec2cd30db2ea3308deded7a1a935))
* Check purpose of the keys ([#968](https://github.com/hyperledger/identus-cloud-agent/issues/968)) ([4b8e48d](https://github.com/hyperledger/identus-cloud-agent/commit/4b8e48d238b751ee8526e1440e8a0515f6b62de5))
* **connect:** bump mercury version to 1.10.1 and touch README.md ([e13a1bd](https://github.com/hyperledger/identus-cloud-agent/commit/e13a1bdcf2eec2c6059d8e9b4f4a587ff6aa15a6))
* consumer variable nesting correction ([#606](https://github.com/hyperledger/identus-cloud-agent/issues/606)) ([40a0578](https://github.com/hyperledger/identus-cloud-agent/commit/40a0578274d33873c5189d01715244b2b34c0fea))
* correct OAS example ([#816](https://github.com/hyperledger/identus-cloud-agent/issues/816)) ([b1384b3](https://github.com/hyperledger/identus-cloud-agent/commit/b1384b38524060f3cfa6df39afaddcce26a5514e))
* correct OAS examples ([#810](https://github.com/hyperledger/identus-cloud-agent/issues/810)) ([a0720dc](https://github.com/hyperledger/identus-cloud-agent/commit/a0720dcbaf10370dcacc1b5102df13929b40dfdb))
* correct the config environment variable name ([#905](https://github.com/hyperledger/identus-cloud-agent/issues/905)) ([d86436c](https://github.com/hyperledger/identus-cloud-agent/commit/d86436cbc58571b4167411643623f3ba975550ad))
* correct typo on sts header (dmax -> max) ([#726](https://github.com/hyperledger/identus-cloud-agent/issues/726)) ([2c5bc51](https://github.com/hyperledger/identus-cloud-agent/commit/2c5bc51fc66b2c62a7c8ba7e25944704c335253f))
* correct vault path ([#678](https://github.com/hyperledger/identus-cloud-agent/issues/678)) ([9426e7f](https://github.com/hyperledger/identus-cloud-agent/commit/9426e7f069e2dd72c18b1e09f7b34b2d37854771))
* CredentialOffer not following spec ([#569](https://github.com/hyperledger/identus-cloud-agent/issues/569)) ([3d479b9](https://github.com/hyperledger/identus-cloud-agent/commit/3d479b9fc0c0bdb0aa78b8c4e2edc8d287a0b6d9))
* Delete commons folder ([#46](https://github.com/hyperledger/identus-cloud-agent/issues/46)) ([def88ee](https://github.com/hyperledger/identus-cloud-agent/commit/def88ee476e303775b8e4207047a1cdf46451918))
* enable keycloak with pre-configured agent in helm chart ([#791](https://github.com/hyperledger/identus-cloud-agent/issues/791)) ([9a6e512](https://github.com/hyperledger/identus-cloud-agent/commit/9a6e5123e07462db66017439e8e434315af7c0f4))
* entity create and update operation failures if the walletId does… ([#718](https://github.com/hyperledger/identus-cloud-agent/issues/718)) ([4fe6677](https://github.com/hyperledger/identus-cloud-agent/commit/4fe66773a5aad4dc2808dad036c54c4660b3a855))
* explicitly define transitive dependencies that were unresolvable ([#790](https://github.com/hyperledger/identus-cloud-agent/issues/790)) ([0647829](https://github.com/hyperledger/identus-cloud-agent/commit/0647829af813913aebd0dd3d703db7e363d44369))
* improve performance for background jobs in multitenancy mode ([#749](https://github.com/hyperledger/identus-cloud-agent/issues/749)) ([17def3f](https://github.com/hyperledger/identus-cloud-agent/commit/17def3f67c1eb687560aee844aba6ff2a0bd4137))
* include helm Chart.yaml in git commit for release process ([#604](https://github.com/hyperledger/identus-cloud-agent/issues/604)) ([d0372f1](https://github.com/hyperledger/identus-cloud-agent/commit/d0372f19e74ade5627a41038b07010321d5ef600))
* indentation in apisixroute ([#682](https://github.com/hyperledger/identus-cloud-agent/issues/682)) ([6eec8ba](https://github.com/hyperledger/identus-cloud-agent/commit/6eec8ba6a32ce088eaaeafe953c4ff554d4765ab))
* **infra:** adds execution chmod to init-script ([#220](https://github.com/hyperledger/identus-cloud-agent/issues/220)) ([17038d3](https://github.com/hyperledger/identus-cloud-agent/commit/17038d3f2ebdadb284bf2ed4057db68f2a0a5742))
* **infra:** change didcomm endpoint - remove suffix ([#240](https://github.com/hyperledger/identus-cloud-agent/issues/240)) ([2dcf5e3](https://github.com/hyperledger/identus-cloud-agent/commit/2dcf5e3277428be9c26ba998a6245ba193450713))
* **infra:** set local PRISM_AGENT_VERSION to 0.40.0 ([#379](https://github.com/hyperledger/identus-cloud-agent/issues/379)) ([3b348ac](https://github.com/hyperledger/identus-cloud-agent/commit/3b348acb2aff1a88cda9ddf5dbd8491871ece2ef))
* Integration flow ([#734](https://github.com/hyperledger/identus-cloud-agent/issues/734)) ([c45a9eb](https://github.com/hyperledger/identus-cloud-agent/commit/c45a9ebf0150245dfa5ebdc2eda94aa1e0fea8f3))
* Integration flow ATL-5777 ([#738](https://github.com/hyperledger/identus-cloud-agent/issues/738)) ([7cf927c](https://github.com/hyperledger/identus-cloud-agent/commit/7cf927cc267460cc1708e424c0a63ae96689a42a))
* integration test ([#915](https://github.com/hyperledger/identus-cloud-agent/issues/915)) ([320ab6a](https://github.com/hyperledger/identus-cloud-agent/commit/320ab6a876606eb68f48fe7d78983b4e044b5084))
* Integration Test ([#974](https://github.com/hyperledger/identus-cloud-agent/issues/974)) ([847eb2f](https://github.com/hyperledger/identus-cloud-agent/commit/847eb2f56ba2766ed28f6484391cbd9b3202fbe5))
* **iris:** align type signature ([#72](https://github.com/hyperledger/identus-cloud-agent/issues/72)) ([a19a781](https://github.com/hyperledger/identus-cloud-agent/commit/a19a7814c3fc1e1cc89a861ae3942bf4a5fbad0a))
* log seed error before effect fail ([#557](https://github.com/hyperledger/identus-cloud-agent/issues/557)) ([c3a5d8e](https://github.com/hyperledger/identus-cloud-agent/commit/c3a5d8eb9e62675053f9b7fc80ee18d7a62f857c))
* **mercury:** Add compilation flags and fix code ([#302](https://github.com/hyperledger/identus-cloud-agent/issues/302)) ([43014c5](https://github.com/hyperledger/identus-cloud-agent/commit/43014c52b1671328956cd5913c2ebb4f6d206d89))
* **mercury:** simple commit to increase the version of mercury library ([5ffb0cc](https://github.com/hyperledger/identus-cloud-agent/commit/5ffb0cc9e7ca8e63feacc6e915ab026681a30f24))
* **mercury:** use snapshot suffix for prerelease publishing ([#79](https://github.com/hyperledger/identus-cloud-agent/issues/79)) ([a376e59](https://github.com/hyperledger/identus-cloud-agent/commit/a376e59c157f9a27f06021eb5929d161fb28a813))
* Option to disable apisix key auth ([#813](https://github.com/hyperledger/identus-cloud-agent/issues/813)) ([f163682](https://github.com/hyperledger/identus-cloud-agent/commit/f1636824047c0d03ce0790ede54e3a12d63dd787))
* **pollux:** add pagination at db level for getCredentialRecords ([#586](https://github.com/hyperledger/identus-cloud-agent/issues/586)) ([c0db5c8](https://github.com/hyperledger/identus-cloud-agent/commit/c0db5c8a2a4fee7568fb5aa43f81a2faba6936a2))
* **pollux:** ATL-3900 Force use of Bouncycastle ([#463](https://github.com/hyperledger/identus-cloud-agent/issues/463)) ([5b4aa5d](https://github.com/hyperledger/identus-cloud-agent/commit/5b4aa5d2cd5afeded9efa2d43d924db8e9516670))
* **pollux:** ATL-3971 Fix all Deprecation Warning ([#506](https://github.com/hyperledger/identus-cloud-agent/issues/506)) ([e5225b7](https://github.com/hyperledger/identus-cloud-agent/commit/e5225b7101bf3572a85a6f0cf8ed05e93410f551))
* **pollux:** fix 56f7aab7d3f58de51691271e1708edecc67b51b0 by exclude scala-java8-compat ([#423](https://github.com/hyperledger/identus-cloud-agent/issues/423)) ([bc7e783](https://github.com/hyperledger/identus-cloud-agent/commit/bc7e783c3e1499b6ab469178a2e524980d18d236))
* **pollux:** Fix column meta_next_retry ([#413](https://github.com/hyperledger/identus-cloud-agent/issues/413)) ([c02aba8](https://github.com/hyperledger/identus-cloud-agent/commit/c02aba87adbdbea4c30ac4c1c7f7e3a8fe0aa7c4))
* **pollux:** Fix Instant encoder in JdbcPresentationRepository ([#418](https://github.com/hyperledger/identus-cloud-agent/issues/418)) ([2ece2c6](https://github.com/hyperledger/identus-cloud-agent/commit/2ece2c6881430c180fa9c1bad6cdd6085be2c453))
* **pollux:** function that allocates status list credential does not work correctly in multi threaded environment  ([#941](https://github.com/hyperledger/identus-cloud-agent/issues/941)) ([ecc3c01](https://github.com/hyperledger/identus-cloud-agent/commit/ecc3c019749a6b370771bcf62f89ea2599a521ac))
* **pollux:** Undo edit migration for revocation status lists ([#937](https://github.com/hyperledger/identus-cloud-agent/issues/937)) ([7f7585f](https://github.com/hyperledger/identus-cloud-agent/commit/7f7585f47ee197db162c75f7d118a87b99cc7d06))
* **pollux:** upgrade castor version ([#472](https://github.com/hyperledger/identus-cloud-agent/issues/472)) ([f269b7e](https://github.com/hyperledger/identus-cloud-agent/commit/f269b7e21623d8e60bc7069b001addc29a09f7ac))
* **pollux:** upgrade mercury lib to 1.10.1 ([ee27755](https://github.com/hyperledger/identus-cloud-agent/commit/ee2775534f6207a6fed6332c938e6249d62168df))
* **pollux:** V16 migration is failing to add FK constraint because of type mismatch ([#782](https://github.com/hyperledger/identus-cloud-agent/issues/782)) ([c87beb0](https://github.com/hyperledger/identus-cloud-agent/commit/c87beb0478d4b3d54709e09597c42c23878d101e))
* **prism-agenet:** Remove connection ID from metrics in connection flow ([#635](https://github.com/hyperledger/identus-cloud-agent/issues/635)) ([515f92f](https://github.com/hyperledger/identus-cloud-agent/commit/515f92f67f6ccd9ae5414d1324ebb769c43d5017))
* **prism-agent:**  update didcomm peerdid library to support latest spec ([#877](https://github.com/hyperledger/identus-cloud-agent/issues/877)) ([0c42a62](https://github.com/hyperledger/identus-cloud-agent/commit/0c42a622143e35c439ae83cc3bb746515ce7401b))
* **prism-agent:** add consistency to documentation of OAS on DID endpoints ([#408](https://github.com/hyperledger/identus-cloud-agent/issues/408)) ([dd04c3f](https://github.com/hyperledger/identus-cloud-agent/commit/dd04c3fd14c76c02a7cfbb26ca52141590c48371))
* **prism-agent:** add did-method path segment in HD key derivation ([#596](https://github.com/hyperledger/identus-cloud-agent/issues/596)) ([a1e457a](https://github.com/hyperledger/identus-cloud-agent/commit/a1e457a8d6337e8c941b58c802f9516fe6718396))
* **prism-agent:** add missing 'PresentationVerificationFailed' status to REST API response enum ([#948](https://github.com/hyperledger/identus-cloud-agent/issues/948)) ([9a38cc9](https://github.com/hyperledger/identus-cloud-agent/commit/9a38cc97c18d26f13efa1c9535de1df003547a2b))
* **prism-agent:** add uri normalization on UpdateService patch ([#401](https://github.com/hyperledger/identus-cloud-agent/issues/401)) ([6a98f70](https://github.com/hyperledger/identus-cloud-agent/commit/6a98f7015069dba781d03584ae97a40681c5a5a9))
* **prism-agent:** add validation for endpoint url ([#919](https://github.com/hyperledger/identus-cloud-agent/issues/919)) ([0402a87](https://github.com/hyperledger/identus-cloud-agent/commit/0402a8778eda839521c55a127934fba41c7b79ad))
* **prism-agent:** agent should read DIDComm port from config ([#757](https://github.com/hyperledger/identus-cloud-agent/issues/757)) ([cda908c](https://github.com/hyperledger/identus-cloud-agent/commit/cda908c87cee562e6c044aa405aa82bd510cc74e))
* **prism-agent:** Alight the error responses according to RFC7807. ATL-3962 ([#480](https://github.com/hyperledger/identus-cloud-agent/issues/480)) ([64b0a2a](https://github.com/hyperledger/identus-cloud-agent/commit/64b0a2a04599c30adaf64e8411e1ec95305846cd))
* **prism-agent:** avoid race condition when update or deactivate DID ([#415](https://github.com/hyperledger/identus-cloud-agent/issues/415)) ([bf03674](https://github.com/hyperledger/identus-cloud-agent/commit/bf03674769f0b6163de13f4002198902fdd413e9))
* **prism-agent:** configure APISIX to return CORS headers from Prism Agent endpoints ([#746](https://github.com/hyperledger/identus-cloud-agent/issues/746)) ([a579aa9](https://github.com/hyperledger/identus-cloud-agent/commit/a579aa95ea5c0c4950cb64b8b9adb1f56bb87eb2))
* **prism-agent:** decouple secret storage backend from agent ([#570](https://github.com/hyperledger/identus-cloud-agent/issues/570)) ([6a5f9ce](https://github.com/hyperledger/identus-cloud-agent/commit/6a5f9cef337848dadd8a54b54948db9e7edfe8ad))
* **prism-agent:** define db app user privileges before app starts ([#722](https://github.com/hyperledger/identus-cloud-agent/issues/722)) ([8039654](https://github.com/hyperledger/identus-cloud-agent/commit/803965482e2634d488d2f4f364b041917be514a5))
* **prism-agent:** didcomm endpoint now exposed in docker file and with correct path ([#241](https://github.com/hyperledger/identus-cloud-agent/issues/241)) ([405f367](https://github.com/hyperledger/identus-cloud-agent/commit/405f3672d48dd47559f10f89db5cd7051a0c9eeb))
* **prism-agent:** fix added the InvitationGenerated state to the conn… ([#684](https://github.com/hyperledger/identus-cloud-agent/issues/684)) ([7fdffe3](https://github.com/hyperledger/identus-cloud-agent/commit/7fdffe3990ea08bd6dad5f9d2124146cb8efcff4))
* **prism-agent:** fix concurrent requests breaking DID index counter ([#571](https://github.com/hyperledger/identus-cloud-agent/issues/571)) ([e8411dd](https://github.com/hyperledger/identus-cloud-agent/commit/e8411ddb588e9dc81f2437cfbdfdcd1be42f99d1))
* **prism-agent:** fix docker env variables interpolation issue ([#751](https://github.com/hyperledger/identus-cloud-agent/issues/751)) ([110eb2d](https://github.com/hyperledger/identus-cloud-agent/commit/110eb2df9590412b35997152d526c599edb8e7af))
* **prism-agent:** Fix for ATL-3624 ([#430](https://github.com/hyperledger/identus-cloud-agent/issues/430)) ([02fe4d8](https://github.com/hyperledger/identus-cloud-agent/commit/02fe4d8cab14eb2b54d13dc726573d07bf77b76a))
* **prism-agent:** fix incorrect long-form parsing behavior on resolution endpoint ([#475](https://github.com/hyperledger/identus-cloud-agent/issues/475)) ([af356d6](https://github.com/hyperledger/identus-cloud-agent/commit/af356d66763197f118aee8f7d1ac7d82be05a46e))
* **prism-agent:** fix OAS on empty DID resolution representation ([#616](https://github.com/hyperledger/identus-cloud-agent/issues/616)) ([216ff3a](https://github.com/hyperledger/identus-cloud-agent/commit/216ff3a2ef75d824d0a6285218be01636a595a82))
* **prism-agent:** incorrect present proof metric name and remove connectionID from flow metrics ([#720](https://github.com/hyperledger/identus-cloud-agent/issues/720)) ([52e31b0](https://github.com/hyperledger/identus-cloud-agent/commit/52e31b0721d959fa53c8c49a39288b7c50d4582d))
* **prism-agent:** increase http timeout communication channel closing… ([#901](https://github.com/hyperledger/identus-cloud-agent/issues/901)) ([8d3f29d](https://github.com/hyperledger/identus-cloud-agent/commit/8d3f29ddd830fe102d4bf25a0af8734730c80151))
* **prism-agent:** infinite loop in proof presentation execution ([#540](https://github.com/hyperledger/identus-cloud-agent/issues/540)) ([6a26bb7](https://github.com/hyperledger/identus-cloud-agent/commit/6a26bb78d256bdcd09918cb1e8ee5bfd5cf0dacc))
* **prism-agent:** introduce generic secret store for CD ([#727](https://github.com/hyperledger/identus-cloud-agent/issues/727)) ([3d4aacd](https://github.com/hyperledger/identus-cloud-agent/commit/3d4aacdd9a7f66f2f656d3c31b3f8202cc37c51b))
* **prism-agent:** invitation expiry configuration and new state ([#655](https://github.com/hyperledger/identus-cloud-agent/issues/655)) ([c61999d](https://github.com/hyperledger/identus-cloud-agent/commit/c61999dd2a256401c30d29b842f0092f4968c6ed))
* **prism-agent:** make resolve did representation content type work ([#679](https://github.com/hyperledger/identus-cloud-agent/issues/679)) ([fd417d9](https://github.com/hyperledger/identus-cloud-agent/commit/fd417d9bdac0db98bc3de7a84e4d3277aef3c403))
* **prism-agent:** more descriptive error response for validateDID in issue flow ([#783](https://github.com/hyperledger/identus-cloud-agent/issues/783)) ([b99a737](https://github.com/hyperledger/identus-cloud-agent/commit/b99a73718a06f4b97d933ba2e3220593f8d4e825))
* **prism-agent:** perform percent encoding on auth header for token introspection request ([#780](https://github.com/hyperledger/identus-cloud-agent/issues/780)) ([03d43c9](https://github.com/hyperledger/identus-cloud-agent/commit/03d43c98d8ab64e5b47830d95a6356f9d6dd1b82))
* **prism-agent:** refactor crypto abstraction in the walletAPI ([#522](https://github.com/hyperledger/identus-cloud-agent/issues/522)) ([e36c634](https://github.com/hyperledger/identus-cloud-agent/commit/e36c63424ed2e28fc360c6a6a5d557938d4ec01a))
* **prism-agent:** refine multi-tenant error response and validations ([#719](https://github.com/hyperledger/identus-cloud-agent/issues/719)) ([1f9ede3](https://github.com/hyperledger/identus-cloud-agent/commit/1f9ede395c4469bf26b167a6430ad42ea7cde301))
* **prism-agent:** remove deprecated did-auth endpoints ([#324](https://github.com/hyperledger/identus-cloud-agent/issues/324)) ([a934cd4](https://github.com/hyperledger/identus-cloud-agent/commit/a934cd4ac48f4ba4724681eeff92f4c67c009940))
* **prism-agent:** return relevant errors on offer creation ([#754](https://github.com/hyperledger/identus-cloud-agent/issues/754)) ([d36533f](https://github.com/hyperledger/identus-cloud-agent/commit/d36533fe538812c9e3647bcc2383700173e4b1b7))
* **prism-agent:** reuse db connection for background job ([#102](https://github.com/hyperledger/identus-cloud-agent/issues/102)) ([a873090](https://github.com/hyperledger/identus-cloud-agent/commit/a873090fdd2560eb78263060d502946f142b0574))
* **prism-agent:** switch datetime format to offsetdatetime. ATL-2723 ([#243](https://github.com/hyperledger/identus-cloud-agent/issues/243)) ([6903afa](https://github.com/hyperledger/identus-cloud-agent/commit/6903afa8d3ba226f02b1dce7665cf5adf3fc09e6))
* **prism-agent:** update invitation expiration on connection request ([#687](https://github.com/hyperledger/identus-cloud-agent/issues/687)) ([1a1702f](https://github.com/hyperledger/identus-cloud-agent/commit/1a1702fc4e62b4a03a4e4ee32ac7419ea67a4ea1))
* **prism-agent:** Update Mercury Connect Pollux ([#382](https://github.com/hyperledger/identus-cloud-agent/issues/382)) ([b7f02ac](https://github.com/hyperledger/identus-cloud-agent/commit/b7f02ac909098159fbc0cb4187384b0ba007524a))
* **prism-agent:** update pollux to 0.35.1 ([#414](https://github.com/hyperledger/identus-cloud-agent/issues/414)) ([20770c8](https://github.com/hyperledger/identus-cloud-agent/commit/20770c84a67ca4105e964e97de7aeddbbcab5941))
* **prism-agent:** update pollux to 0.35.2 ([#419](https://github.com/hyperledger/identus-cloud-agent/issues/419)) ([63cd430](https://github.com/hyperledger/identus-cloud-agent/commit/63cd4305cfe10b6be5d57d1d2988536eefde35f0))
* **prism-agent:** use correct pairwise DIDs in presentation flow ([#568](https://github.com/hyperledger/identus-cloud-agent/issues/568)) ([ede234b](https://github.com/hyperledger/identus-cloud-agent/commit/ede234bbdcb64cb48da182b374288b549b8cf8aa))
* **prism-agent:** validate application config during startup ([#712](https://github.com/hyperledger/identus-cloud-agent/issues/712)) ([46fd69b](https://github.com/hyperledger/identus-cloud-agent/commit/46fd69bc2416c72dd457b29f06dd181cf65f52a0))
* prohibit tenants to use equal or revoked api keys ([#742](https://github.com/hyperledger/identus-cloud-agent/issues/742)) ([4b10c3a](https://github.com/hyperledger/identus-cloud-agent/commit/4b10c3af931722a683bf55062297c3dfa1e38046))
* re-enable logging with SLF4J and add traceId ([#869](https://github.com/hyperledger/identus-cloud-agent/issues/869)) ([8f6af25](https://github.com/hyperledger/identus-cloud-agent/commit/8f6af25a8eafd27d5017096da64f89188354a2ca))
* remove hard code did:example:* ([#882](https://github.com/hyperledger/identus-cloud-agent/issues/882)) ([321faf5](https://github.com/hyperledger/identus-cloud-agent/commit/321faf5791b05f0c24dd6ed96f155aa65d06477d))
* remove oas schema format for empty repsonse body ([#902](https://github.com/hyperledger/identus-cloud-agent/issues/902)) ([5f2bb08](https://github.com/hyperledger/identus-cloud-agent/commit/5f2bb0872a156c9223ab56efbd47e812967ff582))
* Renaming values.yml [skip ci] ATL-5777  ([#735](https://github.com/hyperledger/identus-cloud-agent/issues/735)) ([bcd73c3](https://github.com/hyperledger/identus-cloud-agent/commit/bcd73c310a1c033400f83cfa266cbe0aa304217a))
* Separate config for integration flow ATL-5777 ([#731](https://github.com/hyperledger/identus-cloud-agent/issues/731)) ([9e0e2de](https://github.com/hyperledger/identus-cloud-agent/commit/9e0e2de77a25166f019f78356b2e98b60da7b3e1))
* Separate config for integration flow ATL-5777 ([#733](https://github.com/hyperledger/identus-cloud-agent/issues/733)) ([8380ccc](https://github.com/hyperledger/identus-cloud-agent/commit/8380cccea0eee17c090928b1ae36b877a822177d))
* Swithing to startupProbe from Readiness ([#821](https://github.com/hyperledger/identus-cloud-agent/issues/821)) ([22a78ec](https://github.com/hyperledger/identus-cloud-agent/commit/22a78ec09ccc84b5d5c03e8f07ff3a14c654cf2b))
* tolerations and nodeAffinity for k8s ([#808](https://github.com/hyperledger/identus-cloud-agent/issues/808)) ([7934fa4](https://github.com/hyperledger/identus-cloud-agent/commit/7934fa402ba86af6d8430208f1844fbd6ccda1bd))
* update mercury to 0.21.0 ([8d42fb1](https://github.com/hyperledger/identus-cloud-agent/commit/8d42fb18206c9e599a4ab77f3c4a5162da03ba35))
* update pollux to use shared postgres container ([#485](https://github.com/hyperledger/identus-cloud-agent/issues/485)) ([1dbaa15](https://github.com/hyperledger/identus-cloud-agent/commit/1dbaa1515d9a5e9008b85d1f27a9d899a8cf7425))
* update shared module for castor ([#484](https://github.com/hyperledger/identus-cloud-agent/issues/484)) ([2202a22](https://github.com/hyperledger/identus-cloud-agent/commit/2202a220fdcd404bb3fe280b3b76923fbf499b8c))
* upgrade vault and quill versions ([#739](https://github.com/hyperledger/identus-cloud-agent/issues/739)) ([c140857](https://github.com/hyperledger/identus-cloud-agent/commit/c140857df97d56ab750ec186962e5fe2bb6a6717))
* use apollo for secp256k1 in shared-crypto ([#971](https://github.com/hyperledger/identus-cloud-agent/issues/971)) ([dd5e20b](https://github.com/hyperledger/identus-cloud-agent/commit/dd5e20bdedd004c2e0a81383d10b5eee3ae03788))
* use postgres application user ([#717](https://github.com/hyperledger/identus-cloud-agent/issues/717)) ([63403a5](https://github.com/hyperledger/identus-cloud-agent/commit/63403a5d64860d4683ebaab00a86eec0578a21c0))
* use postgres container from shared module ([#482](https://github.com/hyperledger/identus-cloud-agent/issues/482)) ([efe4557](https://github.com/hyperledger/identus-cloud-agent/commit/efe45579a1a7a690b41aa15b30c386bd7d030137))
* use shared postgres container for tests ([#486](https://github.com/hyperledger/identus-cloud-agent/issues/486)) ([1d6aada](https://github.com/hyperledger/identus-cloud-agent/commit/1d6aada72fedf6420133451214ca27965cff245f))

### Features

*  presentation API refactor ([#765](https://github.com/hyperledger/identus-cloud-agent/issues/765)) ([045d829](https://github.com/hyperledger/identus-cloud-agent/commit/045d8298f8865baeb13e243ed058e8e440b3f496))
* Accept goal and goalCode to create connection invitation  ([#785](https://github.com/hyperledger/identus-cloud-agent/issues/785)) ([71c776b](https://github.com/hyperledger/identus-cloud-agent/commit/71c776baa2caf3ca610508dba805f037fd7d6e29))
* add anoncreds credential definition rest api ([#624](https://github.com/hyperledger/identus-cloud-agent/issues/624)) ([99e338a](https://github.com/hyperledger/identus-cloud-agent/commit/99e338af6dc1ab2b4b42f4b1bee2a917ccb77b4c))
* add configuration for gRPC usePlainText (enable TLS for gRPC) ([#823](https://github.com/hyperledger/identus-cloud-agent/issues/823)) ([b871bb5](https://github.com/hyperledger/identus-cloud-agent/commit/b871bb5e8eeeb71b3f22c38609ae8f1ff424016c))
* add credential def performance test ([#865](https://github.com/hyperledger/identus-cloud-agent/issues/865)) ([95064d6](https://github.com/hyperledger/identus-cloud-agent/commit/95064d617dda7d45916fbdddf20a544eea4acf4a))
* add general test postgresql container support ([#481](https://github.com/hyperledger/identus-cloud-agent/issues/481)) ([3b1fc8d](https://github.com/hyperledger/identus-cloud-agent/commit/3b1fc8dda752bb81f5eeef31f24663ea58e0bf73))
* add helm-chart for agent  ([#603](https://github.com/hyperledger/identus-cloud-agent/issues/603)) ([63f38d4](https://github.com/hyperledger/identus-cloud-agent/commit/63f38d47f4645bf6172320da5c3413c748c03729))
* add multi-arch amd64 and arm64 support for agent docker ([#512](https://github.com/hyperledger/identus-cloud-agent/issues/512)) ([dc2608c](https://github.com/hyperledger/identus-cloud-agent/commit/dc2608c12e062a6af5d3fcf1077956281a2f0828))
* add new auth params ([#762](https://github.com/hyperledger/identus-cloud-agent/issues/762)) ([b8bfb86](https://github.com/hyperledger/identus-cloud-agent/commit/b8bfb867061c58fc12987b5405f561e8f10cb718))
* add nodeAffinity, tolerations, and resources to k8s deployment ([#804](https://github.com/hyperledger/identus-cloud-agent/issues/804)) ([22407a3](https://github.com/hyperledger/identus-cloud-agent/commit/22407a3103eff73d87ead9a8122f078845c11d95))
* add prism-agent-* prefix to the tag ([#505](https://github.com/hyperledger/identus-cloud-agent/issues/505)) ([6087f2d](https://github.com/hyperledger/identus-cloud-agent/commit/6087f2dcc77179a4bb4702e60a9669c6329ba55c))
* add revocation for JWT credentials ([#934](https://github.com/hyperledger/identus-cloud-agent/issues/934)) ([88b7fa5](https://github.com/hyperledger/identus-cloud-agent/commit/88b7fa5c6cd92002ef355311eec6e30b63ab1dd6))
* add sample maintainers.md ([#878](https://github.com/hyperledger/identus-cloud-agent/issues/878)) ([c6a41ed](https://github.com/hyperledger/identus-cloud-agent/commit/c6a41edc5466312da76283d37f12406d79449a7d))
* add security headers in helm-chart apisix route ([#697](https://github.com/hyperledger/identus-cloud-agent/issues/697)) ([7f7e0a4](https://github.com/hyperledger/identus-cloud-agent/commit/7f7e0a4b7709c9eb0dbfc0557ed68648a98e5756))
* **agent:** [ATL-2005] implement REST API for credential issuance ([#86](https://github.com/hyperledger/identus-cloud-agent/issues/86)) ([7c1f50a](https://github.com/hyperledger/identus-cloud-agent/commit/7c1f50ab99879beed74c5e0bd03aa51709051527))
* **agent:** improve OAS spec and refactor DidCommHttpServer code ([#615](https://github.com/hyperledger/identus-cloud-agent/issues/615)) ([301fbab](https://github.com/hyperledger/identus-cloud-agent/commit/301fbabac6c743130c46572056d9b8848a166be1))
* **agent:** integrate key-manage into prism-agent server ([#77](https://github.com/hyperledger/identus-cloud-agent/issues/77)) ([4a88ded](https://github.com/hyperledger/identus-cloud-agent/commit/4a88ded408192d03b744309a4ebaf9f9517a9db2))
* **agent:** make the connection pool size configurable, fixes [#913](https://github.com/hyperledger/identus-cloud-agent/issues/913) ([#914](https://github.com/hyperledger/identus-cloud-agent/issues/914)) ([375fe0f](https://github.com/hyperledger/identus-cloud-agent/commit/375fe0f8ee042246aed37f40cbeb8f2042c99958))
* **agent:** verification API integration test + documentation ATL-6775 ([#986](https://github.com/hyperledger/identus-cloud-agent/issues/986)) ([9308b21](https://github.com/hyperledger/identus-cloud-agent/commit/9308b21e46d267265c7fcdbfc88b78ddd5ae6558))
* Align the repo with new name identus-cloud-agent ([#973](https://github.com/hyperledger/identus-cloud-agent/issues/973)) ([9fc7bb0](https://github.com/hyperledger/identus-cloud-agent/commit/9fc7bb07cac9aae1db8d389ec8831403f106d612))
* allow external API keys to be defined for an agent ([#643](https://github.com/hyperledger/identus-cloud-agent/issues/643)) ([756dea7](https://github.com/hyperledger/identus-cloud-agent/commit/756dea707b1ced9de800cdabfded6dfc100e340e))
* Allow override of network name ([#295](https://github.com/hyperledger/identus-cloud-agent/issues/295)) ([4ee0943](https://github.com/hyperledger/identus-cloud-agent/commit/4ee094382851e0a0745af80f0a91eadb955b9804))
* **apollo:** add schema registry to the agent using Tapir library. ATL-1334  ([#94](https://github.com/hyperledger/identus-cloud-agent/issues/94)) ([b3cf828](https://github.com/hyperledger/identus-cloud-agent/commit/b3cf828d001f7499c414e9dc559f5152997445e6))
* ATL-4888 Anoncred schema type ([#590](https://github.com/hyperledger/identus-cloud-agent/issues/590)) ([a57deef](https://github.com/hyperledger/identus-cloud-agent/commit/a57deef485fea5181e8617a30ab70ca26c409b42))
* ATL-5571 Generalized Vault to Store Json ([#650](https://github.com/hyperledger/identus-cloud-agent/issues/650)) ([ebf0328](https://github.com/hyperledger/identus-cloud-agent/commit/ebf0328cfb5107954766fe93ffc6b42f4e5a4cb0))
* ATL-5574 Prime Anoncred Lib ([#652](https://github.com/hyperledger/identus-cloud-agent/issues/652)) ([70b2f16](https://github.com/hyperledger/identus-cloud-agent/commit/70b2f16beecdef7eeeabb18f1b25244046ba5a65))
* ATL-5575 Generalize and Streamline Json Schema SerDes logic ([#653](https://github.com/hyperledger/identus-cloud-agent/issues/653)) ([eb4f8f4](https://github.com/hyperledger/identus-cloud-agent/commit/eb4f8f488bcef421e20f770669dfff99f4c1dd98))
* **castor:** add support DID deactivate operation ([#325](https://github.com/hyperledger/identus-cloud-agent/issues/325)) ([5ceb7e9](https://github.com/hyperledger/identus-cloud-agent/commit/5ceb7e953664c15457e6a6657041442a5c3d761b))
* **castor:** add support for context in DID document & operation ([#489](https://github.com/hyperledger/identus-cloud-agent/issues/489)) ([8384fe3](https://github.com/hyperledger/identus-cloud-agent/commit/8384fe39be38f24e6b821851781c6b465e8e4bfa))
* **castor:** add support for DID update operation ([#306](https://github.com/hyperledger/identus-cloud-agent/issues/306)) ([27b77b2](https://github.com/hyperledger/identus-cloud-agent/commit/27b77b24680fef57d55f64e4f3448232cc73d323))
* **castor:** align castor implementation with DID spec ([#336](https://github.com/hyperledger/identus-cloud-agent/issues/336)) ([7992b80](https://github.com/hyperledger/identus-cloud-agent/commit/7992b80a35df9e1308b811bfa0492e9d17975f5a))
* **castor:** implement translation of Node DidData to W3C DidDocument ([#182](https://github.com/hyperledger/identus-cloud-agent/issues/182)) ([d72159f](https://github.com/hyperledger/identus-cloud-agent/commit/d72159fdd2ae1797c33bd425443dc632b9e8ebac))
* **castor:** update castor to use prism-node protobuf ([#136](https://github.com/hyperledger/identus-cloud-agent/issues/136)) ([5e3445f](https://github.com/hyperledger/identus-cloud-agent/commit/5e3445ff0c93e4fdeead6f74e27c5eb8abb48dcc))
* **castor:** upgrade castor with service in protobuf definition ([#224](https://github.com/hyperledger/identus-cloud-agent/issues/224)) ([8223740](https://github.com/hyperledger/identus-cloud-agent/commit/82237403a2f53942ebcc7ed14091f0de9b970553))
* **castor:** upgrade node client for new key type ([#287](https://github.com/hyperledger/identus-cloud-agent/issues/287)) ([5661e76](https://github.com/hyperledger/identus-cloud-agent/commit/5661e760c4e8c129f5947621dbf47b4ae3048bf4))
* complete the integration with anoncred and fixes ([#820](https://github.com/hyperledger/identus-cloud-agent/issues/820)) ([15ff710](https://github.com/hyperledger/identus-cloud-agent/commit/15ff710c4a68c5f282e07b23098e362825fdb3b9))
* Configurations load improvement ([#954](https://github.com/hyperledger/identus-cloud-agent/issues/954)) ([dfb7577](https://github.com/hyperledger/identus-cloud-agent/commit/dfb75778f925a615aaec815241d964014d236777))
* **connect:** Add method reportProcessingFailure ([#345](https://github.com/hyperledger/identus-cloud-agent/issues/345)) ([ebf583c](https://github.com/hyperledger/identus-cloud-agent/commit/ebf583cff2c00d40e7d534305f21fa47d35eb087))
* **connect:** Add retries field for ATL-3202 ([#335](https://github.com/hyperledger/identus-cloud-agent/issues/335)) ([7cbcebc](https://github.com/hyperledger/identus-cloud-agent/commit/7cbcebc7c9229e1dac47b3f31b3d1d6621e739d3))
* **connect:** Added Connect Lib ([#138](https://github.com/hyperledger/identus-cloud-agent/issues/138)) ([e4d4a41](https://github.com/hyperledger/identus-cloud-agent/commit/e4d4a419a1b736352aa6ec163bdf6ef6d0491640))
* **connect:** ATL-6599 Use ZIO Failures and Defects effectively + RFC-9457 in connect ([#927](https://github.com/hyperledger/identus-cloud-agent/issues/927)) ([eb898e0](https://github.com/hyperledger/identus-cloud-agent/commit/eb898e068f768507d6979a5d9bab35ef7ad4a045))
* **connect:** bump mercury version ([#272](https://github.com/hyperledger/identus-cloud-agent/issues/272)) ([70f878c](https://github.com/hyperledger/identus-cloud-agent/commit/70f878c81bbffd73228d2a40b55295b74c918ba9))
* **connect:** bump mercury version and fix queries ([#356](https://github.com/hyperledger/identus-cloud-agent/issues/356)) ([957bdea](https://github.com/hyperledger/identus-cloud-agent/commit/957bdeae59f566446caa14dabe7cc7310478ba8e))
* **connect:** bump up shared version to use 0.2.0 ([56cc1c3](https://github.com/hyperledger/identus-cloud-agent/commit/56cc1c38caa313846c61253527accb456ccc476a))
* **connect:** implement Connect protocol ([#172](https://github.com/hyperledger/identus-cloud-agent/issues/172)) ([b707792](https://github.com/hyperledger/identus-cloud-agent/commit/b707792ba7c3a48f25089b5224b90dd186733539))
* **connect:** removed the unwanted dependencies ([#145](https://github.com/hyperledger/identus-cloud-agent/issues/145)) ([96b0fbc](https://github.com/hyperledger/identus-cloud-agent/commit/96b0fbcd83879840c1b6a46cfeff3604c92ea2a4))
* **connect:** support connect records retrieval by states ([#349](https://github.com/hyperledger/identus-cloud-agent/issues/349)) ([7673278](https://github.com/hyperledger/identus-cloud-agent/commit/7673278b2a9a88ec503c44b31dd14902462e43a4))
* **connect:** updated  the version for mercury ([#246](https://github.com/hyperledger/identus-cloud-agent/issues/246)) ([7629eab](https://github.com/hyperledger/identus-cloud-agent/commit/7629eab985354a64d4a7c7f5814ae4a84a48ab31))
* **connect:** Updated the mercury version for jwt ([#466](https://github.com/hyperledger/identus-cloud-agent/issues/466)) ([8444057](https://github.com/hyperledger/identus-cloud-agent/commit/84440573bebbdf46f901e1a8bae7ba3d84239c2d))
* **connect:** Updated version for mercury ([#398](https://github.com/hyperledger/identus-cloud-agent/issues/398)) ([bff8d21](https://github.com/hyperledger/identus-cloud-agent/commit/bff8d21ca218c6fc8237f88d9c1288ade7b03c88))
* **connect:** Use TIMESTAMP instead of BIGINT ATL-3786 ([#431](https://github.com/hyperledger/identus-cloud-agent/issues/431)) ([fb7f2d2](https://github.com/hyperledger/identus-cloud-agent/commit/fb7f2d28a5a8eabb2f52beebd8c794a90793c6fc))
* Consumer restricition parametarization  ([#814](https://github.com/hyperledger/identus-cloud-agent/issues/814)) ([e039576](https://github.com/hyperledger/identus-cloud-agent/commit/e039576fc0e285b80b2966c032ed91b9a8f26f60))
* define key-management interface (3) ([#71](https://github.com/hyperledger/identus-cloud-agent/issues/71)) ([47dc3cd](https://github.com/hyperledger/identus-cloud-agent/commit/47dc3cd8857971b96a88ae6f9cf0e2163e6cf08e))
* disable cors by default ([#747](https://github.com/hyperledger/identus-cloud-agent/issues/747)) ([1dd8c8b](https://github.com/hyperledger/identus-cloud-agent/commit/1dd8c8b0e9b0d2593bd1c17a95bf013192a64532))
* **docs:** ADR for revocation status list expansion strategy ([#773](https://github.com/hyperledger/identus-cloud-agent/issues/773)) ([7ad6427](https://github.com/hyperledger/identus-cloud-agent/commit/7ad64277acb2bffe12524c4bfb68f687689b5b2e))
* env vars support through values file ([#811](https://github.com/hyperledger/identus-cloud-agent/issues/811)) ([2486dde](https://github.com/hyperledger/identus-cloud-agent/commit/2486dde9b0682504a02ad031b3e7498b2fa2ce17))
* expose API for default did:peer of prism agent ([#509](https://github.com/hyperledger/identus-cloud-agent/issues/509)) ([b128292](https://github.com/hyperledger/identus-cloud-agent/commit/b128292031c547938614b21fb4cd0a377310c19e))
* Fix Update Schema and CredentialDef on Receive Credential ([#920](https://github.com/hyperledger/identus-cloud-agent/issues/920)) ([acbba3c](https://github.com/hyperledger/identus-cloud-agent/commit/acbba3ce92ee9e16893b4978c4a9ec4ce0757d53))
* **infra:** [ATL-1889] create local deployment config ([3f381cd](https://github.com/hyperledger/identus-cloud-agent/commit/3f381cdcb7b8abe9082dc4d36a44e89e47b1d0af))
* **infra:** add pre-commit for conventional commits ([e0f8933](https://github.com/hyperledger/identus-cloud-agent/commit/e0f8933c7adb9b8a2e181b88b5ce4563d2f63fa0))
* **infra:** improved scripts for runinng locally or develping locally ([#153](https://github.com/hyperledger/identus-cloud-agent/issues/153)) ([df24ad9](https://github.com/hyperledger/identus-cloud-agent/commit/df24ad99d07661ba6d0561f9269afa5f4a3c51f6))
* **infra:** switch to APISIX for local running instead of HAProxy ([#196](https://github.com/hyperledger/identus-cloud-agent/issues/196)) ([e3a1aa6](https://github.com/hyperledger/identus-cloud-agent/commit/e3a1aa6c75dc89eee4c7c034c73dc1b1b2234e33))
* **infra:** switch to single instance of postgres for running locally ([#203](https://github.com/hyperledger/identus-cloud-agent/issues/203)) ([32e33f1](https://github.com/hyperledger/identus-cloud-agent/commit/32e33f109f834386cfda5168a00e8407ca136e2e))
* interoperable schema changes ([#870](https://github.com/hyperledger/identus-cloud-agent/issues/870)) ([de49a93](https://github.com/hyperledger/identus-cloud-agent/commit/de49a9328524b32d714301f2b7961d5cd85b23c3))
* **iris:** ATL-1791 Implement blockchain syncer functionality ([#49](https://github.com/hyperledger/identus-cloud-agent/issues/49)) ([431b657](https://github.com/hyperledger/identus-cloud-agent/commit/431b6575b8df2f4744285b1c5e2dd56072fa874c))
* key management for Ed25519 and X25519 ([#966](https://github.com/hyperledger/identus-cloud-agent/issues/966)) ([a0f6819](https://github.com/hyperledger/identus-cloud-agent/commit/a0f6819bb80d87c13f903d7dc1b67cb08b4687db))
* Keycloak container support with clients and PermissionManagement service ([#755](https://github.com/hyperledger/identus-cloud-agent/issues/755)) ([a1846aa](https://github.com/hyperledger/identus-cloud-agent/commit/a1846aaa84202b55d48ea8556aad8cbbb8260f4d))
* Liveness, and readiness probes ([#817](https://github.com/hyperledger/identus-cloud-agent/issues/817)) ([6e18666](https://github.com/hyperledger/identus-cloud-agent/commit/6e18666f51cca2d0f151b070c59049bcf005a450))
* **mercury-mediator:** Update to Mercury 0.12.0; Fix code ([#257](https://github.com/hyperledger/identus-cloud-agent/issues/257)) ([e990a92](https://github.com/hyperledger/identus-cloud-agent/commit/e990a92a377e92925486f525a7c7ea977fe2797a))
* **mercury:** [WIP] ATL-1741-Present-Proof-Protocol ([#98](https://github.com/hyperledger/identus-cloud-agent/issues/98)) ([b37b762](https://github.com/hyperledger/identus-cloud-agent/commit/b37b7627377d0e0d6ead496dc537cbf757c875ca))
* **mercury:** Add extra method invitation2Connect ([#309](https://github.com/hyperledger/identus-cloud-agent/issues/309)) ([ea3d819](https://github.com/hyperledger/identus-cloud-agent/commit/ea3d81935cd0ccca032310021a89d0a9bc016d48))
* **mercury:** Add plugin sbt-scoverage ([#133](https://github.com/hyperledger/identus-cloud-agent/issues/133)) ([fcaaeda](https://github.com/hyperledger/identus-cloud-agent/commit/fcaaeda1f8b2b06ae0cc2cf964228686186f6a15))
* **mercury:** add release plugins for sbt ([8ad3be0](https://github.com/hyperledger/identus-cloud-agent/commit/8ad3be012dfcc5e41bc4e6bdff62cb1c413c2dae))
* **mercury:** add semantic-release automation ([44d1c5b](https://github.com/hyperledger/identus-cloud-agent/commit/44d1c5b887938a5adb23e5cef2256154d242c69a))
* **mercury:** add utils methods on issue-credential-protocol ([#131](https://github.com/hyperledger/identus-cloud-agent/issues/131)) ([5a3e2fd](https://github.com/hyperledger/identus-cloud-agent/commit/5a3e2fd411b278f1672777a115233c1f9a408f02))
* **mercury:** Added the resolver and update the nimbus libray to pre… ([#465](https://github.com/hyperledger/identus-cloud-agent/issues/465)) ([67e3622](https://github.com/hyperledger/identus-cloud-agent/commit/67e362212858b5a69e3c7cb0419449cc721f857f))
* **mercury:** AgentCLI for Issue Credential ATL-1740 ([#82](https://github.com/hyperledger/identus-cloud-agent/issues/82)) ([c4068c6](https://github.com/hyperledger/identus-cloud-agent/commit/c4068c62023ef817d80d81a56f90bb7bcb2e7fb3))
* **mercury:** ATL-1740 issue credential ([#64](https://github.com/hyperledger/identus-cloud-agent/issues/64)) ([21fe5bc](https://github.com/hyperledger/identus-cloud-agent/commit/21fe5bc1c0f51c2d039080b8ebb78e226f7815e2))
* **mercury:** ATL-2287 Connection Protocol ([#140](https://github.com/hyperledger/identus-cloud-agent/issues/140)) ([402248b](https://github.com/hyperledger/identus-cloud-agent/commit/402248b3b8553ab7869d70f54ca194510a676e6f))
* **mercury:** ATL-3424 Expose HTTP status ([#351](https://github.com/hyperledger/identus-cloud-agent/issues/351)) ([d87613c](https://github.com/hyperledger/identus-cloud-agent/commit/d87613c7cb8c892964820e3346d44b3bf46114fd))
* **mercury:** Bump Mercury version in Mediator ([#110](https://github.com/hyperledger/identus-cloud-agent/issues/110)) ([3fd370a](https://github.com/hyperledger/identus-cloud-agent/commit/3fd370a7f039b76a23f52bebeb57d5d0de94ea28))
* **mercury:** clean unwanted dependencies ([#206](https://github.com/hyperledger/identus-cloud-agent/issues/206)) ([1749e9d](https://github.com/hyperledger/identus-cloud-agent/commit/1749e9d3aa54a912a997fd4b5bcc131cc3d23bce))
* **mercury:** Code cleanup removed the Presentation Attachment and added to the Pollux ([#365](https://github.com/hyperledger/identus-cloud-agent/issues/365)) ([8f52b12](https://github.com/hyperledger/identus-cloud-agent/commit/8f52b1214e7bee3b18693f25a657630d85eee26f))
* **mercury:** Coordinate Mediation Protocol ([#33](https://github.com/hyperledger/identus-cloud-agent/issues/33)) ([a3ee0d3](https://github.com/hyperledger/identus-cloud-agent/commit/a3ee0d341a921f39610071eb473d11ceaed0b0e0))
* **mercury:** dumb release commit ([#270](https://github.com/hyperledger/identus-cloud-agent/issues/270)) ([8a1e5c3](https://github.com/hyperledger/identus-cloud-agent/commit/8a1e5c3d3e58a7e29c9c3f4692798270fd58a5ff))
* **mercury:** empty release commit ([#268](https://github.com/hyperledger/identus-cloud-agent/issues/268)) ([21b5dec](https://github.com/hyperledger/identus-cloud-agent/commit/21b5dec2589dd9dce08e89497075a0d4741f100e))
* **mercury:** Expose open api-spec for mediator ([#38](https://github.com/hyperledger/identus-cloud-agent/issues/38)) ([fdad327](https://github.com/hyperledger/identus-cloud-agent/commit/fdad3275d3c2a8c70c43999f5dac78751db0bc70))
* **mercury:** Expose pthid on the connection protocol ([#333](https://github.com/hyperledger/identus-cloud-agent/issues/333)) ([82eca31](https://github.com/hyperledger/identus-cloud-agent/commit/82eca31f2dd29ab1ce96ae4948208883499d23c0))
* **mercury:** Fix project mercury-mediator ATL-2030 ([#84](https://github.com/hyperledger/identus-cloud-agent/issues/84)) ([1450c30](https://github.com/hyperledger/identus-cloud-agent/commit/1450c30f8f23ec87cd868dbf41e71213e0b4dfbe))
* **mercury:** Fix release ATL-2030 ([#78](https://github.com/hyperledger/identus-cloud-agent/issues/78)) ([93f9e22](https://github.com/hyperledger/identus-cloud-agent/commit/93f9e228529321a19ba6415304e0e2f460f3dddb))
* **mercury:** forward messaging to mediator ([#264](https://github.com/hyperledger/identus-cloud-agent/issues/264)) ([1170e2f](https://github.com/hyperledger/identus-cloud-agent/commit/1170e2f093ec2a2f70a56eda22d3721c6063ddc4))
* **mercury:** Improve support for ForwardMessage in MessagingService ([#269](https://github.com/hyperledger/identus-cloud-agent/issues/269)) ([4385440](https://github.com/hyperledger/identus-cloud-agent/commit/4385440d4b202af97aad5f17f3327bad452b7930))
* **mercury:** Jupyter docker workstation and notebooks ([#32](https://github.com/hyperledger/identus-cloud-agent/issues/32)) ([f6b5f77](https://github.com/hyperledger/identus-cloud-agent/commit/f6b5f7708808303f70e54a744073514058c72235))
* **mercury:** Make Message class and protocol-connection more robust ([#235](https://github.com/hyperledger/identus-cloud-agent/issues/235)) ([ca8a638](https://github.com/hyperledger/identus-cloud-agent/commit/ca8a638ef1640045202b713727467a428ab18a2c))
* **mercury:** Mercury Mailbox Mediator Demo ([#16](https://github.com/hyperledger/identus-cloud-agent/issues/16)) ([27fc9dc](https://github.com/hyperledger/identus-cloud-agent/commit/27fc9dc61c6494dec62b81314b544938fb7c52ca))
* **mercury:** Message field 'to' must be an Array ([#215](https://github.com/hyperledger/identus-cloud-agent/issues/215)) ([d4e2c57](https://github.com/hyperledger/identus-cloud-agent/commit/d4e2c57822c081f572fcde95fd1f2b7e2af7a946))
* **mercury:** New CI workflow for mercury and fixes ([#57](https://github.com/hyperledger/identus-cloud-agent/issues/57)) ([43ad49a](https://github.com/hyperledger/identus-cloud-agent/commit/43ad49a0c0188dc7db5300c1e32043db10e683e7))
* **mercury:** New CLI Agent for mercury ([#56](https://github.com/hyperledger/identus-cloud-agent/issues/56)) ([5be9c2c](https://github.com/hyperledger/identus-cloud-agent/commit/5be9c2cd0d672ab59f010a5879b745eca65fbf10))
* **mercury:** New DidValidator ([#180](https://github.com/hyperledger/identus-cloud-agent/issues/180)) ([e5d1810](https://github.com/hyperledger/identus-cloud-agent/commit/e5d1810a157db7036490a0721404c7af0b825266))
* **mercury:** New docker-compose with ROOTS-ID's mediator ([#26](https://github.com/hyperledger/identus-cloud-agent/issues/26)) ([f6af73f](https://github.com/hyperledger/identus-cloud-agent/commit/f6af73f5e8a7a578dd5e7daf1e6f3d65e98e7e0a))
* **mercury:** New Messaging Service with support for forward messaging ([#244](https://github.com/hyperledger/identus-cloud-agent/issues/244)) ([7f511e0](https://github.com/hyperledger/identus-cloud-agent/commit/7f511e00980c24aa0ce8be25b8dedf9ecf524790))
* **mercury:** replace method buildBaseAttachment with buildBase64Attachment ([#278](https://github.com/hyperledger/identus-cloud-agent/issues/278)) ([94c7895](https://github.com/hyperledger/identus-cloud-agent/commit/94c7895a5630251aacbdcb0445e7d3da9b225d4c))
* **mercury:** Replace zhttp with zio-http ([#137](https://github.com/hyperledger/identus-cloud-agent/issues/137)) ([be6afb3](https://github.com/hyperledger/identus-cloud-agent/commit/be6afb3d8c4f00a1ee0a6429a35c5873302d1cb6))
* **mercury:** Report Problem Protocol ([#21](https://github.com/hyperledger/identus-cloud-agent/issues/21)) ([f5a3711](https://github.com/hyperledger/identus-cloud-agent/commit/f5a3711da0de2ab2af50facb7e69680882920b6d))
* **mercury:** ReportProblem Protocol updated with test and updated t… ([#396](https://github.com/hyperledger/identus-cloud-agent/issues/396)) ([403f4c2](https://github.com/hyperledger/identus-cloud-agent/commit/403f4c2c51908972fef49dee5195e7f0004e46b5))
* **mercury:** Simplify PeerDID ([#132](https://github.com/hyperledger/identus-cloud-agent/issues/132)) ([6d377d8](https://github.com/hyperledger/identus-cloud-agent/commit/6d377d8595c1cdf710625775c06453953a2189a7))
* **mercury:** Split DidComm into DidAgent and DidOps ([#319](https://github.com/hyperledger/identus-cloud-agent/issues/319)) ([e12ca22](https://github.com/hyperledger/identus-cloud-agent/commit/e12ca22daaecb775894067f36f82d1ed0e3e6ea0))
* **mercury:** Split Mercury projects ([#73](https://github.com/hyperledger/identus-cloud-agent/issues/73)) ([e88ecd3](https://github.com/hyperledger/identus-cloud-agent/commit/e88ecd3e22649e10f338037b0f3fc2e80a3acb68))
* **mercury:** Support a mediator in service uri field ([#263](https://github.com/hyperledger/identus-cloud-agent/issues/263)) ([88ad415](https://github.com/hyperledger/identus-cloud-agent/commit/88ad415a3770abb4a5f40ff6fe5e4e1ebf1ab996))
* **mercury:** Support for pleaseAck (needed for ATL-3222) ([#366](https://github.com/hyperledger/identus-cloud-agent/issues/366)) ([a2d9c98](https://github.com/hyperledger/identus-cloud-agent/commit/a2d9c9855390ea77a36943e86cfdec8a3adf0b57))
* **mercury:** Update protocol-present-proof to v3 & add our extensions ([#192](https://github.com/hyperledger/identus-cloud-agent/issues/192)) ([28b083a](https://github.com/hyperledger/identus-cloud-agent/commit/28b083a73205413557b59e8756c6b33e354c3c39))
* **mercury:** Use present-proof protocol in AgentCli ([#112](https://github.com/hyperledger/identus-cloud-agent/issues/112)) ([5546190](https://github.com/hyperledger/identus-cloud-agent/commit/55461904f7939fb21cdc0aa17b3d4d179800dba6))
* migrate docker image of the agent to Java 21 ([#758](https://github.com/hyperledger/identus-cloud-agent/issues/758)) ([d36dbf0](https://github.com/hyperledger/identus-cloud-agent/commit/d36dbf0dfbf45b64185e5b54aba0444d6e1ada88))
* migrate issue endpoint to tapir ([#516](https://github.com/hyperledger/identus-cloud-agent/issues/516)) ([9b1558f](https://github.com/hyperledger/identus-cloud-agent/commit/9b1558f50003ba1c79ec2cdd9888f2e99f0534d8))
* new Anoncreds Demo ([#562](https://github.com/hyperledger/identus-cloud-agent/issues/562)) ([a9a8290](https://github.com/hyperledger/identus-cloud-agent/commit/a9a8290c73fb3044c2091311c199d1e532af03f0))
* **pollux:** [ATL-2235] Verfiable Prensentation Adjustments ([#201](https://github.com/hyperledger/identus-cloud-agent/issues/201)) ([42d23fb](https://github.com/hyperledger/identus-cloud-agent/commit/42d23fbee6a778786f8f083a193e1a0603c68717))
* **pollux:** [ATL-2639] JWT Presentation Temporal Verification ([#204](https://github.com/hyperledger/identus-cloud-agent/issues/204)) ([4ff51b6](https://github.com/hyperledger/identus-cloud-agent/commit/4ff51b65a8738086f4fa6599288ff0903509ac97))
* **pollux:** [ATL-2640] JWT Presentation Signature Verification Using DidResolver ([#212](https://github.com/hyperledger/identus-cloud-agent/issues/212)) ([258c6c0](https://github.com/hyperledger/identus-cloud-agent/commit/258c6c0d6a1e2ed63947fbdaa688c928b099749d))
* **pollux:** [ATL-2643] Verify All JWT Presentation Enclosed Credentials ([#221](https://github.com/hyperledger/identus-cloud-agent/issues/221)) ([202f565](https://github.com/hyperledger/identus-cloud-agent/commit/202f56558eafbab58e3bfa1e087eb6e58b7388f1))
* **pollux:** [ATL-2679] Improve Error Hanlding and Verification ([#239](https://github.com/hyperledger/identus-cloud-agent/issues/239)) ([6348e13](https://github.com/hyperledger/identus-cloud-agent/commit/6348e1339b1c8f8b6b1646c8730c526eac99cf4a))
* **pollux:** [ATL-2706] Universal Verification Method ([#258](https://github.com/hyperledger/identus-cloud-agent/issues/258)) ([d0c36f4](https://github.com/hyperledger/identus-cloud-agent/commit/d0c36f44a2b5dff427aef54d745b3b4e19f3f766))
* **pollux:** [ATL-2733] Allow for dates in seconds for exp, iss and iat ([#249](https://github.com/hyperledger/identus-cloud-agent/issues/249)) ([01af7c8](https://github.com/hyperledger/identus-cloud-agent/commit/01af7c8bde32d95743957e564868d1f250f6ed3e))
* **pollux:** add dal for the credential schema ATL-1342 ([#298](https://github.com/hyperledger/identus-cloud-agent/issues/298)) ([f43320f](https://github.com/hyperledger/identus-cloud-agent/commit/f43320fa4ad375551496f511fb68b37778c79a77))
* **pollux:** Add ignoreWithZeroRetries filter to SQL queries ([#445](https://github.com/hyperledger/identus-cloud-agent/issues/445)) ([d477c68](https://github.com/hyperledger/identus-cloud-agent/commit/d477c683944a30125a1caa6b5f66caa156e7f70a))
* **pollux:** add Json VC schema meta validation ([#892](https://github.com/hyperledger/identus-cloud-agent/issues/892)) ([19c42b1](https://github.com/hyperledger/identus-cloud-agent/commit/19c42b10188d1e0242bdceb1f89b6410dcc05353))
* **pollux:** Add JWT Verifiable Credential Validation ([#83](https://github.com/hyperledger/identus-cloud-agent/issues/83)) [ATL-1999] ([e0869f7](https://github.com/hyperledger/identus-cloud-agent/commit/e0869f7c817bb58f6abf920488645fb38aa470e1))
* **pollux:** Add meta fields to presentation table (for retries) ([#405](https://github.com/hyperledger/identus-cloud-agent/issues/405)) ([37dee86](https://github.com/hyperledger/identus-cloud-agent/commit/37dee8616349e2d5ae858475dd4951f064bbe9db))
* **pollux:** Add method in PresentationService need for ATL-3624 ([#422](https://github.com/hyperledger/identus-cloud-agent/issues/422)) ([9a62057](https://github.com/hyperledger/identus-cloud-agent/commit/9a620578a444bd4bebb851c2ef9c62e6293ce5c1))
* **pollux:** Add method interface in PresentationService ([#427](https://github.com/hyperledger/identus-cloud-agent/issues/427)) ([bbbc797](https://github.com/hyperledger/identus-cloud-agent/commit/bbbc79709678a67210788b658c87b2bbb8599630))
* **pollux:** Add migrations needed for JWT revocation ([#778](https://github.com/hyperledger/identus-cloud-agent/issues/778)) ([471956e](https://github.com/hyperledger/identus-cloud-agent/commit/471956e92893a7237cabca2fb065adb417678d37))
* **pollux:** Add retries field for ATL-3205 ([#380](https://github.com/hyperledger/identus-cloud-agent/issues/380)) ([c7efde6](https://github.com/hyperledger/identus-cloud-agent/commit/c7efde651c7b3e0260568290ab9dd58e2d955a70))
* **pollux:** Added a new column to the table to store the issued credential ([cd416bf](https://github.com/hyperledger/identus-cloud-agent/commit/cd416bf2ddbb0a7f24826316aa590747b33d2a38))
* **pollux:** added column credentionals_to_use and new state present… ([#288](https://github.com/hyperledger/identus-cloud-agent/issues/288)) ([#290](https://github.com/hyperledger/identus-cloud-agent/issues/290)) ([174fe52](https://github.com/hyperledger/identus-cloud-agent/commit/174fe52d2d64c75a88822662e1921d22abe26fa8))
* **pollux:** Added JWT verfication ([#280](https://github.com/hyperledger/identus-cloud-agent/issues/280)) ([a87dc17](https://github.com/hyperledger/identus-cloud-agent/commit/a87dc1718734fb4022afaaacaea13853bfff7ff8))
* **pollux:** Added New Erorr ([#363](https://github.com/hyperledger/identus-cloud-agent/issues/363)) ([5349a0e](https://github.com/hyperledger/identus-cloud-agent/commit/5349a0edf1c297a76aaf0a5e6ed6b8d97f13b16c))
* **pollux:** Added new state ([#234](https://github.com/hyperledger/identus-cloud-agent/issues/234)) ([b704abc](https://github.com/hyperledger/identus-cloud-agent/commit/b704abca020fc0d6f03f625aead2d206dba1818c))
* **pollux:** Added new state PresentationVerificationFailed ([#400](https://github.com/hyperledger/identus-cloud-agent/issues/400)) ([94031f8](https://github.com/hyperledger/identus-cloud-agent/commit/94031f880f00f61be2da2dd91f22fb92246b1609))
* **pollux:** Added the Issued credetinal check at the ApiEndpoint ([#387](https://github.com/hyperledger/identus-cloud-agent/issues/387)) ([35704f4](https://github.com/hyperledger/identus-cloud-agent/commit/35704f4bd364b9fcc25cf9049533716e2fcdc36e))
* **pollux:** alight the OAS for schema registry ([#189](https://github.com/hyperledger/identus-cloud-agent/issues/189)) ([4528c57](https://github.com/hyperledger/identus-cloud-agent/commit/4528c573fc89b9af60f6bc014e7f34433a181cb8))
* **pollux:** bump mercury version ([#271](https://github.com/hyperledger/identus-cloud-agent/issues/271)) ([a31f379](https://github.com/hyperledger/identus-cloud-agent/commit/a31f379321bbf9dc43eb851365e880572cb29bde))
* **pollux:** bump mercury version and fix queries ([#357](https://github.com/hyperledger/identus-cloud-agent/issues/357)) ([28f779a](https://github.com/hyperledger/identus-cloud-agent/commit/28f779a5a8bb24eb5ffd8fce0b5cd0a4e8387132))
* **pollux:** check prover DID is the same as VC subject when creating a VP ([#377](https://github.com/hyperledger/identus-cloud-agent/issues/377)) ([253f827](https://github.com/hyperledger/identus-cloud-agent/commit/253f8271e557297a8438e5509542026aa518835f))
* **pollux:** cleanup the code of IssueCredentialApi ([16d5fdb](https://github.com/hyperledger/identus-cloud-agent/commit/16d5fdbadf20c1597bf42b4e366f71623804dfc4))
* **pollux:** cleanup the OAS from Issue Credentials and other unused tags ([79170f8](https://github.com/hyperledger/identus-cloud-agent/commit/79170f8722053de9e477118f3f9443c97f27c512))
* **pollux:** CredentialSchema DAL, model, service and repository [#2](https://github.com/hyperledger/identus-cloud-agent/issues/2) ([#424](https://github.com/hyperledger/identus-cloud-agent/issues/424)) ([79352f0](https://github.com/hyperledger/identus-cloud-agent/commit/79352f02cdceed6d509848e97670e1d9cfaa3632))
* **pollux:** CredentialSchema service, repository and sql ([#416](https://github.com/hyperledger/identus-cloud-agent/issues/416)) ([ffa5f7e](https://github.com/hyperledger/identus-cloud-agent/commit/ffa5f7e0e4abc4d2193a4224fbe6c99d03fa7ea8))
* **pollux:** Dummy commit to make a release ([#337](https://github.com/hyperledger/identus-cloud-agent/issues/337)) ([2168e13](https://github.com/hyperledger/identus-cloud-agent/commit/2168e130e84ac2b16805e4ab3544a732f41143c6))
* **pollux:** Dummy commit to make a release (2) ([#338](https://github.com/hyperledger/identus-cloud-agent/issues/338)) ([4c7516c](https://github.com/hyperledger/identus-cloud-agent/commit/4c7516c20c65906c3188f04ab1b7dc1dfd2e7822))
* **pollux:** fix shared version to 0.2.0 ([4809414](https://github.com/hyperledger/identus-cloud-agent/commit/48094148f26b79ed76a044cb65e6e4aaf00aebb1))
* **pollux:** fix the lookup count in the credential schema DAL ([#315](https://github.com/hyperledger/identus-cloud-agent/issues/315)) ([e0831e8](https://github.com/hyperledger/identus-cloud-agent/commit/e0831e884d4edee131d9e3999ab0edb5144a5d04))
* **pollux:** get rid of 'drop(1)' and 'dropRight(1)' on credential attachment value ([#341](https://github.com/hyperledger/identus-cloud-agent/issues/341)) ([b0a14d4](https://github.com/hyperledger/identus-cloud-agent/commit/b0a14d459cd806353b73461194a847ec03551332))
* **pollux:** implement Issue Credential v2 Protocol ([#144](https://github.com/hyperledger/identus-cloud-agent/issues/144)) ([a80702f](https://github.com/hyperledger/identus-cloud-agent/commit/a80702f5b255d8079085a6ec27c87baa6a23ac59)), closes [#92](https://github.com/hyperledger/identus-cloud-agent/issues/92)
* **pollux:** implement the DAL for CRUD on the verifiable policy entity. ATL-2478 ([#368](https://github.com/hyperledger/identus-cloud-agent/issues/368)) ([b290a18](https://github.com/hyperledger/identus-cloud-agent/commit/b290a18a2aef67cfded20062e111f85bad7ad248))
* **pollux:** integrate castor resolver to pollux-jwt-vc library ([#250](https://github.com/hyperledger/identus-cloud-agent/issues/250)) ([ea10db5](https://github.com/hyperledger/identus-cloud-agent/commit/ea10db5f693758f8cbff5be839d691806f161158))
* **pollux:** minor changes related to connect implementation ([#171](https://github.com/hyperledger/identus-cloud-agent/issues/171)) ([4573ef8](https://github.com/hyperledger/identus-cloud-agent/commit/4573ef81…
github-actions bot pushed a commit that referenced this pull request Apr 26, 2024
# [1.32.0-snapshot.1](cloud-agent-v1.31.0...cloud-agent-v1.32.0-snapshot.1) (2024-04-26)

### Bug Fixes

* add shared-crypto module and apollo wrapper for other key types ([#958](#958)) ([7eaa66c](7eaa66c))
* Check purpose of the keys ([#968](#968)) ([4b8e48d](4b8e48d))
* Integration Test ([#974](#974)) ([847eb2f](847eb2f))
* **prism-agent:** add missing 'PresentationVerificationFailed' status to REST API response enum ([#948](#948)) ([9a38cc9](9a38cc9))
* use apollo for secp256k1 in shared-crypto ([#971](#971)) ([dd5e20b](dd5e20b))

### Features

* add sample maintainers.md ([#878](#878)) ([c6a41ed](c6a41ed))
* **agent:** verification API integration test + documentation ATL-6775 ([#986](#986)) ([9308b21](9308b21))
* Align the repo with new name identus-cloud-agent ([#973](#973)) ([9fc7bb0](9fc7bb0))
* Configurations load improvement ([#954](#954)) ([dfb7577](dfb7577))
* **connect:** ATL-6599 Use ZIO Failures and Defects effectively + RFC-9457 in connect ([#927](#927)) ([eb898e0](eb898e0))
* key management for Ed25519 and X25519 ([#966](#966)) ([a0f6819](a0f6819))
* Vc Verification Api ([#975](#975)) ([f0a1f2c](f0a1f2c))

Signed-off-by: Allain Magyar <[email protected]>
ryjones pushed a commit that referenced this pull request Apr 26, 2024
# [1.32.0-snapshot.1](cloud-agent-v1.31.0...cloud-agent-v1.32.0-snapshot.1) (2024-04-26)

### Bug Fixes

* add shared-crypto module and apollo wrapper for other key types ([#958](#958)) ([7eaa66c](7eaa66c))
* Check purpose of the keys ([#968](#968)) ([4b8e48d](4b8e48d))
* Integration Test ([#974](#974)) ([847eb2f](847eb2f))
* **prism-agent:** add missing 'PresentationVerificationFailed' status to REST API response enum ([#948](#948)) ([9a38cc9](9a38cc9))
* use apollo for secp256k1 in shared-crypto ([#971](#971)) ([dd5e20b](dd5e20b))

### Features

* add sample maintainers.md ([#878](#878)) ([c6a41ed](c6a41ed))
* **agent:** verification API integration test + documentation ATL-6775 ([#986](#986)) ([9308b21](9308b21))
* Align the repo with new name identus-cloud-agent ([#973](#973)) ([9fc7bb0](9fc7bb0))
* Configurations load improvement ([#954](#954)) ([dfb7577](dfb7577))
* **connect:** ATL-6599 Use ZIO Failures and Defects effectively + RFC-9457 in connect ([#927](#927)) ([eb898e0](eb898e0))
* key management for Ed25519 and X25519 ([#966](#966)) ([a0f6819](a0f6819))
* Vc Verification Api ([#975](#975)) ([f0a1f2c](f0a1f2c))

Signed-off-by: Allain Magyar <[email protected]>
hyperledger-bot added a commit that referenced this pull request Apr 26, 2024
# [1.32.0](cloud-agent-v1.31.0...cloud-agent-v1.32.0) (2024-04-26)

### Bug Fixes

* add shared-crypto module and apollo wrapper for other key types ([#958](#958)) ([7eaa66c](7eaa66c))
* Check purpose of the keys ([#968](#968)) ([4b8e48d](4b8e48d))
* Integration Test ([#974](#974)) ([847eb2f](847eb2f))
* **prism-agent:** add missing 'PresentationVerificationFailed' status to REST API response enum ([#948](#948)) ([9a38cc9](9a38cc9))
* use apollo for secp256k1 in shared-crypto ([#971](#971)) ([dd5e20b](dd5e20b))

### Features

* add sample maintainers.md ([#878](#878)) ([c6a41ed](c6a41ed))
* **agent:** verification API integration test + documentation ATL-6775 ([#986](#986)) ([9308b21](9308b21))
* Align the repo with new name identus-cloud-agent ([#973](#973)) ([9fc7bb0](9fc7bb0))
* Configurations load improvement ([#954](#954)) ([dfb7577](dfb7577))
* **connect:** ATL-6599 Use ZIO Failures and Defects effectively + RFC-9457 in connect ([#927](#927)) ([eb898e0](eb898e0))
* key management for Ed25519 and X25519 ([#966](#966)) ([a0f6819](a0f6819))
* Vc Verification Api ([#975](#975)) ([f0a1f2c](f0a1f2c))

Signed-off-by: Allain Magyar <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants