Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: supabase/auth
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.77.1
Choose a base ref
...
head repository: supabase/auth
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.78.0
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Jul 3, 2023

  1. feat: add different logout scopes (#1112)

    Right now, probably due to a bug, `POST /logout` would log the user out
    from _all_ sessions they have. This is not always desired behavior.
    
    This change adds a new `scope` query param on `/logout` with these
    values:
    - `global` (default when not provided) Logs a user out from all sessions
    they have.
    - `local` Logs a user out from the current session only.
    - `others` Logs a user out from all other sessions except the current
    one.
    
    See:
    - supabase/auth-js#713
    hf authored Jul 3, 2023
    Configuration menu
    Copy the full SHA
    df07540 View commit details
    Browse the repository at this point in the history
Loading