php-src/README.RELEASE_PROCESS

289 lines
11 KiB
Plaintext
Raw Normal View History

=======================
PHP Release Process
=======================
2008-08-06 19:42:01 +00:00
General notes and tips
2008-08-06 21:49:47 +00:00
----------------------
2008-08-06 19:35:20 +00:00
1. Do not release on Fridays, Saturdays or Sundays
because the sysadmins can not upgrade stuff then.
2013-12-13 12:16:54 +00:00
2. Package two days before a release. So if the release is to be on Thursday,
package on Tuesday. Think about timezones as well.
2008-08-06 19:35:20 +00:00
3. Ensure that Windows builds will work before packaging
2013-12-13 12:16:54 +00:00
4. Follow all steps to the letter. When unclear ask previous RM's (David/Julien/
Johannes/Stas/Derick/Ilia) 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 (Bjori) on hand.
2008-08-06 19:35:20 +00:00
2008-08-06 21:49:47 +00:00
5. Verify the tags to be extra sure everything was tagged properly.
2011-12-14 16:32:50 +00:00
6. Moving extensions from/to PECL requires write acces to the destination.
Most developers should have this.
2008-08-31 10:35:06 +00:00
Moving extensions from php-src to PECL
2011-12-14 16:32:50 +00:00
- Checkout the pecl directory, most likely you want a sparse-root checkout
svn co --depth=empty https://svn.php.net/repository/pecl
- Create an directory for the extension incl. branch and tag structure,
no trunk at this point and commit this to svn
cd pecl; mkdir foo foo/tags foo/branches; svn add foo; svn commit
- Move the extension from php-src to the new location
svn mv https://svn.php.net/repository/php/php-src/trunk/ext/foo \
https://svn.php.net/repository/pecl/foo/trunk
2008-08-31 10:35:06 +00:00
If the extension is still usable or not dead, in cooperation with the extension
maintainers if any:
- create the pecl.php.net/foo package and its content, license, maintainer
- create the package.xml, commit
- release the package
2011-12-14 16:32:50 +00:00
For Moving extensions from PECL to php-src the svn mv has to be tone the other
way round.
2008-08-31 08:32:32 +00:00
2008-08-06 19:35:20 +00:00
Rolling a non stable release (alpha/beta/RC)
2008-08-06 21:49:47 +00:00
--------------------------------------------
2011-12-14 16:32:50 +00:00
1. Check windows snapshot builder logs (http://windows.php.net/downloads/snaps/ the last revision)
2011-12-14 16:32:50 +00:00
2. run the "scripts/dev/credits" script in php-src and commit the changes in the
credits files in ext/standard.
2013-12-13 12:16:54 +00:00
3. Checkout the release branch for this release (e.g., PHP-5.4.2) from the main branch.
2013-12-13 12:16:54 +00:00
4. Bump the version numbers in ``main/php_version.h``, ``configure.in`` and possibly ``NEWS``.
Do not use abbreviations for alpha and beta. Do not use dashes, you should
``#define PHP_VERSION "5.4.22RC1"`` and not ``#define PHP_VERSION "5.4.22-RC1"``
2013-12-13 12:16:54 +00:00
5. Compile and make test, with and without ZTS, using the right Bison version
(for example, for 5.5, Bison 2.4.1 is used)
2013-12-13 12:16:54 +00:00
6. Check ./sapi/cli/php -v output for version matching.
2013-12-13 12:16:54 +00:00
7. If all is right, commit the changes to the release branch with ``git commit -a``.
2013-12-13 12:16:54 +00:00
8. Tag the repository release branch with the version, e.g.:
``git tag -u YOURKEYID php-5.4.2RC2``
2013-12-13 12:16:54 +00:00
9. Bump the version numbers in ``main/php_version.h``, ``configure.in`` and ``NEWS``
in the *main* branch (PHP-5.4 for example) to prepare for the **next** version.
F.e. if the RC is "5.4.1RC1" then the new one should be "5.4.2-dev" - regardless if we get
a new RC or not. This is to make sure ``version_compare()`` can correctly work.
Commit the changes to the main branch.
10. Push the changes to the main repo, the tag, the main branch and the release branch :
``git push --tags origin HEAD``
``git push origin {main branch}``
``git push origin {release branch}``
2013-12-13 12:16:54 +00:00
11. run: ``PHPROOT=. ./makedist 5.4.2RC2``, this will export the tree, create configure
and build three tarballs (gz, bz2 and xz).
2013-12-13 12:16:54 +00:00
12. Copy those tarballs (scp, rsync) to downloads.php.net, in your homedir there should be a
2008-03-01 22:47:33 +00:00
directory "downloads/". Copy them into there, so that the system can generate
2013-12-13 12:16:54 +00:00
MD5 sums. If you do not have this directory, talk to Derick or Dan.
2013-12-13 12:16:54 +00:00
13. Now the RC can be found on http://downloads.php.net/yourname,
2008-03-01 22:47:33 +00:00
f.e. http://downloads.php.net/derick/
2013-12-13 12:16:54 +00:00
14. Once the release has been tagged, contact the PHP Windows development team
2008-08-06 19:35:20 +00:00
(internals-win@lists.php.net) so that Windows binaries can be created. Once
those are made, they should be placed into the same directory as the source snapshots.
2008-09-03 17:08:05 +00:00
Getting the non stable release (alpha/beta/RC) announced
--------------------------------------------------------
2008-03-01 22:47:33 +00:00
1. Send an email (see example here: http://news.php.net/php.internals/19486)
**To** ``internals@lists.php.net`` and ``php-general@lists.php.net`` lists
pointing out "the location of the release" and "the possible release date of
either the next RC, or the final release".
2. Send an email (see example here http://news.php.net/php.pear.qa/5201) **To**
``php-qa@lists.php.net`` and ``primary-qa-tester@lists.php.net``.
This email is 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 for ``primary-qa-tester@lists.php.net`` by having someone (Hannes, Dan,
2008-08-06 19:35:20 +00:00
Derick) run the following commands for you:
2008-03-14 21:52:47 +00:00
``ssh lists.php.net``
``sudo -u ezmlm ezmlm-sub ~ezmlm/primary-qa-tester/mod moderator-email-address``
2012-02-03 08:14:39 +00:00
3. Update ``qa.git/include/release-qa.php`` with the appropriate information.
See the documentation within release-qa.php for more information, but all releases
and RCs are configured here. Only $QA_RELEASES needs to be edited.
Example: When rolling an RC, set the 'rc' with appropriate information for the
given version.
Note: Remember to update the MD5 checksum information.
2013-12-13 12:16:54 +00:00
4. Update ``web/php.git/include/version.inc`` (x=major version number)
2013-12-13 12:16:54 +00:00
a. ``$PHP_x_RC`` = "5.4.0RC1" (should be set to "false" before)
b. ``$PHP_x_RC_DATE`` = "06 September 2007"
2012-02-03 08:14:39 +00:00
5. Commit and push those changes:
2012-02-03 08:14:39 +00:00
a. ``git commit -a && git push origin master``
2011-12-14 16:32:50 +00:00
6. For the first RC, write the doc team (phpdoc@lists.php.net) about updating the
INSTALL and win32/install.txt files which are generated from the PHP manual sources.
2008-08-06 19:35:20 +00:00
Rolling a stable release
2008-08-06 21:49:47 +00:00
------------------------
2013-12-13 12:16:54 +00:00
1. Checkout your release branch, you should have created when releasing previous RC
and bump the version numbers in ``main/php_version.h``, ``configure.in`` and possibly ``NEWS``.
2014-02-14 12:51:10 +00:00
2. If a CVE commit needs to be merged to the release, then have it committed to
2013-12-13 12:16:54 +00:00
the base branches and merged upwards as usual (f.e commit the CVE fix to 5.3,
merge to 5.4, 5.5 etc...). Then you can cherry-pick it in your release branch.
Don't forget to update NEWS manually in an extra commit then.
2013-12-13 12:16:54 +00:00
3. Commit those changes
2013-12-13 12:16:54 +00:00
4. run the "scripts/dev/credits" script in php-src and commit the changes in the
2008-11-04 23:00:57 +00:00
credits files in ext/standard.
2013-12-13 12:16:54 +00:00
5. Compile and make test, with and without ZTS, using the right Bison version
(for example, for 5.5, Bison 2.4.1 is used)
2013-12-13 12:16:54 +00:00
6. Check ./sapi/cli/php -v output for version matching.
2013-12-13 12:16:54 +00:00
7. tag the repository with the version f.e. "``git tag -s php-5.4.1``"
2013-12-13 12:16:54 +00:00
8. Push the tag f.e. "``git push origin php-5.4.1``"
2013-12-13 12:16:54 +00:00
9. run: ``PHPROOT=. ./makedist php 5.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).
2013-12-13 12:16:54 +00:00
10. Generate the GPG signature files for the archives.
``gpg -u YOUREMAIL --armor --detach-sign php-X.Y.Z.tar.xxx``
2013-12-13 12:16:54 +00:00
11. Commit and push all the tarballs and signature files to web/php-distributions.git,
then update the git submodule reference in web/php.git:
``git submodule init;
git submodule update;
cd distributions;
git pull origin master;
cd ..;
git commit distributions;
2013-12-13 12:16:54 +00:00
git push;``
This is to fetch the last commit id from php-distributions.git and commit this
last commit id to web/php.git, then, mirrors will now sync
2013-12-13 12:16:54 +00:00
12. Once the release has been tagged, contact the PHP Windows development team
(internals-win@lists.php.net) so that Windows binaries can be created.
2008-08-06 19:35:20 +00:00
Getting the stable release announced
2008-08-06 21:49:47 +00:00
------------------------------------
2008-08-06 19:35:20 +00:00
1. Run the bumpRelease script for phpweb on your local checkout
2013-12-13 12:16:54 +00:00
a. ``php bin/bumpRelease 5`` to create the release file (releases/x_y_z.php)
The release announcement file should list in detail security fixes and
changes in behavior (whether due to a bug fix or not).
b. In case multiple PHP minor versions are in active development you have
to manually copy the old information to include/releases.inc
2. Edit ``phpweb/include/version.inc`` and change (X=major release number):
a. ``$PHP_X_VERSION`` to the correct version
b. ``$PHP_X_DATE`` to the release date
c. ``$PHP_X_MD5`` array and update all the md5 sums
d. set ``$PHP_X_RC`` to false!
2008-03-01 22:47:33 +00:00
e. Make sure there are no outdated "notes" or edited "date" keys in the
``$RELEASES[X][$PHP_X_VERSION]["source"]`` array
f. if the windows builds aren't ready yet prefix the "windows" key with a dot (".windows")
2013-12-13 12:16:54 +00:00
3. Update phpweb/include/releases.php with the old release info
(updates the download archives)
4. Update php-qa/include/release-qa.php and add the next version as an QARELEASE
(prepare for next RC)
5. Update the ChangeLog file for the given major version
f.e. ``ChangeLog-5.php`` from the NEWS file
a. go over the list and put every element on one line
b. check for &, < and > and escape them if necessary
c. remove all the names at the ends of lines
d. 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); ?>/``
2013-12-13 12:16:54 +00:00
e. You may want to try php-web/bin/news2html to automate this task
2013-12-13 12:16:54 +00:00
6. Add a short notice to phpweb stating that there is a new release, and
2008-03-01 22:47:33 +00:00
highlight the major important things (security fixes) and when it is important
to upgrade.
2008-08-06 19:35:20 +00:00
a. Call php bin/createNewsEntry in your local phpweb checkout
2008-08-06 19:35:20 +00:00
b. Add the content for the news entry
2013-12-13 12:16:54 +00:00
7. **Check mirrors have been synced before announcing or pushing news**
Try, f.e. http://www.php.net/get/php-5.5.1.tar.bz2/from/a/mirror
Try several mirrors, mirrors may update slowly (may take an hour)
8. Commit all the changes to their respective git repos
2008-03-01 22:47:33 +00:00
9. 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.
2009-04-08 08:39:10 +00:00
Re-releasing the same version (or -pl)
--------------------------------------
2009-04-08 08:39:10 +00:00
1. Commit the new binaries to ``phpweb/distributions/``
2. Edit ``phpweb/include/version.inc`` and change (X=major release number):
a. If only releasing for one OS, make sure you edit only those variables
b. ``$PHP_X_VERSION`` to the correct version
c. ``$PHP_X_DATE`` to the release date
d. ``$PHP_X_MD5`` array and update all the md5 sums
e. Make sure there are no outdated "notes" or edited "date" keys in the
``$RELEASES[X][$PHP_X_VERSION]["source"]`` array
3. Add a short notice to phpweb stating that there is a new release, and
highlight the major important things (security fixes) and when it is important
to upgrade.
a. Call php bin/createNewsEntry in your local phpweb checkout
b. Add the content for the news entry
4. Commit all the changes (``include/version.inc``, ``archive/archive.xml``,
``archive/entries/YYYY-MM-DD-N.xml``)
5. 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.