Skip to content
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

Dev: PHP 8.4 support #9116

Open
6 of 15 tasks
kenjis opened this issue Aug 11, 2024 · 14 comments
Open
6 of 15 tasks

Dev: PHP 8.4 support #9116

kenjis opened this issue Aug 11, 2024 · 14 comments

Comments

@kenjis
Copy link
Member

kenjis commented Aug 11, 2024

PHP 8.4 requires CodeIgniter 4.6.0 or later.

References:

TODO:

@kenjis
Copy link
Member Author

kenjis commented Aug 21, 2024

@codeigniter4/core-team How do we handle the Deprecations of session.sid_length and session.sid_bits_per_character?
They are deprecated in PHP 8.4, but it still works in 8.x.
So we can't replace the current code.

$bitsPerCharacter = (int) ini_get('session.sid_bits_per_character');
$SIDLength = (int) ini_get('session.sid_length');

@neznaika0
Copy link
Contributor

current defaults of a 32 character hexadecimal session ID.

Should I keep the regular expression for '[0-9a-f]' for compatibility?

@kenjis
Copy link
Member Author

kenjis commented Aug 21, 2024

Should I keep the regular expression for '[0-9a-f]' for compatibility?

In PHP9, yes. But in PHP 8.x, the INI settings still work, but the deprecation error makes CI4 stop executing.

So I sent #9135 feat: add deprecation error handling for session.sid_length and session.sid_bits_per_character for PHP 8.4.

@paulbalandan
Copy link
Member

The deprecation is geared towards security. Why not follow the new default of 32 chars length at 4bits? It would be a breaking change but I think the impact would be low.

@kenjis
Copy link
Member Author

kenjis commented Aug 21, 2024

@paulbalandan That is also a possibility.
If we do so, do we introduce the breaking change to v4.5.x ?

@paulbalandan
Copy link
Member

I think we can introduce partial PHP 8.4 support in 4.5.x, then tackle this BC deprecation in 4.6. What do you think?

@michalsn
Copy link
Member

I agree with @paulbalandan - we should follow the default values. The possible impact on users will be negligible, and it will save us from complicating the code unnecessarily.

If we plan to release v4.6 right after/before PHP 8.4 (November 21), I would be in favor of adding these changes there.

@kenjis
Copy link
Member Author

kenjis commented Aug 21, 2024

What do you mean by "partial PHP 8.4 support in 4.5.x" ?
Unless we address the session sid deprecations and Time::createFromTimestamp() method signature change,
4.5.x will not work on PHP 8.4.

If we don't support PHP 8.4 in 4.5.x, we don't need to introduce breaking changes for PHP 8.4.
Then, we can make all breaking changes in v4.6.0 to make it compatible with PHP 8.4.
This way is simple to develop.

And we have time, so I think we can release v4.6.0 right after PHP 8.4 release.
But I don't know if it's okay that 4.5.x doesn't support PHP 8.4.

I would like to decide whether 4.5.x will support PHP 8.4 or not.

@michalsn
Copy link
Member

I would like to decide whether 4.5.x will support PHP 8.4 or not.

Personally, I have no problem with adding support for PHP 8.4 only in v4.6.

This seems like a pretty good opportunity to "force" an upgrade to the latest version of the framework.

@kenjis
Copy link
Member Author

kenjis commented Aug 21, 2024

This seems like a pretty good opportunity to "force" an upgrade to the latest version of the framework.

It might be a good idea.

@paulbalandan
Copy link
Member

I was thinking of silencing the deprecations in 4.5.x then fix them on 4.6, but in retrospect I think that's a band-aid solution. In this case, I support having PHP 8.4 on 4.6+.

@ddevsr
Copy link
Collaborator

ddevsr commented Aug 23, 2024

Constant CURL_HTTP_VERSION_3 merged in PHP 8.4, will support?

@kenjis kenjis added the 4.6 label Aug 29, 2024
@neznaika0
Copy link
Contributor

Do I understand correctly? Need to fix exit; => exit();
https://wiki.php.net/rfc/exit-as-function
CI 4 contains the code:
https://github.com/search?q=repo%3Acodeigniter4%2FCodeIgniter4++exit%3B&type=code

@kenjis
Copy link
Member Author

kenjis commented Sep 12, 2024

@neznaika0 No. But replacing exit with exit() may be better.

These are ideas for future proposals that are not part of this RFC:
Deprecate using exit without parentheses
https://wiki.php.net/rfc/exit-as-function#future_scope

$ php -v
PHP 8.4.0-dev (cli) (built: Aug  5 2024 00:57:29) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.4.0-dev, Copyright (c) Zend Technologies
    with Zend OPcache v8.4.0-dev, Copyright (c), by Zend Technologies
bash-3.2$ php -a
Interactive shell

php > exit;
php > 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants