@aries-framework/anoncreds
Advanced tools
Changelog
0.4.0 (2023-06-03)
anoncreds-rs: revocation status list as JSON (#1422) (ec5c233)
anoncreds-rs: save revocation registry index (#1351) (1bda3f0)
anoncreds: include prover_did for legacy indy (#1342) (d38ecb1)
anoncreds: make revocation status list inline with the spec (#1421) (644e860)
askar: generate nonce suitable for anoncreds (#1295) (ecce0a7)
connection id in sessions for new connections (#1383) (0351eec)
connections: store imageUrl when using DIDExchange (#1433) (66afda2)
core: repository event when calling deleteById (#1356) (953069a)
create new socket if socket state is 'closing' (#1337) (da8f2ad)
Emit RoutingCreated event for mediator routing record (#1445) (4145957)
expose indy pool configs and action menu messages (#1333) (518e5e4)
indy-vdr: export relevant packages from root (#1291) (b570e0f)
jsonld credential format identifier version (#1412) (c46a6b8)
reference to indyLedgers in IndyXXXNotConfiguredError (#1397) (d6e2ea2)
registered connection problem report message handler (#1462) (d2d8ee0)
remove deleteOnFinish
and added documentation (#1418) (c8b16a6)
return HTTP 415 if unsupported content type (#1313) (122cdde)
samples: dummy module response message type (#1321) (64a5da9)
seed and private key validation and return type in registrars (#1324) (c0e5339)
set updateAt on records when updating a record (#1272) (2669d7d)
tenant: Correctly configure storage for multi tenant agents (#1359) (7795975), closes hyperledger#1353
refactor!: remove Dispatcher.registerMessageHandler (#1354) (78ecf1e), closes #1354
refactor!: set default outbound content type to didcomm v1 (#1314) (4ab3b54), closes #1314
feat!: add data, cache and temp dirs to FileSystem (#1306) (ff5596d), closes #1306
Dispatcher.registerMessageHandler
has been removed in favour of MessageHandlerRegistry.registerMessageHandler
. If you want to register message handlers in an extension module, you can use directly agentContext.dependencyManager.registerMessageHandlers
.Signed-off-by: Ariel Gentile gentilester@gmail.com
didcommMimeType
in Agent
's init config: const agent = new Agent({ config: {
...
didCommMimeType: DidCommMimeType.V0
}, ... })
If you specified a custom path in FileSystem
object constructor, you now must provide an object containing baseDataPath
, baseTempPath
and baseCachePath
. They can point to the same path, although it's recommended to specify different path to avoid future file clashes.