Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
038b3c4
docs: Update Readme and code snippets for @ucanto/transport
Dhruv-Varshney-developer Aug 19, 2025
6fd66a3
docs: Update Readme and code snippets for @ucanto/client
Dhruv-Varshney-developer Aug 19, 2025
d80540e
refactor: use native Response Constructor instead of custom construct…
Dhruv-Varshney-developer Aug 25, 2025
4a0a38d
refactor: use native Response constructor instead of custom response …
Dhruv-Varshney-developer Aug 25, 2025
2a89648
refactor: rename from CLIENT_KEYPAIR to AGENT_PRIVATE_KEY.
Dhruv-Varshney-developer Aug 26, 2025
7abf3c3
fix: Replace Service private key with SERVICE DID.
Dhruv-Varshney-developer Aug 26, 2025
5dc05d3
fix: Replace .env variables with setup instructions.
Dhruv-Varshney-developer Aug 26, 2025
2c7ee88
added playwright setup
NiKrause Oct 11, 2025
d31624a
fixed and improved readme according to #387 and PR #388
NiKrause Oct 11, 2025
f80b1f6
adding test badges
NiKrause Oct 11, 2025
ddb4540
changing badge url
NiKrause Oct 11, 2025
47430b8
fixing server tests
NiKrause Oct 11, 2025
f8da1ca
fixing typecheck
NiKrause Oct 11, 2025
38541bd
fixing server tests
NiKrause Oct 11, 2025
1b724ad
ts improvements
NiKrause Oct 11, 2025
570a04c
Update README badge URLs to point to original storacha/ucanto repository
NiKrause Oct 15, 2025
caf1f36
Merge branch 'pr-392' into combined-388-392
NiKrause Nov 18, 2025
9c5a455
Merge branch 'pr-388' into combined-388-392
NiKrause Nov 18, 2025
f884a18
refactor: address alanshaw's recommendations from PR #388
NiKrause Nov 18, 2025
7027542
feat(principal): use webcrypto ed25519 non-extractable keys by default
NiKrause Feb 11, 2026
8890008
chore: apply prettier formatting across workspace files
NiKrause Feb 11, 2026
0d96d5c
refactor(principal): remove noble ed25519 signer path
NiKrause Feb 11, 2026
f5d2b8f
test(server): assert receipt issuer by did in execution error case
NiKrause Feb 11, 2026
c0c74e3
Merge branch 'feat/658-webcrypto-ed25519-agent-keys' into combined-38…
NiKrause Feb 11, 2026
169bc4a
docs: align README snippets with tested API across packages
NiKrause Feb 11, 2026
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
6 changes: 6 additions & 0 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/interface.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/principal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
if: ${{needs.release.outputs.releases_created}}
runs-on: ubuntu-latest
permissions:
id-token: write # Required for OIDC
id-token: write # Required for OIDC
steps:
# The logic below handles the npm publication:
- name: Checkout
Expand All @@ -56,4 +56,3 @@ jobs:

- name: Publish
run: pnpm -r publish --access=public

6 changes: 6 additions & 0 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/transport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
Loading