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

Switch to DCC fork of [email protected]. #24

Merged
merged 1 commit into from
Aug 4, 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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# did-web-driver ChangeLog

## 4.0.1 -
## 5.0.0 -

### Changed
- Update to use published `@digitalbazaar/http-client` package v4.1.0.
- **BREAKING**: Switch to DCC `http-client` fork, v5.0

## 4.0.0 - 2024-01-23
Note: API and usage should remain the same.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"browser": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"dependencies": {
"@digitalbazaar/http-client": "^4.1.0",
"@digitalcredentials/http-client": "^5.0.1",
"@digitalcredentials/bnid": "^3.0.1",
"@digitalcredentials/did-io": "^1.0.2",
"did-context": "^3.1.1",
Expand All @@ -57,7 +57,7 @@
"crypto-ld": "^6.0.0",
"eslint": "^8.46.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "5.2.2"
Expand Down
2 changes: 1 addition & 1 deletion src/DidWebResolver.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable @typescript-eslint/strict-boolean-expressions */
import { httpClient } from '@digitalbazaar/http-client'
import { httpClient } from '@digitalcredentials/http-client'
import * as didIo from '@digitalcredentials/did-io'
import * as ed25519Context from 'ed25519-signature-2020-context'
import * as x25519Context from 'x25519-key-agreement-2020-context'
Expand Down
2 changes: 1 addition & 1 deletion src/declarations.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module '@digitalbazaar/http-client'
declare module '@digitalcredentials/http-client'
declare module '@digitalcredentials/did-io'
declare module 'ed25519-signature-2020-context'
declare module 'x25519-key-agreement-2020-context'
Expand Down
Loading