Skip to content

Commit

Permalink
Release 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-foster committed Oct 5, 2023
1 parent 0cdc1a7 commit bcdc514
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### 0.0.2 (2023-10-05)

* **Fix**: Accept callback requests without CSRF protection.
This enables IdP-initiated sessions.

### 0.0.1 (2023-03-13)

Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add `ueberauth_workos` as a dependency in `mix.exs` and run `mix deps.get`:
def deps do
[
{:ueberauth, "~> 0.10"},
{:ueberauth_workos, "~> 0.0.1"}
{:ueberauth_workos, "~> 0.0.2"}
]
end
```
Expand Down
3 changes: 2 additions & 1 deletion lib/ueberauth/strategy/workos.ex
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ defmodule Ueberauth.Strategy.WorkOS do
If you use an email address to determine the connection selector, then it is advisable to use the
same email address as the `login_hint`.
"""
use Ueberauth.Strategy
use Ueberauth.Strategy,
ignores_csrf_attack: true

alias Ueberauth.Auth.Credentials
alias Ueberauth.Auth.Extra
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule UeberauthWorkos.MixProject do
use Mix.Project

@version "0.0.1"
@version "0.0.2"
@source_url "https://github.com/codesandbox/ueberauth_workos"

def project do
Expand Down

0 comments on commit bcdc514

Please sign in to comment.