diff --git a/.docker/dev/Dockerfile b/.docker/dev/Dockerfile
new file mode 100644
index 0000000000..d0ed2d5312
--- /dev/null
+++ b/.docker/dev/Dockerfile
@@ -0,0 +1,15 @@
+# Development Docker
+#
+# Provides the main runtime engine as well as tooling for running
+# during development
+#
+# NOTES:
+# - Does not copy and files in as it is expected to be handled via a mount
+
+FROM php:8.4-cli
+
+# Codebase doesn't have production flag so we negate it instead with
+# the DEVELOPMENT flag
+ENV DEVELOPMENT=1
+
+WORKDIR /app
diff --git a/.docker/prod/Dockerfile b/.docker/prod/Dockerfile
new file mode 100644
index 0000000000..7ea4a9def1
--- /dev/null
+++ b/.docker/prod/Dockerfile
@@ -0,0 +1,15 @@
+# "Production" Docker
+#
+# Provides the main runtime for PHP when deploying to a "Production"
+# or "Testing" environment that needs a full container using
+# the inbuilt server (not recommended).
+
+FROM php:8.2-cli
+
+# All of the files from the source location are copied into
+# the /app folder
+RUN mkdir /app
+WORKDIR /app
+COPY . /app
+
+RUN php -S 8080 .router
diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000000..e77124dc23
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,6 @@
+# .dockerignore
+.git
+.gitmodules
+.gitattributes
+.idea
+build-deploy.sh
diff --git a/.router.php b/.router.php
index c204ce635e..98ce5a1773 100644
--- a/.router.php
+++ b/.router.php
@@ -4,12 +4,19 @@
$filename = $_SERVER["PATH_INFO"] ?? $_SERVER["SCRIPT_NAME"];
+//die(print_r($_SERVER, true));
+
+//$_SERVER['HTTP_HOST'] = '';
+//$_SERVER['BASE_PAGE'] = '/';
+//$_SERVER['SERVER_NAME'] = 'localhost';
+
if (!file_exists($_SERVER["DOCUMENT_ROOT"] . $filename)) {
require_once __DIR__ . '/error.php';
return;
}
+
/* This could be an image or whatever, so don't try to compress it */
ini_set("zlib.output_compression", 0);
return false;
diff --git a/bin/bumpRelease b/bin/bumpRelease
index f03c2c6da9..728685bc30 100755
--- a/bin/bumpRelease
+++ b/bin/bumpRelease
@@ -34,7 +34,7 @@ $OLDRELEASES[$major] = array_merge(
);
file_put_contents(__DIR__ . "/../include/releases.inc", [
- "> $headers
+ */
+ public function __construct(
+ public array $headers,
+ public string $body,
+ ) {
+ }
+
+ public function getSingleHeader(string $key, mixed $default = null): mixed
+ {
+ return $this->headers[$key][0] ?? $default;
+ }
+
+ public function getHeader(string $key): array
+ {
+ return $this->headers[$key] ?? [];
+ }
+}
+
+/**
+ * @return array
+ After a lengthy QA process, PHP 4.1.0 is finally out! PHP 4.1.0 includes several other key improvements:
+ As some of you may notice, this version is quite historic, as it's
+ the first time in history we actually incremented the middle digit! :)
+ The two key reasons for this unprecedented change were the new input
+ interface, and the broken binary compatibility of modules due to the
+ versioning support.
+
+ Following is a description of the new input mechanism. For a full list of
+ changes in PHP 4.1.0, see the ChangeLog.
+
+ First and foremost, it's important to stress that regardless of
+ anything you may read in the following lines, PHP 4.1.0 still
+ supports the old input mechanisms from older versions.
+ Old applications should go on working fine without modification!
+ Now that we have that behind us, let's move on :)
+ For various reasons, PHP setups which rely on register_globals
+ being on (i.e., on form, server and environment variables becoming
+ a part of the global namespace, automatically) are very often
+ exploitable to various degrees. For example, the piece of code:
+
+ Après un long processus "QA", PHP 4.1.0 est enfin sorti!
+ PHP 4.1.0 inclut beaucoup d'améliorations importantes:
+
+ Comme certains l'ont noté, cette version est quelque peu historique,
+ comme c'est la première fois dans l'histoire que nous incrémentons
+ le numéro du milieu !
+ Les deux principales raisons à cela sont d'un côté les changements sans
+ précédent de la nouvelle interface d'entrée, et de l'autre l'incompatibilité
+ des modules dus au support des versions.
+
+ Ce qui suit concerne une description du nouveau mécanisme d'entrée.
+ Pour une liste complète des changements voir le
+ ChangeLog.
+
+ Avant tout, il est important de signaler que, sans tenir compte de ce
+ que vous pourriez lire dans les lignes qui suivent, PHP 4.1.0 gère
+ encore les anciens mécanismes d'entrée des anciennes versions.
+ D'anciennes applications devraient bien fonctionner sans modifications !
+ Passsons à la suite mainenant que cela est dit :)
+ Pour différentes raisons, PHP qui se repose sur register_globals ON
+ (ex. sur les formulaires, les variables serveur et d'environnement
+ deviennent partie de la portée globale d'un script [namespace], et
+ ce automatiquement) sont très souvent exploitable à des degrés
+ divers. Par exemple le code suivant:
+
+ Due to a few bugs in PHP 4.1.0, we decided to release PHP 4.1.1. The bugs
+ that were fixed are not major ones but minor ones, which could be annoying
+ if you get bitten by them.
+
+ Our recommendation is that people who already upgraded to PHP 4.1.0 do
+ not upgrade to PHP 4.1.1,
+ unless they're experiencing one of the described bugs.
+
+ No new features or security updates are available
+ in this release.
+ Full list of fixes:
+ After an orderly QA process, PHP 4.2.0 is out!
+ The biggest change in PHP 4.2.0 concerns variable handling. External
+ variables (from the environment, the HTTP request, cookies or the web server)
+ are no longer registered in the global scope by default. The preferred
+ method of accessing these external variables is by using the new Superglobal
+ arrays, introduced in PHP 4.1.0. More information about this change:
+ The Apache Software Foundation recently released their first
+ General Availability version of Apache 2. PHP 4.2.0 will have
+ EXPERIMENTAL support for this version. You can
+ build a DSO module for Apache 2 with --with-apxs2. We do
+ not recommend that you use this in a production
+ environment.
+
+ PHP 4.2.0 still lacks certain key features on Mac OS X and
+ Darwin, and isn't officially supported by the PHP Group on
+ these platforms. Specifically, building PHP as a dynamically
+ loaded Apache module isn't supported at this time. PHP 4.3.0,
+ due to be released in August, 2002, will be the first PHP
+ release to officially support Mac OS X. It, along with future
+ Mac OS X and Apache releases, will enable full feature parity
+ with other PHP platforms. Update:
+ Instructions on
+ overcoming these limitations
+ PHP 4.2.0 includes several improvements:
+ For a full list of changes in PHP 4.2.0,
+ see the ChangeLog.
+ [ English Version ]
+ Après avoir passé avec succès le processus
+ qualité, PHP 4.2.0 est officiellement publié!
+
+ Le changement le plus important de PHP 4.2.0 concerne la gestion des
+ variables. Les variables externes (issues de l'environnement d'exécution,
+ des requêtes HTTP, des cookies ou du serveur web) ne sont plus enregistrées
+ dans l'environnement d'exécution global par défaut.
+ La méthode recommandée pour accéder aux variables
+ externes est d'utiliser les nouveaux tableaux globaux, introduits en
+ PHP 4.1.0. Pour plus d'informations sur ces modifications:
+
+ L'ASF (Apache Software Foundation) a récemment publié sa première
+ version publique d'Apache 2. PHP 4.2.0 dispose du support
+ EXPERIMENTAL d'Apache 2. Vous pouvez compiler un module
+ DSO pour Apache 2 avec l'option --with-apxs2. Nous recommandons
+ de ne pas utiliser cette combinaison en environnement de
+ production.
+
+ Il manque encore à PHP 4.2.0 des fonctionnalités clés
+ sur MacOSX et sur Darwin. PHP n'est donc pas officiellement
+ supporté par le PHP group sur ces plates-formes. Spécifiquement,
+ compiler PHP comme module Apache dynamiquement chargé n'est pas
+ encore supporté. PHP 4.3.0, dont la publication est prévue pour
+ Août 2002, sera la première version qui supportera officiellement
+ Mac OS X. Cette version, aussi bien pour les futures versions de
+ Mac OS X et Apache, sera totalement synchronisé avec les autres
+ plates-formes PHP.
+ PHP 4.2.0 inclut de nombreuses innovations:
+ Pour une liste complète de changements en PHP 4.2.0, voyez le fichier
+ NEWS, dans la distribution.
+
+ This bug fix release solves a few bugs found in PHP 4.2.0.
+ PHP 4.2.1 includes the following fixes:
+
+ For a full list of changes in PHP 4.2.1, see the
+ ChangeLog.
+
+ PHP 4.2.1 also has improved (but still experimental) support for Apache version 2.
+ We do not recommend that you use this in a production environment,
+ but feel free to test it and report bugs to the bug
+ system.
+
+ We would also like to attend you on a big change in PHP 4.2.0 concerning
+ variable handling. External variables (from the environment, the HTTP
+ request, cookies or the web server) are no longer registered in the global
+ scope by default. The preferred method of accessing these external
+ variables is by using the new Superglobal arrays, introduced in PHP 4.1.0.
+ More information about this change:
+ [ English Version ]
+ Cette version intermédiaire corrige quelques bugs
+ trouvés dans PHP 4.2.0. PHP 4.2.1 inclut les
+ améliorations suivantes:
+
+ Pour une liste complète des modifications de PHP 4.2.1, voyez le fichier
+ ChangeLog.
+
+ PHP 4.2.1 dispose aussi d'une compatibilité améliorée
+ (mais toujours expérimentale) avec Apache 2. Nous ne
+ recommandons pas son utilisation dans un environnement de
+ production. Testez-le intensivement, et rapportez tous les bugs dans le
+ système.
+
+ Nous attirons votre attention sur l'évolution majeure de PHP 4.2.0 concernant
+ l'utilisation des variables. Les variables externes (celles d'environnement
+ ou du serveur web, les requêtes HTTP, les cookies) ne sont plus enregistrées
+ par défaut comme variables globales. La méthode
+ recommandée pour accéder à ces variables est d'utiliser les
+ super globales, introduits en PHP 4.1.0. Plus d'informations sur ces modifications:
+
+ The PHP Group has learned of a serious security vulnerability in PHP
+ versions 4.2.0 and 4.2.1. An intruder may be able to execute arbitrary
+ code with the privileges of the web server. This vulnerability may be
+ exploited to compromise the web server and, under certain conditions,
+ to gain privileged access.
+
+ PHP contains code for intelligently parsing the headers of HTTP POST
+ requests. The code is used to differentiate between variables and files
+ sent by the user agent in a "multipart/form-data" request. This parser
+ has insufficient input checking, leading to the vulnerability.
+
+ The vulnerability is exploitable by anyone who can send HTTP POST
+ requests to an affected web server. Both local and remote users, even
+ from behind firewalls, may be able to gain privileged access.
+
+ Both local and remote users may exploit this vulnerability to compromise
+ the web server and, under certain conditions, to gain privileged access.
+ So far only the IA32 platform has been verified to be safe from the
+ execution of arbitrary code. The vulnerability can still be used on IA32
+ to crash PHP and, in most cases, the web server.
+
+ The PHP Group has released a new PHP version, 4.2.2, which incorporates
+ a fix for the vulnerability. All users of affected PHP versions are
+ encouraged to upgrade to this latest version. The
+ downloads page has the new 4.2.2 source tarballs, Windows binaries
+ and source patches from 4.2.0 and 4.2.1 available for download.
+
+ If the PHP applications on an affected web server do not rely on HTTP
+ POST input from user agents, it is often possible to deny POST requests
+ on the web server.
+
+ In the Apache web server, for example, this is possible with the
+ following code included in the main configuration file or a top-level
+ .htaccess file:
+
+ Note that an existing configuration and/or .htaccess file may have
+ parameters contradicting the example given above.
+
+ The PHP Group would like to thank Stefan Esser of e-matters GmbH for
+ discovering this vulnerability. e-matters GmbH has also released an
+ independent
+ advisory, describing the vulnerability in more detail.
+ [ English Version ]
+ Le PHP Group a pris connaissance d'un trou de sécurité sérieux en PHP
+ version 4.2.0 et 4.2.1. Un intrus pourrait exécuter un code arbitraire sur
+ le serveur, avec les mêmes privilèges que celui qui exécute le serveur web.
+ Cette vulnérabilité peut être exploitée pour compromettre le serveur web,
+ et dans certaines circonstances, obtenir des droits spéciaux.
+
+ PHP contient du code qui analyse finement les entêtes des requêtes
+ HTTP POST. Le code est utilisé pour différencier les variables des
+ fichiers qui sont envoyés par le navigateur, avec l'encodage
+ "multipart/form-data". Cet analyseur ne vérifie pas suffisamment
+ les données d'entrée, ce qui conduit à une
+ vulnérabilité.
+
+ La vulnérabilité est exploitable par quiconque peut envoyer des requêtes
+ HTTP POST à un serveur web utilisant PHP versions 4.2.0 et 4.2.1. Des
+ utilisateurs, locaux ou distants, même derrière un pare-feu, pourraient
+ obtenir des autorisations indues sur la machine.
+
+ Les utilisateurs, tant locaux que distants, peuvent exploiter cette
+ vulnérabilité pour compromettre le serveur web, et, dans certaines circonstances,
+ obtenir des autorisations indues. Jusqu'à présent, seule la plate-forme
+ IA32 a pu passer les tests de sécurité. Cette vulnérabilité peut être utilisée
+ sous IA32 pour crasher PHP et, dans la plupart des cas, le serveur web.
+
+ Le PHP Group a publié une nouvelle version PHP version, 4.2.2, qui inclus
+ une correction pour cette vulnérabilité. Tous les utilisateurs des versions de PHP
+ affectées sont encouragés à passer à cette nouvelle version. L'URL de
+ téléchargement est :
+ http://www.php.net/downloads.php
+ sous forme de sources (tarballs), exécutable Windows et source patches
+ pour les versions 4.2.0 et 4.2.1.
+
+ Si les applications PHP n'utilisent pas la méthode POST sur un serveur
+ affecté, il est possible de simplement interdire les requêtes POST sur le
+ serveur.
+
+ Sous Apache, par exemple, il est possible d'utiliser le code suivant
+ dans le fichier de configuration principal, ou avec un fichier .htaccess
+ placé suffisamment près de la racine :
+
+ Notez qu'une autre configuration ou/et un autre fichier .htaccess avec
+ certains paramètres, peuvent annuler l'effet de l'exemple ci-dessus.
+
+ Le PHP Group remercie Stefan Esser de e-matters GmbH pour la découverte
+ de cette vulnérabilité.
+
+ After a long and arduous 8 months of development and testing, PHP 4.3.0 is
+ out! With regard to scope, time, and effort, this
+ is the largest 4.x release of PHP, and it further elevates PHP's standing as a
+ serious contender in the general purpose scripting language arena.
+
+ This version finalizes the separate command line interface (CLI) that can be
+ used for developing shell and desktop applications (with
+ PHP-GTK). The CLI is always built, but
+ installed automatically only if CGI version is disabled via --disable-cgi
+ switch during configuration. Alternatively, one can use make
+ install-cli target. On Windows CLI can be found in
+ cli folder.
+
+ CLI has a number of differences compared to other server APIs. More information
+ can be found in the PHP Manual:
+ Using PHP from the command line
+
+ A very important "under the hood" feature is the streams API. It introduces a
+ unified approach to the handling of files, pipes, sockets, and other I/O
+ resources in the PHP core and extensions.
+
+ What this means for users is that any I/O function that works with streams
+ (and that is almost all of them) can access built-in protocols, such as
+ HTTP/HTTPS and FTP/FTPS, as well as custom protocols registered from PHP
+ scripts. For more information please see: List
+ of Supported Protocols/Wrappers
+
+ This iteration of the build system, among other things, replaces the slow
+ recursive make with one global Makefile and eases the integration of proper
+ dependencies. Automake is only needed for its aclocal tool. The build process is
+ now more portable and less resource-consuming.
+ PHP 4.3.0 has many improvements and enhancements:
+ For the full list of changes in PHP 4.3.0, see the
+ ChangeLog file.
+ [ English version ]
+ Après un long et difficile 8 mois de développement et de
+ test, PHP 4.3.0 est publié! Au vue
+ des évolutions, du temps consacré et des efforts
+ consentis, cette version est la plus importante version de la
+ série des PHP 4.x. Elle contribue largement a améliorer
+ les capacités de PHP en tant que langage
+ généraliste de scripts.
+
+ PHP 4.3.0 achève la séparation du mode d'utilisation en
+ ligne de commande (dit CLI) qui permet de développer des
+ applications shell ou graphiques (avec PHP-GTK).
+ La version CLI de PHP est toujours compilées, mais elle n'est
+ installée que si la version CGI est désactivée
+ avec l'option --disable-cgi. De plus, vous pouvez utilisez la commande
+ make install-cli. Sous Windows, la version CLI est
+ disponible dans le dossier cli.
+
+ CLI dispose de fonctionnalités différentes, par rappot
+ à la version interfacée avec les serveurs web. Pour
+ plus de détails, reportez vous à
+ Utiliser PHP en ligne de commande
+
+ Une nouveauté très importante, mais cachée a été
+ introduite : les flôts. Les flôts unifient la gestion des pipes,
+ fichiers, sockets et autres ressources d'entrées/sorties du coeur de
+ PHP et de ses extensions.
+
+ Cela signifie, pour les utilisateurs, est que les fonctions d'entrées/sorties
+ fonctionnent désormais avec les flôts (c'est à dire presque
+ toutes), peuvent utiliser des protocoles internes tels que HTTP/HTTPS et FTP/FTPS,
+ ainsi que des protocoles personnalisés, enregistrés comme tels depuis
+ les scripts PHP. Pour plus d'informations, voyez:
+ Liste des protocoles supportés
+
+ Cette version du système de compilation de PHP, entre autre choses, remplace
+ la version récursive lente par un Makefile global, et facilite
+ l'intégration des librairies connexes. Automake est uniquement
+ nécessaire pour l'utilitaire aclocal. Le processus de compilation est rendu
+ plus portable, et moins consommateur de ressources.
+ PHP 4.3.0 propose de nombreuses améliorations et évolutions :
+ Pour la liste complète des modifications de PHP 4.3.0, voyez le fichier
+ d'historique.
+
+ The PHP Group has learned of a serious security vulnerability in
+ the CGI SAPI of PHP version 4.3.0.
+
+ PHP contains code for preventing direct access to the CGI binary with
+ configure option "--enable-force-cgi-redirect" and php.ini option
+ "cgi.force_redirect". In PHP 4.3.0 there is a bug which renders these
+ options useless.
+
+ NOTE: This bug does NOT affect any of the other SAPI modules.
+ (such as the Apache or ISAPI modules, etc.)
+
+ Anyone with access to websites hosted on a web server which employs
+ the CGI module may exploit this vulnerability to gain access to any file
+ readable by the user under which the webserver runs.
+
+ A remote attacker could also trick PHP into executing arbitrary PHP code
+ if attacker is able to inject the code into files accessible by the CGI.
+ This could be for example the web server access-logs.
+
+ The PHP Group has released a new PHP version, 4.3.1, which incorporates
+ a fix for the vulnerability. All users of affected PHP versions are
+ encouraged to upgrade to this latest version. The
+ downloads page has the new 4.3.1 source tarballs, Windows binaries
+ and source patch from 4.3.0 available for download. You will only need
+ to upgrade if you're using the CGI module of PHP 4.3.0. There are no
+ other bugfixes contained in this release.
+ None.
+ The PHP Group would like to thank Kosmas Skiadopoulos for discovering
+ this vulnerability.
+
+PHP Development Team would like to announce the immediate release of PHP 4.3.10. This is a
+maintenance release that in addition to over 30 non-critical bug fixes addresses several very
+serious security issues.
+
+These include the following:
+
+CAN-2004-1018 - shmop_write() out of bounds memory write access. All Users of PHP are strongly encouraged to upgrade to this release as soon as possible.
+ Aside from the above mentioned issues this release includes the following important fixes:
+
+ For a full list of changes in PHP 4.3.10, see the
+ ChangeLog.
+ [ English Version ]
+L'équipe de développement PHP a le plaisir de vous annoncer
+la publication de PHP 4.3.10. C'est une version
+de maintenance, destinée à corriger une trentaine de bogues
+non-critiques et ainsi que plusieurs problèmes de sécurité sérieux.
+
+Cela inclut notamment:
+
+CAN-2004-1018 - shmop_write() écrit hors des limites de la mémoire. Tous les utilisateurs sont encouragés à utiliser cette version.
+En plus des fonctionnalités ci-dessus, PHP 4.3.9 contient notamment les corrections, ajouts et améliorations suivantes :
+
+ Pour une liste exhaustive des modifications de PHP 4.3.10, voyez
+ le ChangeLog, en anglais.
+
+PHP Development Team is would like to announce the immediate release of PHP 4.3.11.
+This is a maintenance release that in addition to over 70 non-critical bug fixes addresses several
+security issues inside the exif and fbsql extensions as well as the unserialize(),
+swf_definepoly() and getimagesize() functions.
+ All Users of PHP are strongly encouraged to upgrade to this release.
+ For a full list of changes in PHP 4.3.11, see the
+ ChangeLog.
+ [ English Version ]
+L'équipe de développement PHP a le plaisir de vous annoncer la publication de PHP 4.3.11. C'est une version de maintenance, destinée à corriger environ 70 bogues non-critiques, plusieurs problèmes avec les extensions exif et fbsql ainsi que les fonctions unserialize(), swf_definepoly() et getimagesize().
+
+Tous les utilisateurs sont encouragés à utiliser cette version.
+
+ Pour une liste exhaustive des modifications de PHP 4.3.11, voyez
+ le ChangeLog, en anglais.
+
+ After a lengthy QA process, PHP 4.3.2 is finally out!
+ PHP 4.3.2 contains, among others, following important fixes, additions and improvements:
+
+ For a full list of changes in PHP 4.3.2, see the
+ ChangeLog.
+ [ English version ]
+ Après une longue étape de tests d'assurance Qualité,
+ PHP 4.3.2 est finalement disponible!
+ PHP 4.3.2 contient notamment les corrections, ajouts et améliorations suivantes :
+
+ Pour une liste complète des modifications de PHP 4.3.2, reportez-vous au fichier
+ ChangeLog.
+
+ After a lengthy QA process, PHP 4.3.3 is finally out!
+ PHP 4.3.3 contains, among others, following important fixes, additions and improvements:
+
+ For a full list of changes in PHP 4.3.3, see the
+ ChangeLog.
+ [ English version ]
+Après avoir suivi un long processus qualité, PHP 4.3.3 est disponible!
+PHP 4.3.3 contient la liste suivante et non exhaustive de corrections,
+améliorations et ajouts :
+
+ Pour une liste exhaustive des modifications de PHP 4.3.3, voyez
+ le changelog, en anglais.
+
+ After a lengthy QA process, PHP 4.3.4 is finally out!
+ PHP 4.3.4 contains, among others, following important fixes, additions and improvements:
+
+ For a full list of changes in PHP 4.3.4, see the
+ ChangeLog.
+ [ English version ]
+ Après un long processus d'assurance qualité,
+ PHP 4.3.4 est désormais disponible!
+ PHP 4.3.4 contient notamment les corrections, ajouts et
+ améliorations suivantes :
+
+ Pour la liste exhaustive des modifications de PHP 4.3.4, voyez
+ le changelog, en anglais.
+
+ PHP Development Team is proud to announce the release of PHP 4.3.5.
+ This is primarily a bug fix release, without any new features or additions. PHP 4.3.5
+ is by far the most stable release of PHP to date and it is recommended that
+ all users upgrade to this release whenever possible.
+
+ PHP 4.3.5 contains, among others, following important fixes, additions and improvements:
+
+ For a full list of changes in PHP 4.3.5, see the
+ ChangeLog.
+ [ English Version ]
+L'équipe de développement PHP a le plaisir de vous annoncer
+la publication de PHP 4.3.5. C'est une version
+de maintenance, destinée à corriger des erreurs, et sans aucun
+ajout de fonctionnalité. PHP 4.3.5 est, de loin, la version de PHP
+la plus stable, et il est recommandé à tous les utilisateurs
+d'adopter cette version dès que possible.
+
+ PHP 4.3.5 contient notamment les corrections, ajouts et améliorations suivantes :
+
+ Pour une liste exhaustive des modifications de PHP 4.3.5, voyez
+ le changelog, en anglais.
+
+ PHP Development Team is proud to announce the release of PHP PHP 4.3.6.
+ This is is a bug fix release whose primary goal is to address two bugs which may
+ result in crashes in PHP builds with thread-safety enabled. All users of PHP
+ in a threaded environment (Windows) are strongly encouraged to upgrade to
+ this release.
+
+ Aside from the above mentioned issues this release includes the following important fixes:
+
+ For a full list of changes in PHP 4.3.6, see the
+ ChangeLog.
+ [ English Version ]
+L'équipe de développement PHP a le plaisir de vous annoncer
+la publication de PHP 4.3.6. C'est une version
+de maintenance, destinée à corriger deux bogues qui
+peuvent conduire à des crashs de PHP si la sécurité threads est activée.
+Il est recommandé à tous les utilisateurs d'adopter cette
+version dès que possible.
+
+ PHP 4.3.6 contient notamment les corrections, ajouts et améliorations suivantes :
+
+ Pour une liste exhaustive des modifications de PHP 4.3.6, voyez
+ le changelog, en anglais.
+
+ PHP Development Team is proud to announce the release of PHP PHP 4.3.7.
+ This is a maintenance release that in addition to several non-critical bug fixes, addresses an input
+ validation vulnerability in escapeshellcmd() and escapeshellarg() functions on the Windows platform.
+ Users of PHP on Windows are encouraged to upgrade to this release as soon as possible.
+
+ Aside from the above mentioned issues this release includes the following important fixes:
+
+ For a full list of changes in PHP 4.3.7, see the
+ ChangeLog.
+ [ English Version ]
+L'équipe de développement PHP a le plaisir de vous annoncer
+la publication de PHP 4.3.7. C'est une version
+de maintenance, destinée à corriger des bogues non-critiques,
+corriger une vulnérabilité de validation dans les fonctions escapeshellcmd() et
+escapeshellarg() sur la plate-forme Windows. Les utilisateurs de PHP sont encouragés
+à changer de version aussitôt que possible.
+
+ PHP 4.3.7 contient notamment les corrections, ajouts et améliorations suivantes :
+
+ Pour une liste exhaustive des modifications de PHP 4.3.7, voyez
+ le changelog, en anglais.
+
+ PHP Development Team is would like to announce the immediate availability of PHP 4.3.8.
+ This release is made in response to several security issues that have been discovered since the
+ 4.3.7 release. All users of PHP are strongly encouraged to upgrade to PHP 4.3.8 as soon as possible.
+
+ This release addresses several important security issues.
+
+ For a full list of changes in PHP 4.3.8, see the
+ ChangeLog.
+
+ PHP Development Team is proud to announce the immediate release of PHP PHP 4.3.9.
+ This is a maintenance release that in addition to over 50 non-critical bug fixes, addresses a problem
+ with GPC input processing. This release also re-introduces ability to write
+ GIF images via the bundled GD extension.
+ All Users of PHP are encouraged to upgrade to this release as soon as possible.
+
+ Aside from the above mentioned issues this release includes the following important fixes:
+
+ For a full list of changes in PHP 4.3.9, see the
+ ChangeLog.
+ [ English Version ]
+L'équipe de développement PHP a le plaisir de vous annoncer
+la publication de PHP 4.3.9. C'est une version
+de maintenance, destinée à corriger une cinquantaine de bogues non-critiques,
+et corriger le traitement des valeurs GPC. Cette version inclut aussi la possibilité
+d'écrire des images GIF via la bibliothèque GD interne. Tous les utilisateurs
+sont encouragés à utiliser cette version.
+
+En plus des fonctionnalités ci-dessus, PHP 4.3.9 contient notamment les corrections,
+ajouts et améliorations suivantes :
+
+ Pour une liste exhaustive des modifications de PHP 4.3.9, voyez
+ le ChangeLog, en anglais.
+
+The PHP Development Team would like to announce the immediate release of
+PHP 4.4.0.
+
+This is a maintenance release that addresses a serious memory corruption
+problem within PHP concerning references. If references were used in a wrong
+way, PHP would often create memory corruptions which would not always surface
+or be visible. In other cases it could cause variables and objects to change
+type or class unexpectedly. If you encountered strange behavior like this, this
+release might fix it. The increased middle digit was required because the fix that
+corrected the problem with references changed PHP's internal API, breaking
+binary compatibility with the PHP 4.3.* series. This means that all binary
+extension modules need to be recompiled in order to work with this release.
+
+As part of the solution for the reference bug, you are very likely to find that
+your own or third-party PHP scripts, considered 'clean' code under previous
+versions of PHP, will now throw an E_NOTICE when references are incorrectly used
+in the script. This is intended to alert developers to minor errors in their
+approach, and does not affect the script's performance in any other way.
+
+Besides the reference problem, this release also fixes numerous other bugs,
+including a small security problem with our bundled shtool.
+
+ For a full list of changes in PHP 4.4.0, see the
+ ChangeLog.
+
+The PHP Development Team would like to announce the immediate release of
+PHP 4.4.1.
+
+This is a bug fix release, which addresses some security problems too. The
+security issues that this release fixes are:
+PHP $version Release Announcement
+ /*
+ * The announcement content is no longer embedded straight into a page, instead we
+ * invoke a page template helper, passing in the release version, and it figures
+ * the rest out itself
+ */
+ $release = $nameWithUnderscores . '.php';
+ file_put_contents(
+ RELEASES_ABS . $release,
+ str_replace('{{version}}', $version, file_get_contents(__DIR__ . '/templates/announcement-archive.txt'))
+ );
-$template
-';
+ $htmlStartPosition = strpos($content, $htmlStartToken);
+ if ($htmlStartPosition === false) {
+ throw new RuntimeException('Unable to find PHP closing tag in ' . $fullPath);
+ }
+
+ $htmlStartPosition+= strlen($htmlStartToken);
+
+ $htmlEndToken = ' $version) {
+ [$major, $minor] = explode('.', $releaseId);
+
+ $br = $major . '.' . $minor;
+ $branches[$br] = (!isset($branches[$br]) || version_compare($releaseId, $branches[$br]) > 0)
+ ? $releaseId
+ : $branches[$br];
+ }
+}
+
+/* dont concern ourselves with this one */
+unset($branches['3.0']);
+
+foreach ($branches as $release) {
+ $cachePath = sys_get_temp_dir() . '/php-news-' . $release . '.txt';
+
+ [$major, $minor, $patch] = explode('.', $release);
+ $branch = $major . '.' . $minor;
+
+ if (!file_exists($cachePath)) {
+ $options = [
+ /* normal branch */
+ 'https://raw.githubusercontent.com/php/php-src/refs/heads/PHP-' . $release . '/NEWS',
+
+ /* tag */
+ 'https://raw.githubusercontent.com/php/php-src/refs/tags/php-' . $release . '/NEWS',
+ ];
+
+ foreach ($options as $fetchUrl) {
+ $content = @file_get_contents($fetchUrl);
+ if (!$content) {
+ fwrite(STDERR, "Could not read raw data for $fetchUrl\n");
+ continue;
+ }
+
+ fwrite(STDOUT, "Successfully imported read data from $fetchUrl\n");
+ file_put_contents($cachePath, $content);
+ }
+
+ if (!$content) {
+ fwrite(STDERR, "Could not find a suitable data source for $release\n");
+ continue;
+ }
+ } else {
+ $content = file_get_contents($cachePath);
+ }
+
+ NewsParsingHelper::writeChangeMetaToBranch(
+ branch: $branch,
+ data: NewsParsingHelper::parseNewsFileStringToReleases($content),
+ );
+}
diff --git a/bin/sync-pregen.php b/bin/sync-pregen.php
new file mode 100644
index 0000000000..a210d62688
--- /dev/null
+++ b/bin/sync-pregen.php
@@ -0,0 +1,49 @@
+ $varPath . '/pregen-events.inc',
+ 'include/pregen-news.inc' => $varPath . '/pregen-news.inc',
+ 'include/pregen-confs.inc' => $varPath . '/pregen-confs.inc',
+];
+
+fwrite(STDOUT, "Copying data from production server into local directories:\n");
+fwrite(STDOUT, "Do not commit these files!\n");
+
+foreach ($overridePaths as $sourcePath => $saveTo) {
+ $url = 'https://www.php.net/' . $sourcePath;
+ $source = @file_get_contents($url);
+ if ($source === false) {
+ fwrite(STDERR, "Unable to read " . $url . "\n");
+ exit(1);
+ }
+
+ $success = file_put_contents($saveTo, $source);
+ if ($success === false) {
+ fwrite(STDERR, "Unable to write to " . $saveTo . "\n");
+ exit(1);
+ }
+
+ fwrite(STDOUT, "Copied " . $url . " to " . $saveTo . "\n");
+}
diff --git a/bin/templates/announcement-archive.txt b/bin/templates/announcement-archive.txt
new file mode 100644
index 0000000000..9342e3cbed
--- /dev/null
+++ b/bin/templates/announcement-archive.txt
@@ -0,0 +1,3 @@
+}[]
+ */
+final class NewsParsingHelper
+{
+ public static function parseNewsFileToString(string $branch, string $path): array
+ {
+ $content = file_get_contents($path)
+ ?: throw new ValueError('Unable to read NEWS file from ' . $path);
+
+ return self::parseNewsFileStringToReleases($content);
+ }
+
+ public static function writeChangeMetaToBranch(string $branch, array $data): void
+ {
+ $saveDir = __DIR__ . '/../include/releases/' . $branch;
+ if (!file_exists($saveDir)) {
+ mkdir($saveDir, recursive: true);
+ }
+
+ /* the data may have releases from something _other_ than the latest branch */
+ $data = array_filter($data, fn(string $key) => str_starts_with($key, $branch . '.'), ARRAY_FILTER_USE_KEY);
+
+ file_put_contents($saveDir . '/changelist.inc', ' $date,
+ 'modules' => [],
+ ];
+
+ $currentVersion = $version;
+ $currentModule = null; // Reset module state for new version
+ continue;
+ }
+
+ // 2. Match Module header (e.g., "- CLI:" or "- Opcache:")
+ if (preg_match('/^\-\s+([^:]+):/', $normalizedLine, $matches)) {
+ $commitMessage();
+ $currentModule = strtolower(trim($matches[1]));
+
+ // Ensure the module array exists under the current version
+ if ($currentVersion !== null && !isset($parsed[$currentVersion]['modules'][$currentModule])) {
+ $parsed[$currentVersion]['modules'][$currentModule] = [];
+ }
+ continue;
+ }
+
+ // 3. Match new message start (e.g., " . Fixed bug GH-22004...")
+ if (preg_match('/^\s*\.\s+(.+)/', $normalizedLine, $matches)) {
+ $commitMessage();
+ $currentMessage = $matches[1];
+ continue;
+ }
+
+ // 4. Handle empty lines or purely decorative file headers
+ if ($trimmedLine === '' || str_starts_with($trimmedLine, '|||')) {
+ $commitMessage();
+ continue;
+ }
+
+ // 5. Handle message continuation (runs onto multiple lines)
+ if ($currentMessage !== null) {
+ // Append the trimmed continuation text to the current message string
+ $currentMessage .= ' ' . $trimmedLine;
+ }
+ }
+
+ // Ensure the very last message in the file gets committed
+ $commitMessage();
+
+ return $parsed;
+ }
+
+ /**
+ * Extracts functional parameters based on formatting
+ *
+ * @return array{
+ * message: string,
+ * raw: string,
+ * references: array<{
+ * authors: string[],
+ * bugs: string[],
+ * peclbugs: string[],
+ * featurerequests: string[],
+ * cves: string[],
+ * }
+ * }
+ */
+ static function parseChangeLineToArray(string $input): array
+ {
+ $references = [];
+ $raw = $input;
+
+ if (preg_match('/.* \(([^)]+)\)/', $input, $nameMatches)) {
+ foreach (explode(',', $nameMatches[1]) as $name) {
+ $references['authors'][] = trim($name);
+ }
+
+ /* author gets cropped off */
+ $input = trim(str_replace('(' . $nameMatches[1] . ')', '', $input));
+ }
+
+ if (preg_match('/Fixed bug GH-([0-9]+)/', $input, $m)) {
+ $references['bugs'][] = $m[1];
+ }
+
+ if (preg_match('/Fixed bug #([0-9]+)/', $input, $m)) {
+ $references['bugs'][] = $m[1];
+ }
+
+ if (preg_match('/Fixed PECL bug #([0-9]+)/', $input, $m)) {
+ $references['peclbug'][] = $m[1];
+ }
+
+ if (preg_match('/Implemented FR #([0-9]+)/', $input, $m)) {
+ $references['featurerequest'][] = $m[1];
+ }
+
+ if (preg_match('/\(CVE-\d+-\d+\)/', $input, $m)) {
+ $references['cves'][] = str_replace(['(', ')'], '', $m[0]);
+ }
+
+ return [
+ 'message' => $input,
+ 'raw' => $raw,
+// 'references' => $references,
+ ];
+ }
+}
diff --git a/data/releases/4.1/announcements/4_1_0.html b/data/releases/4.1/announcements/4_1_0.html
new file mode 100644
index 0000000000..b4e33d61a9
--- /dev/null
+++ b/data/releases/4.1/announcements/4_1_0.html
@@ -0,0 +1,62 @@
+PHP 4.1.0 Release Announcement
+
+
+ [ Version Française ]
+
+
+
+
+
+SECURITY: NEW INPUT MECHANISM
+
+Annonce de publication de PHP 4.1.0
+
+
+ [ English Version ]
+
+
+
+
+
+SECURITE: NOUVEAU MECANISME D'ENTREE
+
+PHP 4.1.1 Release Announcement
+
+
+
\ No newline at end of file
diff --git a/data/releases/4.2/announcements/4_2_0.html b/data/releases/4.2/announcements/4_2_0.html
new file mode 100644
index 0000000000..7f9615a48e
--- /dev/null
+++ b/data/releases/4.2/announcements/4_2_0.html
@@ -0,0 +1,75 @@
+PHP 4.2.0 Release Announcement
+
+
+ [ Version Française ]
+External variables
+
+
+
+
+Compatibility
+
+Improvements
+
+
+
+
+Annonce de publication de PHP 4.2.0
+
+Variables externes
+
+
+
+
+Compatibilité
+
+Améliorations
+
+
+
+
+PHP 4.2.1 Release Announcement
+
+
+
+Bugfix release
+
+
+
+
+Compatibility
+
+External variables
+
+
+
\ No newline at end of file
diff --git a/data/releases/4.2/announcements/4_2_1_fr.html b/data/releases/4.2/announcements/4_2_1_fr.html
new file mode 100644
index 0000000000..a47f56917f
--- /dev/null
+++ b/data/releases/4.2/announcements/4_2_1_fr.html
@@ -0,0 +1,69 @@
+Annonce de publication de PHP 4.2.1
+
+Version mineure de correction de bugs
+
+
+
+
+Compatibilité
+
+Variables externes
+
+
+
\ No newline at end of file
diff --git a/data/releases/4.2/announcements/4_2_2.html b/data/releases/4.2/announcements/4_2_2.html
new file mode 100644
index 0000000000..1c712cedf3
--- /dev/null
+++ b/data/releases/4.2/announcements/4_2_2.html
@@ -0,0 +1,92 @@
+
+ PHP Security Advisory: Vulnerability in PHP versions 4.2.0 and 4.2.1
+
+
+
+
+
+
+
+Description
+
+Impact
+
+Solution
+
+Workaround
+
+
+<Limit POST>
+ Order deny,allow
+ Deny from all
+</Limit>
+
+
+Credits
+
+
+Alerte de sécurité PHP : Vulnérabilité dans
+les versions 4.2.0 et 4.2.1 de PHP
+
+
+
+
+
+Description
+
+Impact
+
+Solution
+
+Autre solution
+
+
+<Limit POST>
+ Order deny,allow
+ Deny from all
+</Limit>
+
+
+Crédits
+
+PHP 4.3.0 Release Announcement
+
+
+
+Command line interface
+
+Streams
+
+New build system
+
+Improvements
+
+
+
+
+Annonce de publication de PHP 4.3.0
+
+Utilisation en ligne de commande
+
+Flôts (Streams)
+
+Nouveaus système de compilation
+
+Améliorations
+
+
+
+
+
+PHP Security Advisory: CGI vulnerability in PHP version 4.3.0
+
+
+
+
+
+Description
+
+Impact
+
+Solution
+
+Workarounds
+
+Credits
+
+PHP 4.3.10 Release Announcement
+
+
+CAN-2004-1018 - integer overflow/underflow in pack() and unpack() functions.
+CAN-2004-1019 - possible information disclosure, double free and negative reference index array underflow in deserialization code.
+CAN-2004-1020 - addslashes() not escaping \0 correctly.
+CAN-2004-1063 - safe_mode execution directory bypass.
+CAN-2004-1064 - arbitrary file access through path truncation.
+CAN-2004-1065 - exif_read_data() overflow on long sectionname.
+magic_quotes_gpc could lead to one level directory traversal with file uploads.
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.10
+
+CAN-2004-1018 - dépassement de capacité avec pack() et unpack().
+CAN-2004-1019 - publication possible d'informations, dépassement de capacité dans les index négatif lors de délinéarisation de données.
+CAN-2004-1020 - addslashes() ne protège pas correctement \0.
+CAN-2004-1063 - contournement de la directive de dossier d'exécution.
+CAN-2004-1064 - accès arbitraire à un fichier via une troncature.
+CAN-2004-1065 - dépassement de capacité avec exif_read_data() sur un long nom de section.
+magic_quotes_gpc peut mener à la lecture d'un dossier via le téléchargement de fichiers.
+Version de correction de bogues
+
+
+
+
+PHP 4.3.11 Release Announcement
+
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.11
+Version de correction de bogues
+
+
+
+PHP 4.3.2 Release Announcement
+
+
+
+
+ This maintenance release solves a lot of bugs found in earlier PHP versions
+ and is a strongly recommended upgrade for all users of PHP.
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.2
+
+
+ Cette version de maintenance résout un grand nombre de bugs trouvés dans
+ des versions plus anciennes de PHP, et il est recommandé
+ de faire la mise à jour pour tous les utilisateurs PHP.
+Version mineure, corrections de bugs
+
+
+
+
+PHP 4.3.3 Release Announcement
+
+
+
+
+ This maintenance release solves a fair number of bugs found in prior PHP versions and
+ addresses several security issues. All users are strongly advised to
+ upgrade to 4.3.3 as soon as possible.
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.3
+
+
+Cette version de maintenance résout un bon nombre de bugs découverts
+dans des versions antérieures de PHP. Elle corrige aussi plusieurs
+problèmes de sécurité. Il est vivement recommandé à tous les
+utilisateurs d'utiliser cette version aussitôt que possible.
+Corrections et nouveautés
+
+
+
+
+PHP 4.3.4 Release Announcement
+
+
+
+
+ This is a medium size maintenance release, with a fair number of bug fixes. All users
+ are encouraged to upgrade to 4.3.4.
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.4
+
+
+ C'est une version mineure d'entretien, avec de nombreuses corrections de bogues.
+ Tous les utilisateurs sont invités à passer à cette nouvelle version.
+Version de correction de bogues
+
+
+
+
+PHP 4.3.5 Release Announcement
+
+
+
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.5
+
+Version de correction de bogues
+
+
+
+
+PHP 4.3.6 Release Announcement
+
+
+
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.6
+
+Version de correction de bogues
+
+
+
+
+PHP 4.3.7 Release Announcement
+
+
+
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.7
+
+Version de correction de bogues
+
+
+
+
+PHP 4.3.8 Release Announcement
+
+
+
+Security Fixes release
+
+PHP 4.3.9 Release Announcement
+
+Bugfix release
+
+
+
+
+Annonce de publication de PHP 4.3.9
+Version de correction de bogues
+
+
+
+
+PHP 4.4. Release Announcement
+Bugfix release
+
+
+
+
+PHP 4.4.1. Release Announcement
+
+
+
+This release also fixes 35 other defects, where the most important is the +the fix that removes a notice when passing a by-reference result of a function +as a by-reference value to another function. (Bug #33558). +
++ For a full list of changes in PHP 4.4.1, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/4.4/announcements/4_4_2.html b/data/releases/4.4/announcements/4_4_2.html new file mode 100644 index 0000000000..e83391ef20 --- /dev/null +++ b/data/releases/4.4/announcements/4_4_2.html @@ -0,0 +1,23 @@ ++The PHP Development Team would like to announce the immediate release of +PHP 4.4.2. +
++This is a bug fix release, which addresses some security problems too. The +major points that this release corrects are: +
+This release also fixes about 30 other defects. +
++ For a full list of changes in PHP 4.4.2, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/4.4/announcements/4_4_3.html b/data/releases/4.4/announcements/4_4_3.html new file mode 100644 index 0000000000..72910ce1e3 --- /dev/null +++ b/data/releases/4.4/announcements/4_4_3.html @@ -0,0 +1,27 @@ ++The PHP development team is proud to announce the release of PHP 4.4.3. +This release combines small number of bug fixes and resolves a number of security issues. +All PHP 4.x users are encouraged to upgrade to this release as soon as possible. +
+ ++The security issues resolved include the following: +
+The release also includes about 20 bug fixes and an upgraded PCRE library +(version 6.6). +
+ ++ For a full list of changes in PHP 4.4.3, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/4.4/announcements/4_4_4.html b/data/releases/4.4/announcements/4_4_4.html new file mode 100644 index 0000000000..cad0503086 --- /dev/null +++ b/data/releases/4.4/announcements/4_4_4.html @@ -0,0 +1,27 @@ ++This release address a series of locally exploitable security problems +discovered since PHP 4.4.3. All PHP users are encouraged to upgrade to this +release as soon as possible. +
+ ++This release provides the following security fixes: +
+In addition to the security fixes, both releases include a small number of non-security related bug fixes. +
+ ++ For a full list of changes in PHP 4.4.4, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/4.4/announcements/4_4_5.html b/data/releases/4.4/announcements/4_4_5.html new file mode 100644 index 0000000000..321c40b23c --- /dev/null +++ b/data/releases/4.4/announcements/4_4_5.html @@ -0,0 +1,47 @@ ++The PHP development team would like to announce the immediate availability of +PHP 4.4.5. This release is a stability and security enhancement of the 4.4.X +branch, and all users are strongly encouraged to upgrade to it as soon as +possible. +
+ ++Security Enhancements and Fixes in PHP 4.4.5: +
++The majority of the security vulnerabilities discovered and resolved can in +most cases be only abused by local users and cannot be triggered remotely. +However, some of the above issues can be triggered remotely in certain +situations, or exploited by malicious local users on shared hosting setups +utilizing PHP as an Apache module. Therefore, we strongly advise all users of +PHP, regardless of the version to upgrade to 4.4.5 release as soon as possible. +PHP 5.2.1 with equivalent security corrections is available as well. +
+ ++In addition to the security fixes, this release includes a number of +non-security related bug fixes. +
+ ++ For a full list of changes in PHP 4.4.5, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/4.4/announcements/4_4_6.html b/data/releases/4.4/announcements/4_4_6.html new file mode 100644 index 0000000000..afae243164 --- /dev/null +++ b/data/releases/4.4/announcements/4_4_6.html @@ -0,0 +1,13 @@ ++The PHP development team would like to announce the immediate availability of +PHP 4.4.6. This release addresses a crash problem with the session extension +when register_globals is turned on that was introduced in PHP 4.4.5. This +release comes also with the new version 7.0 of PCRE and it addresses a number +of minor bugs. +
+ ++ For a full list of changes in PHP 4.4.6, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/4.4/announcements/4_4_7.html b/data/releases/4.4/announcements/4_4_7.html new file mode 100644 index 0000000000..60b9624b11 --- /dev/null +++ b/data/releases/4.4/announcements/4_4_7.html @@ -0,0 +1,42 @@ ++The PHP development team would like to announce the immediate availability of +PHP 4.4.7. This release continues to improve the security and the stability of +the 4.4 branch and all users are strongly encouraged to upgrade to it as soon +as possible. +
+ ++Security Enhancements and Fixes in PHP 4.4.7: +
++While majority of the issues outlined above are local, few issues such as the +XML-RPC overflows can be triggered remotely and therefor should be considered +critical. If you use the XML-RPC extension consider upgrading as soon as +possible. +
+ ++Other improvements of PHP 4.4.7 include: +
++ For a full list of changes in PHP 4.4.7, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/4.4/announcements/4_4_8.html b/data/releases/4.4/announcements/4_4_8.html new file mode 100644 index 0000000000..a3d94aa397 --- /dev/null +++ b/data/releases/4.4/announcements/4_4_8.html @@ -0,0 +1,27 @@ ++The PHP development team would like to announce the immediate availability of +PHP 4.4.8. It continues to improve the security and the stability of the 4.4 +branch and all users are strongly encouraged to upgrade to it as soon as +possible. This release wraps up all the outstanding patches for the PHP 4.4 +series, and is therefore the last normal PHP 4.4 release. If necessary, +releases to address security issues could be made until 2008-08-08. +
+ ++Security Enhancements and Fixes in PHP 4.4.8: +
++ For a full list of changes in PHP 4.4.8, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/4.4/announcements/4_4_9.html b/data/releases/4.4/announcements/4_4_9.html new file mode 100644 index 0000000000..9d4db77f1a --- /dev/null +++ b/data/releases/4.4/announcements/4_4_9.html @@ -0,0 +1,23 @@ ++The PHP development team would like to announce the immediate availability of +PHP 4.4.9. It continues to improve the security and the stability of the 4.4 +branch and all users are strongly encouraged to upgrade to it as soon as +possible. This release wraps up all the outstanding patches for the PHP 4.4 +series, and is therefore the last PHP 4.4 release. +
+ ++Security Enhancements and Fixes in PHP 4.4.9: +
++ For a full list of changes in PHP 4.4.9, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.1/announcements/5_1_0.html b/data/releases/5.1/announcements/5_1_0.html new file mode 100644 index 0000000000..a01ceb6bee --- /dev/null +++ b/data/releases/5.1/announcements/5_1_0.html @@ -0,0 +1,58 @@ +
+The PHP development team is proud to announce the release of PHP PHP 5.1.0.
+Some of the key features of PHP 5.1.0 include:
+
+
+ For a full list of changes in PHP 5.1.0, see the + ChangeLog. +
+ ++In addition to new features, this release includes a number of important security fixes: +
+All users of PHP 5.0 and early adopters of 5.1 betas are strongly advised to upgrade to 5.1 as soon as +possible. Furthermore, 5.1 branch obsoletes the 5.0 PHP branch. +
+ +Upgrading Guide is available to ease the transition from prior PHP versions.
\ No newline at end of file diff --git a/data/releases/5.1/announcements/5_1_1.html b/data/releases/5.1/announcements/5_1_1.html new file mode 100644 index 0000000000..87842c7548 --- /dev/null +++ b/data/releases/5.1/announcements/5_1_1.html @@ -0,0 +1,22 @@ ++The PHP Development Team would like to announce the immediate release of +PHP 5.1.1. +
++This is a regression correction release aimed at addressing several issues +that may cause issues for certain applications. The main fixes found in this +release include the following: +
+ For a full list of changes in PHP 5.1.1, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.1/announcements/5_1_2.html b/data/releases/5.1/announcements/5_1_2.html new file mode 100644 index 0000000000..10d97fc311 --- /dev/null +++ b/data/releases/5.1/announcements/5_1_2.html @@ -0,0 +1,52 @@ ++The PHP development team is proud to announce the release of PHP 5.1.2. +This release combines small feature enhancements with a fair number of +bug fixes and addresses three security issues. All PHP 5 users are encouraged to +upgrade to this release. +
+ ++The security issues resolved include the following: +
+The feature enhancements include the following notables: +
+The release also includes over 85 bug fixes with a focus on: +
+ For a full list of changes in PHP 5.1.2, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.1/announcements/5_1_3.html b/data/releases/5.1/announcements/5_1_3.html new file mode 100644 index 0000000000..fd93df9272 --- /dev/null +++ b/data/releases/5.1/announcements/5_1_3.html @@ -0,0 +1,55 @@ ++The PHP development team is proud to announce the release of PHP 5.1.3. +This release combines small number of feature enhancements with a significant amount of bug fixes and resolves a number of security issues. +All PHP users are encouraged to upgrade to this release as soon as possible. +
+ ++The security issues resolved include the following: +
+The feature enhancements include the following notables: +
+The release also includes over 120 bug fixes with a focus on: +
+ For a full list of changes in PHP 5.1.3, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.1/announcements/5_1_4.html b/data/releases/5.1/announcements/5_1_4.html new file mode 100644 index 0000000000..bfb97f3353 --- /dev/null +++ b/data/releases/5.1/announcements/5_1_4.html @@ -0,0 +1,21 @@ ++A critical bug with file uploads as well as the fastcgi sapi has been discovered in PHP 5.1.3 and a new PHP release 5.1.4 has been + made available to address these two issues. All PHP users are encouraged to upgrade to this release as soon as possible. +
+ ++This release provides fixes for the following bugs: +
+ For a full list of changes in PHP 5.1.4, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.1/announcements/5_1_5.html b/data/releases/5.1/announcements/5_1_5.html new file mode 100644 index 0000000000..53fa9e6182 --- /dev/null +++ b/data/releases/5.1/announcements/5_1_5.html @@ -0,0 +1,27 @@ ++This release address a series of locally exploitable security problems discovered since PHP 5.1.4. +All PHP users are encouraged to upgrade to this release as soon as possible. +
+ ++This release provides the following security fixes: +
+In addition to the security fixes, both releases include a small number of non-security related bug fixes. +
+ ++ For a full list of changes in PHP 5.1.5, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.1/announcements/5_1_6.html b/data/releases/5.1/announcements/5_1_6.html new file mode 100644 index 0000000000..b83b6887ec --- /dev/null +++ b/data/releases/5.1/announcements/5_1_6.html @@ -0,0 +1,10 @@ ++This release is a re-release of PHP 5.1.5, which was missing the fix for memory_limit restriction +on 64 bit systems. If you rely on this functionality and use 64bit machines, you are advised to upgrade. +
+ ++ For a full list of changes in PHP 5.1.6, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_0.html b/data/releases/5.2/announcements/5_2_0.html new file mode 100644 index 0000000000..c1f71d5c4f --- /dev/null +++ b/data/releases/5.2/announcements/5_2_0.html @@ -0,0 +1,55 @@ ++The PHP development team is proud to announce the immediate release of PHP +5.2.0. This release is a major improvement in the 5.X series, which includes a +large number of new features, bug fixes and security enhancements. +
+ ++The key features of PHP 5.2.0 include: +
++Security Enhancements and Fixes in PHP 5.2.0: +
++All users of PHP, especially those using earlier PHP 5 releases are advised +to upgrade to this release as soon as possible. This release also obsoletes +the 5.1 branch of PHP. +
+ ++For users upgrading from PHP 5.0 and PHP 5.1 there is an upgrading guide +available here, detailing the changes between those releases +and PHP 5.2.0. +
+ ++ For a full list of changes in PHP 5.2.0, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_1.html b/data/releases/5.2/announcements/5_2_1.html new file mode 100644 index 0000000000..515f29ce48 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_1.html @@ -0,0 +1,61 @@ ++The PHP development team would like to announce the immediate availability of PHP 5.2.1. +This release is a major stability and security enhancement of the 5.X branch, and all +users are strongly encouraged to upgrade to it as soon as possible. +
+ ++Security Enhancements and Fixes in PHP 5.2.1: +
++The majority of the security vulnerabilities discovered and resolved can in most cases be only abused by local users and cannot be triggered +remotely. However, some of the above issues can be triggered remotely in certain situations, or exploited by malicious local users on shared hosting setups +utilizing PHP as an Apache module. Therefore, we strongly advise all users of PHP, regardless of the version to upgrade to 5.2.1 release +as soon as possible. PHP 4.4.5 with equivalent security corrections is available as well. +
+ ++The key improvements of PHP 5.2.1 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.1. +
+ ++ For a full list of changes in PHP 5.2.1, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_10.html b/data/releases/5.2/announcements/5_2_10.html new file mode 100644 index 0000000000..7ae30a357b --- /dev/null +++ b/data/releases/5.2/announcements/5_2_10.html @@ -0,0 +1,42 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.10. This release focuses on improving the stability of +the PHP 5.2.x branch with over 100 bug fixes, one of which is security related. +All users of PHP are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.10: +
++Key enhancements in PHP 5.2.10 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.10. +
+ ++ For a full list of changes in PHP 5.2.10, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_11.html b/data/releases/5.2/announcements/5_2_11.html new file mode 100644 index 0000000000..40d9986efd --- /dev/null +++ b/data/releases/5.2/announcements/5_2_11.html @@ -0,0 +1,42 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.11. This release focuses on improving the stability of +the PHP 5.2.x branch with over 75 bug fixes, some of which are security related. +All users of PHP 5.2 are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.11: +
++Key enhancements in PHP 5.2.11 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.11. +
+ ++ For a full list of changes in PHP 5.2.11, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_12.html b/data/releases/5.2/announcements/5_2_12.html new file mode 100644 index 0000000000..4a390dee90 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_12.html @@ -0,0 +1,47 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.12. This release focuses on improving the stability of +the PHP 5.2.x branch with over 60 bug fixes, some of which are security related. +All users of PHP 5.2 are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.12: +
++Key enhancements in PHP 5.2.12 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.12. +
+ ++ For a full list of changes in PHP 5.2.12, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_13.html b/data/releases/5.2/announcements/5_2_13.html new file mode 100644 index 0000000000..74cc129620 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_13.html @@ -0,0 +1,40 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.13. This release focuses on improving the stability of +the PHP 5.2.x branch with over 40 bug fixes, some of which are security related. +All users of PHP 5.2 are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.13: +
++Key enhancements in PHP 5.2.13 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.13. +
+ ++ For a full list of changes in PHP 5.2.13, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_14.html b/data/releases/5.2/announcements/5_2_14.html new file mode 100644 index 0000000000..7f2945d21f --- /dev/null +++ b/data/releases/5.2/announcements/5_2_14.html @@ -0,0 +1,52 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.14. This release focuses on improving the +stability of the PHP 5.2.x branch with over 60 bug fixes, some of which +are security related.
+ ++This release marks the end of the active support for PHP +5.2. Following this release the PHP 5.2 series will receive no further +active bug maintenance. Security fixes for PHP 5.2 might be published on a +case by cases basis. All users of PHP 5.2 are encouraged to upgrade to +PHP 5.3.
+ ++Security Enhancements and Fixes in PHP 5.2.14: +
++Key enhancements in PHP 5.2.14 include: +
+To prepare for upgrading to PHP 5.3, now that PHP 5.2's support ended, a +migration guide available on http://php.net/migration53, details the changes between +PHP 5.2 and PHP 5.3.
+ +For a full list of changes in PHP 5.2.14 see the ChangeLog at
+
+The PHP development team would like to announce the immediate +availability of PHP 5.2.15. This release marks the end of support +for PHP 5.2. All users of PHP 5.2 are encouraged to upgrade to PHP 5.3. +
+ ++This release focuses on improving the security and stability of the +PHP 5.2.x branch with a small number, of predominatly security fixes. +
+ ++Security Enhancements and Fixes in PHP 5.2.15: +
++Key enhancements in PHP 5.2.15 include: +
+To prepare for upgrading to PHP 5.3, now that PHP 5.2's support ended, a +migration guide available on http://php.net/migration53, details the changes between +PHP 5.2 and PHP 5.3.
+ +For a full list of changes in PHP 5.2.15 see the ChangeLog at +http://www.php.net/ChangeLog-5.php#5.2.15.
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_16.html b/data/releases/5.2/announcements/5_2_16.html new file mode 100644 index 0000000000..ba9697bbbd --- /dev/null +++ b/data/releases/5.2/announcements/5_2_16.html @@ -0,0 +1,20 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.16. This release marks the end of support +for PHP 5.2. All users of PHP 5.2 are encouraged to upgrade to PHP 5.3. +
+ ++This release focuses on addressing a regression in open_basedir implementation +introduced in 5.2.15 in addition to fixing a crash inside PDO::pgsql +on data retrieval when the server is down. All users who have upgraded to 5.2.15 and are +utilizing open_basedir are strongly encouraged to upgrade to 5.2.16 or 5.3.4. +
+ +To prepare for upgrading to PHP 5.3, now that PHP 5.2's support ended, a +migration guide available on http://php.net/migration53, details the changes between +PHP 5.2 and PHP 5.3.
+ +For a full list of changes in PHP 5.2.16 see the ChangeLog at +http://www.php.net/ChangeLog-5.php#5.2.16.
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_17.html b/data/releases/5.2/announcements/5_2_17.html new file mode 100644 index 0000000000..d62b4e9332 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_17.html @@ -0,0 +1,23 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.17.
+ +This release resolves a critical issue, reported as PHP bug #53632, +where conversions from string to double might cause the PHP interpreter +to hang on systems using x87 FPU registers.
+ +The problem is known to only affect x86 32-bit PHP processes, regardless +of whether the system hosting PHP is 32-bit or 64-bit. You can test +whether your system is affected by running this script +from the command line.
+ +All users of PHP are strongly advised to update to these versions +immediately.
+ ++Security Enhancements and Fixes in PHP 5.2.17: +
++The PHP development team would like to announce the immediate availability of PHP 5.2.2. +This release continues to improve the security and the stability of the 5.X +branch and all users are strongly encouraged to upgrade to it as soon as possible. +
+ ++Security Enhancements and Fixes in PHP 5.2.2: +
++While majority of the issues outlined above are local, in some circumstances given specific code paths they can be +triggered externally. Therefor, we strongly recommend that if you use code utilizing the functions and extensions identified as +having had vulnerabilities in them, you consider upgrading your PHP. +
+ ++The key improvements of PHP 5.2.2 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.2. +
+ ++ For a full list of changes in PHP 5.2.2, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_3.html b/data/releases/5.2/announcements/5_2_3.html new file mode 100644 index 0000000000..7fa2a86183 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_3.html @@ -0,0 +1,52 @@ ++The PHP development team would like to announce the immediate availability +of PHP 5.2.3. This release continues to improve the security and the +stability of the 5.X branch as well as addressing two regressions introduced +by the previous 5.2 releases. These regressions relate to the timeout +handling over non-blocking SSL connections and the lack of +HTTP_RAW_POST_DATA in certain conditions. All users are encouraged to +upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.3: +
++The key improvements of PHP 5.2.3 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.3. +
+ ++ For a full list of changes in PHP 5.2.3, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_4.html b/data/releases/5.2/announcements/5_2_4.html new file mode 100644 index 0000000000..8511cbe225 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_4.html @@ -0,0 +1,52 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.4. This release focuses on improving the stability +of the PHP 5.2.X branch with over 120 various bug fixes in +addition to resolving several low priority security bugs. All +users of PHP are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.4: +
++Key enhancements in PHP 5.2.4 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.4. +
+ ++ For a full list of changes in PHP 5.2.4, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_5.html b/data/releases/5.2/announcements/5_2_5.html new file mode 100644 index 0000000000..b953661049 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_5.html @@ -0,0 +1,44 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.5. This release focuses on improving the stability of +the PHP 5.2.x branch with over 60 bug fixes, several of which are security related. +All users of PHP are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.5: +
++Key enhancements in PHP 5.2.5 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.5. +
+ ++ For a full list of changes in PHP 5.2.5, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_6.html b/data/releases/5.2/announcements/5_2_6.html new file mode 100644 index 0000000000..edac8ca97e --- /dev/null +++ b/data/releases/5.2/announcements/5_2_6.html @@ -0,0 +1,47 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.6. This release focuses on improving the stability of +the PHP 5.2.x branch with over 120 bug fixes, several of which are security related. +All users of PHP are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.6: +
++Key enhancements in PHP 5.2.6 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.6. +
+ ++ For a full list of changes in PHP 5.2.6, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_7.html b/data/releases/5.2/announcements/5_2_7.html new file mode 100644 index 0000000000..da3e31e456 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_7.html @@ -0,0 +1,45 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.7. This release focuses on improving the stability of +the PHP 5.2.x branch with over 120 bug fixes, several of which are security related. +All users of PHP are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.7: +
++Key enhancements in PHP 5.2.7 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.7. +
+ ++ For a full list of changes in PHP 5.2.7, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_8.html b/data/releases/5.2/announcements/5_2_8.html new file mode 100644 index 0000000000..5a47b2a2fe --- /dev/null +++ b/data/releases/5.2/announcements/5_2_8.html @@ -0,0 +1,19 @@ ++The PHP development team would like to announce the immediate availability +of PHP 5.2.8. This release addresses a regression introduced by 5.2.7 in +regard to the magic_quotes functionality, that was broken by an incorrect fix +to the filter extension. All users who have upgraded to 5.2.7 are encouraged +to upgrade to this release, alternatively you can apply a work-around for +the bug by changing "filter.default_flags=0" in php.ini +
+ ++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.8. +
+ ++ For a full list of changes in PHP 5.2.8, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.2/announcements/5_2_9.html b/data/releases/5.2/announcements/5_2_9.html new file mode 100644 index 0000000000..87cb146124 --- /dev/null +++ b/data/releases/5.2/announcements/5_2_9.html @@ -0,0 +1,45 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.2.9. This release focuses on improving the stability of +the PHP 5.2.x branch with over 50 bug fixes, several of which are security related. +All users of PHP are encouraged to upgrade to this release. +
+ ++Security Enhancements and Fixes in PHP 5.2.9: +
++Key enhancements in PHP 5.2.9 include: +
++For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available +here, detailing the changes between those releases +and PHP 5.2.9. +
+ ++ For a full list of changes in PHP 5.2.9, see the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_0.html b/data/releases/5.3/announcements/5_3_0.html new file mode 100644 index 0000000000..df02346eb8 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_0.html @@ -0,0 +1,73 @@ ++The PHP development team is proud to announce the immediate release of PHP +5.3.0. This release is a major improvement in the 5.X series, which includes a +large number of new features and bug fixes. +
+ ++The key features of PHP 5.3.0 include: +
+E_DEPRECATED (part of E_ALL)
+ instead of the E_STRICT error levelThis release also drops several extensions and unifies the usage of internal APIs. +Users should be aware of the following known backwards compatibility breaks:
++For users upgrading from PHP 5.2 there is a migration guide +available here, detailing +the changes between those releases and PHP 5.3.0. +
+ ++ For a full list of changes in PHP 5.3.0, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_1.html b/data/releases/5.3/announcements/5_3_1.html new file mode 100644 index 0000000000..b8cd062722 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_1.html @@ -0,0 +1,42 @@ ++The PHP development team is proud to announce the immediate release of PHP +5.3.1. This is a maintenance release in the 5.3 series, which includes a +large number of bug fixes. +
+ ++Security Enhancements and Fixes in PHP 5.3.1: +
++Key Bug Fixes in PHP 5.3.1 include: +
++For users upgrading from PHP 5.2 there is a migration guide +available here, detailing +the changes between those releases and PHP 5.3. +
+ ++ For a full list of changes in PHP 5.3.1, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_10.html b/data/releases/5.3/announcements/5_3_10.html new file mode 100644 index 0000000000..9d8dbc1be1 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_10.html @@ -0,0 +1,14 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.3.10. This release delivers a critical security +fix.
+ +Security Fixes in PHP 5.3.10:
+ +All users are strongly encouraged to upgrade to PHP 5.3.10.
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_11.html b/data/releases/5.3/announcements/5_3_11.html new file mode 100644 index 0000000000..a8167177ad --- /dev/null +++ b/data/releases/5.3/announcements/5_3_11.html @@ -0,0 +1,31 @@ +The PHP development team announces the immediate availability of +PHP 5.3.11. This release focuses on improving the stability of the +PHP 5.3 branch with over 60 bug fixes, some of which are security related.
+ +Security Enhancements for PHP 5.3.11:
+ +Key enhancements in PHP 5.3.11 include:
+ +For a full list of changes in PHP 5.3.11, see the ChangeLog. For source downloads please visit +our downloads page, Windows binaries can be found +on windows.php.net/download/.
+ +All users of PHP 5.3 are strongly encouraged to upgrade to PHP 5.3.11.
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_12.html b/data/releases/5.3/announcements/5_3_12.html new file mode 100644 index 0000000000..8d81f58299 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_12.html @@ -0,0 +1,56 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.3.12. This release delivers a security fix.
+ +There is a vulnerability in certain CGI-based setups that has gone +unnoticed for at least 8 years. Section +7 of the CGI spec states:
+ + + Some systems support a method for supplying a array of strings to the + CGI script. This is only used in the case of an `indexed' query. This + is identified by a "GET" or "HEAD" HTTP request with a URL search + string not containing any unencoded "=" characters. + + +So requests that do not have a "=" in the query string are treated +differently from those who do in some CGI implementations. For PHP this +means that a request containing ?-s may dump the PHP source code for the +page, but a request that has ?-s&a=1 is fine.
+ +A large number of sites run PHP as either an Apache module through +mod_php or using php-fpm under nginx. Neither of these setups are +vulnerable to this. Straight shebang-style CGI also does not appear to +be vulnerable.
+ +If you are using Apache mod_cgi to run PHP you may be vulnerable. To see +if you are just add ?-s to the end of any of your URLs. If you see your +source code, you are vulnerable. If your site renders normally, you are not.
+ +Making a bad week worse, we had a bug in our bug system that toggled the +private flag of a bug report to public on a comment to the bug report +causing this issue to go public before we had time to test solutions to +the level we would like.
+ +To fix this update to PHP 5.3.12 or PHP 5.4.2. We recognize that since +this is a rather outdated way to run PHP it may not be feasible to +upgrade these sites to a modern version of PHP, so an alternative is to +configure your web server to not let these types of requests with query +strings starting with a "-" and not containing a "=" through. Adding a +rule like this should not break any sites. For Apache using mod_rewrite +it would look like this:
+ +
+ RewriteCond %{QUERY_STRING} ^(%2d|-)[^=]+$ [NC]
+ RewriteRule ^(.*) $1? [L]
+
+
+If you are writing your own rule, be sure to take the urlencoded ?%2ds +version into account.
+ +For source downloads of PHP 5.3.12 please visit +our downloads page, Windows binaries can be found +on windows.php.net/download/. A +ChangeLog exists.
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_13.html b/data/releases/5.3/announcements/5_3_13.html new file mode 100644 index 0000000000..89e07caed3 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_13.html @@ -0,0 +1,13 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.3.13. This release delivers a security fix. +All users of PHP 5.3 are encouraged to upgrade to this release
+ +PHP 5.3.13 completes a fix for a vulnerability in CGI-based setups +(CVE-2012-2311). Note: mod_php and php-fpm are not vulnerable to this +attack.
+ +For source downloads of PHP 5.3.13 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog.
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_14.html b/data/releases/5.3/announcements/5_3_14.html new file mode 100644 index 0000000000..69ac743387 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_14.html @@ -0,0 +1,15 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.3.14. This release fixes two security related +issues. All users of PHP 5.3 are encouraged to upgrade to this release.
+ +PHP 5.3.14 fixes an security issue in the implementation of crypt() and a +heap overflow in the Phar extension. Over 30 bugs were fixed
+ +Please note that php://fd is now only available if the CLI SAPI is used
+ +For source downloads of PHP 5.3.14 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_15.html b/data/releases/5.3/announcements/5_3_15.html new file mode 100644 index 0000000000..b7228879b4 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_15.html @@ -0,0 +1,11 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.3.15. Over 30 bugs were fixed, including a security +related overflow issue in the stream implementation. All users of PHP +are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.3.15 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_16.html b/data/releases/5.3/announcements/5_3_16.html new file mode 100644 index 0000000000..3815342099 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_16.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.3.16. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to +PHP 5.4.6. Alternatively, PHP 5.3.16 is recommended for those wishing to remain +on the 5.3 series.
+ +For source downloads of PHP 5.3.16 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_17.html b/data/releases/5.3/announcements/5_3_17.html new file mode 100644 index 0000000000..cf6e12c13f --- /dev/null +++ b/data/releases/5.3/announcements/5_3_17.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.3.17. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to +PHP 5.4.7. Alternatively, PHP 5.3.17 is recommended for those wishing to remain +on the 5.3 series.
+ +For source downloads of PHP 5.3.17 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_18.html b/data/releases/5.3/announcements/5_3_18.html new file mode 100644 index 0000000000..5001304c07 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_18.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.3.18. About 10 bugs were fixed. All users of PHP are encouraged to upgrade to +PHP 5.4.8. Alternatively, PHP 5.3.18 is recommended for those wishing to remain +on the 5.3 series.
+ +For source downloads of PHP 5.3.18 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_19.html b/data/releases/5.3/announcements/5_3_19.html new file mode 100644 index 0000000000..5d91c0a650 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_19.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.3.19. About 10 bugs were fixed. All users of PHP are encouraged to upgrade to +PHP 5.4.9. Alternatively, PHP 5.3.19 is recommended for those wishing to remain +on the 5.3 series.
+ +For source downloads of PHP 5.3.19 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_2.html b/data/releases/5.3/announcements/5_3_2.html new file mode 100644 index 0000000000..b38fbb6c72 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_2.html @@ -0,0 +1,44 @@ ++The PHP development team is proud to announce the immediate release of PHP +5.3.2. This is a maintenance release in the 5.3 series, which includes a +large number of bug fixes. +
+ ++Security Enhancements and Fixes in PHP 5.3.2: +
++Key Bug Fixes in PHP 5.3.2 include: +
++For users upgrading from PHP 5.2 there is a migration guide +available here, detailing +the changes between those releases and PHP 5.3. +
+ ++ For a full list of changes in PHP 5.3.2, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_20.html b/data/releases/5.3/announcements/5_3_20.html new file mode 100644 index 0000000000..775783fc68 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_20.html @@ -0,0 +1,9 @@ +The PHP development team announces the immediate availability of PHP +5.3.20. About 15 bugs were fixed. Please note that the PHP 5.3 series will enter an end of life cycle and receive only critical fixes as of March 2013. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.20 is recommended for those wishing to remain on the 5.3 series.
+ +For source downloads of PHP 5.3.20 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_21.html b/data/releases/5.3/announcements/5_3_21.html new file mode 100644 index 0000000000..bb0da49527 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_21.html @@ -0,0 +1,9 @@ +The PHP development team announces the immediate availability of PHP +5.3.21. About 5 bugs were fixed All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.21 is recommended for those wishing to remain on the 5.3 series.
+ +For source downloads of PHP 5.3.21 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_22.html b/data/releases/5.3/announcements/5_3_22.html new file mode 100644 index 0000000000..c911d50baf --- /dev/null +++ b/data/releases/5.3/announcements/5_3_22.html @@ -0,0 +1,8 @@ +The PHP development team announces the immediate availability of PHP 5.3.22. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.22 is recommended for those wishing to remain on the 5.3 series.
+ +For source downloads of PHP 5.3.22 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_23.html b/data/releases/5.3/announcements/5_3_23.html new file mode 100644 index 0000000000..4f2f542ca8 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_23.html @@ -0,0 +1,8 @@ +The PHP development team announces the immediate availability of PHP 5.3.23. About 7 bugs were fixed, including fixes for CVE-2013-1643 and CVE-2013-1635. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.23 is recommended for those wishing to remain on the 5.3 series.
+ +For source downloads of PHP 5.3.23 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_24.html b/data/releases/5.3/announcements/5_3_24.html new file mode 100644 index 0000000000..2cd9348e54 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_24.html @@ -0,0 +1,8 @@ +The PHP development team announces the immediate availability of PHP 5.3.24. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.24 is recommended for those wishing to remain on the 5.3 series.
+ +For source downloads of PHP 5.3.24 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_25.html b/data/releases/5.3/announcements/5_3_25.html new file mode 100644 index 0000000000..eb827f8d97 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_25.html @@ -0,0 +1,8 @@ +The PHP development team announces the immediate availability of PHP 5.3.25. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.25 is recommended for those wishing to remain on the 5.3 series.
+ +For source downloads of PHP 5.3.25 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_26.html b/data/releases/5.3/announcements/5_3_26.html new file mode 100644 index 0000000000..840d793c95 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_26.html @@ -0,0 +1,8 @@ +The PHP development team announces the immediate availability of PHP 5.3.25. About 6 bugs were fixed, including CVE 2013-2110. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.26 is recommended for those wishing to remain on the 5.3 series.
+ +For source downloads of PHP 5.3.26 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_27.html b/data/releases/5.3/announcements/5_3_27.html new file mode 100644 index 0000000000..981eece0ee --- /dev/null +++ b/data/releases/5.3/announcements/5_3_27.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 5.3.27. About 10 bugs were fixed, including a security fix in the XML parser (Bug #65236).
+ +Please Note: This will be the last regular release of the PHP 5.3 series. All users of PHP are encouraged to upgrade to PHP 5.4 or PHP 5.5. The PHP 5.3 series will receive only security fixes for the next year.
+ +For source downloads of PHP 5.3.27 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_28.html b/data/releases/5.3/announcements/5_3_28.html new file mode 100644 index 0000000000..6ad04feff5 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_28.html @@ -0,0 +1,8 @@ +The PHP development team announces the immediate availability of PHP 5.3.28. This release fixes two security issues in OpenSSL module in PHP 5.3 - CVE-2013-4073 and CVE-2013-6420. All PHP 5.3 users are encouraged to upgrade to PHP 5.3.28 or latest versions of PHP 5.4 or PHP 5.5.
+ +For source downloads of PHP 5.3.28 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_29.html b/data/releases/5.3/announcements/5_3_29.html new file mode 100644 index 0000000000..db3642fb65 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_29.html @@ -0,0 +1,19 @@ +The PHP development team announces the immediate availability of + PHP 5.3.29. This release marks the end of life of the PHP 5.3 series. + Future releases of this series are not planned. All PHP 5.3 users are + encouraged to upgrade to the current stable version of PHP 5.5 or + previous stable version of PHP 5.4, which are supported till at least + 2016 and 2015 respectively.
+ +PHP 5.3.29 contains about 25 potentially security related fixes + backported from PHP 5.4 and 5.5.
+ +For source downloads of PHP 5.3.29, please visit our downloads page. Windows + binaries can be found on windows.php.net/download/. The list of changes is recorded in + the ChangeLog.
+ +For helping your migration to newer versions please refer to our migration + guides for updates from PHP 5.3 to + 5.4 and from PHP 5.4 to 5.5.
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_3.html b/data/releases/5.3/announcements/5_3_3.html new file mode 100644 index 0000000000..bbfe1d2f2a --- /dev/null +++ b/data/releases/5.3/announcements/5_3_3.html @@ -0,0 +1,18 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.3.3. This release focuses on improving the +stability and security of the PHP 5.3.x branch with over 100 bug +fixes, some of which are security related. All users are encouraged +to upgrade to this release. +
+ ++Backwards incompatible change: +
+\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_4.html b/data/releases/5.3/announcements/5_3_4.html new file mode 100644 index 0000000000..84d9528458 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_4.html @@ -0,0 +1,48 @@ +
+The PHP development team is proud to announce the immediate release of PHP +5.3.4. This is a maintenance release in the 5.3 series, which includes a +large number of bug fixes. +
+ ++Security Enhancements and Fixes in PHP 5.3.4: +
++Key Bug Fixes in PHP 5.3.4 include: +
++For users upgrading from PHP 5.2 there is a migration guide +available here, detailing +the changes between those releases and PHP 5.3. +
+ ++ For a full list of changes in PHP 5.3.4, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_5.html b/data/releases/5.3/announcements/5_3_5.html new file mode 100644 index 0000000000..8f1031b684 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_5.html @@ -0,0 +1,23 @@ ++The PHP development team would like to announce the immediate +availability of PHP 5.3.5.
+ +This release resolves a critical issue, reported as PHP bug #53632, +where conversions from string to double might cause the PHP interpreter +to hang on systems using x87 FPU registers.
+ +The problem is known to only affect x86 32-bit PHP processes, regardless +of whether the system hosting PHP is 32-bit or 64-bit. You can test +whether your system is affected by running this script +from the command line.
+ +All users of PHP are strongly advised to update to these versions +immediately.
+ ++Security Enhancements and Fixes in PHP 5.3.5: +
+The PHP development team would like to announce the immediate +availability of PHP 5.3.6. This release focuses on improving the +stability of the PHP 5.3.x branch with over 60 bug fixes, some of which +are security related.
+ +Security Enhancements and Fixes in PHP 5.3.6:
+Key enhancements in PHP 5.3.6 include:
+Windows users: please mind that we do no longer provide builds created +with Visual Studio C++ 6. It is impossible to maintain a high quality +and safe build of PHP for Windows using this unmaintained compiler.
+ +For Apache SAPIs (php5_apache2_2.dll), be sure that you use a Visual +Studio C++ 9 version of Apache. We recommend the Apache builds as provided +by ApacheLounge. For any other +SAPI (CLI, FastCGI via mod_fcgi, FastCGI with IIS or other FastCGI capable +server), everything works as before. Third party extension providers +must rebuild their extensions to make them compatible and loadable with +the Visual Studio C++9 builds that we now provide.
+ +All PHP users should note that the PHP 5.2 series is NOT supported +anymore. All users are strongly encouraged to upgrade to PHP 5.3.6.
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_7.html b/data/releases/5.3/announcements/5_3_7.html new file mode 100644 index 0000000000..c0fed4e600 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_7.html @@ -0,0 +1,58 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.3.7. This release focuses on improving the +stability of the PHP 5.3.x branch with over 90 bug fixes, some of which +are security related.
+ +Security Enhancements and Fixes in PHP 5.3.7:
+Key enhancements in PHP 5.3.7 include:
+Windows users: please mind that we do no longer provide builds created +with Visual Studio C++ 6. It is impossible to maintain a high quality +and safe build of PHP for Windows using this unmaintained compiler.
+ +For Apache SAPIs (php5_apache2_2.dll), be sure that you use a Visual +Studio C++ 9 version of Apache. We recommend the Apache builds as provided +by ApacheLounge. For any other +SAPI (CLI, FastCGI via mod_fcgi, FastCGI with IIS or other FastCGI capable +server), everything works as before. Third party extension providers +must rebuild their extensions to make them compatible and loadable with +the Visual Studio C++9 builds that we now provide.
+ +All PHP users should note that the PHP 5.2 series is NOT supported +anymore. All users are strongly encouraged to upgrade to PHP 5.3.7.
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_8.html b/data/releases/5.3/announcements/5_3_8.html new file mode 100644 index 0000000000..fc695a2647 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_8.html @@ -0,0 +1,14 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.3.8. This release fixes two issues introduced in +the PHP 5.3.7 release:
+ +All PHP users should note that the PHP 5.2 series is NOT supported +anymore. All users are strongly encouraged to upgrade to PHP 5.3.8.
\ No newline at end of file diff --git a/data/releases/5.3/announcements/5_3_9.html b/data/releases/5.3/announcements/5_3_9.html new file mode 100644 index 0000000000..31fac80769 --- /dev/null +++ b/data/releases/5.3/announcements/5_3_9.html @@ -0,0 +1,25 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.3.9. This release focuses on improving the +stability of the PHP 5.3.x branch with over 90 bug fixes, some of +which are security related.
+ +Security Enhancements and Fixes in PHP 5.3.9:
+ +Key enhancements in PHP 5.3.9 include:
+ +All users are strongly encouraged to upgrade to PHP 5.3.9.
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_0.html b/data/releases/5.4/announcements/5_4_0.html new file mode 100644 index 0000000000..afe82b6d98 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_0.html @@ -0,0 +1,56 @@ ++The PHP development team is proud to announce the immediate availability +of PHP 5.4.0. +This release is a major leap forward in the 5.x series, +and includes a large number of new features and bug fixes. +
+ ++The key features of PHP 5.4.0 include: +
++Changes that affect compatibility: +
++Extensions moved to PECL: +
++PHP 5.4 will be the last series to support Windows XP and Windows +2003. We will not provide binary packages for these Windows versions +after PHP 5.4. +
+ ++For users upgrading from PHP 5.3 there is a migration guide available +here, detailing the changes between +PHP 5.3 and PHP 5.4.0. +
+ ++ For a full list of changes in PHP 5.4.0, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_1.html b/data/releases/5.4/announcements/5_4_1.html new file mode 100644 index 0000000000..c0eb76a635 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_1.html @@ -0,0 +1,29 @@ +The PHP development team announces the immediate availability of +PHP 5.4.1. This release focuses on improving the stability of the +PHP 5.4 branch with over 60 bug fixes, some of which are security related.
+ +Security Enhancements for PHP 5.4.1:
+ +Key enhancements in PHP 5.4.1 include:
+ +For a full list of changes in PHP 5.4.1, see the ChangeLog. For source downloads please visit +our downloads page, Windows binaries can be found +on windows.php.net/download/.
+ +All users of PHP are strongly encouraged to upgrade to PHP 5.4.1.
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_10.html b/data/releases/5.4/announcements/5_4_10.html new file mode 100644 index 0000000000..b1ff33ec1a --- /dev/null +++ b/data/releases/5.4/announcements/5_4_10.html @@ -0,0 +1,10 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.10. About 15 bugs were fixed. All +users of PHP are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.10 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_11.html b/data/releases/5.4/announcements/5_4_11.html new file mode 100644 index 0000000000..d0949881a9 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_11.html @@ -0,0 +1,10 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.11. About 10 bugs were fixed. All +users of PHP are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.11 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_12.html b/data/releases/5.4/announcements/5_4_12.html new file mode 100644 index 0000000000..92d1f7f20e --- /dev/null +++ b/data/releases/5.4/announcements/5_4_12.html @@ -0,0 +1,10 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.12. About 10 bugs were fixed. All +users of PHP are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.12 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_13.html b/data/releases/5.4/announcements/5_4_13.html new file mode 100644 index 0000000000..b017b098a0 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_13.html @@ -0,0 +1,10 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.13. About 15 bugs were fixed, including fixes for CVE-2013-1643 and CVE-2013-1635. All +users of PHP are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.13 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_14.html b/data/releases/5.4/announcements/5_4_14.html new file mode 100644 index 0000000000..b0c82838a4 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_14.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP +5.4.14. About 15 bugs were fixed. All users of PHP are encouraged to +upgrade to this release.
+ +For source downloads of PHP 5.4.14 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_15.html b/data/releases/5.4/announcements/5_4_15.html new file mode 100644 index 0000000000..b2e36aea23 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_15.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP +5.4.15. About 10 bugs were fixed. All users of PHP are encouraged to +upgrade to this release.
+ +For source downloads of PHP 5.4.15 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_16.html b/data/releases/5.4/announcements/5_4_16.html new file mode 100644 index 0000000000..71b128732f --- /dev/null +++ b/data/releases/5.4/announcements/5_4_16.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP +5.4.16. About 15 bugs were fixed, including CVE 2013-2110. All users of PHP are encouraged to +upgrade to this release.
+ +For source downloads of PHP 5.4.16 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_17.html b/data/releases/5.4/announcements/5_4_17.html new file mode 100644 index 0000000000..83286bf655 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_17.html @@ -0,0 +1,9 @@ +The PHP development team announces the immediate availability of PHP +5.4.17. About 20 bugs were fixed. All users of PHP are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.17 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_18.html b/data/releases/5.4/announcements/5_4_18.html new file mode 100644 index 0000000000..88e111346c --- /dev/null +++ b/data/releases/5.4/announcements/5_4_18.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP +5.4.18. About 30 bugs were fixed, including security issues CVE-2013-4113 and CVE-2013-4248. +
+ +NOTE: Please do not use this release, due to the bug in the fix for CVE-2013-4248. This bug is fixed in +PHP 5.4.19.
+ +For source downloads of PHP 5.4.18 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_19.html b/data/releases/5.4/announcements/5_4_19.html new file mode 100644 index 0000000000..c8f50b648f --- /dev/null +++ b/data/releases/5.4/announcements/5_4_19.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +5.4.19. This release fixes a bug in the patch for CVE-2013-4248 in OpenSSL module and +compile failure with ZTS enabled.
+ +All PHP 5.4 users are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.19 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_2.html b/data/releases/5.4/announcements/5_4_2.html new file mode 100644 index 0000000000..9d719b2c75 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_2.html @@ -0,0 +1,56 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.2. This release delivers a security fix.
+ +There is a vulnerability in certain CGI-based setups that has gone +unnoticed for at least 8 years. Section +7 of the CGI spec states:
+ + + Some systems support a method for supplying a array of strings to the + CGI script. This is only used in the case of an `indexed' query. This + is identified by a "GET" or "HEAD" HTTP request with a URL search + string not containing any unencoded "=" characters. + + +So requests that do not have a "=" in the query string are treated +differently from those who do in some CGI implementations. For PHP this +means that a request containing ?-s may dump the PHP source code for the +page, but a request that has ?-s&a=1 is fine.
+ +A large number of sites run PHP as either an Apache module through +mod_php or using php-fpm under nginx. Neither of these setups are +vulnerable to this. Straight shebang-style CGI also does not appear to +be vulnerable.
+ +If you are using Apache mod_cgi to run PHP you may be vulnerable. To see +if you are just add ?-s to the end of any of your URLs. If you see your +source code, you are vulnerable. If your site renders normally, you are not.
+ +Making a bad week worse, we had a bug in our bug system that toggled the +private flag of a bug report to public on a comment to the bug report +causing this issue to go public before we had time to test solutions to +the level we would like.
+ +To fix this update to PHP 5.3.12 or PHP 5.4.2. We recognize that since +this is a rather outdated way to run PHP it may not be feasible to +upgrade these sites to a modern version of PHP, so an alternative is to +configure your web server to not let these types of requests with query +strings starting with a "-" and not containing a "=" through. Adding a +rule like this should not break any sites. For Apache using mod_rewrite +it would look like this:
+ +
+ RewriteCond %{QUERY_STRING} ^(%2d|-)[^=]+$ [NC]
+ RewriteRule ^(.*) $1? [L]
+
+
+If you are writing your own rule, be sure to take the urlencoded ?%2ds +version into account.
+ +For source downloads of PHP 5.4.2 please visit +our downloads page, Windows binaries can be found +on windows.php.net/download/. A +ChangeLog exists.
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_20.html b/data/releases/5.4/announcements/5_4_20.html new file mode 100644 index 0000000000..d8e4472c93 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_20.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP +5.4.20. About 30 bugs were fixed. All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.20 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_21.html b/data/releases/5.4/announcements/5_4_21.html new file mode 100644 index 0000000000..d89178273f --- /dev/null +++ b/data/releases/5.4/announcements/5_4_21.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP +5.4.21. About 10 bugs were fixed. All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.21 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_22.html b/data/releases/5.4/announcements/5_4_22.html new file mode 100644 index 0000000000..955d2ffcc0 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_22.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP +5.4.22. About 10 bugs were fixed. All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.22 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_23.html b/data/releases/5.4/announcements/5_4_23.html new file mode 100644 index 0000000000..17992dce76 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_23.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.4.23. About 10 bugs were fixed, including a security issue in OpenSSL module (CVE-2013-6420). +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.23 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_24.html b/data/releases/5.4/announcements/5_4_24.html new file mode 100644 index 0000000000..70310a1c64 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_24.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.4.24. About 14 bugs were fixed. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.24 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_25.html b/data/releases/5.4/announcements/5_4_25.html new file mode 100644 index 0000000000..77d76865bc --- /dev/null +++ b/data/releases/5.4/announcements/5_4_25.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.4.25. 5 bugs were fixed in this release. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.25 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_26.html b/data/releases/5.4/announcements/5_4_26.html new file mode 100644 index 0000000000..bbb7fb7f62 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_26.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.4.26. 5 bugs were fixed in this release, including CVE-2014-1943. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.26 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_27.html b/data/releases/5.4/announcements/5_4_27.html new file mode 100644 index 0000000000..cebbed4e45 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_27.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.4.27. 6 bugs were fixed in this release, including CVE-2013-7345. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.27 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_28.html b/data/releases/5.4/announcements/5_4_28.html new file mode 100644 index 0000000000..46b97909af --- /dev/null +++ b/data/releases/5.4/announcements/5_4_28.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.4.28. 19 bugs were fixed in this release, including CVE-2014-0185. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.28 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_29.html b/data/releases/5.4/announcements/5_4_29.html new file mode 100644 index 0000000000..d866fdb42c --- /dev/null +++ b/data/releases/5.4/announcements/5_4_29.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.4.29. 16 bugs were fixed in this release, including two security issues in fileinfo extension. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.29 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_3.html b/data/releases/5.4/announcements/5_4_3.html new file mode 100644 index 0000000000..92b056e39a --- /dev/null +++ b/data/releases/5.4/announcements/5_4_3.html @@ -0,0 +1,17 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.3. This release delivers two security fixes. +All users of PHP 5.4 are encouraged to upgrade to this release
+ +PHP 5.4.3 completes a fix for a vulnerability in CGI-based setups +(CVE-2012-2311). Note: mod_php and php-fpm are not vulnerable to this +attack.
+ +A buffer overflow vulnerability in the apache_request_headers() +was fixed (CVE-2012-2329).
+ +For source downloads of PHP 5.4.3 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_30.html b/data/releases/5.4/announcements/5_4_30.html new file mode 100644 index 0000000000..e990cae270 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_30.html @@ -0,0 +1,24 @@ +The PHP development team announces the immediate availability of PHP +5.4.30. Over 20 bugs were fixed in this release, including the following security issues: +CVE-2014-3981, CVE-2014-0207, CVE-2014-3478, CVE-2014-3479, CVE-2014-3480, CVE-2014-3487, +CVE-2014-4049, CVE-2014-3515. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +Please, note that this release also fixes a backward compatibility issue that has been +detected in the PHP 5.4.29 release. Still, the fix in PHP 5.4.30 may break some very rare +situations. As this tiny compatibility break involves security, and as security is our primary +concern, we had to fix it. This concerns +bug 67072. For more information about +this bug and its actual resolution, please refer to our +upgrading guide, section 4a. +We apologize for any inconvenience you may have experienced with this behavior.
+ + +For source downloads of PHP 5.4.30 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_31.html b/data/releases/5.4/announcements/5_4_31.html new file mode 100644 index 0000000000..398694ca60 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_31.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +5.4.31. Over 10 bugs were fixed in this release. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.31 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_32.html b/data/releases/5.4/announcements/5_4_32.html new file mode 100644 index 0000000000..f69c4f0bd5 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_32.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP +5.4.32. 16 bugs were fixed in this release, including the following security-related issues: +CVE-2014-2497, CVE-2014-3538, CVE-2014-3587, CVE-2014-3597, CVE-2014-4670, CVE-2014-4698, CVE-2014-5120. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.32 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_33.html b/data/releases/5.4/announcements/5_4_33.html new file mode 100644 index 0000000000..66eac284b9 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_33.html @@ -0,0 +1,18 @@ +The PHP development team announces the immediate availability of PHP +5.4.33. 10 bugs were fixed in this release. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ ++This release is the last planned release that contains regular bugfixes. All the consequent releases +will contain only security-relevant fixes, for the term of one year. +PHP 5.4 users that need further bugfixes are encouraged to upgrade to PHP 5.6 or PHP 5.5. +
+ +For source downloads of PHP 5.4.33 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_34.html b/data/releases/5.4/announcements/5_4_34.html new file mode 100644 index 0000000000..bdfaca3cc9 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_34.html @@ -0,0 +1,14 @@ +The PHP development team announces the immediate availability of PHP +5.4.34. 6 security-related bugs were fixed in this release, including fixes for +CVE-2014-3668, CVE-2014-3669 and CVE-2014-3670. Also, a fix for OpenSSL which +produced regressions was reverted. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.34 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_35.html b/data/releases/5.4/announcements/5_4_35.html new file mode 100644 index 0000000000..6fb55ec8cf --- /dev/null +++ b/data/releases/5.4/announcements/5_4_35.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +5.4.35. 4 security-related bugs were fixed in this release, including the fix for CVE-2014-3710. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.35 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_36.html b/data/releases/5.4/announcements/5_4_36.html new file mode 100644 index 0000000000..d7d855513c --- /dev/null +++ b/data/releases/5.4/announcements/5_4_36.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +5.4.36. Two security-related bugs were fixed in this release, including the fix for CVE-2014-8142. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.36 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_37.html b/data/releases/5.4/announcements/5_4_37.html new file mode 100644 index 0000000000..c706404ab5 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_37.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP +5.4.37. Six security-related bugs were fixed in this release, including CVE-2015-0231, CVE-2014-9427 +and CVE-2015-0232. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.37 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_38.html b/data/releases/5.4/announcements/5_4_38.html new file mode 100644 index 0000000000..c9a0a1a268 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_38.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +5.4.38. Seven security-related bugs were fixed in this release, including CVE-2015-0273 and mitigation for CVE-2015-0235. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.38 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_39.html b/data/releases/5.4/announcements/5_4_39.html new file mode 100644 index 0000000000..7c3c590e4f --- /dev/null +++ b/data/releases/5.4/announcements/5_4_39.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +5.4.39. Six security-related bugs were fixed in this release, including CVE-2015-0231, CVE-2015-2305 and CVE-2015-2331. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.39 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_4.html b/data/releases/5.4/announcements/5_4_4.html new file mode 100644 index 0000000000..930f36cc47 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_4.html @@ -0,0 +1,15 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.4. This release fixes two security related +issues. All users of PHP are encouraged to upgrade to this release.
+ +PHP 5.4.4 fixes an security issue in the implementation of crypt() and a +heap overflow in the Phar extension. Over 30 bugs were fixed
+ +Please note that php://fd is now only available if the CLI SAPI is used
+ +For source downloads of PHP 5.4.4 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_40.html b/data/releases/5.4/announcements/5_4_40.html new file mode 100644 index 0000000000..536e1a1eb2 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_40.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP +5.4.40. 14 security-related bugs were fixed in this release, including +CVE-2014-9709, CVE-2015-2301, CVE-2015-2783, CVE-2015-1352. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.40 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_41.html b/data/releases/5.4/announcements/5_4_41.html new file mode 100644 index 0000000000..c435f8c54d --- /dev/null +++ b/data/releases/5.4/announcements/5_4_41.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +5.4.41. Seven security-related issues were fixed in this version. + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.41 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_42.html b/data/releases/5.4/announcements/5_4_42.html new file mode 100644 index 0000000000..16dcfb626d --- /dev/null +++ b/data/releases/5.4/announcements/5_4_42.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP +5.4.42. Six security-related issues in PHP were fixed in this release, +as well as several security issues in bundled sqlite library (CVE-2015-3414, CVE-2015-3415, CVE-2015-3416). + +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.42 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_43.html b/data/releases/5.4/announcements/5_4_43.html new file mode 100644 index 0000000000..896bcd28b8 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_43.html @@ -0,0 +1,15 @@ +The PHP development team announces the immediate availability of PHP +5.4.43. Five security-related issues in PHP were fixed in this release, including CVE-2015-3152. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.43 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
+ +Please note that PHP 5.4 branch is nearing the end of its support timeframe. +If your PHP installations is based on PHP 5.4, it may be a good time to start making the plans for the upgrade. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_44.html b/data/releases/5.4/announcements/5_4_44.html new file mode 100644 index 0000000000..a476fc53eb --- /dev/null +++ b/data/releases/5.4/announcements/5_4_44.html @@ -0,0 +1,15 @@ +The PHP development team announces the immediate availability of PHP +5.4.44. 11 security-related issues were fixed in this release. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.44 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
+ +Please note that PHP 5.4 branch is nearing the end of its support timeframe. Either September or October release, depending on discovered issues, will be the last official release of PHP 5.4. +If your PHP installation is based on PHP 5.4, it may be a good time to start making the plans for the upgrade. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_45.html b/data/releases/5.4/announcements/5_4_45.html new file mode 100644 index 0000000000..911158cebc --- /dev/null +++ b/data/releases/5.4/announcements/5_4_45.html @@ -0,0 +1,17 @@ +The PHP development team announces the immediate availability of PHP +5.4.45. Ten security-related issues were fixed in this release. +All PHP 5.4 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.4.45 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
+ +Please note that according to the PHP version support timelines, +PHP 5.4.45 is the last scheduled release of PHP 5.4 branch. There may be additional release if we discover +important security issues that warrant it, otherwise this release will be the final one in the PHP 5.4 branch. +If your PHP installation is based on PHP 5.4, it may be a good time to start making the plans for the upgrade to PHP 5.5 or PHP 5.6. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_5.html b/data/releases/5.4/announcements/5_4_5.html new file mode 100644 index 0000000000..c687ca6d0c --- /dev/null +++ b/data/releases/5.4/announcements/5_4_5.html @@ -0,0 +1,11 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.5. Over 30 bugs were fixed, including a security +related overflow issue in the stream implementation. All users of PHP +are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.5 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_6.html b/data/releases/5.4/announcements/5_4_6.html new file mode 100644 index 0000000000..db465b8af5 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_6.html @@ -0,0 +1,10 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.6. Over 20 bugs were fixed. All users of PHP +are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.6 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_7.html b/data/releases/5.4/announcements/5_4_7.html new file mode 100644 index 0000000000..3406270c1c --- /dev/null +++ b/data/releases/5.4/announcements/5_4_7.html @@ -0,0 +1,10 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.7. Over 20 bugs were fixed. All users of PHP +are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.7 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_8.html b/data/releases/5.4/announcements/5_4_8.html new file mode 100644 index 0000000000..0086cf7b82 --- /dev/null +++ b/data/releases/5.4/announcements/5_4_8.html @@ -0,0 +1,11 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.8. Over 20 bugs were fixed. In addition OpenSSL +signature verification now supports the SHA-2 family and RMD160. All +users of PHP are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.8 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.4/announcements/5_4_9.html b/data/releases/5.4/announcements/5_4_9.html new file mode 100644 index 0000000000..fa7a51016c --- /dev/null +++ b/data/releases/5.4/announcements/5_4_9.html @@ -0,0 +1,10 @@ +The PHP development team would like to announce the immediate +availability of PHP 5.4.9. Over 15 bugs were fixed. All +users of PHP are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.4.9 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_0.html b/data/releases/5.5/announcements/5_5_0.html new file mode 100644 index 0000000000..0b7c257eff --- /dev/null +++ b/data/releases/5.5/announcements/5_5_0.html @@ -0,0 +1,43 @@ ++The PHP development team is proud to announce the immediate availability +of PHP 5.5.0. +This release includes a large number of new features and bug fixes. +
+ ++The key features of PHP 5.5.0 include: +
++Changes that affect compatibility: +
++For users upgrading from PHP 5.4, +a migration guide is available +detailing the changes between 5.4 and 5.5.0. +
+ ++ For a full list of changes in PHP 5.5.0, see the + ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_1.html b/data/releases/5.5/announcements/5_5_1.html new file mode 100644 index 0000000000..b1f44f5619 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_1.html @@ -0,0 +1,15 @@ ++The PHP development team is proud to announce the immediate availability +of PHP 5.5.1. +This release fixes several bugs. +
+ +The PHP development team announces the immediate availability of PHP +5.5.1. About 20 bugs were fixed, including a security fix in the XML parser (Bug #65236). +All users of PHP are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.5.1 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_10.html b/data/releases/5.5/announcements/5_5_10.html new file mode 100644 index 0000000000..0601549e81 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_10.html @@ -0,0 +1,12 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.10. +This release fixes several bugs against PHP 5.5.9, as well as CVE-2014-1943, CVE-2014-2270 +and CVE-2013-7327
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.10, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_11.html b/data/releases/5.5/announcements/5_5_11.html new file mode 100644 index 0000000000..a8fce684e2 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_11.html @@ -0,0 +1,11 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.11. +This release fixes several bugs against PHP 5.5.10, as well as CVE-2013-7345 regarding Fileinfo
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.11, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_12.html b/data/releases/5.5/announcements/5_5_12.html new file mode 100644 index 0000000000..692a0d257d --- /dev/null +++ b/data/releases/5.5/announcements/5_5_12.html @@ -0,0 +1,11 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.12. +This release fixes several bugs against PHP 5.5.11, as well as CVE-2014-0185 regarding PHP-FPM.
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.12, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_13.html b/data/releases/5.5/announcements/5_5_13.html new file mode 100644 index 0000000000..3b2d29c9cc --- /dev/null +++ b/data/releases/5.5/announcements/5_5_13.html @@ -0,0 +1,12 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.13. +This release fixes several bugs against PHP 5.5.12, and addresses several +CVEs in Fileinfo (CVE-2014-0238 and CVE-2014-0237).
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.13, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_14.html b/data/releases/5.5/announcements/5_5_14.html new file mode 100644 index 0000000000..12b8d46a4a --- /dev/null +++ b/data/releases/5.5/announcements/5_5_14.html @@ -0,0 +1,22 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.14. +This release fixes several bugs against PHP 5.5.13. +Also, this release fixes a total of 8 CVEs, half of them concerning the FileInfo +extension.
+ +All PHP users are encouraged to upgrade to this new version.
+ +Please, note that this release also fixes a backward compatibility issue that has been +detected in the PHP 5.5.13 release. Still, the fix in PHP 5.5.14 may break some very rare +situations. As this tiny compatibility break involves security, and as security is our primary +concern, we had to fix it. This concerns +bug 67072. For more information about +this bug and its actual resolution, please visit our +upgrading guide. +We apologize for any inconvenience you may have experienced with this behavior.
+ +For source downloads of PHP 5.5.14, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_15.html b/data/releases/5.5/announcements/5_5_15.html new file mode 100644 index 0000000000..49d96ad0b5 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_15.html @@ -0,0 +1,12 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.15. +This release fixes several bugs against PHP 5.5.14. +
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.15, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_16.html b/data/releases/5.5/announcements/5_5_16.html new file mode 100644 index 0000000000..fdb4c107c3 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_16.html @@ -0,0 +1,13 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.16. +This release fixes several bugs against PHP 5.5.15 and resolves CVE-2014-3538, CVE-2014-3587, +CVE-2014-2497, CVE-2014-5120 and CVE-2014-3597. +
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.16, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_17.html b/data/releases/5.5/announcements/5_5_17.html new file mode 100644 index 0000000000..6fd2e069f5 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_17.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.17. Several bugs were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.17 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_18.html b/data/releases/5.5/announcements/5_5_18.html new file mode 100644 index 0000000000..441d035714 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_18.html @@ -0,0 +1,14 @@ +The PHP development team announces the immediate availability of PHP + 5.5.18. Several bugs were fixed in this release. A regression in OpenSSL introduced in PHP 5.5.17 has + also been addressed in this release. + PHP 5.5.18 also fixes 4 CVEs in different components. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.18 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_19.html b/data/releases/5.5/announcements/5_5_19.html new file mode 100644 index 0000000000..dabcba75a1 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_19.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.19. This release fixes several bugs and one CVE in the fileinfo extension. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.19 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_2.html b/data/releases/5.5/announcements/5_5_2.html new file mode 100644 index 0000000000..b9d78b0ad5 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_2.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP +5.5.2. About 20 bugs were fixed, including security issue in OpenSSL module (CVE-2013-4248) and session fixation problem (CVE-2011-4718). +
+ +NOTE: Please do not use this release, due to the bug in the fix for CVE-2013-4248. This bug is fixed in +PHP 5.5.3.
+ +For source downloads of PHP 5.5.2 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_20.html b/data/releases/5.5/announcements/5_5_20.html new file mode 100644 index 0000000000..7569a696f3 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_20.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.20. This release fixes several bugs and one CVE related to unserialization. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.20 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_21.html b/data/releases/5.5/announcements/5_5_21.html new file mode 100644 index 0000000000..391a76468e --- /dev/null +++ b/data/releases/5.5/announcements/5_5_21.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.21. This release fixes several bugs as well as CVE-2015-0231, CVE-2014-9427 and CVE-2015-0232. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.21 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_22.html b/data/releases/5.5/announcements/5_5_22.html new file mode 100644 index 0000000000..6da412d9ba --- /dev/null +++ b/data/releases/5.5/announcements/5_5_22.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.22. This release fixes several bugs and addresses CVE-2015-0235 and CVE-2015-0273. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.22 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_23.html b/data/releases/5.5/announcements/5_5_23.html new file mode 100644 index 0000000000..180cd664bd --- /dev/null +++ b/data/releases/5.5/announcements/5_5_23.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.23. Several bugs have been fixed as well as CVE-2015-0231, CVE-2015-2305 and CVE-2015-2331. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.23 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_24.html b/data/releases/5.5/announcements/5_5_24.html new file mode 100644 index 0000000000..41210fc728 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_24.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.24. Several bugs have been fixed some of them beeing security related, like CVE-2015-1351 and CVE-2015-1352. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.24 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_25.html b/data/releases/5.5/announcements/5_5_25.html new file mode 100644 index 0000000000..45bba36bdc --- /dev/null +++ b/data/releases/5.5/announcements/5_5_25.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 5.5.25. Several bugs have been fixed. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.25 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. \ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_26.html b/data/releases/5.5/announcements/5_5_26.html new file mode 100644 index 0000000000..265da968f4 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_26.html @@ -0,0 +1,13 @@ +
The PHP development team announces the immediate availability of PHP + 5.5.26. Several bugs have been fixed as well as several security issues into some + bundled librairies (CVE-2015-3414, CVE-2015-3415, CVE-2015-3416, CVE-2015-2325 and CVE-2015-2326). + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.26 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_27.html b/data/releases/5.5/announcements/5_5_27.html new file mode 100644 index 0000000000..b82414b76d --- /dev/null +++ b/data/releases/5.5/announcements/5_5_27.html @@ -0,0 +1,18 @@ +The PHP development team announces the immediate availability of PHP + 5.5.27. Several bugs were fixed in this release as well as CVE-2015-3152. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ ++ According to our release calendar, this PHP 5.5 version + is the last planned release that contains regular bugfixes. All the consequent releases + will contain only security-relevant fixes, for the term of one year. + PHP 5.5 users that need further bugfixes are encouraged to upgrade to PHP 5.6. +
+ +For source downloads of PHP 5.5.27 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. \ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_28.html b/data/releases/5.5/announcements/5_5_28.html new file mode 100644 index 0000000000..ab982d77f7 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_28.html @@ -0,0 +1,19 @@ +
The PHP development team announces the immediate availability of PHP + 5.5.28. 12 security-related issues were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ ++ According to our release calendar, this PHP 5.5 version + is the first security release of the PHP 5.5 branch. This and all the following releases of this branch + do not contain bugfixes that are not considered relevant for security. + PHP 5.5 users that need further bugfixes are encouraged to upgrade to PHP 5.6. +
+ +For source downloads of PHP 5.5.28 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_29.html b/data/releases/5.5/announcements/5_5_29.html new file mode 100644 index 0000000000..6d77fd1a8d --- /dev/null +++ b/data/releases/5.5/announcements/5_5_29.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.29. This is a security release. Many security-related issues were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.29 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_3.html b/data/releases/5.5/announcements/5_5_3.html new file mode 100644 index 0000000000..6042debbd5 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_3.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 5.5.3. +This release fixes a bug in the patch for CVE-2013-4248 in OpenSSL module.
+ +All PHP users are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.5.3 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_30.html b/data/releases/5.5/announcements/5_5_30.html new file mode 100644 index 0000000000..25ed8cc913 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_30.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.30. This is a security release. Two security bugs were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.30 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_31.html b/data/releases/5.5/announcements/5_5_31.html new file mode 100644 index 0000000000..3cbb3535f2 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_31.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.31. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.31 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_32.html b/data/releases/5.5/announcements/5_5_32.html new file mode 100644 index 0000000000..003761d728 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_32.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.32. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.32 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_33.html b/data/releases/5.5/announcements/5_5_33.html new file mode 100644 index 0000000000..e75c370cb4 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_33.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.33. This is a security release. Two security bugs were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.33 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_34.html b/data/releases/5.5/announcements/5_5_34.html new file mode 100644 index 0000000000..3b5d6e3a20 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_34.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.34. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.34 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_35.html b/data/releases/5.5/announcements/5_5_35.html new file mode 100644 index 0000000000..588e8d62fa --- /dev/null +++ b/data/releases/5.5/announcements/5_5_35.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.35. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.35 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_36.html b/data/releases/5.5/announcements/5_5_36.html new file mode 100644 index 0000000000..460a72a092 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_36.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.36. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.36 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_37.html b/data/releases/5.5/announcements/5_5_37.html new file mode 100644 index 0000000000..a7091bbd02 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_37.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.5.37. This is a security release, several security bugs were fixed. + + All PHP 5.5 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.5.37 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_38.html b/data/releases/5.5/announcements/5_5_38.html new file mode 100644 index 0000000000..8a39fd1a79 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_38.html @@ -0,0 +1,15 @@ ++ The PHP development team announces the immediate availability of PHP 5.5.38. This is a security release that fixes + some security related bugs. +
+ +All PHP 5.5 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 5.5.38 please visit our downloads page, Windows source and binaries can be found on windows.php.net/download/. The list of changes is recorded in the ChangeLog.
+ ++ Note that according to our release schedule, PHP 5.5.38 is the last release of the PHP 5.5 branch. + There may be additional release if we discover important security issues that warrant it, otherwise this release will be the final one in the PHP 5.5 branch. If your PHP installation is based on PHP 5.5, it may be a good time to start making the plans for the upgrade to PHP 5.6 or PHP 7.0. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_4.html b/data/releases/5.5/announcements/5_5_4.html new file mode 100644 index 0000000000..ea74c1ebbf --- /dev/null +++ b/data/releases/5.5/announcements/5_5_4.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 5.5.4. +This release fixes several bugs against PHP 5.5.3.
+ +All PHP users are encouraged to upgrade to this release.
+ +For source downloads of PHP 5.5.4 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_5.html b/data/releases/5.5/announcements/5_5_5.html new file mode 100644 index 0000000000..3d21b71396 --- /dev/null +++ b/data/releases/5.5/announcements/5_5_5.html @@ -0,0 +1,11 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.5. +This release fixes about twenty bugs against PHP 5.5.4, some of them regarding the build system.
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.5, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_6.html b/data/releases/5.5/announcements/5_5_6.html new file mode 100644 index 0000000000..361ab3929d --- /dev/null +++ b/data/releases/5.5/announcements/5_5_6.html @@ -0,0 +1,11 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.6. +This release fixes some bugs against PHP 5.5.5, and adds some performance improvements.
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.6, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_7.html b/data/releases/5.5/announcements/5_5_7.html new file mode 100644 index 0000000000..6b871b416b --- /dev/null +++ b/data/releases/5.5/announcements/5_5_7.html @@ -0,0 +1,11 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.7. +This release fixes some bugs against PHP 5.5.6, and fixes CVE-2013-6420.
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.7, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_8.html b/data/releases/5.5/announcements/5_5_8.html new file mode 100644 index 0000000000..8da5be666c --- /dev/null +++ b/data/releases/5.5/announcements/5_5_8.html @@ -0,0 +1,11 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.8. +This release fixes about 20 bugs against PHP 5.5.7.
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.8, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.5/announcements/5_5_9.html b/data/releases/5.5/announcements/5_5_9.html new file mode 100644 index 0000000000..496b9bc1fb --- /dev/null +++ b/data/releases/5.5/announcements/5_5_9.html @@ -0,0 +1,11 @@ +The PHP Development Team announces the immediate availability of PHP 5.5.9. +This release fixes several bugs against PHP 5.5.8.
+ +All PHP users are encouraged to upgrade to this new version.
+ +For source downloads of PHP 5.5.9, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_0.html b/data/releases/5.6/announcements/5_6_0.html new file mode 100644 index 0000000000..55a48312d1 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_0.html @@ -0,0 +1,40 @@ +The PHP Development Team announces the immediate availability of PHP 5.6.0. +This new version comes with new features, some backward incompatible changes and many improvements. +
+ +The main features of PHP 5.6.0 include:
+... operator.** operator.$HTTP_RAW_POST_DATA is deprecated.For a full list of new features, you may read the new features chapter of the migration guide.
+ ++PHP 5.6.0 also introduces changes that affect compatibility: +
+ ++ For users upgrading from PHP 5.5, a full migration guide is available, detailing the changes between 5.5 and 5.6.0. +
+ +For source downloads of PHP 5.6.0, please visit our downloads page. +Windows binaries can be found on windows.php.net/download/. +The full list of changes is available in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_1.html b/data/releases/5.6/announcements/5_6_1.html new file mode 100644 index 0000000000..135e3881b7 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_1.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.1. Several bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.1 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_10.html b/data/releases/5.6/announcements/5_6_10.html new file mode 100644 index 0000000000..5d436f81a8 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_10.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.10. Several bugs have been fixed as well as several security issues into some + bundled librairies (CVE-2015-3414, CVE-2015-3415, CVE-2015-3416, CVE-2015-2325 and CVE-2015-2326). + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.10 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_11.html b/data/releases/5.6/announcements/5_6_11.html new file mode 100644 index 0000000000..19d83ea2b0 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_11.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +5.6.11. Five security-related issues in PHP were fixed in this release, including CVE-2015-3152. +All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.11 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_12.html b/data/releases/5.6/announcements/5_6_12.html new file mode 100644 index 0000000000..7c331c882e --- /dev/null +++ b/data/releases/5.6/announcements/5_6_12.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.12. 12 security-related issues were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.12 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_13.html b/data/releases/5.6/announcements/5_6_13.html new file mode 100644 index 0000000000..9208d09b27 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_13.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.13. 11 security-related issues were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.13 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_14.html b/data/releases/5.6/announcements/5_6_14.html new file mode 100644 index 0000000000..de56e3bd3f --- /dev/null +++ b/data/releases/5.6/announcements/5_6_14.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.14. This is a security release. Two security bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.14 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_15.html b/data/releases/5.6/announcements/5_6_15.html new file mode 100644 index 0000000000..382db3562a --- /dev/null +++ b/data/releases/5.6/announcements/5_6_15.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.15. Several bugs have been fixed. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.15 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_16.html b/data/releases/5.6/announcements/5_6_16.html new file mode 100644 index 0000000000..a81033df90 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_16.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.16. Several bugs have been fixed. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.16 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_17.html b/data/releases/5.6/announcements/5_6_17.html new file mode 100644 index 0000000000..835b7485bf --- /dev/null +++ b/data/releases/5.6/announcements/5_6_17.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.17. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.17 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_18.html b/data/releases/5.6/announcements/5_6_18.html new file mode 100644 index 0000000000..5c253375f4 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_18.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.18. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.18 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_19.html b/data/releases/5.6/announcements/5_6_19.html new file mode 100644 index 0000000000..7c8a1efd4a --- /dev/null +++ b/data/releases/5.6/announcements/5_6_19.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.19. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.19 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_2.html b/data/releases/5.6/announcements/5_6_2.html new file mode 100644 index 0000000000..9daf28ed35 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_2.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 5.6.2. +Four security-related bugs were fixed in this release, including fixes for CVE-2014-3668, CVE-2014-3669 and CVE-2014-3670. +All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.2 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_20.html b/data/releases/5.6/announcements/5_6_20.html new file mode 100644 index 0000000000..398945bba9 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_20.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.20. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.20 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_21.html b/data/releases/5.6/announcements/5_6_21.html new file mode 100644 index 0000000000..6956add08a --- /dev/null +++ b/data/releases/5.6/announcements/5_6_21.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.21. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.21 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_22.html b/data/releases/5.6/announcements/5_6_22.html new file mode 100644 index 0000000000..ab492a4b13 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_22.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.22. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.22 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_23.html b/data/releases/5.6/announcements/5_6_23.html new file mode 100644 index 0000000000..8f14a346ee --- /dev/null +++ b/data/releases/5.6/announcements/5_6_23.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.23. Several bugs were fixed in this release, including security-related ones. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.23 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_24.html b/data/releases/5.6/announcements/5_6_24.html new file mode 100644 index 0000000000..a027624f77 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_24.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.24. This is a security release. Several security bugs were fixed in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.24 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_25.html b/data/releases/5.6/announcements/5_6_25.html new file mode 100644 index 0000000000..415dd43b02 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_25.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.25. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.25 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_26.html b/data/releases/5.6/announcements/5_6_26.html new file mode 100644 index 0000000000..4ffbc42aa1 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_26.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.26. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.26 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_27.html b/data/releases/5.6/announcements/5_6_27.html new file mode 100644 index 0000000000..202e6608f4 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_27.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.27. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.27 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_28.html b/data/releases/5.6/announcements/5_6_28.html new file mode 100644 index 0000000000..a981ab846c --- /dev/null +++ b/data/releases/5.6/announcements/5_6_28.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.28. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.28 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_29.html b/data/releases/5.6/announcements/5_6_29.html new file mode 100644 index 0000000000..779fd57d51 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_29.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.29. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.29 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_3.html b/data/releases/5.6/announcements/5_6_3.html new file mode 100644 index 0000000000..378006138b --- /dev/null +++ b/data/releases/5.6/announcements/5_6_3.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 5.6.3. +This release fixes several bugs and one CVE in the fileinfo extension. +All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.3 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_30.html b/data/releases/5.6/announcements/5_6_30.html new file mode 100644 index 0000000000..5a3ed9d35a --- /dev/null +++ b/data/releases/5.6/announcements/5_6_30.html @@ -0,0 +1,20 @@ +The PHP development team announces the immediate availability of PHP + 5.6.30. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ ++ According to our release calendar, this PHP 5.6 version + is the last planned release that contains regular bugfixes. All the consequent releases + will contain only security-relevant fixes, for the term of two years. + PHP 5.6 users that need further bugfixes are encouraged to upgrade to PHP 7. +
+ +For source downloads of PHP 5.6.30 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_31.html b/data/releases/5.6/announcements/5_6_31.html new file mode 100644 index 0000000000..dab750f8d0 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_31.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.31. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.31 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_32.html b/data/releases/5.6/announcements/5_6_32.html new file mode 100644 index 0000000000..ca934319ec --- /dev/null +++ b/data/releases/5.6/announcements/5_6_32.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.32. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.32 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_33.html b/data/releases/5.6/announcements/5_6_33.html new file mode 100644 index 0000000000..ad5fb307a2 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_33.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.33. This is a security release. Several security bugs were fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.33 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_34.html b/data/releases/5.6/announcements/5_6_34.html new file mode 100644 index 0000000000..c5d5dffef4 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_34.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.34. This is a security release. One security bug was fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.34 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_35.html b/data/releases/5.6/announcements/5_6_35.html new file mode 100644 index 0000000000..77b9ff1a19 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_35.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.35. This is a security release. One security bug was fixed in + this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.35 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_36.html b/data/releases/5.6/announcements/5_6_36.html new file mode 100644 index 0000000000..20cbd94c98 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_36.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.36. This is a security release. Several security bugs have been fixed + in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.36 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_37.html b/data/releases/5.6/announcements/5_6_37.html new file mode 100644 index 0000000000..3a01768d01 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_37.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.37. This is a security release. Several security bugs have been fixed + in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.37 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_38.html b/data/releases/5.6/announcements/5_6_38.html new file mode 100644 index 0000000000..3081b54a9c --- /dev/null +++ b/data/releases/5.6/announcements/5_6_38.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 5.6.38. This is a security release. One security bug has been fixed + in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.38 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_39.html b/data/releases/5.6/announcements/5_6_39.html new file mode 100644 index 0000000000..4f05f2ebbf --- /dev/null +++ b/data/releases/5.6/announcements/5_6_39.html @@ -0,0 +1,24 @@ +The PHP development team announces the immediate availability of PHP + 5.6.39. This is a security release. Several security bugs have been fixed + in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.39 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
+ +Please note that according to the PHP version +support timelines, + PHP 5.6.39 is the last scheduled release of PHP 5.6 branch. There may be additional release if we +discover + important security issues that warrant it, otherwise this release will be the final one in the PHP +5.6 branch. + If your PHP installation is based on PHP 5.6, it may be a good time to start making the plans for +the upgrade + to PHP 7.1, PHP 7.2 or PHP 7.3. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_4.html b/data/releases/5.6/announcements/5_6_4.html new file mode 100644 index 0000000000..9777f15400 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_4.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.4. This release fixes several bugs and one CVE related to unserialization. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.4 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_40.html b/data/releases/5.6/announcements/5_6_40.html new file mode 100644 index 0000000000..8510eef515 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_40.html @@ -0,0 +1,24 @@ +The PHP development team announces the immediate availability of PHP + 5.6.40. This is a security release. Several security bugs have been fixed + in this release. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.40 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
+ +Please note that according to the PHP version +support timelines, + PHP 5.6.40 is the last scheduled release of PHP 5.6 branch. There may be additional release if we +discover + important security issues that warrant it, otherwise this release will be the final one in the PHP +5.6 branch. + If your PHP installation is based on PHP 5.6, it may be a good time to start making the plans for +the upgrade + to PHP 7.1, PHP 7.2 or PHP 7.3. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_5.html b/data/releases/5.6/announcements/5_6_5.html new file mode 100644 index 0000000000..942ff580ab --- /dev/null +++ b/data/releases/5.6/announcements/5_6_5.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.5. This release fixes several bugs as well as CVE-2015-0231, CVE-2014-9427 and CVE-2015-0232. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.5 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_6.html b/data/releases/5.6/announcements/5_6_6.html new file mode 100644 index 0000000000..9930db52c0 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_6.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.6. This release fixes several bugs and addresses CVE-2015-0235 and CVE-2015-0273. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.6 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_7.html b/data/releases/5.6/announcements/5_6_7.html new file mode 100644 index 0000000000..3a8ae00bd6 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_7.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.7. Several bugs have been fixed as well as CVE-2015-0231, CVE-2015-2305 and CVE-2015-2331. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.7 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_8.html b/data/releases/5.6/announcements/5_6_8.html new file mode 100644 index 0000000000..e38408ca5d --- /dev/null +++ b/data/releases/5.6/announcements/5_6_8.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.8. Several bugs have been fixed some of them beeing security related, like CVE-2015-1351 and CVE-2015-1352. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.8 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/5.6/announcements/5_6_9.html b/data/releases/5.6/announcements/5_6_9.html new file mode 100644 index 0000000000..34696b8c50 --- /dev/null +++ b/data/releases/5.6/announcements/5_6_9.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 5.6.9. Several bugs have been fixed. + + All PHP 5.6 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 5.6.9 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_0.html b/data/releases/7.0/announcements/7_0_0.html new file mode 100644 index 0000000000..8ff59d867f --- /dev/null +++ b/data/releases/7.0/announcements/7_0_0.html @@ -0,0 +1,49 @@ +The PHP development team announces the immediate availability of PHP + 7.0.0. This release marks the start of the new major PHP 7 series. +
++ PHP 7.0.0 comes with a new version of the Zend Engine, numerous improvements + and new features such as +
+For source downloads of PHP 7.0.0 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
++ The migration guide is available in the PHP Manual. Please consult + it for the detailed list of new features and backward incompatible changes. +
+ ++ The inconvenience of the release lateness in several time zones is caused by the need to ensure the + compatibility with the latest OpenSSL 1.0.2e release. Thanks for the patience! +
+ ++ It is not just a next major PHP version being released today. + The release being introduced is an outcome of the almost two years development + journey. It is a very special accomplishment of the core team. And, it is a + result of incredible efforts of many active community members. + Indeed, it is not just a final release being brought out today, it is the rise of + a new PHP generation with an enormous potential. +
+ +Congratulations everyone to this spectacular day for the PHP world!
+Grateful thanks to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_1.html b/data/releases/7.0/announcements/7_0_1.html new file mode 100644 index 0000000000..ae62b69e15 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_1.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.1. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.1 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_10.html b/data/releases/7.0/announcements/7_0_10.html new file mode 100644 index 0000000000..a20e938d14 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_10.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.10. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.10 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_11.html b/data/releases/7.0/announcements/7_0_11.html new file mode 100644 index 0000000000..65e6ce73f7 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_11.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.11. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.11 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_12.html b/data/releases/7.0/announcements/7_0_12.html new file mode 100644 index 0000000000..5d03d345f6 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_12.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.12. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.12 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_13.html b/data/releases/7.0/announcements/7_0_13.html new file mode 100644 index 0000000000..9ed274e181 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_13.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.13. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.13 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_14.html b/data/releases/7.0/announcements/7_0_14.html new file mode 100644 index 0000000000..b6618a8aaa --- /dev/null +++ b/data/releases/7.0/announcements/7_0_14.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.14. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.14 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_15.html b/data/releases/7.0/announcements/7_0_15.html new file mode 100644 index 0000000000..ec5b5501e3 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_15.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.15. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.15 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_16.html b/data/releases/7.0/announcements/7_0_16.html new file mode 100644 index 0000000000..88f638dcaf --- /dev/null +++ b/data/releases/7.0/announcements/7_0_16.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.16. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.16 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_17.html b/data/releases/7.0/announcements/7_0_17.html new file mode 100644 index 0000000000..be237033d1 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_17.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.17. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.17 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_18.html b/data/releases/7.0/announcements/7_0_18.html new file mode 100644 index 0000000000..abfa1af456 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_18.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.18. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.18 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_19.html b/data/releases/7.0/announcements/7_0_19.html new file mode 100644 index 0000000000..63efb2f23f --- /dev/null +++ b/data/releases/7.0/announcements/7_0_19.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.19. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.19 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_2.html b/data/releases/7.0/announcements/7_0_2.html new file mode 100644 index 0000000000..9f7b0c71dd --- /dev/null +++ b/data/releases/7.0/announcements/7_0_2.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.2. 31 reported bugs has been fixed, including 6 security related issues. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.2 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_20.html b/data/releases/7.0/announcements/7_0_20.html new file mode 100644 index 0000000000..f27d28779b --- /dev/null +++ b/data/releases/7.0/announcements/7_0_20.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.20. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.20 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_21.html b/data/releases/7.0/announcements/7_0_21.html new file mode 100644 index 0000000000..6e46b76e2a --- /dev/null +++ b/data/releases/7.0/announcements/7_0_21.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.21. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.21 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_22.html b/data/releases/7.0/announcements/7_0_22.html new file mode 100644 index 0000000000..7a47e27d25 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_22.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.22. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.22 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_23.html b/data/releases/7.0/announcements/7_0_23.html new file mode 100644 index 0000000000..bee1800e32 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_23.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.23. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.23 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_24.html b/data/releases/7.0/announcements/7_0_24.html new file mode 100644 index 0000000000..acedc1bf53 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_24.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.24. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.24 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_25.html b/data/releases/7.0/announcements/7_0_25.html new file mode 100644 index 0000000000..6930d77910 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_25.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.25. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.25 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_26.html b/data/releases/7.0/announcements/7_0_26.html new file mode 100644 index 0000000000..3e5ac2bd36 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_26.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.0.26. Several bugs have been fixed. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.26 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_27.html b/data/releases/7.0/announcements/7_0_27.html new file mode 100644 index 0000000000..65b56dee4e --- /dev/null +++ b/data/releases/7.0/announcements/7_0_27.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.27. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.27 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_28.html b/data/releases/7.0/announcements/7_0_28.html new file mode 100644 index 0000000000..0acd4adfaf --- /dev/null +++ b/data/releases/7.0/announcements/7_0_28.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.28. This is a security release. One security bug was fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.28 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_29.html b/data/releases/7.0/announcements/7_0_29.html new file mode 100644 index 0000000000..a7af2c9158 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_29.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.29. This is a security release. One security bug was fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.29 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_3.html b/data/releases/7.0/announcements/7_0_3.html new file mode 100644 index 0000000000..2feca8cb50 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_3.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.3. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.3 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_30.html b/data/releases/7.0/announcements/7_0_30.html new file mode 100644 index 0000000000..04ae63b882 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_30.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.30. This is a security release. Several security bugs have been fixed + in this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.30 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_31.html b/data/releases/7.0/announcements/7_0_31.html new file mode 100644 index 0000000000..e4617570e8 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_31.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.31. This is a security release. Several security bugs have been fixed + in this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.31 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_32.html b/data/releases/7.0/announcements/7_0_32.html new file mode 100644 index 0000000000..b3274da38f --- /dev/null +++ b/data/releases/7.0/announcements/7_0_32.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.32. This is a security release. One security bug has been fixed + in this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.32 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_33.html b/data/releases/7.0/announcements/7_0_33.html new file mode 100644 index 0000000000..7a581a3fec --- /dev/null +++ b/data/releases/7.0/announcements/7_0_33.html @@ -0,0 +1,18 @@ +The PHP development team announces the immediate availability of PHP +7.0.33. Five security-related issues were fixed in this release. +All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.33 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
+ +Please note that according to the PHP version support timelines, +PHP 7.0.33 is the last scheduled release of PHP 7.0 branch. There may be additional release if we discover +important security issues that warrant it, otherwise this release will be the final one in the PHP 7.0 branch. +If your PHP installation is based on PHP 7.0, it may be a good time to start making the plans for the upgrade +to PHP 7.1, PHP 7.2 or PHP 7.3. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_4.html b/data/releases/7.0/announcements/7_0_4.html new file mode 100644 index 0000000000..3d4aab6ec9 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_4.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.4. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.4 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_5.html b/data/releases/7.0/announcements/7_0_5.html new file mode 100644 index 0000000000..13d68e055a --- /dev/null +++ b/data/releases/7.0/announcements/7_0_5.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.5. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.5 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_6.html b/data/releases/7.0/announcements/7_0_6.html new file mode 100644 index 0000000000..5895bc29af --- /dev/null +++ b/data/releases/7.0/announcements/7_0_6.html @@ -0,0 +1,17 @@ +The PHP development team announces the immediate availability of PHP + 7.0.6. This is a security release. Several security bugs were fixed in + this release, including
++ All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.6 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_7.html b/data/releases/7.0/announcements/7_0_7.html new file mode 100644 index 0000000000..20aec92727 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_7.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.7. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.7 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_8.html b/data/releases/7.0/announcements/7_0_8.html new file mode 100644 index 0000000000..efaa8d5307 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_8.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.8. This is a security release. Several security bugs were fixed in + this release. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.8 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.0/announcements/7_0_9.html b/data/releases/7.0/announcements/7_0_9.html new file mode 100644 index 0000000000..60a8f59b06 --- /dev/null +++ b/data/releases/7.0/announcements/7_0_9.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.0.9. This is a security release. Several security bugs were fixed in + this release, including the HTTP_PROXY issue. + + All PHP 7.0 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.0.9 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_0.html b/data/releases/7.1/announcements/7_1_0.html new file mode 100644 index 0000000000..7fce872b1b --- /dev/null +++ b/data/releases/7.1/announcements/7_1_0.html @@ -0,0 +1,21 @@ +The PHP development team announces the immediate availability of PHP 7.1.0. This release is the first point release in the 7.x series.
+ +PHP 7.1.0 comes with numerous improvements and new features such as
+ +list() and the ability to specify keys in list()For source downloads of PHP 7.1.0 please visit our downloads page, Windows binaries can be found on the PHP for Windows site. The list of changes is recorded in the ChangeLog.
+ +The migration guide is available in the PHP Manual. Please consult it for the detailed list of new features and backward incompatible changes.
+ +Many thanks to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_1.html b/data/releases/7.1/announcements/7_1_1.html new file mode 100644 index 0000000000..9af18e4a9e --- /dev/null +++ b/data/releases/7.1/announcements/7_1_1.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.1. Several bugs have been fixed. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.1 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_10.html b/data/releases/7.1/announcements/7_1_10.html new file mode 100644 index 0000000000..4738041eef --- /dev/null +++ b/data/releases/7.1/announcements/7_1_10.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.10. This is a bugfix release, with several bug fixes included. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.10 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_11.html b/data/releases/7.1/announcements/7_1_11.html new file mode 100644 index 0000000000..35e9bbeca0 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_11.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.11. This is a bugfix release, with several bug fixes included. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.11 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_12.html b/data/releases/7.1/announcements/7_1_12.html new file mode 100644 index 0000000000..18407571b5 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_12.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.12. This is a bugfix release, with several bug fixes included. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.12 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_13.html b/data/releases/7.1/announcements/7_1_13.html new file mode 100644 index 0000000000..6e9bf8d9d0 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_13.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.13. This is a bugfix release, with several bug fixes included. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.13 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_14.html b/data/releases/7.1/announcements/7_1_14.html new file mode 100644 index 0000000000..1a6802b403 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_14.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.14. This is a bugfix release, with several bug fixes included. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.14 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_15.html b/data/releases/7.1/announcements/7_1_15.html new file mode 100644 index 0000000000..b206300f65 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_15.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.15. This is a security fix release, containing one security fix and many bug fixes. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.15 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_16.html b/data/releases/7.1/announcements/7_1_16.html new file mode 100644 index 0000000000..df065c49a9 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_16.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.16. This is a security fix release, containing one security fix and many bug fixes. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.16 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_17.html b/data/releases/7.1/announcements/7_1_17.html new file mode 100644 index 0000000000..0ffd6d14e0 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_17.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.17. This is a security fix release, containing many bugfixes. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.17 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_18.html b/data/releases/7.1/announcements/7_1_18.html new file mode 100644 index 0000000000..a8f1f37741 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_18.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.18. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.18 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_19.html b/data/releases/7.1/announcements/7_1_19.html new file mode 100644 index 0000000000..a8fbe91733 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_19.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.19. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.19 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_2.html b/data/releases/7.1/announcements/7_1_2.html new file mode 100644 index 0000000000..5244f0b2e7 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_2.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.2. Several bugs have been fixed. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.2 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_20.html b/data/releases/7.1/announcements/7_1_20.html new file mode 100644 index 0000000000..1047746cbe --- /dev/null +++ b/data/releases/7.1/announcements/7_1_20.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP + 7.1.20. This is a security release. Several security bugs have been fixed + in this release. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.20 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_21.html b/data/releases/7.1/announcements/7_1_21.html new file mode 100644 index 0000000000..7c96ba14e1 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_21.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.21. This is a bugfix release. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.21 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_22.html b/data/releases/7.1/announcements/7_1_22.html new file mode 100644 index 0000000000..26629105bd --- /dev/null +++ b/data/releases/7.1/announcements/7_1_22.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.22. This is a security release. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.22 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_23.html b/data/releases/7.1/announcements/7_1_23.html new file mode 100644 index 0000000000..b97e3f3898 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_23.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.1.23. +This is a bugfix release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.23 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_24.html b/data/releases/7.1/announcements/7_1_24.html new file mode 100644 index 0000000000..8e601268bc --- /dev/null +++ b/data/releases/7.1/announcements/7_1_24.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.1.24. +This is a bugfix release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.24 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_25.html b/data/releases/7.1/announcements/7_1_25.html new file mode 100644 index 0000000000..a0b542bd75 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_25.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.1.25. +This is a security release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.25 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_26.html b/data/releases/7.1/announcements/7_1_26.html new file mode 100644 index 0000000000..48638f70aa --- /dev/null +++ b/data/releases/7.1/announcements/7_1_26.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.1.26. This is a security release which also contains several bug fixes.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.26 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_27.html b/data/releases/7.1/announcements/7_1_27.html new file mode 100644 index 0000000000..6b5cc47292 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_27.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.1.27. This is a security release which also contains several bug fixes.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.27 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_28.html b/data/releases/7.1/announcements/7_1_28.html new file mode 100644 index 0000000000..564f47b7bc --- /dev/null +++ b/data/releases/7.1/announcements/7_1_28.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.1.28. This is a security release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.28 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_29.html b/data/releases/7.1/announcements/7_1_29.html new file mode 100644 index 0000000000..3a3c29d8b3 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_29.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.1.29. This is a security release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.29 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_3.html b/data/releases/7.1/announcements/7_1_3.html new file mode 100644 index 0000000000..bae45c7e97 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_3.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.3. Several bugs have been fixed. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.3 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_30.html b/data/releases/7.1/announcements/7_1_30.html new file mode 100644 index 0000000000..135ea2e38a --- /dev/null +++ b/data/releases/7.1/announcements/7_1_30.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.1.30. This is a security release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.30 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_31.html b/data/releases/7.1/announcements/7_1_31.html new file mode 100644 index 0000000000..f7b9f07963 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_31.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.1.31. This is a security release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.31 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_32.html b/data/releases/7.1/announcements/7_1_32.html new file mode 100644 index 0000000000..d7604aef2b --- /dev/null +++ b/data/releases/7.1/announcements/7_1_32.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.1.32. This is a security release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.32 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_33.html b/data/releases/7.1/announcements/7_1_33.html new file mode 100644 index 0000000000..2f42775166 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_33.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.1.33. This is a security release.
+ +All PHP 7.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.1.33 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_4.html b/data/releases/7.1/announcements/7_1_4.html new file mode 100644 index 0000000000..8e910779f8 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_4.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.4. Several bugs have been fixed. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.4 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_5.html b/data/releases/7.1/announcements/7_1_5.html new file mode 100644 index 0000000000..6b24ae9128 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_5.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.5. Several bugs have been fixed. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.5 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_6.html b/data/releases/7.1/announcements/7_1_6.html new file mode 100644 index 0000000000..a2116d01ba --- /dev/null +++ b/data/releases/7.1/announcements/7_1_6.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.6. Several bugs have been fixed. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.6 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_7.html b/data/releases/7.1/announcements/7_1_7.html new file mode 100644 index 0000000000..8d713189f8 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_7.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.7. This is a security release with several bug fixes included. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.7 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_8.html b/data/releases/7.1/announcements/7_1_8.html new file mode 100644 index 0000000000..c4aae8d3a6 --- /dev/null +++ b/data/releases/7.1/announcements/7_1_8.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.8. This is a bugfix release, with several bug fixes included. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.8 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.1/announcements/7_1_9.html b/data/releases/7.1/announcements/7_1_9.html new file mode 100644 index 0000000000..cc2fef9b4f --- /dev/null +++ b/data/releases/7.1/announcements/7_1_9.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP + 7.1.9. This is a bugfix release, with several bug fixes included. + + All PHP 7.1 users are encouraged to upgrade to this version. +
+ +For source downloads of PHP 7.1.9 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_0.html b/data/releases/7.2/announcements/7_2_0.html new file mode 100644 index 0000000000..dbf13fa6a7 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_0.html @@ -0,0 +1,26 @@ +The PHP development team announces the immediate availability of PHP 7.2.0. + This release marks the second feature update to the PHP 7 series.
+ +PHP 7.2.0 comes with numerous improvements and new features such as
+ +For source downloads of PHP 7.2.0 please visit our downloads page + Windows binaries can be found on the PHP for Windows site. + The list of changes is recorded in the ChangeLog.
+ +The migration guide is available in the PHP Manual. + Please consult it for the detailed list of new features and backward incompatible changes.
+ +Many thanks to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_1.html b/data/releases/7.2/announcements/7_2_1.html new file mode 100644 index 0000000000..3aed6761ec --- /dev/null +++ b/data/releases/7.2/announcements/7_2_1.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.2.1. This is a bugfix release, with several bug fixes included.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.1 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_10.html b/data/releases/7.2/announcements/7_2_10.html new file mode 100644 index 0000000000..df4a4c7e4d --- /dev/null +++ b/data/releases/7.2/announcements/7_2_10.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.10. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.10 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_11.html b/data/releases/7.2/announcements/7_2_11.html new file mode 100644 index 0000000000..5632157719 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_11.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.11. +This is a bugfix release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.11 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_12.html b/data/releases/7.2/announcements/7_2_12.html new file mode 100644 index 0000000000..63135a44f5 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_12.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.12. +This is a bugfix release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.12 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_13.html b/data/releases/7.2/announcements/7_2_13.html new file mode 100644 index 0000000000..2f5f7594f3 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_13.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.13. +This is a security release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.13 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_14.html b/data/releases/7.2/announcements/7_2_14.html new file mode 100644 index 0000000000..30abb7bd0a --- /dev/null +++ b/data/releases/7.2/announcements/7_2_14.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.14. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.14 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_15.html b/data/releases/7.2/announcements/7_2_15.html new file mode 100644 index 0000000000..645f1e3675 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_15.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.15. +This is a bugfix release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.15 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_16.html b/data/releases/7.2/announcements/7_2_16.html new file mode 100644 index 0000000000..0576a0cbb0 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_16.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.16. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.16 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_17.html b/data/releases/7.2/announcements/7_2_17.html new file mode 100644 index 0000000000..e1aab8453f --- /dev/null +++ b/data/releases/7.2/announcements/7_2_17.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.17. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.17 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_18.html b/data/releases/7.2/announcements/7_2_18.html new file mode 100644 index 0000000000..2b24af637d --- /dev/null +++ b/data/releases/7.2/announcements/7_2_18.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.18. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.18 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_19.html b/data/releases/7.2/announcements/7_2_19.html new file mode 100644 index 0000000000..b0899aa907 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_19.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.19. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.19 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_2.html b/data/releases/7.2/announcements/7_2_2.html new file mode 100644 index 0000000000..8990ffc15c --- /dev/null +++ b/data/releases/7.2/announcements/7_2_2.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.2.2. This is a bugfix release, with several bug fixes included.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.2 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_20.html b/data/releases/7.2/announcements/7_2_20.html new file mode 100644 index 0000000000..0bc3582187 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_20.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.20. +This is a bugfix release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.20 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_21.html b/data/releases/7.2/announcements/7_2_21.html new file mode 100644 index 0000000000..3fe611ba3d --- /dev/null +++ b/data/releases/7.2/announcements/7_2_21.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.21. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.21 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_22.html b/data/releases/7.2/announcements/7_2_22.html new file mode 100644 index 0000000000..7259b06b28 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_22.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.2.22. This is a security release which also contains several bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.22 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_23.html b/data/releases/7.2/announcements/7_2_23.html new file mode 100644 index 0000000000..cb4ba421e4 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_23.html @@ -0,0 +1,9 @@ +The PHP development team announces the immediate availability of PHP + 7.2.23. This is a bugfix release.
+ +For source downloads of PHP 7.2.23 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_24.html b/data/releases/7.2/announcements/7_2_24.html new file mode 100644 index 0000000000..1b13003c13 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_24.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.24. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.24 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_25.html b/data/releases/7.2/announcements/7_2_25.html new file mode 100644 index 0000000000..10af2db847 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_25.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.2.25. This is a bug fix release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.25 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_26.html b/data/releases/7.2/announcements/7_2_26.html new file mode 100644 index 0000000000..545f6c7a6e --- /dev/null +++ b/data/releases/7.2/announcements/7_2_26.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.26. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.26 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_27.html b/data/releases/7.2/announcements/7_2_27.html new file mode 100644 index 0000000000..4066ad227b --- /dev/null +++ b/data/releases/7.2/announcements/7_2_27.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.27. +This is a security release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.27 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_28.html b/data/releases/7.2/announcements/7_2_28.html new file mode 100644 index 0000000000..09ba1dd1e5 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_28.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.28. +This is a security release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.28 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_29.html b/data/releases/7.2/announcements/7_2_29.html new file mode 100644 index 0000000000..c9ed65dbc2 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_29.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.29. +This is a security release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.29 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_3.html b/data/releases/7.2/announcements/7_2_3.html new file mode 100644 index 0000000000..e959bfe1bc --- /dev/null +++ b/data/releases/7.2/announcements/7_2_3.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +7.2.3. This is a security release with also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.3 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_30.html b/data/releases/7.2/announcements/7_2_30.html new file mode 100644 index 0000000000..21329e4fa8 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_30.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.30. +This is a security release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.30 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_31.html b/data/releases/7.2/announcements/7_2_31.html new file mode 100644 index 0000000000..932e1a2e71 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_31.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.31. +This is a security release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.31 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_32.html b/data/releases/7.2/announcements/7_2_32.html new file mode 100644 index 0000000000..40319113e8 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_32.html @@ -0,0 +1,24 @@ ++ The PHP development team announces the immediate availability of PHP 7.2.32. + This is a security release impacting the + official Windows builds of PHP. +
+ ++ For windows users running an official build, this release contains a + patched version of libcurl addressing + CVE-2020-8169. +
+ ++ For all other consumers of PHP, this release is functionally identical + to PHP 7.2.31 and no upgrade from that point release is necessary. +
+ ++ For source downloads of PHP 7.2.32 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_33.html b/data/releases/7.2/announcements/7_2_33.html new file mode 100644 index 0000000000..15ba7b4705 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_33.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.33. +This is a security release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.33 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_34.html b/data/releases/7.2/announcements/7_2_34.html new file mode 100644 index 0000000000..b33c431ae5 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_34.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.2.34. This is a security release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.34 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_4.html b/data/releases/7.2/announcements/7_2_4.html new file mode 100644 index 0000000000..2fa69c0054 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_4.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.4. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.4 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_5.html b/data/releases/7.2/announcements/7_2_5.html new file mode 100644 index 0000000000..26bc2224cc --- /dev/null +++ b/data/releases/7.2/announcements/7_2_5.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.5. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.5 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_6.html b/data/releases/7.2/announcements/7_2_6.html new file mode 100644 index 0000000000..d608bce543 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_6.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.6. +This is a primarily a bugfix release which includes a memory corruption fix for EXIF.
+ +PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.6 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_7.html b/data/releases/7.2/announcements/7_2_7.html new file mode 100644 index 0000000000..451e98675b --- /dev/null +++ b/data/releases/7.2/announcements/7_2_7.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.7. +This is a primarily a bugfix release which includes a segfault fix for opcache.
+ +PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.7 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_8.html b/data/releases/7.2/announcements/7_2_8.html new file mode 100644 index 0000000000..9318838e91 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_8.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.8. +This is a security release which also contains several minor bug fixes.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.8 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.2/announcements/7_2_9.html b/data/releases/7.2/announcements/7_2_9.html new file mode 100644 index 0000000000..338411c0c4 --- /dev/null +++ b/data/releases/7.2/announcements/7_2_9.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 7.2.9. +This is a bugfix release.
+ +All PHP 7.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.2.9 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_0.html b/data/releases/7.3/announcements/7_3_0.html new file mode 100644 index 0000000000..246d2fc390 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_0.html @@ -0,0 +1,25 @@ +The PHP development team announces the immediate availability of PHP 7.3.0. + This release marks the third feature update to the PHP 7 series.
+ +PHP 7.3.0 comes with numerous improvements and new features such as
+ +For source downloads of PHP 7.3.0 please visit our downloads page + Windows binaries can be found on the PHP for Windows site. + The list of changes is recorded in the ChangeLog.
+ +The migration guide is available in the PHP Manual. + Please consult it for the detailed list of new features and backward incompatible changes.
+ +Many thanks to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_1.html b/data/releases/7.3/announcements/7_3_1.html new file mode 100644 index 0000000000..8c0a76714c --- /dev/null +++ b/data/releases/7.3/announcements/7_3_1.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.1. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.1 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_10.html b/data/releases/7.3/announcements/7_3_10.html new file mode 100644 index 0000000000..ebffd6949d --- /dev/null +++ b/data/releases/7.3/announcements/7_3_10.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.10. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.10 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_11.html b/data/releases/7.3/announcements/7_3_11.html new file mode 100644 index 0000000000..565ff42aa9 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_11.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.11. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.11 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_12.html b/data/releases/7.3/announcements/7_3_12.html new file mode 100644 index 0000000000..32512dc3c7 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_12.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.12. This is a bug fix release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.12 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_13.html b/data/releases/7.3/announcements/7_3_13.html new file mode 100644 index 0000000000..d1e84c6027 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_13.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.13. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.13 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_14.html b/data/releases/7.3/announcements/7_3_14.html new file mode 100644 index 0000000000..33938a8bba --- /dev/null +++ b/data/releases/7.3/announcements/7_3_14.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.14. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.14 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_15.html b/data/releases/7.3/announcements/7_3_15.html new file mode 100644 index 0000000000..5b12b769a0 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_15.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.15. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.15 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_16.html b/data/releases/7.3/announcements/7_3_16.html new file mode 100644 index 0000000000..1d475a016c --- /dev/null +++ b/data/releases/7.3/announcements/7_3_16.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.16. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.16 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_17.html b/data/releases/7.3/announcements/7_3_17.html new file mode 100644 index 0000000000..b9f9dc4376 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_17.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.17 This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.17 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_18.html b/data/releases/7.3/announcements/7_3_18.html new file mode 100644 index 0000000000..c46a03395c --- /dev/null +++ b/data/releases/7.3/announcements/7_3_18.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.18 This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.18 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_19.html b/data/releases/7.3/announcements/7_3_19.html new file mode 100644 index 0000000000..2ffb2d4ed0 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_19.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.19. This is a bug fix release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.19 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_2.html b/data/releases/7.3/announcements/7_3_2.html new file mode 100644 index 0000000000..851213745f --- /dev/null +++ b/data/releases/7.3/announcements/7_3_2.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.2. This is a bugfix release, with several bug fixes included.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.2 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_20.html b/data/releases/7.3/announcements/7_3_20.html new file mode 100644 index 0000000000..6124f155ad --- /dev/null +++ b/data/releases/7.3/announcements/7_3_20.html @@ -0,0 +1,17 @@ +The PHP development team announces the immediate availability of PHP 7.3.20. This is a security release impacting the +official Windows builds of PHP.
+ +For windows users running an official build, this release contains a +patched version of libcurl addressing +CVE-2020-8169.
+ +For all other consumers of PHP, this is a bug fix release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.20 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_21.html b/data/releases/7.3/announcements/7_3_21.html new file mode 100644 index 0000000000..8b1180f35b --- /dev/null +++ b/data/releases/7.3/announcements/7_3_21.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.21. This is a security release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.21 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_22.html b/data/releases/7.3/announcements/7_3_22.html new file mode 100644 index 0000000000..c1c46d11da --- /dev/null +++ b/data/releases/7.3/announcements/7_3_22.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.22. This is a bug fix release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.22 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_23.html b/data/releases/7.3/announcements/7_3_23.html new file mode 100644 index 0000000000..00fec3558d --- /dev/null +++ b/data/releases/7.3/announcements/7_3_23.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.23. This is a security release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.23 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_24.html b/data/releases/7.3/announcements/7_3_24.html new file mode 100644 index 0000000000..bcd5870dab --- /dev/null +++ b/data/releases/7.3/announcements/7_3_24.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.24. This is a bug fix release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.24 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_25.html b/data/releases/7.3/announcements/7_3_25.html new file mode 100644 index 0000000000..90f7c7db37 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_25.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.25. This is a bug fix release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.25 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_26.html b/data/releases/7.3/announcements/7_3_26.html new file mode 100644 index 0000000000..e3fb7ea9ab --- /dev/null +++ b/data/releases/7.3/announcements/7_3_26.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.26. This is a security release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.26 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_27.html b/data/releases/7.3/announcements/7_3_27.html new file mode 100644 index 0000000000..15c7ce8b21 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_27.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.27. This is a security release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.27 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_28.html b/data/releases/7.3/announcements/7_3_28.html new file mode 100644 index 0000000000..3500487b7e --- /dev/null +++ b/data/releases/7.3/announcements/7_3_28.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.28. This is a security release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.28 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_29.html b/data/releases/7.3/announcements/7_3_29.html new file mode 100644 index 0000000000..7acab937bd --- /dev/null +++ b/data/releases/7.3/announcements/7_3_29.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.29. This is a security release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.29 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_3.html b/data/releases/7.3/announcements/7_3_3.html new file mode 100644 index 0000000000..b15fc1a7e2 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_3.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.3. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.3 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_30.html b/data/releases/7.3/announcements/7_3_30.html new file mode 100644 index 0000000000..4a2d659113 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_30.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.30. This is a security release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.30 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_31.html b/data/releases/7.3/announcements/7_3_31.html new file mode 100644 index 0000000000..5b5a4bff8e --- /dev/null +++ b/data/releases/7.3/announcements/7_3_31.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.31. This is a security release fixing CVE-2021-21706.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.31 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_32.html b/data/releases/7.3/announcements/7_3_32.html new file mode 100644 index 0000000000..4706145751 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_32.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.32. This is a security release.
+ +All PHP 7.3 FPM users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.32 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_33.html b/data/releases/7.3/announcements/7_3_33.html new file mode 100644 index 0000000000..e9b2ce0dbd --- /dev/null +++ b/data/releases/7.3/announcements/7_3_33.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.3.33. This is a security release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.33 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_4.html b/data/releases/7.3/announcements/7_3_4.html new file mode 100644 index 0000000000..7628460d18 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_4.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.4. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.4 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_5.html b/data/releases/7.3/announcements/7_3_5.html new file mode 100644 index 0000000000..d53b39eb7c --- /dev/null +++ b/data/releases/7.3/announcements/7_3_5.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.5. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.5 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_6.html b/data/releases/7.3/announcements/7_3_6.html new file mode 100644 index 0000000000..cda30160a4 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_6.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.6. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.6 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_7.html b/data/releases/7.3/announcements/7_3_7.html new file mode 100644 index 0000000000..dba9a594e0 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_7.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.7. This is a bug fix release.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.7 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_8.html b/data/releases/7.3/announcements/7_3_8.html new file mode 100644 index 0000000000..a5e29843b1 --- /dev/null +++ b/data/releases/7.3/announcements/7_3_8.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.8. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.8 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.3/announcements/7_3_9.html b/data/releases/7.3/announcements/7_3_9.html new file mode 100644 index 0000000000..2dcd8818fa --- /dev/null +++ b/data/releases/7.3/announcements/7_3_9.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.3.9. This is a security release which also contains several bug fixes.
+ +All PHP 7.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.3.9 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_0.html b/data/releases/7.4/announcements/7_4_0.html new file mode 100644 index 0000000000..c2ffc3142e --- /dev/null +++ b/data/releases/7.4/announcements/7_4_0.html @@ -0,0 +1,29 @@ +The PHP development team announces the immediate availability of PHP 7.4.0. +This release marks the fourth feature update to the PHP 7 series.
+ +PHP 7.4.0 comes with numerous improvements and new features such as:
+ +For source downloads of PHP 7.4.0 please visit our downloads page +Windows binaries can be found on the PHP for Windows site. +The list of changes is recorded in the ChangeLog.
+ +The migration guide is available in the PHP Manual. +Please consult it for the detailed list of new features and backward incompatible changes.
+ +Many thanks to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_1.html b/data/releases/7.4/announcements/7_4_1.html new file mode 100644 index 0000000000..f35cdfcead --- /dev/null +++ b/data/releases/7.4/announcements/7_4_1.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.4.1. This is a security release which also contains several bug fixes.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.1 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_10.html b/data/releases/7.4/announcements/7_4_10.html new file mode 100644 index 0000000000..13584bf2da --- /dev/null +++ b/data/releases/7.4/announcements/7_4_10.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.10. This is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.10 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_11.html b/data/releases/7.4/announcements/7_4_11.html new file mode 100644 index 0000000000..d2c1e5e661 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_11.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.11. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.11 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_12.html b/data/releases/7.4/announcements/7_4_12.html new file mode 100644 index 0000000000..7e9e327e29 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_12.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.12. This is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.12 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_13.html b/data/releases/7.4/announcements/7_4_13.html new file mode 100644 index 0000000000..1d001af7fc --- /dev/null +++ b/data/releases/7.4/announcements/7_4_13.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.13. This is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.13 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_14.html b/data/releases/7.4/announcements/7_4_14.html new file mode 100644 index 0000000000..5b202e6359 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_14.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.14. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.14 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_15.html b/data/releases/7.4/announcements/7_4_15.html new file mode 100644 index 0000000000..481912ea72 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_15.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.15. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.15 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_16.html b/data/releases/7.4/announcements/7_4_16.html new file mode 100644 index 0000000000..4dd0620569 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_16.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.16. This is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.16 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_18.html b/data/releases/7.4/announcements/7_4_18.html new file mode 100644 index 0000000000..fb06483f13 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_18.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.18. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.18 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_19.html b/data/releases/7.4/announcements/7_4_19.html new file mode 100644 index 0000000000..a5d2fd5cdd --- /dev/null +++ b/data/releases/7.4/announcements/7_4_19.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +7.4.19. This release reverts a bug related to PDO_pgsql that was +introduced in PHP 7.4.18.
+ +PHP 7.4 users that use PDO_pgsql are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.19 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_2.html b/data/releases/7.4/announcements/7_4_2.html new file mode 100644 index 0000000000..10dac7f231 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_2.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.4.2. This is a security release which also contains several bug fixes.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.2 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_20.html b/data/releases/7.4/announcements/7_4_20.html new file mode 100644 index 0000000000..542d7330f9 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_20.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.20. This is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.20 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_21.html b/data/releases/7.4/announcements/7_4_21.html new file mode 100644 index 0000000000..4638708dc9 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_21.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.21. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.21 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_22.html b/data/releases/7.4/announcements/7_4_22.html new file mode 100644 index 0000000000..5309c41730 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_22.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.22. This is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.22 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_23.html b/data/releases/7.4/announcements/7_4_23.html new file mode 100644 index 0000000000..eb519f7ab8 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_23.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.23. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.23 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_24.html b/data/releases/7.4/announcements/7_4_24.html new file mode 100644 index 0000000000..aa9bd32195 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_24.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.24. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.24 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_25.html b/data/releases/7.4/announcements/7_4_25.html new file mode 100644 index 0000000000..f5f998af85 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_25.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.25. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.25 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_26.html b/data/releases/7.4/announcements/7_4_26.html new file mode 100644 index 0000000000..de20d4914a --- /dev/null +++ b/data/releases/7.4/announcements/7_4_26.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.26. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.26 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_27.html b/data/releases/7.4/announcements/7_4_27.html new file mode 100644 index 0000000000..d539be371a --- /dev/null +++ b/data/releases/7.4/announcements/7_4_27.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.27. This is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.27 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_28.html b/data/releases/7.4/announcements/7_4_28.html new file mode 100644 index 0000000000..20c2722f71 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_28.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.28. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.28 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_29.html b/data/releases/7.4/announcements/7_4_29.html new file mode 100644 index 0000000000..52ba219645 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_29.html @@ -0,0 +1,13 @@ +The PHP development team announces the immediate availability of PHP 7.4.29. This is a security release for Windows users.
+ +This is primarily a release for Windows users due to necessarily +upgrades to the OpenSSL and zlib dependencies in which security issues +have been found. All PHP 7.4 on Windows users are encouraged to upgrade +to this version.
+ +For source downloads of PHP 7.4.29 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_3.html b/data/releases/7.4/announcements/7_4_3.html new file mode 100644 index 0000000000..dd93722f2c --- /dev/null +++ b/data/releases/7.4/announcements/7_4_3.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.4.3. This is a security release which also contains several bug fixes.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.3 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_30.html b/data/releases/7.4/announcements/7_4_30.html new file mode 100644 index 0000000000..b926f1de60 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_30.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.30. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.30 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_32.html b/data/releases/7.4/announcements/7_4_32.html new file mode 100644 index 0000000000..e600f8c3ab --- /dev/null +++ b/data/releases/7.4/announcements/7_4_32.html @@ -0,0 +1,14 @@ +The PHP development team announces the immediate availability of PHP 7.4.32. This is a security release.
+ +This release addresses an infinite recursion with specially +constructed phar files, and prevents a clash with variable name mangling for +the __Host/__Secure HTTP headers.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.32 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_33.html b/data/releases/7.4/announcements/7_4_33.html new file mode 100644 index 0000000000..689be734e5 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_33.html @@ -0,0 +1,14 @@ +The PHP development team announces the immediate availability of PHP 7.4.33.
+ +This is security release that fixes an OOB read due to insufficient +input validation in imageloadfont(), and a buffer overflow in +hash_update() on long parameter.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.33 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_4.html b/data/releases/7.4/announcements/7_4_4.html new file mode 100644 index 0000000000..ec1bf564ac --- /dev/null +++ b/data/releases/7.4/announcements/7_4_4.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP + 7.4.4. This is a security release which also contains several bug fixes.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.4 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_5.html b/data/releases/7.4/announcements/7_4_5.html new file mode 100644 index 0000000000..0ab01aef2f --- /dev/null +++ b/data/releases/7.4/announcements/7_4_5.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +7.4.5. This is a security release which also contains several bug fixes.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.5 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_6.html b/data/releases/7.4/announcements/7_4_6.html new file mode 100644 index 0000000000..6eedd1f5ea --- /dev/null +++ b/data/releases/7.4/announcements/7_4_6.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +7.4.6. This is a security release which also contains several bug fixes.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.6 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_7.html b/data/releases/7.4/announcements/7_4_7.html new file mode 100644 index 0000000000..0b9a300c6b --- /dev/null +++ b/data/releases/7.4/announcements/7_4_7.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP +7.4.7. This release is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.7 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_8.html b/data/releases/7.4/announcements/7_4_8.html new file mode 100644 index 0000000000..e11f649c3b --- /dev/null +++ b/data/releases/7.4/announcements/7_4_8.html @@ -0,0 +1,18 @@ +The PHP development team announces the immediate availability of PHP 7.4.8. +This is a security release impacting the official Windows builds of PHP.
+ +For windows users running an official build, this release contains a +patched version of libcurl addressing +CVE-2020-8169.
+ +For all other consumers of PHP, this is a bug fix release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.8 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/7.4/announcements/7_4_9.html b/data/releases/7.4/announcements/7_4_9.html new file mode 100644 index 0000000000..cc2e9e9153 --- /dev/null +++ b/data/releases/7.4/announcements/7_4_9.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 7.4.9. This is a security release.
+ +All PHP 7.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 7.4.9 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_0.html b/data/releases/8.0/announcements/8_0_0.html new file mode 100644 index 0000000000..f887d042b7 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_0.html @@ -0,0 +1,28 @@ +The PHP development team announces the immediate availability of PHP 8.0.0. This release marks the latest major release of the PHP language.
+ +PHP 8.0 comes with numerous improvements and new features such as:
+Take a look at the PHP 8.0 Announcement Addendum for more information.
+ +For source downloads of PHP 8.0.0 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
+ +The migration guide is available in the PHP Manual. +Please consult it for the detailed list of new features and backward incompatible changes.
+ +Many thanks to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_1.html b/data/releases/8.0/announcements/8_0_1.html new file mode 100644 index 0000000000..a456e3dfbd --- /dev/null +++ b/data/releases/8.0/announcements/8_0_1.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.1. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.1 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_10.html b/data/releases/8.0/announcements/8_0_10.html new file mode 100644 index 0000000000..c881bef792 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_10.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.10. This is a security fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.10 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_11.html b/data/releases/8.0/announcements/8_0_11.html new file mode 100644 index 0000000000..30fcae43ac --- /dev/null +++ b/data/releases/8.0/announcements/8_0_11.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.11. This is a security release fixing CVE-2021-21706.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.11 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_12.html b/data/releases/8.0/announcements/8_0_12.html new file mode 100644 index 0000000000..84f6754127 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_12.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.12. This is a security fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.12 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_13.html b/data/releases/8.0/announcements/8_0_13.html new file mode 100644 index 0000000000..6286951c1e --- /dev/null +++ b/data/releases/8.0/announcements/8_0_13.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.13. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.13 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_14.html b/data/releases/8.0/announcements/8_0_14.html new file mode 100644 index 0000000000..83932741d4 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_14.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.14. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.14 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_15.html b/data/releases/8.0/announcements/8_0_15.html new file mode 100644 index 0000000000..981d1828aa --- /dev/null +++ b/data/releases/8.0/announcements/8_0_15.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.15. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.15 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_16.html b/data/releases/8.0/announcements/8_0_16.html new file mode 100644 index 0000000000..ff27caa790 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_16.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.16. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.16 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_17.html b/data/releases/8.0/announcements/8_0_17.html new file mode 100644 index 0000000000..c497857d80 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_17.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.17. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.17 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_18.html b/data/releases/8.0/announcements/8_0_18.html new file mode 100644 index 0000000000..9e38c11833 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_18.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.18. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.18 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_19.html b/data/releases/8.0/announcements/8_0_19.html new file mode 100644 index 0000000000..c9aaadccda --- /dev/null +++ b/data/releases/8.0/announcements/8_0_19.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.19. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.19 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_2.html b/data/releases/8.0/announcements/8_0_2.html new file mode 100644 index 0000000000..99378c7383 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_2.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.2. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.2 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_20.html b/data/releases/8.0/announcements/8_0_20.html new file mode 100644 index 0000000000..103477e2b7 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_20.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.20. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.20 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_21.html b/data/releases/8.0/announcements/8_0_21.html new file mode 100644 index 0000000000..22ae2fa38b --- /dev/null +++ b/data/releases/8.0/announcements/8_0_21.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.21. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.21 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_22.html b/data/releases/8.0/announcements/8_0_22.html new file mode 100644 index 0000000000..06c07bd98c --- /dev/null +++ b/data/releases/8.0/announcements/8_0_22.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.22. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.22 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_23.html b/data/releases/8.0/announcements/8_0_23.html new file mode 100644 index 0000000000..712d37d11c --- /dev/null +++ b/data/releases/8.0/announcements/8_0_23.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.23. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.23 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_24.html b/data/releases/8.0/announcements/8_0_24.html new file mode 100644 index 0000000000..12e0ebbbca --- /dev/null +++ b/data/releases/8.0/announcements/8_0_24.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.24. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.24 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_25.html b/data/releases/8.0/announcements/8_0_25.html new file mode 100644 index 0000000000..dc81872c17 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_25.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.25. This is a security fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.25 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_26.html b/data/releases/8.0/announcements/8_0_26.html new file mode 100644 index 0000000000..d33271da56 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_26.html @@ -0,0 +1,15 @@ +The PHP development team announces the immediate availability of PHP 8.0.26. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.26 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
+ +Please note, this is the last bug-fix release for the 8.0.x series. +Security fix support will continue until 26 Nov 2023. +For more information, please check our +Supported Versions page.
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_27.html b/data/releases/8.0/announcements/8_0_27.html new file mode 100644 index 0000000000..7fcae7f06e --- /dev/null +++ b/data/releases/8.0/announcements/8_0_27.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.27. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.27 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_28.html b/data/releases/8.0/announcements/8_0_28.html new file mode 100644 index 0000000000..868ead41f8 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_28.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 8.0.28. This is a security release +that addresses CVE-2023-0567, CVE-2023-0568, and CVE-2023-0662
+ +All PHP 8.0 users are advised to upgrade to this version.
+ +For source downloads of PHP 8.0.28 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_29.html b/data/releases/8.0/announcements/8_0_29.html new file mode 100644 index 0000000000..3b2bd01b8f --- /dev/null +++ b/data/releases/8.0/announcements/8_0_29.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.29. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.29 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_3.html b/data/releases/8.0/announcements/8_0_3.html new file mode 100644 index 0000000000..3e19e076a4 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_3.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.3. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.3 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_30.html b/data/releases/8.0/announcements/8_0_30.html new file mode 100644 index 0000000000..f4e0ac2682 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_30.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.30. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.30 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_5.html b/data/releases/8.0/announcements/8_0_5.html new file mode 100644 index 0000000000..0f1b3e9085 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_5.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.5. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.5 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_6.html b/data/releases/8.0/announcements/8_0_6.html new file mode 100644 index 0000000000..6b320218cc --- /dev/null +++ b/data/releases/8.0/announcements/8_0_6.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP +8.0.6. This release reverts a bug related to PDO_pgsql that was +introduced in PHP 8.0.5.
+ +PHP 8.0 users that use PDO_pgsql are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.6 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_7.html b/data/releases/8.0/announcements/8_0_7.html new file mode 100644 index 0000000000..4d617d3075 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_7.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.7. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.7 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_8.html b/data/releases/8.0/announcements/8_0_8.html new file mode 100644 index 0000000000..9486946b86 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_8.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.8. This is a security release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.8 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.0/announcements/8_0_9.html b/data/releases/8.0/announcements/8_0_9.html new file mode 100644 index 0000000000..ceb53647c7 --- /dev/null +++ b/data/releases/8.0/announcements/8_0_9.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.0.9. This is a bug fix release.
+ +All PHP 8.0 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.0.9 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_0.html b/data/releases/8.1/announcements/8_1_0.html new file mode 100644 index 0000000000..b7518fa72a --- /dev/null +++ b/data/releases/8.1/announcements/8_1_0.html @@ -0,0 +1,28 @@ +The PHP development team announces the immediate availability of PHP 8.1.0. This release marks the latest minor release of the PHP language.
+ +PHP 8.1 comes with numerous improvements and new features such as:
+For source downloads of PHP 8.1.0 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
+ +The migration guide is available in the PHP Manual. +Please consult it for the detailed list of new features and backward incompatible changes.
+ +Many thanks to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_1.html b/data/releases/8.1/announcements/8_1_1.html new file mode 100644 index 0000000000..e0c82d5ba5 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_1.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.1. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.1 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_10.html b/data/releases/8.1/announcements/8_1_10.html new file mode 100644 index 0000000000..85577c6616 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_10.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.10. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.10 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_11.html b/data/releases/8.1/announcements/8_1_11.html new file mode 100644 index 0000000000..54154ae909 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_11.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.11. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.11 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_12.html b/data/releases/8.1/announcements/8_1_12.html new file mode 100644 index 0000000000..85a2071975 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_12.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.12. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.12 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_13.html b/data/releases/8.1/announcements/8_1_13.html new file mode 100644 index 0000000000..624dc56876 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_13.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.13. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.13 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_14.html b/data/releases/8.1/announcements/8_1_14.html new file mode 100644 index 0000000000..5ea92891e6 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_14.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.14. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.14 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_15.html b/data/releases/8.1/announcements/8_1_15.html new file mode 100644 index 0000000000..3d70e0ae0d --- /dev/null +++ b/data/releases/8.1/announcements/8_1_15.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.15. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.15 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_16.html b/data/releases/8.1/announcements/8_1_16.html new file mode 100644 index 0000000000..72bdc5fb24 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_16.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.16. This is a security release that addresses CVE-2023-0567, CVE-2023-0568, and CVE-2023-0662.
+ +All PHP 8.1 users are advised to upgrade to this version.
+ +For source downloads of PHP 8.1.16 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_17.html b/data/releases/8.1/announcements/8_1_17.html new file mode 100644 index 0000000000..734fa6f807 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_17.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.17. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.17 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_18.html b/data/releases/8.1/announcements/8_1_18.html new file mode 100644 index 0000000000..5d5cf05fb2 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_18.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.18. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.18 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_19.html b/data/releases/8.1/announcements/8_1_19.html new file mode 100644 index 0000000000..bf8a41c6c5 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_19.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.19. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.19 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_2.html b/data/releases/8.1/announcements/8_1_2.html new file mode 100644 index 0000000000..17043bfd7f --- /dev/null +++ b/data/releases/8.1/announcements/8_1_2.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.2. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.2 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_20.html b/data/releases/8.1/announcements/8_1_20.html new file mode 100644 index 0000000000..fd5a8d00c1 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_20.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.20. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.20 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_21.html b/data/releases/8.1/announcements/8_1_21.html new file mode 100644 index 0000000000..d11815e089 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_21.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.21. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.21 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_22.html b/data/releases/8.1/announcements/8_1_22.html new file mode 100644 index 0000000000..6c24d51b7f --- /dev/null +++ b/data/releases/8.1/announcements/8_1_22.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.22. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.22 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_23.html b/data/releases/8.1/announcements/8_1_23.html new file mode 100644 index 0000000000..766547a9a1 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_23.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.23. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.23 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_24.html b/data/releases/8.1/announcements/8_1_24.html new file mode 100644 index 0000000000..0f60f281b7 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_24.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.24. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.24 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_25.html b/data/releases/8.1/announcements/8_1_25.html new file mode 100644 index 0000000000..6ca0844a7d --- /dev/null +++ b/data/releases/8.1/announcements/8_1_25.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.25. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.25 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_26.html b/data/releases/8.1/announcements/8_1_26.html new file mode 100644 index 0000000000..697544a8dc --- /dev/null +++ b/data/releases/8.1/announcements/8_1_26.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.26. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.26 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_27.html b/data/releases/8.1/announcements/8_1_27.html new file mode 100644 index 0000000000..d927a1d7df --- /dev/null +++ b/data/releases/8.1/announcements/8_1_27.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.27. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.27 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_28.html b/data/releases/8.1/announcements/8_1_28.html new file mode 100644 index 0000000000..e10ea92bc4 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_28.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.28. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.28 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_29.html b/data/releases/8.1/announcements/8_1_29.html new file mode 100644 index 0000000000..bcb2e072a2 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_29.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.29. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.29 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_3.html b/data/releases/8.1/announcements/8_1_3.html new file mode 100644 index 0000000000..60d3778eaa --- /dev/null +++ b/data/releases/8.1/announcements/8_1_3.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.3. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.3 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_30.html b/data/releases/8.1/announcements/8_1_30.html new file mode 100644 index 0000000000..5c0b74e660 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_30.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.30. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.30 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_31.html b/data/releases/8.1/announcements/8_1_31.html new file mode 100644 index 0000000000..d180f5ec2b --- /dev/null +++ b/data/releases/8.1/announcements/8_1_31.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.31. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.31 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_32.html b/data/releases/8.1/announcements/8_1_32.html new file mode 100644 index 0000000000..4dd20c87cc --- /dev/null +++ b/data/releases/8.1/announcements/8_1_32.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.32. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.32 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_33.html b/data/releases/8.1/announcements/8_1_33.html new file mode 100644 index 0000000000..3ab092e96b --- /dev/null +++ b/data/releases/8.1/announcements/8_1_33.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.33. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.33 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_34.html b/data/releases/8.1/announcements/8_1_34.html new file mode 100644 index 0000000000..d78a85aa8f --- /dev/null +++ b/data/releases/8.1/announcements/8_1_34.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.34. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.34 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_4.html b/data/releases/8.1/announcements/8_1_4.html new file mode 100644 index 0000000000..acad9de863 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_4.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.4. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.4 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_5.html b/data/releases/8.1/announcements/8_1_5.html new file mode 100644 index 0000000000..566826d1a9 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_5.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.5. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.5 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_6.html b/data/releases/8.1/announcements/8_1_6.html new file mode 100644 index 0000000000..86698a6cac --- /dev/null +++ b/data/releases/8.1/announcements/8_1_6.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.6. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.6 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_7.html b/data/releases/8.1/announcements/8_1_7.html new file mode 100644 index 0000000000..e2ff8f8c48 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_7.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.7. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.7 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_8.html b/data/releases/8.1/announcements/8_1_8.html new file mode 100644 index 0000000000..d1c0d99d36 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_8.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.8. This is a security release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.8 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.1/announcements/8_1_9.html b/data/releases/8.1/announcements/8_1_9.html new file mode 100644 index 0000000000..660a5573f2 --- /dev/null +++ b/data/releases/8.1/announcements/8_1_9.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.1.9. This is a bug fix release.
+ +All PHP 8.1 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.1.9 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_0.html b/data/releases/8.2/announcements/8_2_0.html new file mode 100644 index 0000000000..15f1c68951 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_0.html @@ -0,0 +1,28 @@ +The PHP development team announces the immediate availability of PHP 8.2.0. This release marks the latest minor release of the PHP language.
+ +PHP 8.2 comes with numerous improvements and new features such as:
+ ++ For source downloads of PHP 8.2.0 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
+ ++ The migration guide is available in the PHP Manual. + Please consult it for the detailed list of new features and backward incompatible changes. +
+ +Kudos to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_1.html b/data/releases/8.2/announcements/8_2_1.html new file mode 100644 index 0000000000..48372375d8 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_1.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.1. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.1 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_10.html b/data/releases/8.2/announcements/8_2_10.html new file mode 100644 index 0000000000..3f705f7396 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_10.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.10. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.10 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_11.html b/data/releases/8.2/announcements/8_2_11.html new file mode 100644 index 0000000000..ee9053f3a8 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_11.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.11. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.11 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_12.html b/data/releases/8.2/announcements/8_2_12.html new file mode 100644 index 0000000000..f789e49565 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_12.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.12. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.12 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_13.html b/data/releases/8.2/announcements/8_2_13.html new file mode 100644 index 0000000000..62dba21e34 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_13.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.13. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.13 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_14.html b/data/releases/8.2/announcements/8_2_14.html new file mode 100644 index 0000000000..c0a3796af7 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_14.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.14. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.14 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_15.html b/data/releases/8.2/announcements/8_2_15.html new file mode 100644 index 0000000000..4ea6427f8c --- /dev/null +++ b/data/releases/8.2/announcements/8_2_15.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.15. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.15 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_16.html b/data/releases/8.2/announcements/8_2_16.html new file mode 100644 index 0000000000..31dd61d663 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_16.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.16. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.16 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_17.html b/data/releases/8.2/announcements/8_2_17.html new file mode 100644 index 0000000000..e51dff0971 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_17.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.17. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.17 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_18.html b/data/releases/8.2/announcements/8_2_18.html new file mode 100644 index 0000000000..b841a62a3f --- /dev/null +++ b/data/releases/8.2/announcements/8_2_18.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.18. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.18 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_19.html b/data/releases/8.2/announcements/8_2_19.html new file mode 100644 index 0000000000..45db037b26 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_19.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.19. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.19 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_2.html b/data/releases/8.2/announcements/8_2_2.html new file mode 100644 index 0000000000..5508b230a6 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_2.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.2. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.2 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_20.html b/data/releases/8.2/announcements/8_2_20.html new file mode 100644 index 0000000000..7cdcf2d4e2 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_20.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.20. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.20 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_21.html b/data/releases/8.2/announcements/8_2_21.html new file mode 100644 index 0000000000..52cc08ee31 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_21.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.21. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.21 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_22.html b/data/releases/8.2/announcements/8_2_22.html new file mode 100644 index 0000000000..037f65d57f --- /dev/null +++ b/data/releases/8.2/announcements/8_2_22.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.22. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.22 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_23.html b/data/releases/8.2/announcements/8_2_23.html new file mode 100644 index 0000000000..5a83d28094 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_23.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.23. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.23 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_24.html b/data/releases/8.2/announcements/8_2_24.html new file mode 100644 index 0000000000..3797e84ec3 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_24.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.24. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.24 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_25.html b/data/releases/8.2/announcements/8_2_25.html new file mode 100644 index 0000000000..093f15ef4e --- /dev/null +++ b/data/releases/8.2/announcements/8_2_25.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.25. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.25 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_26.html b/data/releases/8.2/announcements/8_2_26.html new file mode 100644 index 0000000000..05c4343b31 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_26.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.26. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.26 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_27.html b/data/releases/8.2/announcements/8_2_27.html new file mode 100644 index 0000000000..c71b23eb37 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_27.html @@ -0,0 +1,14 @@ +The PHP development team announces the immediate availability of PHP 8.2.27. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.27 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
+ +Please note, this is the last bug-fix release for the 8.2.x series. Security fix support will continue until 31 Dec 2026. + For more information, please check our Supported Versions page. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_28.html b/data/releases/8.2/announcements/8_2_28.html new file mode 100644 index 0000000000..163fd017e1 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_28.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.28. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.28 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_29.html b/data/releases/8.2/announcements/8_2_29.html new file mode 100644 index 0000000000..1d64ece257 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_29.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.29. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.29 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_3.html b/data/releases/8.2/announcements/8_2_3.html new file mode 100644 index 0000000000..6a4f4558c7 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_3.html @@ -0,0 +1,11 @@ +The PHP development team announces the immediate availability of PHP 8.2.3. This is a security release +that addresses CVE-2023-0567, CVE-2023-0568, and CVE-2023-0662.
+ +All PHP 8.2 users are advised to upgrade to this version.
+ +For source downloads of PHP 8.2.3 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_30.html b/data/releases/8.2/announcements/8_2_30.html new file mode 100644 index 0000000000..b9523044b4 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_30.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.30. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.30 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_31.html b/data/releases/8.2/announcements/8_2_31.html new file mode 100644 index 0000000000..160c615e62 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_31.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.31. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.31 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_4.html b/data/releases/8.2/announcements/8_2_4.html new file mode 100644 index 0000000000..f0fa0245db --- /dev/null +++ b/data/releases/8.2/announcements/8_2_4.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.4. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.4 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_5.html b/data/releases/8.2/announcements/8_2_5.html new file mode 100644 index 0000000000..d13192eee8 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_5.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.5. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.5 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_6.html b/data/releases/8.2/announcements/8_2_6.html new file mode 100644 index 0000000000..d2e77741cc --- /dev/null +++ b/data/releases/8.2/announcements/8_2_6.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.6. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.6 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_7.html b/data/releases/8.2/announcements/8_2_7.html new file mode 100644 index 0000000000..365066595d --- /dev/null +++ b/data/releases/8.2/announcements/8_2_7.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.7. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.7 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_8.html b/data/releases/8.2/announcements/8_2_8.html new file mode 100644 index 0000000000..96b8944fbd --- /dev/null +++ b/data/releases/8.2/announcements/8_2_8.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.2.8. This is a bug fix release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.2.8 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/announcements/8_2_9.html b/data/releases/8.2/announcements/8_2_9.html new file mode 100644 index 0000000000..806ce0e629 --- /dev/null +++ b/data/releases/8.2/announcements/8_2_9.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP 8.2.9. This is a security release.
+ +All PHP 8.2 users are encouraged to upgrade to this version.
+ +Windows source and binaries are not synchronized and do not contain a fix for GH-11854.
+ +For source downloads of PHP 8.2.9 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.2/highlights/01-readonly-classes.txt b/data/releases/8.2/highlights/01-readonly-classes.txt new file mode 100644 index 0000000000..ad933098f6 --- /dev/null +++ b/data/releases/8.2/highlights/01-readonly-classes.txt @@ -0,0 +1,39 @@ +type: meta +title: Readonly Classes +rfc: https://wiki.php.net/rfc/readonly_classes + +============================================== +type: example +format: php +target: <8.2 + +class BlogData +{ + public readonly string $title; + + public readonly Status $status; + + public function __construct(string $title, Status $status) + { + $this->title = $title; + $this->status = $status; + } +} + +============================================== +type: example +format: php +target: >=8.2 + +readonly class BlogData +{ + public string $title; + + public Status $status; + + public function __construct(string $title, Status $status) + { + $this->title = $title; + $this->status = $status; + } +} diff --git a/data/releases/8.2/highlights/02-dnf-types.txt b/data/releases/8.2/highlights/02-dnf-types.txt new file mode 100644 index 0000000000..7ac261491a --- /dev/null +++ b/data/releases/8.2/highlights/02-dnf-types.txt @@ -0,0 +1,37 @@ +type: meta +title: Disjunctive Normal Form (DNF) Types +rfc: https://wiki.php.net/rfc/dnf_types + +============================================== +type: about +format: md +lang: en + +DNF types allow us to combine union and intersection types, following a strict rule: +when combining union and intersection types, intersection types must be grouped with brackets. + +============================================== +type: example +format: php +target: <8.2 + +class Foo { + public function bar(mixed $entity) { + if ((($entity instanceof A) && ($entity instanceof B)) || ($entity === null)) { + return $entity; + } + + throw new Exception('Invalid entity'); + } +} + +============================================== +type: example +format: php +target: >=8.2 + +class Foo { + public function bar((A&B)|null $entity) { + return $entity; + } +} diff --git a/data/releases/8.2/highlights/03-allow-null-false-true.txt b/data/releases/8.2/highlights/03-allow-null-false-true.txt new file mode 100644 index 0000000000..6a57393368 --- /dev/null +++ b/data/releases/8.2/highlights/03-allow-null-false-true.txt @@ -0,0 +1,31 @@ +type: meta +title: Allow null, false, and true as stand-alone types +rfc: https://wiki.php.net/rfc/null-false-standalone-types + +============================================== +type: example +format: php +target: <8.2 + +class Falsy +{ + public function almostFalse(): bool { /* ... */ *} + + public function almostTrue(): bool { /* ... */ *} + + public function almostNull(): string|null { /* ... */ *} +} + +============================================== +type: example +format: php +target: >=8.2 + +class Falsy +{ + public function alwaysFalse(): false { /* ... */ *} + + public function alwaysTrue(): true { /* ... */ *} + + public function alwaysNull(): null { /* ... */ *} +} diff --git a/data/releases/8.2/highlights/04-random-extension.txt b/data/releases/8.2/highlights/04-random-extension.txt new file mode 100644 index 0000000000..c5d2ebdcdf --- /dev/null +++ b/data/releases/8.2/highlights/04-random-extension.txt @@ -0,0 +1,54 @@ +type: meta +title: New "Random" extension +rfc: https://wiki.php.net/rfc/rng_extension +rfc: https://wiki.php.net/rfc/random_extension_improvement + +============================================== +type: about +format: md +lang: en + +The "random" extension provides a new object-oriented API to random number generation. +Instead of relying on a globally seeded random number generator (RNG) using the Mersenne Twister +algorithm the object-oriented API provides several classes ("Engine"s) providing access to modern +algorithms that store their state within objects to allow for multiple independent seedable sequences. + +The \Random\Randomizer class provides a high-level interface to use the engine's randomness to +generate a random integer, to shuffle an array or string, to select random array keys and more. + + +============================================== +type: example +format: php +target: >=8.2 + +use Random\Engine\Xoshiro256StarStar; +use Random\Randomizer; + +$blueprintRng = new Xoshiro256StarStar( + hash('sha256', "Example seed that is converted to a 256 Bit string via SHA-256", true) +); + +$fibers = []; +for ($i = 0; $i < 8; $i++) { + $fiberRng = clone $blueprintRng; + // Xoshiro256**'s 'jump()' method moves the blueprint ahead 2**128 steps, as if calling + // 'generate()' 2**128 times, giving the Fiber 2**128 unique values without needing to reseed. + $blueprintRng->jump(); + + $fibers[] = new Fiber(function () use ($fiberRng, $i): void { + $randomizer = new Randomizer($fiberRng); + + echo "{$i}: " . $randomizer->getInt(0, 100), PHP_EOL; + }); +} + +// The randomizer will use a CSPRNG by default. +$randomizer = new Randomizer(); + +// Even though the fibers execute in a random order, they will print the same value +// each time, because each has its own unique instance of the RNG. +$fibers = $randomizer->shuffleArray($fibers); +foreach ($fibers as $fiber) { + $fiber->start(); +} diff --git a/data/releases/8.2/highlights/05-const-in-traits.txt b/data/releases/8.2/highlights/05-const-in-traits.txt new file mode 100644 index 0000000000..e51897ed1f --- /dev/null +++ b/data/releases/8.2/highlights/05-const-in-traits.txt @@ -0,0 +1,29 @@ +type: meta +title: Constants in traits +rfc: https://wiki.php.net/rfc/constants_in_traits + +============================================== +type: about +format: md +lang: en + +You cannot access the constant through the name of the trait, but, you can +access the constant through the class that uses the trait. + +============================================== +type: example +format: php +target: >=8.2 + +trait Foo +{ + public const CONSTANT = 1; +} + +class Bar +{ + use Foo; +} + +var_dump(Bar::CONSTANT); // 1 +var_dump(Foo::CONSTANT); // Error diff --git a/data/releases/8.2/highlights/06-deprecate-dynamic-properties.txt b/data/releases/8.2/highlights/06-deprecate-dynamic-properties.txt new file mode 100644 index 0000000000..5af249675d --- /dev/null +++ b/data/releases/8.2/highlights/06-deprecate-dynamic-properties.txt @@ -0,0 +1,46 @@ +type: meta +title: Deprecate dynamic properties RFC Doc +rfc: https://wiki.php.net/rfc/deprecate_dynamic_properties + +============================================== +type: about +format: md +lang: en + +The creation of dynamic properties is deprecated to help avoid mistakes and typos, +unless the class opts in by using the #[\AllowDynamicProperties] attribute. +stdClass allows dynamic properties. + +Usage of the __get/__set magic methods is not affected by this change. + +============================================== +type: example +format: php +target: >=8.2 + +class User +{ + public $name; +} + +$user = new User(); +$user->last_name = 'Doe'; + +$user = new stdClass(); +$user->last_name = 'Doe'; + +============================================== +type: example +format: php +target: 8.2 + +class User +{ + public $name; +} + +$user = new User(); +$user->last_name = 'Doe'; // Deprecated notice + +$user = new stdClass(); +$user->last_name = 'Doe'; // Still allowed diff --git a/data/releases/8.3/announcements/8_3_0.html b/data/releases/8.3/announcements/8_3_0.html new file mode 100644 index 0000000000..47a1d3fbeb --- /dev/null +++ b/data/releases/8.3/announcements/8_3_0.html @@ -0,0 +1,21 @@ +The PHP development team announces the immediate availability of PHP 8.3.0. This release marks +the latest minor release of the PHP language.
+ +PHP 8.3 comes with numerous improvements and new features such as:
+ +For source downloads of PHP 8.3.0 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_1.html b/data/releases/8.3/announcements/8_3_1.html new file mode 100644 index 0000000000..ee96aa500c --- /dev/null +++ b/data/releases/8.3/announcements/8_3_1.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.1. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.1 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_10.html b/data/releases/8.3/announcements/8_3_10.html new file mode 100644 index 0000000000..928fc6a087 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_10.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.10. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.10 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_11.html b/data/releases/8.3/announcements/8_3_11.html new file mode 100644 index 0000000000..5b78a67ce7 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_11.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.11. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.11 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_12.html b/data/releases/8.3/announcements/8_3_12.html new file mode 100644 index 0000000000..33a7f49e64 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_12.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.12. This is a security release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.12 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_13.html b/data/releases/8.3/announcements/8_3_13.html new file mode 100644 index 0000000000..bf9f4782b8 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_13.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.13. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.13 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_14.html b/data/releases/8.3/announcements/8_3_14.html new file mode 100644 index 0000000000..1e263c31c5 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_14.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.14. This is a security release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.14 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_15.html b/data/releases/8.3/announcements/8_3_15.html new file mode 100644 index 0000000000..dd2e20a9e5 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_15.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.15. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.15 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_16.html b/data/releases/8.3/announcements/8_3_16.html new file mode 100644 index 0000000000..b65a2de51c --- /dev/null +++ b/data/releases/8.3/announcements/8_3_16.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.16. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.16 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_17.html b/data/releases/8.3/announcements/8_3_17.html new file mode 100644 index 0000000000..54408ffb0c --- /dev/null +++ b/data/releases/8.3/announcements/8_3_17.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.17. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.17 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_19.html b/data/releases/8.3/announcements/8_3_19.html new file mode 100644 index 0000000000..87878aa89d --- /dev/null +++ b/data/releases/8.3/announcements/8_3_19.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.19. This is a security release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.19 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_2.html b/data/releases/8.3/announcements/8_3_2.html new file mode 100644 index 0000000000..b12e3c1589 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_2.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.2. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.2 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_20.html b/data/releases/8.3/announcements/8_3_20.html new file mode 100644 index 0000000000..05c3824fa6 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_20.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.20. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.20 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_21.html b/data/releases/8.3/announcements/8_3_21.html new file mode 100644 index 0000000000..72cf694d47 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_21.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.21. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.21 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_22.html b/data/releases/8.3/announcements/8_3_22.html new file mode 100644 index 0000000000..3171874c33 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_22.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.22. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.22 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_23.html b/data/releases/8.3/announcements/8_3_23.html new file mode 100644 index 0000000000..3777a0b44b --- /dev/null +++ b/data/releases/8.3/announcements/8_3_23.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.23. This is a security release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.23 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_24.html b/data/releases/8.3/announcements/8_3_24.html new file mode 100644 index 0000000000..92b1fc91d8 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_24.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.24. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.24 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_25.html b/data/releases/8.3/announcements/8_3_25.html new file mode 100644 index 0000000000..7f7b455429 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_25.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.25. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.25 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_26.html b/data/releases/8.3/announcements/8_3_26.html new file mode 100644 index 0000000000..70ed680e25 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_26.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.26. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.26 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_27.html b/data/releases/8.3/announcements/8_3_27.html new file mode 100644 index 0000000000..d590b430c2 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_27.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.27. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.27 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_28.html b/data/releases/8.3/announcements/8_3_28.html new file mode 100644 index 0000000000..e7ff75db53 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_28.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.28. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.28 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_29.html b/data/releases/8.3/announcements/8_3_29.html new file mode 100644 index 0000000000..65293df5e3 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_29.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.29. This is a security release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.29 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_3.html b/data/releases/8.3/announcements/8_3_3.html new file mode 100644 index 0000000000..c21092e2af --- /dev/null +++ b/data/releases/8.3/announcements/8_3_3.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.3. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.3 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_30.html b/data/releases/8.3/announcements/8_3_30.html new file mode 100644 index 0000000000..0e67509302 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_30.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.30. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.30 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_31.html b/data/releases/8.3/announcements/8_3_31.html new file mode 100644 index 0000000000..a3bd70602e --- /dev/null +++ b/data/releases/8.3/announcements/8_3_31.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.31. This is a security release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.31 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_4.html b/data/releases/8.3/announcements/8_3_4.html new file mode 100644 index 0000000000..f4fa42b691 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_4.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.4. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.4 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_6.html b/data/releases/8.3/announcements/8_3_6.html new file mode 100644 index 0000000000..dc59f3277f --- /dev/null +++ b/data/releases/8.3/announcements/8_3_6.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.6. This is a security release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.6 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_7.html b/data/releases/8.3/announcements/8_3_7.html new file mode 100644 index 0000000000..c3de77b30e --- /dev/null +++ b/data/releases/8.3/announcements/8_3_7.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.7. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.7 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_8.html b/data/releases/8.3/announcements/8_3_8.html new file mode 100644 index 0000000000..26e5eeeae9 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_8.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.8. This is a security release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.8 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/announcements/8_3_9.html b/data/releases/8.3/announcements/8_3_9.html new file mode 100644 index 0000000000..87906da147 --- /dev/null +++ b/data/releases/8.3/announcements/8_3_9.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.3.9. This is a bug fix release.
+ +All PHP 8.3 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.3.9 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.3/highlights/01-typed-class-constants.txt b/data/releases/8.3/highlights/01-typed-class-constants.txt new file mode 100644 index 0000000000..615ca28aea --- /dev/null +++ b/data/releases/8.3/highlights/01-typed-class-constants.txt @@ -0,0 +1,34 @@ +type: meta +title: Typed class constants RFC +rfc: https://wiki.php.net/rfc/typed_class_constants + +============================================== +type: example +format: php +target: <8.3 + +interface I { + // We may naively assume that the PHP constant is always a string. + const PHP = 'PHP 8.2'; +} + +class Foo implements I { + // But implementing classes may define it as an array. + const PHP = []; +} + +============================================== +type: example +format: php +target: >=8.3 + +interface I { + const string PHP = 'PHP 8.3'; +} + +class Foo implements I { + const string PHP = []; +} + +// Fatal error: Cannot use array as value for class constant +// Foo::PHP of type string diff --git a/data/releases/8.3/highlights/02-dynamic-class-const.txt b/data/releases/8.3/highlights/02-dynamic-class-const.txt new file mode 100644 index 0000000000..bc3098f478 --- /dev/null +++ b/data/releases/8.3/highlights/02-dynamic-class-const.txt @@ -0,0 +1,29 @@ +type: meta +title: Dynamic class constant fetch +rfc: https://wiki.php.net/rfc/dynamic_class_constant_fetch + +============================================== +type: example +format: php +target: <8.3 + +class Foo { + const PHP = 'PHP 8.2'; +} + +$searchableConstant = 'PHP'; + +var_dump(constant(Foo::class . "::{$searchableConstant}")); + +============================================== +type: example +format: php +target: >=8.3 + +class Foo { + const PHP = 'PHP 8.2'; +} + +$searchableConstant = 'PHP'; + +var_dump(constant(Foo::class . "::{$searchableConstant}")); diff --git a/data/releases/8.3/highlights/03-override-attr.txt b/data/releases/8.3/highlights/03-override-attr.txt new file mode 100644 index 0000000000..aca006d8c3 --- /dev/null +++ b/data/releases/8.3/highlights/03-override-attr.txt @@ -0,0 +1,63 @@ +type: meta +title: New #[\Override] attribute +rfc: https://wiki.php.net/rfc/marking_overriden_methods + +============================================== +type: about +format: md +lang: en + +By adding the #[\Override] attribute to a method, PHP will ensure that a +method with the same name exists in a parent class or in an implemented interface. + +Adding the attribute makes it clear that overriding a parent method is intentional +and simplifies refactoring, because the removal of an overridden parent method will +be detected. + + +============================================== +type: example +format: php +target: <8.3 + +use PHPUnit\Framework\TestCase; + +final class MyTest extends TestCase { + protected $logFile; + + protected function setUp(): void { + $this->logFile = fopen('/tmp/logfile', 'w'); + } + + protected function taerDown(): void { + fclose($this->logFile); + unlink('/tmp/logfile'); + } +} + +// The log file will never be removed, because the +// method name was mistyped (taerDown vs tearDown). + +============================================== +type: example +format: php +target: >=8.3 + +use PHPUnit\Framework\TestCase; + +final class MyTest extends TestCase { + protected $logFile; + + protected function setUp(): void { + $this->logFile = fopen('/tmp/logfile', 'w'); + } + + #[\Override] + protected function taerDown(): void { + fclose($this->logFile); + unlink('/tmp/logfile'); + } +} + +// Fatal error: MyTest::taerDown() has #[\Override] attribute, +// but no matching parent method exists diff --git a/data/releases/8.3/highlights/04-deep-cloning-readonly.txt b/data/releases/8.3/highlights/04-deep-cloning-readonly.txt new file mode 100644 index 0000000000..7d800289ca --- /dev/null +++ b/data/releases/8.3/highlights/04-deep-cloning-readonly.txt @@ -0,0 +1,59 @@ +type: meta +title: Deep-cloning of readonly properties +rfc: https://wiki.php.net/rfc/readonly_amendments + +============================================== +type: about +format: md +lang: en + +readonly properties may now be modified once within the magic __clone +method to enable deep-cloning of readonly properties. + +============================================== +type: example +format: php +target: <8.3 + +class PHP { + public string $version = '8.2'; +} + +readonly class Foo { + public function __construct( + public PHP $php + ) {} + + public function __clone(): void { + $this->php = clone $this->php; + } +} + +$instance = new Foo(new PHP()); +$cloned = clone $instance; + +// Fatal error: Cannot modify readonly property Foo::$php + +============================================== +type: example +format: php +target: >=8.3 + +class PHP { + public string $version = '8.2'; +} + +readonly class Foo { + public function __construct( + public PHP $php + ) {} + + public function __clone(): void { + $this->php = clone $this->php; + } +} + +$instance = new Foo(new PHP()); +$cloned = clone $instance; + +$cloned->php->version = '8.3'; diff --git a/data/releases/8.3/highlights/05-json-validate.txt b/data/releases/8.3/highlights/05-json-validate.txt new file mode 100644 index 0000000000..b7440b3fd7 --- /dev/null +++ b/data/releases/8.3/highlights/05-json-validate.txt @@ -0,0 +1,31 @@ +type: meta +title: New json_validate() function +rfc: https://wiki.php.net/rfc/json_validate + +============================================== +type: about +format: md +lang: en + +`json_validate()` allows to check if a string is syntactically valid JSON, +while being more efficient than `json_decode()`. + +============================================== +type: example +format: php +target: <8.3 + +function json_validate(string $string): bool { + json_decode($string); + + return json_last_error() === JSON_ERROR_NONE; +} + +var_dump(json_validate('{ "test": { "foo": "bar" } }')); // true + +============================================== +type: example +format: php +target: >=8.3 + +var_dump(json_validate('{ "test": { "foo": "bar" } }')); // true diff --git a/data/releases/8.3/highlights/06-randomizer-bytes.txt b/data/releases/8.3/highlights/06-randomizer-bytes.txt new file mode 100644 index 0000000000..794c3096f5 --- /dev/null +++ b/data/releases/8.3/highlights/06-randomizer-bytes.txt @@ -0,0 +1,59 @@ +type: meta +title: New Randomizer::getBytesFromString() method +rfc: https://wiki.php.net/rfc/randomizer_additions#getbytesfromstring + +============================================== +type: about +format: md +lang: en + +The Random Extension that was added in PHP 8.2 was extended by a new method to generate random +strings consisting of specific bytes only. This method allows the developer to easily generate random +identifiers, such as domain names, and numeric strings of arbitrary length. + +============================================== +type: example +format: php +target: <8.3 + +// This function needs to be manually implemented. +function getBytesFromString(string $string, int $length) { + $stringLength = strlen($string); + + $result = ''; + for ($i = 0; $i < $length; $i++) { + // random_int is not seedable for testing, but secure. + $result .= $string[random_int(0, $stringLength - 1)]; + } + + return $result; +} + +$randomDomain = sprintf( + "%s.example.com", + getBytesFromString( + 'abcdefghijklmnopqrstuvwxyz0123456789', + 16, + ), +); + +echo $randomDomain; + +============================================== +type: example +format: php +target: >=8.3 + +// A \Random\Engine may be passed for seeding, +// the default is the secure engine. +$randomizer = new \Random\Randomizer(); + +$randomDomain = sprintf( + "%s.example.com", + $randomizer->getBytesFromString( + 'abcdefghijklmnopqrstuvwxyz0123456789', + 16, + ), +); + +echo $randomDomain; diff --git a/data/releases/8.3/highlights/07-randomizer-float.txt b/data/releases/8.3/highlights/07-randomizer-float.txt new file mode 100644 index 0000000000..1112e21065 --- /dev/null +++ b/data/releases/8.3/highlights/07-randomizer-float.txt @@ -0,0 +1,59 @@ +type: meta +title: New Randomizer::getFloat() and Randomizer::nextFloat() methods +rfc: https://wiki.php.net/rfc/randomizer_additions#getfloat + +============================================== +type: about +format: md +lang: en + +Due to the limited precision and implicit rounding of floating point numbers, +generating an unbiased float lying within a specific interval is non-trivial +and the commonly used userland solutions may generate biased results or numbers +outside the requested range. + +The Randomizer was also extended with two methods to generate random floats in an +unbiased fashion. The Randomizer::getFloat() method uses the γ-section algorithm +that was published in Drawing Random Floating-Point Numbers from an Interval. +Frédéric Goualard, ACM Trans. Model. Comput. Simul., 32:3, 2022. + +============================================== +type: example +format: plain +target: <8.3 + +// Returns a random float between $min and $max, both including. +function getFloat(float $min, float $max) { + // This algorithm is biased for specific inputs and may + // return values outside the given range. This is impossible + // to work around in userland. + $offset = random_int(0, PHP_INT_MAX) / PHP_INT_MAX; + + return $offset * ($max - $min) + $min; +} + +$temperature = getFloat(-89.2, 56.7); + +$chanceForTrue = 0.1; +// getFloat(0, 1) might return the upper bound, i.e. 1, +// introducing a small bias. +$myBoolean = getFloat(0, 1) < $chanceForTrue; + +============================================== +type: example +format: php +target: >=8.3 + +$randomizer = new \Random\Randomizer(); + +$temperature = $randomizer->getFloat( + -89.2, + 56.7, + \Random\IntervalBoundary::ClosedClosed, +); + +$chanceForTrue = 0.1; +// Randomizer::nextFloat() is equivalent to +// Randomizer::getFloat(0, 1, \Random\IntervalBoundary::ClosedOpen). +// The upper bound, i.e. 1, will not be returned. +$myBoolean = $randomizer->nextFloat() < $chanceForTrue; diff --git a/data/releases/8.3/highlights/08-cli-linter.txt b/data/releases/8.3/highlights/08-cli-linter.txt new file mode 100644 index 0000000000..0bf386a7da --- /dev/null +++ b/data/releases/8.3/highlights/08-cli-linter.txt @@ -0,0 +1,27 @@ +type: meta +title: Command line linter supports multiple files +rfc: https://github.com/php/php-src/issues/10024 + +============================================== +type: about +format: md +lang: en + +The command line linter now accepts variadic input for filenames to lint + +============================================== +type: example +format: plain +target: <8.3 + +php -l foo.php bar.php +No syntax errors detected in foo.php + +============================================== +type: example +format: plain +target: >=8.3 + +php -l foo.php bar.php +No syntax errors detected in foo.php +No syntax errors detected in bar.php diff --git a/data/releases/8.4/announcements/8_4_1.html b/data/releases/8.4/announcements/8_4_1.html new file mode 100644 index 0000000000..0253de5f79 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_1.html @@ -0,0 +1,20 @@ +The PHP development team announces the immediate availability of PHP 8.4.1. This release marks +the latest minor release of the PHP language.
+ +PHP 8.4 comes with numerous improvements and new features such as:
+ +For source downloads of PHP 8.4.1 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_10.html b/data/releases/8.4/announcements/8_4_10.html new file mode 100644 index 0000000000..921b96c027 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_10.html @@ -0,0 +1,12 @@ +The PHP development team announces the immediate availability of PHP 8.4.10. This is a security release.
+ +Version 8.4.9 was skipped because it was tagged without including security patches.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.10 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_11.html b/data/releases/8.4/announcements/8_4_11.html new file mode 100644 index 0000000000..402cba2492 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_11.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.11. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.11 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_12.html b/data/releases/8.4/announcements/8_4_12.html new file mode 100644 index 0000000000..e9afa3c0e0 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_12.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.12. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.12 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_13.html b/data/releases/8.4/announcements/8_4_13.html new file mode 100644 index 0000000000..b1f6118cb0 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_13.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.13. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.13 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_14.html b/data/releases/8.4/announcements/8_4_14.html new file mode 100644 index 0000000000..2e81c51a60 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_14.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.14. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.14 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_15.html b/data/releases/8.4/announcements/8_4_15.html new file mode 100644 index 0000000000..e8cebca2da --- /dev/null +++ b/data/releases/8.4/announcements/8_4_15.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.15. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.15 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_16.html b/data/releases/8.4/announcements/8_4_16.html new file mode 100644 index 0000000000..31dd2601ef --- /dev/null +++ b/data/releases/8.4/announcements/8_4_16.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.16. This is a security release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.16 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_17.html b/data/releases/8.4/announcements/8_4_17.html new file mode 100644 index 0000000000..7a51c9bacc --- /dev/null +++ b/data/releases/8.4/announcements/8_4_17.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.17. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.17 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_18.html b/data/releases/8.4/announcements/8_4_18.html new file mode 100644 index 0000000000..5134f8d3e9 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_18.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.18. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.18 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_19.html b/data/releases/8.4/announcements/8_4_19.html new file mode 100644 index 0000000000..da1bf44743 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_19.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.19. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.19 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_2.html b/data/releases/8.4/announcements/8_4_2.html new file mode 100644 index 0000000000..9ad2f3650e --- /dev/null +++ b/data/releases/8.4/announcements/8_4_2.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.2. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.2 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_20.html b/data/releases/8.4/announcements/8_4_20.html new file mode 100644 index 0000000000..8b0bd52624 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_20.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.20. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.20 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_21.html b/data/releases/8.4/announcements/8_4_21.html new file mode 100644 index 0000000000..439481a264 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_21.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.21. This is a security release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.21 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_3.html b/data/releases/8.4/announcements/8_4_3.html new file mode 100644 index 0000000000..03c257c221 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_3.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.3. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.3 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_4.html b/data/releases/8.4/announcements/8_4_4.html new file mode 100644 index 0000000000..2048897a22 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_4.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.4. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.4 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_5.html b/data/releases/8.4/announcements/8_4_5.html new file mode 100644 index 0000000000..053b773cdf --- /dev/null +++ b/data/releases/8.4/announcements/8_4_5.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.5. This is a security release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.5 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_6.html b/data/releases/8.4/announcements/8_4_6.html new file mode 100644 index 0000000000..3d43b6c591 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_6.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.6. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.6 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_7.html b/data/releases/8.4/announcements/8_4_7.html new file mode 100644 index 0000000000..581dc7be32 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_7.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.7. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.7 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/announcements/8_4_8.html b/data/releases/8.4/announcements/8_4_8.html new file mode 100644 index 0000000000..6a32297000 --- /dev/null +++ b/data/releases/8.4/announcements/8_4_8.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.4.8. This is a bug fix release.
+ +All PHP 8.4 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.4.8 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.4/highlights/01-property-hooks.txt b/data/releases/8.4/highlights/01-property-hooks.txt new file mode 100644 index 0000000000..026cbb1c94 --- /dev/null +++ b/data/releases/8.4/highlights/01-property-hooks.txt @@ -0,0 +1,105 @@ +type: meta +title: Property Hooks +rfc: https://wiki.php.net/rfc/property-hooks + +============================================== +type: about +format: md +lang: en + +Property hooks provide support for computed properties that can natively be understood by IDEs +and static analysis tools, without needing to write docblock comments that might go out of sync. + +Furthermore, they allow reliable pre- or post-processing of values, without needing to check +whether a matching getter or setter exists in the class. + + +============================================== +type: example +format: php +target: <8.4 + +class Locale +{ + private string $languageCode; + private string $countryCode; + + public function __construct(string $languageCode, string $countryCode) + { + $this->setLanguageCode($languageCode); + $this->setCountryCode($countryCode); + } + + public function getLanguageCode(): string + { + return $this->languageCode; + } + + public function setLanguageCode(string $languageCode): void + { + $this->languageCode = $languageCode; + } + + public function getCountryCode(): string + { + return $this->countryCode; + } + + public function setCountryCode(string $countryCode): void + { + $this->countryCode = strtoupper($countryCode); + } + + public function setCombinedCode(string $combinedCode): void + { + [$languageCode, $countryCode] = explode('_', $combinedCode, 2); + + $this->setLanguageCode($languageCode); + $this->setCountryCode($countryCode); + } + + public function getCombinedCode(): string + { + return \sprintf("%s_%s", $this->languageCode, $this->countryCode); + } +} + +$brazilianPortuguese = new Locale('pt', 'br'); +var_dump($brazilianPortuguese->getCountryCode()); // BR +var_dump($brazilianPortuguese->getCombinedCode()); // pt_BR + +============================================== +type: example +format: php +target: >=8.4 + +PHP 8.4 +class Locale +{ + public string $languageCode; + + public string $countryCode + { + set (string $countryCode) { + $this->countryCode = strtoupper($countryCode); + } + } + + public string $combinedCode + { + get => \sprintf("%s_%s", $this->languageCode, $this->countryCode); + set (string $value) { + [$this->languageCode, $this->countryCode] = explode('_', $value, 2); + } + } + + public function __construct(string $languageCode, string $countryCode) + { + $this->languageCode = $languageCode; + $this->countryCode = $countryCode; + } +} + +$brazilianPortuguese = new Locale('pt', 'br'); +var_dump($brazilianPortuguese->countryCode); // BR +var_dump($brazilianPortuguese->combinedCode); // pt_BR diff --git a/data/releases/8.4/highlights/02-asymmetric-visibility.txt b/data/releases/8.4/highlights/02-asymmetric-visibility.txt new file mode 100644 index 0000000000..f8aa1fdc34 --- /dev/null +++ b/data/releases/8.4/highlights/02-asymmetric-visibility.txt @@ -0,0 +1,64 @@ +type: meta +title: Asymmetric Visibility +rfc: https://wiki.php.net/rfc/asymmetric-visibility-v2 + +============================================== +type: about +format: md +lang: en + +The scope to write to a property may now be controlled independently +of the scope to read the property, reducing the need for boilerplate +getter methods to expose a property’s value without allowing modification +from the outside of a class. + +============================================== +type: example +format: php +target: <8.4 + +class PhpVersion +{ + /** + * @deprecated 8.3 use PhpVersion::getVersion() instead + */ + public function getPhpVersion(): string + { + return $this->getVersion(); + } + + public function getVersion(): string + { + return '8.3'; + } +} + +$phpVersion = new PhpVersion(); +// No indication that the method is deprecated. +echo $phpVersion->getPhpVersion(); + +============================================== +type: example +format: php +target: >=8.4 + +class PhpVersion +{ + #[\Deprecated( + message: "use PhpVersion::getVersion() instead", + since: "8.4", + )] + public function getPhpVersion(): string + { + return $this->getVersion(); + } + + public function getVersion(): string + { + return '8.4'; + } +} + +$phpVersion = new PhpVersion(); +// Deprecated: Method PhpVersion::getPhpVersion() is deprecated since 8.4, use PhpVersion::getVersion() instead +echo $phpVersion->getPhpVersion(); diff --git a/data/releases/8.4/highlights/03-depreciated.txt b/data/releases/8.4/highlights/03-depreciated.txt new file mode 100644 index 0000000000..b93e596a15 --- /dev/null +++ b/data/releases/8.4/highlights/03-depreciated.txt @@ -0,0 +1,61 @@ +type: meta +title: #[\Depreciated] Attribute + +============================================== +type: about +format: md +lang: en + +The new `#[\Deprecated]` attribute makes PHP’s existing deprecation mechanism available to +user-defined functions, methods, and class constants. + +============================================== +type: example +format: php +target: <8.4 + +class PhpVersion +{ + /** + * @deprecated 8.3 use PhpVersion::getVersion() instead + */ + public function getPhpVersion(): string + { + return $this->getVersion(); + } + + public function getVersion(): string + { + return '8.3'; + } +} + +$phpVersion = new PhpVersion(); +// No indication that the method is deprecated. +echo $phpVersion->getPhpVersion(); + +============================================== +type: example +format: php +target: >=8.4 + +class PhpVersion +{ + #[\Deprecated( + message: "use PhpVersion::getVersion() instead", + since: "8.4", + )] + public function getPhpVersion(): string + { + return $this->getVersion(); + } + + public function getVersion(): string + { + return '8.4'; + } +} + +$phpVersion = new PhpVersion(); +// Deprecated: Method PhpVersion::getPhpVersion() is deprecated since 8.4, use PhpVersion::getVersion() instead +echo $phpVersion->getPhpVersion(); diff --git a/data/releases/8.4/highlights/04-ext-dom-html5.txt b/data/releases/8.4/highlights/04-ext-dom-html5.txt new file mode 100644 index 0000000000..5895d9d27d --- /dev/null +++ b/data/releases/8.4/highlights/04-ext-dom-html5.txt @@ -0,0 +1,56 @@ +type: meta +title: New ext-dom features and HTML5 support +rfc: https://wiki.php.net/rfc/dom_additions_84 +rfc: https://wiki.php.net/rfc/domdocument_html5_parser + +============================================== +type: about +format: md +lang: en + +New DOM API that includes standards-compliant support for parsing HTML5 documents, +fixes several long-standing compliance bugs in the behavior of the DOM functionality, +and adds several functions to make working with documents more convenient. + +The new DOM API is available within the Dom namespace. Documents using the new DOM API +can be created using the Dom\HTMLDocument and Dom\XMLDocument classes. + + +============================================== +type: example +format: php +target: <8.4 + +$dom = new DOMDocument(); +$dom->loadHTML( + <<<'HTML' +The PHP development team announces the immediate availability of PHP 8.5.0. This release marks the latest minor release of the PHP language.
+ +PHP 8.5 comes with numerous improvements and new features such as:
++ For source downloads of PHP 8.5.0 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +
++ The migration guide is available in the PHP Manual. + Please consult it for the detailed list of new features and backward incompatible changes. +
+Kudos to all the contributors and supporters!
\ No newline at end of file diff --git a/data/releases/8.5/announcements/8_5_1.html b/data/releases/8.5/announcements/8_5_1.html new file mode 100644 index 0000000000..f1b1a51a8e --- /dev/null +++ b/data/releases/8.5/announcements/8_5_1.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.5.1. This is a security release.
+ +All PHP 8.5 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.5.1 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.5/announcements/8_5_2.html b/data/releases/8.5/announcements/8_5_2.html new file mode 100644 index 0000000000..efef1d0dc1 --- /dev/null +++ b/data/releases/8.5/announcements/8_5_2.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.5.2. This is a bug fix release.
+ +All PHP 8.5 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.5.2 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.5/announcements/8_5_3.html b/data/releases/8.5/announcements/8_5_3.html new file mode 100644 index 0000000000..0650f56b66 --- /dev/null +++ b/data/releases/8.5/announcements/8_5_3.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.5.3. This is a bug fix release.
+ +All PHP 8.5 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.5.3 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.5/announcements/8_5_4.html b/data/releases/8.5/announcements/8_5_4.html new file mode 100644 index 0000000000..a6c16ce30e --- /dev/null +++ b/data/releases/8.5/announcements/8_5_4.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.5.4. This is a bug fix release.
+ +All PHP 8.5 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.5.4 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.5/announcements/8_5_5.html b/data/releases/8.5/announcements/8_5_5.html new file mode 100644 index 0000000000..4336579584 --- /dev/null +++ b/data/releases/8.5/announcements/8_5_5.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.5.5. This is a bug fix release.
+ +All PHP 8.5 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.5.5 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.5/announcements/8_5_6.html b/data/releases/8.5/announcements/8_5_6.html new file mode 100644 index 0000000000..097fb4c4b2 --- /dev/null +++ b/data/releases/8.5/announcements/8_5_6.html @@ -0,0 +1,10 @@ +The PHP development team announces the immediate availability of PHP 8.5.6. This is a security release.
+ +All PHP 8.5 users are encouraged to upgrade to this version.
+ +For source downloads of PHP 8.5.6 please visit our downloads page, +Windows source and binaries can also be found there. +The list of changes is recorded in the ChangeLog. +
\ No newline at end of file diff --git a/data/releases/8.5/highlights/01-uri-extension.txt b/data/releases/8.5/highlights/01-uri-extension.txt new file mode 100644 index 0000000000..011ffc58b4 --- /dev/null +++ b/data/releases/8.5/highlights/01-uri-extension.txt @@ -0,0 +1,45 @@ +type: meta +title: URI Extension + +============================================== +type: short +lang: en + +PHP 8.5 adds a built-in URI extension to parse, normalize, and handle URLs +following _RFC 3986_ and _WHATWG URL_ standards. + +============================================== +type: about +format: md +lang: en + +The new always-available URI extension provides APIs to securely parse and modify +URIs and URLs according to the RFC 3986 and the WHATWG URL standards. + +Powered by the uriparser (RFC 3986) and Lexbor (WHATWG URL) libraries. + +Learn more about the backstory of this feature in The PHP Foundation’s blog. + + +============================================== +type: example +format: php +target: <8.4 + +$components = parse_url('https://php.net/releases/8.4/en.php'); + +var_dump($components['host']); +// string(7) "php.net" + + +============================================== +type: example +format: php +target: >=8.5 + +use Uri\Rfc3986\Uri; + +$uri = new Uri('https://php.net/releases/8.5/en.php'); + +var_dump($uri->getHost()); +// string(7) "php.net" diff --git a/data/releases/8.5/highlights/02-pipe-operator.txt b/data/releases/8.5/highlights/02-pipe-operator.txt new file mode 100644 index 0000000000..5f607bb673 --- /dev/null +++ b/data/releases/8.5/highlights/02-pipe-operator.txt @@ -0,0 +1,54 @@ +type: meta +title: Pipe Operator + +============================================== +type: short +lang: en + +The `|>` operator enables chaining callables left-to-right, passing values smoothly through +multiple functions without intermediary variables. + +============================================== +type: about +format: md +lang: en + +The pipe operator allows chaining function calls together without dealing with intermediary variables. +This enables replacing many "nested calls" with a chain that can be read forwards, rather than inside-out. + +Learn more about the backstory of this feature in The PHP Foundation’s blog. + +============================================== +type: example +format: php +target: 8.4 + +$title = ' PHP 8.5 Released '; + +$slug = strtolower( + str_replace('.', '', + str_replace(' ', '-', + trim($title) + ) + ) +); + +var_dump($slug); +// string(15) "php-85-released" + + +============================================== +type: example +format: php +target: >=8.5 + +$title = ' PHP 8.5 Released '; + +$slug = $title + |> trim(...) + |> (fn($str) => str_replace(' ', '-', $str)) + |> (fn($str) => str_replace('.', '', $str)) + |> strtolower(...); + +var_dump($slug); +// string(15) "php-85-released" diff --git a/data/releases/8.5/highlights/03-clone-with.txt b/data/releases/8.5/highlights/03-clone-with.txt new file mode 100644 index 0000000000..45b2980c29 --- /dev/null +++ b/data/releases/8.5/highlights/03-clone-with.txt @@ -0,0 +1,61 @@ +type: meta +title: Clone With +rfc: https://wiki.php.net/rfc/clone_with_v2 + +============================================== +type: short +format: md +lang: en + +Clone objects and update properties with the new `clone()` syntax, making the "with-er" pattern simple for `readonly` +classes. + +============================================== +type: example +format: php + +readonly class Color +{ + public function __construct( + public int $red, + public int $green, + public int $blue, + public int $alpha = 255, + ) {} + + public function withAlpha(int $alpha): self + { + $values = get_object_vars($this); + $values['alpha'] = $alpha; + + return new self(...$values); + } +} + +$blue = new Color(79, 91, 147); +$transparentBlue = $blue->withAlpha(128); + +============================================== +type: example +format: php +target: >=8.5 + +readonly class Color +{ + public function __construct( + public int $red, + public int $green, + public int $blue, + public int $alpha = 255, + ) {} + + public function withAlpha(int $alpha): self + { + return clone($this, [ + 'alpha' => $alpha, + ]); + } +} + +$blue = new Color(79, 91, 147); +$transparentBlue = $blue->withAlpha(128); diff --git a/data/releases/8.5/highlights/04-nodiscard.txt b/data/releases/8.5/highlights/04-nodiscard.txt new file mode 100644 index 0000000000..11afcac315 --- /dev/null +++ b/data/releases/8.5/highlights/04-nodiscard.txt @@ -0,0 +1,49 @@ +type: meta +title: #[\NoDiscard] Attribute +rfc: https://wiki.php.net/rfc/marking_return_value_as_important + +============================================== +type: short +format: md +lang: en + +The #[\NoDiscard] attribute warns when a return value isn't used, helping prevent mistakes and improving +overall API safety. + +============================================== +type: about +format: md +lang: en + +By adding the #[\NoDiscard] attribute to a function, PHP will check whether the returned value +is consumed and emit a warning if it is not. This allows improving the safety of APIs where +the returned value is important, but it's easy to forget using the return value by accident. + +The associated (void) cast can be used to indicate that a value is intentionally unused. + +============================================== +type: example +format: php +target: <8.5 + +function getPhpVersion(): string +{ + return 'PHP 8.4'; +} + +getPhpVersion(); // No warning + +============================================== +type: example +format: php +target: >=8.5 + +#[\NoDiscard] +function getPhpVersion(): string +{ + return 'PHP 8.5'; +} + +getPhpVersion(); +// Warning: The return value of function getPhpVersion() should +// either be used or intentionally ignored by casting it as (void) diff --git a/data/releases/8.5/highlights/05-closure-first-class-constants.txt b/data/releases/8.5/highlights/05-closure-first-class-constants.txt new file mode 100644 index 0000000000..f2603fa896 --- /dev/null +++ b/data/releases/8.5/highlights/05-closure-first-class-constants.txt @@ -0,0 +1,56 @@ +type: meta +title: Closures and First-Class Callables in Constant Expressions +rfc: https://wiki.php.net/rfc/closures_in_const_expr +rfc: https://wiki.php.net/rfc/fcc_in_const_expr + +============================================== +type: short +lang: en + +Static closures can now be used in constant expressions, especially useful in attributes. + +============================================== +type: about +format: md +lang: en + +Static closures and first-class callables can now be used in constant expressions. +This includes attribute parameters, default values of properties and parameters, and constants. + +============================================== +type: example +format: php +target: <8.5 + +final class PostsController +{ + #[AccessControl( + new Expression('request.user === post.getAuthor()'), + )] + public function update( + Request $request, + Post $post, + ): Response { + // ... + } +} +============================================== +type: example +format: php +target: >=8.5 + +final class PostsController +{ + #[AccessControl(static function ( + Request $request, + Post $post, + ): bool { + return $request->user === $post->getAuthor(); + })] + public function update( + Request $request, + Post $post, + ): Response { + // ... + } +} diff --git a/data/releases/8.5/highlights/06-array-first-last.txt b/data/releases/8.5/highlights/06-array-first-last.txt new file mode 100644 index 0000000000..4f66d23e7f --- /dev/null +++ b/data/releases/8.5/highlights/06-array-first-last.txt @@ -0,0 +1,34 @@ +type: meta +title: Array First / Last Functions + +============================================== +type: short +lang: en + +New array helper functions are available for common functionality + +============================================== +type: about +format: md +lang: en + +The `array_first()` and `array_last()` functions return the first or last value of an array, respectively. +If the array is empty, null is returned (making it easy to compose with the ?? operator). + + +============================================== +type: example +format: php +target: <8.5 + +$lastEvent = $events === [] + ? null + : $events[array_key_last($events)]; + + +============================================== +type: example +format: php +target: >=8.5 + +$lastEvent = array_last($events); diff --git a/data/releases/8.5/highlights/07-persistent-curl-handles.txt b/data/releases/8.5/highlights/07-persistent-curl-handles.txt new file mode 100644 index 0000000000..002b5f3b65 --- /dev/null +++ b/data/releases/8.5/highlights/07-persistent-curl-handles.txt @@ -0,0 +1,50 @@ +type: meta +title: Persistent cURL Share Handles +rfc: https://wiki.php.net/rfc/curl_share_persistence +rfc: https://wiki.php.net/rfc/curl_share_persistence_improvement + +============================================== +type: short +lang: en + +Handles can now be persisted across multiple PHP requests, avoiding the cost of repeated +connection initialization to the same hosts. + +============================================== +type: about +format: md +lang: en + +Handles can now be persisted across multiple PHP requests, avoiding the cost of repeated +connection initialization to the same hosts. + +============================================== +type: example +format: php +target: <8.5 + + +$sh = curl_share_init(); +curl_share_setopt($sh, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS); +curl_share_setopt($sh, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT); + +$ch = curl_init('https://php.net/'); +curl_setopt($ch, CURLOPT_SHARE, $sh); + +curl_exec($ch); + +============================================== +type: example +format: php +target: >=8.5 + +$sh = curl_share_init_persistent([ + CURL_LOCK_DATA_DNS, + CURL_LOCK_DATA_CONNECT, +]); + +$ch = curl_init('https://php.net/'); +curl_setopt($ch, CURLOPT_SHARE, $sh); + +// This may now reuse the connection from an earlier SAPI request +curl_exec($ch); diff --git a/images/bg-texture-dark.png b/images/bg-texture-dark.png new file mode 100644 index 0000000000..76f3b3e915 Binary files /dev/null and b/images/bg-texture-dark.png differ diff --git a/images/bg-texture-light.png b/images/bg-texture-light.png new file mode 100644 index 0000000000..7ac2420565 Binary files /dev/null and b/images/bg-texture-light.png differ diff --git a/images/landing/contribute.png b/images/landing/contribute.png new file mode 100644 index 0000000000..07d570ab2c Binary files /dev/null and b/images/landing/contribute.png differ diff --git a/images/landing/docs-translator.png b/images/landing/docs-translator.png new file mode 100644 index 0000000000..1f28200e8f Binary files /dev/null and b/images/landing/docs-translator.png differ diff --git a/images/landing/elephpant.png b/images/landing/elephpant.png new file mode 100644 index 0000000000..dd8d752118 Binary files /dev/null and b/images/landing/elephpant.png differ diff --git a/images/landing/externals-io.svg b/images/landing/externals-io.svg new file mode 100644 index 0000000000..b1480073ef --- /dev/null +++ b/images/landing/externals-io.svg @@ -0,0 +1,4 @@ + diff --git a/images/landing/php-bugs.png b/images/landing/php-bugs.png new file mode 100644 index 0000000000..e3f3004315 Binary files /dev/null and b/images/landing/php-bugs.png differ diff --git a/images/logos/community-phpdevelopers-discord.webp b/images/logos/community-phpdevelopers-discord.webp new file mode 100644 index 0000000000..057318a64f Binary files /dev/null and b/images/logos/community-phpdevelopers-discord.webp differ diff --git a/images/logos/composer.png b/images/logos/composer.png new file mode 100644 index 0000000000..e0782d0593 Binary files /dev/null and b/images/logos/composer.png differ diff --git a/images/logos/github_invertocat_white.svg b/images/logos/github_invertocat_white.svg new file mode 100644 index 0000000000..527ba11c50 --- /dev/null +++ b/images/logos/github_invertocat_white.svg @@ -0,0 +1,10 @@ + diff --git a/images/logos/php-foundation.svg b/images/logos/php-foundation.svg new file mode 100644 index 0000000000..cf5b3a6942 --- /dev/null +++ b/images/logos/php-foundation.svg @@ -0,0 +1,11 @@ + diff --git a/images/logos/phpc-discord.png b/images/logos/phpc-discord.png new file mode 100644 index 0000000000..7a79320cc7 Binary files /dev/null and b/images/logos/phpc-discord.png differ diff --git a/images/logos/reddit.png b/images/logos/reddit.png new file mode 100644 index 0000000000..9ce7ce2541 Binary files /dev/null and b/images/logos/reddit.png differ diff --git a/include/branch-meta.inc b/include/branch-meta.inc new file mode 100644 index 0000000000..12bf5a1664 --- /dev/null +++ b/include/branch-meta.inc @@ -0,0 +1,91 @@ + [ + 'features' => [ + [ + 'title' => 'URI Extension', + 'about' => 'PHP 8.5 adds a built-in URI extension to parse, normalize, and handle URLs following RFC 3986 and WHATWG URL standards.', + ], + [ + 'title' => 'Pipe Operator', + 'about' => 'The |> operator enables chaining callables left-to-right, passing values smoothly through multiple functions without intermediary variables.', + ], + [ + 'title' => 'Clone With', + 'about' => 'Clone objects and update properties with the new clone() syntax, making the "with-er" pattern simple for readonly classes.', + ], + [ + 'title' => '#[\NoDiscard] Attribute', + 'about' => 'The #[\NoDiscard] attribute warns when a return value isn’t used, helping prevent mistakes and improving overall API safety.', + ], + [ + 'title' => 'Closures and First-Class Callables in Constant Expressions', + 'about' => 'Static closures and first-class callables can now be used in constant expressions, such as attribute parameters.', + ], + [ + 'title' => 'Persistent cURL Share Handles', + 'about' => 'Handles can now be persisted across multiple PHP requests, avoiding the cost of repeated connection initialization to the same hosts.', + ], + ], + ], + '8.4' => [ + 'support_label' => 'Supported', + 'features' => [ + [ + 'title' => 'Property Hooks', + 'short' => 'Property Hooks allow intercepting properties', + ], + [ + 'title' => 'Asymmetric Property Visibility', + 'short' => 'Asymmetric Visibility for get and set', + ], + [ + 'title' => '#[Derpeciated] Attribute', + 'short' => '#[Depreciated] attribute signals removal intent', + ], + [ + 'title' => 'Additional Array Functions', + 'short' => 'New array lookup and query options', + ], + ], + ], + '8.3' => [ + 'support_label' => 'Security Support', + 'features' => [ + [ + 'title' => 'Typed Class Constants', + 'short' => 'Class constants can now be typed', + ], + [ + 'title' => 'Dynamic Class Constants', + 'about' => 'Class constants can now be accessed via dynamic calls', + ], + [ + 'title' => 'Readonly Deep Cloning', + 'short' => 'Enhanced deep cloning of readonly instances', + ], + [ + 'title' => 'Randomizer Improvements', + 'short' => 'Generate random strings from provided character sets', + ], + ], + ], + '8.2' => [ + 'support_label' => 'Security Support', + 'features' => [ + [ + 'title' => 'Readonly classes', + 'short' => 'Entire classes can now be marked Readonly', + ], + [ + 'title' => 'Disjunction Normal Form Types', + 'short' => 'Improved type support with Disjunction Normal Forms', + ], + [ + 'title' => 'Improved Standalone Types', + 'short' => 'Null, true and false are now usable as types', + ], + ], + ], +]; diff --git a/include/branches.inc b/include/branches.inc index deb1f79841..51ac7e5f92 100644 --- a/include/branches.inc +++ b/include/branches.inc @@ -99,6 +99,11 @@ function version_number_to_branch(string $version): ?string { } function get_all_branches() { + static $cache = null; + if ($cache) { + return $cache; + } + $branches = []; foreach ($GLOBALS['OLDRELEASES'] as $major => $releases) { @@ -132,7 +137,7 @@ function get_all_branches() { krsort($branch); } - return $branches; + return $cache = $branches; } function get_active_branches($include_recent_eols = true) { diff --git a/include/communities.inc b/include/communities.inc new file mode 100644 index 0000000000..ff347e0a12 --- /dev/null +++ b/include/communities.inc @@ -0,0 +1,28 @@ + 'Reddit', + 'about' => 'Reddit has an active PHP community discussing the language and its ecosystem.', + 'image' => '/images/logos/reddit.png', + 'href' => 'https://www.reddit.com/r/PHP/', + ], + [ + 'title' => '"PHP Community" Discord', + 'about' => 'Join thousands of users on Discord talking about PHP.', + 'image' => '/images/logos/phpc-discord.png', + 'href' => 'https://discord.phpc.social/', + ], + [ + 'title' => 'Official Mailing Lists', + 'about' => 'Help and guidance, as well as proposals & discussions on the future of the language.', + 'image' => '/images/logos/new-php-logo.png', + 'href' => '/mailing-lists.php', + ], + [ + 'title' => '"PHP Developers" Discord', + 'about' => 'Born in 2018, it is the first community on Discord dedicated to PHP developers. Open for both experts and apprentices.', + 'image' => '/images/logos/community-phpdevelopers-discord.webp', + 'href' => 'https://discord.gg/php-developers-484326318851358720', + ] +]; diff --git a/include/development-links.inc b/include/development-links.inc new file mode 100644 index 0000000000..21e30dc56c --- /dev/null +++ b/include/development-links.inc @@ -0,0 +1,46 @@ + 'PHP on Github', + 'about' => 'Browse and contribute to the source code behind the PHP engine and infrastructure.', + 'image' => '/images/logos/github_invertocat_white.svg', + 'href' => 'https://github.com/php', + 'href_label' => 'Visit GitHub', + ], + [ + 'title' => 'RFCs / Language Proposals', + 'about' => 'Requests for Comments are the mechanism PHP internals uses to propose language changes.', + 'image' => 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/PHP-logo.svg/500px-PHP-logo.svg.png', + 'href' => 'https://wiki.php.net/rfc', + 'href_label' => 'View Proposals', + ], + [ + 'title' => 'PHP Internals', + 'about' => 'Browse discussions from PHP Internals mailing list about current and future enhancements.', + 'image' => '/images/logos/new-php-logo.png', + 'href' => 'https://news-web.php.net/php.internals', + 'href_label' => 'Browse Mailing List', + ], + [ + 'title' => 'Get Involved', + 'about' => 'Find ways to contribute to the PHP engine, documentation and more.', + 'image' => '/images/landing/contribute.png', + 'href' => '/get-involved.php', + 'href_label' => 'Get Involved', + ], + [ + 'title' => 'Submit a Bug Report', + 'about' => 'Found a bug in the PHP runtime? Help us out by submitting it to our issue tracker.', + 'image' => '/images/landing/php-bugs.png', + 'href' => 'https://github.com/php/php-src/issues', + 'href_label' => 'Browse & Submit Issues', + ], + [ + 'title' => 'Documentation Translation', + 'about' => 'Help our team translate our documentation into multiple languages.', + 'image' => '/images/landing/docs-translator.png', + 'href' => 'https://doc.php.net/guide/', + 'href_label' => 'Learn About Translation', + ] +]; diff --git a/include/footer.inc b/include/footer.inc index faa7305d68..7ddcb50a4f 100644 --- a/include/footer.inc +++ b/include/footer.inc @@ -1,4 +1,7 @@ - + + + + "; diff --git a/include/header.inc b/include/header.inc index 48722edafa..b7a639959a 100644 --- a/include/header.inc +++ b/include/header.inc @@ -1,9 +1,13 @@ -The PHP development team announces the immediate availability of PHP 7.1.24. This is a bugfix release.
- +All PHP 7.1 users are encouraged to upgrade to this version.
- +For source downloads of PHP 7.1.24 please visit our downloads page, Windows source and binaries can be found on windows.php.net/download/. The list of changes is recorded in the ChangeLog. @@ -4437,34 +4456,34 @@ the upgrade 'intro' => '
The PHP development team announces the immediate availability of PHP 7.1.24. This is a bugfix release.
The PHP development team announces the immediate availability of PHP 7.2.12. This is a bugfix release.
All PHP 7.2 users are encouraged to upgrade to this version.
The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.
All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the webinale taking place at the same time.
Longhorn PHP is back for another exciting weekend of fun and learning!
At Longhorn PHP you\'ll get to learn from and alongside a diverse group of developers from all over the region, country, and even the globe. The conference will consist of a tutorial day with in-depth workshops, followed by two main conference days with multiple tracks of traditional 1 hour sessions, and new 30 minute sessions! Register now to take the next step toward leveling up your development career!
The PHP development team announces the immediate availability of PHP 7.1.23. This is a bugfix release.
All PHP 7.1 users are encouraged to upgrade to this version.
The PHP development team announces the immediate availability of PHP 7.2.11. This is a bugfix release.
All PHP 7.2 users are encouraged to upgrade to this version.
The PHP development team announces the immediate availability of PHP 7.2.10. This is a security release which also contains several minor bug fixes.
All PHP 7.2 users are encouraged to upgrade to this version.
Dates announced for PHP UK 2019
We are pleased to announce that PHP UK is back in 2019 for our 14th annual conference. As always PHP UK will feature an optional workshop day followed by two days of amazing talks, plentiful networking opportunities and great social events.
The PHP development team announces the immediate availability of PHP 7.2.9. This is a bugfix release.
All PHP 7.2 users are encouraged to upgrade to this version.
We are excited to announce the 5th annual php[world] conference, produced by the publishers of php[architect] magazine. As always, it is taking place over two days in November (14th-15th) in the Washington D.C. area.
This year we have streamlined our event schedule to add in even more content for you! 40 sessions, 6 workshops, and 12 birds of a feather sessions are waiting for you at this year\'s php[world] conference.
We are happy to announce the CFP for SunshinePHP 2019 has launched at https://cfp.sunshinephp.com where we will accept talk submissions until September 15th, 2018.
SunshinePHP hit it\'s 7th year and will happen from February 7th to 9th, 2019 in sunny Miami, Florida. As one of the largest community conferences in the U.S. there is no doubt the schedule will be amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.
Join us September 19-21 for this year\'s PHP, Web Development, and UX Conference by Northeast PHP. We\'re returning to Boston and will be hosted at Wayfair HQ in historic Copley Square.
Our schedule has been announced and this year\'s has another great lineup of talks for the PHP community, including a security hackathon, IBM sponsored event night, keynote by PJ Hagerty, and a full day workshop covering application development using containers by Red Hat.
The PHP development team announces the immediate availability of PHP 7.2.8. This is a security release which also contains several minor bug fixes.
All PHP 7.2 users are encouraged to upgrade to this version.
Symfony German-speaking fans, don\'t miss the opportunity to attend inspiring and exciting talks and hands-on workshops!
', ), - 117 => + 117 => array ( 'title' => 'SymfonyLive USA 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-25-2', 'published' => '2018-06-25T13:17:59+02:00', 'updated' => '2018-06-25T13:17:59+02:00', 'finalTeaserDate' => '2018-10-11', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-25-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://usa2018.live.symfony.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://usa2018.live.symfony.com/', @@ -6557,34 +6576,34 @@ the upgrade from October 11th-12th. We are excited to return to the city by the bay and host the American Symfony community.', ), - 118 => + 118 => array ( 'title' => 'PHP 7.1.19 Released', 'id' => 'http://php.net/archive/2018.php#id2018-06-25-1', 'published' => '2018-06-25T07:02:15+00:00', 'updated' => '2018-06-25T07:02:15+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-06-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-06-25-1', 'rel' => 'via', @@ -6613,34 +6632,34 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 119 => + 119 => array ( 'title' => 'PHP 7.2.7 Released', 'id' => 'http://php.net/archive/2018.php#id2018-06-21-2', 'published' => '2018-06-21T15:12:22+00:00', 'updated' => '2018-06-21T15:12:22+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-06-21-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-06-21-2', 'rel' => 'via', @@ -6662,29 +6681,29 @@ the upgrade 'intro' => 'The PHP development team announces the immediate availability of PHP 7.2.7. This is a primarily a bugfix release which includes a segfault fix for opcache.
PHP 7.2 users are encouraged to upgrade to this version.
New season and new challenges! As conference organisers we understand perfectly that you can stay with peleton only when you focus on development. That is why phpCE, as an event aimed at a wide group of PHP programmers from Central Europe, leaves Poland for the first time. We are stronger than before thanks to the organisers of Brno PHP Conference and volunteers from the PehapkaÅi group. Together we have been working for the success of this yearâs edition and we are inviting you to Prague.
Our Special Guest this year will be Rasmus Lerdorf, The PHP Language Creator.
As the biggest PHP and Laravel community in Taiwan, we are proud to announce LaravelConf Taiwan will take place on July 8, 2018.
Come and enjoy inspirational talks and making friends with enthusiastic developers like you!
For source downloads of PHP 7.3.0 Alpha 1 please visit the download page.
', ), - 126 => + 126 => array ( 'title' => 'PHPSC Conference 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-06-3', 'published' => '2018-06-06T13:14:56-03:00', 'updated' => '2018-06-06T13:14:56-03:00', 'finalTeaserDate' => '2018-06-09', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-06-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://conf.phpsc.com.br', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://conf.phpsc.com.br', @@ -7098,37 +7117,37 @@ the upgrade ', 'intro' => 'The Santa Catarina PHP user group (PHPSC) announce the 8th edition of the PHPSC Conference, taking place on June 8-9th, 2018 in Florianópolis, Brazil.
This Conference aims to discuss best practices in PHP technology and related areas such as design, development techniques, database, open source, agile methodologies, design patterns, etc.
Join us on Friday, November 2nd, 2018 for a full day of tutorials followed by multiple tracks of amazing talks on Saturday, November 3rd, 2018. Now in its sixth year, Madison PHP Conference in Madison, Wisconsin, USA focuses on PHP, related web technologies, and professional development - everything you need to energize your career. This event is organized by the locally-run Madison PHP user group and is designed to offer something for attendees at all skill levels. Madison PHP Conference 2018 will be two days of networking, learning, sharing, and great fun!
The Call for Papers will be open until May 31st, 2018. Madison PHP Conference offers reimbursement for travel and accommodations. To view the full speaker package and to submit a talk, please visit: https://cfp.MadisonPHPConference.com.
Southeast PHP is a two-day, regional PHP conference that brings the community together to learn and grow. We\'re bringing the community conference to Nashville, TN which hasn\'t had a conference since the old PHP Community Conference back in 2011! We will have two full days of amazing talks from members of our community talking about security, framework-less php, deployment and more!
The conference is scheduled to run August 16th - August 17th, at the beautiful Hotel Preston. We welcome developers and enthusiasts of all skill levels to come join us while we discuss the latest trends and technologies in our industry. You can use the code `SOUTHEAST` to reserve a room today!
The PHP development team announces the immediate availability of PHP 7.2.6. This is a primarily a bugfix release which includes a memory corruption fix for EXIF.
PHP 7.2 users are encouraged to upgrade to this version.
The Italian PHP user group GrUSP is pleased to announce the 15th edition of phpday, taking place on May 11-12th, 2018 in Verona, Italy.
It is the first historic Italian conference dedicated solely to PHP development, technologies and management. It is aimed to IT managers, developers and innovators. Each year it renews the opportunity to link to new business partners.
The Call For Papers for ZendCon & OpenEnterprise 2018 is now open!
ZendCon & OpenEnterprise is the premier open source conference designed to teach and share practical experiences from the front lines of business critical and enterprise environments, giving you the opportunity to speak in front of technical business leaders, strategists, and developers seeking the best knowledge around the operational advantages of open source. This is your chance to tell everyone what youâve learned and enrich our community of enterprise technology practitioners.
The PHP development team announces the immediate availability of PHP 7.2.5. This is a security release which also contains several minor bug fixes.
All PHP 7.2 users are encouraged to upgrade to this version.
We are excited to announce the schedule for the 1st annual Mid-Atlantic Developer Conference taking place this summer on July 13-14 near Baltimore, MD.
This is a brand new polyglot developer event designed to bring together programmers from the region for two full days of learning. We\'ve put together an electic set of sessions and workshops for you. You\'ll recognize some names from the PHP community, as well as see brand new speakers at this event. We are including sessions on Caching, Hiring, Polymer, Bots, Security, Encryption, SVG, WebAssembly, GraphQL, Accessibility, Mentorship, Augmented Reality, Testing, AWS, Docker, Troubleshooting, Gherkin, Ethereum, Health and much more!
The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.
All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the International JavaScript Conference taking place at the same time.
The team behind the original php[cruise] is once again bringing a conference to the open seas. CoderCruise 2018 is be a premiere conference experience, giving you have an exclusive connection to your fellow community members. It is setting sail from Ft. Lauderdale on August 30th for an extended weekend 5-day cruise that also visits Half Moon Cay and Nassau!
This year we\'ve managed to negotiate a much cheaper overall rate for our participants, starting as low as $410 per person (including the 5-day cruise, food, drink, the conference, and all taxes and fees wrapped into one package!)
The 4th annual PHP community event â September 21st & 22nd in Dresden, Germany
The PHP USERGROUP DRESDEN e.V. is proud to host an international 2-day event with workshops, a single track conference and awesome side events.
Announcing PHPConf.Asia 2018 - The Pan-Asian PHP Conference - CFP Opens Now
The third pan-Asian PHP conference will take place between 26th to 29th September 2018 in Singapore - the Garden City of the East! This is a single track, 2 days Conference (27th to 28th September 2018). Followed by 1 day of Tutorials on 29th September 2018.
The 6th Annual China PHP Conference â May 19 to 20, Shanghai
We will be hosting a 2-day event filled with high quality, technical sessions about PHP Core, PHP High Performance, PHP Engineering, AI and Blockchain more.
The PHP development team announces the immediate availability of PHP 7.2.4. This is a security release which also contains several minor bug fixes.
All PHP 7.2 users are encouraged to upgrade to this version.
IPC Spring will take place in June 4th to 8th in Berlin and we are looking very much forward to it!
But at the same time we are already preparing for the fall edition of IPC 2018, that is going to take place together with the international JavaScript Conference again. The conferenceÃs date is October 15th to 19th and the location will be Munich again.
The International PHP Conference is the worldÃs first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. Internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies.
With a lot of PHP\'s Rockstars, Darkmira Tour PHP 2018 is a conference focused on security and quality in PHP\'s ecosystems, in Brazil\'s capital in April 14-15. During the two days of Darkmira, you can interact with all the 400 participants along the coffee breaks, demonstrations and networking, and learn a lot about the PHP\'s ecosystems!
For more information, visit https://php.darkmiratour.rocks/2018.
We\'re happy to announce that the Call for Papers has commenced for PHPDetroit 2018. We will be accepting submissions through March 22nd, 2018.
The conference will consist of a tutorial day featuring 4 separate 3-4 hour tutorials, 2 in the morning, and 2 in the afternoon, followed by 2 days of 1 hour sessions. We\'re also having an opening keynote on the first conference day, and a closing keynote on the last day. We\'re inviting world-class PHP speakers from around the world to submit their best talks to put together an event that will forever be remembered.
PHPDetroit is a three-day, regional PHP conference that brings the community together to learn and grow. We\'re preceding the conference with a 2 track tutorial day that will feature 4 sessions covering various topics. We will also be running an UnCon alongside the main tracks on Friday and Saturday, where attendees can share unscheduled talks.
The conference is scheduled to run July 26th - July 28th, at the beautiful Detroit Marriott Livonia. We welcome developers and enthusiasts of all skill levels to come join us while we discuss the latest trends and technologies in our industry.
The PHP development team announces the immediate availability of PHP 7.2.3. This is a security release with also contains several minor bug fixes.
All PHP 7.2 users are encouraged to upgrade to this version.
The team at Northeast PHP is excited to annouce that we\'re returning to Boston, September 19-21 2018, and the Call for Speakers is now open until April 11.
We\'re pleased to announce our conference, the 2018 Web Development and UX Conference by Northeast PHP, where community members come together to learn and share information about the latest trends and technologies in professional PHP development, User Experience design, and Web Technologies.
Mid-Atlantic Dev Con is a brand new polyglot event taking place July 13th and 14th, 2018 near Baltimore, MD. It is designed to bring together programmers from the region for two full days of learning from each other and building a stronger regional community. We are currently hosting an open Call for Speakers, which will end on March 31st at Midnight UTC!
We are looking for a broad range of submissions covering a wide range of topics that are of interest to todayâs computer developers. This means not only programming topics, such as various sessions on PHP, but also broader topics related to development such as: deployment, DevOps, databases, caching, performance, scalability, APIs, etc â We also are looking for non-technical proposals that will appeal to a tech audience: open source, leadership, mentoring, health, work-life balance, management, customer service, and more!
ConFoo is a multi-technology conference specifically crafted for web developers. With 150+ presentations by local and international speakers, this conference offers outstanding diversity of content to expand your knowledge, increase your productivity and boost your development skills.
See you in Montreal on March 7-8-9!We are excited to announce the full schedule for the 13th annual php[tek], the premier PHP conference experience. The 2018 edition will be better than ever, now taking place in Downtown Atlanta, GA. The main conference is two days: May 31 and June 1, while we will have a workshop day on May 30, and a day of Training Classes on May 29th.
There is an amazing list of sessions that have been put together for you, including:
With big names from PHP community, the sixth edition of PHP Experience brings together about 1200 PHP developers in São Paulo/SP - Brazil from March 05 to 06, 2018.
In two days of content we will have: international keynotes, three tracks, in addition to several actions to exchange experiences and networking.
All PHP 7.1 users are encouraged to upgrade to this version.
', ), - 163 => + 163 => array ( 'title' => 'PHP 7.2.2 Released', 'id' => 'http://php.net/archive/2018.php#id2018-02-01-1', 'published' => '2018-02-01T09:12:34+00:00', 'updated' => '2018-02-01T09:12:34+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-02-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-02-01-1', 'rel' => 'via', @@ -9012,37 +9031,37 @@ the upgrade 'intro' => 'The PHP development team announces the immediate availability of PHP 7.2.2. This is a bugfix release, with several bug fixes included.
All PHP 7.2 users are encouraged to upgrade to this version.
All PHP 7.1 users are encouraged to upgrade to this version.
', ), - 169 => + 169 => array ( 'title' => 'PHP 7.2.1 Released', 'id' => 'http://php.net/archive/2018.php#id2018-01-04-2', 'published' => '2018-01-04T15:26:15+00:00', 'updated' => '2018-01-04T15:26:15+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-01-04-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-01-04-2', 'rel' => 'via', @@ -9308,34 +9327,34 @@ the upgrade 7.2.1. This is a security release. Several security bugs were fixed in this release.All PHP 7.2 users are encouraged to upgrade to this version.
', ), - 170 => + 170 => array ( 'title' => 'PHP 7.0.27 Released', 'id' => 'http://php.net/archive/2018.php#id2018-01-04-1', 'published' => '2018-01-04T15:00:00+01:00', 'updated' => '2018-01-04T15:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-01-04-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-01-04-1', 'rel' => 'via', @@ -9373,37 +9392,37 @@ the upgrade is a good time to plan the migration to PHP 7.1 or 7.2. ', ), - 171 => + 171 => array ( 'title' => 'PHP Serbia Conference 2018', 'id' => 'http://php.net/archive/2017.php#id2017-12-23-1', 'published' => '2017-12-23T21:54:52+01:00', 'updated' => '2017-12-23T21:54:52+01:00', 'finalTeaserDate' => '2018-05-25', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-12-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://conf2018.phpsrbija.rs', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://conf2018.phpsrbija.rs', @@ -9420,34 +9439,34 @@ the upgrade ', 'intro' => '"PHP Srbija" is happy to announce a brand new PHP Serbia Conference 2018!
This year\'s edition features Workshop Day prior to the main 2-day event of awesome talks on PHP and related technologies presented by best speakers from all over the globe.
The PHP development team announces the immediate availability of PHP 7.2.0. This release marks the second feature update to the PHP 7 series.
PHP 7.2.0 comes with numerous improvements and new features such as
PHPKonf 2018 is an annual PHP oriented conference in Istanbul, Turkey and will take place on Sunday, 20th of May, 2018.
The call for papers for the PHPKonf 2018 Istanbul PHP conference is open! If you have a burning desire to hold forth about PHP, DevOps, databases, JavaScript, or any other web development topics, we want to see your proposals. Call for Papers is open only from November 20, 2017 to January 31, 2018, so hurry. An added benefit: we will cover your travel and hotel.
The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.
All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the webinale \'18 taking place at the same time.
The Austin PHP Meetup, the longest-running tech meetup in Texasâ capital, is excited to announce a brand-new PHP conference: Longhorn PHP. 2018 will be the inaugural year for Longhorn PHP, which follows in the tradition of the now-retired Lone Star PHP conference in Dallas.
At Longhorn PHP youâll get to learn from and alongside a diverse group of developers from all over the region, country, and even the globe. The conference will consist of one tutorial day with in-depth workshops, and two main conference days with multiple tracks of traditional 1 hour sessions. Register now to take the next step toward leveling up your development career!
THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 180 => + 180 => array ( 'title' => 'SunshinePHP 2018 Conference', 'id' => 'http://php.net/archive/2017.php#id2017-11-08-1', 'published' => '2017-11-08T00:00:01+00:00', 'updated' => '2017-11-15T09:40:00+00:00', 'finalTeaserDate' => '2018-12-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-11-08-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://sunshinephp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://sunshinephp.com', @@ -9955,37 +9974,37 @@ the upgrade ', 'intro' => 'In February 2018 come to Miami, Florida and escape the cold to learn more about PHP and speak with other developers, like you, to see what others are doing. The SunshinePHP 2018 speaker list has been announced, and we\'ve assembled a great line-up with the most current PHP related topics for you.
Topics include:
THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 185 => + 185 => array ( 'title' => 'PHP 7.0.25 Released', 'id' => 'http://php.net/archive/2017.php#id2017-10-26-1', 'published' => '2017-10-26T13:00:00+01:00', 'updated' => '2017-10-26T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-10-26-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-10-26-1', 'rel' => 'via', @@ -10259,37 +10278,37 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 186 => + 186 => array ( 'title' => 'ScotlandPHP', 'id' => 'http://php.net/archive/2017.php#id2017-10-19-1', 'published' => '2017-10-19T17:46:40+00:00', 'updated' => '2017-10-19T17:46:40+00:00', 'finalTeaserDate' => '2017-11-04', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-10-19-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://conference.scotlandphp.co.uk/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://conference.scotlandphp.co.uk/', @@ -10327,29 +10346,29 @@ the upgrade ', 'intro' => 'Scotland\'s Original and Best PHP Conference
Saturday 4th November 2017, EICC, Edinburgh
THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 188 => + 188 => array ( 'title' => 'PHP 7.1.10 Release Announcement', 'id' => 'http://php.net/archive/2017.php#id2017-09-29-1', 'published' => '2017-09-29T08:10:14+00:00', 'updated' => '2017-09-29T08:10:14+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-29-1', 'rel' => 'via', @@ -10452,29 +10471,29 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 189 => + 189 => array ( 'title' => 'PHP 7.2.0 Release Candidate 3 Released', 'id' => 'http://php.net/archive/2017.php#id2017-09-28-2', 'published' => '2017-09-28T12:58:56+02:00', 'updated' => '2017-09-28T12:58:56+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-28-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-28-2', 'rel' => 'via', @@ -10521,34 +10540,34 @@ the upgrade and incompatibilities in the bug tracking system.THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 190 => + 190 => array ( 'title' => 'PHP 7.0.24 Released', 'id' => 'http://php.net/archive/2017.php#id2017-09-28-2', 'published' => '2017-09-28T13:00:00+01:00', 'updated' => '2017-09-28T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-28-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-28-2', 'rel' => 'via', @@ -10577,34 +10596,34 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 191 => + 191 => array ( 'title' => 'PHP 7.2.0 Release Candidate 2 Released', 'id' => 'http://php.net/archive/2017.php#id2017-09-14-1', 'published' => '2017-09-14T16:07:16+00:00', 'updated' => '2017-09-14T16:07:16+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-14-1', 'rel' => 'via', @@ -10651,37 +10670,37 @@ the upgrade and incompatibilities in the bug tracking system.THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 192 => + 192 => array ( 'title' => 'PHP North West 2017 (PHPNW17)', 'id' => 'http://php.net/archive/2017.php#id2017-09-13-1', 'published' => '2017-09-13T19:00:00+00:00', 'updated' => '2017-09-13T19:00:00+00:00', 'finalTeaserDate' => '2017-09-29', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-09-13-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://conference.phpnw.org.uk/phpnw17/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://conference.phpnw.org.uk/phpnw17/', @@ -10698,34 +10717,34 @@ the upgrade ', 'intro' => 'One of the largest and most popular PHP Conferences in Europe, PHPNW17 is a long-running community-based conference, held in Manchester, UK and run on a not-for-profit basis. It is overwhelmingly supported by industry leaders, code experts, web developers and businesses across the world. This year, we are celebrating our 10th conference year, and we aim to be bigger and better than ever before.
The PHPNW Conference has a reputation within the PHP community as a "go to" conference due to its inspiring content, friendly atmosphere and networking opportunities. Our delegates come to our Conference because they are specifically interested in new technologies and ways to improve their skills through our tutorials and talks, as well as the awesome (unofficial) corridor track!
THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 195 => + 195 => array ( 'title' => 'PHP 7.0.23 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-31-2', 'published' => '2017-08-31T13:00:00+01:00', 'updated' => '2017-08-31T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-31-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-31-2', 'rel' => 'via', @@ -10879,29 +10898,29 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 196 => + 196 => array ( 'title' => 'PHP 7.2.0 Beta 3 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-17-1', 'published' => '2017-08-17T10:17:44+02:00', 'updated' => '2017-08-17T10:17:44+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-17-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-17-1', 'rel' => 'via', @@ -10948,37 +10967,37 @@ the upgrade bug tracking system.THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 197 => + 197 => array ( 'title' => 'SunshinePHP 2018 CFP Started', 'id' => 'http://php.net/archive/2017.php#id2017-08-16-1', 'published' => '2017-08-16T00:00:01+00:00', 'updated' => '2017-08-16T12:23:00+00:00', 'finalTeaserDate' => '2017-09-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-08-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://sunshinephp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://sunshinephp.com', @@ -10995,37 +11014,37 @@ the upgrade ', 'intro' => 'We are happy to announce the CFP for SunshinePHP 2018 has launched at https://cfp.sunshinephp.com where we will accept talk submissions until September 30th, 2017.
SunshinePHP hit it\'s 6th year and will happen from February 8th to 10th, 2018 in sunny Miami, Florida. As one of the largest community conferences in the U.S. there is no doubt the schedule will be amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.
The Minnesota PHP User Group is proud to announce that the Call for Papers for the Midwest PHP 2018 Conference is now open through November 20, 2017. Abstracts can be submitted to https://cfp.midwestphp.org. Whether you are a seasoned speaker or someone just looking to speak at your first conference, we want to see your submissions.
This year\'s speaker package includes:
THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 201 => + 201 => array ( 'title' => 'PHP 7.0.22 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-03-1', 'published' => '2017-08-03T13:00:00+01:00', 'updated' => '2017-08-03T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-03-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-03-1', 'rel' => 'via', @@ -11237,37 +11256,37 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 202 => + 202 => array ( 'title' => 'Calling all proposals for PHPBenelux Conference 2018', 'id' => 'http://php.net/archive/2017.php#id2017-07-31-1', 'published' => '2017-07-31T11:25:07+02:00', 'updated' => '2017-07-31T11:25:07+02:00', 'finalTeaserDate' => '2017-10-02', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-07-31-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cfp.phpbenelux.eu/?utm_source=php_net&utm_medium=phpbnl18_logo&utm_campaign=phpbnl18&utm_term=php%2Bconference%2Bcfp&utm_content=cfp_announcement', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cfp.phpbenelux.eu/?utm_source=php_net&utm_medium=phpbnl18_logo&utm_campaign=phpbnl18&utm_term=php%2Bconference%2Bcfp&utm_content=cfp_announcement', @@ -11282,34 +11301,34 @@ the upgrade ', 'intro' => 'PHPBenelux Conference is an annual PHP oriented conference in Antwerp, Belgium and will take place on January 26 & 27 2018. We offer two days of stellar tutorials and talks, epic social events and a lineup of the best local and international businesses involved with PHP.
We like to invite speakers to submit their tutorials and talks at PHPBenelux CfP. Speakers have until Monday, October 2, 2017 to submit their proposals.
THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 204 => + 204 => array ( 'title' => 'php[world] 2017', 'id' => 'http://php.net/archive/2017.php#id2017-07-10-1', 'published' => '2017-07-10T17:14:04-04:00', 'updated' => '2017-07-10T17:14:04-04:00', 'finalTeaserDate' => '2017-11-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-07-10-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/?paref=phpnet&utm_campaign=phpnet', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/?paref=phpnet&utm_campaign=phpnet', @@ -11415,37 +11434,37 @@ the upgrade ', 'intro' => 'From the publishers of php[architect] magazine comes the 4th annual php[world] conference! As always this November in the Washington D.C. area.
This year a number of changes have been made based upon attendee feedback, the biggest being an over 50% a drop in cost, with tickets available now as low as $325. The conference also is now just 2 days long, running on November 15th & 16th, and includes workshops as well as regular sessions.
phpCE is a first edition of the community conference for PHP programmers and enthusiasts. The meeting was stablished by merging two nation-wide events: PHPCon Poland and Brno PHP Conference. This edition will take place in the Ossa Congress & Spa Hotel near Rawa Mazowicka, Poland on November 3rd - 5th.
The unique feature of the php Central Europe Conference is three-path split of agenda, according to difficulty level of talks: Relaxing, Intermediate and Geek. Submitting a talk you must point a proper level and suggest the Program Committee, which one do you prefer. In general, talks given in the Relaxing path should be done in native language of hosting country (Polish this year).
THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 209 => + 209 => array ( 'title' => 'PHP 7.0.21 Released', 'id' => 'http://php.net/archive/2017.php#id2017-07-06-1', 'published' => '2017-07-06T13:00:00+01:00', 'updated' => '2017-07-06T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-07-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-07-06-1', 'rel' => 'via', @@ -11717,37 +11736,37 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 210 => + 210 => array ( 'title' => 'PHP Developer Day 2017', 'id' => 'http://php.net/archive/2017.php#id2017-06-29-1', 'published' => '2017-06-29T17:24:31+02:00', 'updated' => '2017-06-29T17:24:31+02:00', 'finalTeaserDate' => '2017-09-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpug-dresden.org/en/phpdd17.html', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpug-dresden.org/en/phpdd17.html', @@ -11789,30 +11808,30 @@ the upgrade We have 6 talks covering the following topics: ', ), - 211 => + 211 => array ( 'title' => 'Forum PHP 2017', 'id' => 'http://php.net/archive/2017.php#id2017-06-23-1', 'published' => '2017-06-23T14:33:24+00:00', 'updated' => '2017-06-23T14:33:24+00:00', 'finalTeaserDate' => '2017-10-27', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-23-1', 'rel' => 'via', @@ -11839,34 +11858,34 @@ the upgrade pros and PHP lovers. ', ), - 212 => + 212 => array ( 'title' => 'PHP 7.2.0 Alpha 2 Released', 'id' => 'http://php.net/archive/2017.php#id2017-06-22-1', 'published' => '2017-06-22T11:00:00+00:00', 'updated' => '2017-06-22T11:00:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-06-22-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-22-1', 'rel' => 'via', @@ -11902,37 +11921,37 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 213 => + 213 => array ( 'title' => 'LaravelConf Taiwan 2017', 'id' => 'http://php.net/archive/2017.php#id2017-06-17-1', 'published' => '2017-06-17T18:48:00+00:00', 'updated' => '2017-06-17T18:48:00+00:00', 'finalTeaserDate' => '2017-07-01', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-17-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://laravelconf.tw/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://laravelconf.tw/', @@ -11961,37 +11980,37 @@ the upgrade ', 'intro' => 'The first Laravel conference in Taiwan awaits you at LaravelConf Taiwan 2017 at Taipei, Taiwan.
LaravelConf Taiwan 2017 is for anyone who is passionate about building web-application, or anyone who is trying to make better experience on teamwork.
With over 250 million PHP applications driven by a global community of more than 5 million active developers and all enterprises adopting open source software, ZendCon 2017 brings you a curated selection of the best experts, training, and networking opportunities to embrace this vast ecosystem.
Take advantage of unique opportunities to attend a wide variety of in-depth technical sessions, participate in exhibit hall activities, and connect with experts. Learn about the best in enterprise PHP and open source development, focusing on the latest for PHP 7, the evolution of frameworks and tools, API excellence, and innovation on many open source technologies related to the web.
The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.
All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the International JavaScript Conference taking place at the same time.
THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
', ), - 218 => + 218 => array ( 'title' => 'PHP 7.0.20 Released', 'id' => 'http://php.net/archive/2017.php#id2017-06-08-1', 'published' => '2017-06-08T13:00:00+01:00', 'updated' => '2017-06-08T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-06-08-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-08-1', 'rel' => 'via', @@ -12248,37 +12267,37 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 219 => + 219 => array ( 'title' => 'China PHP Developer Conference', 'id' => 'http://php.net/archive/2017.php#id2017-06-06-1', 'published' => '2017-06-06T19:36:21+00:00', 'updated' => '2017-06-06T19:36:21+00:00', 'finalTeaserDate' => '2017-06-10', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-06-1', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://php2017.devlink.cn/', @@ -12294,37 +12313,37 @@ the upgrade ', 'intro' => 'China PHP Developer Conference which organized by the DevLink will hold in Beijing on June 10th and 11th.
After âThe High Performance PHPâ, Itâs the another global developer interchange activity that DevLink hosts.
The 5th Annual China PHP Conference â June 17 to 18, Shanghai
We will be hosting a 2-days event filled with high quality, technical sessions about PHP Core, PHP High Performance, PHP Engineering, and MySQL 5.7/8.0 more.
The teams at php[architect] and One for All Events are excited to announce we have opened up our Call for Speakers for the 4th annual edition of php[world].
This year we are refactoring php[world] into a more focused PHP conference concentrating on providing our attendees deep-dive content which teach core lessons about PHP. We also want talks covering advanced topics in applications and frameworks built in PHP (such as Drupal, WordPress, Laravel, Symfony, and Magento). We encourage submissions on technologies crucial to modern Web development such as HTML5, JavaScript, and emerging technologies. Ideas surrounding the entire software life cycle are often big hits for our attendees. Finally, we do welcome non-technical proposals that will appeal to a developer audience.
Want to get your web development ideas in front of a live audience? The call for papers for the ConFoo Vancouver 2017 web developer conference is open! If you have a burning desire to hold forth about PHP, databases, JavaScript, or any other web development topics, we want to see your proposals. The window is open only from April 10 to May 8, 2017, so hurry. An added benefit: If your proposal is selected and you live outside of the Vancouver area, we will cover your travel and hotel.
Youâll have 45 minutes for the talk, with 35 minutes for your topic and 10 minutes for Q&A. We canât wait to see your proposals!
We are happy to announce the dates for *Pacific Northwest PHP Conference (PNWPHP) 2017 are September 7-9, and will held at University of Washington in Seattle! The CFP site - http://cfp.pnwphp.com - has launched, where talk submissions will accepted through May 15th, 2017.
The Pacific Northwest PHP Conference is a 3-day event in Seattle, Washington for PHP and Web developers. Our past conferences have included world renown speakers from the PHP community, about a wide range of topics â from APIs and CMS to unit testing and version control
We are happy to announce the CFP for ZendCon 2017 has launched at https://cfp.zendcon.com where we will accept talk submissions until April 14th, 2017.
With over 250 million PHP applications driven by a global community of more than 5 million active developers and all enterprises adopting open source software, ZendCon 2017 brings you a curated selection of the best experts, training, and networking opportunities to embrace this vast ecosystem.
An event for the PHP Developer community of Rio Grande do Sul, focused on professional growth, exchange of experiences and networking. Strengthening language and the labor market.
From May 12 to 13, 2017, in Porto Alegre / RS-Brazil, the first day will be held workshops and the second lectures.
Join us on Friday, September 22nd, 2017 for a full day of tutorials followed by three tracks of amazing talks on Saturday, September 23rd, 2017. Now in its fifth year, Madison PHP Conference in Madison, Wisconsin, USA focuses on PHP, related web technologies, and professional development - everything you need to energize your career. This event is organized by the locally-run Madison PHP user group and is designed to offer something for attendees at all skill levels. Madison PHP Conference 2017 will be two days of networking, learning, sharing, and great fun!
The Call for Papers will be open until April 30th, 2017. Madison PHP Conference offers reimbursement for travel and accommodations. To view the full speaker package and to submit a talk, please visit: http://cfp.madisonphpconference.com.
Join us on Friday, September 22nd, 2017 for a full day of tutorials followed by three tracks of amazing talks on Saturday, September 23rd, 2017. Now in its fifth year, Madison PHP Conference in Madison, Wisconsin, USA focuses on PHP, related web technologies, and professional development - everything you need to energize your career. This event is organized by the locally-run Madison PHP user group and is designed to offer something for attendees at all skill levels. Madison PHP Conference 2017 will be two days of networking, learning, sharing, and great fun!
Istanbul PHP User Group is proud to announce that the PHPKonf 2017! We\'ll host some of the best speakers, awesome talk topics, latest technologies, and up to date news in PHP. Join us on 20th of May for a multi-track conference in ancient city Istanbul! Weâve something for every level of PHP developer with 1 keynotes, 14 talks.
http://phpkonf.orgConference that delivers high-value technical content about PHP and related web technologies, architecture, best practices and testing. Two days of amazing talks by some of the most prominent experts and professionals in the PHP world in a comfortable and professional setting.
At PHPSerbia Conference, youâll have the unique opportunity to learn about the latest development trends and innovations, as well as to network with fellow attendees and the speakers.
CoderCruise is the spiritual successor to php[cruise] that was run in 2016. The PHP community had so much fun that we decided we needed to expand the idea to the greater web tech community! This will be a 7-day cruise out of the port of New Orleans that will include 3 days of conference (while at sea) and 3 days at the ports of Montego Bay, Grand Cayman, and Cozumel. Yes, you read that right. This is a conference on a cruise ship.
We currently have our Call for Speakers open until January 6th, 2017. For CoderCruise we are looking for submissions covering a wide range of web technology topics including coding, design, content, and more. Given the scope of this conference, emphasis will be given to talks that appeal to all web technologists regardless of their programming language of choice (or lack thereof). We also welcome non-technical proposals that will appeal to a tech audience, and most importantly of all, we would love to have family-friendly sessions designed to teach kids to code or use related technologies.
The PHP development team announces the immediate availability of PHP 7.1.0. This release is the first point release in the 7.x series.
PHP 7.1.0 comes with numerous improvements and new features such as
The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.
All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the webinale \'17 taking place at the same time.
The 12th annual edition of php[tek], the longest running community focused PHP conference, will be taking place May 24-26, 2017 in Atlanta! We have opened up our Call for Speakers and look forward to seeing all the amazing proposals that you will submit to us.
This year we hope for a broad range of topics to share with our attendees. Besides core PHP matters such as PHP7, Security, and Testing, we want talks on the technologies crucial to modern Web development as well such as HTML5, JavaScript, mobile development, and emerging technologies. We also welcome non-technical proposals that will appeal to a developer audience.
We are pleased to announce the 2017 SunshinePHP Schedule. Our highly diverse lineup of 45 speakers will be delivering 5 keynotes, 8 in-depth 3-hour tutorials, and 40 talks 1-hour in length over this 3 day event.
SunshinePHP hit it\'s 5th year and will happen from February 2nd to 4th, 2017 in sunny Miami, Florida. As one of the largest community conferences in the U.S. the schedule is amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.
We recently released the presentations for ConFoo Montreal. This giant conference will be held on March 8-10, 2017.
It\'s also the last chance to get tickets for ConFoo Vancouver, held on December 5-7, 2016.
The PHP UK Conference 2017 Call for Papers is now open!
', ), - 271 => + 271 => array ( 'title' => 'PHP 7.1.0 Release Candidate 2 Released', 'id' => 'http://php.net/archive/2016.php#id2016-09-16-2', 'published' => '2016-09-16T23:33:30+00:00', 'updated' => '2016-09-16T23:33:30+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-09-16-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-09-16-2', 'rel' => 'via', @@ -15318,34 +15337,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION! ', ), - 272 => + 272 => array ( 'title' => 'PHP 5.6.26 is released', 'id' => 'http://php.net/archive/2016.php#id2016-09-16-1', 'published' => '2016-09-16T06:39:08+00:00', 'updated' => '2016-09-16T06:39:08+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-09-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-09-16-1', 'rel' => 'via', @@ -15374,34 +15393,34 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 273 => + 273 => array ( 'title' => 'PHP 7.0.11 Released', 'id' => 'http://php.net/archive/2016.php#id2016-09-15-1', 'published' => '2016-09-15T13:00:00+01:00', 'updated' => '2016-09-15T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-09-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-09-15-1', 'rel' => 'via', @@ -15430,37 +15449,37 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 274 => + 274 => array ( 'title' => 'php[world] 2016', 'id' => 'http://php.net/archive/2016.php#id2016-09-09-1', 'published' => '2016-09-09T08:05:18-04:00', 'updated' => '2016-09-09T08:05:18-04:00', 'finalTeaserDate' => '2016-11-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-09-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/?paref=phpnet&utm_campaign=phpnet', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/?paref=phpnet&utm_campaign=phpnet', @@ -15487,37 +15506,37 @@ the upgrade ', 'intro' => 'The team behind php[architect] magazine are excited to announce the full schedule for our Fall conference: php[world] 2016 coming up from November 14-18 in Washington, D.C.
This conference will be our biggest yet, featuring 60 sessions, 10 workshops, and 5 one and two-day training classes. Not to mention 5 amazing keynotes from leaders in the PHP community, and a special keynote by developers from NPR Radio to talk about their experiences with PHP.
Bulgaria PHP Conference is the premier PHP conference, gathering PHP and frontend developers and engineers from all around Europe. Co-organized by the Bulgaria PHP User Group and SiteGround web hosting, the conference is bringing internationally renowned experts from the PHP industry to talk about APIs, Frameworks, Security, Testing, Continuous Integration, and much more!
Highlights:
We are happy to announce the CFP for SunshinePHP 2017 has launched at https://cfp.sunshinephp.com where we will accept talk submissions until September 30th, 2016.
SunshinePHP hit it\'s 5th year and will happen from February 2nd to 4th, 2017 in sunny Miami, Florida. As one of the largest community conferences in the U.S. there is no doubt the schedule will be amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.
With over 250 million PHP applications and websites driven by a global community of more than 5 million active developers, ZendCon 2016 brings you a curated selection of the best experts, training, and networking opportunities to help you become a PHP authority.
In its 12th year, ZendCon offers authoritative sessions, in-depth technical tutorials, exhibit hall activities, and informal opportunities to spotlight the best in enterprise PHP development, the latest for PHP 7, and innovations on many open source technologies related to the web.
PHPConf.Asia 2016 is happening in Singapore on 22-24 August 2016. Tutorial Day on 22 Aug. 2 day single track conference on 23 and 24 August.
Keynote Speakers: Davey Shafik (@dshafik) and Samantha Quiñones (@ieatkillerbees)
All PHP 5.5 users are encouraged to upgrade to this version.
', ), - 289 => + 289 => array ( 'title' => 'PHP 7.0.9 Released', 'id' => 'http://php.net/archive/2016.php#id2016-07-21-3', 'published' => '2016-07-21T13:00:00+01:00', 'updated' => '2016-07-21T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-07-21-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-07-21-3', 'rel' => 'via', @@ -16336,34 +16355,34 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 290 => + 290 => array ( 'title' => 'PHP 7.1.0 Beta 1 Released', 'id' => 'http://php.net/archive/2016.php#id2016-07-21-1', 'published' => '2016-07-21T09:32:07+00:00', 'updated' => '2016-07-21T09:32:07+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-07-21-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-07-21-1', 'rel' => 'via', @@ -16416,34 +16435,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION! ', ), - 291 => + 291 => array ( 'title' => 'PHP 7.1.0 Alpha 3 Released', 'id' => 'http://php.net/archive/2016.php#id2016-07-07-1', 'published' => '2016-07-07T19:40:54+00:00', 'updated' => '2016-07-07T19:40:54+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-07-07-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-07-07-1', 'rel' => 'via', @@ -16508,34 +16527,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION! ', ), - 292 => + 292 => array ( 'title' => 'PHP 7.1.0 Alpha 2 Released', 'id' => 'http://php.net/archive/2016.php#id2016-06-24-1', 'published' => '2016-06-27T16:00:00+00:00', 'updated' => '2016-06-27T16:00:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-24-1', 'rel' => 'via', @@ -16574,34 +16593,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION! ', ), - 293 => + 293 => array ( 'title' => 'PHP 5.5.37 is released', 'id' => 'http://php.net/archive/2016.php#id2016-06-23-3', 'published' => '2016-06-23T18:11:22+00:00', 'updated' => '2016-06-23T18:11:22+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-23-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-23-3', 'rel' => 'via', @@ -16630,34 +16649,34 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 294 => + 294 => array ( 'title' => 'PHP 5.6.23 is released', 'id' => 'http://php.net/archive/2016.php#id2016-06-23-2', 'published' => '2016-06-23T17:36:17+00:00', 'updated' => '2016-06-23T17:36:17+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-23-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-23-2', 'rel' => 'via', @@ -16686,34 +16705,34 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 295 => + 295 => array ( 'title' => 'PHP 7.0.8 Released', 'id' => 'http://php.net/archive/2016.php#id2016-06-23-1', 'published' => '2016-06-23T13:00:00+01:00', 'updated' => '2016-06-23T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-23-1', 'rel' => 'via', @@ -16742,37 +16761,37 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 296 => + 296 => array ( 'title' => 'International PHP Conference 2016 - fall edition', 'id' => 'http://php.net/archive/2016.php#id2016-06-15-1', 'published' => '2016-06-15T09:54:24+01:00', 'updated' => '2016-06-15T09:54:24+01:00', 'finalTeaserDate' => '2016-10-23', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-06-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -16818,34 +16837,34 @@ the upgrade ', 'intro' => 'The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.
All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the WebTechCon taking place at the same time.
Now in its 3rd year, php[world] is the conference designed to bring the entire world of PHP together in one place, with dedicated tracks for the biggest applications and frameworks in the PHP community such as WordPress, Drupal, Magento, Joomla!, Symfony, Zend Framework, CakePHP, and Laravel.
', ), - 301 => + 301 => array ( 'title' => 'The 4th Annual China PHP Conference', 'id' => 'http://php.net/archive/2016.php#id2016-05-30-1', 'published' => '2016-05-30T15:53:21+00:00', 'updated' => '2016-05-30T15:53:21+00:00', 'finalTeaserDate' => '2016-06-25', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-05-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-05-30-1', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpconchina.com/', @@ -17153,34 +17172,34 @@ the upgrade ', 'intro' => 'The 4th Annual China PHP Conference â June 25 to 26, Shanghai
We will be hosting a 2-days event filled with high quality, technical sessions about PHP Core, PHP High Performance, PHP Engineering, and PHP more.
Announcing PHPConf.Asia 2016 - The Pan-Asian PHP Conference - CFP Opens Now
The second pan-Asian PHP conference will take place between 22nd and 24th August 2016 in Singapore - the Garden City of the East! Monday, 22nd August 2016 will be a Tutorial day. Followed by 2 days of Conference.
That\'s why we ask you join us at CakeFest 2016 which will be running from May 26th till May 29th, and experience open source at it\'s very best! As always, CakeFest will consist of a two day workshop (At beginner and advanced levels) and a two day conference. This year we are in the beautiful city of Amsterdam, Netherlands.
', ), - 312 => + 312 => array ( 'title' => 'PHP 5.6.20 is available', 'id' => 'http://php.net/archive/2016.php#id2016-03-31-4', 'published' => '2016-03-31T16:28:02-07:00', 'updated' => '2016-03-31T16:28:02-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-03-31-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-31-4', 'rel' => 'via', @@ -17766,37 +17785,37 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 313 => + 313 => array ( 'title' => 'PHPSerbia Conference 2016', 'id' => 'http://php.net/archive/2016.php#id2016-03-31-3', 'published' => '2016-03-31T20:00:00+02:00', 'updated' => '2016-03-31T22:00:00+02:00', 'finalTeaserDate' => '2016-05-27', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-03-31-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://conf2016.phpsrbija.rs', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://conf2016.phpsrbija.rs', @@ -17813,34 +17832,34 @@ the upgrade ', 'intro' => 'Conference that delivers high-value technical content about PHP and related web technologies, architecture, best practices and testing. Two days of amazing talks by some of the most prominent experts and professionals in the PHP world in a comfortable and professional setting.
At PHPSerbia Conference, youâll have the unique opportunity to learn about the latest development trends and innovations, as well as to network with fellow attendees and the speakers.
DevLink is pleased to announce the China PHP Conference 2016.
DevLink is a group dedicated to helping developers continuous improvement. China PHP Conference 2016 face to senior PHP programmers, found for better communication in China. It will be held on 5.14-5.15 2016 for a two-days in Beijing, and we have invited Rasums Lerdorf, Xinchen Hui and other best PHP experts as speakers. There\'re over 10 topics foucus on PHP performance optimization in the Alibaba double-11 events; PHP development of big data analysis; Swoole cluster development, and SOA applications programming; upgraded to PHP7 experience of enterprise application.
After Nantes, Lille, Lyon,and Luxembourg-City, this year the PHP Tour, the itinerant conference organized by the French PHP users group, goes to Clermont-Ferrand, a lovely city surrounded by volcanoes. Helped by Clermont\'ech, a local developers organization, AFUP is happy to welcome you on May 23rd and 24th at the Polydome convention centre.
This year, part of the program will focus on performance. "The big don\'t eat the little, the fast eat the slow" (Eberhard von Kuenheim, BMW)
Istanbul PHP User Group is proud to announce that the PHPKonf 2016! We\'ll host some of the best speakers, awesome talk topics, latest technologies, and up to date news in PHP. Join us on 21st/22nd of May for a two day, double track conference in ancient city Istanbul! Weâve something for every level of PHP developer with 2 keynotes, 28 talks and 2 panels.
http://phpkonf.orgThis year we have moved the conference to a bigger venue, in St. Louis, in order to expand this year and for years to come.
', ), - 323 => + 323 => array ( 'title' => 'Midwest PHP 2016 Conference', 'id' => 'http://php.net/archive/2016.php#id2016-02-16-1', 'published' => '2016-02-16T10:46:00-06:00', 'updated' => '2016-02-16T10:46:00-06:00', 'finalTeaserDate' => '2016-03-05', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-02-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2016.midwestphp.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2016.midwestphp.org', @@ -18372,34 +18391,34 @@ the upgrade http://2016.midwestphp.org/register and we look forward to seeing you there.', ), - 324 => + 324 => array ( 'title' => 'PHP 5.6.18 is available', 'id' => 'http://php.net/archive/2016.php#id2016-02-04-3', 'published' => '2016-02-04T12:08:37-08:00', 'updated' => '2016-02-04T12:08:37-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-02-04-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-02-04-3', 'rel' => 'via', @@ -18428,34 +18447,34 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 325 => + 325 => array ( 'title' => 'PHP 5.5.32 is available', 'id' => 'http://php.net/archive/2016.php#id2016-02-04-2', 'published' => '2016-02-04T10:39:10+00:00', 'updated' => '2016-02-04T10:39:10+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-02-04-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-02-04-2', 'rel' => 'via', @@ -18484,34 +18503,34 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 326 => + 326 => array ( 'title' => 'PHP 7.0.3 Released', 'id' => 'http://php.net/archive/2016.php#id2016-02-04-1', 'published' => '2016-02-04T13:00:00+01:00', 'updated' => '2016-02-04T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-02-04-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-02-04-1', 'rel' => 'via', @@ -18542,37 +18561,37 @@ the upgrade The list of changes is recorded in the ChangeLog. ', ), - 327 => + 327 => array ( 'title' => 'NortheastPHP Conference CfP Opens', 'id' => 'http://php.net/archive/2016.php#id2016-01-30-1', 'published' => '2016-01-30T04:50:46-05:00', 'updated' => '2016-01-30T04:50:46-05:00', 'finalTeaserDate' => '2016-03-31', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-01-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2016.northeastphp.org/call-for-papers/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2016.northeastphp.org/call-for-papers/', @@ -18593,37 +18612,37 @@ the upgrade ', 'intro' => 'The team at NortheastPHP is excited to annouce that the Call for Speakers is open for our 2016 conference.
This 5th annual conference that is focused on community is moving to Charlottetown, Prince Edward Island! We have a number of other updates that will be announced in the coming months as well.
The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.
All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the webinale taking place at the same time.
The team at php[architect] is excited to annouce that the Call for Speakers is open for php[tek] 2016.
This 11th annual conference that is focused on community is this year moving to a bigger venue in Saint Louis so that we can expand and give our attendees some elbow room! We have a number of other updates that will be announced in the coming months as well.
#fwdays invites everybody interested in PHP topic to attend PHP Frameworks Day 2015 conference on October 17.
This is the third time PHP Frameworks Day is being held and each time it grows and becomes more interesting! Watch how we spent PHP Frameworks Day 2014.
WooHoo! SunshinePHP has hit it\'s 4th year and will happen from February 4th - 6th, 2016 in sunny Miami, Florida.
As one of the largest community conferences in the U.S. our call for papers ended with 600+ submissions, so there is no doubt the schedule will be amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.
We are honored to announce PHPConf Taiwan 2015 will be held in Taipei, Taiwan on Oct. 9th. As the biggest PHP event in Taiwan, PHPConf attracts hundreds of developers and users in Taiwan to share their knowledge on PHP. This year, to celebrate the 20th anniversary of the invention of PHP and the release of PHP 7, Mr. Rasmus Lerdorf, creator of PHP, and Mr. Xinchen Hui, member from the PHP core developer team, are invited to be our keynote speakers. In addition, we also invited well-known developers in Taiwan to share their expertise and experience at PHPConf. The two-track agenda covers various topics, including Big Data, horizontal extension, software architecture, ORM and Async I/O⦠etc.
For ticketing and other information, please visit http://2015.phpconf.tw. We look forward to seeing you in Taipei this October!
Join us at PHPConf.Asia 2015 - The First Pan-Asian PHP Conference
The inaugural pan-Asian PHP conference will take place on 22 & 23 September 2015 in Singapore - the Garden City of the East! Come and meet with the fastest growing PHP communities in Asia. More than 200 attendees are expected in this single track conference.
The International PHP Conference is the worldâs first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born â the IPC signifies knowledge transfer at highest level.
All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the WebTechCon taking place at the same time.
İstanbul PHP User Group is proud to announce that the PHPKonf 2015! We\'ll host some of the best speakers, awesome talk topics, latest technologies, and up to date news in PHP. Join us on 25/26 of July for a two day, double track conference in ancient city Istanbul! Weâve something for every level of PHP developer with 2 keynotes, 29 talks and 2 panels.
http://phpkonf.orgThe team at php[architect] is excited to announce the schedule for php[world] 2015! As always our conference is designed to bring all the various PHP communities together in one place to learn from each other. We will have separate tracks for PHP, Drupal, WordPress, Magento, Joomla!, Zend Framework, Symfony, Laravel, and CakePHP.
This year we are expanding the conference to 6 concurrent sessions so that we can cover even more material. Join us for this very unique event from November 16th through November 20th.
Come and join us at Forum PHP 2015, our annual conference gathering all PHP and Open Source communities, pros and PHP lovers.
This year, the event will be held at Beffroi de Montrouge, on November, 23rd and 24th.
Join us on Saturday, November 14th, 2015 for a one day, three track conference in Madison, Wisconsin, USA that focuses on PHP and related web technologies. This event is organized by Madison PHP and is designed to offer something to attendees at all skill levels. It will be a day of networking, learning, sharing, and great fun!
Our Call for Papers is open until August 4th, 2015:
http://cfp.madisonphpconference.com/
Announcing ZendCon 2015, the global PHP conference, happening at the exciting Hard Rock Hotel & Casino in Las Vegas, Nevada. It will start with a full day of tutorials on October 19th and then continue with inspirational keynotes and breakout sessions through the 22nd.
The conference will feature many of the top developers and speakers in the PHP space to deliver dedicated tracks centered around Zend Framework, Symfony, Laravel, WordPress, Joomla!, Drupal, and Magento. We will also host additional tracks for PHP best practices, PHP architecture, IBM i, and PHP 7.
The PHP Barcelona User Group is proud to announce that the PHP Barcelona Conference is back! This year we are preparing a bigger event in the heart of a glamorous city. 2 days, 30th - 31st October, one track with amazing and stunning talks.
We opened the call for papers that will end on the 30th September 2015 â 2015.phpconference.es/call-for-papers. So what are you waiting for, go, submit your paper! We offer attractive packages to speakers who want to enroll! Come and join us! :)
The team at php[architect] is once again running php[world]. The original conference designed to bring the whole world of PHP together in one place. With dedicated tracks for WordPress, Drupal, Joomla!, Magneto, Laravel, Symfony, Zend Framework, and CakePHP!
The Call for Speakers is currently open, but only until June 6th, so get those submissions in soon! We are interested in sessions on any framework, application, or general PHP topics. We especially want to see sessions that are designed to encourage people to mingle and be exposed to other PHP communities that they don\'t interact with on a daily basis.
Our 2nd Annual PHP Craft Conference will be hosted in Johannesburg South Africa. 2 Days of fantastic content presented by local and international speakers.
Our Call for Papers now open and will close 17th June 2015. We hope to see some great topics covering fancy new tools and/or best Practice â www.phpsouthafrica.com
China PHP Conference 2015
3rd Annual China PHP Conference â June 6 to 7, Beijing and July 11 to 12, Shanghai
For the first time, the PHP Tour will take place outside of France: AFUP and the locale branch of Luxembourg will welcome you at the Abbey of Neumünster, a historical venue in the heart of Luxembourg City. English speakers? Come and join us, many talks will be proposed in english.
AFUP, The French PHP usergroup, is glad to announce that the fourth edition of the PHP Tour will be held in Luxembourg City on May 12 & 13, 2015. PHP experts will share their advanced knowledge and experience with developers, decision makers and companies, during keynotes, sessions and workshops.
The Italian PHP user group GrUSP is pleased to announce the 12th edition of the Italian phpDay (http://www.phpday.it/) conference, taking place on May 15th and 16th, 2015 in Verona.
phpDay is the first historic Italian conference dedicated solely to PHP development, technologies and management. It is aimed to IT managers, developers and innovators. Each year it renews the opportunity to link to new business partners.
The Bulgaria PHP Conference is an event organized by the local PHP user group: @bgphp. This is going to be our first conference but nonetheless we have attracted a number of prominent international and local speakers (http://www.bgphp.org/confirmed-speakers/). We expect 450 attendees from Bulgaria, the Balkans region, Europe, and other parts of the world. We welcome a diverse crowd of PHP developers who want to learn new things and share their passion for code.
Bulgaria is one of the fastest growing IT regions. A lot of international companies outsource their IT departments in the country. The PHP community is large and actively travels abroad to attend international summits of all kinds. The official language of the conference is English and all talks and sessions will be in English. Attendees and sponsors will be pleasantly surprised by the affordability of all services in the country. Hotel accommodation, food and even the tickets for the event are quite affordable, given the high quality of service youâll get in return.
Welcome back to Lone Star PHP for another great year! We\'re in our fifth year and we\'re making things better all the time. This year\'s event will provide all of the great PHP speakers and content you\'ve come to expect from Lone Star PHP. This year we are introducing the Training Day. Training Day will provide a more hands-on experience for all that attend. There\'ll be plenty of time to spend with the local PHP community too through after-parties and other events.
Thanks to the generous support of our sponsors year after year we\'re able to present this conference at minimal cost to our attendees, opening up attendance to many who could not normally justify the cost of similar events. We couldn\'t do it without their support and we hope that this year you\'ll help us share this experience with the community. With the amazing feedback we receive each year from our attendees and sponsors we continue to improve our event to keep our place as the best php community conference around.
Conference about software architecture, best programming practices and design patterns.
PHP Serbia will be organizing a big event on May 30, 2015 â SOLIDay conference. Nicely coined name, huh? It will be one of the major events in the region, on which you will have opportunity to attend presentations of world-famous PHP experts and professionals, on topic of OOP principles, design patterns, software architecture, frameworks and similar. Whether you are a novice, intermediate or advanced developer, join us on this conference and expand, improve or simply refresh your knowledge of this important topic.
We\'re back! And we are glad to announce that weâll be organising the 9th edition of the Dutch PHP Conference, which will be held in Amsterdam from 25th to 27th June 2015. Thursday 25th will be the tutorial day and June 26th and 27th will be the main conference days.
Speakers, the call for papers is now open! Weâre looking for high-quality, technical sessions from speakers who can cover advanced topics and keep our demanding audience inspired. The call for papers is open until February 22nd. You can send in as many proposals as you like, so start submitting your talks.
Midwest PHP is taking over beautiful Minneapolis once again this year, bringing leading experts from around the world to talk about APIs, Frameworks, Security, Version Control, Testing, Continuous Integration, and much more! Midwest PHP welcomes developers of all levels and encourages diversity - we promise there will be something for everyone. So join us March 14-15th for great talks, great people, and of course great food! Register today at http://www.midwestphp.org
We want you to learn as much as possible during the three days of conference. We do that through quality and variety of both content and speakers, as well as creating a fun and friendly atmosphere.
We have presentations for any level, from beginner to advanced. You\'ll learn about the backend and frontend, web and mobile, information systems and games, hard and soft skills, as well as many related topics.
A popular general-purpose scripting language that is especially suited to web development.
Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world.
+ The PHP Foundation is a collective of people and organizations, united in the mission to ensure the long-term prosperity of the PHP language. -
-
- After a lengthy QA process, PHP 4.1.0 is finally out!
- [ Version Française ]
-
PHP 4.1.0 includes several other key improvements:
-- As some of you may notice, this version is quite historic, as it's - the first time in history we actually incremented the middle digit! :) - The two key reasons for this unprecedented change were the new input - interface, and the broken binary compatibility of modules due to the - versioning support. -
- -- Following is a description of the new input mechanism. For a full list of - changes in PHP 4.1.0, see the ChangeLog. -
- -- First and foremost, it's important to stress that regardless of - anything you may read in the following lines, PHP 4.1.0 still - supports the old input mechanisms from older versions. - Old applications should go on working fine without modification! -
- -Now that we have that behind us, let's move on :)
- -- For various reasons, PHP setups which rely on register_globals - being on (i.e., on form, server and environment variables becoming - a part of the global namespace, automatically) are very often - exploitable to various degrees. For example, the piece of code: -
- -');?> - -- May be exploitable, as remote users can simply pass on 'authenticated' - as a form variable, and then even if authenticate_user() returns false, - $authenticated will actually be set to true. While this looks like a - simple example, in reality, quite a few PHP applications ended up being - exploitable by things related to this misfeature. -
- -- While it is quite possible to write secure code in PHP, we felt that the - fact that PHP makes it too easy to write insecure code was bad, and we've - decided to attempt a far-reaching change, and deprecate register_globals. - Obviously, because the vast majority of the PHP code in the world relies - on the existence of this feature, we have no plans to actually remove it - from PHP anytime in the foreseeable future, but we've decided to encourage - people to shut it off whenever possible. -
- -- To help users build PHP applications with register_globals being off, - we've added several new special variables that can be used instead of the - old global variables. There are 7 new special arrays: -
- -- Now, other than the fact that these variables contain this special information, - they're also special in another way - they're automatically global in any - scope. This means that you can access them anywhere, without having to - 'global' them first. For example: -
- -');?> - -- would work fine! We hope that this fact would ease the pain in migrating - old code to new code a bit, and we're confident it's going to make writing - new code easier. Another neat trick is that creating new entries in the - $_SESSION array will automatically register them as session variables, as - if you called session_register(). This trick is limited to the session - module only - for example, setting new entries in $_ENV will - not perform an implicit putenv(). -
- -- PHP 4.1.0 still defaults to have register_globals set to on. It's a - transitional version, and we encourage application authors, especially - public ones which are used by a wide audience, to change their applications - to work in an environment where register_globals is set to off. Of course, - they should take advantage of the new features supplied in PHP 4.1.0 that - make this transition much easier. -
- -- As of the next semi-major version of PHP, new installations of PHP will - default to having register_globals set to off. No worries! Existing - installations, which already have a php.ini file that has register_globals - set to on, will not be affected. Only when you install PHP on a brand new - machine (typically, if you're a brand new user), will this affect you, and - then too - you can turn it on if you choose to. -
- -- Note: Some of these arrays had old names, e.g. $HTTP_GET_VARS. These names - still work, but we encourage users to switch to the new shorter, and - auto-global versions. -
- -- Thanks go to Shaun Clowes (shaun at securereality dot com dot au) for - pointing out this problem and for analyzing it. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.1.0'); diff --git a/releases/4_1_0_fr.php b/releases/4_1_0_fr.php index 04c16a721d..e2087c6b90 100644 --- a/releases/4_1_0_fr.php +++ b/releases/4_1_0_fr.php @@ -1,192 +1,3 @@ "fr"]); -?> - -
- Après un long processus "QA", PHP 4.1.0 est enfin sorti!
- [ English Version ]
-
- PHP 4.1.0 inclut beaucoup d'améliorations importantes: -
-- Comme certains l'ont noté, cette version est quelque peu historique, - comme c'est la première fois dans l'histoire que nous incrémentons - le numéro du milieu ! - Les deux principales raisons à cela sont d'un côté les changements sans - précédent de la nouvelle interface d'entrée, et de l'autre l'incompatibilité - des modules dus au support des versions. -
- -- Ce qui suit concerne une description du nouveau mécanisme d'entrée. - Pour une liste complète des changements voir le - ChangeLog. -
- -- Avant tout, il est important de signaler que, sans tenir compte de ce - que vous pourriez lire dans les lignes qui suivent, PHP 4.1.0 gère - encore les anciens mécanismes d'entrée des anciennes versions. - D'anciennes applications devraient bien fonctionner sans modifications ! -
- -Passsons à la suite mainenant que cela est dit :)
- -- Pour différentes raisons, PHP qui se repose sur register_globals ON - (ex. sur les formulaires, les variables serveur et d'environnement - deviennent partie de la portée globale d'un script [namespace], et - ce automatiquement) sont très souvent exploitable à des degrés - divers. Par exemple le code suivant: -
- -');?> - -- Peut être exploitable de la manière suivante, des utilisateurs - distants peuvent simplement passer 'authenticated' comme variable - d'un formulaire et même si authenticate_user() retourne false, - $authentiticated va actuellement contenir true. Ce"la semble etre un - exemple très simple, mais en réalité, bien des applications PHP - sont exploitable par ce dysfonctionnement. -
- -- Tandis qu'il est parfaitement possible d'écrire du code PHP - sécurisé, nous sentions que le fait que PHP permette, de manière beaucoup - trop facile, d'écrire du code PHP non sécurisé n'était pas - acceptable, et nous avons décidé de tenter un changement très grand - et de rendre caduque register_globals. - Evidemment, à cause de la grande majorité de code PHP dans le monde se - reposant sur l'existence de cette fonctionnalité, nous ne la supprimerons - jamais, mais nous avons décidés d'encourager les utilisateurs de ne plus - l'utiliser à chaque fois que cela est possible. -
- -- Afin d'aider les utilisateurs à construire des applications PHP avec - register_globals à Off, nous avons ajouté quelques nouvelles - variables spéciales, variables qui peuvent être utilisées à la place - des anciennes variables globales. Il y a 7 nouveaux tableaux spéciaux: -
- -- Maintenant, entre autre le fait que ces variables contiennent ces - informations spéciales, elles sont aussi automatiquement globales - dans toutes les portées. Cela signifie que vous pouvez y accéder - de n'importe où, sans avoir à les déclarer en globales. Par exemple: -
- -');?> - -- va fonctionner très bien! Nous espérons que cela va faciliter la tâche - durant la migration de vieux code vers le nouveau, et nous sommes sûrs - que cela vous simplifiera l'écriture de nouveaux codes. - Une autre astuce est que le fait de créer de nouvelles entrées dans - $_SESSION va automatiquement les enregistrer comme variables de session, - comme si vous auriez appelé session_register(). Cette astuce est limitée - uniquement au module de gestion de session - par exemple, créer de - nouvelles entrés dans $_ENV ne va pas exécuter un put_env() - implicite. -
- -- PHP 4.1.0 doit toujours avoir register_globals mis a On par défaut. - C'est une version de transition, et nous encourageons les auteurs - d'applications, spécialement les applications publiques qui sont utilisées - par une large audience, de changer leurs applications pour fonctionner - avec un environnement où register_globals est à Off. Il est clair - qu'ils devraient profiter des nouvelles fonctionnalités fournies - avec PHP 4.1.0 qui font que cette transition est plus aisée. -
- -- Dans la prochaine version "semi majeure" de PHP, de nouvelles installations - de PHP devrait avoir register_globals mis à Off par défaut. Ne vous en - faites pas! Les installations existantes, qui ont déjà un fichier php.ini - qui a register_globals à On, ne vont pas être affectées. Cela vous - affectera seulement si vous installez PHP sur une nouvelle machine - (typiquement si vous êtes un nouvel utilisateur), et si vous le désirez - vous pourrez toujours le mettre à On. -
- -- Note: Certains de ces tableaux ont d'anciens noms, exemple : $HTTP_GET_VARS. - Ces noms fonctionnent toujours, mais nous encourageons les utilisateurs - de migrer vers le nouveaux noms, plus courts et qui sont des versions - automatiquement globales. -
- -- Les remerciements vont à Shaun Clowes (shaun at securereality dot com dot au) - pour avoir révélé ce problème et avoir aidé - à l'analyser. -
- -- French translation is available courtesy of Pierre-Alain Joye - (pierre-alain dot joye at wanadoo dot fr). -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.1.0'); diff --git a/releases/4_1_1.php b/releases/4_1_1.php index bbbc8d6dfe..70ed406f2d 100644 --- a/releases/4_1_1.php +++ b/releases/4_1_1.php @@ -1,63 +1,3 @@ - -- Due to a few bugs in PHP 4.1.0, we decided to release PHP 4.1.1. The bugs - that were fixed are not major ones but minor ones, which could be annoying - if you get bitten by them. -
- -- Our recommendation is that people who already upgraded to PHP 4.1.0 do - not upgrade to PHP 4.1.1, - unless they're experiencing one of the described bugs. -
- -- No new features or security updates are available - in this release. -
- -Full list of fixes:
- -
- After an orderly QA process, PHP 4.2.0 is out!
- [ Version Française ]
-
- The biggest change in PHP 4.2.0 concerns variable handling. External - variables (from the environment, the HTTP request, cookies or the web server) - are no longer registered in the global scope by default. The preferred - method of accessing these external variables is by using the new Superglobal - arrays, introduced in PHP 4.1.0. More information about this change:
- -- The Apache Software Foundation recently released their first - General Availability version of Apache 2. PHP 4.2.0 will have - EXPERIMENTAL support for this version. You can - build a DSO module for Apache 2 with --with-apxs2. We do - not recommend that you use this in a production - environment. -
-- PHP 4.2.0 still lacks certain key features on Mac OS X and - Darwin, and isn't officially supported by the PHP Group on - these platforms. Specifically, building PHP as a dynamically - loaded Apache module isn't supported at this time. PHP 4.3.0, - due to be released in August, 2002, will be the first PHP - release to officially support Mac OS X. It, along with future - Mac OS X and Apache releases, will enable full feature parity - with other PHP platforms. Update: - Instructions on - overcoming these limitations -
- -PHP 4.2.0 includes several improvements:
- -- For a full list of changes in PHP 4.2.0, - see the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.2.0'); diff --git a/releases/4_2_0_fr.php b/releases/4_2_0_fr.php index 80fb718f14..0a77048210 100644 --- a/releases/4_2_0_fr.php +++ b/releases/4_2_0_fr.php @@ -1,91 +1,3 @@ "fr"]); -?> - -[ English Version ]
- -- Après avoir passé avec succès le processus - qualité, PHP 4.2.0 est officiellement publié! -
- -- Le changement le plus important de PHP 4.2.0 concerne la gestion des - variables. Les variables externes (issues de l'environnement d'exécution, - des requêtes HTTP, des cookies ou du serveur web) ne sont plus enregistrées - dans l'environnement d'exécution global par défaut. - La méthode recommandée pour accéder aux variables - externes est d'utiliser les nouveaux tableaux globaux, introduits en - PHP 4.1.0. Pour plus d'informations sur ces modifications: -
-- L'ASF (Apache Software Foundation) a récemment publié sa première - version publique d'Apache 2. PHP 4.2.0 dispose du support - EXPERIMENTAL d'Apache 2. Vous pouvez compiler un module - DSO pour Apache 2 avec l'option --with-apxs2. Nous recommandons - de ne pas utiliser cette combinaison en environnement de - production. -
-- Il manque encore à PHP 4.2.0 des fonctionnalités clés - sur MacOSX et sur Darwin. PHP n'est donc pas officiellement - supporté par le PHP group sur ces plates-formes. Spécifiquement, - compiler PHP comme module Apache dynamiquement chargé n'est pas - encore supporté. PHP 4.3.0, dont la publication est prévue pour - Août 2002, sera la première version qui supportera officiellement - Mac OS X. Cette version, aussi bien pour les futures versions de - Mac OS X et Apache, sera totalement synchronisé avec les autres - plates-formes PHP. -
- -PHP 4.2.0 inclut de nombreuses innovations:
-- Pour une liste complète de changements en PHP 4.2.0, voyez le fichier - NEWS, dans la distribution. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.2.0'); diff --git a/releases/4_2_1.php b/releases/4_2_1.php index 2d9ab46a9f..fce7ea7ea3 100644 --- a/releases/4_2_1.php +++ b/releases/4_2_1.php @@ -1,65 +1,3 @@ - -- This bug fix release solves a few bugs found in PHP 4.2.0. - PHP 4.2.1 includes the following fixes: -
- -- For a full list of changes in PHP 4.2.1, see the - ChangeLog. -
- -- PHP 4.2.1 also has improved (but still experimental) support for Apache version 2. - We do not recommend that you use this in a production environment, - but feel free to test it and report bugs to the bug - system. -
- -- We would also like to attend you on a big change in PHP 4.2.0 concerning - variable handling. External variables (from the environment, the HTTP - request, cookies or the web server) are no longer registered in the global - scope by default. The preferred method of accessing these external - variables is by using the new Superglobal arrays, introduced in PHP 4.1.0. - More information about this change: -
- -[ English Version ]
- -- Cette version intermédiaire corrige quelques bugs - trouvés dans PHP 4.2.0. PHP 4.2.1 inclut les - améliorations suivantes: -
- -- Pour une liste complète des modifications de PHP 4.2.1, voyez le fichier - ChangeLog. -
- -- PHP 4.2.1 dispose aussi d'une compatibilité améliorée - (mais toujours expérimentale) avec Apache 2. Nous ne - recommandons pas son utilisation dans un environnement de - production. Testez-le intensivement, et rapportez tous les bugs dans le - système. -
- -- Nous attirons votre attention sur l'évolution majeure de PHP 4.2.0 concernant - l'utilisation des variables. Les variables externes (celles d'environnement - ou du serveur web, les requêtes HTTP, les cookies) ne sont plus enregistrées - par défaut comme variables globales. La méthode - recommandée pour accéder à ces variables est d'utiliser les - super globales, introduits en PHP 4.1.0. Plus d'informations sur ces modifications: -
- -- The PHP Group has learned of a serious security vulnerability in PHP - versions 4.2.0 and 4.2.1. An intruder may be able to execute arbitrary - code with the privileges of the web server. This vulnerability may be - exploited to compromise the web server and, under certain conditions, - to gain privileged access. -
- -- PHP contains code for intelligently parsing the headers of HTTP POST - requests. The code is used to differentiate between variables and files - sent by the user agent in a "multipart/form-data" request. This parser - has insufficient input checking, leading to the vulnerability. -
- -- The vulnerability is exploitable by anyone who can send HTTP POST - requests to an affected web server. Both local and remote users, even - from behind firewalls, may be able to gain privileged access. -
- -- Both local and remote users may exploit this vulnerability to compromise - the web server and, under certain conditions, to gain privileged access. - So far only the IA32 platform has been verified to be safe from the - execution of arbitrary code. The vulnerability can still be used on IA32 - to crash PHP and, in most cases, the web server. -
- -- The PHP Group has released a new PHP version, 4.2.2, which incorporates - a fix for the vulnerability. All users of affected PHP versions are - encouraged to upgrade to this latest version. The - downloads page has the new 4.2.2 source tarballs, Windows binaries - and source patches from 4.2.0 and 4.2.1 available for download. -
- -- If the PHP applications on an affected web server do not rely on HTTP - POST input from user agents, it is often possible to deny POST requests - on the web server. -
- -- In the Apache web server, for example, this is possible with the - following code included in the main configuration file or a top-level - .htaccess file: -
- --<Limit POST> - Order deny,allow - Deny from all -</Limit> -- -
- Note that an existing configuration and/or .htaccess file may have - parameters contradicting the example given above. -
- -- The PHP Group would like to thank Stefan Esser of e-matters GmbH for - discovering this vulnerability. e-matters GmbH has also released an - independent - advisory, describing the vulnerability in more detail. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.2.2'); diff --git a/releases/4_2_2_fr.php b/releases/4_2_2_fr.php index a9125184d5..87ebd4954b 100644 --- a/releases/4_2_2_fr.php +++ b/releases/4_2_2_fr.php @@ -1,104 +1,3 @@ "fr"]); -?> - -[ English Version ]
- -- Le PHP Group a pris connaissance d'un trou de sécurité sérieux en PHP - version 4.2.0 et 4.2.1. Un intrus pourrait exécuter un code arbitraire sur - le serveur, avec les mêmes privilèges que celui qui exécute le serveur web. - Cette vulnérabilité peut être exploitée pour compromettre le serveur web, - et dans certaines circonstances, obtenir des droits spéciaux. -
- -- PHP contient du code qui analyse finement les entêtes des requêtes - HTTP POST. Le code est utilisé pour différencier les variables des - fichiers qui sont envoyés par le navigateur, avec l'encodage - "multipart/form-data". Cet analyseur ne vérifie pas suffisamment - les données d'entrée, ce qui conduit à une - vulnérabilité. -
- -- La vulnérabilité est exploitable par quiconque peut envoyer des requêtes - HTTP POST à un serveur web utilisant PHP versions 4.2.0 et 4.2.1. Des - utilisateurs, locaux ou distants, même derrière un pare-feu, pourraient - obtenir des autorisations indues sur la machine. -
- -- Les utilisateurs, tant locaux que distants, peuvent exploiter cette - vulnérabilité pour compromettre le serveur web, et, dans certaines circonstances, - obtenir des autorisations indues. Jusqu'à présent, seule la plate-forme - IA32 a pu passer les tests de sécurité. Cette vulnérabilité peut être utilisée - sous IA32 pour crasher PHP et, dans la plupart des cas, le serveur web. -
- -- Le PHP Group a publié une nouvelle version PHP version, 4.2.2, qui inclus - une correction pour cette vulnérabilité. Tous les utilisateurs des versions de PHP - affectées sont encouragés à passer à cette nouvelle version. L'URL de - téléchargement est : - http://www.php.net/downloads.php - sous forme de sources (tarballs), exécutable Windows et source patches - pour les versions 4.2.0 et 4.2.1. -
- -- Si les applications PHP n'utilisent pas la méthode POST sur un serveur - affecté, il est possible de simplement interdire les requêtes POST sur le - serveur. -
- -- Sous Apache, par exemple, il est possible d'utiliser le code suivant - dans le fichier de configuration principal, ou avec un fichier .htaccess - placé suffisamment près de la racine : -
- --<Limit POST> - Order deny,allow - Deny from all -</Limit> -- -
- Notez qu'une autre configuration ou/et un autre fichier .htaccess avec - certains paramètres, peuvent annuler l'effet de l'exemple ci-dessus. -
- -- Le PHP Group remercie Stefan Esser de e-matters GmbH pour la découverte - de cette vulnérabilité. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.2.2'); diff --git a/releases/4_3_0.php b/releases/4_3_0.php index d8897bb9ac..0a495b6d30 100644 --- a/releases/4_3_0.php +++ b/releases/4_3_0.php @@ -1,100 +1,3 @@ - -- After a long and arduous 8 months of development and testing, PHP 4.3.0 is - out! With regard to scope, time, and effort, this - is the largest 4.x release of PHP, and it further elevates PHP's standing as a - serious contender in the general purpose scripting language arena. -
- -- This version finalizes the separate command line interface (CLI) that can be - used for developing shell and desktop applications (with - PHP-GTK). The CLI is always built, but - installed automatically only if CGI version is disabled via --disable-cgi - switch during configuration. Alternatively, one can use make - install-cli target. On Windows CLI can be found in - cli folder. -
- -- CLI has a number of differences compared to other server APIs. More information - can be found in the PHP Manual: - Using PHP from the command line -
- -- A very important "under the hood" feature is the streams API. It introduces a - unified approach to the handling of files, pipes, sockets, and other I/O - resources in the PHP core and extensions. -
-- What this means for users is that any I/O function that works with streams - (and that is almost all of them) can access built-in protocols, such as - HTTP/HTTPS and FTP/FTPS, as well as custom protocols registered from PHP - scripts. For more information please see: List - of Supported Protocols/Wrappers -
- -- This iteration of the build system, among other things, replaces the slow - recursive make with one global Makefile and eases the integration of proper - dependencies. Automake is only needed for its aclocal tool. The build process is - now more portable and less resource-consuming. -
- -PHP 4.3.0 has many improvements and enhancements:
- -- For the full list of changes in PHP 4.3.0, see the - ChangeLog file. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.0'); diff --git a/releases/4_3_0_fr.php b/releases/4_3_0_fr.php index 8761d1e45f..0a495b6d30 100644 --- a/releases/4_3_0_fr.php +++ b/releases/4_3_0_fr.php @@ -1,131 +1,3 @@ "fr"]); -?> - -[ English version ]
- -- Après un long et difficile 8 mois de développement et de - test, PHP 4.3.0 est publié! Au vue - des évolutions, du temps consacré et des efforts - consentis, cette version est la plus importante version de la - série des PHP 4.x. Elle contribue largement a améliorer - les capacités de PHP en tant que langage - généraliste de scripts. -
- -- PHP 4.3.0 achève la séparation du mode d'utilisation en - ligne de commande (dit CLI) qui permet de développer des - applications shell ou graphiques (avec PHP-GTK). - La version CLI de PHP est toujours compilées, mais elle n'est - installée que si la version CGI est désactivée - avec l'option --disable-cgi. De plus, vous pouvez utilisez la commande - make install-cli. Sous Windows, la version CLI est - disponible dans le dossier cli. -
- -- CLI dispose de fonctionnalités différentes, par rappot - à la version interfacée avec les serveurs web. Pour - plus de détails, reportez vous à - Utiliser PHP en ligne de commande -
- -- Une nouveauté très importante, mais cachée a été - introduite : les flôts. Les flôts unifient la gestion des pipes, - fichiers, sockets et autres ressources d'entrées/sorties du coeur de - PHP et de ses extensions. -
-- Cela signifie, pour les utilisateurs, est que les fonctions d'entrées/sorties - fonctionnent désormais avec les flôts (c'est à dire presque - toutes), peuvent utiliser des protocoles internes tels que HTTP/HTTPS et FTP/FTPS, - ainsi que des protocoles personnalisés, enregistrés comme tels depuis - les scripts PHP. Pour plus d'informations, voyez: - Liste des protocoles supportés -
- -- Cette version du système de compilation de PHP, entre autre choses, remplace - la version récursive lente par un Makefile global, et facilite - l'intégration des librairies connexes. Automake est uniquement - nécessaire pour l'utilitaire aclocal. Le processus de compilation est rendu - plus portable, et moins consommateur de ressources. -
- -PHP 4.3.0 propose de nombreuses améliorations et évolutions :
- -- Pour la liste complète des modifications de PHP 4.3.0, voyez le fichier - d'historique. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.0'); diff --git a/releases/4_3_1.php b/releases/4_3_1.php index 9ae866e95a..cf7926f2ed 100644 --- a/releases/4_3_1.php +++ b/releases/4_3_1.php @@ -1,76 +1,3 @@ - -- The PHP Group has learned of a serious security vulnerability in - the CGI SAPI of PHP version 4.3.0. -
- -- PHP contains code for preventing direct access to the CGI binary with - configure option "--enable-force-cgi-redirect" and php.ini option - "cgi.force_redirect". In PHP 4.3.0 there is a bug which renders these - options useless. -
- -- NOTE: This bug does NOT affect any of the other SAPI modules. - (such as the Apache or ISAPI modules, etc.) -
- -- Anyone with access to websites hosted on a web server which employs - the CGI module may exploit this vulnerability to gain access to any file - readable by the user under which the webserver runs. -
- -- A remote attacker could also trick PHP into executing arbitrary PHP code - if attacker is able to inject the code into files accessible by the CGI. - This could be for example the web server access-logs. -
- -- The PHP Group has released a new PHP version, 4.3.1, which incorporates - a fix for the vulnerability. All users of affected PHP versions are - encouraged to upgrade to this latest version. The - downloads page has the new 4.3.1 source tarballs, Windows binaries - and source patch from 4.3.0 available for download. You will only need - to upgrade if you're using the CGI module of PHP 4.3.0. There are no - other bugfixes contained in this release. -
- -None.
- -- The PHP Group would like to thank Kosmas Skiadopoulos for discovering - this vulnerability. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.1'); diff --git a/releases/4_3_10.php b/releases/4_3_10.php index 9aff2fb70d..d0dca16e9b 100644 --- a/releases/4_3_10.php +++ b/releases/4_3_10.php @@ -1,55 +1,3 @@ - --PHP Development Team would like to announce the immediate release of PHP 4.3.10. This is a -maintenance release that in addition to over 30 non-critical bug fixes addresses several very -serious security issues. -
--These include the following: -
-
-CAN-2004-1018 - shmop_write() out of bounds memory write access.
-CAN-2004-1018 - integer overflow/underflow in pack() and unpack() functions.
-CAN-2004-1019 - possible information disclosure, double free and negative reference index array underflow in deserialization code.
-CAN-2004-1020 - addslashes() not escaping \0 correctly.
-CAN-2004-1063 - safe_mode execution directory bypass.
-CAN-2004-1064 - arbitrary file access through path truncation.
-CAN-2004-1065 - exif_read_data() overflow on long sectionname.
-magic_quotes_gpc could lead to one level directory traversal with file uploads.
-
All Users of PHP are strongly encouraged to upgrade to this release as soon as possible.
- -- Aside from the above mentioned issues this release includes the following important fixes: -
- -- For a full list of changes in PHP 4.3.10, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.10'); diff --git a/releases/4_3_10_fr.php b/releases/4_3_10_fr.php index 9dc6e5813c..d0dca16e9b 100644 --- a/releases/4_3_10_fr.php +++ b/releases/4_3_10_fr.php @@ -1,56 +1,3 @@ - -[ English Version ]
--L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.10. C'est une version -de maintenance, destinée à corriger une trentaine de bogues -non-critiques et ainsi que plusieurs problèmes de sécurité sérieux. -
--Cela inclut notamment: -
-
-CAN-2004-1018 - shmop_write() écrit hors des limites de la mémoire.
-CAN-2004-1018 - dépassement de capacité avec pack() et unpack().
-CAN-2004-1019 - publication possible d'informations, dépassement de capacité dans les index négatif lors de délinéarisation de données.
-CAN-2004-1020 - addslashes() ne protège pas correctement \0.
-CAN-2004-1063 - contournement de la directive de dossier d'exécution.
-CAN-2004-1064 - accès arbitraire à un fichier via une troncature.
-CAN-2004-1065 - dépassement de capacité avec exif_read_data() sur un long nom de section.
-magic_quotes_gpc peut mener à la lecture d'un dossier via le téléchargement de fichiers.
-
Tous les utilisateurs sont encouragés à utiliser cette version.
- --En plus des fonctionnalités ci-dessus, PHP 4.3.9 contient notamment les corrections, ajouts et améliorations suivantes : -
- -- Pour une liste exhaustive des modifications de PHP 4.3.10, voyez - le ChangeLog, en anglais. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.10'); diff --git a/releases/4_3_11.php b/releases/4_3_11.php index 808755625e..623ab2a8da 100644 --- a/releases/4_3_11.php +++ b/releases/4_3_11.php @@ -1,39 +1,3 @@ - --PHP Development Team is would like to announce the immediate release of PHP 4.3.11. -This is a maintenance release that in addition to over 70 non-critical bug fixes addresses several -security issues inside the exif and fbsql extensions as well as the unserialize(), -swf_definepoly() and getimagesize() functions. -
- -All Users of PHP are strongly encouraged to upgrade to this release.
- -- For a full list of changes in PHP 4.3.11, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.11'); diff --git a/releases/4_3_11_fr.php b/releases/4_3_11_fr.php index 715218c619..623ab2a8da 100644 --- a/releases/4_3_11_fr.php +++ b/releases/4_3_11_fr.php @@ -1,36 +1,3 @@ - -[ English Version ]
--L'équipe de développement PHP a le plaisir de vous annoncer la publication de PHP 4.3.11. C'est une version de maintenance, destinée à corriger environ 70 bogues non-critiques, plusieurs problèmes avec les extensions exif et fbsql ainsi que les fonctions unserialize(), swf_definepoly() et getimagesize(). -
--Tous les utilisateurs sont encouragés à utiliser cette version. -
- -- Pour une liste exhaustive des modifications de PHP 4.3.11, voyez - le ChangeLog, en anglais. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.11'); diff --git a/releases/4_3_2.php b/releases/4_3_2.php index 48e099c15e..2473496dcc 100644 --- a/releases/4_3_2.php +++ b/releases/4_3_2.php @@ -1,50 +1,3 @@ - -
- After a lengthy QA process, PHP 4.3.2 is finally out!
- This maintenance release solves a lot of bugs found in earlier PHP versions
- and is a strongly recommended upgrade for all users of PHP.
-
- PHP 4.3.2 contains, among others, following important fixes, additions and improvements: -
- -- For a full list of changes in PHP 4.3.2, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.2'); diff --git a/releases/4_3_2_fr.php b/releases/4_3_2_fr.php index bd62af5f7b..2473496dcc 100644 --- a/releases/4_3_2_fr.php +++ b/releases/4_3_2_fr.php @@ -1,55 +1,3 @@ "fr"]); -?> - -[ English version ]
- -
- Après une longue étape de tests d'assurance Qualité,
- PHP 4.3.2 est finalement disponible!
- Cette version de maintenance résout un grand nombre de bugs trouvés dans
- des versions plus anciennes de PHP, et il est recommandé
- de faire la mise à jour pour tous les utilisateurs PHP.
-
- PHP 4.3.2 contient notamment les corrections, ajouts et améliorations suivantes : -
- -- Pour une liste complète des modifications de PHP 4.3.2, reportez-vous au fichier - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.2'); diff --git a/releases/4_3_3.php b/releases/4_3_3.php index 93c0f20a4d..fc914dfb67 100644 --- a/releases/4_3_3.php +++ b/releases/4_3_3.php @@ -1,47 +1,3 @@ - -
- After a lengthy QA process, PHP 4.3.3 is finally out!
- This maintenance release solves a fair number of bugs found in prior PHP versions and
- addresses several security issues. All users are strongly advised to
- upgrade to 4.3.3 as soon as possible.
-
- PHP 4.3.3 contains, among others, following important fixes, additions and improvements: -
- -- For a full list of changes in PHP 4.3.3, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.3'); diff --git a/releases/4_3_3_fr.php b/releases/4_3_3_fr.php index 3a48a9a893..fc914dfb67 100644 --- a/releases/4_3_3_fr.php +++ b/releases/4_3_3_fr.php @@ -1,48 +1,3 @@ - -[ English version ]
- -
-Après avoir suivi un long processus qualité, PHP 4.3.3 est disponible!
-Cette version de maintenance résout un bon nombre de bugs découverts
-dans des versions antérieures de PHP. Elle corrige aussi plusieurs
-problèmes de sécurité. Il est vivement recommandé à tous les
-utilisateurs d'utiliser cette version aussitôt que possible.
-
-PHP 4.3.3 contient la liste suivante et non exhaustive de corrections, -améliorations et ajouts : -
- -- Pour une liste exhaustive des modifications de PHP 4.3.3, voyez - le changelog, en anglais. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.3'); diff --git a/releases/4_3_4.php b/releases/4_3_4.php index 1e0ab94e1a..12fedbc1c8 100644 --- a/releases/4_3_4.php +++ b/releases/4_3_4.php @@ -1,39 +1,3 @@ - -
- After a lengthy QA process, PHP 4.3.4 is finally out!
- This is a medium size maintenance release, with a fair number of bug fixes. All users
- are encouraged to upgrade to 4.3.4.
-
- PHP 4.3.4 contains, among others, following important fixes, additions and improvements: -
- -- For a full list of changes in PHP 4.3.4, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.4'); diff --git a/releases/4_3_4_fr.php b/releases/4_3_4_fr.php index 4f36924454..12fedbc1c8 100644 --- a/releases/4_3_4_fr.php +++ b/releases/4_3_4_fr.php @@ -1,41 +1,3 @@ "fr"]); -?> - -[ English version ]
- -
- Après un long processus d'assurance qualité,
- PHP 4.3.4 est désormais disponible!
- C'est une version mineure d'entretien, avec de nombreuses corrections de bogues.
- Tous les utilisateurs sont invités à passer à cette nouvelle version.
-
- PHP 4.3.4 contient notamment les corrections, ajouts et - améliorations suivantes : -
- -- Pour la liste exhaustive des modifications de PHP 4.3.4, voyez - le changelog, en anglais. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.4'); diff --git a/releases/4_3_5.php b/releases/4_3_5.php index d5efd309c2..e568025911 100644 --- a/releases/4_3_5.php +++ b/releases/4_3_5.php @@ -1,46 +1,3 @@ - -- PHP Development Team is proud to announce the release of PHP 4.3.5. - This is primarily a bug fix release, without any new features or additions. PHP 4.3.5 - is by far the most stable release of PHP to date and it is recommended that - all users upgrade to this release whenever possible. -
- -- PHP 4.3.5 contains, among others, following important fixes, additions and improvements: -
- -- For a full list of changes in PHP 4.3.5, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.5'); diff --git a/releases/4_3_5_fr.php b/releases/4_3_5_fr.php index f4d8fdbadf..e568025911 100644 --- a/releases/4_3_5_fr.php +++ b/releases/4_3_5_fr.php @@ -1,46 +1,3 @@ - -[ English Version ]
- --L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.5. C'est une version -de maintenance, destinée à corriger des erreurs, et sans aucun -ajout de fonctionnalité. PHP 4.3.5 est, de loin, la version de PHP -la plus stable, et il est recommandé à tous les utilisateurs -d'adopter cette version dès que possible. -
- -- PHP 4.3.5 contient notamment les corrections, ajouts et améliorations suivantes : -
- -- Pour une liste exhaustive des modifications de PHP 4.3.5, voyez - le changelog, en anglais. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.5'); diff --git a/releases/4_3_6.php b/releases/4_3_6.php index 998c9c37aa..8a502c8f98 100644 --- a/releases/4_3_6.php +++ b/releases/4_3_6.php @@ -1,43 +1,3 @@ - -- PHP Development Team is proud to announce the release of PHP PHP 4.3.6. - This is is a bug fix release whose primary goal is to address two bugs which may - result in crashes in PHP builds with thread-safety enabled. All users of PHP - in a threaded environment (Windows) are strongly encouraged to upgrade to - this release. -
- -- Aside from the above mentioned issues this release includes the following important fixes: -
- -- For a full list of changes in PHP 4.3.6, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.6'); diff --git a/releases/4_3_6_fr.php b/releases/4_3_6_fr.php index df7a861f72..8a502c8f98 100644 --- a/releases/4_3_6_fr.php +++ b/releases/4_3_6_fr.php @@ -1,45 +1,3 @@ - - -[ English Version ]
- --L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.6. C'est une version -de maintenance, destinée à corriger deux bogues qui -peuvent conduire à des crashs de PHP si la sécurité threads est activée. -Il est recommandé à tous les utilisateurs d'adopter cette -version dès que possible. -
- -- PHP 4.3.6 contient notamment les corrections, ajouts et améliorations suivantes : -
- -- Pour une liste exhaustive des modifications de PHP 4.3.6, voyez - le changelog, en anglais. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.6'); diff --git a/releases/4_3_7.php b/releases/4_3_7.php index 12d5ead8d5..507c878637 100644 --- a/releases/4_3_7.php +++ b/releases/4_3_7.php @@ -1,42 +1,3 @@ - -- PHP Development Team is proud to announce the release of PHP PHP 4.3.7. - This is a maintenance release that in addition to several non-critical bug fixes, addresses an input - validation vulnerability in escapeshellcmd() and escapeshellarg() functions on the Windows platform. - Users of PHP on Windows are encouraged to upgrade to this release as soon as possible. -
- -- Aside from the above mentioned issues this release includes the following important fixes: -
- -- For a full list of changes in PHP 4.3.7, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.7'); diff --git a/releases/4_3_7_fr.php b/releases/4_3_7_fr.php index 22776d6a95..507c878637 100644 --- a/releases/4_3_7_fr.php +++ b/releases/4_3_7_fr.php @@ -1,44 +1,3 @@ - -[ English Version ]
- --L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.7. C'est une version -de maintenance, destinée à corriger des bogues non-critiques, -corriger une vulnérabilité de validation dans les fonctions escapeshellcmd() et -escapeshellarg() sur la plate-forme Windows. Les utilisateurs de PHP sont encouragés -à changer de version aussitôt que possible. -
- -- PHP 4.3.7 contient notamment les corrections, ajouts et améliorations suivantes : -
- -- Pour une liste exhaustive des modifications de PHP 4.3.7, voyez - le changelog, en anglais. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.7'); diff --git a/releases/4_3_8.php b/releases/4_3_8.php index 3f590cf1bb..debdbda12c 100644 --- a/releases/4_3_8.php +++ b/releases/4_3_8.php @@ -1,30 +1,3 @@ - -- PHP Development Team is would like to announce the immediate availability of PHP 4.3.8. - This release is made in response to several security issues that have been discovered since the - 4.3.7 release. All users of PHP are strongly encouraged to upgrade to PHP 4.3.8 as soon as possible. -
- -- This release addresses several important security issues. -
- -- For a full list of changes in PHP 4.3.8, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.8'); diff --git a/releases/4_3_9.php b/releases/4_3_9.php index d43691b8e4..b8f2314455 100644 --- a/releases/4_3_9.php +++ b/releases/4_3_9.php @@ -1,46 +1,3 @@ - -- PHP Development Team is proud to announce the immediate release of PHP PHP 4.3.9. - This is a maintenance release that in addition to over 50 non-critical bug fixes, addresses a problem - with GPC input processing. This release also re-introduces ability to write - GIF images via the bundled GD extension. - All Users of PHP are encouraged to upgrade to this release as soon as possible. -
- -- Aside from the above mentioned issues this release includes the following important fixes: -
- -- For a full list of changes in PHP 4.3.9, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.9'); diff --git a/releases/4_3_9_fr.php b/releases/4_3_9_fr.php index 75210ebc4e..b8f2314455 100644 --- a/releases/4_3_9_fr.php +++ b/releases/4_3_9_fr.php @@ -1,47 +1,3 @@ - -[ English Version ]
--L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.9. C'est une version -de maintenance, destinée à corriger une cinquantaine de bogues non-critiques, -et corriger le traitement des valeurs GPC. Cette version inclut aussi la possibilité -d'écrire des images GIF via la bibliothèque GD interne. Tous les utilisateurs -sont encouragés à utiliser cette version. -
- --En plus des fonctionnalités ci-dessus, PHP 4.3.9 contient notamment les corrections, -ajouts et améliorations suivantes : -
- -- Pour une liste exhaustive des modifications de PHP 4.3.9, voyez - le ChangeLog, en anglais. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.3.9'); diff --git a/releases/4_4_0.php b/releases/4_4_0.php index 500fd9b093..1471fea469 100644 --- a/releases/4_4_0.php +++ b/releases/4_4_0.php @@ -1,47 +1,3 @@ - --The PHP Development Team would like to announce the immediate release of -PHP 4.4.0. -
--This is a maintenance release that addresses a serious memory corruption -problem within PHP concerning references. If references were used in a wrong -way, PHP would often create memory corruptions which would not always surface -or be visible. In other cases it could cause variables and objects to change -type or class unexpectedly. If you encountered strange behavior like this, this -release might fix it. The increased middle digit was required because the fix that -corrected the problem with references changed PHP's internal API, breaking -binary compatibility with the PHP 4.3.* series. This means that all binary -extension modules need to be recompiled in order to work with this release. -
--As part of the solution for the reference bug, you are very likely to find that -your own or third-party PHP scripts, considered 'clean' code under previous -versions of PHP, will now throw an E_NOTICE when references are incorrectly used -in the script. This is intended to alert developers to minor errors in their -approach, and does not affect the script's performance in any other way. -
--Besides the reference problem, this release also fixes numerous other bugs, -including a small security problem with our bundled shtool. -
- -- For a full list of changes in PHP 4.4.0, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.0'); diff --git a/releases/4_4_1.php b/releases/4_4_1.php index deab581479..f0623a057f 100644 --- a/releases/4_4_1.php +++ b/releases/4_4_1.php @@ -1,51 +1,3 @@ - --The PHP Development Team would like to announce the immediate release of -PHP 4.4.1. -
--This is a bug fix release, which addresses some security problems too. The -security issues that this release fixes are: -
-This release also fixes 35 other defects, where the most important is the -the fix that removes a notice when passing a by-reference result of a function -as a by-reference value to another function. (Bug #33558). -
-- For a full list of changes in PHP 4.4.1, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.1'); diff --git a/releases/4_4_2.php b/releases/4_4_2.php index e84d53a3b7..0fea84105f 100644 --- a/releases/4_4_2.php +++ b/releases/4_4_2.php @@ -1,31 +1,3 @@ - --The PHP Development Team would like to announce the immediate release of -PHP 4.4.2. -
--This is a bug fix release, which addresses some security problems too. The -major points that this release corrects are: -
-This release also fixes about 30 other defects. -
-- For a full list of changes in PHP 4.4.2, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.2'); diff --git a/releases/4_4_3.php b/releases/4_4_3.php index ad07b3ea19..f6c4e98cec 100644 --- a/releases/4_4_3.php +++ b/releases/4_4_3.php @@ -1,35 +1,3 @@ - --The PHP development team is proud to announce the release of PHP 4.4.3. -This release combines small number of bug fixes and resolves a number of security issues. -All PHP 4.x users are encouraged to upgrade to this release as soon as possible. -
- --The security issues resolved include the following: -
-The release also includes about 20 bug fixes and an upgraded PCRE library -(version 6.6). -
- -- For a full list of changes in PHP 4.4.3, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.3'); diff --git a/releases/4_4_4.php b/releases/4_4_4.php index e2ce4fa5fc..abcaeba75a 100644 --- a/releases/4_4_4.php +++ b/releases/4_4_4.php @@ -1,35 +1,3 @@ - --This release address a series of locally exploitable security problems -discovered since PHP 4.4.3. All PHP users are encouraged to upgrade to this -release as soon as possible. -
- --This release provides the following security fixes: -
-In addition to the security fixes, both releases include a small number of non-security related bug fixes. -
- -- For a full list of changes in PHP 4.4.4, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.4'); diff --git a/releases/4_4_5.php b/releases/4_4_5.php index 4c143df348..2c99a2c79f 100644 --- a/releases/4_4_5.php +++ b/releases/4_4_5.php @@ -1,55 +1,3 @@ - --The PHP development team would like to announce the immediate availability of -PHP 4.4.5. This release is a stability and security enhancement of the 4.4.X -branch, and all users are strongly encouraged to upgrade to it as soon as -possible. -
- --Security Enhancements and Fixes in PHP 4.4.5: -
--The majority of the security vulnerabilities discovered and resolved can in -most cases be only abused by local users and cannot be triggered remotely. -However, some of the above issues can be triggered remotely in certain -situations, or exploited by malicious local users on shared hosting setups -utilizing PHP as an Apache module. Therefore, we strongly advise all users of -PHP, regardless of the version to upgrade to 4.4.5 release as soon as possible. -PHP 5.2.1 with equivalent security corrections is available as well. -
- --In addition to the security fixes, this release includes a number of -non-security related bug fixes. -
- -- For a full list of changes in PHP 4.4.5, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.5'); diff --git a/releases/4_4_6.php b/releases/4_4_6.php index 42fa75ec31..d33e1d2858 100644 --- a/releases/4_4_6.php +++ b/releases/4_4_6.php @@ -1,21 +1,3 @@ - --The PHP development team would like to announce the immediate availability of -PHP 4.4.6. This release addresses a crash problem with the session extension -when register_globals is turned on that was introduced in PHP 4.4.5. This -release comes also with the new version 7.0 of PCRE and it addresses a number -of minor bugs. -
- -- For a full list of changes in PHP 4.4.6, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.6'); diff --git a/releases/4_4_7.php b/releases/4_4_7.php index d523396682..4da37821ba 100644 --- a/releases/4_4_7.php +++ b/releases/4_4_7.php @@ -1,51 +1,3 @@ - --The PHP development team would like to announce the immediate availability of -PHP 4.4.7. This release continues to improve the security and the stability of -the 4.4 branch and all users are strongly encouraged to upgrade to it as soon -as possible. -
- --Security Enhancements and Fixes in PHP 4.4.7: -
--While majority of the issues outlined above are local, few issues such as the -XML-RPC overflows can be triggered remotely and therefor should be considered -critical. If you use the XML-RPC extension consider upgrading as soon as -possible. -
- --Other improvements of PHP 4.4.7 include: -
-- For a full list of changes in PHP 4.4.7, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.7'); diff --git a/releases/4_4_8.php b/releases/4_4_8.php index 2c122a8475..125c8f2450 100644 --- a/releases/4_4_8.php +++ b/releases/4_4_8.php @@ -1,36 +1,3 @@ - --The PHP development team would like to announce the immediate availability of -PHP 4.4.8. It continues to improve the security and the stability of the 4.4 -branch and all users are strongly encouraged to upgrade to it as soon as -possible. This release wraps up all the outstanding patches for the PHP 4.4 -series, and is therefore the last normal PHP 4.4 release. If necessary, -releases to address security issues could be made until 2008-08-08. -
- --Security Enhancements and Fixes in PHP 4.4.8: -
-- For a full list of changes in PHP 4.4.8, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.8'); diff --git a/releases/4_4_9.php b/releases/4_4_9.php index 141b091635..c4cc0da55a 100644 --- a/releases/4_4_9.php +++ b/releases/4_4_9.php @@ -1,32 +1,3 @@ - --The PHP development team would like to announce the immediate availability of -PHP 4.4.9. It continues to improve the security and the stability of the 4.4 -branch and all users are strongly encouraged to upgrade to it as soon as -possible. This release wraps up all the outstanding patches for the PHP 4.4 -series, and is therefore the last PHP 4.4 release. -
- --Security Enhancements and Fixes in PHP 4.4.9: -
-- For a full list of changes in PHP 4.4.9, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('4.4.9'); diff --git a/releases/5_1_0.php b/releases/5_1_0.php index 0ad76a5fdc..0d04fcf214 100644 --- a/releases/5_1_0.php +++ b/releases/5_1_0.php @@ -1,66 +1,3 @@ - -
-The PHP development team is proud to announce the release of PHP PHP 5.1.0.
-Some of the key features of PHP 5.1.0 include:
-
-
- For a full list of changes in PHP 5.1.0, see the - ChangeLog. -
- --In addition to new features, this release includes a number of important security fixes: -
-All users of PHP 5.0 and early adopters of 5.1 betas are strongly advised to upgrade to 5.1 as soon as -possible. Furthermore, 5.1 branch obsoletes the 5.0 PHP branch. -
- -Upgrading Guide is available to ease the transition from prior PHP versions.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.1.0'); diff --git a/releases/5_1_1.php b/releases/5_1_1.php index c746291fbd..e82d82f2c6 100644 --- a/releases/5_1_1.php +++ b/releases/5_1_1.php @@ -1,30 +1,3 @@ - --The PHP Development Team would like to announce the immediate release of -PHP 5.1.1. -
--This is a regression correction release aimed at addressing several issues -that may cause issues for certain applications. The main fixes found in this -release include the following: -
- For a full list of changes in PHP 5.1.1, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.1.1'); diff --git a/releases/5_1_2.php b/releases/5_1_2.php index d4b1841cde..a5e4c0f09e 100644 --- a/releases/5_1_2.php +++ b/releases/5_1_2.php @@ -1,60 +1,3 @@ - --The PHP development team is proud to announce the release of PHP 5.1.2. -This release combines small feature enhancements with a fair number of -bug fixes and addresses three security issues. All PHP 5 users are encouraged to -upgrade to this release. -
- --The security issues resolved include the following: -
-The feature enhancements include the following notables: -
-The release also includes over 85 bug fixes with a focus on: -
- For a full list of changes in PHP 5.1.2, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.1.2'); diff --git a/releases/5_1_3.php b/releases/5_1_3.php index 49deee03f4..4b864803fe 100644 --- a/releases/5_1_3.php +++ b/releases/5_1_3.php @@ -1,63 +1,3 @@ - --The PHP development team is proud to announce the release of PHP 5.1.3. -This release combines small number of feature enhancements with a significant amount of bug fixes and resolves a number of security issues. -All PHP users are encouraged to upgrade to this release as soon as possible. -
- --The security issues resolved include the following: -
-The feature enhancements include the following notables: -
-The release also includes over 120 bug fixes with a focus on: -
- For a full list of changes in PHP 5.1.3, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.1.3'); diff --git a/releases/5_1_4.php b/releases/5_1_4.php index 9ecb4b6306..d3ec653ec8 100644 --- a/releases/5_1_4.php +++ b/releases/5_1_4.php @@ -1,29 +1,3 @@ - --A critical bug with file uploads as well as the fastcgi sapi has been discovered in PHP 5.1.3 and a new PHP release 5.1.4 has been - made available to address these two issues. All PHP users are encouraged to upgrade to this release as soon as possible. -
- --This release provides fixes for the following bugs: -
- For a full list of changes in PHP 5.1.4, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.1.4'); diff --git a/releases/5_1_5.php b/releases/5_1_5.php index 1b87800981..9fd45ecd0f 100644 --- a/releases/5_1_5.php +++ b/releases/5_1_5.php @@ -1,35 +1,3 @@ - --This release address a series of locally exploitable security problems discovered since PHP 5.1.4. -All PHP users are encouraged to upgrade to this release as soon as possible. -
- --This release provides the following security fixes: -
-In addition to the security fixes, both releases include a small number of non-security related bug fixes. -
- -- For a full list of changes in PHP 5.1.5, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.1.5'); diff --git a/releases/5_1_6.php b/releases/5_1_6.php index 43d983e835..a8dca89521 100644 --- a/releases/5_1_6.php +++ b/releases/5_1_6.php @@ -1,18 +1,3 @@ - --This release is a re-release of PHP 5.1.5, which was missing the fix for memory_limit restriction -on 64 bit systems. If you rely on this functionality and use 64bit machines, you are advised to upgrade. -
- -- For a full list of changes in PHP 5.1.6, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.1.6'); diff --git a/releases/5_2_0.php b/releases/5_2_0.php index ef0de0ff52..2036c21b80 100644 --- a/releases/5_2_0.php +++ b/releases/5_2_0.php @@ -1,63 +1,3 @@ - --The PHP development team is proud to announce the immediate release of PHP -5.2.0. This release is a major improvement in the 5.X series, which includes a -large number of new features, bug fixes and security enhancements. -
- --The key features of PHP 5.2.0 include: -
--Security Enhancements and Fixes in PHP 5.2.0: -
--All users of PHP, especially those using earlier PHP 5 releases are advised -to upgrade to this release as soon as possible. This release also obsoletes -the 5.1 branch of PHP. -
- --For users upgrading from PHP 5.0 and PHP 5.1 there is an upgrading guide -available here, detailing the changes between those releases -and PHP 5.2.0. -
- -- For a full list of changes in PHP 5.2.0, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.0'); diff --git a/releases/5_2_1.php b/releases/5_2_1.php index 5acc7720b0..a60760a7c8 100644 --- a/releases/5_2_1.php +++ b/releases/5_2_1.php @@ -1,69 +1,3 @@ - --The PHP development team would like to announce the immediate availability of PHP 5.2.1. -This release is a major stability and security enhancement of the 5.X branch, and all -users are strongly encouraged to upgrade to it as soon as possible. -
- --Security Enhancements and Fixes in PHP 5.2.1: -
--The majority of the security vulnerabilities discovered and resolved can in most cases be only abused by local users and cannot be triggered -remotely. However, some of the above issues can be triggered remotely in certain situations, or exploited by malicious local users on shared hosting setups -utilizing PHP as an Apache module. Therefore, we strongly advise all users of PHP, regardless of the version to upgrade to 5.2.1 release -as soon as possible. PHP 4.4.5 with equivalent security corrections is available as well. -
- --The key improvements of PHP 5.2.1 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.1. -
- -- For a full list of changes in PHP 5.2.1, see the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.1'); diff --git a/releases/5_2_10.php b/releases/5_2_10.php index 02122ae821..4addca978a 100644 --- a/releases/5_2_10.php +++ b/releases/5_2_10.php @@ -1,50 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.10. This release focuses on improving the stability of -the PHP 5.2.x branch with over 100 bug fixes, one of which is security related. -All users of PHP are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.10: -
--Key enhancements in PHP 5.2.10 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.10. -
- -- For a full list of changes in PHP 5.2.10, see the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.10'); diff --git a/releases/5_2_11.php b/releases/5_2_11.php index 7df7b255e4..e1b79aa161 100644 --- a/releases/5_2_11.php +++ b/releases/5_2_11.php @@ -1,50 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.11. This release focuses on improving the stability of -the PHP 5.2.x branch with over 75 bug fixes, some of which are security related. -All users of PHP 5.2 are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.11: -
--Key enhancements in PHP 5.2.11 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.11. -
- -- For a full list of changes in PHP 5.2.11, see the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.11'); diff --git a/releases/5_2_12.php b/releases/5_2_12.php index c85ea50700..90f802c58f 100644 --- a/releases/5_2_12.php +++ b/releases/5_2_12.php @@ -1,55 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.12. This release focuses on improving the stability of -the PHP 5.2.x branch with over 60 bug fixes, some of which are security related. -All users of PHP 5.2 are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.12: -
--Key enhancements in PHP 5.2.12 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.12. -
- -- For a full list of changes in PHP 5.2.12, see the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.12'); diff --git a/releases/5_2_13.php b/releases/5_2_13.php index 8402449f1f..ceca4ded6f 100644 --- a/releases/5_2_13.php +++ b/releases/5_2_13.php @@ -1,48 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.13. This release focuses on improving the stability of -the PHP 5.2.x branch with over 40 bug fixes, some of which are security related. -All users of PHP 5.2 are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.13: -
--Key enhancements in PHP 5.2.13 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.13. -
- -- For a full list of changes in PHP 5.2.13, see the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.13'); diff --git a/releases/5_2_14.php b/releases/5_2_14.php index ad0f78486a..fc3235f80d 100644 --- a/releases/5_2_14.php +++ b/releases/5_2_14.php @@ -1,60 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.14. This release focuses on improving the -stability of the PHP 5.2.x branch with over 60 bug fixes, some of which -are security related.
- --This release marks the end of the active support for PHP -5.2. Following this release the PHP 5.2 series will receive no further -active bug maintenance. Security fixes for PHP 5.2 might be published on a -case by cases basis. All users of PHP 5.2 are encouraged to upgrade to -PHP 5.3.
- --Security Enhancements and Fixes in PHP 5.2.14: -
--Key enhancements in PHP 5.2.14 include: -
-To prepare for upgrading to PHP 5.3, now that PHP 5.2's support ended, a -migration guide available on http://php.net/migration53, details the changes between -PHP 5.2 and PHP 5.3.
- -For a full list of changes in PHP 5.2.14 see the ChangeLog at
-
-The PHP development team would like to announce the immediate -availability of PHP 5.2.15. This release marks the end of support -for PHP 5.2. All users of PHP 5.2 are encouraged to upgrade to PHP 5.3. -
- --This release focuses on improving the security and stability of the -PHP 5.2.x branch with a small number, of predominatly security fixes. -
- --Security Enhancements and Fixes in PHP 5.2.15: -
--Key enhancements in PHP 5.2.15 include: -
-To prepare for upgrading to PHP 5.3, now that PHP 5.2's support ended, a -migration guide available on http://php.net/migration53, details the changes between -PHP 5.2 and PHP 5.3.
- -For a full list of changes in PHP 5.2.15 see the ChangeLog at -http://www.php.net/ChangeLog-5.php#5.2.15.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.15'); diff --git a/releases/5_2_16.php b/releases/5_2_16.php index 34224cd50d..3b8518607a 100644 --- a/releases/5_2_16.php +++ b/releases/5_2_16.php @@ -1,28 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.16. This release marks the end of support -for PHP 5.2. All users of PHP 5.2 are encouraged to upgrade to PHP 5.3. -
- --This release focuses on addressing a regression in open_basedir implementation -introduced in 5.2.15 in addition to fixing a crash inside PDO::pgsql -on data retrieval when the server is down. All users who have upgraded to 5.2.15 and are -utilizing open_basedir are strongly encouraged to upgrade to 5.2.16 or 5.3.4. -
- -To prepare for upgrading to PHP 5.3, now that PHP 5.2's support ended, a -migration guide available on http://php.net/migration53, details the changes between -PHP 5.2 and PHP 5.3.
- -For a full list of changes in PHP 5.2.16 see the ChangeLog at -http://www.php.net/ChangeLog-5.php#5.2.16.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.16'); diff --git a/releases/5_2_17.php b/releases/5_2_17.php index ac4a748273..bddf7d2c87 100644 --- a/releases/5_2_17.php +++ b/releases/5_2_17.php @@ -1,31 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.17.
- -This release resolves a critical issue, reported as PHP bug #53632, -where conversions from string to double might cause the PHP interpreter -to hang on systems using x87 FPU registers.
- -The problem is known to only affect x86 32-bit PHP processes, regardless -of whether the system hosting PHP is 32-bit or 64-bit. You can test -whether your system is affected by running this script -from the command line.
- -All users of PHP are strongly advised to update to these versions -immediately.
- --Security Enhancements and Fixes in PHP 5.2.17: -
--The PHP development team would like to announce the immediate availability of PHP 5.2.2. -This release continues to improve the security and the stability of the 5.X -branch and all users are strongly encouraged to upgrade to it as soon as possible. -
- --Security Enhancements and Fixes in PHP 5.2.2: -
--While majority of the issues outlined above are local, in some circumstances given specific code paths they can be -triggered externally. Therefor, we strongly recommend that if you use code utilizing the functions and extensions identified as -having had vulnerabilities in them, you consider upgrading your PHP. -
- --The key improvements of PHP 5.2.2 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.2. -
- -- For a full list of changes in PHP 5.2.2, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.2'); diff --git a/releases/5_2_3.php b/releases/5_2_3.php index 9eab6eee3a..43d0414d0d 100644 --- a/releases/5_2_3.php +++ b/releases/5_2_3.php @@ -1,61 +1,3 @@ - --The PHP development team would like to announce the immediate availability -of PHP 5.2.3. This release continues to improve the security and the -stability of the 5.X branch as well as addressing two regressions introduced -by the previous 5.2 releases. These regressions relate to the timeout -handling over non-blocking SSL connections and the lack of -HTTP_RAW_POST_DATA in certain conditions. All users are encouraged to -upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.3: -
--The key improvements of PHP 5.2.3 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.3. -
- -- For a full list of changes in PHP 5.2.3, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.3'); diff --git a/releases/5_2_4.php b/releases/5_2_4.php index adf5277165..8d4e24b518 100644 --- a/releases/5_2_4.php +++ b/releases/5_2_4.php @@ -1,61 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.4. This release focuses on improving the stability -of the PHP 5.2.X branch with over 120 various bug fixes in -addition to resolving several low priority security bugs. All -users of PHP are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.4: -
--Key enhancements in PHP 5.2.4 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.4. -
- -- For a full list of changes in PHP 5.2.4, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.4'); diff --git a/releases/5_2_5.php b/releases/5_2_5.php index 5f738cdd6e..4d833e949d 100644 --- a/releases/5_2_5.php +++ b/releases/5_2_5.php @@ -1,53 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.5. This release focuses on improving the stability of -the PHP 5.2.x branch with over 60 bug fixes, several of which are security related. -All users of PHP are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.5: -
--Key enhancements in PHP 5.2.5 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.5. -
- -- For a full list of changes in PHP 5.2.5, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.5'); diff --git a/releases/5_2_6.php b/releases/5_2_6.php index aadcebfed2..4e0e7a82ff 100644 --- a/releases/5_2_6.php +++ b/releases/5_2_6.php @@ -1,56 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.6. This release focuses on improving the stability of -the PHP 5.2.x branch with over 120 bug fixes, several of which are security related. -All users of PHP are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.6: -
--Key enhancements in PHP 5.2.6 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.6. -
- -- For a full list of changes in PHP 5.2.6, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.6'); diff --git a/releases/5_2_7.php b/releases/5_2_7.php index d188648933..b89c88f906 100644 --- a/releases/5_2_7.php +++ b/releases/5_2_7.php @@ -1,54 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.7. This release focuses on improving the stability of -the PHP 5.2.x branch with over 120 bug fixes, several of which are security related. -All users of PHP are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.7: -
--Key enhancements in PHP 5.2.7 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.7. -
- -- For a full list of changes in PHP 5.2.7, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.7'); diff --git a/releases/5_2_8.php b/releases/5_2_8.php index 4e8731caea..345476547b 100644 --- a/releases/5_2_8.php +++ b/releases/5_2_8.php @@ -1,27 +1,3 @@ - --The PHP development team would like to announce the immediate availability -of PHP 5.2.8. This release addresses a regression introduced by 5.2.7 in -regard to the magic_quotes functionality, that was broken by an incorrect fix -to the filter extension. All users who have upgraded to 5.2.7 are encouraged -to upgrade to this release, alternatively you can apply a work-around for -the bug by changing "filter.default_flags=0" in php.ini -
- --For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.8. -
- -- For a full list of changes in PHP 5.2.8, see the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.8'); diff --git a/releases/5_2_9.php b/releases/5_2_9.php index da895cda43..a10b2ad043 100644 --- a/releases/5_2_9.php +++ b/releases/5_2_9.php @@ -1,54 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.2.9. This release focuses on improving the stability of -the PHP 5.2.x branch with over 50 bug fixes, several of which are security related. -All users of PHP are encouraged to upgrade to this release. -
- --Security Enhancements and Fixes in PHP 5.2.9: -
--Key enhancements in PHP 5.2.9 include: -
--For users upgrading from PHP 5.0 and PHP 5.1, an upgrade guide is available -here, detailing the changes between those releases -and PHP 5.2.9. -
- -- For a full list of changes in PHP 5.2.9, see the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.2.9'); diff --git a/releases/5_3_0.php b/releases/5_3_0.php index 16429cd0fc..afa465e5f5 100644 --- a/releases/5_3_0.php +++ b/releases/5_3_0.php @@ -1,81 +1,3 @@ - --The PHP development team is proud to announce the immediate release of PHP -5.3.0. This release is a major improvement in the 5.X series, which includes a -large number of new features and bug fixes. -
- --The key features of PHP 5.3.0 include: -
-E_DEPRECATED (part of E_ALL)
- instead of the E_STRICT error levelThis release also drops several extensions and unifies the usage of internal APIs. -Users should be aware of the following known backwards compatibility breaks:
--For users upgrading from PHP 5.2 there is a migration guide -available here, detailing -the changes between those releases and PHP 5.3.0. -
- -- For a full list of changes in PHP 5.3.0, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.0'); diff --git a/releases/5_3_1.php b/releases/5_3_1.php index 72d08ba64f..f01c56a439 100644 --- a/releases/5_3_1.php +++ b/releases/5_3_1.php @@ -1,50 +1,3 @@ - --The PHP development team is proud to announce the immediate release of PHP -5.3.1. This is a maintenance release in the 5.3 series, which includes a -large number of bug fixes. -
- --Security Enhancements and Fixes in PHP 5.3.1: -
--Key Bug Fixes in PHP 5.3.1 include: -
--For users upgrading from PHP 5.2 there is a migration guide -available here, detailing -the changes between those releases and PHP 5.3. -
- -- For a full list of changes in PHP 5.3.1, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.1'); diff --git a/releases/5_3_10.php b/releases/5_3_10.php index 17fdaf2d0e..9da5cab3eb 100644 --- a/releases/5_3_10.php +++ b/releases/5_3_10.php @@ -1,22 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.3.10. This release delivers a critical security -fix.
- -Security Fixes in PHP 5.3.10:
- -All users are strongly encouraged to upgrade to PHP 5.3.10.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.10'); diff --git a/releases/5_3_11.php b/releases/5_3_11.php index 9a24adfe0e..5e359b8d10 100644 --- a/releases/5_3_11.php +++ b/releases/5_3_11.php @@ -1,39 +1,3 @@ - -The PHP development team announces the immediate availability of -PHP 5.3.11. This release focuses on improving the stability of the -PHP 5.3 branch with over 60 bug fixes, some of which are security related.
- -Security Enhancements for PHP 5.3.11:
- -Key enhancements in PHP 5.3.11 include:
- -For a full list of changes in PHP 5.3.11, see the ChangeLog. For source downloads please visit -our downloads page, Windows binaries can be found -on windows.php.net/download/.
- -All users of PHP 5.3 are strongly encouraged to upgrade to PHP 5.3.11.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.11'); diff --git a/releases/5_3_12.php b/releases/5_3_12.php index 6ef2c48943..dc19462d63 100644 --- a/releases/5_3_12.php +++ b/releases/5_3_12.php @@ -1,64 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.3.12. This release delivers a security fix.
- -There is a vulnerability in certain CGI-based setups that has gone -unnoticed for at least 8 years. Section -7 of the CGI spec states:
- - - Some systems support a method for supplying a array of strings to the - CGI script. This is only used in the case of an `indexed' query. This - is identified by a "GET" or "HEAD" HTTP request with a URL search - string not containing any unencoded "=" characters. - - -So requests that do not have a "=" in the query string are treated -differently from those who do in some CGI implementations. For PHP this -means that a request containing ?-s may dump the PHP source code for the -page, but a request that has ?-s&a=1 is fine.
- -A large number of sites run PHP as either an Apache module through -mod_php or using php-fpm under nginx. Neither of these setups are -vulnerable to this. Straight shebang-style CGI also does not appear to -be vulnerable.
- -If you are using Apache mod_cgi to run PHP you may be vulnerable. To see -if you are just add ?-s to the end of any of your URLs. If you see your -source code, you are vulnerable. If your site renders normally, you are not.
- -Making a bad week worse, we had a bug in our bug system that toggled the -private flag of a bug report to public on a comment to the bug report -causing this issue to go public before we had time to test solutions to -the level we would like.
- -To fix this update to PHP 5.3.12 or PHP 5.4.2. We recognize that since -this is a rather outdated way to run PHP it may not be feasible to -upgrade these sites to a modern version of PHP, so an alternative is to -configure your web server to not let these types of requests with query -strings starting with a "-" and not containing a "=" through. Adding a -rule like this should not break any sites. For Apache using mod_rewrite -it would look like this:
- -
- RewriteCond %{QUERY_STRING} ^(%2d|-)[^=]+$ [NC]
- RewriteRule ^(.*) $1? [L]
-
-
-If you are writing your own rule, be sure to take the urlencoded ?%2ds -version into account.
- -For source downloads of PHP 5.3.12 please visit -our downloads page, Windows binaries can be found -on windows.php.net/download/. A -ChangeLog exists.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.12'); diff --git a/releases/5_3_13.php b/releases/5_3_13.php index 37803df495..d612a58afe 100644 --- a/releases/5_3_13.php +++ b/releases/5_3_13.php @@ -1,21 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.3.13. This release delivers a security fix. -All users of PHP 5.3 are encouraged to upgrade to this release
- -PHP 5.3.13 completes a fix for a vulnerability in CGI-based setups -(CVE-2012-2311). Note: mod_php and php-fpm are not vulnerable to this -attack.
- -For source downloads of PHP 5.3.13 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.13'); diff --git a/releases/5_3_14.php b/releases/5_3_14.php index 2deabd0e5b..fa1031aa9b 100644 --- a/releases/5_3_14.php +++ b/releases/5_3_14.php @@ -1,23 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.3.14. This release fixes two security related -issues. All users of PHP 5.3 are encouraged to upgrade to this release.
- -PHP 5.3.14 fixes an security issue in the implementation of crypt() and a -heap overflow in the Phar extension. Over 30 bugs were fixed
- -Please note that php://fd is now only available if the CLI SAPI is used
- -For source downloads of PHP 5.3.14 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.14'); diff --git a/releases/5_3_15.php b/releases/5_3_15.php index 1e1504dd9e..1ded0fe834 100644 --- a/releases/5_3_15.php +++ b/releases/5_3_15.php @@ -1,19 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.3.15. Over 30 bugs were fixed, including a security -related overflow issue in the stream implementation. All users of PHP -are encouraged to upgrade to this release.
- -For source downloads of PHP 5.3.15 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.15'); diff --git a/releases/5_3_16.php b/releases/5_3_16.php index 77bda90b45..b7e74e2c26 100644 --- a/releases/5_3_16.php +++ b/releases/5_3_16.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.3.16. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to -PHP 5.4.6. Alternatively, PHP 5.3.16 is recommended for those wishing to remain -on the 5.3 series.
- -For source downloads of PHP 5.3.16 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.16'); diff --git a/releases/5_3_17.php b/releases/5_3_17.php index 713c0921d4..1b980e1015 100644 --- a/releases/5_3_17.php +++ b/releases/5_3_17.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.3.17. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to -PHP 5.4.7. Alternatively, PHP 5.3.17 is recommended for those wishing to remain -on the 5.3 series.
- -For source downloads of PHP 5.3.17 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.17'); diff --git a/releases/5_3_18.php b/releases/5_3_18.php index 7aaa678b7e..395ec4f19c 100644 --- a/releases/5_3_18.php +++ b/releases/5_3_18.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.3.18. About 10 bugs were fixed. All users of PHP are encouraged to upgrade to -PHP 5.4.8. Alternatively, PHP 5.3.18 is recommended for those wishing to remain -on the 5.3 series.
- -For source downloads of PHP 5.3.18 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.18'); diff --git a/releases/5_3_19.php b/releases/5_3_19.php index 90c159f543..d0913224d4 100644 --- a/releases/5_3_19.php +++ b/releases/5_3_19.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.3.19. About 10 bugs were fixed. All users of PHP are encouraged to upgrade to -PHP 5.4.9. Alternatively, PHP 5.3.19 is recommended for those wishing to remain -on the 5.3 series.
- -For source downloads of PHP 5.3.19 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.19'); diff --git a/releases/5_3_2.php b/releases/5_3_2.php index b18fadc91e..e0a554929e 100644 --- a/releases/5_3_2.php +++ b/releases/5_3_2.php @@ -1,52 +1,3 @@ - --The PHP development team is proud to announce the immediate release of PHP -5.3.2. This is a maintenance release in the 5.3 series, which includes a -large number of bug fixes. -
- --Security Enhancements and Fixes in PHP 5.3.2: -
--Key Bug Fixes in PHP 5.3.2 include: -
--For users upgrading from PHP 5.2 there is a migration guide -available here, detailing -the changes between those releases and PHP 5.3. -
- -- For a full list of changes in PHP 5.3.2, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.2'); diff --git a/releases/5_3_20.php b/releases/5_3_20.php index 7cc60fead3..45983b5df4 100644 --- a/releases/5_3_20.php +++ b/releases/5_3_20.php @@ -1,17 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.3.20. About 15 bugs were fixed. Please note that the PHP 5.3 series will enter an end of life cycle and receive only critical fixes as of March 2013. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.20 is recommended for those wishing to remain on the 5.3 series.
- -For source downloads of PHP 5.3.20 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.20'); diff --git a/releases/5_3_21.php b/releases/5_3_21.php index d49f696477..ecd4f1e023 100644 --- a/releases/5_3_21.php +++ b/releases/5_3_21.php @@ -1,17 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.3.21. About 5 bugs were fixed All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.21 is recommended for those wishing to remain on the 5.3 series.
- -For source downloads of PHP 5.3.21 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.21'); diff --git a/releases/5_3_22.php b/releases/5_3_22.php index c4e58c9f17..545b513457 100644 --- a/releases/5_3_22.php +++ b/releases/5_3_22.php @@ -1,16 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.3.22. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.22 is recommended for those wishing to remain on the 5.3 series.
- -For source downloads of PHP 5.3.22 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.22'); diff --git a/releases/5_3_23.php b/releases/5_3_23.php index 4ea5b9735f..4dd26475db 100644 --- a/releases/5_3_23.php +++ b/releases/5_3_23.php @@ -1,16 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.3.23. About 7 bugs were fixed, including fixes for CVE-2013-1643 and CVE-2013-1635. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.23 is recommended for those wishing to remain on the 5.3 series.
- -For source downloads of PHP 5.3.23 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.23'); diff --git a/releases/5_3_24.php b/releases/5_3_24.php index 909cd51a03..f02b552ffd 100644 --- a/releases/5_3_24.php +++ b/releases/5_3_24.php @@ -1,16 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.3.24. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.24 is recommended for those wishing to remain on the 5.3 series.
- -For source downloads of PHP 5.3.24 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.24'); diff --git a/releases/5_3_25.php b/releases/5_3_25.php index 4e162928b6..ae8e8f0b1e 100644 --- a/releases/5_3_25.php +++ b/releases/5_3_25.php @@ -1,16 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.3.25. About 5 bugs were fixed. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.25 is recommended for those wishing to remain on the 5.3 series.
- -For source downloads of PHP 5.3.25 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.25'); diff --git a/releases/5_3_26.php b/releases/5_3_26.php index da17ce2073..7416c59bdb 100644 --- a/releases/5_3_26.php +++ b/releases/5_3_26.php @@ -1,16 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.3.25. About 6 bugs were fixed, including CVE 2013-2110. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.26 is recommended for those wishing to remain on the 5.3 series.
- -For source downloads of PHP 5.3.26 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.26'); diff --git a/releases/5_3_27.php b/releases/5_3_27.php index ef00ff993a..d26b95609e 100644 --- a/releases/5_3_27.php +++ b/releases/5_3_27.php @@ -1,18 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.3.27. About 10 bugs were fixed, including a security fix in the XML parser (Bug #65236).
- -Please Note: This will be the last regular release of the PHP 5.3 series. All users of PHP are encouraged to upgrade to PHP 5.4 or PHP 5.5. The PHP 5.3 series will receive only security fixes for the next year.
- -For source downloads of PHP 5.3.27 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.27'); diff --git a/releases/5_3_28.php b/releases/5_3_28.php index 9f49e41d69..a13c3abdb3 100644 --- a/releases/5_3_28.php +++ b/releases/5_3_28.php @@ -1,16 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.3.28. This release fixes two security issues in OpenSSL module in PHP 5.3 - CVE-2013-4073 and CVE-2013-6420. All PHP 5.3 users are encouraged to upgrade to PHP 5.3.28 or latest versions of PHP 5.4 or PHP 5.5.
- -For source downloads of PHP 5.3.28 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.28'); diff --git a/releases/5_3_29.php b/releases/5_3_29.php index e30e5889a7..520fb9ba2c 100644 --- a/releases/5_3_29.php +++ b/releases/5_3_29.php @@ -1,27 +1,3 @@ - -The PHP development team announces the immediate availability of - PHP 5.3.29. This release marks the end of life of the PHP 5.3 series. - Future releases of this series are not planned. All PHP 5.3 users are - encouraged to upgrade to the current stable version of PHP 5.5 or - previous stable version of PHP 5.4, which are supported till at least - 2016 and 2015 respectively.
- -PHP 5.3.29 contains about 25 potentially security related fixes - backported from PHP 5.4 and 5.5.
- -For source downloads of PHP 5.3.29, please visit our downloads page. Windows - binaries can be found on windows.php.net/download/. The list of changes is recorded in - the ChangeLog.
- -For helping your migration to newer versions please refer to our migration - guides for updates from PHP 5.3 to - 5.4 and from PHP 5.4 to 5.5.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.29'); diff --git a/releases/5_3_3.php b/releases/5_3_3.php index 516ddd3762..7f66096285 100644 --- a/releases/5_3_3.php +++ b/releases/5_3_3.php @@ -1,89 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.3.3. This release focuses on improving the -stability and security of the PHP 5.3.x branch with over 100 bug -fixes, some of which are security related. All users are encouraged -to upgrade to this release. -
- --Backwards incompatible change: -
-'); - ?>
-There is no impact on migration from 5.2.x because namespaces were only introduced in PHP 5.3.
-Security Enhancements and Fixes in PHP 5.3.3: -
--Key enhancements in PHP 5.3.3 include: -
--For users upgrading from PHP 5.2 there is a migration guide available on -http://php.net/migration53, detailing the changes between those -releases and PHP 5.3. -
- -- For a full list of changes in PHP 5.3.3, see the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.3'); diff --git a/releases/5_3_4.php b/releases/5_3_4.php index d3bd8a7488..dcbc618c77 100644 --- a/releases/5_3_4.php +++ b/releases/5_3_4.php @@ -1,56 +1,3 @@ - --The PHP development team is proud to announce the immediate release of PHP -5.3.4. This is a maintenance release in the 5.3 series, which includes a -large number of bug fixes. -
- --Security Enhancements and Fixes in PHP 5.3.4: -
--Key Bug Fixes in PHP 5.3.4 include: -
--For users upgrading from PHP 5.2 there is a migration guide -available here, detailing -the changes between those releases and PHP 5.3. -
- -- For a full list of changes in PHP 5.3.4, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.4'); diff --git a/releases/5_3_5.php b/releases/5_3_5.php index 31dfb7ec72..af198c1269 100644 --- a/releases/5_3_5.php +++ b/releases/5_3_5.php @@ -1,31 +1,3 @@ - --The PHP development team would like to announce the immediate -availability of PHP 5.3.5.
- -This release resolves a critical issue, reported as PHP bug #53632, -where conversions from string to double might cause the PHP interpreter -to hang on systems using x87 FPU registers.
- -The problem is known to only affect x86 32-bit PHP processes, regardless -of whether the system hosting PHP is 32-bit or 64-bit. You can test -whether your system is affected by running this script -from the command line.
- -All users of PHP are strongly advised to update to these versions -immediately.
- --Security Enhancements and Fixes in PHP 5.3.5: -
-The PHP development team would like to announce the immediate -availability of PHP 5.3.6. This release focuses on improving the -stability of the PHP 5.3.x branch with over 60 bug fixes, some of which -are security related.
- -Security Enhancements and Fixes in PHP 5.3.6:
-Key enhancements in PHP 5.3.6 include:
-Windows users: please mind that we do no longer provide builds created -with Visual Studio C++ 6. It is impossible to maintain a high quality -and safe build of PHP for Windows using this unmaintained compiler.
- -For Apache SAPIs (php5_apache2_2.dll), be sure that you use a Visual -Studio C++ 9 version of Apache. We recommend the Apache builds as provided -by ApacheLounge. For any other -SAPI (CLI, FastCGI via mod_fcgi, FastCGI with IIS or other FastCGI capable -server), everything works as before. Third party extension providers -must rebuild their extensions to make them compatible and loadable with -the Visual Studio C++9 builds that we now provide.
- -All PHP users should note that the PHP 5.2 series is NOT supported -anymore. All users are strongly encouraged to upgrade to PHP 5.3.6.
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.6'); diff --git a/releases/5_3_7.php b/releases/5_3_7.php index 31f6fc81d3..22858f0ef2 100644 --- a/releases/5_3_7.php +++ b/releases/5_3_7.php @@ -1,67 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.3.7. This release focuses on improving the -stability of the PHP 5.3.x branch with over 90 bug fixes, some of which -are security related.
- -Security Enhancements and Fixes in PHP 5.3.7:
-Key enhancements in PHP 5.3.7 include:
-Windows users: please mind that we do no longer provide builds created -with Visual Studio C++ 6. It is impossible to maintain a high quality -and safe build of PHP for Windows using this unmaintained compiler.
- -For Apache SAPIs (php5_apache2_2.dll), be sure that you use a Visual -Studio C++ 9 version of Apache. We recommend the Apache builds as provided -by ApacheLounge. For any other -SAPI (CLI, FastCGI via mod_fcgi, FastCGI with IIS or other FastCGI capable -server), everything works as before. Third party extension providers -must rebuild their extensions to make them compatible and loadable with -the Visual Studio C++9 builds that we now provide.
- -All PHP users should note that the PHP 5.2 series is NOT supported -anymore. All users are strongly encouraged to upgrade to PHP 5.3.7.
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.7'); diff --git a/releases/5_3_8.php b/releases/5_3_8.php index 83f89e5fc0..e99a3f2c47 100644 --- a/releases/5_3_8.php +++ b/releases/5_3_8.php @@ -1,23 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.3.8. This release fixes two issues introduced in -the PHP 5.3.7 release:
- -All PHP users should note that the PHP 5.2 series is NOT supported -anymore. All users are strongly encouraged to upgrade to PHP 5.3.8.
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.8'); diff --git a/releases/5_3_9.php b/releases/5_3_9.php index c12a3e394f..ce384f2614 100644 --- a/releases/5_3_9.php +++ b/releases/5_3_9.php @@ -1,33 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.3.9. This release focuses on improving the -stability of the PHP 5.3.x branch with over 90 bug fixes, some of -which are security related.
- -Security Enhancements and Fixes in PHP 5.3.9:
- -Key enhancements in PHP 5.3.9 include:
- -All users are strongly encouraged to upgrade to PHP 5.3.9.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.3.9'); diff --git a/releases/5_4_0.php b/releases/5_4_0.php index 1eb54f38f3..60f71ff89f 100644 --- a/releases/5_4_0.php +++ b/releases/5_4_0.php @@ -1,64 +1,3 @@ - --The PHP development team is proud to announce the immediate availability -of PHP 5.4.0. -This release is a major leap forward in the 5.x series, -and includes a large number of new features and bug fixes. -
- --The key features of PHP 5.4.0 include: -
--Changes that affect compatibility: -
--Extensions moved to PECL: -
--PHP 5.4 will be the last series to support Windows XP and Windows -2003. We will not provide binary packages for these Windows versions -after PHP 5.4. -
- --For users upgrading from PHP 5.3 there is a migration guide available -here, detailing the changes between -PHP 5.3 and PHP 5.4.0. -
- -- For a full list of changes in PHP 5.4.0, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.0'); diff --git a/releases/5_4_1.php b/releases/5_4_1.php index 2cd4a6d38d..63e2e1b4a7 100644 --- a/releases/5_4_1.php +++ b/releases/5_4_1.php @@ -1,37 +1,3 @@ - -The PHP development team announces the immediate availability of -PHP 5.4.1. This release focuses on improving the stability of the -PHP 5.4 branch with over 60 bug fixes, some of which are security related.
- -Security Enhancements for PHP 5.4.1:
- -Key enhancements in PHP 5.4.1 include:
- -For a full list of changes in PHP 5.4.1, see the ChangeLog. For source downloads please visit -our downloads page, Windows binaries can be found -on windows.php.net/download/.
- -All users of PHP are strongly encouraged to upgrade to PHP 5.4.1.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.1'); diff --git a/releases/5_4_10.php b/releases/5_4_10.php index 5f75be671b..c994256df4 100644 --- a/releases/5_4_10.php +++ b/releases/5_4_10.php @@ -1,18 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.10. About 15 bugs were fixed. All -users of PHP are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.10 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.10'); diff --git a/releases/5_4_11.php b/releases/5_4_11.php index 6b851be121..b2697df456 100644 --- a/releases/5_4_11.php +++ b/releases/5_4_11.php @@ -1,18 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.11. About 10 bugs were fixed. All -users of PHP are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.11 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.11'); diff --git a/releases/5_4_12.php b/releases/5_4_12.php index c50cf3c462..7b87997d42 100644 --- a/releases/5_4_12.php +++ b/releases/5_4_12.php @@ -1,18 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.12. About 10 bugs were fixed. All -users of PHP are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.12 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.12'); diff --git a/releases/5_4_13.php b/releases/5_4_13.php index f083cbf87a..5791a0b129 100644 --- a/releases/5_4_13.php +++ b/releases/5_4_13.php @@ -1,18 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.13. About 15 bugs were fixed, including fixes for CVE-2013-1643 and CVE-2013-1635. All -users of PHP are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.13 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.13'); diff --git a/releases/5_4_14.php b/releases/5_4_14.php index 71a7338e4d..fca601ec14 100644 --- a/releases/5_4_14.php +++ b/releases/5_4_14.php @@ -1,18 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.14. About 15 bugs were fixed. All users of PHP are encouraged to -upgrade to this release.
- -For source downloads of PHP 5.4.14 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.14'); diff --git a/releases/5_4_15.php b/releases/5_4_15.php index 3dcf941747..14aca23396 100644 --- a/releases/5_4_15.php +++ b/releases/5_4_15.php @@ -1,18 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.15. About 10 bugs were fixed. All users of PHP are encouraged to -upgrade to this release.
- -For source downloads of PHP 5.4.15 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.15'); diff --git a/releases/5_4_16.php b/releases/5_4_16.php index d7dc262f16..41b77545e4 100644 --- a/releases/5_4_16.php +++ b/releases/5_4_16.php @@ -1,18 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.16. About 15 bugs were fixed, including CVE 2013-2110. All users of PHP are encouraged to -upgrade to this release.
- -For source downloads of PHP 5.4.16 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.16'); diff --git a/releases/5_4_17.php b/releases/5_4_17.php index 19176efe77..b6bec8a14d 100644 --- a/releases/5_4_17.php +++ b/releases/5_4_17.php @@ -1,17 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.17. About 20 bugs were fixed. All users of PHP are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.17 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.17'); diff --git a/releases/5_4_18.php b/releases/5_4_18.php index b3a573f096..a5d934981e 100644 --- a/releases/5_4_18.php +++ b/releases/5_4_18.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.18. About 30 bugs were fixed, including security issues CVE-2013-4113 and CVE-2013-4248. -
- -NOTE: Please do not use this release, due to the bug in the fix for CVE-2013-4248. This bug is fixed in -PHP 5.4.19.
- -For source downloads of PHP 5.4.18 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.18'); diff --git a/releases/5_4_19.php b/releases/5_4_19.php index b00068c15e..dcc1c1cc06 100644 --- a/releases/5_4_19.php +++ b/releases/5_4_19.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.19. This release fixes a bug in the patch for CVE-2013-4248 in OpenSSL module and -compile failure with ZTS enabled.
- -All PHP 5.4 users are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.19 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.19'); diff --git a/releases/5_4_2.php b/releases/5_4_2.php index 176ae391fc..03006bff47 100644 --- a/releases/5_4_2.php +++ b/releases/5_4_2.php @@ -1,64 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.2. This release delivers a security fix.
- -There is a vulnerability in certain CGI-based setups that has gone -unnoticed for at least 8 years. Section -7 of the CGI spec states:
- - - Some systems support a method for supplying a array of strings to the - CGI script. This is only used in the case of an `indexed' query. This - is identified by a "GET" or "HEAD" HTTP request with a URL search - string not containing any unencoded "=" characters. - - -So requests that do not have a "=" in the query string are treated -differently from those who do in some CGI implementations. For PHP this -means that a request containing ?-s may dump the PHP source code for the -page, but a request that has ?-s&a=1 is fine.
- -A large number of sites run PHP as either an Apache module through -mod_php or using php-fpm under nginx. Neither of these setups are -vulnerable to this. Straight shebang-style CGI also does not appear to -be vulnerable.
- -If you are using Apache mod_cgi to run PHP you may be vulnerable. To see -if you are just add ?-s to the end of any of your URLs. If you see your -source code, you are vulnerable. If your site renders normally, you are not.
- -Making a bad week worse, we had a bug in our bug system that toggled the -private flag of a bug report to public on a comment to the bug report -causing this issue to go public before we had time to test solutions to -the level we would like.
- -To fix this update to PHP 5.3.12 or PHP 5.4.2. We recognize that since -this is a rather outdated way to run PHP it may not be feasible to -upgrade these sites to a modern version of PHP, so an alternative is to -configure your web server to not let these types of requests with query -strings starting with a "-" and not containing a "=" through. Adding a -rule like this should not break any sites. For Apache using mod_rewrite -it would look like this:
- -
- RewriteCond %{QUERY_STRING} ^(%2d|-)[^=]+$ [NC]
- RewriteRule ^(.*) $1? [L]
-
-
-If you are writing your own rule, be sure to take the urlencoded ?%2ds -version into account.
- -For source downloads of PHP 5.4.2 please visit -our downloads page, Windows binaries can be found -on windows.php.net/download/. A -ChangeLog exists.
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.2'); diff --git a/releases/5_4_20.php b/releases/5_4_20.php index 65921bf064..0091fd4167 100644 --- a/releases/5_4_20.php +++ b/releases/5_4_20.php @@ -1,18 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.20. About 30 bugs were fixed. All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.20 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.20'); diff --git a/releases/5_4_21.php b/releases/5_4_21.php index 4cf482fafc..fb792fec31 100644 --- a/releases/5_4_21.php +++ b/releases/5_4_21.php @@ -1,18 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.21. About 10 bugs were fixed. All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.21 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.21'); diff --git a/releases/5_4_22.php b/releases/5_4_22.php index d7fd713b75..cb97549929 100644 --- a/releases/5_4_22.php +++ b/releases/5_4_22.php @@ -1,18 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.22. About 10 bugs were fixed. All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.22 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.22'); diff --git a/releases/5_4_23.php b/releases/5_4_23.php index 84da8ddd15..0252acd526 100644 --- a/releases/5_4_23.php +++ b/releases/5_4_23.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.23. About 10 bugs were fixed, including a security issue in OpenSSL module (CVE-2013-6420). -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.23 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.23'); diff --git a/releases/5_4_24.php b/releases/5_4_24.php index 9b23fa1cd1..8a13204fe9 100644 --- a/releases/5_4_24.php +++ b/releases/5_4_24.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.24. About 14 bugs were fixed. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.24 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.24'); diff --git a/releases/5_4_25.php b/releases/5_4_25.php index c099ee8beb..762f8e668f 100644 --- a/releases/5_4_25.php +++ b/releases/5_4_25.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.25. 5 bugs were fixed in this release. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.25 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.25'); diff --git a/releases/5_4_26.php b/releases/5_4_26.php index c34b40f8d7..6e26047c7d 100644 --- a/releases/5_4_26.php +++ b/releases/5_4_26.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.26. 5 bugs were fixed in this release, including CVE-2014-1943. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.26 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.26'); diff --git a/releases/5_4_27.php b/releases/5_4_27.php index e2e34b6118..e37cc8d517 100644 --- a/releases/5_4_27.php +++ b/releases/5_4_27.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.27. 6 bugs were fixed in this release, including CVE-2013-7345. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.27 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.27'); diff --git a/releases/5_4_28.php b/releases/5_4_28.php index 92848a6b04..e8351b592c 100644 --- a/releases/5_4_28.php +++ b/releases/5_4_28.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.28. 19 bugs were fixed in this release, including CVE-2014-0185. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.28 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.28'); diff --git a/releases/5_4_29.php b/releases/5_4_29.php index bb335d1366..ec88905255 100644 --- a/releases/5_4_29.php +++ b/releases/5_4_29.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.29. 16 bugs were fixed in this release, including two security issues in fileinfo extension. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.29 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.29'); diff --git a/releases/5_4_3.php b/releases/5_4_3.php index 5f01311be2..869ca7683a 100644 --- a/releases/5_4_3.php +++ b/releases/5_4_3.php @@ -1,25 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.3. This release delivers two security fixes. -All users of PHP 5.4 are encouraged to upgrade to this release
- -PHP 5.4.3 completes a fix for a vulnerability in CGI-based setups -(CVE-2012-2311). Note: mod_php and php-fpm are not vulnerable to this -attack.
- -A buffer overflow vulnerability in the apache_request_headers() -was fixed (CVE-2012-2329).
- -For source downloads of PHP 5.4.3 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.3'); diff --git a/releases/5_4_30.php b/releases/5_4_30.php index bce1a31c24..6e143c462e 100644 --- a/releases/5_4_30.php +++ b/releases/5_4_30.php @@ -1,32 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.30. Over 20 bugs were fixed in this release, including the following security issues: -CVE-2014-3981, CVE-2014-0207, CVE-2014-3478, CVE-2014-3479, CVE-2014-3480, CVE-2014-3487, -CVE-2014-4049, CVE-2014-3515. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -Please, note that this release also fixes a backward compatibility issue that has been -detected in the PHP 5.4.29 release. Still, the fix in PHP 5.4.30 may break some very rare -situations. As this tiny compatibility break involves security, and as security is our primary -concern, we had to fix it. This concerns -bug 67072. For more information about -this bug and its actual resolution, please refer to our -upgrading guide, section 4a. -We apologize for any inconvenience you may have experienced with this behavior.
- - -For source downloads of PHP 5.4.30 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.30'); diff --git a/releases/5_4_31.php b/releases/5_4_31.php index 7900456d50..d64a98cb4f 100644 --- a/releases/5_4_31.php +++ b/releases/5_4_31.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.31. Over 10 bugs were fixed in this release. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.31 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.31'); diff --git a/releases/5_4_32.php b/releases/5_4_32.php index 5af9842fbf..78c9617a8c 100644 --- a/releases/5_4_32.php +++ b/releases/5_4_32.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.32. 16 bugs were fixed in this release, including the following security-related issues: -CVE-2014-2497, CVE-2014-3538, CVE-2014-3587, CVE-2014-3597, CVE-2014-4670, CVE-2014-4698, CVE-2014-5120. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.32 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.32'); diff --git a/releases/5_4_33.php b/releases/5_4_33.php index 036c97a4df..c450e5240e 100644 --- a/releases/5_4_33.php +++ b/releases/5_4_33.php @@ -1,26 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.33. 10 bugs were fixed in this release. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- --This release is the last planned release that contains regular bugfixes. All the consequent releases -will contain only security-relevant fixes, for the term of one year. -PHP 5.4 users that need further bugfixes are encouraged to upgrade to PHP 5.6 or PHP 5.5. -
- -For source downloads of PHP 5.4.33 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.33'); diff --git a/releases/5_4_34.php b/releases/5_4_34.php index d181664911..80db666237 100644 --- a/releases/5_4_34.php +++ b/releases/5_4_34.php @@ -1,22 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.34. 6 security-related bugs were fixed in this release, including fixes for -CVE-2014-3668, CVE-2014-3669 and CVE-2014-3670. Also, a fix for OpenSSL which -produced regressions was reverted. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.34 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.34'); diff --git a/releases/5_4_35.php b/releases/5_4_35.php index 8401e13bef..e12b6f848b 100644 --- a/releases/5_4_35.php +++ b/releases/5_4_35.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.35. 4 security-related bugs were fixed in this release, including the fix for CVE-2014-3710. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.35 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.35'); diff --git a/releases/5_4_36.php b/releases/5_4_36.php index f585a8a316..12df53fb61 100644 --- a/releases/5_4_36.php +++ b/releases/5_4_36.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.36. Two security-related bugs were fixed in this release, including the fix for CVE-2014-8142. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.36 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.36'); diff --git a/releases/5_4_37.php b/releases/5_4_37.php index 6c1e67a539..b4e0208d7c 100644 --- a/releases/5_4_37.php +++ b/releases/5_4_37.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.37. Six security-related bugs were fixed in this release, including CVE-2015-0231, CVE-2014-9427 -and CVE-2015-0232. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.37 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.37'); diff --git a/releases/5_4_38.php b/releases/5_4_38.php index d33f366214..8850841f21 100644 --- a/releases/5_4_38.php +++ b/releases/5_4_38.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.38. Seven security-related bugs were fixed in this release, including CVE-2015-0273 and mitigation for CVE-2015-0235. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.38 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.38'); diff --git a/releases/5_4_39.php b/releases/5_4_39.php index ada4f62870..014b310b9f 100644 --- a/releases/5_4_39.php +++ b/releases/5_4_39.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.39. Six security-related bugs were fixed in this release, including CVE-2015-0231, CVE-2015-2305 and CVE-2015-2331. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.39 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.39'); diff --git a/releases/5_4_4.php b/releases/5_4_4.php index 5f2d26098c..2bb9f9c4b2 100644 --- a/releases/5_4_4.php +++ b/releases/5_4_4.php @@ -1,23 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.4. This release fixes two security related -issues. All users of PHP are encouraged to upgrade to this release.
- -PHP 5.4.4 fixes an security issue in the implementation of crypt() and a -heap overflow in the Phar extension. Over 30 bugs were fixed
- -Please note that php://fd is now only available if the CLI SAPI is used
- -For source downloads of PHP 5.4.4 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.4'); diff --git a/releases/5_4_40.php b/releases/5_4_40.php index c98693d4d0..5a27d66121 100644 --- a/releases/5_4_40.php +++ b/releases/5_4_40.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.40. 14 security-related bugs were fixed in this release, including -CVE-2014-9709, CVE-2015-2301, CVE-2015-2783, CVE-2015-1352. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.40 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.40'); diff --git a/releases/5_4_41.php b/releases/5_4_41.php index 773a5dfa93..09d421d954 100644 --- a/releases/5_4_41.php +++ b/releases/5_4_41.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.41. Seven security-related issues were fixed in this version. - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.41 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.41'); diff --git a/releases/5_4_42.php b/releases/5_4_42.php index b2eaabc8c9..cb59d5ad84 100644 --- a/releases/5_4_42.php +++ b/releases/5_4_42.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.42. Six security-related issues in PHP were fixed in this release, -as well as several security issues in bundled sqlite library (CVE-2015-3414, CVE-2015-3415, CVE-2015-3416). - -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.42 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.42'); diff --git a/releases/5_4_43.php b/releases/5_4_43.php index 96cd1fce2a..78e8a3fadf 100644 --- a/releases/5_4_43.php +++ b/releases/5_4_43.php @@ -1,23 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.43. Five security-related issues in PHP were fixed in this release, including CVE-2015-3152. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.43 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -Please note that PHP 5.4 branch is nearing the end of its support timeframe. -If your PHP installations is based on PHP 5.4, it may be a good time to start making the plans for the upgrade. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.43'); diff --git a/releases/5_4_44.php b/releases/5_4_44.php index 430aaa25d1..78cddbeffb 100644 --- a/releases/5_4_44.php +++ b/releases/5_4_44.php @@ -1,23 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.44. 11 security-related issues were fixed in this release. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.44 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -Please note that PHP 5.4 branch is nearing the end of its support timeframe. Either September or October release, depending on discovered issues, will be the last official release of PHP 5.4. -If your PHP installation is based on PHP 5.4, it may be a good time to start making the plans for the upgrade. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.44'); diff --git a/releases/5_4_45.php b/releases/5_4_45.php index fe1fb6655b..96453023fb 100644 --- a/releases/5_4_45.php +++ b/releases/5_4_45.php @@ -1,25 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.4.45. Ten security-related issues were fixed in this release. -All PHP 5.4 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.4.45 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -Please note that according to the PHP version support timelines, -PHP 5.4.45 is the last scheduled release of PHP 5.4 branch. There may be additional release if we discover -important security issues that warrant it, otherwise this release will be the final one in the PHP 5.4 branch. -If your PHP installation is based on PHP 5.4, it may be a good time to start making the plans for the upgrade to PHP 5.5 or PHP 5.6. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.45'); diff --git a/releases/5_4_5.php b/releases/5_4_5.php index 609502915d..9f3cafd74d 100644 --- a/releases/5_4_5.php +++ b/releases/5_4_5.php @@ -1,19 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.5. Over 30 bugs were fixed, including a security -related overflow issue in the stream implementation. All users of PHP -are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.5 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.5'); diff --git a/releases/5_4_6.php b/releases/5_4_6.php index 67766cd45f..2acdbfa1da 100644 --- a/releases/5_4_6.php +++ b/releases/5_4_6.php @@ -1,18 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.6. Over 20 bugs were fixed. All users of PHP -are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.6 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.6'); diff --git a/releases/5_4_7.php b/releases/5_4_7.php index cc23af960e..e00d490d6e 100644 --- a/releases/5_4_7.php +++ b/releases/5_4_7.php @@ -1,18 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.7. Over 20 bugs were fixed. All users of PHP -are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.7 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.7'); diff --git a/releases/5_4_8.php b/releases/5_4_8.php index d3ce3c1dc7..b9b3144e8f 100644 --- a/releases/5_4_8.php +++ b/releases/5_4_8.php @@ -1,19 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.8. Over 20 bugs were fixed. In addition OpenSSL -signature verification now supports the SHA-2 family and RMD160. All -users of PHP are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.8 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.8'); diff --git a/releases/5_4_9.php b/releases/5_4_9.php index 074c329d49..844fb4a504 100644 --- a/releases/5_4_9.php +++ b/releases/5_4_9.php @@ -1,18 +1,3 @@ - -The PHP development team would like to announce the immediate -availability of PHP 5.4.9. Over 15 bugs were fixed. All -users of PHP are encouraged to upgrade to this release.
- -For source downloads of PHP 5.4.9 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.4.9'); diff --git a/releases/5_5_0.php b/releases/5_5_0.php index ba8c48a3ef..c2844fba96 100644 --- a/releases/5_5_0.php +++ b/releases/5_5_0.php @@ -1,51 +1,3 @@ - --The PHP development team is proud to announce the immediate availability -of PHP 5.5.0. -This release includes a large number of new features and bug fixes. -
- --The key features of PHP 5.5.0 include: -
--Changes that affect compatibility: -
--For users upgrading from PHP 5.4, -a migration guide is available -detailing the changes between 5.4 and 5.5.0. -
- -- For a full list of changes in PHP 5.5.0, see the - ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.0'); diff --git a/releases/5_5_1.php b/releases/5_5_1.php index e0003b5e42..b7ba9f5014 100644 --- a/releases/5_5_1.php +++ b/releases/5_5_1.php @@ -1,23 +1,3 @@ - --The PHP development team is proud to announce the immediate availability -of PHP 5.5.1. -This release fixes several bugs. -
- -The PHP development team announces the immediate availability of PHP -5.5.1. About 20 bugs were fixed, including a security fix in the XML parser (Bug #65236). -All users of PHP are encouraged to upgrade to this release.
- -For source downloads of PHP 5.5.1 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.1'); diff --git a/releases/5_5_10.php b/releases/5_5_10.php index 8ebdf307cf..e855f5e913 100644 --- a/releases/5_5_10.php +++ b/releases/5_5_10.php @@ -1,20 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.10. -This release fixes several bugs against PHP 5.5.9, as well as CVE-2014-1943, CVE-2014-2270 -and CVE-2013-7327
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.10, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.10'); diff --git a/releases/5_5_11.php b/releases/5_5_11.php index c24c751a78..a99fca3472 100644 --- a/releases/5_5_11.php +++ b/releases/5_5_11.php @@ -1,19 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.11. -This release fixes several bugs against PHP 5.5.10, as well as CVE-2013-7345 regarding Fileinfo
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.11, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.11'); diff --git a/releases/5_5_12.php b/releases/5_5_12.php index d59f018e76..1ac27fbe8d 100644 --- a/releases/5_5_12.php +++ b/releases/5_5_12.php @@ -1,19 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.12. -This release fixes several bugs against PHP 5.5.11, as well as CVE-2014-0185 regarding PHP-FPM.
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.12, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.12'); diff --git a/releases/5_5_13.php b/releases/5_5_13.php index ac3e1e8101..e1411bb18c 100644 --- a/releases/5_5_13.php +++ b/releases/5_5_13.php @@ -1,20 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.13. -This release fixes several bugs against PHP 5.5.12, and addresses several -CVEs in Fileinfo (CVE-2014-0238 and CVE-2014-0237).
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.13, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.13'); diff --git a/releases/5_5_14.php b/releases/5_5_14.php index 19925e85f6..e19716e361 100644 --- a/releases/5_5_14.php +++ b/releases/5_5_14.php @@ -1,30 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.14. -This release fixes several bugs against PHP 5.5.13. -Also, this release fixes a total of 8 CVEs, half of them concerning the FileInfo -extension.
- -All PHP users are encouraged to upgrade to this new version.
- -Please, note that this release also fixes a backward compatibility issue that has been -detected in the PHP 5.5.13 release. Still, the fix in PHP 5.5.14 may break some very rare -situations. As this tiny compatibility break involves security, and as security is our primary -concern, we had to fix it. This concerns -bug 67072. For more information about -this bug and its actual resolution, please visit our -upgrading guide. -We apologize for any inconvenience you may have experienced with this behavior.
- -For source downloads of PHP 5.5.14, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.14'); diff --git a/releases/5_5_15.php b/releases/5_5_15.php index e120656ca7..1d7c3acad6 100644 --- a/releases/5_5_15.php +++ b/releases/5_5_15.php @@ -1,20 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.15. -This release fixes several bugs against PHP 5.5.14. -
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.15, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.15'); diff --git a/releases/5_5_16.php b/releases/5_5_16.php index fd7f2d4459..980d8232b0 100644 --- a/releases/5_5_16.php +++ b/releases/5_5_16.php @@ -1,21 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.16. -This release fixes several bugs against PHP 5.5.15 and resolves CVE-2014-3538, CVE-2014-3587, -CVE-2014-2497, CVE-2014-5120 and CVE-2014-3597. -
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.16, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.16'); diff --git a/releases/5_5_17.php b/releases/5_5_17.php index 017b149421..28a9972031 100644 --- a/releases/5_5_17.php +++ b/releases/5_5_17.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.5.17. Several bugs were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.17 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.17'); diff --git a/releases/5_5_18.php b/releases/5_5_18.php index 7ffe394ee0..d41f1640df 100644 --- a/releases/5_5_18.php +++ b/releases/5_5_18.php @@ -1,22 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.5.18. Several bugs were fixed in this release. A regression in OpenSSL introduced in PHP 5.5.17 has - also been addressed in this release. - PHP 5.5.18 also fixes 4 CVEs in different components. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.18 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.18'); diff --git a/releases/5_5_19.php b/releases/5_5_19.php index aa646449af..11362b1f6d 100644 --- a/releases/5_5_19.php +++ b/releases/5_5_19.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.5.19. This release fixes several bugs and one CVE in the fileinfo extension. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.19 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.19'); diff --git a/releases/5_5_2.php b/releases/5_5_2.php index 650a662303..02f5446457 100644 --- a/releases/5_5_2.php +++ b/releases/5_5_2.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.5.2. About 20 bugs were fixed, including security issue in OpenSSL module (CVE-2013-4248) and session fixation problem (CVE-2011-4718). -
- -NOTE: Please do not use this release, due to the bug in the fix for CVE-2013-4248. This bug is fixed in -PHP 5.5.3.
- -For source downloads of PHP 5.5.2 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.2'); diff --git a/releases/5_5_20.php b/releases/5_5_20.php index 578beb2cd5..fa5c944a06 100644 --- a/releases/5_5_20.php +++ b/releases/5_5_20.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.5.20. This release fixes several bugs and one CVE related to unserialization. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.20 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.20'); diff --git a/releases/5_5_21.php b/releases/5_5_21.php index 32ef7b546c..39df02c316 100644 --- a/releases/5_5_21.php +++ b/releases/5_5_21.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.5.21. This release fixes several bugs as well as CVE-2015-0231, CVE-2014-9427 and CVE-2015-0232. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.21 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.21'); diff --git a/releases/5_5_22.php b/releases/5_5_22.php index 6ecc2ae048..ddd920157a 100644 --- a/releases/5_5_22.php +++ b/releases/5_5_22.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.5.22. This release fixes several bugs and addresses CVE-2015-0235 and CVE-2015-0273. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.22 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.22'); diff --git a/releases/5_5_23.php b/releases/5_5_23.php index 846129432e..dcc5e66754 100644 --- a/releases/5_5_23.php +++ b/releases/5_5_23.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.5.23. Several bugs have been fixed as well as CVE-2015-0231, CVE-2015-2305 and CVE-2015-2331. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.23 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.23'); diff --git a/releases/5_5_24.php b/releases/5_5_24.php index 75c9e75272..bb6eca767f 100644 --- a/releases/5_5_24.php +++ b/releases/5_5_24.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.24. Several bugs have been fixed some of them beeing security related, like CVE-2015-1351 and CVE-2015-1352. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.24 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.24'); diff --git a/releases/5_5_25.php b/releases/5_5_25.php index 2fd5f6a71d..afe5d818ef 100644 --- a/releases/5_5_25.php +++ b/releases/5_5_25.php @@ -1,18 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.25. Several bugs have been fixed. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.25 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.25'); diff --git a/releases/5_5_26.php b/releases/5_5_26.php index 2ad35a9f4c..66650750a9 100644 --- a/releases/5_5_26.php +++ b/releases/5_5_26.php @@ -1,20 +1,3 @@ -
The PHP development team announces the immediate availability of PHP - 5.5.26. Several bugs have been fixed as well as several security issues into some - bundled librairies (CVE-2015-3414, CVE-2015-3415, CVE-2015-3416, CVE-2015-2325 and CVE-2015-2326). - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.26 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.26'); diff --git a/releases/5_5_27.php b/releases/5_5_27.php index 9efed394bb..c1f1ef476e 100644 --- a/releases/5_5_27.php +++ b/releases/5_5_27.php @@ -1,25 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.27. Several bugs were fixed in this release as well as CVE-2015-3152. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -- According to our release calendar, this PHP 5.5 version - is the last planned release that contains regular bugfixes. All the consequent releases - will contain only security-relevant fixes, for the term of one year. - PHP 5.5 users that need further bugfixes are encouraged to upgrade to PHP 5.6. -
- -For source downloads of PHP 5.5.27 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. - - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.27'); diff --git a/releases/5_5_28.php b/releases/5_5_28.php index 78106f5bce..ac9eeff454 100644 --- a/releases/5_5_28.php +++ b/releases/5_5_28.php @@ -1,26 +1,3 @@ -
The PHP development team announces the immediate availability of PHP - 5.5.28. 12 security-related issues were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -- According to our release calendar, this PHP 5.5 version - is the first security release of the PHP 5.5 branch. This and all the following releases of this branch - do not contain bugfixes that are not considered relevant for security. - PHP 5.5 users that need further bugfixes are encouraged to upgrade to PHP 5.6. -
- -For source downloads of PHP 5.5.28 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.28'); diff --git a/releases/5_5_29.php b/releases/5_5_29.php index 21f4d90f68..3a051b3b52 100644 --- a/releases/5_5_29.php +++ b/releases/5_5_29.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.29. This is a security release. Many security-related issues were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.29 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.29'); diff --git a/releases/5_5_3.php b/releases/5_5_3.php index 2d7298a1ff..6216aca363 100644 --- a/releases/5_5_3.php +++ b/releases/5_5_3.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.5.3. -This release fixes a bug in the patch for CVE-2013-4248 in OpenSSL module.
- -All PHP users are encouraged to upgrade to this release.
- -For source downloads of PHP 5.5.3 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.3'); diff --git a/releases/5_5_30.php b/releases/5_5_30.php index 05120a8e20..a3cded924d 100644 --- a/releases/5_5_30.php +++ b/releases/5_5_30.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.30. This is a security release. Two security bugs were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.30 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.30'); diff --git a/releases/5_5_31.php b/releases/5_5_31.php index e2e33fb027..6e1aaefb3d 100644 --- a/releases/5_5_31.php +++ b/releases/5_5_31.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.31. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.31 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.31'); diff --git a/releases/5_5_32.php b/releases/5_5_32.php index f723e7176f..28396ee2f2 100644 --- a/releases/5_5_32.php +++ b/releases/5_5_32.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.32. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.32 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.32'); diff --git a/releases/5_5_33.php b/releases/5_5_33.php index eaf3f8fc94..3b119d6481 100644 --- a/releases/5_5_33.php +++ b/releases/5_5_33.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.33. This is a security release. Two security bugs were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.33 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.33'); diff --git a/releases/5_5_34.php b/releases/5_5_34.php index 669f7d7a40..13f5a138a7 100644 --- a/releases/5_5_34.php +++ b/releases/5_5_34.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.34. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.34 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.34'); diff --git a/releases/5_5_35.php b/releases/5_5_35.php index f334dd3013..8c3b7646ad 100644 --- a/releases/5_5_35.php +++ b/releases/5_5_35.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.35. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.35 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.35'); diff --git a/releases/5_5_36.php b/releases/5_5_36.php index f456e0a890..1a37c3fcc7 100644 --- a/releases/5_5_36.php +++ b/releases/5_5_36.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.36. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.36 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.36'); diff --git a/releases/5_5_37.php b/releases/5_5_37.php index 1708207004..cbb4f1d93f 100644 --- a/releases/5_5_37.php +++ b/releases/5_5_37.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.5.37. This is a security release, several security bugs were fixed. - - All PHP 5.5 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.5.37 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.37'); diff --git a/releases/5_5_38.php b/releases/5_5_38.php index 5356334bd3..84837cfda1 100644 --- a/releases/5_5_38.php +++ b/releases/5_5_38.php @@ -1,22 +1,3 @@ -- The PHP development team announces the immediate availability of PHP 5.5.38. This is a security release that fixes - some security related bugs. -
- -All PHP 5.5 users are encouraged to upgrade to this version.
- -For source downloads of PHP 5.5.38 please visit our downloads page, Windows source and binaries can be found on windows.php.net/download/. The list of changes is recorded in the ChangeLog.
- -- Note that according to our release schedule, PHP 5.5.38 is the last release of the PHP 5.5 branch. - There may be additional release if we discover important security issues that warrant it, otherwise this release will be the final one in the PHP 5.5 branch. If your PHP installation is based on PHP 5.5, it may be a good time to start making the plans for the upgrade to PHP 5.6 or PHP 7.0. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.38'); diff --git a/releases/5_5_4.php b/releases/5_5_4.php index f7409b010a..6096c9e306 100644 --- a/releases/5_5_4.php +++ b/releases/5_5_4.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.5.4. -This release fixes several bugs against PHP 5.5.3.
- -All PHP users are encouraged to upgrade to this release.
- -For source downloads of PHP 5.5.4 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.4'); diff --git a/releases/5_5_5.php b/releases/5_5_5.php index c4945f00fc..b6e69f7db5 100644 --- a/releases/5_5_5.php +++ b/releases/5_5_5.php @@ -1,19 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.5. -This release fixes about twenty bugs against PHP 5.5.4, some of them regarding the build system.
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.5, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.5'); diff --git a/releases/5_5_6.php b/releases/5_5_6.php index 73ef831603..ec9205556a 100644 --- a/releases/5_5_6.php +++ b/releases/5_5_6.php @@ -1,19 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.6. -This release fixes some bugs against PHP 5.5.5, and adds some performance improvements.
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.6, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.6'); diff --git a/releases/5_5_7.php b/releases/5_5_7.php index 643a8baf48..c979bb58ca 100644 --- a/releases/5_5_7.php +++ b/releases/5_5_7.php @@ -1,19 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.7. -This release fixes some bugs against PHP 5.5.6, and fixes CVE-2013-6420.
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.7, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.7'); diff --git a/releases/5_5_8.php b/releases/5_5_8.php index de1a12ed56..f20b332ffb 100644 --- a/releases/5_5_8.php +++ b/releases/5_5_8.php @@ -1,19 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.8. -This release fixes about 20 bugs against PHP 5.5.7.
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.8, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.8'); diff --git a/releases/5_5_9.php b/releases/5_5_9.php index 282445b2a5..675d39fa4d 100644 --- a/releases/5_5_9.php +++ b/releases/5_5_9.php @@ -1,19 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.5.9. -This release fixes several bugs against PHP 5.5.8.
- -All PHP users are encouraged to upgrade to this new version.
- -For source downloads of PHP 5.5.9, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.5.9'); diff --git a/releases/5_6_0.php b/releases/5_6_0.php index c2a8bbc753..6eaf8eab36 100644 --- a/releases/5_6_0.php +++ b/releases/5_6_0.php @@ -1,48 +1,3 @@ - -The PHP Development Team announces the immediate availability of PHP 5.6.0. -This new version comes with new features, some backward incompatible changes and many improvements. -
- -The main features of PHP 5.6.0 include:
-... operator.** operator.$HTTP_RAW_POST_DATA is deprecated.For a full list of new features, you may read the new features chapter of the migration guide.
- --PHP 5.6.0 also introduces changes that affect compatibility: -
- -- For users upgrading from PHP 5.5, a full migration guide is available, detailing the changes between 5.5 and 5.6.0. -
- -For source downloads of PHP 5.6.0, please visit our downloads page. -Windows binaries can be found on windows.php.net/download/. -The full list of changes is available in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.0'); diff --git a/releases/5_6_1.php b/releases/5_6_1.php index 17616e6dbc..297cd5c5ea 100644 --- a/releases/5_6_1.php +++ b/releases/5_6_1.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.1. Several bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.1 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.1'); diff --git a/releases/5_6_10.php b/releases/5_6_10.php index 92c11117ed..d0cb6f49ce 100644 --- a/releases/5_6_10.php +++ b/releases/5_6_10.php @@ -1,20 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.10. Several bugs have been fixed as well as several security issues into some - bundled librairies (CVE-2015-3414, CVE-2015-3415, CVE-2015-3416, CVE-2015-2325 and CVE-2015-2326). - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.10 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.10'); diff --git a/releases/5_6_11.php b/releases/5_6_11.php index e8ef1aaaea..5513839d20 100644 --- a/releases/5_6_11.php +++ b/releases/5_6_11.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -5.6.11. Five security-related issues in PHP were fixed in this release, including CVE-2015-3152. -All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.11 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.11'); diff --git a/releases/5_6_12.php b/releases/5_6_12.php index 79d34e217a..370a7531f0 100644 --- a/releases/5_6_12.php +++ b/releases/5_6_12.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.12. 12 security-related issues were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.12 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.12'); diff --git a/releases/5_6_13.php b/releases/5_6_13.php index 4608e6ca3d..d59f273770 100644 --- a/releases/5_6_13.php +++ b/releases/5_6_13.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.13. 11 security-related issues were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.13 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.13'); diff --git a/releases/5_6_14.php b/releases/5_6_14.php index 45c06d993c..efbd24d00b 100644 --- a/releases/5_6_14.php +++ b/releases/5_6_14.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.14. This is a security release. Two security bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.14 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.14'); diff --git a/releases/5_6_15.php b/releases/5_6_15.php index 51c3649171..9dc2cdb336 100644 --- a/releases/5_6_15.php +++ b/releases/5_6_15.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.15. Several bugs have been fixed. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.15 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.15'); diff --git a/releases/5_6_16.php b/releases/5_6_16.php index 9c01b9af9f..611db9d60b 100644 --- a/releases/5_6_16.php +++ b/releases/5_6_16.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.16. Several bugs have been fixed. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.16 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.16'); diff --git a/releases/5_6_17.php b/releases/5_6_17.php index 95e94b88d1..1d83d86874 100644 --- a/releases/5_6_17.php +++ b/releases/5_6_17.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.17. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.17 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.17'); diff --git a/releases/5_6_18.php b/releases/5_6_18.php index 3d14865b1a..eee9cda8d4 100644 --- a/releases/5_6_18.php +++ b/releases/5_6_18.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.18. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.18 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.18'); diff --git a/releases/5_6_19.php b/releases/5_6_19.php index ba1447cef6..74cc370732 100644 --- a/releases/5_6_19.php +++ b/releases/5_6_19.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.19. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.19 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.19'); diff --git a/releases/5_6_2.php b/releases/5_6_2.php index 30644d9b56..ed5019dabc 100644 --- a/releases/5_6_2.php +++ b/releases/5_6_2.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.6.2. -Four security-related bugs were fixed in this release, including fixes for CVE-2014-3668, CVE-2014-3669 and CVE-2014-3670. -All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.2 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.2'); diff --git a/releases/5_6_20.php b/releases/5_6_20.php index 14c1cca08d..38564d021f 100644 --- a/releases/5_6_20.php +++ b/releases/5_6_20.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.20. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.20 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.20'); diff --git a/releases/5_6_21.php b/releases/5_6_21.php index 4c04249c92..a17ec75e62 100644 --- a/releases/5_6_21.php +++ b/releases/5_6_21.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.21. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.21 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.21'); diff --git a/releases/5_6_22.php b/releases/5_6_22.php index a1e76edf90..ea0acb5968 100644 --- a/releases/5_6_22.php +++ b/releases/5_6_22.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.22. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.22 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.22'); diff --git a/releases/5_6_23.php b/releases/5_6_23.php index 3258785dae..e22bf7f1f7 100644 --- a/releases/5_6_23.php +++ b/releases/5_6_23.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.23. Several bugs were fixed in this release, including security-related ones. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.23 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.23'); diff --git a/releases/5_6_24.php b/releases/5_6_24.php index 3d4a10b76c..ffbfb07d8d 100644 --- a/releases/5_6_24.php +++ b/releases/5_6_24.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.24. This is a security release. Several security bugs were fixed in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.24 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.24'); diff --git a/releases/5_6_25.php b/releases/5_6_25.php index fcf349acf3..199a9c20d5 100644 --- a/releases/5_6_25.php +++ b/releases/5_6_25.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.25. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.25 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.25'); diff --git a/releases/5_6_26.php b/releases/5_6_26.php index c6053aa69a..396e775270 100644 --- a/releases/5_6_26.php +++ b/releases/5_6_26.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.26. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.26 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.26'); diff --git a/releases/5_6_27.php b/releases/5_6_27.php index e4a84d5106..ff5025409d 100644 --- a/releases/5_6_27.php +++ b/releases/5_6_27.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.27. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.27 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.27'); diff --git a/releases/5_6_28.php b/releases/5_6_28.php index b6e36e3532..1c7a1885f7 100644 --- a/releases/5_6_28.php +++ b/releases/5_6_28.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.28. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.28 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.28'); diff --git a/releases/5_6_29.php b/releases/5_6_29.php index eaa1d39c84..de24d9025f 100644 --- a/releases/5_6_29.php +++ b/releases/5_6_29.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.29. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.29 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.29'); diff --git a/releases/5_6_3.php b/releases/5_6_3.php index d7f8c4e4f2..bcf8fe39eb 100644 --- a/releases/5_6_3.php +++ b/releases/5_6_3.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 5.6.3. -This release fixes several bugs and one CVE in the fileinfo extension. -All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.3 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.3'); diff --git a/releases/5_6_30.php b/releases/5_6_30.php index 608e49ce8f..d3b7c9cbc2 100644 --- a/releases/5_6_30.php +++ b/releases/5_6_30.php @@ -1,28 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.30. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -- According to our release calendar, this PHP 5.6 version - is the last planned release that contains regular bugfixes. All the consequent releases - will contain only security-relevant fixes, for the term of two years. - PHP 5.6 users that need further bugfixes are encouraged to upgrade to PHP 7. -
- -For source downloads of PHP 5.6.30 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.30'); diff --git a/releases/5_6_31.php b/releases/5_6_31.php index ff7e4349cf..03cb1a5f70 100644 --- a/releases/5_6_31.php +++ b/releases/5_6_31.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.31. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.31 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.31'); diff --git a/releases/5_6_32.php b/releases/5_6_32.php index 744e972724..9b88e4c6a3 100644 --- a/releases/5_6_32.php +++ b/releases/5_6_32.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.32. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.32 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.32'); diff --git a/releases/5_6_33.php b/releases/5_6_33.php index 83d5b6417d..116c0f9fe5 100644 --- a/releases/5_6_33.php +++ b/releases/5_6_33.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.33. This is a security release. Several security bugs were fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.33 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.33'); diff --git a/releases/5_6_34.php b/releases/5_6_34.php index 276aa8800a..cd16738950 100644 --- a/releases/5_6_34.php +++ b/releases/5_6_34.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.34. This is a security release. One security bug was fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.34 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.34'); diff --git a/releases/5_6_35.php b/releases/5_6_35.php index ce9379568e..e5f4612749 100644 --- a/releases/5_6_35.php +++ b/releases/5_6_35.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.35. This is a security release. One security bug was fixed in - this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.35 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.35'); diff --git a/releases/5_6_36.php b/releases/5_6_36.php index 3175ee18e5..c0db7d36ec 100644 --- a/releases/5_6_36.php +++ b/releases/5_6_36.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.36. This is a security release. Several security bugs have been fixed - in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.36 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.36'); diff --git a/releases/5_6_37.php b/releases/5_6_37.php index 56409093d8..fc97419f08 100644 --- a/releases/5_6_37.php +++ b/releases/5_6_37.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.37. This is a security release. Several security bugs have been fixed - in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.37 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.37'); diff --git a/releases/5_6_38.php b/releases/5_6_38.php index f3f64e72a9..0648b13ec0 100644 --- a/releases/5_6_38.php +++ b/releases/5_6_38.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.38. This is a security release. One security bug has been fixed - in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.38 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.38'); diff --git a/releases/5_6_39.php b/releases/5_6_39.php index 1bc854ef06..00cfb2ee49 100644 --- a/releases/5_6_39.php +++ b/releases/5_6_39.php @@ -1,32 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.39. This is a security release. Several security bugs have been fixed - in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.39 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- -Please note that according to the PHP version -support timelines, - PHP 5.6.39 is the last scheduled release of PHP 5.6 branch. There may be additional release if we -discover - important security issues that warrant it, otherwise this release will be the final one in the PHP -5.6 branch. - If your PHP installation is based on PHP 5.6, it may be a good time to start making the plans for -the upgrade - to PHP 7.1, PHP 7.2 or PHP 7.3. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.39'); diff --git a/releases/5_6_4.php b/releases/5_6_4.php index 9f3c700bbb..ecd644d3ea 100644 --- a/releases/5_6_4.php +++ b/releases/5_6_4.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.4. This release fixes several bugs and one CVE related to unserialization. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.4 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.4'); diff --git a/releases/5_6_40.php b/releases/5_6_40.php index a0880e1dde..3df42da243 100644 --- a/releases/5_6_40.php +++ b/releases/5_6_40.php @@ -1,32 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.40. This is a security release. Several security bugs have been fixed - in this release. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.40 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- -Please note that according to the PHP version -support timelines, - PHP 5.6.40 is the last scheduled release of PHP 5.6 branch. There may be additional release if we -discover - important security issues that warrant it, otherwise this release will be the final one in the PHP -5.6 branch. - If your PHP installation is based on PHP 5.6, it may be a good time to start making the plans for -the upgrade - to PHP 7.1, PHP 7.2 or PHP 7.3. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.40'); diff --git a/releases/5_6_5.php b/releases/5_6_5.php index fd687d6889..c98e55f9cc 100644 --- a/releases/5_6_5.php +++ b/releases/5_6_5.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.5. This release fixes several bugs as well as CVE-2015-0231, CVE-2014-9427 and CVE-2015-0232. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.5 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.5'); diff --git a/releases/5_6_6.php b/releases/5_6_6.php index 91af39dcab..6d325ac88b 100644 --- a/releases/5_6_6.php +++ b/releases/5_6_6.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.6. This release fixes several bugs and addresses CVE-2015-0235 and CVE-2015-0273. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.6 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.6'); diff --git a/releases/5_6_7.php b/releases/5_6_7.php index dcfdc7f473..071e4ef39a 100644 --- a/releases/5_6_7.php +++ b/releases/5_6_7.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.7. Several bugs have been fixed as well as CVE-2015-0231, CVE-2015-2305 and CVE-2015-2331. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.7 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.7'); diff --git a/releases/5_6_8.php b/releases/5_6_8.php index c68e0c08dd..c122b2aec2 100644 --- a/releases/5_6_8.php +++ b/releases/5_6_8.php @@ -1,19 +1,3 @@ -The PHP development team announces the immediate availability of PHP - 5.6.8. Several bugs have been fixed some of them beeing security related, like CVE-2015-1351 and CVE-2015-1352. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.8 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.8'); diff --git a/releases/5_6_9.php b/releases/5_6_9.php index df6cb7e170..3fb68f40a6 100644 --- a/releases/5_6_9.php +++ b/releases/5_6_9.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 5.6.9. Several bugs have been fixed. - - All PHP 5.6 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 5.6.9 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('5.6.9'); diff --git a/releases/7_0_0.php b/releases/7_0_0.php index a9c03fcd43..d80e51cf4a 100644 --- a/releases/7_0_0.php +++ b/releases/7_0_0.php @@ -1,57 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.0. This release marks the start of the new major PHP 7 series. -
-- PHP 7.0.0 comes with a new version of the Zend Engine, numerous improvements - and new features such as -
-For source downloads of PHP 7.0.0 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
-- The migration guide is available in the PHP Manual. Please consult - it for the detailed list of new features and backward incompatible changes. -
- -- The inconvenience of the release lateness in several time zones is caused by the need to ensure the - compatibility with the latest OpenSSL 1.0.2e release. Thanks for the patience! -
- -- It is not just a next major PHP version being released today. - The release being introduced is an outcome of the almost two years development - journey. It is a very special accomplishment of the core team. And, it is a - result of incredible efforts of many active community members. - Indeed, it is not just a final release being brought out today, it is the rise of - a new PHP generation with an enormous potential. -
- -Congratulations everyone to this spectacular day for the PHP world!
-Grateful thanks to all the contributors and supporters!
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.0'); diff --git a/releases/7_0_1.php b/releases/7_0_1.php index d5ee6a501f..253efb6975 100644 --- a/releases/7_0_1.php +++ b/releases/7_0_1.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.1. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.1 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.1'); diff --git a/releases/7_0_10.php b/releases/7_0_10.php index 37b4e556ae..efc5907cbd 100644 --- a/releases/7_0_10.php +++ b/releases/7_0_10.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.10. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.10 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.10'); diff --git a/releases/7_0_11.php b/releases/7_0_11.php index d8fb6b3bf6..fc301c9e54 100644 --- a/releases/7_0_11.php +++ b/releases/7_0_11.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.11. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.11 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.11'); diff --git a/releases/7_0_12.php b/releases/7_0_12.php index 0deefa9771..8b599ab083 100644 --- a/releases/7_0_12.php +++ b/releases/7_0_12.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.12. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.12 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.12'); diff --git a/releases/7_0_13.php b/releases/7_0_13.php index e1ff50a487..434ef0faa0 100644 --- a/releases/7_0_13.php +++ b/releases/7_0_13.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.13. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.13 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.13'); diff --git a/releases/7_0_14.php b/releases/7_0_14.php index 6ab05f87b6..c1964a444e 100644 --- a/releases/7_0_14.php +++ b/releases/7_0_14.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.14. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.14 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.14'); diff --git a/releases/7_0_15.php b/releases/7_0_15.php index c2fbfb4421..cb664f7924 100644 --- a/releases/7_0_15.php +++ b/releases/7_0_15.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.15. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.15 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.15'); diff --git a/releases/7_0_16.php b/releases/7_0_16.php index 35c21b4280..2d14ddd4c8 100644 --- a/releases/7_0_16.php +++ b/releases/7_0_16.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.16. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.16 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.16'); diff --git a/releases/7_0_17.php b/releases/7_0_17.php index 6476498d3e..3c065b547e 100644 --- a/releases/7_0_17.php +++ b/releases/7_0_17.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.17. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.17 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.17'); diff --git a/releases/7_0_18.php b/releases/7_0_18.php index 5a3751e698..58dd6390d7 100644 --- a/releases/7_0_18.php +++ b/releases/7_0_18.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.18. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.18 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.18'); diff --git a/releases/7_0_19.php b/releases/7_0_19.php index a83318fe1f..fec2ea9f3c 100644 --- a/releases/7_0_19.php +++ b/releases/7_0_19.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.19. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.19 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.19'); diff --git a/releases/7_0_2.php b/releases/7_0_2.php index e069ea38d8..813c098d58 100644 --- a/releases/7_0_2.php +++ b/releases/7_0_2.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.2. 31 reported bugs has been fixed, including 6 security related issues. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.2 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.2'); diff --git a/releases/7_0_20.php b/releases/7_0_20.php index 91e403deab..4b889cdb55 100644 --- a/releases/7_0_20.php +++ b/releases/7_0_20.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.20. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.20 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.20'); diff --git a/releases/7_0_21.php b/releases/7_0_21.php index 0fa6ef90e0..cf07d01170 100644 --- a/releases/7_0_21.php +++ b/releases/7_0_21.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.21. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.21 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.21'); diff --git a/releases/7_0_22.php b/releases/7_0_22.php index b80b514ef0..812509b3e6 100644 --- a/releases/7_0_22.php +++ b/releases/7_0_22.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.22. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.22 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.22'); diff --git a/releases/7_0_23.php b/releases/7_0_23.php index ff9df4a370..3a38345c01 100644 --- a/releases/7_0_23.php +++ b/releases/7_0_23.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.23. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.23 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.23'); diff --git a/releases/7_0_24.php b/releases/7_0_24.php index baf73b3029..ab5dc4c77b 100644 --- a/releases/7_0_24.php +++ b/releases/7_0_24.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.24. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.24 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.24'); diff --git a/releases/7_0_25.php b/releases/7_0_25.php index 60c621c141..4065ea5fad 100644 --- a/releases/7_0_25.php +++ b/releases/7_0_25.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.25. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.25 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.25'); diff --git a/releases/7_0_26.php b/releases/7_0_26.php index 84cde09128..70867c5619 100644 --- a/releases/7_0_26.php +++ b/releases/7_0_26.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.26. Several bugs have been fixed. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.26 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.26'); diff --git a/releases/7_0_27.php b/releases/7_0_27.php index d76cdf94d2..91f4052d43 100644 --- a/releases/7_0_27.php +++ b/releases/7_0_27.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.27. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.27 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.27'); diff --git a/releases/7_0_28.php b/releases/7_0_28.php index 46cc942b8f..8bdecaae45 100644 --- a/releases/7_0_28.php +++ b/releases/7_0_28.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.28. This is a security release. One security bug was fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.28 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.28'); diff --git a/releases/7_0_29.php b/releases/7_0_29.php index 4d235fc464..9a50d5a74b 100644 --- a/releases/7_0_29.php +++ b/releases/7_0_29.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.29. This is a security release. One security bug was fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.29 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.29'); diff --git a/releases/7_0_3.php b/releases/7_0_3.php index 80ed7fbbef..e89065c8d3 100644 --- a/releases/7_0_3.php +++ b/releases/7_0_3.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.3. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.3 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.3'); diff --git a/releases/7_0_30.php b/releases/7_0_30.php index b5b59760a8..a824ca5a6c 100644 --- a/releases/7_0_30.php +++ b/releases/7_0_30.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.30. This is a security release. Several security bugs have been fixed - in this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.30 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.30'); diff --git a/releases/7_0_31.php b/releases/7_0_31.php index eedf1d8c8c..b25e53ddf7 100644 --- a/releases/7_0_31.php +++ b/releases/7_0_31.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.31. This is a security release. Several security bugs have been fixed - in this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.31 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.31'); diff --git a/releases/7_0_32.php b/releases/7_0_32.php index 0c756a27bc..c5d356699b 100644 --- a/releases/7_0_32.php +++ b/releases/7_0_32.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.32. This is a security release. One security bug has been fixed - in this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.32 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.32'); diff --git a/releases/7_0_33.php b/releases/7_0_33.php index 9bcd72c6b7..19f63b1be4 100644 --- a/releases/7_0_33.php +++ b/releases/7_0_33.php @@ -1,26 +1,3 @@ - -The PHP development team announces the immediate availability of PHP -7.0.33. Five security-related issues were fixed in this release. -All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.33 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -Please note that according to the PHP version support timelines, -PHP 7.0.33 is the last scheduled release of PHP 7.0 branch. There may be additional release if we discover -important security issues that warrant it, otherwise this release will be the final one in the PHP 7.0 branch. -If your PHP installation is based on PHP 7.0, it may be a good time to start making the plans for the upgrade -to PHP 7.1, PHP 7.2 or PHP 7.3. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.33'); diff --git a/releases/7_0_4.php b/releases/7_0_4.php index db41cdc195..6bf7bd95cb 100644 --- a/releases/7_0_4.php +++ b/releases/7_0_4.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.4. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.4 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.4'); diff --git a/releases/7_0_5.php b/releases/7_0_5.php index 26727154b0..994d66b43c 100644 --- a/releases/7_0_5.php +++ b/releases/7_0_5.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.5. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.5 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.5'); diff --git a/releases/7_0_6.php b/releases/7_0_6.php index 6ebe1cc1ff..b46f400c6e 100644 --- a/releases/7_0_6.php +++ b/releases/7_0_6.php @@ -1,25 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.6. This is a security release. Several security bugs were fixed in - this release, including
-- All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.6 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.6'); diff --git a/releases/7_0_7.php b/releases/7_0_7.php index 937aa325e0..78d28585e4 100644 --- a/releases/7_0_7.php +++ b/releases/7_0_7.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.7. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.7 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.7'); diff --git a/releases/7_0_8.php b/releases/7_0_8.php index ac53e0f20b..c4556e2abd 100644 --- a/releases/7_0_8.php +++ b/releases/7_0_8.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.8. This is a security release. Several security bugs were fixed in - this release. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.8 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.8'); diff --git a/releases/7_0_9.php b/releases/7_0_9.php index 93bce497c7..ce2ff8fc72 100644 --- a/releases/7_0_9.php +++ b/releases/7_0_9.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.0.9. This is a security release. Several security bugs were fixed in - this release, including the HTTP_PROXY issue. - - All PHP 7.0 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.0.9 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.0.9'); diff --git a/releases/7_1_0.php b/releases/7_1_0.php index a046897cdd..2a109bfb71 100644 --- a/releases/7_1_0.php +++ b/releases/7_1_0.php @@ -1,29 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 7.1.0. This release is the first point release in the 7.x series.
- -PHP 7.1.0 comes with numerous improvements and new features such as
- -list() and the ability to specify keys in list()For source downloads of PHP 7.1.0 please visit our downloads page, Windows binaries can be found on the PHP for Windows site. The list of changes is recorded in the ChangeLog.
- -The migration guide is available in the PHP Manual. Please consult it for the detailed list of new features and backward incompatible changes.
- -Many thanks to all the contributors and supporters!
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.0'); diff --git a/releases/7_1_1.php b/releases/7_1_1.php index 43008be431..ae970a4026 100644 --- a/releases/7_1_1.php +++ b/releases/7_1_1.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.1. Several bugs have been fixed. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.1 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.1'); diff --git a/releases/7_1_10.php b/releases/7_1_10.php index 9b73894f6c..76e4f903c0 100644 --- a/releases/7_1_10.php +++ b/releases/7_1_10.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.10. This is a bugfix release, with several bug fixes included. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.10 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.10'); diff --git a/releases/7_1_11.php b/releases/7_1_11.php index 1648da6f9b..4658ee41f2 100644 --- a/releases/7_1_11.php +++ b/releases/7_1_11.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.11. This is a bugfix release, with several bug fixes included. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.11 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.11'); diff --git a/releases/7_1_12.php b/releases/7_1_12.php index 51307109f0..a211b6da84 100644 --- a/releases/7_1_12.php +++ b/releases/7_1_12.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.12. This is a bugfix release, with several bug fixes included. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.12 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.12'); diff --git a/releases/7_1_13.php b/releases/7_1_13.php index b5f210d37a..d113f9746e 100644 --- a/releases/7_1_13.php +++ b/releases/7_1_13.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.13. This is a bugfix release, with several bug fixes included. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.13 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.13'); diff --git a/releases/7_1_14.php b/releases/7_1_14.php index fa2b419c8c..1abb54720b 100644 --- a/releases/7_1_14.php +++ b/releases/7_1_14.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.14. This is a bugfix release, with several bug fixes included. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.14 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.14'); diff --git a/releases/7_1_15.php b/releases/7_1_15.php index e1c41fa80c..2f5ba58461 100644 --- a/releases/7_1_15.php +++ b/releases/7_1_15.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.15. This is a security fix release, containing one security fix and many bug fixes. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.15 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.15'); diff --git a/releases/7_1_16.php b/releases/7_1_16.php index 47e7e66e82..0fb35f3f76 100644 --- a/releases/7_1_16.php +++ b/releases/7_1_16.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.16. This is a security fix release, containing one security fix and many bug fixes. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.16 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.16'); diff --git a/releases/7_1_17.php b/releases/7_1_17.php index b2e6c62c1c..1e029938b9 100644 --- a/releases/7_1_17.php +++ b/releases/7_1_17.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.17. This is a security fix release, containing many bugfixes. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.17 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.17'); diff --git a/releases/7_1_18.php b/releases/7_1_18.php index 6795aa1adf..4667a2c481 100644 --- a/releases/7_1_18.php +++ b/releases/7_1_18.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.18. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.18 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.18'); diff --git a/releases/7_1_19.php b/releases/7_1_19.php index cce61643a1..7ce6dcad0e 100644 --- a/releases/7_1_19.php +++ b/releases/7_1_19.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.19. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.19 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.19'); diff --git a/releases/7_1_2.php b/releases/7_1_2.php index 2c4867e35b..a61c0be692 100644 --- a/releases/7_1_2.php +++ b/releases/7_1_2.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.2. Several bugs have been fixed. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.2 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.2'); diff --git a/releases/7_1_20.php b/releases/7_1_20.php index 0954c3e6cb..d243ab4382 100644 --- a/releases/7_1_20.php +++ b/releases/7_1_20.php @@ -1,22 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.20. This is a security release. Several security bugs have been fixed - in this release. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.20 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.20'); diff --git a/releases/7_1_21.php b/releases/7_1_21.php index d4ad64a7c2..8f69295b0e 100644 --- a/releases/7_1_21.php +++ b/releases/7_1_21.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.21. This is a bugfix release. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.21 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.21'); diff --git a/releases/7_1_22.php b/releases/7_1_22.php index 2f036df131..6b9b2f9da5 100644 --- a/releases/7_1_22.php +++ b/releases/7_1_22.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.22. This is a security release. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.22 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.22'); diff --git a/releases/7_1_23.php b/releases/7_1_23.php index 177facd0ff..9b859f2deb 100644 --- a/releases/7_1_23.php +++ b/releases/7_1_23.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.1.23. -This is a bugfix release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.23 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.23'); diff --git a/releases/7_1_24.php b/releases/7_1_24.php index c494ecc463..081bd94f07 100644 --- a/releases/7_1_24.php +++ b/releases/7_1_24.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.1.24. -This is a bugfix release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.24 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.24'); diff --git a/releases/7_1_25.php b/releases/7_1_25.php index 09db20d0b1..84126d1158 100644 --- a/releases/7_1_25.php +++ b/releases/7_1_25.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.1.25. -This is a security release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.25 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.25'); diff --git a/releases/7_1_26.php b/releases/7_1_26.php index 704a9db18a..5dfaf6c96b 100644 --- a/releases/7_1_26.php +++ b/releases/7_1_26.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.26. This is a security release which also contains several bug fixes.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.26 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.26'); diff --git a/releases/7_1_27.php b/releases/7_1_27.php index 7663c276c5..0d63843929 100644 --- a/releases/7_1_27.php +++ b/releases/7_1_27.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.27. This is a security release which also contains several bug fixes.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.27 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.27'); diff --git a/releases/7_1_28.php b/releases/7_1_28.php index 357628ea78..5302a4ba02 100644 --- a/releases/7_1_28.php +++ b/releases/7_1_28.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.28. This is a security release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.28 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.28'); diff --git a/releases/7_1_29.php b/releases/7_1_29.php index a146a0373c..9c3bbc1aa0 100644 --- a/releases/7_1_29.php +++ b/releases/7_1_29.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.29. This is a security release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.29 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.29'); diff --git a/releases/7_1_3.php b/releases/7_1_3.php index 0fb8b3a7e4..026c6fd25e 100644 --- a/releases/7_1_3.php +++ b/releases/7_1_3.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.3. Several bugs have been fixed. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.3 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.3'); diff --git a/releases/7_1_30.php b/releases/7_1_30.php index 5f2341075f..1bf9477091 100644 --- a/releases/7_1_30.php +++ b/releases/7_1_30.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.30. This is a security release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.30 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.30'); diff --git a/releases/7_1_31.php b/releases/7_1_31.php index 23cfe2ebac..80247466ee 100644 --- a/releases/7_1_31.php +++ b/releases/7_1_31.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.31. This is a security release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.31 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.31'); diff --git a/releases/7_1_32.php b/releases/7_1_32.php index f4425d9ef1..b674cd7117 100644 --- a/releases/7_1_32.php +++ b/releases/7_1_32.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.32. This is a security release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.32 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.32'); diff --git a/releases/7_1_33.php b/releases/7_1_33.php index ac5ad6bbc3..bcf1fb3093 100644 --- a/releases/7_1_33.php +++ b/releases/7_1_33.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.33. This is a security release.
- -All PHP 7.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.1.33 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.33'); diff --git a/releases/7_1_4.php b/releases/7_1_4.php index fb92d88dca..24556a444b 100644 --- a/releases/7_1_4.php +++ b/releases/7_1_4.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.4. Several bugs have been fixed. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.4 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.4'); diff --git a/releases/7_1_5.php b/releases/7_1_5.php index 5968ff876e..d7a843ad02 100644 --- a/releases/7_1_5.php +++ b/releases/7_1_5.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.5. Several bugs have been fixed. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.5 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.5'); diff --git a/releases/7_1_6.php b/releases/7_1_6.php index 23252770d0..6ecc220366 100644 --- a/releases/7_1_6.php +++ b/releases/7_1_6.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.6. Several bugs have been fixed. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.6 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.6'); diff --git a/releases/7_1_7.php b/releases/7_1_7.php index 9e0eb93e02..77d7a6833c 100644 --- a/releases/7_1_7.php +++ b/releases/7_1_7.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.7. This is a security release with several bug fixes included. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.7 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.7'); diff --git a/releases/7_1_8.php b/releases/7_1_8.php index 0fb22a4db7..6d5d7e6876 100644 --- a/releases/7_1_8.php +++ b/releases/7_1_8.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.8. This is a bugfix release, with several bug fixes included. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.8 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.8'); diff --git a/releases/7_1_9.php b/releases/7_1_9.php index 9fcaa91580..1333ac52e6 100644 --- a/releases/7_1_9.php +++ b/releases/7_1_9.php @@ -1,21 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.1.9. This is a bugfix release, with several bug fixes included. - - All PHP 7.1 users are encouraged to upgrade to this version. -
- -For source downloads of PHP 7.1.9 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.1.9'); diff --git a/releases/7_2_0.php b/releases/7_2_0.php index c378fbdf51..ec343b30b7 100644 --- a/releases/7_2_0.php +++ b/releases/7_2_0.php @@ -1,34 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 7.2.0. - This release marks the second feature update to the PHP 7 series.
- -PHP 7.2.0 comes with numerous improvements and new features such as
- -For source downloads of PHP 7.2.0 please visit our downloads page - Windows binaries can be found on the PHP for Windows site. - The list of changes is recorded in the ChangeLog.
- -The migration guide is available in the PHP Manual. - Please consult it for the detailed list of new features and backward incompatible changes.
- -Many thanks to all the contributors and supporters!
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.0'); diff --git a/releases/7_2_1.php b/releases/7_2_1.php index a9ac4ffd95..65dd6732b6 100644 --- a/releases/7_2_1.php +++ b/releases/7_2_1.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.2.1. This is a bugfix release, with several bug fixes included.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.1 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.1'); diff --git a/releases/7_2_10.php b/releases/7_2_10.php index 42df477ff6..a9a515d621 100644 --- a/releases/7_2_10.php +++ b/releases/7_2_10.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.10. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.10 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.10'); diff --git a/releases/7_2_11.php b/releases/7_2_11.php index f0cafdfa0a..5dd355fdb3 100644 --- a/releases/7_2_11.php +++ b/releases/7_2_11.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.11. -This is a bugfix release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.11 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.11'); diff --git a/releases/7_2_12.php b/releases/7_2_12.php index 05cadb7ba5..66b617c6cf 100644 --- a/releases/7_2_12.php +++ b/releases/7_2_12.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.12. -This is a bugfix release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.12 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.12'); diff --git a/releases/7_2_13.php b/releases/7_2_13.php index c6ea399305..e3758e05fd 100644 --- a/releases/7_2_13.php +++ b/releases/7_2_13.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.13. -This is a security release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.13 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.13'); diff --git a/releases/7_2_14.php b/releases/7_2_14.php index 8341405416..af6ebfb557 100644 --- a/releases/7_2_14.php +++ b/releases/7_2_14.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.14. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.14 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.14'); diff --git a/releases/7_2_15.php b/releases/7_2_15.php index bd3913dbab..cc5c76cd06 100644 --- a/releases/7_2_15.php +++ b/releases/7_2_15.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.15. -This is a bugfix release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.15 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.15'); diff --git a/releases/7_2_16.php b/releases/7_2_16.php index 14e31f1f05..0f1ef07bb7 100644 --- a/releases/7_2_16.php +++ b/releases/7_2_16.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.16. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.16 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.16'); diff --git a/releases/7_2_17.php b/releases/7_2_17.php index 55470f66b7..f0a1713981 100644 --- a/releases/7_2_17.php +++ b/releases/7_2_17.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.17. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.17 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.17'); diff --git a/releases/7_2_18.php b/releases/7_2_18.php index 5d5597f048..0685d2fa97 100644 --- a/releases/7_2_18.php +++ b/releases/7_2_18.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.18. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.18 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.18'); diff --git a/releases/7_2_19.php b/releases/7_2_19.php index 9e1adfc9fc..050bbd5325 100644 --- a/releases/7_2_19.php +++ b/releases/7_2_19.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.19. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.19 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.19'); diff --git a/releases/7_2_2.php b/releases/7_2_2.php index e920338404..bede0ff959 100644 --- a/releases/7_2_2.php +++ b/releases/7_2_2.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.2.2. This is a bugfix release, with several bug fixes included.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.2 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.2'); diff --git a/releases/7_2_20.php b/releases/7_2_20.php index 4f7de6b904..026a11a1b5 100644 --- a/releases/7_2_20.php +++ b/releases/7_2_20.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.20. -This is a bugfix release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.20 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.20'); diff --git a/releases/7_2_21.php b/releases/7_2_21.php index 81a8d6dd55..27152c9e24 100644 --- a/releases/7_2_21.php +++ b/releases/7_2_21.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.21. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.21 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.21'); diff --git a/releases/7_2_22.php b/releases/7_2_22.php index 492e4dddd6..77531edc24 100644 --- a/releases/7_2_22.php +++ b/releases/7_2_22.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.2.22. This is a security release which also contains several bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.22 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.22'); diff --git a/releases/7_2_23.php b/releases/7_2_23.php index edc3f3d42d..3d2b64db4b 100644 --- a/releases/7_2_23.php +++ b/releases/7_2_23.php @@ -1,17 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.2.23. This is a bugfix release.
- -For source downloads of PHP 7.2.23 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.23'); diff --git a/releases/7_2_24.php b/releases/7_2_24.php index 24e155364e..3db825fbcb 100644 --- a/releases/7_2_24.php +++ b/releases/7_2_24.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.24. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.24 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.24'); diff --git a/releases/7_2_25.php b/releases/7_2_25.php index d867457a82..74a1744f7c 100644 --- a/releases/7_2_25.php +++ b/releases/7_2_25.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.2.25. This is a bug fix release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.25 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.25'); diff --git a/releases/7_2_26.php b/releases/7_2_26.php index 422047dfab..a23dbdadee 100644 --- a/releases/7_2_26.php +++ b/releases/7_2_26.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.26. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.26 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.26'); diff --git a/releases/7_2_27.php b/releases/7_2_27.php index 78d901f7bc..3add983adf 100644 --- a/releases/7_2_27.php +++ b/releases/7_2_27.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.27. -This is a security release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.27 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.27'); diff --git a/releases/7_2_28.php b/releases/7_2_28.php index d802d289f4..2aa462c5c5 100644 --- a/releases/7_2_28.php +++ b/releases/7_2_28.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.28. -This is a security release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.28 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.28'); diff --git a/releases/7_2_29.php b/releases/7_2_29.php index c591793764..e0197b4baa 100644 --- a/releases/7_2_29.php +++ b/releases/7_2_29.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.29. -This is a security release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.29 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.29'); diff --git a/releases/7_2_3.php b/releases/7_2_3.php index 3409274ab0..c31724e442 100644 --- a/releases/7_2_3.php +++ b/releases/7_2_3.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP -7.2.3. This is a security release with also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.3 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.3'); diff --git a/releases/7_2_30.php b/releases/7_2_30.php index 3dc7b05897..f8dd3a2638 100644 --- a/releases/7_2_30.php +++ b/releases/7_2_30.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.30. -This is a security release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.30 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.30'); diff --git a/releases/7_2_31.php b/releases/7_2_31.php index c8f2e8ee95..f282b227a2 100644 --- a/releases/7_2_31.php +++ b/releases/7_2_31.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.31. -This is a security release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.31 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.31'); diff --git a/releases/7_2_32.php b/releases/7_2_32.php index 3be0a8f4d1..804c4a5d93 100644 --- a/releases/7_2_32.php +++ b/releases/7_2_32.php @@ -1,30 +1,3 @@ -- The PHP development team announces the immediate availability of PHP 7.2.32. - This is a security release impacting the - official Windows builds of PHP. -
- -- For windows users running an official build, this release contains a - patched version of libcurl addressing - CVE-2020-8169. -
- -- For all other consumers of PHP, this release is functionally identical - to PHP 7.2.31 and no upgrade from that point release is necessary. -
- -- For source downloads of PHP 7.2.32 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.2.33. -This is a security release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.33 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.33'); diff --git a/releases/7_2_34.php b/releases/7_2_34.php index 9d759fb1c2..46dd3e91ca 100644 --- a/releases/7_2_34.php +++ b/releases/7_2_34.php @@ -1,16 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.34. This is a security release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.34 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.2.4. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.4 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.4'); diff --git a/releases/7_2_5.php b/releases/7_2_5.php index 126ec23a82..5cdd6b8bd4 100644 --- a/releases/7_2_5.php +++ b/releases/7_2_5.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.5. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.5 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.5'); diff --git a/releases/7_2_6.php b/releases/7_2_6.php index 3a5062c331..bd0b133448 100644 --- a/releases/7_2_6.php +++ b/releases/7_2_6.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.6. -This is a primarily a bugfix release which includes a memory corruption fix for EXIF.
- -PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.6 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.6'); diff --git a/releases/7_2_7.php b/releases/7_2_7.php index 650de04cca..390b530de5 100644 --- a/releases/7_2_7.php +++ b/releases/7_2_7.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.7. -This is a primarily a bugfix release which includes a segfault fix for opcache.
- -PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.7 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.7'); diff --git a/releases/7_2_8.php b/releases/7_2_8.php index 6321957566..3a9ae6f20e 100644 --- a/releases/7_2_8.php +++ b/releases/7_2_8.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.8. -This is a security release which also contains several minor bug fixes.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.8 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.8'); diff --git a/releases/7_2_9.php b/releases/7_2_9.php index d84cb3bb03..6bd8a0e3f5 100644 --- a/releases/7_2_9.php +++ b/releases/7_2_9.php @@ -1,17 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.2.9. -This is a bugfix release.
- -All PHP 7.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.2.9 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- +include __DIR__ . '/template.inc'; +handle_release_announcement('7.2.9'); diff --git a/releases/7_3_0.php b/releases/7_3_0.php index 341880d1f6..fe5f499bce 100644 --- a/releases/7_3_0.php +++ b/releases/7_3_0.php @@ -1,34 +1,3 @@ - -The PHP development team announces the immediate availability of PHP 7.3.0. - This release marks the third feature update to the PHP 7 series.
- -PHP 7.3.0 comes with numerous improvements and new features such as
- -For source downloads of PHP 7.3.0 please visit our downloads page - Windows binaries can be found on the PHP for Windows site. - The list of changes is recorded in the ChangeLog.
- -The migration guide is available in the PHP Manual. - Please consult it for the detailed list of new features and backward incompatible changes.
- -Many thanks to all the contributors and supporters!
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.0'); diff --git a/releases/7_3_1.php b/releases/7_3_1.php index bda9a534c2..2305051833 100644 --- a/releases/7_3_1.php +++ b/releases/7_3_1.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.1. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.1 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.1'); diff --git a/releases/7_3_10.php b/releases/7_3_10.php index fd4ba6fce6..fe47a7b6e0 100644 --- a/releases/7_3_10.php +++ b/releases/7_3_10.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.10. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.10 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.10'); diff --git a/releases/7_3_11.php b/releases/7_3_11.php index 8460d14e62..7840729141 100644 --- a/releases/7_3_11.php +++ b/releases/7_3_11.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.11. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.11 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.11'); diff --git a/releases/7_3_12.php b/releases/7_3_12.php index 4b4c5ebe3f..c67d75b094 100644 --- a/releases/7_3_12.php +++ b/releases/7_3_12.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.12. This is a bug fix release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.12 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.12'); diff --git a/releases/7_3_13.php b/releases/7_3_13.php index bef3efa123..c9a41b9e96 100644 --- a/releases/7_3_13.php +++ b/releases/7_3_13.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.13. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.13 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.13'); diff --git a/releases/7_3_14.php b/releases/7_3_14.php index 8b5cc6c509..cccb01b287 100644 --- a/releases/7_3_14.php +++ b/releases/7_3_14.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.14. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.14 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.14'); diff --git a/releases/7_3_15.php b/releases/7_3_15.php index 05ae2592e4..57af0a2eb1 100644 --- a/releases/7_3_15.php +++ b/releases/7_3_15.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.15. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.15 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.15'); diff --git a/releases/7_3_16.php b/releases/7_3_16.php index b440a2fe2a..122b0d3592 100644 --- a/releases/7_3_16.php +++ b/releases/7_3_16.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.16. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.16 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.16'); diff --git a/releases/7_3_17.php b/releases/7_3_17.php index ab1a507cbf..b1f970c3f7 100644 --- a/releases/7_3_17.php +++ b/releases/7_3_17.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.17 This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.17 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.17'); diff --git a/releases/7_3_18.php b/releases/7_3_18.php index 8140f69421..a43f5e826d 100644 --- a/releases/7_3_18.php +++ b/releases/7_3_18.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.18 This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.18 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.18'); diff --git a/releases/7_3_19.php b/releases/7_3_19.php index 5389c25fed..1254b8f92d 100644 --- a/releases/7_3_19.php +++ b/releases/7_3_19.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.19. This is a bug fix release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.19 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.19'); diff --git a/releases/7_3_2.php b/releases/7_3_2.php index f08fb78755..af5a921ad9 100644 --- a/releases/7_3_2.php +++ b/releases/7_3_2.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.2. This is a bugfix release, with several bug fixes included.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.2 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.2'); diff --git a/releases/7_3_20.php b/releases/7_3_20.php index 9bc7fe0e6d..d2914c862e 100644 --- a/releases/7_3_20.php +++ b/releases/7_3_20.php @@ -1,23 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.3.20. This is a security release impacting the -official Windows builds of PHP.
- -For windows users running an official build, this release contains a -patched version of libcurl addressing -CVE-2020-8169.
- -For all other consumers of PHP, this is a bug fix release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.20 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.21. This is a security release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.21 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.22. This is a bug fix release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.22 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.23. This is a security release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.23 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.24. This is a bug fix release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.24 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.25. This is a bug fix release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.25 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.26. This is a security release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.26 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.27. This is a security release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.27 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.28. This is a security release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.28 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.29. This is a security release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.29 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - -The PHP development team announces the immediate availability of PHP - 7.3.3. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.3 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.3'); diff --git a/releases/7_3_30.php b/releases/7_3_30.php index 9824a78b8b..e6be86e4da 100644 --- a/releases/7_3_30.php +++ b/releases/7_3_30.php @@ -1,16 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.3.30. This is a security release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.30 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.31. This is a security release fixing CVE-2021-21706.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.31 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.32. This is a security release.
- -All PHP 7.3 FPM users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.32 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.3.33. This is a security release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.33 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - -The PHP development team announces the immediate availability of PHP - 7.3.4. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.4 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.4'); diff --git a/releases/7_3_5.php b/releases/7_3_5.php index 86d6337a18..3894a396c2 100644 --- a/releases/7_3_5.php +++ b/releases/7_3_5.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.5. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.5 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.5'); diff --git a/releases/7_3_6.php b/releases/7_3_6.php index 7ba5632df4..0c41bc708c 100644 --- a/releases/7_3_6.php +++ b/releases/7_3_6.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.6. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.6 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.6'); diff --git a/releases/7_3_7.php b/releases/7_3_7.php index f69a4cea70..4797039a9c 100644 --- a/releases/7_3_7.php +++ b/releases/7_3_7.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.7. This is a bug fix release.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.7 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.7'); diff --git a/releases/7_3_8.php b/releases/7_3_8.php index c2813e803a..bd2097ce46 100644 --- a/releases/7_3_8.php +++ b/releases/7_3_8.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.8. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.8 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.8'); diff --git a/releases/7_3_9.php b/releases/7_3_9.php index 4f8af952af..8733e009db 100644 --- a/releases/7_3_9.php +++ b/releases/7_3_9.php @@ -1,19 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.3.9. This is a security release which also contains several bug fixes.
- -All PHP 7.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.3.9 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.3.9'); diff --git a/releases/7_4_0.php b/releases/7_4_0.php index fa7ef03022..501a0fa8a2 100644 --- a/releases/7_4_0.php +++ b/releases/7_4_0.php @@ -1,37 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.4.0. -This release marks the fourth feature update to the PHP 7 series.
- -PHP 7.4.0 comes with numerous improvements and new features such as:
- -For source downloads of PHP 7.4.0 please visit our downloads page -Windows binaries can be found on the PHP for Windows site. -The list of changes is recorded in the ChangeLog.
- -The migration guide is available in the PHP Manual. -Please consult it for the detailed list of new features and backward incompatible changes.
- -Many thanks to all the contributors and supporters!
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.4.0'); diff --git a/releases/7_4_1.php b/releases/7_4_1.php index 3c07495df6..7c2c6b730b 100644 --- a/releases/7_4_1.php +++ b/releases/7_4_1.php @@ -1,20 +1,3 @@ - -The PHP development team announces the immediate availability of PHP - 7.4.1. This is a security release which also contains several bug fixes.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.1 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.4.1'); diff --git a/releases/7_4_10.php b/releases/7_4_10.php index 1797dd20af..c1634efede 100644 --- a/releases/7_4_10.php +++ b/releases/7_4_10.php @@ -1,16 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.4.10. This is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.10 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.11. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.11 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.12. This is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.12 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.13. This is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.13 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.14. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.14 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.15. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.15 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.16. This is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.16 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.18. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.18 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP -7.4.19. This release reverts a bug related to PDO_pgsql that was -introduced in PHP 7.4.18.
- -PHP 7.4 users that use PDO_pgsql are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.19 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP - 7.4.2. This is a security release which also contains several bug fixes.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.2 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.4.2'); diff --git a/releases/7_4_20.php b/releases/7_4_20.php index eecabb9601..15eaf045ee 100644 --- a/releases/7_4_20.php +++ b/releases/7_4_20.php @@ -1,16 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.4.20. This is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.20 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.21. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.21 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.22. This is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.22 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.23. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.23 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.24. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.24 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.25. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.25 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.26. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.26 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.27. This is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.27 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.28. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.28 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.29. This is a security release for Windows users.
- -This is primarily a release for Windows users due to necessarily -upgrades to the OpenSSL and zlib dependencies in which security issues -have been found. All PHP 7.4 on Windows users are encouraged to upgrade -to this version.
- -For source downloads of PHP 7.4.29 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP - 7.4.3. This is a security release which also contains several bug fixes.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.3 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.4.3'); diff --git a/releases/7_4_30.php b/releases/7_4_30.php index edb9012276..341a148100 100644 --- a/releases/7_4_30.php +++ b/releases/7_4_30.php @@ -1,16 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.4.30. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.30 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.32. This is a security release.
- -This release addresses an infinite recursion with specially -constructed phar files, and prevents a clash with variable name mangling for -the __Host/__Secure HTTP headers.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.32 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.33.
- -This is security release that fixes an OOB read due to insufficient -input validation in imageloadfont(), and a buffer overflow in -hash_update() on long parameter.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.33 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP - 7.4.4. This is a security release which also contains several bug fixes.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.4 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- - - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.4.4'); diff --git a/releases/7_4_5.php b/releases/7_4_5.php index de4b53ba73..c6eaf7f2e5 100644 --- a/releases/7_4_5.php +++ b/releases/7_4_5.php @@ -1,18 +1,3 @@ -The PHP development team announces the immediate availability of PHP -7.4.5. This is a security release which also contains several bug fixes.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.5 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.4.5'); diff --git a/releases/7_4_6.php b/releases/7_4_6.php index a276594960..d917c283c6 100644 --- a/releases/7_4_6.php +++ b/releases/7_4_6.php @@ -1,18 +1,3 @@ -The PHP development team announces the immediate availability of PHP -7.4.6. This is a security release which also contains several bug fixes.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.6 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.4.6'); diff --git a/releases/7_4_7.php b/releases/7_4_7.php index c6577df801..c63afb01c6 100644 --- a/releases/7_4_7.php +++ b/releases/7_4_7.php @@ -1,18 +1,3 @@ -The PHP development team announces the immediate availability of PHP -7.4.7. This release is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.7 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- - +include __DIR__ . '/template.inc'; +handle_release_announcement('7.4.7'); diff --git a/releases/7_4_8.php b/releases/7_4_8.php index f703e6ab59..014c98079b 100644 --- a/releases/7_4_8.php +++ b/releases/7_4_8.php @@ -1,24 +1,3 @@ -The PHP development team announces the immediate availability of PHP 7.4.8. -This is a security release impacting the official Windows builds of PHP.
- -For windows users running an official build, this release contains a -patched version of libcurl addressing -CVE-2020-8169.
- -For all other consumers of PHP, this is a bug fix release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.8 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 7.4.9. This is a security release.
- -All PHP 7.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 7.4.9 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
-The PHP development team announces the immediate availability of PHP 8.0.0. This release marks the latest major release of the PHP language.
- -PHP 8.0 comes with numerous improvements and new features such as:
-Take a look at the PHP 8.0 Announcement Addendum for more information.
- -For source downloads of PHP 8.0.0 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The migration guide is available in the PHP Manual. -Please consult it for the detailed list of new features and backward incompatible changes.
- -Many thanks to all the contributors and supporters!
- - -The PHP development team announces the immediate availability of PHP 8.0.1. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.1 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.10. This is a security fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.10 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.11. This is a security release fixing CVE-2021-21706.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.11 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.12. This is a security fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.12 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.13. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.13 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.14. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.14 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.15. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.15 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.16. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.16 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.17. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.17 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.18. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.18 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.19. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.19 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.2. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.2 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.20. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.20 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.21. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.21 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.22. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.22 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.23. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.23 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.24. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.24 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.25. This is a security fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.25 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.26. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.26 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -Please note, this is the last bug-fix release for the 8.0.x series. -Security fix support will continue until 26 Nov 2023. -For more information, please check our -Supported Versions page.
- -The PHP development team announces the immediate availability of PHP 8.0.27. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.27 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.28. This is a security release -that addresses CVE-2023-0567, CVE-2023-0568, and CVE-2023-0662
- -All PHP 8.0 users are advised to upgrade to this version.
- -For source downloads of PHP 8.0.28 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.29. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.29 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.3. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.3 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.30. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.30 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.5. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.5 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP -8.0.6. This release reverts a bug related to PDO_pgsql that was -introduced in PHP 8.0.5.
- -PHP 8.0 users that use PDO_pgsql are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.6 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.7. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.7 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.8. This is a security release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.8 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.0.9. This is a bug fix release.
- -All PHP 8.0 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.0.9 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.0. This release marks the latest minor release of the PHP language.
- -PHP 8.1 comes with numerous improvements and new features such as:
-For source downloads of PHP 8.1.0 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The migration guide is available in the PHP Manual. -Please consult it for the detailed list of new features and backward incompatible changes.
- -Many thanks to all the contributors and supporters!
- - -The PHP development team announces the immediate availability of PHP 8.1.1. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.1 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.10. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.10 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.11. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.11 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.12. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.12 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.13. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.13 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.14. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.14 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.15. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.15 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.16. This is a security release that addresses CVE-2023-0567, CVE-2023-0568, and CVE-2023-0662.
- -All PHP 8.1 users are advised to upgrade to this version.
- -For source downloads of PHP 8.1.16 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.17. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.17 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.18. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.18 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.19. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.19 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.2. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.2 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.20. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.20 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.21. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.21 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.22. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.22 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.23. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.23 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.24. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.24 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.25. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.25 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.26. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.26 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.27. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.27 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.28. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.28 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.29. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.29 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.3. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.3 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.30. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.30 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.31. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.31 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.32. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.32 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.33. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.33 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.34. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.34 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.4. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.4 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.5. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.5 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.6. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.6 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.7. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.7 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.8. This is a security release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.8 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.1.9. This is a bug fix release.
- -All PHP 8.1 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.1.9 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.0. This release marks the latest minor release of the PHP language.
- -PHP 8.2 comes with numerous improvements and new features such as:
- -- For source downloads of PHP 8.2.0 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
- -- The migration guide is available in the PHP Manual. - Please consult it for the detailed list of new features and backward incompatible changes. -
- -Kudos to all the contributors and supporters!
- - -The PHP development team announces the immediate availability of PHP 8.2.1. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.1 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.10. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.10 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.11. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.11 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.12. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.12 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.13. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.13 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.14. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.14 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.15. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.15 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.16. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.16 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.17. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.17 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.18. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.18 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.19. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.19 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.2. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.2 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.20. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.20 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.21. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.21 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.22. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.22 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.23. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.23 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.24. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.24 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.25. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.25 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.26. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.26 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.27. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.27 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -Please note, this is the last bug-fix release for the 8.2.x series. Security fix support will continue until 31 Dec 2026. - For more information, please check our Supported Versions page. -
- -The PHP development team announces the immediate availability of PHP 8.2.28. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.28 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.29. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.29 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.3. This is a security release -that addresses CVE-2023-0567, CVE-2023-0568, and CVE-2023-0662.
- -All PHP 8.2 users are advised to upgrade to this version.
- -For source downloads of PHP 8.2.3 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.30. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.30 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.31. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.31 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.4. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.4 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.5. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.5 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.6. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.6 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.7. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.7 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.8. This is a bug fix release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.2.8 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.2.9. This is a security release.
- -All PHP 8.2 users are encouraged to upgrade to this version.
- -Windows source and binaries are not synchronized and do not contain a fix for GH-11854.
- -For source downloads of PHP 8.2.9 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.0. This release marks -the latest minor release of the PHP language.
- -PHP 8.3 comes with numerous improvements and new features such as:
- -For source downloads of PHP 8.3.0 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.1. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.1 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.10. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.10 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.11. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.11 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.12. This is a security release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.12 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.13. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.13 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.14. This is a security release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.14 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.15. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.15 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.16. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.16 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.17. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.17 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.19. This is a security release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.19 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.2. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.2 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.20. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.20 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.21. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.21 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.22. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.22 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.23. This is a security release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.23 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.24. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.24 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.25. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.25 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.26. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.26 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.27. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.27 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.28. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.28 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.29. This is a security release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.29 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.3. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.3 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.30. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.30 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.31. This is a security release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.31 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.4. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.4 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.6. This is a security release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.6 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.7. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.7 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.8. This is a security release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.8 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.3.9. This is a bug fix release.
- -All PHP 8.3 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.3.9 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.1. This release marks -the latest minor release of the PHP language.
- -PHP 8.4 comes with numerous improvements and new features such as:
- -For source downloads of PHP 8.4.1 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.10. This is a security release.
- -Version 8.4.9 was skipped because it was tagged without including security patches.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.10 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.11. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.11 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.12. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.12 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.13. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.13 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.14. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.14 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.15. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.15 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.16. This is a security release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.16 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.17. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.17 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.18. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.18 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.19. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.19 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.2. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.2 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.20. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.20 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.21. This is a security release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.21 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.3. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.3 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.4. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.4 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.5. This is a security release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.5 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.6. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.6 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.7. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.7 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.4.8. This is a bug fix release.
- -All PHP 8.4 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.4.8 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.5.0. This release marks the latest minor release of the PHP language.
- -PHP 8.5 comes with numerous improvements and new features such as:
-- For source downloads of PHP 8.5.0 please visit our downloads page, - Windows source and binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -
-- The migration guide is available in the PHP Manual. - Please consult it for the detailed list of new features and backward incompatible changes. -
-Kudos to all the contributors and supporters!
- - -The PHP development team announces the immediate availability of PHP 8.5.1. This is a security release.
- -All PHP 8.5 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.5.1 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.5.2. This is a bug fix release.
- -All PHP 8.5 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.5.2 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.5.3. This is a bug fix release.
- -All PHP 8.5 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.5.3 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.5.4. This is a bug fix release.
- -All PHP 8.5 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.5.4 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.5.5. This is a bug fix release.
- -All PHP 8.5 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.5.5 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
- -The PHP development team announces the immediate availability of PHP 8.5.6. This is a security release.
- -All PHP 8.5 users are encouraged to upgrade to this version.
- -For source downloads of PHP 8.5.6 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -
-parent; + $latestPointRelease = $featureRelease->latestRelease; + + ob_start(); + ?> ++ The latest release of PHP = safe($featureRelease->label) ?> is PHP + + = safe($latestPointRelease->label) ?> + . + + It is recommended to upgrade to the latest release. +
+
+
+
+
+