Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: add support for oidc-provider@8 #23

Merged
merged 23 commits into from
Oct 2, 2024
Merged

Commits on Sep 30, 2024

  1. feat: add support for oidc-provider@8

    Added support for `oidc-provider@8` which became ESM-only. Support is done through dynamic import of the `oidc-provider` package as Nest does not support ESM-only packages directly, as it only compiles for CJS.
    adrianbrs committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    b40ca5a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea4f896 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    32daf5c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d936a8e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a3b1749 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a653be3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    04f185c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ee35454 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    10ec0d3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    55d8d7c View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    a86b2a1 View commit details
    Browse the repository at this point in the history
  12. fix: use eval to skip dynamic import transpilation

    Using `new Function` was causing unexpected errors in jest tests
    adrianbrs committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    0862584 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    01b52c3 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    757bf9e View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    94a1f47 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    90ac2a7 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    097c04c View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. Configuration menu
    Copy the full SHA
    7252228 View commit details
    Browse the repository at this point in the history
  2. feat: add new OidcSession decorator

    This new decorator makes it easy to retrieve the current user session from the context
    adrianbrs committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    7a70e89 View commit details
    Browse the repository at this point in the history
  3. build(deps): upgrade oidc-provider to version 8.5.1

    This version of `oidc-provider` exports the Provider as a named export. The latest version of the `@types` package also includes the previously missing typings.
    
    BREAKING CHANGE: The `InteractionDetails` type has been renamed to `Interaction` and is now exported directly from `oidc-provider`.
    adrianbrs committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    4532f12 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c710a49 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5b2e438 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    52a0415 View commit details
    Browse the repository at this point in the history