Skip to content

Commit

Permalink
feat: Use threads for jws verification
Browse files Browse the repository at this point in the history
Exposes necessary functionality to use threads for jws verification.
  • Loading branch information
dbcfd committed Jan 27, 2024
1 parent 84ca798 commit 585033b
Show file tree
Hide file tree
Showing 15 changed files with 332 additions and 128 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["integration", "website"]
Expand Down
27 changes: 27 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"mode": "pre",
"tag": "next",
"initialVersions": {
"@didtools/cacao": "2.1.0",
"@didtools/codecs": "1.0.1",
"did-session": "2.1.1",
"dids": "4.0.4",
"integration": "0.0.1",
"jest-environment-ceramic": "0.17.0",
"key-did-provider-ed25519": "3.0.2",
"@didtools/key-secp256k1": "0.2.1",
"@didtools/key-webcrypto": "0.1.1",
"key-did-resolver": "3.0.0",
"@didtools/multidid": "0.0.1",
"pkh-did-resolver": "1.2.0",
"@didtools/pkh-ethereum": "0.4.1",
"@didtools/pkh-solana": "0.1.1",
"@didtools/pkh-stacks": "0.1.0",
"@didtools/pkh-tezos": "0.2.2",
"@didtools/siwx": "1.0.0",
"website": "0.0.0"
},
"changesets": [
"khaki-eyes-smell"
]
}
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: 'pnpm'

- name: Install dependencies and build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ matrix.node }}
cache: 'pnpm'

- name: Install dependencies and build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: 'pnpm'

- name: Install dependencies and build
Expand Down
2 changes: 1 addition & 1 deletion packages/codecs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dist"
],
"engines": {
"node": ">=14.14"
"node": ">=20.8"
},
"sideEffects": false,
"scripts": {
Expand Down
14 changes: 14 additions & 0 deletions packages/did-session/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,17 @@
- [email protected]
- [email protected]
- @didtools/key-webcrypto@0.2.0
||||||| parent of 702edc4 (chore: Release threadable version)
=======
# did-session

## 2.1.2-next.0

### Patch Changes

- Use worker threads
- Updated dependencies
- [email protected]
- [email protected]
- @didtools/key-webcrypto@0.1.1
>>>>>>> 702edc4 (chore: Release threadable version)
Loading

0 comments on commit 585033b

Please sign in to comment.