Skip to content

v2.2.0

Compare
Choose a tag to compare
@jholleran jholleran released this 03 May 10:58
8c3bd68

New Feature

node

  • It is now possible to prevent a Session self-refreshing in NodeJS. To do so, a new
    parameter is added to the constructor: Session({ keepAlive: false }). This prevents
    the Session setting a callback to refresh the Access Token before it expires, which
    could cause a memory leak in the case of a server-side application with many users.
    It also avoids unnecessary requests being sent to the OpenID Provider.