Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix VC verification (jsigs/expo-crypto related). #640

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# learner-credential-wallet Changelog
## 2.1.2 - build 82

### Fixed
- Fix signature verification (`@sphereon/isomorphic-webcrypto` was failing upstream in `jsonld-signatures`),
and has been replaced with `expo-crypto` usage. Also fixes StatusList `Buffer` error.

## 2.1.1 - build 81

### Changed
Update to latest library versions, add support for VC DM 2.0.
- Update to latest library versions, add support for VC DM 2.0.

## 2.1.0 - build 80
First official release to app stores post RN Upgrade and conversion to Expo. Releases are now back on `main` branch.
- First official release to app stores post RN Upgrade and conversion to Expo. Releases are now back on `main` branch.

### Added
- Add support for the OBv3 name property (derived from `identifierHash` when `identifierType == 'name'`).
Expand Down
67 changes: 56 additions & 11 deletions app/mock/credential.ts

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion app/types/declarations.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ declare module '@digitalcredentials/vc';
declare module '@digitalcredentials/vc-bitstring-status-list';
declare module '@digitalcredentials/vc-status-list';
declare module '@digitalcredentials/vpqr';
declare module '@digitalbazaar/http-client';
declare module '@digitalcredentials/jsonld-signatures';
declare module '@digitalcredentials/ed25519-signature-2020' {
export class Ed25519Signature2020 {
Expand Down
Loading