Skip to content

Commit

Permalink
Resolve SMS Bypass issue (#262)
Browse files Browse the repository at this point in the history
* Drop support for u2f

* Implement Stepup Bundle SMS interface changes

Passing the SecondFactorID has become mandatory for most methods. That
is implemented in this commit.

Co-authored-by: Eric Pinxteren <[email protected]>
Co-authored-by: Peter Havekes <[email protected]>
  • Loading branch information
3 people authored Dec 21, 2021
1 parent 7b9fcb6 commit 205b465
Show file tree
Hide file tree
Showing 34 changed files with 1,989 additions and 2,925 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ language: php
php:
- 7.2
- 7.4
- 8.0

matrix:
allow_failures:
- php: 7.4
- php: 8.0

env:
global:
Expand All @@ -27,10 +29,10 @@ before_script:
- phpenv config-add .travis.php.ini
- composer self-update --1
- composer install --prefer-dist
- composer test

script:
- ant
- composer test

branches:
only:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changelog
## 4.3.3
- Added browserlist entry in package.json to ensure IE 11 support

## 4.3.2
* Update Stepup Bundle and Http Foundation to prevent deprecation warnings

## 4.3.1
* Update stepup-bundle and stepup-saml-bundle

## 4.3.0
**Bugfix**
* Update Stepup-Bundle

## 4.2.0
**Feature**
Expand Down
14 changes: 8 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,23 @@
"ramsey/uuid": "^3.5",
"sensio/framework-extra-bundle": "^5.5",
"sensiolabs/security-checker": "^6.0",
"surfnet/stepup-bundle": "^4.0",
"surfnet/stepup-bundle": "^4.2",
"surfnet/stepup-middleware-client-bundle": "^4.1",
"surfnet/stepup-saml-bundle": "^4.1",
"surfnet/stepup-u2f-bundle": "dev-develop",
"surfnet/stepup-saml-bundle": "^4.3.2",
"symfony/asset": "4.4.*",
"symfony/expression-language": "4.4.*",
"symfony/flex": "^1.8",
"symfony/form": "4.4.*",
"symfony/http-foundation": "^5.0",
"symfony/monolog-bundle": "^3.5",
"symfony/security-bundle": "4.4.*",
"symfony/translation": "4.4.*",
"symfony/twig-pack": "^1.0",
"symfony/twig-bundle": "4.4.*",
"symfony/validator": "4.4.*",
"symfony/webpack-encore-bundle": "^1.7",
"twbs/bootstrap": "~3.3.0",
"twig/extensions": "~1.5",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12"
},
"require-dev": {
Expand All @@ -52,7 +53,8 @@
"symfony/dotenv": "4.4.*",
"symfony/maker-bundle": "^1.19",
"symfony/phpunit-bridge": "^3.0",
"symfony/profiler-pack": "^1.0"
"symfony/stopwatch": "4.4.*",
"symfony/web-profiler-bundle": "4.4.*"
},
"conflict": {
"symfony/symfony": "*"
Expand Down Expand Up @@ -103,7 +105,7 @@
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.2"
"php": "7.2.5"
}
},
"extra": {
Expand Down
Loading

0 comments on commit 205b465

Please sign in to comment.