ec-cube
ec-cube copied to clipboard
Bump robthree/twofactorauth from 1.8.2 to 2.1.0
Bumps robthree/twofactorauth from 1.8.2 to 2.1.0.
Release notes
Sourced from robthree/twofactorauth's releases.
v2.1.0
tl;dr Cleaned up code and support for Endroid QR Code 5
What's Changed
- Fix badges in README by
@NicolasCARPi
in RobThree/TwoFactorAuth#102- Add warning of default QR Code provider to README.md by
@RMEngels
in RobThree/TwoFactorAuth#105- code improvements, readability enhancements, type safety, modern syntax adaptation by
@xHeaven
in RobThree/TwoFactorAuth#108- Fix docs: Construct new TwoFactorAuth-class by
@modelrailroader
in RobThree/TwoFactorAuth#110- Fix issue #114 (Support for EndroidQR v5) by
@Mattie112
in RobThree/TwoFactorAuth#115New Contributors
@RMEngels
made their first contribution in RobThree/TwoFactorAuth#105@xHeaven
made their first contribution in RobThree/TwoFactorAuth#108@modelrailroader
made their first contribution in RobThree/TwoFactorAuth#110@Mattie112
made their first contribution in RobThree/TwoFactorAuth#115Full Changelog: https://github.com/RobThree/TwoFactorAuth/compare/v2.0.0...v2.1.0
v2.0.0
This release bumps the minimum supported PHP version to 8.1, the oldest actively supported PHP version at this time, and makes use of the newer features that enables.
What's Changed
- Namespace mistake in docs by
@thomascorthals
in RobThree/TwoFactorAuth#98- Ensure composer dist archive contains only usefull files by
@cedric-anne
in RobThree/TwoFactorAuth#101- Move to PHP 8.1 minimum version, add typing by
@NicolasCARPi
in RobThree/TwoFactorAuth#97New Contributors
@thomascorthals
made their first contribution in RobThree/TwoFactorAuth#98@cedric-anne
made their first contribution in RobThree/TwoFactorAuth#101@NicolasCARPi
made their first contribution in RobThree/TwoFactorAuth#97Full Changelog: https://github.com/RobThree/TwoFactorAuth/compare/1.8.2...v2.0.0
v2.0.0-RC1
Testing #101, full release to follow
Changelog
Sourced from robthree/twofactorauth's changelog.
RobThree\TwoFactorAuth changelog
Version 3.x
Breaking changes
PHP Version
Version 3.x requires at least PHP 8.2.
Other changes
- The new PHP attribute SensitiveParameter was added to the code, to prevent accidental leak of secrets in stack traces.
Version 2.x
Breaking changes
PHP Version
Version 2.x requires at least PHP 8.1.
Constructor signature
With version 2.x, the
algorithm
parameter ofRobThree\Auth\TwoFactorAuth
constructor is now anenum
.On version 1.x:
use RobThree\Auth\TwoFactorAuth;
$lib = new TwoFactorAuth('issuer-name', 6, 30, 'sha1');
On version 2.x, simple change the algorithm from a
string
to the correctenum
:use RobThree\Auth\TwoFactorAuth; use RobThree\Auth\Algorithm;
$lib = new TwoFactorAuth('issuer-name', 6, 30, Algorithm::Sha1);
See the Algorithm.php file to see available algorithms.
Commits
ab93dd4
Merge pull request #115 from Mattie112/endroidqr-v5ec35073
🔧 test all endroid versions we can care about13a5601
Fixed typo4b6b060
Fixed check ordering126afe4
Removed dependency again from composer63f6259
Added support for EndroidQR v5137df4d
🔧 remove deprecated rule PHP-CS-Fixer/PHP-CS-Fixer#70669476751
Merge pull request #110 from modelrailroader/patch-10565d63
fix: better understanding for QrCodeProvider classd5aa22a
fix: hyperlinks for new file extensions- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 82.80%. Comparing base (
2ee4331
) to head (0cbc098
). Report is 1 commits behind head on 4.3.
:exclamation: Current head 0cbc098 differs from pull request most recent head ab5909c
Please upload reports for the commit ab5909c to get more accurate results.
Additional details and impacted files
@@ Coverage Diff @@
## 4.3 #6163 +/- ##
=======================================
Coverage 82.80% 82.80%
=======================================
Files 480 480
Lines 26431 26431
=======================================
Hits 21885 21885
Misses 4546 4546
Flag | Coverage Δ | |
---|---|---|
E2E | 82.80% <ø> (ø) |
|
Unit | 82.80% <ø> (ø) |
Flags with carried forward coverage won't be shown. Click here to find out more.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
動作確認の必要あり