-
-
Notifications
You must be signed in to change notification settings - Fork 145
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
[3.5] remaining problem in arginfo #424
Comments
About type hitting, need to be fixed
From code, always return a float, no HDRI specific case
From code, always expect a integer , no HDRI specific case |
That might be a bug then: https://imagemagick.org/api/pixel-wand.php#PixelSetIndex void PixelSetIndex(PixelWand *wand,const Quantum index) going through the others now. |
Correct Imagick::colorMatrixImage - fixed in 15cae4b ImagickKernel::scale - Looks to be required, presumably was a bug before? ImagickPixel::construct - fixed in f58a8d7 ImagickPixel::getcolorvalue - still to look at. |
I see ""d|l"" so second arg is optional (and default value missing ) |
Reflection diff:
So everything seems ok (for optional/mandatory param) |
So, ImagickKernel::scale was fixed in a27492e So, assuming the CI completes, does it all look good to you for an RC2? |
Run a few test build (not the full matrix, only some)
All build OK and test suite OK So good to release :) |
Comparing reflection from different version is really a mess ;)
BTW, using a small script to extract methods from reflection and sort them, I was able to compare 3.4.4 and 3.5.0
In 20 diff reported, most are OK (so 3.4.4 was wrong)
But still 5 remainings:
Imagick
FIX: the array is really mandatory
ImagickKernel
FIX: normalize is really optional
ImagickPixel
FIX: color is really optional
FIX: color is really mandatory
FIX: color is really mandatory
Notice: this check is for 7.x (so without type hinting)
I hope to not have miss some other...
The text was updated successfully, but these errors were encountered: