-
Notifications
You must be signed in to change notification settings - Fork 37
feat(php): release of PHP 8.5.0 #553
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
Conversation
EtienneM
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one question. Already approving
support/package_all
Outdated
| # IMAP extension has been moved to PECL starting with PHP 8.4 | ||
| # https://www.php.net/ChangeLog-8.php#8.4.1 | ||
| if [[ "${ext_name}" == "imap" ]] \ | ||
| && [[ "${php_version}" == "8.4" || "${php_version}" == "8.5" ]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion: would it be possible to write something like:
| && [[ "${php_version}" == "8.4" || "${php_version}" == "8.5" ]] | |
| && [[ "${PHP_MODULE_API_VERSIONS["$php_series"]}" -ge 20240924 ]] |
That way we wouldn't forget to update this for the next major release
support/package_all
Outdated
| #cur_dir="$( dirname -- "${BASH_SOURCE[0]}")" | ||
| #source "${cur_dir}/../conf/versions.sh" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be deleted?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Of course, done in c473818
| # SKIP imap extension since it has been moved to PECL starting with PHP 8.4 | ||
| # https://www.php.net/ChangeLog-8.php#8.4.1 | ||
| # | ||
| # SKIP amqp extension since it doesn't compile with PHP 8.5 | ||
| # https://github.com/php-amqp/php-amqp/pull/595 | ||
| # | ||
| # SKIP igbinary extension since it doesn't compile with PHP 8.5 | ||
| # https://github.com/igbinary/igbinary/issues/400 | ||
| # | ||
| # SKIP imagick extension since it doesn't compile with PHP 8.5 | ||
| # https://github.com/Imagick/imagick/issues/755 | ||
| # |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
praise: thanks for the comment 🙏
Following review :)
Related to #551