Skip to content

Releases: salte-auth/salte-auth

v3.1.8

30 Jun 20:12
Compare
Choose a tag to compare

3.1.8 (2021-06-30)

Bug Fixes

  • badge didn't get updated :c (49bdb66)

v3.1.7

30 Jun 20:05
Compare
Choose a tag to compare

3.1.7 (2021-06-30)

Bug Fixes

v3.1.6

30 Jun 19:50
Compare
Choose a tag to compare

3.1.6 (2021-06-30)

Bug Fixes

  • migrate to github actions (48f9044)

v3.1.5

12 Jan 00:29
Compare
Choose a tag to compare

3.1.5 (2021-01-12)

Bug Fixes

  • params should be optional in type def (2d51be5)

v3.1.4

02 Aug 23:03
Compare
Choose a tag to compare

3.1.4 (2020-08-02)

Bug Fixes

  • automatically parse id_token and code based upon existence (#431) (ac8ed1a)

v3.1.3

08 Jun 20:43
Compare
Choose a tag to compare

3.1.3 (2020-06-08)

Bug Fixes

  • login: login-specific redirectUrls will no longer throw an error (#425) (c707857), closes #424

v3.1.2

12 May 01:31
Compare
Choose a tag to compare

3.1.2 (2020-05-12)

Bug Fixes

v3.1.1

10 May 01:21
Compare
Choose a tag to compare

3.1.1 (2020-05-10)

Bug Fixes (#416) (42f0cc1)

  • Requests specified in the endpoints property will now be enhanced properly while not authenticated.
  • Login and logout requests are now automatically deduped to prevent storage collisions (state / nonce).
  • Custom provider / handler names will now be respected in more place.

v3.1.0

08 May 02:24
Compare
Choose a tag to compare

3.1.0 (2020-05-07)

Features

All the Extra Parameters!

Unfortunately as part of the move from 2.x -> 3.x we accidentally removed support for providing extra query parameters.

Well, fret not because the feature is back once again and with a bit of extra functionality!

const auth = new SalteAuth({
  providers: [
    new Auth0({
      // ...

      // The type parameter is 'login' when a login occurs 
      // and 'logout' when a logout occurs.
      queryParams: (type) => type === 'login' ? { hello: 'world' } : null,
    });
  ],

  // ...
});

v3.0.3

08 May 00:25
Compare
Choose a tag to compare

3.0.3 (2020-05-08)

Bug Fixes

  • export the generic provider interface (3c55c88)