-
Notifications
You must be signed in to change notification settings - Fork 1
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
Release plan #4
Comments
FYI: php/php-src#9839. Not yet merged due to one pending review, but this will become part of RC 6. |
@TimWolla Thanks. It seems it doesn't affect the object behavior and my tests still pass |
The output for the following will change to match PHP 7.3 to 8.1: <?php
mt_srand(1, MT_RAND_PHP);
var_dump(str_shuffle('0123456789'));
if (class_exists(Random\Randomizer::class)) {
$r = new Random\Randomizer(new Random\Engine\Mt19937(1, MT_RAND_PHP));
var_dump($r->shuffleBytes('0123456789'));
} see:
|
@arokettu I've just merged the previously linked PR. |
Ok, I see. I fixed it in #5, I will merge it once RC6 is out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Postpone final release until PHP 8.2 final release
The text was updated successfully, but these errors were encountered: