Skip to content

Releases: veracity/node-auth

Removed internal memory cache. Now using `express-session`

Choose a tag to compare

@SigurdMW SigurdMW released this 03 Dec 12:46
caec5c2

An internal memory cache caused issues when running multiple node.exe processes on the same server. This has now been resolved by using express-session to persist the authentication data in the login process.

Dependencies have also been updated.

Added type for refresh token middleware

Choose a tag to compare

@rudfoss rudfoss released this 15 Oct 11:04
80f7b84

A minor release that cleans up the TypeScript interface for refresh token middleware functions.

No API changes.

Improved error reporting

Choose a tag to compare

@rudfoss rudfoss released this 07 Oct 06:24
29caf58

Added reporting of errors if scope may be incorrect.

Minor bugfix

Choose a tag to compare

@rudfoss rudfoss released this 07 Oct 06:04
006c20e

This release fixes a small bug where the metadata URL was not propagated correctly through the layers of the application causing it to not support custom metadata URL-based scenarios.

onLogout support

Choose a tag to compare

@rudfoss rudfoss released this 01 Oct 09:25
9c64498

Added onLogout configuration to helper function.

No other API changes.

Feature: Passthrough of metadata url

Choose a tag to compare

@rudfoss rudfoss released this 01 Oct 07:20
4ab1054

This release fixes one small problem with the helper function for setting up authentication for web apps.

  • Metadata URL from the strategy configuration is now passed through and used for the configuration of the refresh middleware as well for a more consistent experience.

Documentation release

Choose a tag to compare

@rudfoss rudfoss released this 01 Oct 06:22
894eaf7

This release updates the code samples, adding new ones and updates the readme documentation to address encrypting session data.

There are no API changes in this release.

First official release

Choose a tag to compare

@rudfoss rudfoss released this 01 Oct 06:18
ebef582

This release contains a complete rewrite of the library internals in order to better suit more scenarios that may be coming in the future. The general ideas and thought processes have not changed.

Please see the updated samples for changes to the APIs.

BETA - Minor typing fix release

Pre-release

Choose a tag to compare

@rudfoss rudfoss released this 28 Aug 10:41
b7c8f62

This release is just a correction on a minor typing issue.

When importing VeracityAuthFlowStrategy from @veracity/node-auth it would not correctly pass along typing information resulting in it being unusable as a class declaration.

This release has no effect on the API itself. It just passes along the correct typing information for TypeScript code.

BETA - Improved error reporting

Pre-release

Choose a tag to compare

@rudfoss rudfoss released this 26 Aug 07:02
041eef7

This release augments the VIDPError object with some additional information for debugging purposes:

  • Added raw idToken to error object to aid in debugging.