A release managers role includes making packaged source code from the canonical repository available according to their release schedule.
The release schedule for their branch is available on a Wiki page, for example PHP 8.0 release schedule
There are two types of release:
- non stable (alpha/beta/RC)
- stable
The process of making packaged source available and announcing availability is explained in detail below. The process differs slightly for non-stable and stable releases.
Before a release manager can begin their work, there are several things that must happen, explained at the end of this document in New Release Manager Checklist.
-
Do not release on Fridays, Saturdays, or Sundays as this gives poor lead time for downstream consumers adhering to a typical work week.
-
Package two days before a release. So if the release is to be on Thursday, package on Tuesday. Think about timezones as well.
-
Ensure that the relevant tests on CI are green.
See:
- https://travis-ci.com/github/php/php-src
- https://ci.appveyor.com/project/php/php-src
- https://dev.azure.com/phpazuredevops/PHP/
- https://cirrus-ci.com/github/php/php-src
It is recommended to do so a couple of days before the packaging day, to have enough time to investigate failures, communicate with the authors and commit the fixes.
Check the CI status for your branch periodically and resolve the failures ASAP.
See more in https://wiki.php.net/rfc/travis_ci.
-
Follow all steps to the letter. When unclear ask previous RM's before proceeding. Ideally make sure that for the first releases one of the previous RM's is around to answer questions. For the steps related to the php/QA/bug websites try to have someone from the webmaster team on hand.
-
Verify the tags to be extra sure everything was tagged properly.
-
There is a PHP release Docker image https://github.com/sgolemon/php-release with forks available to help releasing.
-
Communication with previous release managers should be conducted via release-managers@php.net
-
References to repositories in this document refer to the canonical source located at https://github.com/php
-
Check that CI is passing (see above).
-
Run the
scripts/dev/creditsscript in php-src and commit the changes in the credits files in ext/standard. -
Checkout the release branch for this release (e.g., PHP-7.4.2) from the main branch.
-
Bump the version numbers in
main/php_version.h,Zend/zend.h,configure.acand possiblyNEWS. Do not use abbreviations for alpha and beta. Do not use dashes, you should#define PHP_VERSION "7.4.22RC1"and not#define PHP_VERSION "7.4.22-RC1".⚠️ When releasing the first release candidate, you must also bump the API version numbers inZend/zend_extensions.h,Zend/zend_modules.h, andmain/php.h. The API versions between the alpha/beta/.0RCx releases can be left the same, or bumped as little as possible because PHP extensions will need to be rebuilt with each bump. Do not bump the API versions after RC1. -
Compile and run
make test, with and without ZTS, using the right Bison and re2c version (for PHP 7.4, minimum Bison 3.0.0 and re2c 0.13.4 are used). -
Check
./sapi/cli/php -voutput for version matching. -
If all is right, commit the changes to the release branch:
git commit -a
-
Tag the repository release branch with the version, e.g.:
git tag -u YOURKEYID php-7.4.2RC2
-
Bump the version numbers in
main/php_version.h,Zend/zend.h,configure.acandNEWSin the main branch (PHP-7.4 for example) to prepare for the next version. For example, if the RC is "7.4.1RC1" then the new one should be7.4.2-dev- regardless if we get a new RC or not. This is to make sureversion_compare()can correctly work. Commit the changes to the main branch. -
Push the changes to the
php-src.Non stable release branches don't need to be pushed (a local temporary branch should be used).
git push --tags origin HEAD git push origin {main branch} git push origin {release branch} -
Run:
./scripts/dev/makedist php-7.4.0RC2, this will export the tree, createconfigureand build three tarballs (gz, bz2 and xz). -
Run
./scripts/dev/gen_verify_stub <version> [identity], this will sign the tarballs and output verification information to be included in announcement email. -
Copy those tarballs (scp, rsync) to downloads.php.net, in your homedir there should be a directory
public_html/. Copy them into there. If you do not have this directory, create it. -
Now the RC can be found on https://downloads.php.net/~yourname, e.g. https://downloads.php.net/~derick/.
-
Once the release has been tagged, contact the release-managers@ distribution list so that Windows binaries can be created. Once those are made, they can be found at https://windows.php.net/download.
-
Update
web-qa:include/release-qa.phpwith the appropriate information. See the documentation within release-qa.php for more information, but all releases and RCs are configured here. Only$QA_RELEASESneeds to be edited.Example: When packaging an RC, set the
rcwith appropriate information for the given version.Note: Remember to update the sha256 checksum information.
-
Skip this step for non-stable releases after GA of minor or major versions (e.g. announce 7.4.0RC1, but not 7.4.1RC1):
Add a short notice to web-php stating that there is a new release, and highlight the major important things (security fixes) and when it is important to upgrade.
-
Call
php bin/createNewsEntryin your local web-php checkout. Use category "frontpage" and "releases" for all stable releases. Use category "frontpage" for X.Y.0 non-stable releases only (news only). -
Add the content for the news entry. Be sure to include the text:
"THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!"
-
-
Commit and push changes to qa and web.
Wait for web and qa sites to update with new information before sending announce.
-
Send separate emails To
internals@lists.php.netandphp-general@lists.php.netlists pointing out "the location of the release" and "the possible release date of either the next RC, or the final release". Include in this information the verification information output bygen_verify_stub. -
Send separate emails (see example http://news.php.net/php.pear.qa/5201) To
php-qa@lists.php.netandprimary-qa-tester@lists.php.net. These emails are to notify the selected projects about a new release so that they can make sure their projects keep working. Make sure that you have been setup as a moderator forprimary-qa-tester@lists.php.netby having someone (Hannes, Dan, Derick) run the following commands for you:ssh lists.php.net sudo -u ezmlm ezmlm-sub ~ezmlm/primary-qa-tester mod moderator-email-address -
For RCs, post tweet with release announcement (and link to news article on php.net) (@official_php)
-
Checkout your release branch, you should have created when releasing previous RC and bump the version numbers in
main/php_version.h,Zend/zend.h,configure.acand possiblyNEWS. -
If a CVE commit needs to be merged to the release, then have it committed to the base branches and merged upwards as usual (e.g. commit the CVE fix to 7.2, merge to 7.3, 7.4 etc...). Then you can cherry-pick it in your release branch. Don't forget to update
NEWSmanually in an extra commit then. -
Commit those changes. Ensure that CI is still passing (see above).
-
Run the
scripts/dev/creditsscript in php-src and commit the changes in the credits files in ext/standard. -
Compile and run
make test, with and without ZTS, using the right Bison and re2c version (for PHP 7.4, minimum Bison 3.0.0 and re2c 0.13.4 are used). -
Check
./sapi/cli/php -voutput for version matching. -
Tag the repository with the version e.g.
git tag -u YOURKEYID php-7.4.1 -
Push the tag e.g.
git push origin php-7.4.1. -
Run:
./scripts/dev/makedist php-7.4.1, this will export the tag, create configure and build three tarballs (gz, bz2 and xz). Check if the pear files are updated (phar). On some systems the behavior of GNU tar can default to produce POSIX compliant archives with PAX headers. As not every application is compatible with that format, creation of archives with PAX headers should be avoided. When packaging on such a system, the GNU tar can be influenced by defining the environment variableTAR_OPTIONS='--format=gnu'. -
Run
scripts/dev/gen_verify_stub <version> [identity], this will sign the tarballs and output verification information to be included in announcement email. -
Commit and push all the tarballs and signature files to
web-php-distributions, then update the git submodule reference inweb-php:git submodule init git submodule update cd distributions git fetch git pull --rebase origin master cd .. git commit distributions git push
This is to fetch the last commit id from
web-php-distributionsand commit this last commit id toweb-php, then, website will now sync. -
Once the release has been tagged, contact release managers, Windows builders, and package maintainers so that they can build releases. Do not send this announcement to any public lists.
-
Update
web-php:include/releases.incwith the old release info (updates the download archives).-
You can run
php bin/bumpRelease 7 4where the first number is the major version, and the second number is the minor version (7.4 in this example). -
If that fails for any non-trivially fixable reason, you can manually copy the old information to
include/releases.inc.
-
-
Update $data['X.Y'] in
web-php:include/version.inc(X.Y=major.minor release, e.g. '8.0'):versionto the full version number (e.g. '8.0.1')dateto the release date inj M Yformat (e.g. '5 Jan 2021')tagsarray should includesecurityif this is a security releasesha256array and sub-elements for all SHA256 sums
-
Create the release file (
releases/x_y_z.php):Optionally use
bin/createReleaseEntry -v x.y.z -rto create a standard announcement template for this and step 6. Add--securityfor a security release.Usually we use the same content as for point 6, but included in php template instead of the release xml.
Edit the generated files to expand on the base message if needed.
-
Update
web-qa:include/release-qa.phpand add the next version as an QARELEASE (prepare for next RC). Keepactive => trueuntil there will be no more QA releases. Setting the release number to 0 is sufficient to remove the old QA release from the available QA releases list. -
Update the ChangeLog file for the given major version
e.g.
ChangeLog-7.phpfrom theNEWSfile-
You may want to try
web-php:bin/news2htmlto automate this task. -
Go over the list and put every element on one line.
-
Check for
&,<and>and escape them if necessary. -
Remove all the names at the ends of lines.
-
For marking up, you can do the following (with
vi):I.
s/^- /<li>/II.
s/$/<\/li>/III.
s/Fixed bug #\([0-9]\+\)/<?php bugfix(\1); ?>/IV.
s/Fixed PECL bug #\([0-9]\+\)/<?php peclbugfix(\1); ?>/V.
s/FR #\([0-9]\+\)/FR <?php bugl(\1); ?>/
-
-
Add a short notice to
web-phpstating that there is a new release, and highlight the major important things (security fixes) and when it is important to upgrade.- Call
php bin/createReleaseEntry -v <version> [ --security ]in your local web-php checkout.
- Call
-
Commit and push all the changes to their respective git repos
-
Check website has been synced before announcing or pushing news
Try, e.g. https://www.php.net/distributions/php-7.4.0.tar.xz
Website may update slowly (may take an hour).
-
Please note down the sha256 and the PGP signature (.asc). These must be included in the release mail.
-
Wait an hour or two, then send a mail to php-announce@lists.php.net, php-general@lists.php.net and internals@lists.php.net with a text similar to http://news.php.net/php.internals/17222. Please make sure that the mail to php-announce@ is its own completely separate email. This is to make sure that replies to the announcement on php-general@ or internals@ will not accidentally hit the php-announce@ mailinglist.
-
Post tweet with release announcement and link to news article on php.net (@official_php)
-
Commit the new binaries to
web-php-distributions -
Update $data['X.Y'] in
web-php:/include/version.inc(X.Y=major.minor release, e.g. '8.0'):versionto the full version number (e.g. '8.0.1-pl1')dateto the release date inj M Yformat (e.g. '9 Jan 2021')tagsarray should includesecurityif this is a security releasesha256array and sub-elements for all SHA256 sums
-
Add a short notice to
web-phpstating that there is a new release, and highlight the major important things (security fixes) and when it is important to upgrade.- Call
php bin/createReleaseEntry -v <version> [ --security ]in your local web-php checkout.
- Call
-
Commit all the changes (
include/version.inc,archive/archive.xml,archive/entries/YYYY-MM-DD-N.xml). -
Wait an hour or two, then send a mail to php-announce@lists.php.net, php-general@lists.php.net and internals@lists.php.net with a text similar to the news entry.
Please make sure that the mail to php-announce@ is its own completely separate email. This is to make sure that replies to the announcement on php-general@ or internals@ will not accidentally hit the php-announce@ mailinglist.
-
One week prior to cutting X.Y.0RC1, warn internals@ that your version's branch is about to be cut. Try to be specific about when the branch will be cut.
-
Just prior to cutting X.Y.0RC1, create the new branch locally.
Add a commit on master after the branch point clearing the
NEWS,UPGRADINGandUPGRADING.INTERNALSfiles, updating the version inconfigure.ac(run./configureto automatically updatemain/php_versions.h, too) andZend/zend.h. Bump the default initial version also inwin32/build/confutils.js.Also list the new branch in
CONTRIBUTING.md.Bump API version numbers in
Zend/zend_extensions.h,Zend/zend_modules.h, andmain/php.h.Example: https://github.com/php/php-src/commit/a63c99ba624cff86292ffde97089428e68c6fc10
Push the new branch and the commit just added to master.
-
Immediately notify internals@ of the branch cut and advise the new merging order. Example:
-
Update
web-php:git.phpand https://wiki.php.net/vcs/gitworkflow to reflect the new branch. Example:https://github.com/php/web-php/commit/74bcad4c770d95f21b7fbeeedbd76d943bb83f23
-
About the time you release the first RC, remind the documentation team (phpdoc@lists.php.net) to write the migration guide. See to it that they have done it before you release the initial stable version, since you want to link to it in the release announcements.
-
Timely get used to the differences in preparing and announcing a stable release.
-
Before releasing X.Y.0, merge the NEWS entries of the pre-releases, so that there is only a single section about PHP X.Y.0, instead of individual sections for each pre-release.
This should be done by one of the release managers of the latest release branch:
-
About three months before the scheduled release of the first alpha of the next minor or major release, issue a call for volunteers on internals@lists.php.net (cf. http://news.php.net/php.internals/98652).
-
Make sure that there are two or more volunteers, and hold a vote if necessary (see https://wiki.php.net/rfc/releaseprocess#release_managers_selection).
-
Help the new release managers with their first steps.
-
Email systems@php.net to get setup for access to downloads.php.net and to be added to the release-managers@ distribution list.
-
Request membership to the Release Managers group on GitHub.
-
Create a GPG key for your @php.net address and publish it by editing
include/gpg-keys.incin theweb-phprepository, adding the output ofgpg --fingerprint "$USER@php.net". Let one or more of the previous RMs sign your key. Publish your public key to pgp.mit.edu with:gpg --keyserver pgp.mit.edu --send-keys $KEYIDAdd new keys in the php-keyring.gpg in distribution repository using:gpg2 --export --export-options export-minimal --armor <all RM keys> -
Request moderation access to php-announce@lists.php.net and primary-qa-tester@lists.php.net lists, to be able to moderate your release announcements. All the announcements should ideally be sent from the @php.net alias. Note, that for sending emails as @php.net alias a custom SMTP server needs to be used.