Mourits de Beer
Mourits de Beer
The current validation error message: `'Not a valid URL.'` is not descriptive enough to help the user, especially when they are passing a value that would appear to be a...
Move all the route handling functions to separate modules in `routes/handlers/`. Makes it easier to maintain `routes/spec.js`, and to write tests for each route. Which reminds me. Todo: write tests...
Scenario: - we have 2 tenants created on a multitenant agent - both agents have a published, public did - agent 1 creates invitation with `use_public_did = True`, and `auto_accept...
When setting the connection metadata on a connection record (using the endorse transaction API, particularly the [`set_endorser_role`](https://github.com/hyperledger/aries-cloudagent-python/blob/760e9bfa065bb718902141184d3abfbfb613fbe6/aries_cloudagent/protocols/endorse_transaction/v1_0/routes.py#L564) and [`set_endorser_info`](https://github.com/hyperledger/aries-cloudagent-python/blob/760e9bfa065bb718902141184d3abfbfb613fbe6/aries_cloudagent/protocols/endorse_transaction/v1_0/routes.py#L604) methods), as far as I can tell, the operations seem to...
Resolves #2437 This PR essentially updates the model schema definitions (used in the Swagger/OpenAPI spec) to support verkeys generated with did:key + BBS signature type. At present, the OpenAPI schema...
Working with the [aries-cloudcontroller](https://github.com/didx-xyz/aries-cloudcontroller-python) (which is a client generated from the ACA-Py openapi spec), creating a DID with Bbs `bls12381g2` key type, yields a 422 unprocessable entity, due to the...
Some request schemas are defined with custom Marshmallow types, such as in the CredentialSchema: ```py class CredentialSchema(BaseModelSchema): ... context = fields.List( UriOrDictField( required=True, ), data_key="@context", required=True, description="The JSON-LD context of...
Going through changelogs of updated dependencies doesn't indicate any potential breaking changes, but it's hard to know if this repo has no tests. It's primarily `rlp` which has gone from...
Re: https://github.com/bcgov/von-network/pull/275 I notice we're missing automated tests in this repo. Maybe there's a reason for that, but maintainability goes up 100 fold when tests can be run on command,...
The `aiohttp-apispec` project is no longer maintained, and is pinned to some very old versions of `apispec` and `webargs`. It appeared to be the only library that would throw deprecation...