File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11# @digitalcredentials/vc ChangeLog
22
3- ## 9.0.0 - 2024-09-30
3+ ## 9.0.1 - TBD
4+
5+ ### Fixed
6+ - run status check before running expiry check because expiry check throws error that had prevented the status check from running
7+
8+ ## 9.0.1 - 2024-09-30
49
510### Fixed
611- add signature checks to the log before running other verification checks whose errors might prevent that logging
Original file line number Diff line number Diff line change @@ -550,7 +550,7 @@ async function _verifyPresentation(options = {}) {
550550
551551 for ( const [ i , credentialResult ] of credentialResults . entries ( ) ) {
552552 credentialResult . credentialId = credentials [ i ] . id ;
553- credentialResult . credential = credentials [ i ]
553+ credentialResult . credential = credentials [ i ] ;
554554 }
555555
556556 const allCredentialsVerified = credentialResults . every ( r => r . verified ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " @digitalcredentials/vc" ,
3- "version" : " 9.0.1-beta.1 " ,
3+ "version" : " 9.0.2 " ,
44 "description" : " Verifiable Credentials JavaScript library." ,
55 "homepage" : " https://github.com/digitalcredentials/vc" ,
66 "repository" : {
You can’t perform that action at this time.
0 commit comments