-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: add WebView support for SAML registration/login flows #4
base: saml
Are you sure you want to change the base?
Commits on Oct 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 4f8ea02 - Browse repository at this point
Copy the full SHA 4f8ea02View commit details
Commits on Oct 16, 2023
-
fix: respond with 422 when SPA identity requires AAL2 (ory#3572)
If you submit a browser login flow with an `Accept` header of `application/json`, but the login flow requires AAL2, then there is no way for the code to know it needs to redirect the user to the 2FA page. Instead of responding with the `Session` in this scenario, this PR changes the behaviour to respond with a `browser_location_change_required` error (status `422`) to indicate that the browser needs to open a specific URL, /self-service/login/browser?aal=aal2. Co-authored-by: Henning Perl <henning.perl@ory.sh>
Configuration menu - View commit details
-
Copy full SHA for df18c09 - Browse repository at this point
Copy the full SHA df18c09View commit details -
feat: login with code on any credential type (ory#3549)
Should be able to login with the `code` credential even if the user did not register on the `code` credential. Only `identifier` matching is done and validation based on the identity schema.
Configuration menu - View commit details
-
Copy full SHA for ceed7d5 - Browse repository at this point
Copy the full SHA ceed7d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b7fd0d - Browse repository at this point
Copy the full SHA 4b7fd0dView commit details
Commits on Oct 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 569b14a - Browse repository at this point
Copy the full SHA 569b14aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7b63379 - Browse repository at this point
Copy the full SHA 7b63379View commit details -
Configuration menu - View commit details
-
Copy full SHA for c5b4aaa - Browse repository at this point
Copy the full SHA c5b4aaaView commit details -
Configuration menu - View commit details
-
Copy full SHA for afed81d - Browse repository at this point
Copy the full SHA afed81dView commit details
Commits on Oct 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 31faa2b - Browse repository at this point
Copy the full SHA 31faa2bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e1fb8bf - Browse repository at this point
Copy the full SHA e1fb8bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 18b89ea - Browse repository at this point
Copy the full SHA 18b89eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c8a25e - Browse repository at this point
Copy the full SHA 9c8a25eView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa8c936 - Browse repository at this point
Copy the full SHA aa8c936View commit details -
fix: on verification required after registration, preserve return_to (o…
…ry#3589) * fix: on verification required after registration, preserve return_to * test: return_to on verification flow * chore: refactor Co-authored-by: Jonas Hungershausen <jonas.hungershausen@ory.sh> --------- Co-authored-by: Jonas Hungershausen <jonas.hungershausen@ory.sh>
Configuration menu - View commit details
-
Copy full SHA for 6a0a914 - Browse repository at this point
Copy the full SHA 6a0a914View commit details
Commits on Oct 27, 2023
-
fix: change shebangs and makefile from /bin/bash to /usr/bin/env bash (…
…ory#3597) * makefile fix Signed-off-by: nxy7 <lolnoxy@gmail.com> * shebangs changed to /usr/bin/env bash Signed-off-by: nxy7 <lolnoxy@gmail.com> --------- Signed-off-by: nxy7 <lolnoxy@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1343bbb - Browse repository at this point
Copy the full SHA 1343bbbView commit details -
fix: consider OIDC registration flows errored with duplicate credenti…
…al to be completed by strategy (ory#3525) Returning anything else here may cause Kratos to respond with two concatenated JSON objects: new login flow with actual error message as the first one and a very confusing '500, aborted registration hook execution' as the second one.
Configuration menu - View commit details
-
Copy full SHA for 3e3c789 - Browse repository at this point
Copy the full SHA 3e3c789View commit details -
fix: return HTTP 400 if key unmarshal fails (ory#3594)
* fix: return HTTP 400 if key unmarshal fails * fix: apply reviewer's suggestion, prepare for bump * fix: follow up reviewer suggestion from ory/x * chore: bump ory/x
Configuration menu - View commit details
-
Copy full SHA for fdf4956 - Browse repository at this point
Copy the full SHA fdf4956View commit details -
Configuration menu - View commit details
-
Copy full SHA for 985474c - Browse repository at this point
Copy the full SHA 985474cView commit details
Commits on Oct 30, 2023
-
fix: registration should accept hydra login (ory#3592)
* fix: registration should accept hydra login * fix: oauth2 registration flow with session * wip: registration oauth flow tests * wip: refactor oauth flows test * wip: refactor op_registration_test * wip: oauth provider registration test * wip: refactor oauth flows test * fix(test): oauth provider login * style: format
Configuration menu - View commit details
-
Copy full SHA for 7a47827 - Browse repository at this point
Copy the full SHA 7a47827View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c608b9 - Browse repository at this point
Copy the full SHA 9c608b9View commit details -
feat: parametrize courier worker (ory#3601)
Allows one to parametrize how many messages the courier will fetch and how often it will fetch messages.
Configuration menu - View commit details
-
Copy full SHA for 0e4be57 - Browse repository at this point
Copy the full SHA 0e4be57View commit details -
Configuration menu - View commit details
-
Copy full SHA for dffcdef - Browse repository at this point
Copy the full SHA dffcdefView commit details
Commits on Oct 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a639e56 - Browse repository at this point
Copy the full SHA a639e56View commit details
Commits on Nov 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 316cd4a - Browse repository at this point
Copy the full SHA 316cd4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b75f37 - Browse repository at this point
Copy the full SHA 3b75f37View commit details
Commits on Nov 8, 2023
-
feat: link oidc credentials when login (ory#3563)
When user tries to login with OIDC for the first time but has already registered before with email/password a credentials identifier conflict may be detected by Kratos. In this case user needs to login with email/password first and then link OIDC credentials on a settings screen. This PR simplifies UX and allows user to link OIDC credentials to existing account right in the login flow, without switching to settings flow. Closes ory#2727 Closes ory#3222
Configuration menu - View commit details
-
Copy full SHA for b784949 - Browse repository at this point
Copy the full SHA b784949View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58bd38f - Browse repository at this point
Copy the full SHA 58bd38fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 52639e6 - Browse repository at this point
Copy the full SHA 52639e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8150bdb - Browse repository at this point
Copy the full SHA 8150bdbView commit details -
Revert "fix: re-add exported symbols (ory#3611)"
This reverts commit 52639e6.
Configuration menu - View commit details
-
Copy full SHA for 8cc83bc - Browse repository at this point
Copy the full SHA 8cc83bcView commit details -
Revert "chore: simplify courier code (ory#3603)"
This reverts commit 316cd4a.
Configuration menu - View commit details
-
Copy full SHA for 7c54c9f - Browse repository at this point
Copy the full SHA 7c54c9fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 139a11c - Browse repository at this point
Copy the full SHA 139a11cView commit details
Commits on Nov 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 843a215 - Browse repository at this point
Copy the full SHA 843a215View commit details -
fix: omit irrelevant OIDC providers in forced refresh login flows (or…
…y#3608) Whenever an user is asked to reauthenticate (e.g. because they wish to execute settings flow touching their credentials and their session is no longer privileged) they are asked to provide their credentials again. The forced-refresh login flow generated for such cases already excludes some strategies that are enabled in Kratos but cannot be used to authenticate as current identity, and for example the form presented to the user will not have a password field if the identity does not have a password credential. This, however, does not currently apply to OIDC providers; the user will always see the full set even if some of them can't be used to sign in as current identity. This change causes forced refresh login flows to also omit irrelevant OIDC providers in generated form in order to avoid confunding the user about which strategies/providers are valid and can actually be used to reauthenticate.
Configuration menu - View commit details
-
Copy full SHA for 912dccd - Browse repository at this point
Copy the full SHA 912dccdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2474864 - Browse repository at this point
Copy the full SHA 2474864View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7c6767 - Browse repository at this point
Copy the full SHA f7c6767View commit details
Commits on Nov 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b2b231e - Browse repository at this point
Copy the full SHA b2b231eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4364ba0 - Browse repository at this point
Copy the full SHA 4364ba0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0fa648d - Browse repository at this point
Copy the full SHA 0fa648dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 32299d5 - Browse repository at this point
Copy the full SHA 32299d5View commit details -
feat: batch list identities (ory#3598)
This change allows to filter `GET /admin/identities` by ID with the following syntax: ``` /admin/identities?ids=id1&ids=id2&ids=id3 ``` Closes ory#2448
Configuration menu - View commit details
-
Copy full SHA for 8ad54f1 - Browse repository at this point
Copy the full SHA 8ad54f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for ade1a5a - Browse repository at this point
Copy the full SHA ade1a5aView commit details
Commits on Nov 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9396bb0 - Browse repository at this point
Copy the full SHA 9396bb0View commit details -
Configuration menu - View commit details
-
Copy full SHA for e81e892 - Browse repository at this point
Copy the full SHA e81e892View commit details
Commits on Nov 15, 2023
-
feat: add support for recovery on native flows (ory#3273)
--------- Co-authored-by: Henning Perl <henning.perl@ory.sh> Co-authored-by: Alano Terblanche <18033717+Benehiko@users.noreply.github.com> Co-authored-by: aeneasr <3372410+aeneasr@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e363889 - Browse repository at this point
Copy the full SHA e363889View commit details -
feat(changelog): add support for native recovery (ory#3624)
Adds the ability to complete the recovery flow properly on API flows. This PR also streamlines the behavior for SPA flows to not return 422 errors anymore. To enable this new behavior, set the features.use_continue_with_transitions flag in the config to `true`. See also ory#3273
Configuration menu - View commit details
-
Copy full SHA for 492808c - Browse repository at this point
Copy the full SHA 492808cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f6fde34 - Browse repository at this point
Copy the full SHA f6fde34View commit details
Commits on Nov 20, 2023
-
fix: improved SSRF protection (ory#3629)
This also improves tracing in the OIDC strategy.
Configuration menu - View commit details
-
Copy full SHA for 6d08576 - Browse repository at this point
Copy the full SHA 6d08576View commit details
Commits on Nov 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ee138ec - Browse repository at this point
Copy the full SHA ee138ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a098b7 - Browse repository at this point
Copy the full SHA 1a098b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c7068c - Browse repository at this point
Copy the full SHA 6c7068cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3735f1c - Browse repository at this point
Copy the full SHA 3735f1cView commit details
Commits on Nov 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c25ddff - Browse repository at this point
Copy the full SHA c25ddffView commit details
Commits on Nov 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8cb9e4c - Browse repository at this point
Copy the full SHA 8cb9e4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c0e02e - Browse repository at this point
Copy the full SHA 7c0e02eView commit details
Commits on Dec 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 180828e - Browse repository at this point
Copy the full SHA 180828eView commit details -
Configuration menu - View commit details
-
Copy full SHA for bbf874f - Browse repository at this point
Copy the full SHA bbf874fView commit details
Commits on Dec 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 309c506 - Browse repository at this point
Copy the full SHA 309c506View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52c7d3b - Browse repository at this point
Copy the full SHA 52c7d3bView commit details
Commits on Dec 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for be907db - Browse repository at this point
Copy the full SHA be907dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a26136 - Browse repository at this point
Copy the full SHA 8a26136View commit details -
Configuration menu - View commit details
-
Copy full SHA for b5dede3 - Browse repository at this point
Copy the full SHA b5dede3View commit details -
Configuration menu - View commit details
-
Copy full SHA for af7d1af - Browse repository at this point
Copy the full SHA af7d1afView commit details
Commits on Dec 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for fe4ac43 - Browse repository at this point
Copy the full SHA fe4ac43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3df0d77 - Browse repository at this point
Copy the full SHA 3df0d77View commit details
Commits on Dec 13, 2023
-
chore(deps): bump github.com/go-jose/go-jose/v3 from 3.0.0 to 3.0.1 (o…
…ry#3634) Bumps [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/go-jose/go-jose/releases) - [Changelog](https://github.com/go-jose/go-jose/blob/v3/CHANGELOG.md) - [Commits](go-jose/go-jose@v3.0.0...v3.0.1) --- updated-dependencies: - dependency-name: github.com/go-jose/go-jose/v3 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6cf7fc5 - Browse repository at this point
Copy the full SHA 6cf7fc5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3860705 - Browse repository at this point
Copy the full SHA 3860705View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa5ec93 - Browse repository at this point
Copy the full SHA fa5ec93View commit details -
Configuration menu - View commit details
-
Copy full SHA for 06c27f4 - Browse repository at this point
Copy the full SHA 06c27f4View commit details
Commits on Dec 14, 2023
-
fix: don't return nil if code is invalid (ory#3662)
* fix: don't return nil if code is invalid * chore: add test
Configuration menu - View commit details
-
Copy full SHA for df8ec2b - Browse repository at this point
Copy the full SHA df8ec2bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c5ea9b - Browse repository at this point
Copy the full SHA 0c5ea9bView commit details
Commits on Dec 28, 2023
-
chore(deps): bump golang.org/x/crypto from 0.15.0 to 0.17.0 (ory#3666)
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.15.0 to 0.17.0. - [Commits](golang/crypto@v0.15.0...v0.17.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ec42f2f - Browse repository at this point
Copy the full SHA ec42f2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for d21e167 - Browse repository at this point
Copy the full SHA d21e167View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae8cbdc - Browse repository at this point
Copy the full SHA ae8cbdcView commit details -
Configuration menu - View commit details
-
Copy full SHA for e3a3c4f - Browse repository at this point
Copy the full SHA e3a3c4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 699e5d5 - Browse repository at this point
Copy the full SHA 699e5d5View commit details
Commits on Jan 5, 2024
-
fix: rename "phone" courier channel to "sms" (ory#3680)
Co-authored-by: zepatrik <zepatrik@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for eb8d1b9 - Browse repository at this point
Copy the full SHA eb8d1b9View commit details
Commits on Jan 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a2f79c3 - Browse repository at this point
Copy the full SHA a2f79c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c251cb2 - Browse repository at this point
Copy the full SHA c251cb2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c1470a - Browse repository at this point
Copy the full SHA 2c1470aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ee0af6c - Browse repository at this point
Copy the full SHA ee0af6cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ce179a - Browse repository at this point
Copy the full SHA 4ce179aView commit details
Commits on Jan 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 21ab031 - Browse repository at this point
Copy the full SHA 21ab031View commit details
Commits on Jan 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1da8180 - Browse repository at this point
Copy the full SHA 1da8180View commit details -
Configuration menu - View commit details
-
Copy full SHA for 55560a1 - Browse repository at this point
Copy the full SHA 55560a1View commit details
Commits on Jan 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d93570d - Browse repository at this point
Copy the full SHA d93570dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a192f2 - Browse repository at this point
Copy the full SHA 5a192f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d26e09 - Browse repository at this point
Copy the full SHA 1d26e09View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03d3f47 - Browse repository at this point
Copy the full SHA 03d3f47View commit details -
Configuration menu - View commit details
-
Copy full SHA for 688111c - Browse repository at this point
Copy the full SHA 688111cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f633959 - Browse repository at this point
Copy the full SHA f633959View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4908db - Browse repository at this point
Copy the full SHA e4908dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 793a368 - Browse repository at this point
Copy the full SHA 793a368View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1792dc6 - Browse repository at this point
Copy the full SHA 1792dc6View commit details
Commits on Jan 23, 2024
-
feat: extend Microsoft Graph API capabilities (ory#3609)
This change queries for all user information available with the `User.Read` scope during OIDC, and populates the `RawClaims` field.
Configuration menu - View commit details
-
Copy full SHA for 4a7bcc9 - Browse repository at this point
Copy the full SHA 4a7bcc9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 96dba50 - Browse repository at this point
Copy the full SHA 96dba50View commit details
Commits on Jan 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e8740c3 - Browse repository at this point
Copy the full SHA e8740c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1254bf5 - Browse repository at this point
Copy the full SHA 1254bf5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a52ddf - Browse repository at this point
Copy the full SHA 9a52ddfView commit details -
Configuration menu - View commit details
-
Copy full SHA for ce6b11a - Browse repository at this point
Copy the full SHA ce6b11aView commit details
Commits on Jan 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 757a5e4 - Browse repository at this point
Copy the full SHA 757a5e4View commit details -
Configuration menu - View commit details
-
Copy full SHA for f1493c8 - Browse repository at this point
Copy the full SHA f1493c8View commit details
Commits on Jan 26, 2024
-
feat: support MFA via SMS (ory#3682)
--------- Co-authored-by: zepatrik <zepatrik@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1516cf6 - Browse repository at this point
Copy the full SHA 1516cf6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e45e87 - Browse repository at this point
Copy the full SHA 0e45e87View commit details
Commits on Jan 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 549308d - Browse repository at this point
Copy the full SHA 549308dView commit details
Commits on Jan 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4b881ca - Browse repository at this point
Copy the full SHA 4b881caView commit details -
feat: claims from userinfo endpoint (ory#3718)
* feat: claims from userinfo endpoint * chore: update libraries * test: improve coverage
Configuration menu - View commit details
-
Copy full SHA for 90bdc61 - Browse repository at this point
Copy the full SHA 90bdc61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 31f1a09 - Browse repository at this point
Copy the full SHA 31f1a09View commit details -
Configuration menu - View commit details
-
Copy full SHA for 988be61 - Browse repository at this point
Copy the full SHA 988be61View commit details
Commits on Jan 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 67360cf - Browse repository at this point
Copy the full SHA 67360cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8384f10 - Browse repository at this point
Copy the full SHA 8384f10View commit details
Commits on Feb 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1c3eeb7 - Browse repository at this point
Copy the full SHA 1c3eeb7View commit details
Commits on Feb 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bff9c61 - Browse repository at this point
Copy the full SHA bff9c61View commit details -
chore(deps): bump github.com/lestrrat-go/jwx from 1.2.26 to 1.2.28 (o…
…ry#3710) Bumps [github.com/lestrrat-go/jwx](https://github.com/lestrrat-go/jwx) from 1.2.26 to 1.2.28. - [Release notes](https://github.com/lestrrat-go/jwx/releases) - [Changelog](https://github.com/lestrrat-go/jwx/blob/v1.2.28/Changes) - [Commits](lestrrat-go/jwx@v1.2.26...v1.2.28) --- updated-dependencies: - dependency-name: github.com/lestrrat-go/jwx dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f082f16 - Browse repository at this point
Copy the full SHA f082f16View commit details -
Configuration menu - View commit details
-
Copy full SHA for c85d95f - Browse repository at this point
Copy the full SHA c85d95fView commit details
Commits on Feb 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1d43d22 - Browse repository at this point
Copy the full SHA 1d43d22View commit details
Commits on Feb 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 12166b4 - Browse repository at this point
Copy the full SHA 12166b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35a820b - Browse repository at this point
Copy the full SHA 35a820bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e3bfa10 - Browse repository at this point
Copy the full SHA e3bfa10View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b8ae74 - Browse repository at this point
Copy the full SHA 0b8ae74View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd79950 - Browse repository at this point
Copy the full SHA fd79950View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34751a1 - Browse repository at this point
Copy the full SHA 34751a1View commit details
Commits on Feb 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 241a911 - Browse repository at this point
Copy the full SHA 241a911View commit details -
Configuration menu - View commit details
-
Copy full SHA for af55834 - Browse repository at this point
Copy the full SHA af55834View commit details
Commits on Feb 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 84149c4 - Browse repository at this point
Copy the full SHA 84149c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for deeb165 - Browse repository at this point
Copy the full SHA deeb165View commit details -
Configuration menu - View commit details
-
Copy full SHA for dbb3a7e - Browse repository at this point
Copy the full SHA dbb3a7eView commit details
Commits on Feb 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bf5f8c3 - Browse repository at this point
Copy the full SHA bf5f8c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ec3a9a - Browse repository at this point
Copy the full SHA 0ec3a9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e565d1 - Browse repository at this point
Copy the full SHA 6e565d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d7021d - Browse repository at this point
Copy the full SHA 9d7021dView commit details -
Configuration menu - View commit details
-
Copy full SHA for cfa3074 - Browse repository at this point
Copy the full SHA cfa3074View commit details
Commits on Feb 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 40ed809 - Browse repository at this point
Copy the full SHA 40ed809View commit details -
Configuration menu - View commit details
-
Copy full SHA for 72bdeda - Browse repository at this point
Copy the full SHA 72bdedaView commit details
Commits on Feb 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f47675b - Browse repository at this point
Copy the full SHA f47675bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d94530a - Browse repository at this point
Copy the full SHA d94530aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d755fbb - Browse repository at this point
Copy the full SHA d755fbbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6638c3e - Browse repository at this point
Copy the full SHA 6638c3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b291c95 - Browse repository at this point
Copy the full SHA b291c95View commit details
Commits on Feb 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b8b747b - Browse repository at this point
Copy the full SHA b8b747bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c5f39f4 - Browse repository at this point
Copy the full SHA c5f39f4View commit details
Commits on Feb 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c905f02 - Browse repository at this point
Copy the full SHA c905f02View commit details -
Configuration menu - View commit details
-
Copy full SHA for 087748c - Browse repository at this point
Copy the full SHA 087748cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 037bdf8 - Browse repository at this point
Copy the full SHA 037bdf8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b685fa5 - Browse repository at this point
Copy the full SHA b685fa5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d7372e - Browse repository at this point
Copy the full SHA 6d7372eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b7e5144 - Browse repository at this point
Copy the full SHA b7e5144View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f5192f - Browse repository at this point
Copy the full SHA 8f5192fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7277368 - Browse repository at this point
Copy the full SHA 7277368View commit details -
Configuration menu - View commit details
-
Copy full SHA for a1bf427 - Browse repository at this point
Copy the full SHA a1bf427View commit details
Commits on Feb 23, 2024
-
fix: test assertions on declassifying OIDC tokens (ory#3773)
Co-authored-by: aeneasr <3372410+aeneasr@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 7f8a7f1 - Browse repository at this point
Copy the full SHA 7f8a7f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9710549 - Browse repository at this point
Copy the full SHA 9710549View commit details
Commits on Mar 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 930fb19 - Browse repository at this point
Copy the full SHA 930fb19View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63ce470 - Browse repository at this point
Copy the full SHA 63ce470View commit details -
Configuration menu - View commit details
-
Copy full SHA for dee5844 - Browse repository at this point
Copy the full SHA dee5844View commit details
Commits on Mar 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7c68c5a - Browse repository at this point
Copy the full SHA 7c68c5aView commit details -
Configuration menu - View commit details
-
Copy full SHA for dfc931f - Browse repository at this point
Copy the full SHA dfc931fView commit details -
Configuration menu - View commit details
-
Copy full SHA for e6db689 - Browse repository at this point
Copy the full SHA e6db689View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7017490 - Browse repository at this point
Copy the full SHA 7017490View commit details -
Configuration menu - View commit details
-
Copy full SHA for f8fbb00 - Browse repository at this point
Copy the full SHA f8fbb00View commit details
Commits on Mar 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 04390be - Browse repository at this point
Copy the full SHA 04390beView commit details -
Configuration menu - View commit details
-
Copy full SHA for ca7cd23 - Browse repository at this point
Copy the full SHA ca7cd23View commit details -
Configuration menu - View commit details
-
Copy full SHA for ecbd1e3 - Browse repository at this point
Copy the full SHA ecbd1e3View commit details
Commits on Mar 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0b32ce1 - Browse repository at this point
Copy the full SHA 0b32ce1View commit details
Commits on Mar 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c9dcce5 - Browse repository at this point
Copy the full SHA c9dcce5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f1fd81 - Browse repository at this point
Copy the full SHA 7f1fd81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f81b76 - Browse repository at this point
Copy the full SHA 0f81b76View commit details
Commits on Mar 11, 2024
-
chore(deps): bump github.com/lestrrat-go/jwx from 1.2.28 to 1.2.29 (o…
…ry#3812) Bumps [github.com/lestrrat-go/jwx](https://github.com/lestrrat-go/jwx) from 1.2.28 to 1.2.29. - [Release notes](https://github.com/lestrrat-go/jwx/releases) - [Changelog](https://github.com/lestrrat-go/jwx/blob/v1.2.29/Changes) - [Commits](lestrrat-go/jwx@v1.2.28...v1.2.29) --- updated-dependencies: - dependency-name: github.com/lestrrat-go/jwx dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0f3d082 - Browse repository at this point
Copy the full SHA 0f3d082View commit details -
feat: PassKeys with Resident Keys and two-step registration (ory#3748)
BREAKING CHANGES: This feature enables two-step registration per default. Two-step registration is a significantly improved sign up flow and recommended when using more than one sign up methods. To disable two-step registration, set `selfservice.flows.registration.enable_legacy_flow` to `true`. This value defaults to `false`.
Configuration menu - View commit details
-
Copy full SHA for 3621411 - Browse repository at this point
Copy the full SHA 3621411View commit details -
Configuration menu - View commit details
-
Copy full SHA for b47554b - Browse repository at this point
Copy the full SHA b47554bView commit details -
chore(deps): bump github.com/go-jose/go-jose/v3 from 3.0.1 to 3.0.3 (o…
…ry#3805) Bumps [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) from 3.0.1 to 3.0.3. - [Release notes](https://github.com/go-jose/go-jose/releases) - [Changelog](https://github.com/go-jose/go-jose/blob/v3.0.3/CHANGELOG.md) - [Commits](go-jose/go-jose@v3.0.1...v3.0.3) --- updated-dependencies: - dependency-name: github.com/go-jose/go-jose/v3 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 49e1a39 - Browse repository at this point
Copy the full SHA 49e1a39View commit details
Commits on Mar 12, 2024
-
feat: linkedin v2 provider (ory#3804)
* feat: add linkedin-v2 provider * docs: document linkedin special-case
Configuration menu - View commit details
-
Copy full SHA for a6ad983 - Browse repository at this point
Copy the full SHA a6ad983View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1459403 - Browse repository at this point
Copy the full SHA 1459403View commit details -
Configuration menu - View commit details
-
Copy full SHA for bdf992e - Browse repository at this point
Copy the full SHA bdf992eView commit details
Commits on Mar 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9ddf7cc - Browse repository at this point
Copy the full SHA 9ddf7ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa5a112 - Browse repository at this point
Copy the full SHA fa5a112View commit details
Commits on Mar 20, 2024
-
feat: use authenticate endpoint for x (ory#3833)
Improves the "Log in with X" experience by not asking the user to re-authenticate every time.
Configuration menu - View commit details
-
Copy full SHA for 3d9ba5d - Browse repository at this point
Copy the full SHA 3d9ba5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ebdfd2 - Browse repository at this point
Copy the full SHA 8ebdfd2View commit details
Commits on Mar 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 43e4ead - Browse repository at this point
Copy the full SHA 43e4eadView commit details -
Configuration menu - View commit details
-
Copy full SHA for 718cb7c - Browse repository at this point
Copy the full SHA 718cb7cView commit details -
Configuration menu - View commit details
-
Copy full SHA for cd92f2a - Browse repository at this point
Copy the full SHA cd92f2aView commit details
Commits on Mar 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8f8fd90 - Browse repository at this point
Copy the full SHA 8f8fd90View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa806aa - Browse repository at this point
Copy the full SHA fa806aaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 34399c2 - Browse repository at this point
Copy the full SHA 34399c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for d01b670 - Browse repository at this point
Copy the full SHA d01b670View commit details -
Configuration menu - View commit details
-
Copy full SHA for 60537a9 - Browse repository at this point
Copy the full SHA 60537a9View commit details
Commits on Mar 24, 2024
-
fix: tolerate more "truthy" values when creating new flows (ory#3841)
Use strconv.ParseBool to accept multiple "truthy" values for the `refresh` and `return_session_token_exchange_code` query parameters when creating a new login flow. For some SDKs (e.g.: Python), these stringification of booleans is not user-controlled and these endpoints could not be used fully due to the backend ignoring any value other than `true` (all lowercase). Closes ory#3839
Configuration menu - View commit details
-
Copy full SHA for 49d93c0 - Browse repository at this point
Copy the full SHA 49d93c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04f0231 - Browse repository at this point
Copy the full SHA 04f0231View commit details -
Configuration menu - View commit details
-
Copy full SHA for c08b3ad - Browse repository at this point
Copy the full SHA c08b3adView commit details
Commits on Mar 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0713e2d - Browse repository at this point
Copy the full SHA 0713e2dView commit details
Commits on Mar 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5aad1c1 - Browse repository at this point
Copy the full SHA 5aad1c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7fd23b - Browse repository at this point
Copy the full SHA b7fd23bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8eee972 - Browse repository at this point
Copy the full SHA 8eee972View commit details -
Configuration menu - View commit details
-
Copy full SHA for ad0619d - Browse repository at this point
Copy the full SHA ad0619dView commit details -
Configuration menu - View commit details
-
Copy full SHA for da90502 - Browse repository at this point
Copy the full SHA da90502View commit details
Commits on Mar 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4642de0 - Browse repository at this point
Copy the full SHA 4642de0View commit details
Commits on Mar 28, 2024
-
fix: webhook transient payload in OIDC login flows (ory#3857)
* fix: transient payload with OIDC login
Configuration menu - View commit details
-
Copy full SHA for 2cdfc70 - Browse repository at this point
Copy the full SHA 2cdfc70View commit details -
Configuration menu - View commit details
-
Copy full SHA for b132c94 - Browse repository at this point
Copy the full SHA b132c94View commit details
Commits on Apr 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 800f8f1 - Browse repository at this point
Copy the full SHA 800f8f1View commit details
Commits on Apr 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 660f330 - Browse repository at this point
Copy the full SHA 660f330View commit details -
Configuration menu - View commit details
-
Copy full SHA for f696fcf - Browse repository at this point
Copy the full SHA f696fcfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e63d06 - Browse repository at this point
Copy the full SHA 6e63d06View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb67bed - Browse repository at this point
Copy the full SHA eb67bedView commit details
Commits on Apr 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 11d221a - Browse repository at this point
Copy the full SHA 11d221aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b96c6a5 - Browse repository at this point
Copy the full SHA b96c6a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b275f3 - Browse repository at this point
Copy the full SHA 6b275f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 386078e - Browse repository at this point
Copy the full SHA 386078eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9fa25b5 - Browse repository at this point
Copy the full SHA 9fa25b5View commit details
Commits on Apr 17, 2024
-
fix: always issue session last (ory#3876)
In post persist hooks, the session issuance hook always needs to come last. This fixes the getHooks function to ensure this.
Configuration menu - View commit details
-
Copy full SHA for e942507 - Browse repository at this point
Copy the full SHA e942507View commit details -
Configuration menu - View commit details
-
Copy full SHA for da51dcd - Browse repository at this point
Copy the full SHA da51dcdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 31f77b8 - Browse repository at this point
Copy the full SHA 31f77b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 696cc1b - Browse repository at this point
Copy the full SHA 696cc1bView commit details -
Configuration menu - View commit details
-
Copy full SHA for ddbea20 - Browse repository at this point
Copy the full SHA ddbea20View commit details
Commits on Apr 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e06c241 - Browse repository at this point
Copy the full SHA e06c241View commit details -
Configuration menu - View commit details
-
Copy full SHA for 473e17c - Browse repository at this point
Copy the full SHA 473e17cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c69ef2 - Browse repository at this point
Copy the full SHA 9c69ef2View commit details
Commits on Apr 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 63d785e - Browse repository at this point
Copy the full SHA 63d785eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b6f91e - Browse repository at this point
Copy the full SHA 0b6f91eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 17f9a4f - Browse repository at this point
Copy the full SHA 17f9a4fView commit details
Commits on Apr 25, 2024
-
fix: respect return_to in OIDC API flow error case (ory#3893)
* fix: respect return_to in OIDC API flow error case This fix ensures that we redirect the user to the return_to URL when an error occurs during the OIDC login for native flows. Native flows are initialized through the API, and the browser URL is retrieved from a 422 response after a POST to submit the login flow. Successful OIDC flows already returned the `code` to the `return_to` URL. Now, unsuccessful flows return the `flow` with the current flow ID (which might have changed), so that the caller can retrieve the full flow and act accordingly. * fix: ignore trivvy CVE report Bump in distroless is still open
Configuration menu - View commit details
-
Copy full SHA for e8f1bcb - Browse repository at this point
Copy the full SHA e8f1bcbView commit details -
Configuration menu - View commit details
-
Copy full SHA for ec90929 - Browse repository at this point
Copy the full SHA ec90929View commit details -
Configuration menu - View commit details
-
Copy full SHA for c435727 - Browse repository at this point
Copy the full SHA c435727View commit details -
Configuration menu - View commit details
-
Copy full SHA for da6b38a - Browse repository at this point
Copy the full SHA da6b38aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 41310b3 - Browse repository at this point
Copy the full SHA 41310b3View commit details
Commits on Apr 26, 2024
-
fix: db index and duplicate credentials error (ory#3896)
* fix: don't return password cred type if empty * fix: better index for config.user_handle on identity_credentials
Configuration menu - View commit details
-
Copy full SHA for 9f34a21 - Browse repository at this point
Copy the full SHA 9f34a21View commit details -
Configuration menu - View commit details
-
Copy full SHA for ab8e1b5 - Browse repository at this point
Copy the full SHA ab8e1b5View commit details -
fix: close res body (ory#3870)
Signed-off-by: guoguangwu <guoguangwug@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for cc39f8d - Browse repository at this point
Copy the full SHA cc39f8dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 264395a - Browse repository at this point
Copy the full SHA 264395aView commit details
Commits on Apr 29, 2024
-
chore: fix function name in comment (ory#3869)
Signed-off-by: camcui <cuishua@sina.cn> Co-authored-by: Jonas Hungershausen <jonas.hungershausen@ory.sh>
Configuration menu - View commit details
-
Copy full SHA for 3ecdf2b - Browse repository at this point
Copy the full SHA 3ecdf2bView commit details
Commits on May 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for cd01cb9 - Browse repository at this point
Copy the full SHA cd01cb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 644e669 - Browse repository at this point
Copy the full SHA 644e669View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5d3b0a - Browse repository at this point
Copy the full SHA e5d3b0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5288bc7 - Browse repository at this point
Copy the full SHA 5288bc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d9dbaad - Browse repository at this point
Copy the full SHA d9dbaadView commit details
Commits on May 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1a9a096 - Browse repository at this point
Copy the full SHA 1a9a096View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5dcbb77 - Browse repository at this point
Copy the full SHA 5dcbb77View commit details
Commits on May 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 83792ef - Browse repository at this point
Copy the full SHA 83792efView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9730e09 - Browse repository at this point
Copy the full SHA 9730e09View commit details
Commits on May 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for de8e59c - Browse repository at this point
Copy the full SHA de8e59cView commit details
Commits on May 29, 2024
-
test: resolve flaky e2e tests (ory#3935)
* test: resolve flaky code registration tests * chore: don't fail logout if cookie is not found * chore: remove .only * chore: reduce wait * chore: u * chore: u * chore: u
Configuration menu - View commit details
-
Copy full SHA for a14927d - Browse repository at this point
Copy the full SHA a14927dView commit details
Commits on Jun 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 050a4dc - Browse repository at this point
Copy the full SHA 050a4dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for fbbac77 - Browse repository at this point
Copy the full SHA fbbac77View commit details
Commits on Jun 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 25d1ecd - Browse repository at this point
Copy the full SHA 25d1ecdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c06689 - Browse repository at this point
Copy the full SHA 3c06689View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2baecae - Browse repository at this point
Copy the full SHA 2baecaeView commit details
Commits on Jun 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1a70648 - Browse repository at this point
Copy the full SHA 1a70648View commit details
Commits on Jun 11, 2024
-
all commits before 2024 rebase
feat(saml): api flow support (PS-35) all commits before Jan 2024 fix(saml): applied recent changes from ovh/saml branch (PS-35) fix(saml): fixed compilation errors after rebase (PS-35) feat: extend admin api to read SAML providers configs (CORE-966) (cherry picked from commit a55dee2) ignore: add test to check token is valid in webview flow (CORE-2202) (cherry picked from commit 2cee177) feat(saml): add “provider id” parameter to kratos session (CORE-2073) (cherry picked from commit ffa32d7) feat(oidc): add “provider id” parameter to kratos session (CORE-2073) (cherry picked from commit ddea269) feat: link credentials when second login is OIDC (CORE-2041) (cherry picked from commit 2a0b706) feat: extend SAML cookie lifetime and set SameSite to None (CORE-2024) (cherry picked from commit ef9918f) feat: extend SAML cookie lifetime and set SameSite to None (CORE-2024) (cherry picked from commit 7c6352a) fix: panic when linked flow does not exist (CORE-2017) (cherry picked from commit 98597ef) feat(saml): return flow id when doing sso webview first login and email already exists (CORE-1986) (cherry picked from commit 10690c8) feat(saml): return error in webview redirect url when provider is not found (CORE-1982) (cherry picked from commit 58be1df) fix(saml): missed CSRF token when login with Google SAML and email is already used (CORE-1975) (cherry picked from commit d808af6) feat: link credentials when login - add LoginAndLinkCredentials method to login and registrations flows (cherry picked from commit a6b8ad1) feat: link credentials when login (cherry picked from commit 9ea2707) fix(saml): saml settings link redirect path (cherry picked from commit 514b47b) feat(saml): saml link/unlink (cherry picked from commit 2cf82e8) fix(saml): forward to registration flow when user with email is found (cherry picked from commit 8f145c8) fix(saml): forward to registration flow when user with email is found (cherry picked from commit 58165d5) fix(saml): An error occurred while retrieving the middeware, it is null (cherry picked from commit c00246a) fix(saml): saml creates identity with wrong default schema id (cherry picked from commit 995d429) fix(saml): add debug info to errors (cherry picked from commit ef7fab2) fix(saml): add debug info to errors (cherry picked from commit e836c74) feat(saml): set login flow error code and message if provider not found (cherry picked from commit 2ac84f4) feat(saml): support WebView flow for saml strategy (cherry picked from commit dceaea1) feat(saml): relaystate continuity fix + unit tests Signed-off-by: sebferrer <sebferrer@users.noreply.github.com> Co-authored-by: ThibaultHerard <thibaultherard10@gmail.com> (cherry picked from commit aeb172c) feat(saml): improved error handling Signed-off-by: ThibaultHerard <thibaultherard10@gmail.com> Co-authored-by: sebferrer <sebferrer@users.noreply.github.com> (cherry picked from commit 37f7bbe) feat(saml): use ory/x fetcher Signed-off-by: ThibaultHerard <thibaultherard10@gmail.com> Co-authored-by: sebferrer <sebferrer@users.noreply.github.com> (cherry picked from commit b26f11d) feat(saml): saml 2.0 implementation Signed-off-by: ThibaultHerard <thibaultherard10@gmail.com> Co-authored-by: sebferrer <sebferrer@users.noreply.github.com> Co-authored-by: psauvage <psauvage0@users.noreply.github.com> Co-authored-by: alexGNX <alexGNX@users.noreply.github.com> Co-authored-by: Stoakes <Stoakes@users.noreply.github.com> (cherry picked from commit 3f5480f)
Configuration menu - View commit details
-
Copy full SHA for 9ef0a8a - Browse repository at this point
Copy the full SHA 9ef0a8aView commit details
Commits on Jun 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e9b2e38 - Browse repository at this point
Copy the full SHA e9b2e38View commit details
Commits on Jun 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 25fdf42 - Browse repository at this point
Copy the full SHA 25fdf42View commit details
Commits on Nov 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ba9635d - Browse repository at this point
Copy the full SHA ba9635dView commit details