@inrupt/solid-client-authn-node
Advanced tools
Changelog
1.13.4 - 2023-03-16
Session
expiration date was not set in all contexts: session.info.expirationDate
wasn't set properly using Client Credentials.Added events
attribute to the Session
class to expose full EventEmitter
API
with type hints for each supported event. This allows to write code such as the
following:
const mySession = new Session();
mySession.events.on(EVENTS.LOGIN, () => { console.log("Logged in!") });
This is closer to the EventEmitter API, so it should be familiar to more developers.
Changelog
1.13.3 - 2023-03-07
Changelog
1.13.2 - 2023-02-16
Changelog
1.13.1 - 2023-02-15
login
function was being normalized, which
could result in misalignments with the redirect URLs declared in a Client Identifier
document, since the latter wasn't being normalized. The normalization step has
now been removed, and the redirect provided by the user is sent to the OpenID
Provider unchanged.