Mourits de Beer
Mourits de Beer
Testing pydid upgrade to pydantic v2: https://github.com/Indicio-tech/pydid/pull/72 Edit: Great! All checks have passed. Marking as draft until pydid update is released
Good day, Let's say we are interested in defining credential schemas for things such as passports, ID cards and driver's licenses -- these are fairly standard, global documents. Do you...
oops - this PR was meant to merge to my fork However, I may as well keep it open for comment from @maximdanilchenko I've upgraded dependencies and got the tests...
Does aries-askar support paginated queries? Coming from the ACA-Py world, all I can see that's implemented there is fetch by filter, or fetch all. When working with potentially millions of...
I'd like to propose that our usage of the [PyLD](https://github.com/digitalbazaar/pyld) dependency be swapped out for the more versatile and better maintained [RDFLib](https://github.com/RDFLib/rdflib). Let me bullet point some reasons for this...
⬆️ Upgrades: - `black`: 24.3.0 -> 24.4.2 - `ruff`: 0.1.2 -> 0.4.4 - `pre-commit`: 3.3.3 -> 3.7.0
`nest_asyncio` is used in the JSON-LD document loader methods (`aries_cloudagent/vc/ld_proofs/document_loader.py`) The incompatibility was observed when working with the `redis_events` plugin in [hyperledger/aries-acapy-plugins](https://github.com/hyperledger/aries-acapy-plugins), which uses `uvicorn`. After attempting to update `uvicorn`...
:arrow_up: Upgrades: - `pytest`: 8.0.0 -> 8.2.0 - `pytest-asyncio`: 0.23.5 -> 0.23.6 - `pytest-cov`: 4.1.0 -> 5.0.0 - `pytest-ruff`: 0.1.1 -> 0.3.2 ➖ Removes: - `mock` - This dependency is...
I ran bump-pydantic on one of our projects, and it has auto-converted the following, from: ```py @root_validator(pre=True) @classmethod ``` to: ```py @model_validator(mode="before") @classmethod @classmethod ``` This PR amends this behavior...
Good day, Just a quick question, because it doesn't appear to have been suggested here before: Have you considered replacing the default `json` library with [`orjson`](https://github.com/ijl/orjson)? It boasts 10-50x faster...