decentralized-identity / ethr-did-resolver

DID resolver for Ethereum Addresses with support for key management

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG] ISO Dates used in didDocumentMetadata should drop the millisecond component

mirceanis opened this issue ยท comments

According to the did spec, the dateTime strings that appear during resolution should not contain sub-second decimal precision.

didDocumentMetadata: {
  updated: '2021-03-01T12:46:16.000Z'
  nextUpdate: '2021-03-22T18:14:29.000Z'
}

should be:

didDocumentMetadata: {
  updated: '2021-03-01T12:46:16Z'
  nextUpdate: '2021-03-22T18:14:29Z'
}

๐ŸŽ‰ This issue has been resolved in version 4.3.3 ๐ŸŽ‰

The release is available on:

Your semantic-release bot ๐Ÿ“ฆ๐Ÿš€