ec-cube icon indicating copy to clipboard operation
ec-cube copied to clipboard

Bump robthree/twofactorauth from 1.8.2 to 2.1.0

Open dependabot[bot] opened this issue 10 months ago • 2 comments

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

New Contributors

Full 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

New Contributors

Full 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 of RobThree\Auth\TwoFactorAuth constructor is now an enum.

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 correct enum:

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

Dependabot compatibility score

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.

dependabot[bot] avatar Apr 22 '24 05:04 dependabot[bot]

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.

codecov[bot] avatar Apr 22 '24 09:04 codecov[bot]

動作確認の必要あり

dotani1111 avatar Apr 24 '24 07:04 dotani1111