-
Pavel Břoušek authored7f066d27
-
Pavel Břoušek authoredf947b33a
-
Pavel Břoušek authoredVerified2dc4ad13
-
Pavel Břoušek authoredVerified3b7ca800
-
Pavel Břoušek authoredVerified4404900b
-
Pavel Břoušek authoredVerifiedf28b7eeb
-
Pavel Břoušek authored
do not consider tokens with non-empty rollout_state (e.g. unverified TOTP or incomplete WebAuthn)
5e4da8c4 -
semantic-release-bot authored
## [10.7.5](https://gitlab.ics.muni.cz/perun-proxy-aai/simplesamlphp/simplesamlphp-module-authswitcher/compare/v10.7.4...v10.7.5) (2022-10-21) ### Bug Fixes * ignore incomplete token registrations ([5e4da8c4](https://gitlab.ics.muni.cz/perun-proxy-aai/simplesamlphp/simplesamlphp-module-authswitcher/commit/5e4da8c41f900c6613fe65d9c4f04fc5c81a3b14))
- .editorconfig 0 additions, 7 deletions.editorconfig
- .github/workflows/build_and_check.yml 0 additions, 60 deletions.github/workflows/build_and_check.yml
- .gitignore 717 additions, 3 deletions.gitignore
- .gitlab-ci.yml 3 additions, 0 deletions.gitlab-ci.yml
- .prettierignore 723 additions, 6 deletions.prettierignore
- .prettierrc.json 1 addition, 0 deletions.prettierrc.json
- .releaserc 0 additions, 13 deletions.releaserc
- .releaserc.json 1 addition, 0 deletions.releaserc.json
- CHANGELOG.md 7 additions, 0 deletionsCHANGELOG.md
- LICENSE 6 additions, 3 deletionsLICENSE
- README.md 2 additions, 5 deletionsREADME.md
- composer.json 8 additions, 15 deletionscomposer.json
- composer.lock 3 additions, 59 deletionscomposer.lock
- config-templates/module_authswitcher.php 3 additions, 1 deletionconfig-templates/module_authswitcher.php
- ecs.php 0 additions, 29 deletionsecs.php
- lib/Auth/Process/GetMfaTokensPrivacyIDEA.php 1 addition, 1 deletionlib/Auth/Process/GetMfaTokensPrivacyIDEA.php
- lib/Auth/Process/SwitchAuth.php 24 additions, 15 deletionslib/Auth/Process/SwitchAuth.php
- lib/ContextSettings.php 4 additions, 4 deletionslib/ContextSettings.php
- lib/DiscoUtils.php 6 additions, 4 deletionslib/DiscoUtils.php
- lib/ProxyHelper.php 4 additions, 1 deletionlib/ProxyHelper.php
... | ... | @@ -2,16 +2,6 @@ |
"name": "cesnet/simplesamlphp-module-authswitcher", | ||
"description": "A SimpleSAMLphp module for applying 2FA modules to specific users", | ||
"type": "simplesamlphp-module", | ||
"authors": [ | ||
{ | ||
"name": "Pavel Břoušek", | ||
"email": "433364@muni.cz" | ||
}, | ||
{ | ||
"name": "Jan Pavlíček", | ||
"email": "469355@muni.cz" | ||
} | ||
], | ||
"config": { | ||
"platform": { | ||
"php": "7.4" | ||
... | ... | @@ -20,7 +10,7 @@ |
"simplesamlphp/composer-module-installer": true | ||
} | ||
}, | ||
"license": "BSD-2-Clause", | ||
"license": "BSD-3-Clause", | ||
"require": { | ||
"php": "^7.1 || ^8", | ||
"web-token/jwt-easy": "^2.2", | ||
... | ... | @@ -31,12 +21,15 @@ |
"simplesamlphp/simplesamlphp": "^1.19", | ||
"simplesamlphp/saml2": "^4.1" | ||
}, | ||
"require-dev": { | ||
"symplify/easy-coding-standard": "^11.0" | ||
}, | ||
"suggest": { | ||
"privacyidea/simplesamlphp-module-privacyidea": "privacyIDEA 2FA", | ||
"cesnet/simplesamlphp-module-webauthn": "WebAuthn 2FA", | ||
"cesnet/simplesamlphp-module-totp": "TOTP 2FA" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Perun proxy AAI team", | ||
"email": "proxyidp@cesnet.cz" | ||
} | ||
] | ||
} |