From 5f3d201b280f7b7d9d473c79bb3965f1d2efc8fb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 02:37:54 +0000 Subject: [PATCH] fix(deps): update all non-major dependencies --- .github/workflows/build-and-test-on-pr.yml | 32 +++++++-------- .../workflows/build-test-publish-on-push.yml | 40 +++++++++---------- .github/workflows/scorecard.yml | 4 +- package.json | 20 +++++----- packages/cli/package.json | 14 +++---- packages/core-types/package.json | 2 +- packages/core/package.json | 4 +- packages/credential-eip712/package.json | 2 +- packages/credential-jwt/package.json | 2 +- packages/credential-ld/package.json | 4 +- packages/credential-status/package.json | 2 +- packages/credential-w3c/package.json | 4 +- packages/data-store-json/package.json | 4 +- packages/data-store/package.json | 4 +- packages/did-comm/package.json | 4 +- packages/did-discovery/package.json | 2 +- packages/did-jwt/package.json | 2 +- packages/did-provider-ethr/package.json | 2 +- packages/did-provider-ion/package.json | 2 +- packages/did-provider-jwk/package.json | 2 +- packages/did-provider-key/package.json | 2 +- packages/did-provider-peer/package.json | 2 +- packages/did-provider-pkh/package.json | 2 +- packages/did-provider-web/package.json | 2 +- packages/did-resolver/package.json | 2 +- packages/key-manager/package.json | 4 +- packages/kms-local/package.json | 2 +- packages/kms-web3/package.json | 2 +- packages/kv-store/package.json | 12 +++--- packages/message-handler/package.json | 2 +- packages/remote-client/package.json | 2 +- packages/remote-server/package.json | 12 +++--- packages/selective-disclosure/package.json | 4 +- packages/test-react-app/package.json | 14 +++---- packages/url-handler/package.json | 4 +- packages/utils/package.json | 4 +- 36 files changed, 112 insertions(+), 112 deletions(-) diff --git a/.github/workflows/build-and-test-on-pr.yml b/.github/workflows/build-and-test-on-pr.yml index cde521f65..253eccf86 100644 --- a/.github/workflows/build-and-test-on-pr.yml +++ b/.github/workflows/build-and-test-on-pr.yml @@ -6,14 +6,14 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 with: fetch-depth: 0 - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' @@ -21,7 +21,7 @@ jobs: - run: pnpm install - run: pnpm build - name: 'Save build output' - uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' @@ -34,7 +34,7 @@ jobs: shard: [1, 2, 3, 4, 5] services: postgres: - image: postgres:16.0 + image: postgres:16.14 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: test123 @@ -42,18 +42,18 @@ jobs: - 5432:5432 options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Restore build output' - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' restore-keys: '${{ runner.os }}-build-${{ github.sha }}' fail-on-cache-miss: true - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' @@ -77,7 +77,7 @@ jobs: runs-on: ubuntu-latest needs: [test-integration] steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 with: fetch-depth: 0 - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 @@ -87,7 +87,7 @@ jobs: path: coverage - name: Merge Code Coverage run: npx nyc merge coverage/ coverage/coverage-final.json - - uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 + - uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos but sometimes fails without :| fail_ci_if_error: true @@ -96,18 +96,18 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Restore build output' - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' restore-keys: '${{ runner.os }}-build-${{ github.sha }}' fail-on-cache-miss: true - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' @@ -120,18 +120,18 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Restore build output' - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' restore-keys: '${{ runner.os }}-build-${{ github.sha }}' fail-on-cache-miss: true - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' diff --git a/.github/workflows/build-test-publish-on-push.yml b/.github/workflows/build-test-publish-on-push.yml index 428d3e79b..5130d5fdb 100644 --- a/.github/workflows/build-test-publish-on-push.yml +++ b/.github/workflows/build-test-publish-on-push.yml @@ -13,15 +13,15 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 with: fetch-depth: 0 persist-credentials: false - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' @@ -29,7 +29,7 @@ jobs: - run: pnpm install - run: pnpm build - name: 'Save build output' - uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' @@ -42,7 +42,7 @@ jobs: shard: [ 1, 2, 3, 4, 5 ] services: postgres: - image: postgres:16.0 + image: postgres:16.14 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: test123 @@ -50,18 +50,18 @@ jobs: - 5432:5432 options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Restore build output' - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' restore-keys: '${{ runner.os }}-build-${{ github.sha }}' fail-on-cache-miss: true - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' @@ -85,7 +85,7 @@ jobs: runs-on: ubuntu-latest needs: [ test-integration ] steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 with: fetch-depth: 0 persist-credentials: false @@ -96,7 +96,7 @@ jobs: path: coverage - name: Merge Code Coverage run: npx nyc merge coverage/ coverage/coverage-final.json - - uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 + - uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos but sometimes fails without :| fail_ci_if_error: false @@ -105,18 +105,18 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Restore build output' - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' restore-keys: '${{ runner.os }}-build-${{ github.sha }}' fail-on-cache-miss: true - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' @@ -129,18 +129,18 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Restore build output' - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' restore-keys: '${{ runner.os }}-build-${{ github.sha }}' fail-on-cache-miss: true - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' @@ -164,21 +164,21 @@ jobs: GH_EMAIL: ${{secrets.GH_EMAIL}} runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 with: fetch-depth: 0 token: ${{secrets.GH_TOKEN}} - - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 + - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 with: version: 10 - name: 'Setup Node.js with pnpm cache' - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 + uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 with: node-version: 20 cache: 'pnpm' - name: 'Restore build output' - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 with: path: '${{ github.workspace }}' key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}' diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index c4df9be5b..fd242eb03 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -34,7 +34,7 @@ jobs: steps: - name: "Checkout code" - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 with: persist-credentials: false @@ -73,6 +73,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard (optional). # Commenting out will disable upload of results to your repo's Code Scanning dashboard - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10 + uses: github/codeql-action/upload-sarif@7188fc363630916deb702c7fdcf4e481b751f97a # v4.37.1 with: sarif_file: results.sarif diff --git a/package.json b/package.json index ea1aa8d91..d3bc7a737 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ }, "devDependencies": { "@jest/globals": "29.7.0", - "@metamask/eth-sig-util": "7.0.1", + "@metamask/eth-sig-util": "7.0.3", "@microsoft/api-documenter": "7.26.5", "@microsoft/api-extractor": "7.49.1", "@microsoft/api-extractor-model": "7.30.2", @@ -36,12 +36,12 @@ "@noble/hashes": "1.7.1", "@stablelib/ed25519": "1.0.3", "@transmute/credentials-context": "0.7.0-unstable.82", - "@types/express": "4.17.21", + "@types/express": "4.17.25", "@types/fs-extra": "11.0.4", - "@types/jest": "29.5.12", + "@types/jest": "29.5.14", "@types/node": "20.17.4", "@types/uuid": "9.0.8", - "caip": "1.1.0", + "caip": "1.1.1", "credential-status": "3.0.4", "cross-env": "7.0.3", "did-jwt": "8.0.8", @@ -58,18 +58,18 @@ "json-schema": "0.4.0", "lerna": "8.1.2", "lerna-changelog": "2.2.0", - "nock": "14.0.10", + "nock": "14.0.16", "openapi-types": "12.1.3", "prettier": "3.4.2", - "rimraf": "5.0.5", + "rimraf": "5.0.10", "semantic-release": "23.1.1", "sqlite3": "5.1.7", - "ts-jest": "29.4.1", - "ts-json-schema-generator": "1.5.0", + "ts-jest": "29.4.11", + "ts-json-schema-generator": "1.5.1", "ts-node": "10.9.2", - "typeorm": "0.3.20", + "typeorm": "0.3.31", "typescript": "5.7.3", - "uint8arrays": "5.1.0", + "uint8arrays": "5.1.1", "uuid": "9.0.1", "web-did-resolver": "2.0.29" }, diff --git a/packages/cli/package.json b/packages/cli/package.json index 0e918a5c5..2cf2855f3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -100,14 +100,14 @@ "yaml": "^2.3.4" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/express": "4.17.17", - "@types/inquirer": "9.0.3", - "@types/inquirer-autocomplete-prompt": "3.0.0", + "@types/debug": "4.1.13", + "@types/express": "4.17.25", + "@types/inquirer": "9.0.10", + "@types/inquirer-autocomplete-prompt": "3.0.3", "@types/node-fetch": "3.0.3", - "@types/passport-http-bearer": "1.0.37", - "@types/qrcode-terminal": "0.12.0", - "@types/url-parse": "1.4.8", + "@types/passport-http-bearer": "1.0.42", + "@types/qrcode-terminal": "0.12.2", + "@types/url-parse": "1.4.11", "@types/ws": "8.5.5", "typescript": "5.7.3" }, diff --git a/packages/core-types/package.json b/packages/core-types/package.json index 12bba6ae1..0e9246aff 100644 --- a/packages/core-types/package.json +++ b/packages/core-types/package.json @@ -38,7 +38,7 @@ "did-resolver": "^4.1.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/core/package.json b/packages/core/package.json index 729756724..b34147ee4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -18,8 +18,8 @@ "z-schema": "^6.0.1" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/events": "3.0.0", + "@types/debug": "4.1.13", + "@types/events": "3.0.3", "typescript": "5.7.3" }, "files": [ diff --git a/packages/credential-eip712/package.json b/packages/credential-eip712/package.json index 8461f8ee0..da1536ddf 100644 --- a/packages/credential-eip712/package.json +++ b/packages/credential-eip712/package.json @@ -20,7 +20,7 @@ "eip-712-types-generation": "^0.1.6" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/credential-jwt/package.json b/packages/credential-jwt/package.json index e8139a349..2386a32a3 100644 --- a/packages/credential-jwt/package.json +++ b/packages/credential-jwt/package.json @@ -20,7 +20,7 @@ "did-jwt-vc": "^4.0.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/credential-ld/package.json b/packages/credential-ld/package.json index b9269776d..236de2f07 100644 --- a/packages/credential-ld/package.json +++ b/packages/credential-ld/package.json @@ -29,11 +29,11 @@ "did-resolver": "^4.1.0" }, "resolutions": { - "@types/react": "19.0.8", + "@types/react": "19.2.17", "jsonld": "npm:@digitalcredentials/jsonld@^6.0.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "borc": "3.0.0", "typescript": "5.7.3" }, diff --git a/packages/credential-status/package.json b/packages/credential-status/package.json index d9c5f0d78..f3bb8fa46 100644 --- a/packages/credential-status/package.json +++ b/packages/credential-status/package.json @@ -17,7 +17,7 @@ "did-resolver": "^4.1.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/credential-w3c/package.json b/packages/credential-w3c/package.json index 61a4dc7d2..7b2408f58 100644 --- a/packages/credential-w3c/package.json +++ b/packages/credential-w3c/package.json @@ -23,8 +23,8 @@ "uuid": "^11.0.0" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/uuid": "9.0.2", + "@types/debug": "4.1.13", + "@types/uuid": "9.0.8", "typescript": "5.7.3" }, "files": [ diff --git a/packages/data-store-json/package.json b/packages/data-store-json/package.json index 9526f1034..eb3728249 100644 --- a/packages/data-store-json/package.json +++ b/packages/data-store-json/package.json @@ -20,9 +20,9 @@ "uuid": "^11.0.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "@types/ungap__structured-clone": "1.2.0", - "@types/uuid": "9.0.2", + "@types/uuid": "9.0.8", "typescript": "5.7.3" }, "files": [ diff --git a/packages/data-store/package.json b/packages/data-store/package.json index ee1589abf..8c990a883 100644 --- a/packages/data-store/package.json +++ b/packages/data-store/package.json @@ -20,8 +20,8 @@ "uuid": "^11.0.0" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/uuid": "9.0.2", + "@types/debug": "4.1.13", + "@types/uuid": "9.0.8", "sqlite3": "5.1.7", "typescript": "5.7.3" }, diff --git a/packages/did-comm/package.json b/packages/did-comm/package.json index ab3002df5..bec657dd3 100644 --- a/packages/did-comm/package.json +++ b/packages/did-comm/package.json @@ -32,8 +32,8 @@ "uuid": "^11.0.0" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/uuid": "9.0.2", + "@types/debug": "4.1.13", + "@types/uuid": "9.0.8", "sqlite3": "5.1.7", "typescript": "5.7.3" }, diff --git a/packages/did-discovery/package.json b/packages/did-discovery/package.json index 8439ef19b..0b935869a 100644 --- a/packages/did-discovery/package.json +++ b/packages/did-discovery/package.json @@ -21,7 +21,7 @@ "debug": "^4.3.3" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/did-jwt/package.json b/packages/did-jwt/package.json index f0bfdbd3f..57a0962ee 100644 --- a/packages/did-jwt/package.json +++ b/packages/did-jwt/package.json @@ -17,7 +17,7 @@ "did-resolver": "^4.1.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/did-provider-ethr/package.json b/packages/did-provider-ethr/package.json index 3639f1b53..456875dd3 100644 --- a/packages/did-provider-ethr/package.json +++ b/packages/did-provider-ethr/package.json @@ -18,7 +18,7 @@ "ethr-did": "^3.0.21" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/did-provider-ion/package.json b/packages/did-provider-ion/package.json index e0660ea79..3510c7de8 100644 --- a/packages/did-provider-ion/package.json +++ b/packages/did-provider-ion/package.json @@ -29,7 +29,7 @@ "multihashes": "^4.0.3" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "peerDependencies": { diff --git a/packages/did-provider-jwk/package.json b/packages/did-provider-jwk/package.json index 5134c6eb9..6d4637db6 100644 --- a/packages/did-provider-jwk/package.json +++ b/packages/did-provider-jwk/package.json @@ -18,7 +18,7 @@ "did-resolver": "^4.1.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "@veramo/core": "workspace:*", "@veramo/did-resolver": "workspace:*", "@veramo/key-manager": "workspace:*", diff --git a/packages/did-provider-key/package.json b/packages/did-provider-key/package.json index 52a2887c7..4a02a299c 100644 --- a/packages/did-provider-key/package.json +++ b/packages/did-provider-key/package.json @@ -18,7 +18,7 @@ "ethers": "^6.13.4" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "resolutions": { diff --git a/packages/did-provider-peer/package.json b/packages/did-provider-peer/package.json index 010db2c05..33de584b8 100644 --- a/packages/did-provider-peer/package.json +++ b/packages/did-provider-peer/package.json @@ -18,7 +18,7 @@ "did-resolver": "^4.1.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "resolutions": { diff --git a/packages/did-provider-pkh/package.json b/packages/did-provider-pkh/package.json index 6bc5a1b72..6dcc62629 100644 --- a/packages/did-provider-pkh/package.json +++ b/packages/did-provider-pkh/package.json @@ -19,7 +19,7 @@ "ethers": "^6.13.4" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/did-provider-web/package.json b/packages/did-provider-web/package.json index 4068756ec..6ca5fac80 100644 --- a/packages/did-provider-web/package.json +++ b/packages/did-provider-web/package.json @@ -16,7 +16,7 @@ "debug": "^4.3.3" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/did-resolver/package.json b/packages/did-resolver/package.json index 8f1126e7b..6ff6881e5 100644 --- a/packages/did-resolver/package.json +++ b/packages/did-resolver/package.json @@ -17,7 +17,7 @@ "did-resolver": "^4.1.0" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "ethr-did-resolver": "11.0.3", "typescript": "5.7.3", "web-did-resolver": "2.0.29" diff --git a/packages/key-manager/package.json b/packages/key-manager/package.json index 7eebca0d3..7ab3c7af7 100644 --- a/packages/key-manager/package.json +++ b/packages/key-manager/package.json @@ -20,8 +20,8 @@ "uuid": "^11.0.0" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/uuid": "9.0.2", + "@types/debug": "4.1.13", + "@types/uuid": "9.0.8", "typescript": "5.7.3" }, "files": [ diff --git a/packages/kms-local/package.json b/packages/kms-local/package.json index c9e5fd7a4..100c1acab 100644 --- a/packages/kms-local/package.json +++ b/packages/kms-local/package.json @@ -20,7 +20,7 @@ "ethers": "^6.13.4" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/kms-web3/package.json b/packages/kms-web3/package.json index 748fd97ec..ae72b05ef 100644 --- a/packages/kms-web3/package.json +++ b/packages/kms-web3/package.json @@ -16,7 +16,7 @@ "ethers": "^6.13.4" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/kv-store/package.json b/packages/kv-store/package.json index 7305c4cfd..f0f445c77 100644 --- a/packages/kv-store/package.json +++ b/packages/kv-store/package.json @@ -21,17 +21,17 @@ "uint8arrays": "^4.0.6" }, "devDependencies": { - "@keyv/compress-brotli": "1.1.4", + "@keyv/compress-brotli": "1.1.6", "@keyv/compress-gzip": "1.2.3", - "@keyv/sqlite": "3.6.5", - "@keyv/test-suite": "1.9.2", - "@types/debug": "4.1.8", + "@keyv/sqlite": "3.6.7", + "@keyv/test-suite": "1.9.5", + "@types/debug": "4.1.13", "@types/events": "^3.0.0", - "@types/json-buffer": "3.0.0", + "@types/json-buffer": "3.0.2", "@types/node": "20.17.4", "eslint": "8.57.1", "eslint-plugin-promise": "6.6.0", - "keyv": "4.5.3", + "keyv": "4.5.4", "timekeeper": "2.3.1", "typescript": "5.7.3" }, diff --git a/packages/message-handler/package.json b/packages/message-handler/package.json index 8260787b3..2091535b4 100644 --- a/packages/message-handler/package.json +++ b/packages/message-handler/package.json @@ -14,7 +14,7 @@ "debug": "^4.3.4" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/remote-client/package.json b/packages/remote-client/package.json index b68c56d6e..a70ce02d2 100644 --- a/packages/remote-client/package.json +++ b/packages/remote-client/package.json @@ -16,7 +16,7 @@ "openapi-types": "12.1.3" }, "devDependencies": { - "@types/debug": "4.1.8", + "@types/debug": "4.1.13", "typescript": "5.7.3" }, "files": [ diff --git a/packages/remote-server/package.json b/packages/remote-server/package.json index 30977034b..5c5f30d27 100644 --- a/packages/remote-server/package.json +++ b/packages/remote-server/package.json @@ -16,16 +16,16 @@ "debug": "^4.3.3", "did-resolver": "^4.1.0", "express": "^4.18.2", - "passport": "^0.6.0", + "passport": "^0.7.0", "passport-http-bearer": "^1.0.1", "url-parse": "^1.5.4" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/express": "4.17.17", - "@types/passport": "1.0.12", - "@types/passport-http-bearer": "1.0.37", - "@types/url-parse": "1.4.8", + "@types/debug": "4.1.13", + "@types/express": "4.17.25", + "@types/passport": "1.0.17", + "@types/passport-http-bearer": "1.0.42", + "@types/url-parse": "1.4.11", "typescript": "5.7.3" }, "peerDependencies": { diff --git a/packages/selective-disclosure/package.json b/packages/selective-disclosure/package.json index e18fb944c..742c67ff2 100644 --- a/packages/selective-disclosure/package.json +++ b/packages/selective-disclosure/package.json @@ -25,8 +25,8 @@ "uuid": "^11.0.0" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/uuid": "9.0.2", + "@types/debug": "4.1.13", + "@types/uuid": "9.0.8", "typescript": "5.7.3" }, "files": [ diff --git a/packages/test-react-app/package.json b/packages/test-react-app/package.json index 0e43894cd..16aaa3dc9 100644 --- a/packages/test-react-app/package.json +++ b/packages/test-react-app/package.json @@ -35,8 +35,8 @@ "ethr-did-resolver": "^11.0.2", "path": "npm:path-browserify", "process": "npm:process", - "react": "19.0.0", - "react-dom": "19.0.0", + "react": "19.2.7", + "react-dom": "19.2.7", "stream": "npm:stream-browserify", "typeorm": "^0.3.20", "util": "npm:util", @@ -72,14 +72,14 @@ "@babel/plugin-syntax-import-assertions": "7.27.1", "@babel/preset-typescript": "7.27.1", "@craco/craco": "7.1.0", - "@types/eslint": "8.56.12", + "@types/eslint": "9.6.1", "@types/eslint-scope": "3.7.7", "@types/expect-puppeteer": "5.0.6", - "@types/jest": "29.5.12", + "@types/jest": "29.5.14", "@types/jest-environment-puppeteer": "5.0.6", "@types/node": "20.17.4", - "@types/react": "18.3.12", - "@types/react-dom": "18.3.1", + "@types/react": "18.3.31", + "@types/react-dom": "18.3.7", "babel-jest": "29.7.0", "babel-preset-react-app": "10.0.1", "cross-env": "7.0.3", @@ -91,7 +91,7 @@ "jest-puppeteer": "11.0.0", "puppeteer": "24.19.0", "react-scripts": "5.0.1", - "ts-jest": "29.4.1", + "ts-jest": "29.4.11", "typescript": "5.7.3" }, "type": "module" diff --git a/packages/url-handler/package.json b/packages/url-handler/package.json index 44fc3124c..6159c2280 100644 --- a/packages/url-handler/package.json +++ b/packages/url-handler/package.json @@ -17,8 +17,8 @@ "url-parse": "^1.5.4" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/url-parse": "1.4.8", + "@types/debug": "4.1.13", + "@types/url-parse": "1.4.11", "jest-fetch-mock": "3.0.3", "typescript": "5.7.3" }, diff --git a/packages/utils/package.json b/packages/utils/package.json index e524fe639..4917ff9a4 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -25,8 +25,8 @@ "uint8arrays": "^4.0.6" }, "devDependencies": { - "@types/debug": "4.1.8", - "@types/uuid": "9.0.2" + "@types/debug": "4.1.13", + "@types/uuid": "9.0.8" }, "files": [ "build/**/*",