Skip to content

Commit

Permalink
bump dwn-sdk-js, dwn-sql-store and @web5/dids
Browse files Browse the repository at this point in the history
  • Loading branch information
LiranCohen committed Mar 22, 2024
1 parent 3436b21 commit ce59147
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 22 deletions.
51 changes: 35 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@web5/dwn-server",
"type": "module",
"version": "0.1.13",
"version": "0.1.14",
"files": [
"dist",
"src"
Expand All @@ -26,8 +26,8 @@
"url": "https://github.com/TBD54566975/dwn-server/issues"
},
"dependencies": {
"@tbd54566975/dwn-sdk-js": "0.2.18",
"@tbd54566975/dwn-sql-store": "0.2.10",
"@tbd54566975/dwn-sdk-js": "0.2.20",
"@tbd54566975/dwn-sql-store": "0.2.11",
"better-sqlite3": "^8.5.0",
"body-parser": "^1.20.2",
"bytes": "3.1.2",
Expand Down Expand Up @@ -60,7 +60,7 @@
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"@web5/dids": "0.4.1",
"@web5/dids": "0.4.2",
"c8": "8.0.1",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
Expand Down
4 changes: 2 additions & 2 deletions tests/test-dwn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from '@tbd54566975/dwn-sql-store';

import { getDialectFromURI } from '../src/storage.js';
import { DidDht, DidIon, DidKey, DidResolver } from '@web5/dids';
import { DidDht, DidIon, DidKey, UniversalResolver } from '@web5/dids';

export async function getTestDwn(options: {
tenantGate?: TenantGate,
Expand All @@ -21,7 +21,7 @@ export async function getTestDwn(options: {
const eventStream = withEvents ? new EventEmitterStream() : undefined;

// NOTE: no resolver cache used here to avoid locking LevelDB
const didResolver = new DidResolver({
const didResolver = new UniversalResolver({
didResolvers : [DidDht, DidIon, DidKey],
});

Expand Down

0 comments on commit ce59147

Please sign in to comment.