Skip to content

Version 0.6.0

Choose a tag to compare

@astagi astagi released this 27 Dec 15:12
· 84 commits to master since this release

🎉 This release implements Certificate Revocation List and requires MongoDB >= 5.x. If you don't want to use MongoDB to store CRL,
read how to write your own CRL management system.

⚠️ Breaking:

  1. Downloading and caching rules, CRL data and DSCs using Service module now requires setUp and tearDown calls
const {Service} = require('verificac19-sdk');

const main = async () => {
  await Service.setUp();
  await Service.updateAll();
  await Service.tearDown();
}
  1. checkRules is now async
const rulesOk = await Validator.checkRules(myDCC).result;