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

Enhancement: Add PHP version support policy #752

Merged

Conversation

localheinz
Copy link
Member

@localheinz localheinz commented Sep 12, 2023

What is the reason for this PR?

  • add a PHP version support policy

Related to #747.

πŸ’β€β™‚οΈ Also see https://localheinz.com/articles/2023/09/12/adopting-a-reasonable-php-version-support-policy/.

Author's checklist

Summary of changes

Review checklist

  • All checks have passed
  • Changes are added to the CHANGELOG.md
  • Changes are approved by maintainer

@localheinz localheinz added the enhancement New feature or request label Sep 12, 2023
@@ -99,6 +99,10 @@ return static function (Config\RectorConfig $rectorConfig): void {

Faker is released under the MIT License. See [`LICENSE`](LICENSE) for details.

## PHP Version Support Policy

The maintainers of this package add support for a PHP version following its initial release and drop support for a PHP version one year after it has reached its end of security support.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This may or may not reflect the current implicit PHP version support policy.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd rather make this 2 or 3 years.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I honestly think one full year after security support ends, is already pretty long.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is only free security support from php.net. Many users receive extended support from third parties, both free and paid. Given faker is a library used for testing, it is convenient to support as wide a range of PHP versions as possible.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GrahamCampbell

I'd rather make this 2 or 3 years.

If we drop support for a PHP version one year after it has reached its end of security support, we would need to support

  • 7.4
  • 8.0
  • 8.1
  • 8.2

today (which we currently do).

If we drop support for a PHP version two years after it has reached its end of security support, we would need to support

  • 7.3
  • 7.4
  • 8.0
  • 8.1
  • 8.2

today.

If we drop support for a PHP version three years after it has reached its end of security support, we would need to support

  • 7.2
  • 7.3
  • 7.4
  • 8.0
  • 8.1
  • 8.2

today.

Quick overview of the lifecycle of PHP versions

  • 7.0
    • initial release on December 3, 2015
    • active support ended on January 4, 2018
    • security support ended on January 10, 2019
  • 7.1
    • initial release on December 1, 2016
    • active support ended on December 1, 2018
    • security support ended on December 1, 2019
  • 7.2
    • initial release on November 30, 2017
    • active support ended on November 30, 2019
    • security support ended on November 30, 2020
  • 7.3
    • initial release on December 6, 2018
    • active support ended on December 6, 2020
    • security support ended on December 6, 2021
  • 7.4
    • initial release on November 28, 2019
    • active support ended on November 28, 2021
    • security support ended on November 28, 2022
  • 8.0
    • initial release on November 26, 2020
    • active support ended on November 26, 2022
    • security support ends on November 26, 2023
  • 8.1
    • initial release on November 25, 2021
    • active support ends on November 25, 2023
  • 8.2
    • initial release on December 8, 2022
    • active support ends on December 8, 2024

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and do the sensible thing on applicable branches

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The policy could also be:

  • support for PHP versions will be offered until there's justifiable reason to drop support for an older PHP version.
  • Support for a PHP version can only be dropped at least 1 year after it's security release has ended, provided justifiable reason has been provided.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@deleugpn

What would be a justifiable reason?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GrahamCampbell

we could just have no formal policy on php version support. ;)

Sure, we could, but ...

and do the sensible thing on applicable branches

...we could also repeat discussing this every other week, month, or year until we lose interest contributing and eventually abandon this package - but: I'm not getting paid for this, and neither are any of you.

The sensible thing to do for all of us is to avoid wasting resources.

A clear, actionable PHP version support policy can help us with that.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GrahamCampbell

I understand and appreciate that we can all change our minds, but see #3 (comment):

I am personally not happy with supporting super old PHP versions. I think 7.1 makes for a good lower-bound in 2020. People using deprecated PHP can still use the 1.9.1 release. My view is that if you are happy to use super old PHP, then using an old version of a library comes with the territory.

@localheinz localheinz force-pushed the feature/php-version-support-policy branch from ac0dd7f to 0a0a82e Compare September 12, 2023 10:26
@@ -99,6 +99,10 @@ return static function (Config\RectorConfig $rectorConfig): void {

Faker is released under the MIT License. See [`LICENSE`](LICENSE) for details.

## PHP Version Support Policy

The maintainers of this package add support for a PHP version following its initial release and drop support for a PHP version one year after it has reached its end of security support.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd rather make this 2 or 3 years.

Copy link
Member

@bram-pkg bram-pkg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like this a lot. Having a clear understand amonst everybody what versions of Faker support what PHP versions are is good. By dropping support for older versions of PHP, we are not blocking people from using Faker. They will just be stuck on a slightly older version, probably like most of their dependencies.

@krsriq
Copy link

krsriq commented Sep 13, 2023

I think that FakerPHP should not be over-eager in dropping supported PHP versions; I understand the argument that not every FakerPHP user has the resources to keep their projects constantly up to date (even though that kind of makes me question their judgement of the technical debt incurred by using FakerPHP - or any technology for that matter).
Limiting the supported PHP version of current FakerPHP releases to one year after EOL is imo a compromise that somewhat balances the work needed for users of FakerPHP to keep their projects up to date with PHP versions (or research how to use an older version of FakerPHP, or mabye even fork the project) with FakerPHP's maintainers' (and contributors') work needed to support older PHP versions.

Frankly I don't think that we should take extra-care of the set of users who 1. know how to install FakerPHP in a project and deploy said project in the first place and 2. are not aware of how to use (or research how to use) an older version of FakerPHP.

I also think that having a clear policy on what users can expect regarding this is important - I'd rather spend my time contributing to the future of FakerPHP than to contributing to recurring discussions about which PHP versions should be supported..

@deleugpn
Copy link

As I stated on the previous thread, Faker is not a common PHP library, it's a crucial component in automation tests across the PHP ecosystem. Faker is also useful for other PHP libraries to write tests for themselves and these libraries may have good reason to support a wider range of PHP versions. As a thought experiment, imagine if Composer had a dependency on Faker and then Faker makes the lives of Composer core developers harder by cutting PHP versions too soon.

To me it's a lot better to spend a few hours every year debating this subject back-and-forth than to take on a yearly decision to negatively impact projects that could otherwise make adoption of newer PHP version smoother.

@GrahamCampbell
I understand and appreciate that we can all change our minds, but see > #3 (comment):

I can't speak for Graham, but it looks to me like context might have been ignored here. Talking about dropping PHP 5 series in 2020 is not the same as talking about dropping PHP 7 series in 2023. PHP 5.6 was out of support for 2 years in 2020, not just 1.

@deleugpn
What would be a justifiable reason?

What is the 8.0 feature that will improve Faker that cannot be used while 7.4 is still supported? What is the maintenance burden that comes with keeping a composer.json configuration that allows PHP 7.4?

Ultimately I see Faker as a feature-complete library that needs no change except adjustments to support newer PHP versions when they're released and if a new PHP version breaks Faker and it's hard for Faker to support both the oldest PHP version and the newest simultaneously, that's a great moment to drop the oldest one. But if there's no challenge in supporting a new PHP version, why make it harder for the PHP ecosystem to run their automation tests while upgrading their project? Most libraries can probably help PHP by dropping support and "pushing" the ecosystem forward, but a testing library doing it will accomplish the exact opposite, specially one that we have very little reason to use in production and it's mostly a require-dev dependency that helps users to know that they are safe to upgrade their dependencies.

@pimjansen
Copy link

I actually think this discussion goes way too far here. There is no added benefit in dropping a single php version if the lib does not require it.

For me personally php 8.x does that by making stuff strict and clean which we did for the core libs and 2.0 stuff we build.

But for here as well there is not a single benefit in dropping 8.0 because it goes out of support in 2023.

@TimWolla
Copy link

As per the issues #760 and #761 that I just filed, the real value-add comes with PHP 8.2 which introduced the new object-oriented random API (which will be further extended with PHP 8.3). Depending on the progress on Faker 2.0 it might make sense to raise the minimum version to PHP 8.2 or 8.3 for Faker 2.0 to leverage this new OO API which would allow to fix the reliance on global state as used by the horrible mt_rand() function [1]. Given that Faker 2.0 is a new major it doesn't appear to be inappropriate to use the opportunity to also migrate the internals to something that is actually properly seedable for use in testing.

[1] I plan to re-propose deprecating mt_rand() with PHP 8.4.

@localheinz
Copy link
Member Author

@TimWolla

Also see #769 as an attempt to move the generation of (random) integers into a central place - this could accommodate for better algorithms than the ones that are available to us with the currently supported PHP versions

  • 7.4
  • 8.0
  • 8.1
  • 8.2

@bram-pkg
Copy link
Member

Can we merge this, I think we've reached a majority of people agreeing, right?

@localheinz
Copy link
Member Author

@bram-pkg

I think all we need here are a few approvals to move forward!

@pimjansen pimjansen removed the request for review from GrahamCampbell September 20, 2023 15:07
@pimjansen pimjansen merged commit da6658f into FakerPHP:2.0 Sep 20, 2023
12 checks passed
@localheinz localheinz deleted the feature/php-version-support-policy branch September 20, 2023 15:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants