Skip to content
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ const session = await getSessionFromStorage(sessionId, {

The following changes have been implemented but not released yet:

### Bugfix

#### core

- Fix issue using the library with Bun by adding missing `extractable` flag to the DPoP keys so that they can be serialized on the
appropriate events. Thanks to @NoelDeMartin for fixing this issue.

#### node

- Sessions built from `Session.fromTokens` now have a correct expiration time triggering refresh in the fetch. Thanks to @NoelDeMartin for fixing this issue.

## [3.1.1](https://github.com/inrupt/solid-client-authn-js/releases/tag/v3.1.1) - 2025-10-29

### Bugfix
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/authenticatedFetch/dpopUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export async function createDpopHeader(
export async function generateDpopKeyPair(): Promise<KeyPair> {
const { privateKey, publicKey } = await generateKeyPair(
PREFERRED_SIGNING_ALG[0],
{ extractable: true },
);
const dpopKeyPair = {
privateKey,
Expand Down
Loading