Releases: sst/openauth
Releases · sst/openauth
@openauthjs/openauth@0.3.3
@openauthjs/openauth@0.3.2
Patch Changes
- 03da3e0: fix issue with oidc adapter
@openauthjs/openauth@0.3.1
Patch Changes
- 8764ed4: support specify custom subject
@openauthjs/openauth@0.3.0
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
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
@openauthjs/openauth@0.2.5
@openauthjs/example-jwt-api@1.0.1
Patch Changes
- Updated dependencies [8b5f490]
- @openauthjs/openauth@0.2.4
jwt-api@1.0.1
Patch Changes
- Updated dependencies [8b5f490]
- @openauthjs/openauth@0.2.4
@openauthjs/openauth@0.2.4
Patch Changes
- 8b5f490: feat: Add copy customization to Code UI component