Skip to content

Releases: sst/openauth

@openauthjs/openauth@0.3.3

09 Jan 18:59
e070603
Compare
Choose a tag to compare

Patch Changes

  • 9712422: fix: add charset meta tag to ui/base.tsx

  • 92e7170: Adds support for refresh token reuse interval and reuse detection

    Also fixes an issue with token invalidation, where removing keys while scanning
    may cause some refresh tokens to be skipped (depending on storage provider.)

@openauthjs/openauth@0.3.2

04 Jan 16:20
b6ecb63
Compare
Choose a tag to compare

Patch Changes

  • 03da3e0: fix issue with oidc adapter

@openauthjs/openauth@0.3.1

03 Jan 21:52
17bfca0
Compare
Choose a tag to compare

Patch Changes

  • 8764ed4: support specify custom subject

@openauthjs/openauth@0.3.0

03 Jan 21:39
cdbef2f
Compare
Choose a tag to compare

Minor Changes

  • b2af22a: renamed authorizer -> issuer and adapter -> provider

    this should be a superficial change, but it's a breaking change

    previously you imported adapters like this:

    import { PasswordAdapter } from "@openauth/openauth/adapter/password"

    update it to this:

    import { PasswordProvider } from "@openauth/openauth/provider/password"

    for the authorizer, you import it like this:

    import { authorizer } from "@openauth/openauth"

    update it to this:

    import { issuer } from "@openauth/openauth"

    also subjects should be imported deeply like this:

    import { createSubjects } from "@openauth/openauth"

    update it to this:

    import { createSubjects } from "@openauth/openauth/subject"

@openauthjs/openauth@0.2.7

02 Jan 23:12
d9fe969
Compare
Choose a tag to compare

Patch Changes

  • 3004802: refactor: export AuthorizationState for better reusability

  • 2975608: switching signing key algorithm to es256. generate seperate keys for symmetrical encryption. old keys will automatically be marked expired and not used

  • c92604b: Adds support for a custom DynamoDB endpoint which enables use of a amazon/dynamodb-local container.

    Usabe example:

      storage: DynamoStorage({
        table: 'openauth-users',
        endpoint: 'http://localhost:8000',
      }),

@openauthjs/openauth@0.2.6

26 Dec 18:16
63afc39
Compare
Choose a tag to compare

Patch Changes

  • ca0df5d: ui: support phone mode for code ui
  • d8d1580: Add slack adapter to the list of available adapters.
  • ce44ed6: fix for password adapter not redirecting to the right place after change password flow
  • 4940bef: fix: add node: prefix for built-in modules

@openauthjs/openauth@0.2.5

18 Dec 23:47
b30539d
Compare
Choose a tag to compare

Patch Changes

  • 8d6a243: fix: eliminate OTP bias and timing attack vulnerability
  • 873d1af: support specifying granular ttl for access/refresh token

@openauthjs/example-jwt-api@1.0.1

18 Dec 23:47
b30539d
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [8b5f490]
    • @openauthjs/openauth@0.2.4

jwt-api@1.0.1

17 Dec 02:19
22b3632
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [8b5f490]
    • @openauthjs/openauth@0.2.4

@openauthjs/openauth@0.2.4

17 Dec 02:19
22b3632
Compare
Choose a tag to compare

Patch Changes

  • 8b5f490: feat: Add copy customization to Code UI component