diff --git a/.docker/dev/Dockerfile b/.docker/dev/Dockerfile new file mode 100644 index 0000000000..af22cfceba --- /dev/null +++ b/.docker/dev/Dockerfile @@ -0,0 +1,46 @@ +# 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 + +# +# install additional development tooling +# +RUN apt update \ + && apt-get install -y --no-install-recommends git unzip \ + && rm -rf /var/lib/apt/lists/* + +# +# Composer is required for dev dependencies +# +RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ + && php -r "if (hash_file('sha384', 'composer-setup.php') === 'c8b085408188070d5f52bcfe4ecfbee5f727afa458b2573b8eaaf77b3419b0bf2768dc67c86944da1544f06fa544fd47') { echo 'Installer verified'.PHP_EOL; } else { echo 'Installer corrupt'.PHP_EOL; unlink('composer-setup.php'); exit(1); }" \ + && php composer-setup.php \ + && php -r "unlink('composer-setup.php');" \ + && mv composer.phar /usr/local/bin/composer + +# +# node.js - used for socket.dev and other front-end tooling +# +RUN apt-get update && apt-get install -y curl gnupg ca-certificates \ + && mkdir -p /etc/apt/keyrings \ + && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ + && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \ + && apt-get update && apt-get install -y nodejs \ + && rm -rf /var/lib/apt/lists/* + +# +# Global dependencies and tools brought in via npm +# +RUN npm install -g socket + +WORKDIR /app diff --git a/.docker/prod/Dockerfile b/.docker/prod/Dockerfile new file mode 100644 index 0000000000..67d1bae587 --- /dev/null +++ b/.docker/prod/Dockerfile @@ -0,0 +1,13 @@ +# "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.4-cli + +# All of the files from the source location are copied into +# the /app folder +RUN mkdir /app +WORKDIR /app +COPY . /app diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000..cc2efccdc9 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +# .dockerignore +.git +.gitmodules +.gitattributes +.idea +build-deploy.sh +/var/composer diff --git a/.gitignore b/.gitignore index 5fa5cd36ef..1f0110f0b9 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,6 @@ node_modules/ /playwright-report/ /blob-report/ /playwright/.cache/ +/releases/[0-9]*_[0-9]*_[0-9]*.php +/releases/[0-9]*_[0-9]*_[0-9]*_fr.php +/releases/[0-9]*_[0-9]*_[0-9]*_win32.php diff --git a/.router.php b/.router.php index c204ce635e..f705e8d689 100644 --- a/.router.php +++ b/.router.php @@ -4,12 +4,38 @@ $filename = $_SERVER["PATH_INFO"] ?? $_SERVER["SCRIPT_NAME"]; -if (!file_exists($_SERVER["DOCUMENT_ROOT"] . $filename)) { +$wantedPath = realpath($_SERVER["DOCUMENT_ROOT"] . $filename); +if ($wantedPath === false || !str_starts_with($wantedPath, __DIR__ . '/')) { require_once __DIR__ . '/error.php'; return; } +/** + * Unfortunately, we do not yet have a dedicated public folder, meaning the entire directory + * structure is exposed. + * + * These rules try and lock it down some. + */ +foreach ([ + '.git/*', + '.docker/*', + '.devcontainer/*', + '.github/*', + 'backend/*', + 'bin/*', + 'data/*', + 'src/*', + 'tests/*', + 'var/*', + '*.inc', // do not allow any .inc files +] as $testRule) { + if (fnmatch(__DIR__ . '/' . $testRule, $wantedPath, FNM_CASEFOLD)) { + header('HTTP/1.0 403 Access Denied'); + die('Access Denied'); + } +} + /* 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/assets/compiled/.gitignore b/assets/compiled/.gitignore new file mode 100644 index 0000000000..ebdb620863 --- /dev/null +++ b/assets/compiled/.gitignore @@ -0,0 +1,3 @@ +# Everything in this folder is a product of the build step and should not be modified +!.gitignore +* diff --git a/bin/build.php b/bin/build.php new file mode 100644 index 0000000000..4b40b38172 --- /dev/null +++ b/bin/build.php @@ -0,0 +1,42 @@ +getMessage()); + exit(1); + } catch (Throwable $e) { + fwrite(STDERR, 'Unhandled exception building ' . $classId . ': ' . $e->getMessage() . "\n"); + fwrite(STDERR, $e->getTraceAsString() . "\n"); + die($e); + exit(1); + } +} diff --git a/bin/bumpRelease b/bin/bumpRelease deleted file mode 100755 index f03c2c6da9..0000000000 --- a/bin/bumpRelease +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env php - "/releases/" . str_replace(".", "_", $version) . ".php"); -} - -$OLDRELEASES[$major] = array_merge( - array($version => $info), - $OLDRELEASES[$major] ?? [] -); - -file_put_contents(__DIR__ . "/../include/releases.inc", [ - "setSummary($summary); + } + return $entry; } diff --git a/bin/createReleaseEntry b/bin/createReleaseEntry index a9dcf1e658..592db95641 100755 --- a/bin/createReleaseEntry +++ b/bin/createReleaseEntry @@ -50,24 +50,6 @@ $entry = (new Entry) $entry->save()->updateArchiveXML(); $addedFiles = [Entry::ARCHIVE_ENTRIES_REL . $entry->getId() . '.xml']; -// Mint the releases/x_y_z.php archive. -const RELEASES_REL = 'releases/'; -const RELEASES_ABS = __DIR__ . '/../' . RELEASES_REL; -if (isset($opts['r'])) { - $release = strtr($version, '.', '_') . '.php'; - file_put_contents(RELEASES_ABS . $release, " -
All PHP {{version}} users are encouraged to upgrade to this version.
+ +For source downloads, change lists and more information, please visit the release page.
diff --git a/bin/rm/create-release.php b/bin/rm/create-release.php new file mode 100644 index 0000000000..455a68793d --- /dev/null +++ b/bin/rm/create-release.php @@ -0,0 +1,230 @@ +getMessage()); + } + } else { + $manifestUpdated = true; + $manifestArray = [ + 'version' => $releaseId, + 'date' => date('Y-m-d'), + 'tags' => [], + 'source' => array_map(fn(string $fmt) => [ + 'filename' => 'php-' . $releaseId . '.tar.' . $fmt, + 'name' => 'PHP ' . $releaseId . ' (tar.' . $fmt . ')', + 'sha256' => '', + ], $expectedSourceExtensions), + ]; + } + + $sourcesPath = $opts['sources'] ?? null; + if (is_string($sourcesPath)) { + if (!file_exists($sourcesPath) || !is_file($sourcesPath)) { + throw new ValueError('Sources file "' . $sourcesPath . '" is not readable'); + } + + $fileName = null; + $hashPrefix = 'sha256 hash:'; + $lines = explode("\n", str_replace("\r\n", "\n", FS::readContents($sourcesPath))); + $locatedFileHashes = []; + + $pattern = '/^php-' . preg_quote($releaseId, '/') . '\.tar\.(bz2|gz|xz)$/i'; + + foreach ($lines as $ldx => $line) { + $line = trim($line); + if (!preg_match($pattern, $line, $matches)) { + continue; + } + + $formatType = $matches[1]; + $fileName = $line; + $isHash = fn(string $hash) => (bool)preg_match('/^[a-f0-9]{64}$/i', $hash); + $cursor = $ldx; + + $nextLine = trim($lines[++$cursor] ?? ''); + if (!str_starts_with(strtolower($nextLine), $hashPrefix)) { + throw new ValueError( + 'Expected line beginning with prefix "' . $hashPrefix . '" after "' . $nextLine . "\"\n" + ); + } + + /* the hash is on the same line e.g. + * SHA256 hash: a0fa6673ba4b0c8335fbab08afb7c2e13a3791f2b5a0928c7ad3d7ad872edf26 */ + $sameLineHash = trim(substr($nextLine, strlen($hashPrefix))); + if ($isHash($sameLineHash)) { + $locatedFileHashes[$formatType] = $sameLineHash; + continue; + } + + /* The signature may also be on the line after */ + $nextLine = trim($lines[++$cursor] ?? ''); + if (!$isHash($nextLine)) { + throw new ValueError('Unable to extract sha256 hash for ' . $line . ' got ' . $nextLine); + } + + $locatedFileHashes[$formatType] = $nextLine; + } + + $generatedSources = []; + foreach ($locatedFileHashes as $formatType => $hash) { + $generatedSources[] = [ + 'filename' => 'php-' . $releaseId . '.tar.' . $formatType, + 'name' => 'PHP ' . $releaseId . ' (tar.' . $formatType . ')', + 'sha256' => $hash, + ]; + } + + $manifestArray['source'] = $generatedSources; + $manifestUpdated = true; + } + + if (array_key_exists('tags', $opts) && is_string($opts['tags'])) { + $tags = array_filter(array_map(trim(...), explode(',', (string)$opts['tags']))); + + $manifestArray['tags'] = $tags; + $manifestUpdated = true; + } + + if (array_key_exists('date', $opts) && is_string($opts['date'])) { + $updateDate = $opts['date']; + if ($updateDate === 'today') { + $updateDate = date('Y-m-d'); + } else { + try { + $updateDate = new DateTimeImmutable($updateDate)->format('Y-m-d'); + } catch (DateMalformedStringException $e) { + throw new ValueError('Unable to update date. Input is malformed; ' . $e->getMessage()); + } + } + + echo "Updating manifest date to '$updateDate'\n"; + $manifestArray['date'] = $updateDate; + $manifestUpdated = true; + } + + /* + * If anything has changed the manifest, this is our time to write it back to + * disk. We don't ask for overwrite permission here as it's provided for by + * item-specific flags + */ + if ($manifestUpdated) { + if (FS::writeContentsIfChanged($jsonPath, json_encode($manifestArray, JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR))) { + echo "Writing manifest back to $jsonPath\n"; + } + } + + /* + * The announcement template always gets created here, with the updated content from + * the payload. + * + * It will be created if it doesn't exist, but can be force upgraded using the --force flag + */ + $announcementPath = $releaseDir . '/announcement.html'; + $templateTokens = [ + '{{version}}' => $versionId, + '{{release}}' => $releaseId, + '{{tags}}' => implode(', ', $manifestArray['tags']) ?: 'bugfix', + '{{release_url}}' => 'https://www.php.net/releases/' . str_replace('.', '_', $releaseId) . '.php', + ]; + + $announcementHtml = str_replace( + array_keys($templateTokens), + array_values($templateTokens), + FS::readContents(__DIR__ . '/announcement-template.html') + ); + + $force = array_key_exists('update-announcement', $opts); + if (!file_exists($announcementPath) || $force) { + echo "Writing announcements to $announcementPath\n"; + FS::writeContentsIfChanged($announcementPath, $announcementHtml); + } + + /* + * Everything written back at this point, so we're in a position to check + */ + if (!isset($opts['skip-checks'])) { + $errors = []; + if ($manifestArray['version'] !== $releaseId) { + $errors[] = "Manifest version does not match expected release."; + } + + if (empty($manifestArray['source'])) { + $errors[] = "Manifest contains no source files."; + } + + foreach (($manifestArray['source'] ?? []) as $sIdx => $sourceData) { + foreach (['filename', 'name', 'sha256'] as $wantedKey) { + if (empty($sourceData[$wantedKey])) { + $errors[] = "Manifest source[$sIdx] does not provide value for '$wantedKey'."; + } + } + } + + if (!is_file($targetNewsPath)) { + $errors[] = "There is no news.txt file present in the release directory."; + } + + if ($errors) { + echo "The following errors were detected:\n"; + foreach ($errors as $error) { + echo "- $error\n"; + } + + exit(1); + } + } +} catch (ValueError $e) { + fwrite(STDERR, $e->getMessage() . "\n"); + exit(1); +} diff --git a/bin/rm/create-release.txt b/bin/rm/create-release.txt new file mode 100644 index 0000000000..c79800a851 --- /dev/null +++ b/bin/rm/create-release.txt @@ -0,0 +1,54 @@ +Create release data CLI for php.net + +Usage: +-------------------------------------------------------- +php create-release.php [--flags] x.y.z + +The same command is used to create, as well as modify the files, if needed. + +--news=/path/to/file Optional (for updates) + The path to the php-src NEWS file for this release. + It MUST contain a section matching this release label. + +--sources=/path/to/sources Optional (for updates) + The path to the file containing the file names, sha256 + hashes and pgp signatures. + +--tags=security Optional (for updates) + Specify a comma separated list of tags. If no tags are + given this will be considered a bugfix release. + +--date=today|date Optional (for updates) + Overrides the date in the release manifest. + Specify 'today' to detect automatically, or provide a + date manually. + +--update-announcement Allows overwriting the existing announcement.html file + with a newly generated template created from the manifest. + Protects against accidental overwriting if the file was + changed. + +--skip-checks Do not perform the normal integrity checks on the data after + changes have been applied. Exits with 0 even if errors detected. + + +First Setup: +-------------------------------------------------------- + php create-release.php --news=/path/to/news --sources=/path/to/sources 1.2.3 + + +Sources File Format: +-------------------------------------------------------- + php-x.y.z.tar.bz2 + SHA256 hash: 800b7b6ed50b73c8ee7844ee5f2f7cc612faa7875a0aa7c4529e8ed5866a5030 + -----BEGIN PGP SIGNATURE----- + ... + -----END PGP SIGNATURE----- + + php-x.y.z.tar.gz + SHA256 hash: e587dc95fb7f62730299fa7b36b6e4f91e6708aaefa2fff68a0098d320c16386 + -----BEGIN PGP SIGNATURE----- + ... + -----END PGP SIGNATURE----- + + ... etc ... diff --git a/bin/rm/examples/news.txt b/bin/rm/examples/news.txt new file mode 100644 index 0000000000..d54023d1b3 --- /dev/null +++ b/bin/rm/examples/news.txt @@ -0,0 +1,20 @@ +PHP NEWS +||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? ????, PHP 1.2.3 + +- CLI: + . Fixed bug GH-21901 (Stale getopt() optional value). (onthebed) + +- Date: + . Fixed bug GH-18422 (int overflow in php_date_llabs). (iliaal) + +07 May 2026, PHP 1.2.2 + +- Core: + . Fixed bug GH-19983 (GC assertion failure with fibers, generators and + destructors). (iliaal) + . Fixed ZEND_API mismatch on zend_ce_closure forward decl for Windows+Clang. + (henderkes) + . Fixed bug GH-21504 (Incorrect RC-handling for ZEND_EXT_STMT op1). (ilutov) + . Fixed bug GH-21478 (Forward property operations to real instance for + initialized lazy proxies). (iliaal) diff --git a/bin/rm/examples/sources.txt b/bin/rm/examples/sources.txt new file mode 100644 index 0000000000..9c7ec1677e --- /dev/null +++ b/bin/rm/examples/sources.txt @@ -0,0 +1,35 @@ +The PHP development team announces the immediate availability of PHP 1.2.3. This is a security +release. + +All PHP 1.2 users are encouraged to upgrade to this version. + +Release Announcement:
+ 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: +
\ No newline at end of file diff --git a/data/releases/4.1/4.1.0/release.json b/data/releases/4.1/4.1.0/release.json new file mode 100644 index 0000000000..ea7cf260de --- /dev/null +++ b/data/releases/4.1/4.1.0/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.1.0", + "date": "10 Dec 2001", + "tags": [], + "source": [ + { + "filename": "php-4.1.0.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.1/4.1.1/announcement.html b/data/releases/4.1/4.1.1/announcement.html new file mode 100644 index 0000000000..6adaaf6e0d --- /dev/null +++ b/data/releases/4.1/4.1.1/announcement.html @@ -0,0 +1,55 @@ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.2/4.2.0/release.json b/data/releases/4.2/4.2.0/release.json new file mode 100644 index 0000000000..228e9825ad --- /dev/null +++ b/data/releases/4.2/4.2.0/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.2.0", + "date": "22 April 2002", + "tags": [], + "source": [ + { + "filename": "php-4.2.0.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.2/4.2.1/announcement.html b/data/releases/4.2/4.2.1/announcement.html new file mode 100644 index 0000000000..3681d32046 --- /dev/null +++ b/data/releases/4.2/4.2.1/announcement.html @@ -0,0 +1,57 @@ ++ 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: +
+ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.2/4.2.2/release.json b/data/releases/4.2/4.2.2/release.json new file mode 100644 index 0000000000..8798395ca9 --- /dev/null +++ b/data/releases/4.2/4.2.2/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.2.2", + "date": "22 July 2002", + "tags": [], + "source": [ + { + "filename": "php-4.2.2.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.2/4.2.3/release.json b/data/releases/4.2/4.2.3/release.json new file mode 100644 index 0000000000..3eca5ff48e --- /dev/null +++ b/data/releases/4.2/4.2.3/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.2.3", + "date": "6 September 2002", + "tags": [], + "source": [ + { + "filename": "php-4.2.3.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.0/announcement.html b/data/releases/4.3/4.3.0/announcement.html new file mode 100644 index 0000000000..6f86134802 --- /dev/null +++ b/data/releases/4.3/4.3.0/announcement.html @@ -0,0 +1,92 @@ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.0/release.json b/data/releases/4.3/4.3.0/release.json new file mode 100644 index 0000000000..87a9866e81 --- /dev/null +++ b/data/releases/4.3/4.3.0/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.3.0", + "date": "27 December 2002", + "tags": [], + "source": [ + { + "filename": "php-4.3.0.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.1/announcement.html b/data/releases/4.3/4.3.1/announcement.html new file mode 100644 index 0000000000..bb70d9e329 --- /dev/null +++ b/data/releases/4.3/4.3.1/announcement.html @@ -0,0 +1,68 @@ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.1/release.json b/data/releases/4.3/4.3.1/release.json new file mode 100644 index 0000000000..cc06b0ea1e --- /dev/null +++ b/data/releases/4.3/4.3.1/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.3.1", + "date": "17 February 2003", + "tags": [], + "source": [ + { + "filename": "php-4.3.1.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.10/announcement.html b/data/releases/4.3/4.3.10/announcement.html new file mode 100644 index 0000000000..d970955a53 --- /dev/null +++ b/data/releases/4.3/4.3.10/announcement.html @@ -0,0 +1,47 @@ ++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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.10/release.json b/data/releases/4.3/4.3.10/release.json new file mode 100644 index 0000000000..b206ea728e --- /dev/null +++ b/data/releases/4.3/4.3.10/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.3.10", + "date": "15 Dec 2004", + "tags": [], + "source": [ + { + "filename": "php-4.3.10.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.3.10.tar.bz2", + "name": "Source (tar.bz2)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.11/announcement.html b/data/releases/4.3/4.3.11/announcement.html new file mode 100644 index 0000000000..e3fb1dc2d4 --- /dev/null +++ b/data/releases/4.3/4.3.11/announcement.html @@ -0,0 +1,31 @@ ++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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.11/release.json b/data/releases/4.3/4.3.11/release.json new file mode 100644 index 0000000000..3c919c77fa --- /dev/null +++ b/data/releases/4.3/4.3.11/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.3.11", + "date": "31 Mar 2005", + "tags": [], + "source": [ + { + "filename": "php-4.3.11.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.3.11.tar.bz2", + "name": "Source (tar.bz2)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.2/announcement.html b/data/releases/4.3/4.3.2/announcement.html new file mode 100644 index 0000000000..57c57c121b --- /dev/null +++ b/data/releases/4.3/4.3.2/announcement.html @@ -0,0 +1,42 @@ +
+ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.2/release.json b/data/releases/4.3/4.3.2/release.json new file mode 100644 index 0000000000..e0e91f5358 --- /dev/null +++ b/data/releases/4.3/4.3.2/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.3.2", + "date": "29 May 2003", + "tags": [], + "source": [ + { + "filename": "php-4.3.2.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.3.2.tar.bz2", + "name": "Source (tar.bz2)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.3/announcement.html b/data/releases/4.3/4.3.3/announcement.html new file mode 100644 index 0000000000..14af036cf1 --- /dev/null +++ b/data/releases/4.3/4.3.3/announcement.html @@ -0,0 +1,39 @@ +
+ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.3/release.json b/data/releases/4.3/4.3.3/release.json new file mode 100644 index 0000000000..a61e22de6d --- /dev/null +++ b/data/releases/4.3/4.3.3/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.3.3", + "date": "25 August 2003", + "tags": [], + "source": [ + { + "filename": "php-4.3.3.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.3.3.tar.bz2", + "name": "Source (tar.bz2)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.4/announcement.html b/data/releases/4.3/4.3.4/announcement.html new file mode 100644 index 0000000000..e2a532c5eb --- /dev/null +++ b/data/releases/4.3/4.3.4/announcement.html @@ -0,0 +1,31 @@ +
+ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.4/release.json b/data/releases/4.3/4.3.4/release.json new file mode 100644 index 0000000000..abed4de226 --- /dev/null +++ b/data/releases/4.3/4.3.4/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.3.4", + "date": "03 November 2003", + "tags": [], + "source": [ + { + "filename": "php-4.3.4.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.5/announcement.html b/data/releases/4.3/4.3.5/announcement.html new file mode 100644 index 0000000000..0b99421742 --- /dev/null +++ b/data/releases/4.3/4.3.5/announcement.html @@ -0,0 +1,38 @@ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.5/release.json b/data/releases/4.3/4.3.5/release.json new file mode 100644 index 0000000000..05036c0cf3 --- /dev/null +++ b/data/releases/4.3/4.3.5/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.3.5", + "date": "26 March 2004", + "tags": [], + "source": [ + { + "filename": "php-4.3.5.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.6/announcement.html b/data/releases/4.3/4.3.6/announcement.html new file mode 100644 index 0000000000..4115ea89e7 --- /dev/null +++ b/data/releases/4.3/4.3.6/announcement.html @@ -0,0 +1,35 @@ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.6/release.json b/data/releases/4.3/4.3.6/release.json new file mode 100644 index 0000000000..cf4d9ccd99 --- /dev/null +++ b/data/releases/4.3/4.3.6/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.3.6", + "date": "15 April 2004", + "tags": [], + "source": [ + { + "filename": "php-4.3.6.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.7/announcement.html b/data/releases/4.3/4.3.7/announcement.html new file mode 100644 index 0000000000..a702c0ee30 --- /dev/null +++ b/data/releases/4.3/4.3.7/announcement.html @@ -0,0 +1,34 @@ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.7/release.json b/data/releases/4.3/4.3.7/release.json new file mode 100644 index 0000000000..297cf645ce --- /dev/null +++ b/data/releases/4.3/4.3.7/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.3.7", + "date": "03 June 2004", + "tags": [], + "source": [ + { + "filename": "php-4.3.7.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.8/announcement.html b/data/releases/4.3/4.3.8/announcement.html new file mode 100644 index 0000000000..465c1bb55d --- /dev/null +++ b/data/releases/4.3/4.3.8/announcement.html @@ -0,0 +1,22 @@ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.8/release.json b/data/releases/4.3/4.3.8/release.json new file mode 100644 index 0000000000..ca44cc912d --- /dev/null +++ b/data/releases/4.3/4.3.8/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.3.8", + "date": "13 July 2004", + "tags": [], + "source": [ + { + "filename": "php-4.3.8.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.3/4.3.9/announcement.html b/data/releases/4.3/4.3.9/announcement.html new file mode 100644 index 0000000000..1f8c492ba6 --- /dev/null +++ b/data/releases/4.3/4.3.9/announcement.html @@ -0,0 +1,38 @@ ++ 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. +
\ No newline at end of file diff --git a/data/releases/4.3/4.3.9/release.json b/data/releases/4.3/4.3.9/release.json new file mode 100644 index 0000000000..b346be26b2 --- /dev/null +++ b/data/releases/4.3/4.3.9/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.3.9", + "date": "22 Sep 2004", + "tags": [], + "source": [ + { + "filename": "php-4.3.9.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.3.9.tar.bz2", + "name": "Source (tar.bz2)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.0/announcement.html b/data/releases/4.4/4.4.0/announcement.html new file mode 100644 index 0000000000..f420e29799 --- /dev/null +++ b/data/releases/4.4/4.4.0/announcement.html @@ -0,0 +1,39 @@ ++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. +
\ No newline at end of file diff --git a/data/releases/4.4/4.4.0/release.json b/data/releases/4.4/4.4.0/release.json new file mode 100644 index 0000000000..7731f4ca59 --- /dev/null +++ b/data/releases/4.4/4.4.0/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.4.0", + "date": "11 Jul 2005", + "tags": [], + "source": [ + { + "filename": "php-4.4.0.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.4.0.tar.bz2", + "name": "Source (tar.bz2)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.1/announcement.html b/data/releases/4.4/4.4.1/announcement.html new file mode 100644 index 0000000000..8243e75633 --- /dev/null +++ b/data/releases/4.4/4.4.1/announcement.html @@ -0,0 +1,43 @@ ++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. +
\ No newline at end of file diff --git a/data/releases/4.4/4.4.1/release.json b/data/releases/4.4/4.4.1/release.json new file mode 100644 index 0000000000..517d0161d1 --- /dev/null +++ b/data/releases/4.4/4.4.1/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.4.1", + "date": "31 Oct 2005", + "tags": [], + "source": [ + { + "filename": "php-4.4.1.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.4.1.tar.bz2", + "name": "Source (tar.bz2)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.2/announcement.html b/data/releases/4.4/4.4.2/announcement.html new file mode 100644 index 0000000000..e83391ef20 --- /dev/null +++ b/data/releases/4.4/4.4.2/announcement.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/4.4.2/release.json b/data/releases/4.4/4.4.2/release.json new file mode 100644 index 0000000000..e5ccb1b035 --- /dev/null +++ b/data/releases/4.4/4.4.2/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.4.2", + "date": "13 Jan 2006", + "tags": [], + "source": [ + { + "filename": "php-4.4.2.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.4.2.tar.bz2", + "name": "Source (tar.bz2)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.3/announcement.html b/data/releases/4.4/4.4.3/announcement.html new file mode 100644 index 0000000000..72910ce1e3 --- /dev/null +++ b/data/releases/4.4/4.4.3/announcement.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/4.4.3/release.json b/data/releases/4.4/4.4.3/release.json new file mode 100644 index 0000000000..47992e7e83 --- /dev/null +++ b/data/releases/4.4/4.4.3/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.4.3", + "date": "03 Aug 2006", + "tags": [], + "source": [ + { + "filename": "php-4.4.3.tar.bz2", + "name": "Source (tar.bz2)" + }, + { + "filename": "php-4.4.3.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.4/announcement.html b/data/releases/4.4/4.4.4/announcement.html new file mode 100644 index 0000000000..cad0503086 --- /dev/null +++ b/data/releases/4.4/4.4.4/announcement.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/4.4.4/release.json b/data/releases/4.4/4.4.4/release.json new file mode 100644 index 0000000000..f48bfb116c --- /dev/null +++ b/data/releases/4.4/4.4.4/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.4.4", + "date": "17 Aug 2006", + "tags": [], + "source": [ + { + "filename": "php-4.4.4.tar.bz2", + "name": "Source (tar.bz2)" + }, + { + "filename": "php-4.4.4.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.5/announcement.html b/data/releases/4.4/4.4.5/announcement.html new file mode 100644 index 0000000000..321c40b23c --- /dev/null +++ b/data/releases/4.4/4.4.5/announcement.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/4.4.5/release.json b/data/releases/4.4/4.4.5/release.json new file mode 100644 index 0000000000..a7c9f7240b --- /dev/null +++ b/data/releases/4.4/4.4.5/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.4.5", + "date": "14 Feb 2007", + "tags": [], + "source": [ + { + "filename": "php-4.4.5.tar.bz2", + "name": "Source (tar.bz2)" + }, + { + "filename": "php-4.4.5.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.6/announcement.html b/data/releases/4.4/4.4.6/announcement.html new file mode 100644 index 0000000000..afae243164 --- /dev/null +++ b/data/releases/4.4/4.4.6/announcement.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/4.4.6/release.json b/data/releases/4.4/4.4.6/release.json new file mode 100644 index 0000000000..1728ea5817 --- /dev/null +++ b/data/releases/4.4/4.4.6/release.json @@ -0,0 +1,17 @@ +{ + "version": "4.4.6", + "date": "01 Mar 2007", + "tags": [], + "source": [ + { + "filename": "php-4.4.6.tar.bz2", + "name": "Source (tar.bz2)", + "md5": "5db283824310c87efb18c76b4735c4bd" + }, + { + "filename": "php-4.4.6.tar.gz", + "name": "Source (tar.gz)", + "md5": "07c607fcf12435f0078d72fe0de4e3c0" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.7/announcement.html b/data/releases/4.4/4.4.7/announcement.html new file mode 100644 index 0000000000..60b9624b11 --- /dev/null +++ b/data/releases/4.4/4.4.7/announcement.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/4.4.7/release.json b/data/releases/4.4/4.4.7/release.json new file mode 100644 index 0000000000..10d61593e5 --- /dev/null +++ b/data/releases/4.4/4.4.7/release.json @@ -0,0 +1,17 @@ +{ + "version": "4.4.7", + "date": "03 May 2007", + "tags": [], + "source": [ + { + "filename": "php-4.4.7.tar.bz2", + "name": "PHP 4.4.7 (tar.bz2)", + "md5": "3f21b44d37a57ca3876d3aea713c700d" + }, + { + "filename": "php-4.4.7.tar.gz", + "name": "PHP 4.4.7 (tar.gz)", + "md5": "2669d2049822ac14abb263703d24f643" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.8/announcement.html b/data/releases/4.4/4.4.8/announcement.html new file mode 100644 index 0000000000..a3d94aa397 --- /dev/null +++ b/data/releases/4.4/4.4.8/announcement.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/4.4.8/release.json b/data/releases/4.4/4.4.8/release.json new file mode 100644 index 0000000000..89ca28daa1 --- /dev/null +++ b/data/releases/4.4/4.4.8/release.json @@ -0,0 +1,17 @@ +{ + "version": "4.4.8", + "date": "03 January 2008", + "tags": [], + "source": [ + { + "filename": "php-4.4.8.tar.bz2", + "name": "PHP 4.4.8 (tar.bz2)", + "md5": "ed31e77414e0331e787487b53732dbca" + }, + { + "filename": "php-4.4.8.tar.gz", + "name": "PHP 4.4.8 (tar.gz)", + "md5": "8ad5d1ca793d55b24cd82e591248c04e" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.4/4.4.9/announcement.html b/data/releases/4.4/4.4.9/announcement.html new file mode 100644 index 0000000000..9d4db77f1a --- /dev/null +++ b/data/releases/4.4/4.4.9/announcement.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/4.4/4.4.9/release.json b/data/releases/4.4/4.4.9/release.json new file mode 100644 index 0000000000..7534ac3fbf --- /dev/null +++ b/data/releases/4.4/4.4.9/release.json @@ -0,0 +1,17 @@ +{ + "version": "4.4.9", + "date": "07 August 2008", + "tags": [], + "source": [ + { + "filename": "php-4.4.9.tar.bz2", + "name": "PHP 4.4.9 (tar.bz2)", + "md5": "2e3b2a0e27f10cb84fd00e5ecd7a1880" + }, + { + "filename": "php-4.4.9.tar.gz", + "name": "PHP 4.4.9 (tar.gz)", + "md5": "9bcc1aba50be0dfeeea551d018375548" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.0/5.0.0/changes.txt b/data/releases/5.0/5.0.0/changes.txt new file mode 100644 index 0000000000..8e3dc65fa5 --- /dev/null +++ b/data/releases/5.0/5.0.0/changes.txt @@ -0,0 +1,528 @@ +- Updated PCRE to provide better error handling in certain cases. (Andrei) +- Changed doc comments to require a single white space after '/**'. (Marcus) +- Fixed bug #29019 (Database not closing). (Marcus) +- Fixed bug #29008 (array_combine() does not handle non-numeric/string keys). + (Ilia) +- Fixed bug #28999 (fixed behaviour of exec() to work as it did in 4.X). (Ilia) +- Fixed bug #28868 (Internal filter registry not thread safe). (Sara) +- Fixed bug #28851 (call_user_func_array has typo in error message). (Marcus) +- Fixed bug #28831 (ArrayObject::offsetGet() does the work of offsetUnset()). + (Marcus) +- Fixed bug #28822 (ArrayObject::offsetExists() works inverted). (Marcus) +- Fixed bug #28789 (ReflectionProperty getValue() fails on public static + members). (Marcus) +- Fixed bug #28771 (Segfault when using xslt and clone). (Rob) +- Fixed bug #28751 (SoapServer does not call _autoload()). (Dmitry) +- Fixed bug #28739 (array_*diff() and array_*intersect() not clearing the fci + cache before work). (Andrey) +- Fixed bug #28721 (appendChild() and insertBefore() unset DOMText).(Rob) +- Fixed bug #28702 (SOAP does not parse WSDL service address correctly). (Dmitry) +- Fixed bug #28699 (Reflection api bugs). (Marcus) +- Fixed bug #28694 (ReflectionExtension::getFunctions() crashes PHP). (Marcus) +- Fixed bug #28512 (Allocate enough space to store MSSQL data). (Frank) +- Fixed strip_tags() to correctly handle '\0' characters. (Stefan) + +7 Jun 2004, PHP 5 Release Candidate 3 +- Moved the PDFLib extension to PECL. (Wez) +- Added MySQL 4.1.2-alpha and 4.1.3-beta support to MySQLI extension. (Georg) +- Added support for dumping private/protected properties to var_dump(). + (Andrey) +- Added count() support for COM arrays. (Wez) +- Added Firebird/InterBase UDF source that allows PHP functions to be called + from SQL (Ard) +- Removed Firebird/Interbase function ibase_timefmt() (Ard) +- Changed user error handler mechanism to relay to built-in error handler if it + returns false. (Andrei) +- Changed class type hints for function parameters to not allow the passing of + NULL values. (Andi) +- Changed tidy_node to tidyNode and removed tidy_exception. (John) +- Fixed ip2long() to return FALSE if an IP address passed to this function + is not valid. (Derick) +- Fixed memory leak in memory manager. (Andi) +- Fixed problem with exceptions returning from include(). (Dmitry) +- Fixed bug #28641 (Instance of Interface). (Marcus) +- Fixed bug #28430 (Extending mysqli class). (Georg) +- Fixed bug #28311 (Transparency detection code is off by 1). + (Ilia, pikeman at pikeman dot sytes dot net) +- Fixed bug #28304 (Missing bounds check inside imagefilter()). (Ilia) +- Fixed bug #28300 (Userspace stream/filter names forced to lowercase). (Sara) +- Fixed bug #28287 (stream_*_register() not calling __autoload()). (Sara) +- Fixed bug #28267 (php_image_filter_contrast calls gdImageBrightness). (Ilia) +- Fixed bug #28239 (No results returned on SOAP call, no error given). (Dmitry) +- Fixed bug #28205 (num_rows property for statement object). (Georg) +- Fixed bug #28161 (COM: Array style properties could not be accessed). (Wez) +- Fixed bug #28125 (ArrayObject leaks when accessing elements). (Marcus) +- Fixed bug #28100 (NULL parameter support for mysqli_ssl_set). (Georg) +- Fixed bug #28099 (ArrayObject doesn't implement ArrayAccess). (Marcus) +- Fixed bug #27929 (SPL: change visibility of ArrayIterator::__construct). + (Marcus) +- Fixed bug #27640 (memory leak of registered_zend_ini_directives). (Dmitry) +- Fixed bug #27063 (SPL: ArrayObject does not handle PPP correctly). (Marcus) + +25 Apr 2004, PHP 5 Release Candidate 2 +- Implementing an interface/abstract method with the wrong prototype is now + a fatal error. (Zeev) +- Reimplemented zend.ze1_compatibility_mode to have better PHP 4 compliance. + (Dmitry, Andi) +- Under CLI, fclose() on php://stdin, php://stdout and php://stderr will now + close the real stream. Please update your CLI scripts to use STDIN, STDOUT + and STDERR constants instead of fopen()/fclose(). (Wez) +- Moved yaz extension to PECL. (Wez) +- Added pty support to proc_open(). (Wez) +- Added possibility to check in which extension an internal class was defined + in using reflection API. (Marcus) +- Changed tidy error handling to no longer use exceptions and + renamed the "error_buf" property to errorBuffer. (John) +- Changed class and method names to use studlyCaps convention. (Marcus) +- Changed language parser to throw errors when a non-empty signature is used in + a destructor definition. (Marcus) +- Changed HTTP file uploads not to throw E_WARNINGs and E_NOTICEs. The error + value in the $_FILES global should be used for error handling. (Derick) +- Changed __construct() to always take precedence over old style constructor. + (Dmitry) +- Fixed handling of return values from storred procedures in mssql_execute() + with multiple result sets returned. (Frank) +- Fixed bug #28096 (stream_socket_accept() doesn't work with ssl). (Wez) +- Fixed bug #28007 (compile mssql extension with old versions of FreeTDS + fails). (Frank) +- Fixed bug #27997 (SPL: Crash with getInnerIterator()). (Marcus) +- Fixed bug #27974 (COM doesn't pass array parameters). (Wez) +- Fixed bug #27928 (sqlite incorrectly handles invalid filenames). (Ilia) +- Fixed bug $27923 (in some cases using foreach() to iterate over values + led to a false error message about the key being a reference). (Adam) +- Fixed bug #27865 (STDIN, STDOUT, STDERR are dup()d under CLI). (Wez) +- Fixed bug #27821 (xml_parse() segfaults when xml_set_object() is called from + class method). (Andi, Rob) +- Fixed bug #27742 (WDSL SOAP Parsing Schema bug). (Dmitry) +- Fixed bug #27722 (Segfault on schema without targetNamespace). (Dmitry) +- Fixed bug #27719 (mktime issues on and around DST changeover). (Rasmus) +- Fixed bug #27681 (soap extension fails without HAVE_TM_GMTOFF). (Dmitry) +- Fixed bug #27641 (Object cloning in ze1_compatibility_mode was reimplemented) + (Dmitry, Andi) +- Fixed bug #27628 (Simplify the process of making a POST request via stream + context). (Ilia) +- Fixed bug #27619 (filters not applied to pre-buffered stream data). (Sara) +- Fixed bug #27519 (Reflection_Function constructor crashes with non-existant + function's name). (Marcus) +- Fixed bug #27457 (handling of numeric indexes in strtr()). (Dmitry) +- Fixed bug #27397 (debug_backtrace() not showing function arguments). (Zeev) +- Fixed bug #27283 (The last catch statement was sometimes skipped). (Andi) +- Fixed bug #26441 (When __set() returned a value it corrupted it). (Andi) +- Fixed bug #19749 (shouldn't mmap() files larger than memory_limit). (Wez) + +18 March 2004, PHP 5 Release Candidate 1 +- Fixed numerous bugs with the just-in-time auto-global initialization, that + could cause $_SERVER, $argv/$argc and other variables not to work properly. + (Zeev) +- Fixed data corruption with constant assignments to object properties. (Zeev) +- Changed __toString() to be called automatically only with print and echo + statements. (Andi) +- Replaced the exec_finished hook by the zend_post_deactive hook for + extensions. The new hook will be run after the symbol table and destructors + are run. (Derick) +- Fixed possible crash when internal get_method() is not defined. (Andi) +- Fixed calling methods using call_user_func() in conjunction with + the array("Class","Method") syntax to use the scope of the PHP user function. + (Dmitry) +- Fixed php-cgi to not ignore command-line switches when run in a web context. + This fixes our test cases allowing INI with GET sections to work. (Rasmus) +- Fixed getopt() so it works without $_SERVER. (Rasmus, bfrance) +- Added support for PHP 4 style object comparisons which is enabled in + ze1_compatiblity_mode. (Andi) +- Added support for PHP 4 style object conversion to long, double, and boolean + values which is enabled in ze1_compatibility_mode. (Andi, Stas) +- Allow object oriented extensions to overload comparison functions and other + operations. Solves problems using SimpleXML values. (Andi, Zeev) +- Fixed crash when accessing a class constant with a value which in turn is + also a constant. (Dmitry) +- Fixed object's truth value conversion. It is always true unless + ze1_compatibility_mode is on in which it behaves like in PHP 4. (Stas) +- Improved out of memory handling in new memory manager. (Stas) +- Fixed crash when an object references itself during destructor call. (Andi) +- Fixed crash in foreach() when iterating over object properties or a method's + return values. (Andi) +- Fixed crash when an exception is thrown in a destructor. Such exceptions are + now ignored as destruction happens out of context at no definite time. (Andi) +- Fixed crashes in exception handling. (Dmitry, Andi) +- Changed prototype checks so that they aren't done on constructors. (Andi) +- Changed prototype checks to output an E_STRICT message instead of + an E_COMPILE_ERROR. (Andi) +- Changed Iterator::has_more() to Iterator::valid(). (Marcus) +- Upgraded bundled oniguruma library to version 2.2.2. (Rui, Moriyoshi) +- Added mb_list_encoding() to return an array with all mbstring supported + encodings. (Derick) +- Added support for more ISO8601 datetime formats in strtotime(). (Moriyoshi) + . Timezone specifier (ex. "20040301T02:00:00+19:00") + . Week specifier (ex. "1997W021") +- Renamed php.ini option "zend2.implicit_clone" to + "zend.ze1_compatibility_mode" as it doesn't only affect implicit cloning. + (Andi, Zeev) +- Methods that override parent methods are now subject to prototype checking, + and have to be compatible with the method they're overriding - this check is + disabled in compatibility mode. (Andi, Zeev) +- Fixed crash in php_ini_scanned_files() when no additional INI files were + actually parsed. (Jon) +- Fixed bug in gdImageFilledRectangle in the bundled GD library, that required + x1 < x2 and y1 < y2 for coordinates. (Derick) +- Fixed crash with foreach() and temporary objects($obj->method()->a ...) where + method returns a non-referenced object. (Andi, Zeev) +- Fixed problem preventing startup errors from being displayed. (Marcus) +- Fixed start-up problem if both SPL and SimpleXML were enabled. The double + initialization of apache 1.3 was causing problems here. (Marcus, Derick) +- Fixed bug #27606 (Expression must be a modifiable lvalue compiler error). + (Derick) +- Fixed bug #27597 (pg_fetch_array not returning false). (Marcus) +- Fixed bug #27586 (ArrayObject::getIterator crashes with [] assignment). + (Marcus) +- Fixed bug #27537 (Objects pointing to each other segfaults). (Dmitry) +- Fixed bug #27535 (Problem with object freeing mechanism). (Dmitry) +- Fixed bug #27504 (Visibility bugs in call_user_function()). (Dmitry) +- Fixed bug #27338 (memory leak inside tsrm_virtual_cwd.c on win32). (Ilia) +- Fixed bug #27291 (get_browser matches browscap.ini patterns incorrectly). + (Jay) +- Fixed bug #27287 (wddx segfaults during deserialization). (Moriyoshi) +- Fixed bug #27263 (session extension crashes when unserializing referenced + values / objects). (Moriyoshi) +- Fixed bug #27237 (Working with simplexml crashes apache2). (Rob) +- Fixed bug #27227 (Mixed case class names causes Fatal Error in Constructor + call). (Marcus) +- Fixed bug #27125 (strval() doesn't work for objects with __toString()). + (Marcus) +- Fixed bug #27123 (Fix crash caused by bug in get_object_vars()). (Andi) +- Fixed bug #26677 (mbstring compile errors with IRIX compiler). + (K.Kosako
+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/5.1.0/changes.txt b/data/releases/5.1/5.1.0/changes.txt new file mode 100644 index 0000000000..610472b5f1 --- /dev/null +++ b/data/releases/5.1/5.1.0/changes.txt @@ -0,0 +1,739 @@ +- Added support for class constants and static members for internal classes. + (Dmitry, Michael Wallner) +- Added "new_link" parameter to mssql_connect() (Bug #34369). (Frank) +- Added missing safe_mode checks for image* functions and cURL. (Ilia) +- Added missing safe_mode/open_basedir checks for file uploads. (Ilia) +- Added PDO_MYSQL_ATTR_USE_BUFFERED_QUERY parameter for pdo_mysql. (Ilia) +- Added date_timezone_set() function to set the timezone that the date + function will use. (Derick) +- Added pg_fetch_all_columns() function to fetch all values of a column from a + result cursor. (Ilia) +- Added support for LOCK_EX flag for file_put_contents(). (Ilia) +- Added bindto socket context option. (Ilia) +- Added offset parameter to the stream_copy_to_stream() function. (Ilia) +- Added offset & length parameters to substr_count() function. (Ilia) +- Added man pages for "phpize" and "php-config" scripts. (Jakub Vrana) +- Added support for .cc files in extensions. (Brian) +- Added PHP_INT_MAX and PHP_INT_SIZE as predefined constants. (Andrey) +- Added user opcode API that allow overloading of opcode handlers. (Dmitry) +- Added an optional remove old session parameter to session_regenerate_id(). + (Ilia) +- Added array type hinting. (Dmitry) +- Added the tidy_get_opt_doc() function to return documentation for + configuration options in tidy. (Patch by: nlopess@php.net) +- Added support for .cc files in extensions. (Brian) +- Added imageconvolution() function which can be used to apply a custom 3x3 + matrix convolution to an image. (Pierre) +- Added optional first parameter to XsltProcessor::registerPHPFunctions to + only allow certain functions to be called from XSLT. (Christian) +- Added the ability to override the autotools executables used by the + buildconf script via the PHP_AUTOCONF and PHP_AUTOHEADER environmental + variables. (Jon) +- Added several new functions to support the PostgreSQL v3 protocol introduced + in PostgreSQL 7.4. (Christopher) + . pg_transaction_status() - in-transaction status of a database connection. + . pg_query_params() - execution of parameterized queries. + . pg_prepare() - prepare named queries. + . pg_execute() - execution of named prepared queries. + . pg_send_query_params() - async equivalent of pg_query_params(). + . pg_send_prepare() - async equivalent of pg_prepare(). + . pg_send_execute() - async equivalent of pg_execute(). + . pg_result_error_field() - highly detailed error information, most + importantly + the SQLSTATE error code. + . pg_set_error_verbosity() - set verbosity of errors. +- Added optional fifth parameter "count" to preg_replace_callback() and + preg_replace() to count the number of replacements made. FR #32275. (Andrey) +- Added optional third parameter "charlist" to str_word_count() which contains + characters to be considered as word part. FR #31560. (Andrey, Ilia) +- Added interface Serializable. (Stanislav, Marcus) +- Added pg_field_type_oid() PostgreSQL function. (mauroi at digbang dot com) +- Added zend_declare_property_...() and zend_update_property_...() API + functions for bool, double and binary safe strings. (Hartmut) +- Added possibility to access INI variables from within .ini file. (Andrei) +- Added variable $_SERVER['REQUEST_TIME'] containing request start time. + (Ilia) +- Added optional float parameter to gettimeofday(). (Ilia) +- Added apache_reset_timeout() Apache1 function. (Rasmus) +- Added sqlite_fetch_column_types() 3rd argument for arrays. (Ilia) +- Added optional offset parameter to stream_get_contents() and + file_get_contents(). (Ilia) +- Added optional maxlen parameter to file_get_contents(). (Ilia) +- Added SAPI hook to get the current request time. (Rasmus) +- Added new functions: + . array_diff_key() (Andrey) + . array_diff_ukey() (Andrey) + . array_intersect_key() (Christiano Duarte) + . array_intersect_ukey() (Christiano Duarte) + . array_product() (Andrey) + . DomDocumentFragment::appendXML() (Christian) + . fputcsv() (David Sklar) + . htmlspecialchars_decode() (Ilia) + . inet_pton() (Sara) + . inet_ntop() (Sara) + . mysqli::client_info property (Georg) + . posix_access() (Magnus) + . posix_mknod() (Magnus) + . SimpleXMLElement::registerXPathNamespace() (Christian) + . stream_context_get_default() (Wez) + . stream_socket_enable_crypto() (Wez) + . stream_wrapper_unregister() (Sara) + . stream_wrapper_restore() (Sara) + . stream_filter_remove() (Sara) + . time_sleep_until() (Ilia) +- Added DomDocument::$recover property for parsing not well-formed XML + Documents. (Christian) +- Added Cursor support for MySQL 5.0.x in mysqli (Georg) +- Added proxy support to ftp wrapper via http. (Sara) +- Added MDTM support to ftp_url_stat. (Sara) +- Added zlib stream filter support. (Sara) +- Added bz2 stream filter support. (Sara) +- Added max_redirects context option that specifies how many HTTP + redirects to follow. (Ilia) +- Added support of parameter=>value arrays to + xsl_xsltprocessor_set_parameter(). (Tony) + +- PHP extension loading mechanism with support for module + dependencies and conflicts. (Jani, Dmitry) +- Improved interactive mode of PHP CLI (php -a). (Johannes, Marcus) +- Improved performance of: + . general execution/compilation. (Andi, Thies, Sterling, Dmitry, Marcus) + . switch() statement. (Dmitry) + . several array functions. (Marcus) + . virtual path handling by adding a realpath() cache. (Andi) + . variable fetches. (Andi) + . magic method invocations. (Marcus) +- Improved support for embedded server in mysqli. (Georg) +- Improved mysqli extension. (Georg) + . added constructor for mysqli_stmt and mysqli_result classes + . added new function mysqli_get_charset() + . added new function mysqli_set_charset() + . added new class mysqli_driver + . added new class mysqli_warning + . added new class mysqli_exception + . added new class mysqli_sql_exception +- Improved SPL extension. (Marcus) + . Moved RecursiveArrayIterator from examples into extension + . Moved RecursiveFilterIterator from examples into extension + . Added SplObjectStorage + . Made all SPL constants class constants + . Renamed CachingRecursiveIterator to RecursiveCachingIterator to follow + Recursive<*>Iterator naming scheme. + . added standard hierarchy of Exception classes + . added interface Countable + . added interfaces Subject and SplObserver + . added spl_autoload*() functions + . converted several 5.0 examples into c code + . added class SplFileObject + . added possibility to use a string with class_parents() and + class_implements(). (Andrey) + +- Changed type hints to allow "null" as default value for class and array. + (Marcus, Derick, Dmitry) +- Changed SQLite extension to be a shared module in Windows distribution. + (Edin) +- Changed "instanceof" and "catch" operators, is_a() and is_subclass_of() + functions to not call __autoload(). (Dmitry) +- Changed sha1_file() and md5_file() functions to use streams instead of low + level IO. (Uwe) +- Changed abstract private methods to be not allowed anymore. (Stas) +- Changed stream_filter_(ap|pre)pend() to return resource. (Sara) +- Changed mysqli_exception and sqlite_exception to use RuntimeException as + base if SPL extension is present. (Georg, Marcus) + +- Upgraded bundled libraries: + . PCRE library to version 6.2. (Andrei) + . SQLite 3 library in ext/pdo_sqlite to 3.2.7. (Ilia) + . SQLite 2 library in ext/sqlite to 2.8.16. (Ilia) +- Upgraded bundled libraries in Windows distribution. (Edin) + . zlib 1.2.3 + . curl 7.14.0 + . openssl 0.9.8 + . ming 0.3b + . libpq (PostgreSQL) 8.0.1 + +- Implemented feature request #33452 (Year belonging to ISO week). (Derick) +- Allowed return by reference from internal functions. (Marcus, Andi, Dmitry) +- Rewrote strtotime() with support for timezones and many new formats. + Implements feature requests #21399, #26694, #28088, #29150, #29585 and + #29595. (Derick) + +- Moved extensions to PECL: + . ext/cpdf (Tony, Derick) + . ext/dio (Jani, Derick) + . ext/fam (Jani, Derick) + . ext/ingres_ii (Jani, Derick) + . ext/mnogosearch (Jani, Derick) + . ext/w32api (Jani, Derick) + . ext/yp (Jani, Derick) + . ext/mcve (Jani, Derick, Pierre) + . ext/oracle (Jani, Derick) + . ext/ovrimos (Jani, Derick, Pierre) + . ext/pfpro (Jani, Derick, Pierre) + . ext/dbx (Jani, Derick) + . ext/ircg (Jani, Derick) + +- Removed php_check_syntax() function which never worked properly. (Ilia) +- Removed garbage manager in Zend Engine which results in more aggressive + freeing of data. (Dmitry, Andi) + +- Fixed "make test" to work for phpized extensions. (Hartmut, Jani) +- Fixed Apache 2 regression with sub-request handling on non-linux systems. + (Ilia, Tony) +- Fixed PDO shutdown problem (possible infinite loop running rollback on + shutdown). (Wez) +- Fixed PECL bug #3714 (PDO: beginTransaction doesn't work if you're in + auto-commit mode). (Wez) +- Fixed ZTS destruction. (Marcus) +- Fixed __get/__set to allow recursive calls for different properties. (Dmitry) +- Fixed a bug where stream_get_meta_data() did not return the "uri" element + for files opened with tmpname(). (Derick) +- Fixed a problem with SPL iterators aggregating the inner iterator. (Marcus) +- Fixed an error in mysqli_fetch_fields (returned NULL instead of an array + when row number > field_count). (Georg) +- Fixed bug in mysql::client_version(). (Georg) +- Fixed bug in mysqli extension with unsigned int(11) being represented as + signed integer in PHP instead of string in 32bit systems. (Andrey) +- Fixed bug with $HTTP_RAW_POST_DATA not getting set. (Brian) +- Fixed crash inside stream_get_line() when length parameter equals 0. (Ilia) +- Fixed ext/mysqli to allocate less memory when fetching bound params of type + (MEDIUM|LONG)BLOB/(MEDIUM|LONG)TEXT. (Andrey) +- Fixed extension initialization to respect dependencies between extensions. + (Wez) +- Fixed failing queries (FALSE returned) with mysqli_query() on 64 bit systems. + (Andrey) +- Fixed fgetcsv() and fputcsv() inconsistency. (Dmitry) +- Fixed inheritance check to control return by reference and pass by + reference correctly (ArrayAccess can no longer support references correctly). + (Marcus, Andi, Dmitry) +- Fixed initializing and argument checking for posix_mknod(). (Derick) +- Fixed memory corruption in ImageTTFText() with 64bit systems. (Andrey) +- Fixed memory corruption in pg_copy_from() in case the as_null parameter was + passed. (Derick) +- Fixed memory corruption in stristr(). (Derick) +- Fixed possible GLOBALS variable override when register_globals are ON. + (Ilia, Stefan) +- Fixed possible INI setting leak via virtual() in Apache 2 sapi. (Ilia) +- Fixed possible register_globals toggle via parse_str(). (Ilia, Stefan) +- Fixed potential GLOBALS overwrite via import_request_variables() and + possible crash and/or memory corruption. (Ilia) +- Fixed segfaults when CURL callback functions throw exception. (Tony) +- Fixed support for shared extensions on AIX. (Dmitry) +- Fixed bug #35342 (isset(DOMNodeList->length) returns false). (Rob) +- Fixed bug #35341 (Fix for bug #33760 breaks build with older curl). (Tony) +- Fixed bug #35336 (crash on PDO::FETCH_CLASS + __set()). (Tony) +- Fixed bug #35303 (PDO prepare() crashes with invalid parameters). (Ilia) +- Fixed bug #35293 (PDO segfaults when using persistent connections). (Tony) +- Fixed bug #35278 (Multiple virtual() calls crash Apache 2 php module). (Ilia) +- Fixed bug #35273 (Error in mapping soap - java types). (Dmitry) +- Fixed bug #35249 (compile failure when ext/readline is compiled as shared). + (Jani) +- Fixed bug #35248 (sqlite_query() doesn't set error_msg when return value is + being used). (Ilia) +- Fixed bug #35243 (php_mblen() crashes when compiled with thread-safety on + Linux). (Patch: shulmanb at il dot ibm dot com, Jani) +- Fixed bug #35239 (Objects can lose references). (Dmitry) +- Fixed bug #35229 (call_user_func() crashes when argument_stack is nearly + full). (Dmitry) +- Fixed bug #35197 (Destructor is not called). (Tony) +- Fixed bug #35179 (tokenizer extension needs T_HALT_COMPILER). (Greg) +- Fixed bug #35176 (include()/require()/*_once() produce wrong error messages + about main()). (Dmitry) +- Fixed bug #35147 (__HALT_COMPILER() breaks with --enable-zend-multibyte). + (Dmitry, Moriyoshi) +- Fixed bug #35143 (gettimeofday() ignores current time zone). (Derick) +- Fixed bug #35142 (SOAP Client/Server Complex Object Support). (Dmitry) +- Fixed bug #35135 (PDOStatment without related PDO object may crash). (Ilia) +- Fixed bug #35091 (SoapClient leaks memory). (Dmitry) +- Fixed bug #35079 (stream_set_blocking(true) toggles, not enables blocking). + (askalski at gmail dot com, Tony) +- Fixed bug #35078 (configure does not find ldap_start_tls_s). (Jani) +- Fixed bug #35046 (phpinfo() uses improper css enclosure). (Ilia) +- Fixed bugs #35022, #35019 (Regression in the behavior of key() and + current() functions). (Ilia) +- Fixed bug #35017 (Exception thrown in error handler may cause unexpected + behavior). (Dmitry) +- Fixed bug #35014 (array_product() always returns 0). (Ilia) +- Fixed bug #35009 (ZTS: Persistent resource destruct crashes when extension + is compiled as shared). (Dmitry) +- Fixed bug #34996 (ImageTrueColorToPalette() crashes when ncolors is zero). + (Tony) +- Fixed bug #34982 (array_walk_recursive() modifies elements outside function + scope). (Dmitry) +- Fixed bug #34977 (Compile failure on MacOSX due to use of varargs.h). (Tony) +- Fixed bug #34968 (bz2 extension fails on to build on some win32 setups). + (Ilia) +- Fixed bug #34965 (tidy is not binary safe). (Mike) +- Fixed bug #34957 (PHP doesn't respect ACLs for access checks). (Wez) +- Fixed bug #34950 (Unable to get WSDL through proxy). (Dmitry) +- Fixed bug #34938 (dns_get_record() doesn't resolve long hostnames and + leaks). (Tony) +- Fixed bug #34905 (Digest authentication does not work with Apache 1). (Ilia) +- Fixed bug #34902 (mysqli::character_set_name() - undefined method). (Tony) +- Fixed bug #34899 (Fixed sqlite extension compile failure). (Ilia) +- Fixed bug #34893 (PHP5.1 overloading, Cannot access private property). + (Dmitry) +- Fixed bug #34884 (Possible crash in ext/sqlite when sqlite.assoc_case is + being used). (Tony, Ilia) +- Fixed bug #34879 (str_replace, array_map corrupt negative array indexes on + 64-bit platforms). (Dmitry) +- Fixed bug #34873 (Segmentation Fault on foreach in object). (Dmitry) +- Fixed bug #34856 (configure fails to detect libiconv's type). (Tony) +- Fixed bug #34855 (ibase_service_attach() segfault on AMD64). + (irie at gmx dot de, Tony) +- Fixed bug #34851 (SO_RECVTIMEO and SO_SNDTIMEO socket options expect + integer parameter on Windows). (Mike) +- Fixed bug #34850 (--program-suffix and --program-prefix not included in + man page names). (Jani) +- Fixed bug #34821 (zlib encoders fail on widely varying binary data on + windows). (Mike, Ilia) +- Fixed bug #34818 (several functions crash when invalid mysqli_link object + is passed). (Tony) +- Fixed bug #34810 (mysqli::init() and others use wrong $this pointer without + checks). (Tony) +- Fixed bug #34809 (FETCH_INTO in PDO crashes without a destination object). + (Ilia) +- Fixed bug #34802 (Fixed crash on object instantiation failure). (Ilia) +- Fixed bug #34796 (missing SSL linking in ext/ftp when configured as shared). + (Jani) +- Fixed bug #34790 (preg_match_all(), named capturing groups, variable + assignment/return => crash). (Dmitry) +- Fixed bug #34788 (SOAP Client not applying correct namespace to generated + values). (Dmitry) +- Fixed bug #34787 (SOAP Client not handling boolean types correctly). (Dmitry) +- Fixed bug #34786 (2 @ results in change to error_reporting() to random + value) (Dmitry, Tony) +- Fixed bug #34785 (subclassing of mysqli_stmt does not work). (Georg) +- Fixed bug #34782 (token_get_all() gives wrong result). (Dmitry) +- Fixed bug #34777 (Crash in dblib when fetching non-existent error info). + (Ilia) +- Fixed bug #34771 (strtotime() fails with 1-12am/pm). (Derick) +- Fixed bug #34767 (Zend Engine 1 Compatibility not copying objects + correctly). (Dmitry) +- Fixed bug #34758 (PDO_DBLIB did not implement rowCount()). (Ilia) +- Fixed bug #34757 (iconv_substr() gives "Unknown error" when offset > string + length). (Tony) +- Fixed bug #34742 (ftp wrapper failures caused from segmented command + transfer). (Ilia) +- Fixed bug #34725 (CLI segmentation faults during cleanup). (Dmitry) +- Fixed bug #34723 (array_count_values() strips leading zeroes). (Tony) +- Fixed bug #34712 (zend.ze1_compatibility_mode = on segfault). (Dmitry) +- Fixed bug #34704 (Infinite recursion due to corrupt JPEG). (Marcus) +- Fixed bug #34678 (__call(), is_callable() and static methods). (Dmitry) +- Fixed bug #34676 (missing support for strtotime("midnight") and + strtotime("noon")). (Derick) +- Fixed bug #34645 (ctype corrupts memory when validating large numbers). + (Ilia) +- Fixed bug #34643 (wsdl default value has no effect). (Dmitry) +- Fixed bug #34623 (Crash in pdo_mysql on longtext fields). (Ilia) +- Fixed bug #34617 (zend_deactivate: objects_store used after + zend_objects_store_destroy is called). (Dmitry) +- Fixed bug #34590 (User defined PDOStatement class can't implement + methods). (Marcus) +- Fixed bug #34584 (Segfault with SPL autoload handler). (Marcus) +- Fixed bug #34581 (crash with mod_rewrite). (Tony, Ilia) +- Fixed bug #34565 (mb_send_mail does not fetch + mail.force_extra_parameters). (Marco, Ilia) +- Fixed bug #34557 (php -m exits with "error" 1). (Johannes) +- Fixed bug #34518 (Unset doesn't separate container in CV). (Dmitry) +- Fixed bug #34505 (Possible memory corruption when unmangling properties + with empty names). (Tony) +- Fixed bug #34478 (Incorrect parsing of url's fragment (#...)). (Dmitry) +- Fixed bug #34467 (foreach + __get + __set inconsistency). (Dmitry) +- Fixed bug #34456 (Possible crash inside pspell extension). (Ilia) +- Fixed bug #34453 (parsing http://www.w3.org/2001/xml.xsd exception). (Dmitry) +- Fixed bug #34450 (Segfault when calling mysqli_close() in destructor). (Tony) +- Fixed bug #34449 (ext/soap: XSD_ANYXML functionality not exposed). (Dmitry) +- Fixed bug #34420 (Possible crash inside curl_multi_remove_handle()). (Ilia) +- Fixed bug #34358 (Fatal error: Cannot re-assign $this). (Dmitry) +- Fixed bug #34331 (php crashes when variables_order is empty). (Ilia) +- Fixed bug #34321 (Possible crash in filter code). (Ilia) +- Fixed bug #34311 (unserialize() crashes with chars above 191 dec). (Nuno) +- Fixed bug #34310 (foreach($arr as $c->d => $x) crashes). (Dmitry) +- Fixed bug #34307 (on_modify handler not called to set the default value if + setting from php.ini was invalid). (Andrei) +- Fixed bug #34306 (wddx_serialize_value() crashes with long array keys). + (Jani) +- Fixed bug #34304 (date() doesn't have a modifier for ISO Week Day). (Derick) +- Fixed bug #34302 (date('W') do not return leading zeros for week 1 to 9). + (Derick) +- Fixed bug #34299 (ReflectionClass::isInstantiable() returns true for abstract + classes). (Marcus) +- Fixed bug #34284 (CLI phpinfo showing html on _SERVER["argv"]). (Jani) +- Fixed bug #34277 (array_filter() crashes with references and objects). + (Dmitry) +- Fixed bug #34276 (setAttributeNS doesn't work with default namespace). + (Rob) +- Fixed bug #34260 (Segfault with callbacks (array_map) + overloading). + (Dmitry) +- Fixed bug #34257 (lib64 not handled correctly in ming extension). (Marcus) +- Fixed bug #34221 (Compiling xmlrpc as shared fails other parts). (Jani) +- Fixed bug #34216 (Segfault with autoload). (Marcus) +- Fixed bug #34199 (if($obj)/if(!$obj) inconsistency because of cast handler). + (Dmitry, Alex) +- Fixed bug #34191 (ob_gzhandler does not enforce trailing \0). (Ilia) +- Fixed bug #34156 (memory usage remains elevated after memory limit is + reached). (Ilia) +- Fixed bug #34148 (+,- and . not supported as parts of scheme). (Ilia) +- Fixed bug #34137 (assigning array element by reference causes binary mess). + (Dmitry) +- Fixed bug #34103 (line numbering not maintained in dom document). (Rob) +- Fixed bug #34078 (Reflection API problems in methods with boolean or + null default values). (Tony) +- Fixed bug #34068 (Numeric string as array key not cast to integer in + wddx_deserialize()). (Ilia) +- Fixed bug #34064 (arr[] as param to function in class gives invalid + opcode). (Dmitry) +- Fixed bug #34062 (Crash in catch block when many arguments are used). + (Dmitry) +- Fixed bug #34052 (date('U') returns %ld not unix timestamp). (Nuno) +- Fixed bug #34045 (Buffer overflow with serialized object). (Dmitry) +- Fixed bug #34001 (pdo_mysql truncates numeric fields at 4 chars). (Ilia) +- Fixed bug #33999 (object remains object when cast to int). (Dmitry) +- Fixed bug #33996 (No information given for fatal error on passing invalid + value to typed argument). (Dmitry) +- Fixed bug #33989 (extract($GLOBALS,EXTR_REFS) crashes PHP). (Dmitry) +- Fixed bug #33987 (php script as ErrorDocument causes crash in Apache 2). + (Ilia) +- Fixed bug #33967 (misuse of Exception constructor doesn't display + errorfile). (Jani) +- Fixed bug #33966 (Wrong use of reflectionproperty causes a segfault). (Tony) +- Fixed bug #33963 (mssql_bind() fails on input parameters). (Frank) +- Fixed bug #33958 (duplicate cookies and magic_quotes=off may cause a crash). + (Ilia) +- Fixed bug #33957 (gmdate('W')/date('W') sometimes returns wrong week number). + (Derick) +- Fixed bug #33940 (array_map() fails to pass by reference when called + recursively). (Dmitry) +- Fixed bug #33917 (number_format() output with > 1 char separators). (Jani) +- Fixed bug #33904 (input array keys being escaped when magic quotes is off). + (Ilia) +- Fixed bug #33903 (spl_autoload_register class method). (Marcus) +- Fixed bug #33899 (CLI: setting extension_dir=some/path extension=foobar.so + does not work). (Jani) +- Fixed bug #33882 (CLI was looking for php.ini in wrong path). (Hartmut) +- Fixed bug #33869 (strtotime() problem with "+1days" format). (Ilia) +- Fixed bug #33841 (pdo sqlite driver forgets to update affected column + count on execution of prepared statments). (Ilia) +- Fixed bug #33837 (Informix ESQL version numbering schema changed). (Jani) +- Fixed bug #33829 (mime_content_type() returns text/plain for gzip and bzip + files). (Derick) +- Fixed bug #33802 (throw Exception in error handler causes crash). (Dmitry) +- Fixed bug #33771 (error_reporting falls to 0 when @ was used inside + try/catch block). (Tony) +- Fixed bug #33760 (cURL needs to implement CRYPTO_callback functions to + prevent locking). (Mike, Ilia) +- Fixed bug #33732 (Wrong behavior of constants in class and interface + extending). (Dmitry) +- Fixed bug #33723 (php_value overrides php_admin_value). (Dmitry) +- Fixed bug #33720 (mb_encode_mimeheader does not work for multibyte + chars). (Rui) +- Fixed bug #33710 (ArrayAccess objects does not initialize $this). (Dmitry) +- Fixed bug #33690 (Crash setting some ini directives in httpd.conf). (Rasmus) +- Fixed bug #33673 (Added detection for partially uploaded files). (Ilia) +- Fixed bug #33605 (substr_compare() crashes with negative offset and length). + (Tony) +- Fixed bug #33597 (setcookie() "expires" date format doesn't comply with RFC). + (Tony) +- Fixed bug #33588 (LDAP: RootDSE query not possible). (Jani) +- Fixed bug #33578 (strtotime() problem with "Oct17" format). (Derick) +- Fixed bug #33578 (strtotime() doesn't understand "11 Oct" format). (Derick) +- Fixed bug #33562 (date("") crashes). (Derick) +- Fixed bug #33558 (warning with nested calls to functions returning by + reference). (Dmitry) +- Fixed bug #33536 (strtotime() defaults to now even on non time string). + (Derick) +- Fixed bug #33532 (Different output for strftime() and date()). (Derick) +- Fixed bug #33523 (Memory leak in xmlrpc_encode_request()). (Ilia) +- Fixed bug #33520 (crash if safe_mode is on and session.save_path is changed). + (Dmitry) +- Fixed bug #33512 (Add missing support for isset()/unset() overloading to + complement the property get/set methods). (Dmitry) +- Fixed bug #33491 (crash after extending MySQLi internal class). (Tony) +- Fixed bug #33475 (cURL handle is not closed on curl_close(). (Ilia) +- Fixed bug #33469 (Compile error undefined reference to ifx_checkAPI). (Jani) +- Fixed bug #33433 (strtoll not available on Tru64). (Jani, Derick) +- Fixed bug #33427 (ext/odbc: check if unixODBC header file exists). (Jani) +- Fixed bug #33415 (strtotime() related bugs). (Derick) +- Fixed bug #33414 (Comprehensive list of incorrect days returned after + strtotime() / date() tests). (Derick) +- Fixed bug #33389 (double free() when exporting a ReflectionClass). (Marcus) +- Fixed bug #33383 (crash when retrieving empty LOBs). (Tony) +- Fixed bug #33382 (array_reverse() fails after *sort()), introduced by + zend_hash_sort() optimizations in HEAD. (Tony) +- Fixed bug #33340 (CLI Crash when calling php:function from XSLT). (Rob) +- Fixed bug #33326 (Cannot build extensions with phpize on Macosx). (Jani) +- Fixed bug #33318 (throw 1; results in Invalid opcode 108/1/8). (Dmitry) +- Fixed bug #33312 (ReflectionParameter methods do not work correctly). + (Dmitry) +- Fixed bug #33299 (php:function no longer handles returned dom objects). + (Rob, Joe Orton) +- Fixed bug #33286 (nested array_walk() calls and user array compare functions + broken; FCI cache). (Andrei, patch from m.bretz@metropolis-ag.de) +- Fixed bug #33277 (private method accessed by child class). (Dmitry) +- Fixed bug #33268 (iconv_strlen() works only with a parameter of < 3 in + length). (Ilia) +- Fixed bug #33257 (array_splice() inconsistent when passed function instead of + variable). (Dmitry) +- Fixed bug #33243 (ze1_compatibility_mode does not work as expected). (Dmitry) +- Fixed bug #33242 (Mangled error message when stream fails). (Derick) +- Fixed bug #33222 (segfault when CURL handle is closed in a callback). (Tony) +- Fixed bug #33214 (odbc_next_result does not signal SQL errors with + 2-statement SQL batches). (rich at kastle dot com, Tony) +- Fixed bug #33212 ([GCC 4]: 'zend_error_noreturn' aliased to external symbol + 'zend_error'). (Dmitry) +- Fixed bug #33210 (relax jpeg recursive loop protection). (Ilia) +- Fixed bug #33201 (Crash when fetching some data types). (Frank) +- Fixed bug #33200 (preg_replace(): magic_quotes_sybase=On makes 'e' modifier + misbehave). (Jani) +- Fixed bug #33185 (--enable-session=shared does not build). (Jani) +- Fixed bug #33171 (foreach enumerates private fields declared in base + classes). (Dmitry) +- Fixed bug #33167 (Possible crash inside pg_fetch_array()). (Ilia) +- Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1). (Ilia) +- Fixed bug #33156 (cygwin version of setitimer doesn't accept ITIMER_PROF). + (Nuno) +- Fixed bug #33153 (crash in mssql_next result). (Frank) +- Fixed bug #33150 (shtool: insecure temporary file creation). (Jani) +- Fixed bug #33136 (method offsetSet in class extended from ArrayObject crash + PHP). (Marcus) +- Fixed bug #33125 (imagecopymergegray() produces mosaic rainbow effect). + (Pierre) +- Fixed bug #33116 (crash when assigning class name to global variable in + __autoload). (Dmitry) +- Fixed bug #33090 (mysqli_prepare() doesn't return an error). (Georg) +- Fixed bug #33076 (str_ireplace() incorrectly counts result string length + and may cause segfault). (Tony) +- Fixed bug #33072 (Add a safemode/open_basedir check for runtime + "session.save_path" change using session_save_path() function). (Rasmus) +- Fixed bug #33070 (Improved performance of bzdecompress() by several orders + of magnitude). (Ilia) +- Fixed bug #33059 (crash when moving xml attribute set in dtd). (Ilia) +- Fixed bug #33057 (Don't send extraneous entity-headers on a 304 as per + RFC 2616 section 10.3.5) (Rasmus, Choitel) +- Fixed bug #33019 (socket errors cause memory leaks in php_strerror()). + (jwozniak23 at poczta dot onet dot pl, Tony). +- Fixed bug #33017 ("make distclean" gives an error with VPATH build). (Jani) +- Fixed bug #33013 ("next month" was handled wrong while parsing dates). + (Derick) +- Fixed bug #32993 (implemented Iterator function current() don't throw + exception). (Dmitry) +- Fixed bug #32981 (ReflectionMethod::getStaticVariables() causes apache2.0.54 + seg fault). (Dmitry) +- Fixed bug #32956 (mysql_bind_result() doesn't support MYSQL_TYPE_NULL). + (Georg) +- Fixed bug #32947 (Incorrect option for mysqli default password). (Georg) +- Fixed bug #32944 (Disabling session.use_cookies doesn't prevent reading + session cookies). (Jani, Tony) +- Fixed bug #32941 (Sending structured SOAP fault kills a php). (Dmitry) +- Fixed bug #32937 (open_basedir looses trailing / in the limiter). + (Adam Conrad) +- Fixed bug #32936 (http redirects URLs are not checked for control chars). + (Ilia) +- Fixed bug #32933 (Cannot extend class "SQLiteDatabase"). (Marcus) +- Fixed bug #32932 (Oracle LDAP: ldap_get_entries(), invalid pointer). (Jani) +- Fixed bug #32930 (class extending DOMDocument doesn't clone properly). (Rob) +- Fixed bug #32924 (file included with "auto_prepend_file" can be included + with require_once() or include_once()). (Stas) +- Fixed bug #32904 (pg_get_notify() ignores result_type parameter). (Tony) +- Fixed bug #32852 (Crash with singleton and __destruct when + zend.ze1_compatibility_mode = On). (Dmitry) +- Fixed bug #32833 (Invalid opcode). (Dmitry) +- Fixed bug #32813 (parse_url() does not handle scheme-only urls properly). + (Ilia) +- Fixed bug #32810 (temporary files not using plain file wrapper). (Ilia) +- Fixed bug #32809 (Missing T1LIB support on Windows). (Edin) +- Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia) +- Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani) +- Fixed bug #32799 (crash: calling the corresponding global var during the + destruct). (Dmitry) +- Fixed bug #32776 (SOAP doesn't support one-way operations). (Dmitry) +- Fixed bug #32773 (GMP functions break when second parameter is 0). (Stas) +- Fixed bug #32759 (incorrect determination of default value (COM)). (Wez) +- Fixed bug #32758 (Cannot access safearray properties in VB6 objects). (Wez) +- Fixed bug #32755 (Segfault in replaceChild() when DocumentFragment has no + children). (Rob) +- Fixed bug #32753 (Undefined constant SQLITE_NOTADB). (Ilia) +- Fixed bug #32742 (segmentation fault when the stream with a wrapper + is not closed). (Tony, Dmitry) +- Fixed bug #32699 (pg_affected_rows() was defined when it was not available). + (Derick) +- Fixed bug #32686 (Require/include file in destructor causes segfault). + (Marcus) +- Fixed bug #32682 (ext/mssql: Error on module shutdown when called from + activescript). (Frank) +- Fixed bug #32674 (exception in iterator causes crash). (Dmitry) +- Fixed bug #32660 (Assignment by reference causes crash when field access is + overloaded (__get)). (Dmitry) +- Fixed bug #32647 (Using register_shutdown_function() with invalid callback + can crash PHP). (Jani) +- Fixed bug #32615 (Segfault in replaceChild() using fragment when + previousSibling is NULL). (Rob) +- Fixed bug #32613 (ext/snmp: use of snmp_shutdown() causes snmpapp.conf + access errors). (Jani, ric at arizona dot edu) +- Fixed bug #32608 (html_entity_decode() converts single quotes even if + ENT_NOQUOTES is given). (Ilia) +- Fixed bug #32596 (Segfault/Memory Leak by getClass (etc) in __destruct). + (Dmitry) +- Fixed bug #32591 (ext/mysql: Unsatisfied symbol: ntohs with HP-UX). (Jani) +- Fixed bug #32589 (possible crash inside imap_mail_compose() function). + (Ilia) +- Fixed bug #32589 (Possible crash inside imap_mail_compose, with charsets). + (Ilia) +- Fixed bug #32587 (Apache2: errors sent to error_log do not include + timestamps). (Jani) +- Fixed bug #32560 (configure looks for incorrect db2 library). (Tony) +- Fixed bug #32553 (mmap loads only the 1st 2000000 bytes on Win32). (Ilia) +- Fixed bug #32533 (proc_get_status() returns the incorrect process status). + (Ilia) +- Fixed bug #32530 (chunk_split() does not append endstr if chunklen is + longer then the original string). (Ilia) +- Fixed bug #32491 (File upload error - unable to create a temporary file). + (Uwe Schindler) +- Fixed bug #32455 (wrong setting property to unset value). (Dmitry) +- Fixed bug #32429 (method_exists() always return TRUE if __call method + exists). (Dmitry) +- Fixed bug #32428 (The @ warning error suppression operator is broken). + (Dmitry) +- Fixed bug #32427 (Interfaces are not allowed 'static' access modifier). + (Dmitry) +- Fixed bug #32405 (mysqli::fetch() returns bad data - 64bit problem). + (Andrey) +- Fixed bug #32296 (get_class_methods() output has changed between 5.0.2 and + 5.0.3). (Dmitry) +- Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit). (Georg) +- Fixed bug #32245 (xml_parser_free() in a function assigned to the xml + parser gives a segfault). (Rob) +- Fixed bug #32179 (xmlrpc_encode() segfaults with recursive references). + (Tony) +- Fixed bug #32171 (Userspace stream wrapper crashes PHP). (Tony, Dmitry) +- Fixed bug #32160 (copying a file into itself leads to data loss). (Ilia) +- Fixed bug #32139 (SOAP client does not auto-handle base64 encoding). (Ilia) +- Fixed bug #32109 ($_POST is not populated in multi-threaded environment). + (Moriyoshi) +- Fixed bug #32080 (segfault when assigning object to itself with + zend.ze1_compatibility_mode=On). (Dmitry) +- Fixed bug #32021 (Crash caused by range('', 'z')). (Derick) +- Fixed bug #32013 (ext/mysqli bind_result causes fatal error: memory limit). + (Andrey) +- Fixed bug #32010 (Memory leak in mssql_fetch_batch). (fmk) +- Fixed bug #32009 (crash when mssql_bind() is called more than once). (Frank) +- Fixed bug #31971 (ftp_login fails on some SSL servers). + (frantisek at augusztin dot com) +- Fixed bug #31887 (ISAPI: Custom 5xx error does not return correct HTTP + response message). (Jani) +- Fixed bug #31828 (Crash with zend.ze1_compatibility_mode=On). (Dmitry) +- Fixed bug #31668 (multi_query works exactly every other time - multi query + d/e flag global and not per connection). (Andrey) +- Fixed bug #31636 (another crash when echoing a COM object). (Wez) +- Fixed bug #31583 (php_std_date() uses short day names in non-y2k_compliance + mode). (mike at php dot net) +- Fixed bug #31525 (object reference being dropped. $this getting lost). + (Stas, Dmitry) +- Fixed bug #31502 (Wrong deserialization from session when using WDDX + serializer). (Dmitry) +- Fixed bug #31478 (segfault with empty() / isset()). (Moriyoshi) +- Fixed bug #31465 (False warning in unpack() when working with *). (Ilia) +- Fixed bug #31363 (broken non-blocking flock()). (ian at snork dot net) +- Fixed bug #31358 (Older GCC versions do not provide portable va_copy()). + (Jani) +- Fixed bug #31341 (escape on curly inconsistent). (Dmitry) +- Fixed bug #31256 (PHP_EVAL_LIBLINE configure macro does not handle + -pthread). (Jani) +- Fixed bug #31213 (Side effects caused by fix of bug #29493). (Dmitry) +- Fixed bug #31177 (memory leaks and corruption because of incorrect + refcounting). (Dmitry) +- Fixed bug #31158 (array_splice on $GLOBALS crashes). (Dmitry) +- Fixed bug #31054 (safe_mode & open_basedir checks only check first + include_path value). (Ilia) +- Fixed bug #31033 (php:function(string, nodeset) with xsl:key crashes PHP). + (Rob) +- Fixed bug #30961 (Wrong line number in ReflectionClass getStartLine()). + (Dmitry) +- Fixed bug #30889 (Conflict between __get/__set and ++ operator). (Dmitry) +- Fixed bug #30833 (array_count_values() modifying input array). (Tony) +- Fixed bug #30828 (debug_backtrace() reports incorrect class in overridden + methods). (Dmitry) +- Fixed bug #30820 (static member conflict with $this->member silently + ignored). (Dmitry) +- Fixed bug #30819 (Better support for LDAP SASL bind). (Jani) +- Fixed bug #30791 (magic methods (__sleep/__wakeup/__toString) call + __call if object is overloaded). (Dmitry) +- Fixed bug #30707 (Segmentation fault on exception in method). + (Stas, Dmitry) +- Fixed bug #30702 (cannot initialize class variable from class constant). + (Dmitry) +- Fixed bug #30578 (Output buffers flushed before calling __destruct() + functions). (Jani) +- Fixed bug #30519 (Interface not existing says Class not found). (Dmitry) +- Fixed bug #30407 (Strange behavior of default arguments). (Dmitry) +- Fixed bug #30394 (Assignment operators yield wrong result with __get/__set). + (Dmitry) +- Fixed bug #30332 (zend.ze1_compatibility_mode isn't fully compatible with + array_push()). (Dmitry) +- Fixed bug #30162 (Catching exception in constructor causes lose of + $this). (Dmitry) +- Fixed bug #30140 (Problem with array in static properties). (Dmitry) +- Fixed bug #30126 (Enhancement for error message for abstract classes). + (Marcus) +- Fixed bug #30096 (gmmktime does not return the current time). (Derick) +- Fixed bug #30080 (Passing array or non array of objects). (Dmitry) +- Fixed bug #30052 (Crash on shutdown after odbc_pconnect()). (Edin) +- Fixed bug #29983 (PHP does not explicitly set mime type & charset). (Ilia) +- Fixed bug #29975 (memory leaks when set_error_handler() is used inside error + handler). (Tony) +- Fixed bug #29971 (variables_order behavior). (Dmitry) +- Fixed bug #29944 (Function defined in switch, crashes). (Dmitry) +- Fixed bug #29896 (Backtrace argument list out of sync). (Dmitry) +- Fixed bug #29728 (Reflection API Feature: Default parameter value). (Marcus) +- Fixed bug #29689 (default value of protected member overrides default value + of private and other private variable problems in inherited classes). (Stas) +- Fixed bug #29683 (headers_list() returns empty array). (Tony) +- Fixed bug #29583 (crash when echoing a COM object). (M.Sisolak, Wez) +- Fixed bug #29522 (accessing properties without connection). (Georg) +- Fixed bug #29361 (var_export() producing invalid code). (Derick) +- Fixed bug #29338 (unencoded spaces get ignored after certain tags). (Ilia) +- Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default). (Georg) +- Fixed bug #29334 (win32 mail() provides incorrect Date: header). (Jani) +- Fixed bug #29311 (calling parent constructor in mysqli). (Georg) +- Fixed bug #29268 (__autoload() not called with Reflection->getClass()). + (Dmitry) +- Fixed bug #29256 (SOAP HTTP Error when envelop size is more than 24345 + bytes). (Dmitry, Wez) +- Fixed bug #29253 (array_diff with $GLOBALS argument fails). (Dmitry) +- Fixed bug #29236 (memory error when wsdl-cache is enabled). (Dmitry) +- Fixed bug #29210 (Function: is_callable - no support for private and + protected classes). (Dmitry) +- Fixed bug #29109 (SoapFault exception: [WSDL] Out of memory). (Dmitry) +- Fixed bug #29104 (Function declaration in method doesn't work). (Dmitry) +- Fixed bug #29061 (soap extension segfaults). (Dmitry) +- Fixed bug #29015 (Incorrect behavior of member vars(non string ones)-numeric + mem vars and others). (Dmitry) +- Fixed bug #28985 (__getTypes() returning nothing on complex WSDL). (Dmitry) +- Fixed bug #28969 (Wrong data encoding of special characters). (Dmitry) +- Fixed bug #28839 (SIGSEGV in interactive mode (php -a)). + (kameshj at fastmail dot fm) +- Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs). (Jani) +- Fixed bug #28568 (SAPI::known_post_content_types is not thread safe). + (Moriyoshi) +- Fixed bug #28377 (debug_backtrace is intermittently passing args). (Dmitry) +- Fixed bug #28355 (glob wont error if dir is not readable). (Hartmut) +- Fixed bug #28072 (static array with some constant keys will be incorrectly + ordered). (Dmitry) +- Fixed bug #27908 (xml default_handlers not being called). (Rob) +- Fixed bug #27598 (list() array key assignment causes HUGE memory leak). + (Dmitry) +- Fixed bug #27268 (Bad references accentuated by clone). (Dmitry) +- Fixed bug #26456 (Wrong results from Reflection-API getDocComment() when + called via STDIN). (Dmitry) +- Fixed bug #25922 (In error handler, modifying 5th arg (errcontext) may + result in seg fault). (Dmitry) +- Fixed bug #25359 (array_multisort() doesn't work in a function if array is + global or reference). (Dmitry) +- Fixed bug #22836 (returning reference to uninitialized variable). (Dmitry) +- Fixed bug #21306 (ext/sesssion: catch bailouts of write handler during + RSHUTDOWN). (Jani, Xuefer at 21cn dot com) +- Fixed bug #15854 (boolean ini options may be incorrectly displayed as Off + when they are On). (Tony) +- Fixed bugs #14561, #20382, #26090, #26320, #28024, #30532, #32086, #32270, + #32555, #32588, #33056 (strtotime() related bugs). (Derick) diff --git a/data/releases/5.1/5.1.0/release.json b/data/releases/5.1/5.1.0/release.json new file mode 100644 index 0000000000..32e037f423 --- /dev/null +++ b/data/releases/5.1/5.1.0/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.1.0", + "date": "24 Nov 2005", + "tags": [], + "source": [ + { + "filename": "php-5.1.0.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.1/5.1.1/announcement.html b/data/releases/5.1/5.1.1/announcement.html new file mode 100644 index 0000000000..87842c7548 --- /dev/null +++ b/data/releases/5.1/5.1.1/announcement.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/5.1.1/changes.txt b/data/releases/5.1/5.1.1/changes.txt new file mode 100644 index 0000000000..8e735b4355 --- /dev/null +++ b/data/releases/5.1/5.1.1/changes.txt @@ -0,0 +1,20 @@ +- Disabled native date class to prevent pear::date conflict. (Ilia) +- Changed reflection constants be both PHP and class constants. (Johannes) +- Added an additional field $frame['object'] to the result array of + debug_backtrace() that contains a reference to the respective object when the + frame was called from an object. (Sebastian) +- Fixed bug #35423 (RecursiveDirectoryIterator doesnt appear to recurse with + RecursiveFilterIterator). (Marcus) +- Fixed bug #35413 (Removed -dev flag from Zend Engine version). (Ilia) +- Fixed bug #35411 (Regression with \{$ handling). (Ilia) +- Fixed bug #35406 (eval hangs when evall'ed code ends with comment w/o + newline). (Marcus) +- Fixed bug #35391 (pdo_mysql::exec does not return number of affected rows). + (Tony) +- Fixed bug #35382 (Comment in end of file produces fatal error). (Ilia) +- Fixed bug #35360 (exceptions in interactive mode (php -a) may cause crash). + (Dmitry) +- Fixed bug #35358 (Incorrect error messages for PDO class constants). (Ilia) +- Fixed bug #35338 (pdo_pgsql does not handle binary bound params). (Wez) +- Fixed bug #35316 (Application exception trying to create COM object). (Rob) +- Fixed bug #35170 (PHP_AUTH_DIGEST differs under Apache 1.x and 2.x). (Ilia) diff --git a/data/releases/5.1/5.1.1/release.json b/data/releases/5.1/5.1.1/release.json new file mode 100644 index 0000000000..436bd7b5c2 --- /dev/null +++ b/data/releases/5.1/5.1.1/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.1.1", + "date": "28 Nov 2005", + "tags": [], + "source": [ + { + "filename": "php-5.1.1.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.1/5.1.2/announcement.html b/data/releases/5.1/5.1.2/announcement.html new file mode 100644 index 0000000000..10d97fc311 --- /dev/null +++ b/data/releases/5.1/5.1.2/announcement.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/5.1.2/changes.txt b/data/releases/5.1/5.1.2/changes.txt new file mode 100644 index 0000000000..511bfb8b63 --- /dev/null +++ b/data/releases/5.1/5.1.2/changes.txt @@ -0,0 +1,153 @@ +- Updated libsqlite in ext/sqlite to 2.8.17. (Ilia) +- Updated libsqlite in ext/pdo_sqlite to 3.2.8. (Ilia) +- Updated to libxml2-2.6.22 and libxslt-1.1.15 in the win32 bundle. (Rob) +- Added new extensions: (Ilia, Wez) + . XMLWriter + . Hash +- Added PNG compression support to GD extension. (Pierre) +- Added reflection constants as class constants. (Johannes) +- Added --enable-gcov configure option to enable C-level code coverage. + (John, Jani, Ilia, Marcus) +- Added missing support for 'B' format identifier to date() function. (Ilia) +- Changed reflection to be an extension. (Marcus) +- Improved SPL extension: (Marcus) + . Added class SplFileInfo as root class for DirectoryIterator and + SplFileObject + . Added SplTempFileObject +- Improved SimpleXML extension: (Marcus) + . Fixed memleaks + . Fixed var_dump() + . Fixed isset/empty/(bool) behavior + . Fixed iterator edge cases + . Added methods getNamespaces(), getDocNamespaces() +- Upgraded pear to version 1.4.6. (Greg) +- Added constants for libxslt and libexslt versions: LIBXSLT_VERSION, + LIBXSLT_DOTTED_VERSION, LIBEXSLT_VERSION and LIBEXSLT_DOTTED_VERSION. (Pierre) +- Fixed possible crash in apache_getenv()/apache_setenv() on invalid parameters. + (Ilia) +- Changed errors to warnings in imagecolormatch(). (Pierre) +- Fixed segfault/leak in imagecolormatch(). (Pierre) +- Fixed small leak in mysqli_stmt_fetch() when bound variable was empty string. + (Andrey) +- Fixed prepared statement name conflict handling in PDO_PGSQL. (Thies, Ilia) +- Fixed memory corruption when PDO::FETCH_LAZY mode is being used. (Ilia) +- Fixed possible leaks in imagecreatefromstring() with invalid data. (Pierre) +- Fixed possible memory corruption inside mb_strcut(). (Ilia) +- Fixed possible header injection by limiting each header to a single line. + (Ilia) +- Fixed possible XSS inside error reporting functionality. (Ilia) +- Fixed many bugs in OCI8. (Tony) +- Fixed crash and leak in mysqli when using 4.1.x client libraries and + connecting to 5.x server. (Andrey) +- Fixed bug #35916 (Duplicate calls to stream_bucket_append() lead to a crash). + (Ilia) +- Fixed bug #35908 (curl extension uses undefined GCRY_THREAD_OPTIONS_USER). + (Ilia) +- Fixed bug #35907 (PDO_OCI uses hardcoded lib path $ORACLE_HOME/lib). (Tony) +- Fixed bug #35887 (wddx_deserialize not parsing dateTime fields properly). + (Derick) +- Fixed bug #35885 (strtotime("NOW") no longer works). (Derick) +- Fixed bug #35821 (array_map() segfaults when exception is throwed from + the callback). (Tony) +- Fixed bug #35817 (unpack() does not decode odd number of hexadecimal values). + (Ilia) +- Fixed bug #35797 (segfault on PDOStatement::execute() with + zend.ze1_compatibility_mode = On). (Tony, Ilia) +- Fixed bug #35781 (stream_filter_append() can cause segfault). (Tony) +- Fixed bug #35760 (sybase_ct doesn't compile on Solaris using old gcc). (Tony) +- Fixed bug #35759 (mysqli_stmt_bind_result() makes huge allocation when + column empty). (Andrey) +- Fixed bug #35751 (using date with a timestamp makes httpd segfault). (Derick) +- Fixed bug #35740 (memory leak when including a directory). (Tony) +- Fixed bug #35730 (ext/mssql + freetds: Use correct character encoding + and allow setting it). (Frank) +- Fixed bug #35723 (xmlrpc_introspection.c fails compile per C99 std). (Jani) +- Fixed bug #35720 (A final constructor can be overwritten). (Marcus) +- Fixed bug #35713 (getopt() returns array with numeric strings when passed + options like '-1'). (Tony) +- Fixed bug #35705 (strtotime() fails to parse soap date format without TZ). + (Ilia) +- Fixed bug #35699 (date() can't handle leap years before 1970). (Derick) +- Fixed bug #35694 (Improved error message for invalid fetch mode). (Ilia) +- Fixed bug #35692 (iconv_mime_decode() segmentation fault; with libiconv + only). (Tony) +- Fixed bug #35690 (pack() tries to allocate huge memory block when packing + float values to strings). (Tony) +- Fixed bug #35669 (imap_mail_compose() crashes with + multipart-multiboundary-email). (Ilia) +- Fixed bug #35660 (AIX TZ variable format not understood, yields UTC + timezone). (Derick) +- Fixed bug #35655 (whitespace following end of heredoc is lost). (Ilia) +- Fixed bug #35630 (strtotime() crashes on certain relative identifiers). + (Ilia) +- Fixed bug #35629 (crash in http:// wrapper on multiple redirects). (Ilia) +- Fixed bug #35624 (strtotime() does not handle 3 character weekdays). (Ilia) +- Fixed bug #35612 (iis6 Access Violation crash). (Dmitry, alacn.uhahaa) +- Fixed bug #35594 (Multiple calls to getopt() may result in a crash). + (rabbitt at gmail dot com, Ilia) +- Fixed bug #35571 (Fixed crash in Apache 2 SAPI when more then one php + script is loaded via SSI include). (Ilia) +- Fixed bug #35570 (segfault when re-using soap client object). (Dmitry) +- Fixed bug #35558 (mktime() interpreting 3 digit years incorrectly). (Ilia) +- Fixed bug #35543 (php crash when calling non existing method of a class + that extends PDO). (Tony) +- Fixed bug #35539 (typo in error message for ErrorException). (Tony) +- FIxed bug #35536 (mysql_field_type() doesn't handle NEWDECIMAL). (Tony) +- Fixed bug #35517 (mysql_stmt_fetch returns NULL on data truncation). (Georg) +- Fixed bug #35509 (string constant as array key has different behavior inside + object). (Dmitry) +- Fixed bug #35508 (PDO fails when unknown fetch mode specified). (Tony) +- Fixed bug #35499 (strtotime() does not handle whitespace around the date + string). (Ilia) +- Fixed bug #35496 (Crash in mcrypt_generic()/mdecrypt_generic() without + proper init). (Ilia) +- Fixed bug #35490 (socket_sendto() unable to handle IPv6 addresses). (Tony) +- Fixed bug #35461 (Ming extension fails to compile with ming 0.3beta1). (Jani) +- Fixed bug #35437 (Segfault or Invalid Opcode 137/1/4). (Dmitry) +- Fixed bug #35470 (Assigning global using variable name from array doesn't + function). (Dmitry) +- Fixed bug #35456 (+ 1 [time unit] format did not work). (Ilia) +- Fixed bug #35447 (xml_parse_into_struct() chokes on the UTF-8 BOM). (Rob) +- Fixed bug #35431 (PDO crashes when using LAZY fetch with fetchAll). (Wez) +- Fixed bug #35430 (PDO crashes on incorrect FETCH_FUNC use). (Tony) +- Fixed bug #35427 (str_word_count() handles '-' incorrectly). (Ilia) +- Fixed bug #35425 (idate() function ignores timezone settings). (Ilia) +- Fixed bug #35422 (strtotime() does not parse times with UTC as timezone). + (Ilia) +- Fixed bug #35414 (strtotime() no longer works with ordinal suffix). (Ilia) +- Fixed bug #35410 (wddx_deserialize() doesn't handle large ints as keys + properly). (Ilia) +- Fixed bug #35409 (undefined reference to 'rl_completion_matches'). (Jani) +- Fixed bug #35399 (Since fix of bug #35273 SOAP decoding of + soapenc:base64binary fails). (Dmitry) +- Fixed bug #35393 (changing static protected members from outside the class, + one more reference issue). (Dmitry) +- Fixed bug #35381 (ssl library is not initialized properly). (Alan) +- Fixed bug #35377 (PDO_SQLITE: undefined reference to "fdatasync"). + (Nuno, Jani) +- Fixed bug #35373 (HP-UX "alias not allowed in this configuration"). (Dmitry) +- Fixed bug #35288 (iconv() function defined as libiconv()). (Nuno) +- Fixed bug #35103 (mysqli handles bad unsigned (big)int incorrectly).(Andrey) +- Fixed bug #35062 (socket_read() produces warnings on non blocking sockets). + (Nuno, Ilia) +- Fixed bug #35028 (SimpleXML object fails FALSE test). (Marcus) +- Fixed bug #34729 (Crash in ZTS mode under Apache). (Dmitry, Zeev) +- Fixed bug #34429 (Output buffering cannot be turned off with FastCGI). + (Dmitry, Ilya) +- Fixed bug #34359 (Possible crash inside fopen http wrapper). (Ilia,Sara,Nuno) +- Fixed bug #33789 (Many Problems with SunFuncs). (Derick) +- Fixed bug #33671 (sun_rise and sun_set don't return a GMT timestamp if one + passes an offset). (Derick) +- Fixed bug #32820 (date_sunrise and date_sunset don't handle GMT offset + well). (Derick) +- Fixed bug #31347 (is_dir and is_file (incorrectly) return true for any string + greater then 255 characters). (Nuno,Ilia) +- Fixed bug #30937 (date_sunrise() & date_sunset() don't handle endless + day/night at high latitudes). (Derick) +- Fixed bug #30760 (Remove MessageBox on win32 for E_CORE errors if + display_startup_error is off). (Ilia) +- Fixed bug #29955 (mb_strtoupper() / lower() broken with Turkish encoding). + (Rui) +- Fixed bug #28899 (mb_substr() and substr() behave differently when + "mbstring.func_overload" is enabled). (Rui) +- Fixed bug #27678 (number_format() crashes with large numbers). (Marcus) diff --git a/data/releases/5.1/5.1.2/release.json b/data/releases/5.1/5.1.2/release.json new file mode 100644 index 0000000000..3deeb30940 --- /dev/null +++ b/data/releases/5.1/5.1.2/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.1.2", + "date": "12 Jan 2006", + "tags": [], + "source": [ + { + "filename": "php-5.1.2.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.1/5.1.3/announcement.html b/data/releases/5.1/5.1.3/announcement.html new file mode 100644 index 0000000000..fd93df9272 --- /dev/null +++ b/data/releases/5.1/5.1.3/announcement.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/5.1.3/changes.txt b/data/releases/5.1/5.1.3/changes.txt new file mode 100644 index 0000000000..4a05377d00 --- /dev/null +++ b/data/releases/5.1/5.1.3/changes.txt @@ -0,0 +1,254 @@ +- Updated bundled PCRE library to version 6.6. (Andrei) +- Moved extensions to PECL: + . ext/msession (Derick) +- Reimplemented FastCGI interface. (Dmitry) +- Improved SPL: (Marcus) + - Fixed issues with not/double calling of constructors of SPL iterators. + - Fixed issues with info-class/file-class in SPL directory handling classes. + - Fixed ArrayIterator::seek(). + - Added SimpleXMLIterator::count(). + - Dropped erroneous RecursiveDirectoryIterator::getSubPathInfo(). +- Improved SimpleXML: (Marcus, Rob) + . Added SimpleXMLElement::getName() to retrieve name of element. + . Added ability to create elements on the fly. + . Added addChild() method for element creation supporting namespaces. + . Added addAttribute() method for attribute creation supporting namespaces. + . Added ability to delete specific elements and attributes by offset. +- Improved Reflection API: (Marcus) + . Added ReflectionClass::newInstanceArgs($args). + . Added ability to analyze extension dependency. + . Added ReflectionFunction::isDeprecated() and constant IS_DEPRECATED. + . Added ReflectionParameter::getDeclaringClass(). + . Changed reflection constants to be prefixed with IS_. (Johannes) +- Improved cURL extension: (Ilia) + . Added curl_setopt_array() function that allows setting of multiple + options via an associated array. + . Added the ability to retrieve the request message sent to the server. +- Improved GD extension: (Pierre) + . Added a weak/tolerant mode to the JPEG loader. + . Added filtering mode option to imagepng() to allow reducing file size. + . Fixed imagecolorallocate() and imagecolorallocatelapha() to return FALSE + on error. +- Changed get_headers() to retrieve headers also from non-200 responses. + (Ilia) +- Changed get_headers() to use the default context. (Ilia) +- Added lchown() and lchgrp() to change user/group ownership of symlinks. + (Derick) +- Added support for exif date format in strtotime(). (Derick) +- Added a check for special characters in the session name. (Ilia) +- Added "consumed" stream filter. (Marcus) +- Added new mysqli constants for BIT and NEW_DECIMAL field types: + MYSQLI_TYPE_NEWDECIMAL and MYSQLI_TYPE_BIT. FR #36007. (Georg) +- Added imap_savebody() that allows message body to be written to a + file. (Mike) +- Added overflow checks to wordwrap() function. (Ilia) +- Added support for BINARY_DOUBLE and BINARY_FLOAT to PDO_OCI and OCI8 + (also fixes bug #36764). (Tony) +- Eliminated run-time constant fetching for TRUE, FALSE and NULL. (Dmitry) +- Removed the E_STRICT deprecation notice from "var". (Ilia) +- Fixed reading stream filters never notified about EOF. (Mike) +- Fixed tempnam() 2nd parameter to be checked against path components. (Ilia) +- Fixed a bug that would not fill in the fifth argument to preg_replace() + properly, if the variable was not declared previously. (Andrei) +- Fixed safe_mode check for source argument of the copy() function. (Ilia) +- Fixed mysqli bigint conversion under Windows (Georg) +- Fixed XSS inside phpinfo() with long inputs. (Ilia) +- Fixed Apache2 SAPIs header handler modifying header strings. (Mike) +- Fixed 'auto_globals_jit' to work together with 'register_argc_argv'. (Dmitry) +- Fixed offset/length parameter validation in substr_compare() function. (Ilia) +- Fixed debug_zval_dump() to support private and protected members. (Dmitry) +- Fixed SoapFault::getMessage(). (Dmitry) +- Fixed issue with iconv_mime_decode where the "encoding" would only allow + upper case specifiers. (Derick) +- Fixed tiger hash algorithm generating wrong results on big endian platforms. + (Mike) +- Fixed crash with DOMImplementation::createDocumentType("name:"). (Mike) +- Fixed bug #37205 (Serving binary content/images fails with "comm with server + aborted" FastCGI err). (Dmitry) +- Fixed bug #37192 (cc may complain about non-constant initializers in + hash_adler.c). (Mike) +- Fixed bug #37191 (chmod takes off sticky bit when safe_mode is On). (Tony) +- Fixed bug #37167 (PDO segfaults when throwing exception from the + fetch handler). (Tony) +- Fixed bug #37162 (wddx does not build as a shared extension). + (jdolecek at NetBSD dot org, Ilia) +- Fixed bug #37158 (fread behavior changes after calling + stream_wrapper_register). (Wez) +- Fixed bug #37138 (__autoload tries to load callback'ed self and parent). + (Dmitry) +- Fixed bug #37103 (libmbfl headers not installed). (Jani) +- Fixed bug #37062 (compile failure on ARM architecture). (Tony) +- Fixed bug #37061 (curl_exec() doesn't zero-terminate binary strings). (Tony) +- Fixed bug #37060 (Type of retval of Countable::count() is not checked). + (Johannes) +- Fixed bug #37059 (oci_bind_by_name() doesn't support RAW and LONG RAW + fields). (Tony) +- Fixed bug #37057 (xmlrpc_decode() may produce arrays with numeric strings, + which are unaccessible). (Tony) +- Fixed bug #37055 (incorrect reference counting for persistent OCI8 + connections). (Tony) +- Fixed bug #37054 (SoapClient Error Fetching http headers). (Dmitry) +- Fixed bug #37053 (html_errors with internal classes produces wrong links). + (Tony) +- Fixed bug #37046 (foreach breaks static scope). (Dmitry) +- Fixed bug #37045 (Fixed check for special chars for http redirects). (Ilia) +- Fixed bug #37017 (strtotime fails before 13:00:00 with some time zones + identifiers). (Derick) +- Fixed bug #37002 (Have to quote literals in INI when concatenating with + vars). (Dmitry)z +- Fixed bug #36988 (mktime freezes on long numbers). (Derick) +- Fixed bug #36981 (SplFileObject->fgets() ignores max_length). (Tony) +- Fixed bug #36957 (serialize() does not handle recursion). (Ilia) +- Fixed bug #36944 (strncmp & strncasecmp do not return false on negative + string length). (Tony) +- Fixed bug #36941 (ArrayIterator does not clone itself). (Marcus) +- Fixed bug #36934 (OCILob->read() doesn't move internal pointer when + reading 0's). (Tony) +- Fixed bug #36908 (wsdl default value overrides value in soap request). + (Dmitry) +- Fixed bug #36898 (__set() leaks in classes extending internal ones). + (Tony, Dmitry) +- Fixed bug #36886 (User filters can leak buckets in some situations). (Ilia) +- Fixed bug #36878 (error messages are printed even though an exception has + been thrown). (Tony) +- Fixed bug #36875 (is_*() functions do not account for open_basedir). (Ilia) +- Fixed bug #36872 (session_destroy() fails after call to + session_regenerate_id(true)). (Ilia) +- Fixed bug #36869 (memory leak in output buffering when using chunked + output). (Tony) +- Fixed bug #36859 (DOMElement crashes when calling __construct when + cloning). (Tony) +- Fixed bug #36857 (Added support for partial content fetching to the + HTTP streams wrapper). (Ilia) +- Fixed bug #36851 (Documentation and code discrepancies for NULL + data in oci_fetch_*() functions). (Tony) +- Fixed bug #36825 (Exceptions thrown in ArrayObject::offsetGet cause + segfault). (Tony) +- Fixed bug #36820 (Privileged connection with an Oracle password file + fails). (Tony) +- Fixed bug #36809 (__FILE__ behavior changed). (Dmitry) +- Fixed bug #36808 (syslog ident becomes garbage between requests). (Tony) +- Fixed bug #36802 (mysqli_set_charset() crash with a non-open connection). + (Ilia) +- Fixed bug #36756 (DOMDocument::removeChild corrupts node). (Rob) +- Fixed bug #36749 (SOAP: 'Error Fetching http body' when using HTTP Proxy). + (Dmitry) +- Fixed bug #36745 (No error message when load data local file isn't found). + (Georg) +- Fixed bug #36743 (In a class extending XMLReader array properties are not + writable). (Tony) +- Fixed bug #36727 (segfault in pdo_pgsql bindValue() when no parameters are + defined). (Tony) +- Fixed bug #36721 (The SoapServer is not able to send a header that it didn't + receive). (Dmitry) +- Fixed bug #36697 (Transparency is lost when using imagecreatetruecolor). + (Pierre) +- Fixed bug #36689 (Removed arbitrary limit on the length of syslog messages). + (Ilia) +- Fixed bug #36656 (http_build_query generates invalid URIs due to use of + square brackets). (Mike) +- Fixed bug #36638 (strtotime() returns false when 2nd argument < 1). (Derick) +- Fixed bug #36629 (SoapServer::handle() exits on SOAP faults). (Dmitry) +- Fixed bug #36625 (pg_trace() does not work). (iakio at mono-space dot net) +- Fixed bug #36614 (Segfault when using Soap). (Dmitry) +- Fixed bug #36611 (assignment to SimpleXML object attribute changes argument + type to string). (Tony) +- Fixed bug #36606 (pg_query_params() changes arguments type to string). (Tony) +- Fixed bug #36599 (DATE_W3C format constant incorrect). (Derick) +- Fixed bug #36575 (SOAP: Incorrect complex type instantiation with + hierarchies). (Dmitry) +- Fixed bug #36572 (Added PDO::MYSQL_ATTR_DIRECT_QUERY constant that should + be set when executing internal queries like "show master status" via MySQL). + (Ilia) +- Fixed bug #36568 (memory_limit setting on win32 has no effect). (Dmitry) +- Fixed bug #36513 (comment will be outputted in last line). (Dmitry) +- Fixed bug #36510 (strtotime() fails to parse date strings with tabs). + (Ilia, Derick) +- Fixed bug #36459 (Incorrect adding PHPSESSID to links, which contains \r\n). + (Ilia) +- Fixed bug #36458 (sleep() accepts negative values). (Ilia) +- Fixed bug #36436 (DBA problem with Berkeley DB4). (Marcus) +- Fixed bug #36434 (Improper resolution of declaring class name of an + inherited property). (Ilia) +- Fixed bug #36420 (segfault when access result->num_rows after calling + result->close()). (Ilia,Tony) +- Fixed bug #36403 (oci_execute() no longer supports OCI_DESCRIBE_ONLY). (Tony) +- Fixed bug #36400 (Custom 5xx error does not return correct HTTP response error + code). (Tony) +- Fixed bug #36396 (strtotime() fails to parse dates in dd-mm-yyyy format). + (Derick) +- Fixed bug #36388 (ext/soap crashes when throwing exception and session + persistence). (David) +- Fixed bug #36382 (PDO/PgSQL's getColumnMeta() crashes). (Derick) +- Fixed bug #36359 (splFileObject::fwrite() doesn't write when no data + length specified). (Tony) +- Fixed bug #36351 (parse_url() does not parse numeric paths properly). (Ilia) +- Fixed bug #36345 (PDO/MySQL problem loading BLOB over 1MB). (Ilia) +- Fixed bug #36337 (ReflectionProperty fails to return correct visibility). + (Ilia) +- Fixed bug #36334 (Added missing documentation about realpath cache INI + settings). (Ilia) +- Fixed bug #36308 (ReflectionProperty::getDocComment() does not reflect + extended class commentary). (Ilia) +- Fixed bug #36306 (crc32() differ on 32-bit and 64-bit platforms) + (anight@eyelinkmedia dot com, Pierre) +- Fixed bug #36303 (foreach on error_zval produces segfault). (Dmitry) +- Fixed bug #36295 (typo in SplFileObject::flock() parameter name). (Tony) +- Fixed bug #36287 (Segfault with SplFileInfo conversion). (Marcus) +- Fixed bug #36283 (SOAPClient Compression Broken). (Dmitry) +- Fixed bug #36268 (Object destructors called even after fatal errors). (Dmitry) +- Fixed bug #36258 (SplFileObject::getPath() may lead to segfault). (Tony) +- Fixed bug #36250 (PHP causes ORA-07445 core dump in Oracle server 9.2.x). + (Tony) +- Fixed bug #36242 (Possible memory corruption in stream_select()). (Tony) +- Fixed bug #36235 (ocicolumnname returns false before a successful fetch). + (Tony) +- Fixed bug #36226 (Inconsistent handling when passing potential arrays). + (Dmitry) +- Fixed bug #36224 (date(DATE_ATOM) gives wrong results). + (Derick, Hannes Magnusson) +- Fixed bug #36222 (errorInfo in PDOException is always NULL). (Ilia) +- Fixed bug #36208 (symbol namespace conflicts using bundled gd). (Jakub Moc) +- Fixed bug #36205 (Memory leaks on duplicate cookies). (Dmitry) +- Fixed bug #36185 (str_rot13() crash on non-string parameter). (Pierre) +- Fixed bug #36176 (PDO_PGSQL - PDO::exec() does not return number of rows + affected by the operation). (Ilia) +- Fixed bug #36158 (SIGTERM is not handled correctly when running as a + FastCGI server). (Dmitry) +- Fixed bug #36152 (problems with curl+ssl and pgsql+ssl in same PHP). (Mike) +- Fixed bug #36148 (unpack("H*hex", $data) is adding an extra character to + the end of the string). (Ilia) +- Fixed bug #36134 (DirectoryIterator constructor failed to detect empty + directory names). (Ilia) +- Fixed bug #36113 (Reading records of unsupported type causes segfault). + (Tony) +- Fixed bug #36096 (oci_result() returns garbage after oci_fetch() failed). + (Tony) +- Fixed bug #36083 (SoapClient waits for responses on one-way operations). + (Dmitry) +- Fixed bug #36071 (Engine Crash related with 'clone'). (Dmitry) +- Fixed bug #36055 (possible OCI8 crash in multi-threaded environment). (Tony) +- Fixed bug #36046 (parse_ini_file() miscounts lines in multi-line values). + (Ilia) +- Fixed bug #36038 (ext/hash compile failure on Mac OSX). (Tony) +- Fixed bug #36037 (heredoc adds extra line number). (Dmitry) +- Fixed bug #36016 (realpath cache memleaks). (Dmitry, Nuno) +- Fixed bug #36011 (Strict errormsg wrong for call_user_func() and the likes). + (Marcus) +- Fixed bug #36010 (Segfault when re-creating and re-executing statements with + bound parameters). (Tony) +- Fixed bug #36006 (Problem with $this in __destruct()). (Dmitry) +- Fixed bug #35999 (recursive mkdir() does not work with relative path + like "foo/bar"). (Tony) +- Fixed bug #35998 (SplFileInfo::getPathname() returns unix style filenames + in win32). (Marcus) +- Fixed bug #35988 (Unknown persistent list entry type in module shutdown). + (Dmitry) +- Fixed bug #35954 (Fatal com_exception casting object). (Rob) +- Fixed bug #35900 (stream_select() should warning when tv_sec is negative). + (Ilia) +- Fixed bug #35785 (SimpleXML causes memory read error zend engine). (Marcus) +- Fixed bug #34272 (empty array onto COM object blows up). (Rob) +- Fixed bug #33292 (apache_get_modules() crashes on Windows). (Edin) +- Fixed bug #29476 (sqlite_fetch_column_types() locks the database forever). + (Ilia) diff --git a/data/releases/5.1/5.1.3/release.json b/data/releases/5.1/5.1.3/release.json new file mode 100644 index 0000000000..cc893b68bc --- /dev/null +++ b/data/releases/5.1/5.1.3/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.1.3", + "date": "02 May 2006", + "tags": [], + "source": [ + { + "filename": "php-5.1.3.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.1/5.1.4/announcement.html b/data/releases/5.1/5.1.4/announcement.html new file mode 100644 index 0000000000..bfb97f3353 --- /dev/null +++ b/data/releases/5.1/5.1.4/announcement.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/5.1.4/changes.txt b/data/releases/5.1/5.1.4/changes.txt new file mode 100644 index 0000000000..f6cb095545 --- /dev/null +++ b/data/releases/5.1/5.1.4/changes.txt @@ -0,0 +1,9 @@ +- Added "capture_peer_cert" and "capture_peer_cert_chain" context options + for SSL streams. (Wez). +- Added PDO::PARAM_EVT_* family of constants. (Sara) +- Fixed possible crash in highlight_string(). (Dmitry) +- Fixed bug #37291 (FastCGI now longer works with isapi_fcgi.dll). (Dmitry) +- Fixed bug #37277 (cloning Dom Documents or Nodes does not work). (Rob) +- Fixed bug #37276 (problems with $_POST array). (Dmitry) +- Fixed bug #36632 (bad error reporting for pdo_odbc exec UPDATE). (Wez). +- Fixed bug #35552 (crash when pdo_odbc prepare fails). (Wez). diff --git a/data/releases/5.1/5.1.4/release.json b/data/releases/5.1/5.1.4/release.json new file mode 100644 index 0000000000..299eda1f0a --- /dev/null +++ b/data/releases/5.1/5.1.4/release.json @@ -0,0 +1,15 @@ +{ + "version": "5.1.4", + "date": "04 May 2006", + "tags": [], + "source": [ + { + "filename": "php-5.1.4.tar.bz2", + "name": "Source (tar.bz2)" + }, + { + "filename": "php-5.1.4.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.1/5.1.5/announcement.html b/data/releases/5.1/5.1.5/announcement.html new file mode 100644 index 0000000000..53fa9e6182 --- /dev/null +++ b/data/releases/5.1/5.1.5/announcement.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/5.1.5/changes.txt b/data/releases/5.1/5.1.5/changes.txt new file mode 100644 index 0000000000..62227f348c --- /dev/null +++ b/data/releases/5.1/5.1.5/changes.txt @@ -0,0 +1,27 @@ +- Fixed overflow on 64bit systems in str_repeat() and wordwrap(). (Stefan E.) +- Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or safe_mode are + enabled. (Stefan E., Ilia) +- Fixed bug #38322 (reading past array in sscanf() leads to arbitrary code + execution). (Tony) +- Fixed bug #38125 (undefined reference to spl_dual_it_free_storage). (Marcus) +- Fixed bug #38112 (corrupted gif segfaults) (Pierre) +- Fixed bug #37587 (var without attribute causes segfault). (Marcus) +- Fixed bug #37576 (FastCGI env (cgi vars) table overflow). (Piotr) +- Fixed bug #37496 (FastCGI output buffer overrun). (Piotr, Dmitry) +- Fixed bug #37487 (oci_fetch_array() array-type should always default to + OCI_BOTH). (Tony) +- Fixed bug #37416 (iterator_to_array() hides exceptions thrown in rewind() + method). (Tony) +- Fixed bug #37392 (Unnecessary call to OCITransRollback() at the end of + request). (Tony) +- Fixed bug #37341 ($_SERVER in included file is shortened to two entries, + if $_ENV gets used). (Dmitry) +- Fixed bug #37313 (sigemptyset() used without including+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.1/5.1.6/changes.txt b/data/releases/5.1/5.1.6/changes.txt new file mode 100644 index 0000000000..3874bc4bd4 --- /dev/null +++ b/data/releases/5.1/5.1.6/changes.txt @@ -0,0 +1,3 @@ +- Fixed memory_limit on 64bit systems. (Stefan E.) +- Fixed bug #38488 (Access to "php://stdin" and family crashes PHP on win32). + (Dmitry) diff --git a/data/releases/5.1/5.1.6/release.json b/data/releases/5.1/5.1.6/release.json new file mode 100644 index 0000000000..251199a07d --- /dev/null +++ b/data/releases/5.1/5.1.6/release.json @@ -0,0 +1,15 @@ +{ + "version": "5.1.6", + "date": "24 Aug 2006", + "tags": [], + "source": [ + { + "filename": "php-5.1.6.tar.bz2", + "name": "Source (tar.bz2)" + }, + { + "filename": "php-5.1.6.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.0/announcement.html b/data/releases/5.2/5.2.0/announcement.html new file mode 100644 index 0000000000..c1f71d5c4f --- /dev/null +++ b/data/releases/5.2/5.2.0/announcement.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/5.2.0/changes.txt b/data/releases/5.2/5.2.0/changes.txt new file mode 100644 index 0000000000..154d3d2308 --- /dev/null +++ b/data/releases/5.2/5.2.0/changes.txt @@ -0,0 +1,487 @@ +- Updated bundled OpenSSL to version 0.9.8d in the Windows distro. (Edin) +- Updated Postgresql client libraries to 8.1.4 in the Windows distro. (Edin) +- Updated PCRE to version 6.7. (Ilia) +- Updated libsqlite in ext/pdo_sqlite to 3.3.7. (Ilia) +- Updated bundled MySQL client library to version 5.0.22 in the Windows + distribution. (Edin) +- Updated timezonedb to version 2006.7. (Derick) + +- Added ability to make SOAP call userspace PHP<->XML converters. (Dmitry) +- Added support for character sets in pg_escape_string() for PostgreSQL 8.1.4 + and higher. (Ilia) +- Added support for character sets in PDO quote() method for PostgreSQL 8.1.4 + and higher. (Ilia) +- Added DSA key generation support to openssl_pkey_new(), FR #38731 (marci + at balabit dot hu, Tony) +- Added SoapServer::setObject() method (it is a simplified version of + SoapServer::setClass() method). (Dmitry) +- Added support for hexadecimal entity in imagettftext() for the bundled GD. + (Pierre) +- Added support for httpOnly flag for session extension and cookie setting + functions. (Scott MacVicar, Ilia) +- Added version specific registry keys to allow different configurations for + different php version. (Richard, Dmitry) +- Added "PHPINIDir" Apache directive to apache and apache_hooks SAPIs. + (Dmitry) +- Added an optional boolean parameter to memory_get_usage() and + memory_get_peak_usage() to get memory size allocated by emalloc() or real + size of memory allocated from system. (Dmitry) +- Added Zip Archive extension. (Pierre) +- Added RFC1867 fileupload processing hook. (Stefan E.) +- Added JSON and Filter extensions. (Derick, Rasmus) +- Added error messages to disk_free_space() and disk_total_space() functions. + FR #37971 (Tony) +- Added PATHINFO_FILENAME option to pathinfo() to get the filename. + (Toby S. and Christian S.) +- Added array_fill_keys() function. (Marcus, Matt Wilmas) +- Added posix_initgroups() function. (Ilia) +- Added an optional parameter to parse_url() to allow retrieval of distinct + URL components. (Ilia) +- Added optional parameter to http_build_query() to allow specification of + string separator. (Ilia) +- Added image_type_to_extension() function. (Hannes, Ilia) +- Added allow_url_include ini directive to complement allow_url_fopen. (Rasmus) +- Added automatic module globals management. (Dmitry) +- Added RFC2397 (data: stream) support. (Marcus) +- Added new error mode E_RECOVERABLE_ERROR. (Derick, Marcus, Tony) +- Added support for getenv() input filtering. (Rasmus) +- Added support for constructors in interfaces to force constructor signature + checks in implementations. (Marcus) +- Added memory_get_peak_usage() function for retrieving peak memory usage of + a PHP script. (Ilia) +- Added pg_field_table() function. (Edin) +- Added SimpleXMLElement::saveXML() as an alias for SimpleXMLElement::asXML(). + (Hannes) +- Added DOMNode::getNodePath() for getting an XPath for a node. (Christian) +- Added gmp_nextprime() function. (ants dot aasma at gmail dot com, Tony) +- Added error_get_last() function. (Mike) + +- Removed current working directory from the php.ini search path for CLI and + re-added it for other SAPIs (restore to pre 5.1.x behavior). (Edin) +- Moved extensions to PECL: + . ext/filepro (Derick, Tony) + . ext/hwapi (Derick, Tony) +- Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or + safe_mode are enabled. (Stefan E., Ilia) + +- Increased default memory limit to 16 megabytes to accommodate for a more + accurate memory utilization measurement. +- In addition to path to php.ini, PHPRC now may specify full file name. + (Dmitry) + +- Optimized array/HashTable copying. (Matt Wilmas, Dmitry) +- Optimized zend_try/zend_catch macros by eliminating memcpy(3). (Dmitry) +- Optimized require_once() and include_once() by eliminating fopen(3) on + second usage. (Dmitry) +- Optimized request shutdown sequence. Restoring ini directives now iterates + only over modified directives instead of all. (Dmitry) + +- Changed priority of PHPRC environment variable on win32 to be higher then + value from registry. (Dmitry) +- Changed __toString() to be called wherever applicable. (Marcus) +- Changed E_ALL error reporting mode to include E_RECOVERABLE_ERROR. (Marcus) +- Changed realpath cache to be disabled when "open_basedir" or "safe_mode" + are enabled on per-request basis. (Ilia) + +- Improved SNMP extension: (Jani) + . Renamed snmp_set_oid_numeric_print() to snmp_set_oid_output_format(). + . Added 2 new constants: SNMP_OID_OUTPUT_FULL and SNMP_OID_OUTPUT_NUMERIC + . Fixed bug #37564 (AES privacy encryption not possible due to net-snmp 5.2 + compatibility issue). (Patch: scott dot moynes+php at gmail dot com) +- Improved OpenSSL extension: (Pierre) + . Added support for all supported algorithms in openssl_verify + . Added openssl_pkey_get_details, returns the details of a key + . Added x509 v3 extensions support + . Added openssl_csr_get_subject() and openssl_csr_get_public_key() + . Added 3 new constants OPENSSL_VERSION_TEXT and OPENSSL_VERSION_NUMBER and + OPENSSL_KEYTYPE_EC +- Improved the Zend memory manager: (Dmitry) + . Removed unnecessary "--disable-zend-memory-manager" configure option. + . Added "--enable-malloc-mm" configure option which is enabled by default in + debug builds to allow using internal and external memory debuggers. + . Allow tweaking the memory manager with ZEND_MM_MEM_TYPE and ZEND_MM_SEG_SIZE + environment variables. + . For more information: Zend/README.ZEND_MM +- Improved safe_mode check for the error_log() function. (Ilia) +- Improved the error reporting in SOAP extension on request failure. (Ilia) +- Improved crypt() on win32 to be about 10 times faster and to have friendlier + license. (Frank, Dmitry) +- Improved performance of the implode() function on associated arrays. (Ilia) +- Improved performance of str_replace() when doing 1 char to 1 char or 1 char + to many chars replacement. (Ilia) +- Improved apache2filter SAPI: + . Allowed PHP to be an arbitrary filter in the chain and read the script from + the Apache stream. (John) + . Added support for apache2filter in the Windows build including binary + support for both Apache 2.0.x (php5apache2_filter.dll) and Apache 2.2.x + (php5apache2_2_filter.dll). (Edin) +- Improved apache2handler SAPI: + . Changed ap_set_content_type() to be called only once. (Mike) + . Added support for Apache 2.2 handler in the Windows distribution. (Edin) +- Improved FastCGI SAPI: (Dmitry) + . Removed source compatibility with libfcgi. + . Optimized access to FastCGI environment variables by using HashTable + instead of linear search. + . Allowed PHP_FCGI_MAX_REQUESTS=0 that assumes no limit. + . Allowed PHP_FCGI_CHILDREN=0 that assumes no worker children. (FastCGI + requests are handled by main process itself) +- Improved CURL: + . Added control character checks for "open_basedir" and "safe_mode" checks. + (Ilia) + . Added implementation of curl_multi_info_read(). (Brian) +- Improved PCRE: (Andrei) + . Added run-time configurable backtracking/recursion limits. + . Added preg_last_error(). (Andrei) +- Improved PDO: + . Added new attribute ATTR_DEFAULT_FETCH_MODE. (Pierre) + . Added FETCH_PROPS_LATE. (Marcus) +- Improved SPL: (Marcus) + . Made most iterator code exception safe. + . Added RegExIterator and RecursiveRegExIterator. + . Added full caching support and ArrayAccess to CachingIterator. + . Added array functions to ArrayObject/ArrayIterator and made them faster. + . Added support for reading csv and skipping empty lines in SplFileObject. + . Added CachingIterator::TOSTRING_USE_INNER, calls inner iterator __toString. + . Added ability to set the CSV separator per SplFileObject. +- Improved xmlReader: (Rob) + . Added readInnerXml(), xmlReader::setSchema(). + . Added readInnerXML(), readOuterXML(), readString(), setSchema(). (2.6.20+) + . Changed to passing libxml options when loading reader. + +- Fixed invalid read in imagecreatefrompng when an empty file is given + (Pierre, Tony) +- Fixed infinite loop when a wrong color index is given to imagefill (Pierre) +- Fixed mess with CGI/CLI -d option (now it works with cgi; constants are + working exactly like in php.ini; with FastCGI -d affects all requests). + (Dmitry) +- Fixed missing open_basedir check inside chdir() function. (Ilia) +- Fixed overflow on 64bit systems in str_repeat() and wordwrap(). (Stefan E.) +- Fixed XSLTProcessor::importStylesheet() to return TRUE on success + (Christian) +- Fixed leaks in openssl_csr_sign and openssl_csr_new (Pierre) +- Fixed phpinfo() cutoff of variables at \0. (Ilia) +- Fixed a bug in the filter extension that prevented magic_quotes_gpc from + being applied when RAW filter is used. (Ilia) +- Fixed memory leaks in openssl streams context options. (Pierre) +- Fixed handling of extremely long paths inside tempnam() function. (Ilia) +- Fixed bug #39721 (Runtime inheritance causes data corruption). (Dmitry) +- Fixed bug #39304 (Segmentation fault with list unpacking of string offset). + (Dmitry) +- Fixed bug #39192 (Not including nsapi.h properly with SJSWS 7). This will + make PHP 5.2 compatible to new Sun Webserver. (Uwe) +- Fixed bug #39140 (Uncaught exception may cause crash). (Dmitry) +- Fixed bug #39125 (Memleak when reflecting non-existing class/method). (Tony) +- Fixed bug #39067 (getDeclaringClass() and private properties). (Tony) +- Fixed bug #39039 (SSL: fatal protocol error when fetching HTTPS from servers + running Google web server). (Ilia) +- Fixed bug #39035 (Compatibility issue between DOM and + zend.ze1_compatibility_mode). (Rob) +- Fixed bug #39034 (curl_exec() with return transfer returns TRUE on empty + files). (Ilia) +- Fixed bug #39032 (strcspn() stops on null character). (Tony) +- Fixed bug #39020 (PHP in FastCGI server mode crashes). (Dmitry) +- Fixed bug #39017 (foreach(($obj = new myClass) as $v); echo $obj; + segfaults). (Dmitry) +- Fixed bug #39004 (Fixed generation of config.nice with autoconf 2.60). (Ilia) +- Fixed bug #39003 (__autoload() is called for type hinting). (Dmitry, Tony) +- Fixed bug #39001 (ReflectionProperty returns incorrect declaring class for + protected properties). (Tony) +- Fixed bug #38996 (PDO_MYSQL doesn't check connections for liveness). (Tony) +- Fixed bug #38993 (Fixed safe_mode/open_basedir checks for session.save_path, + allowing them to account for extra parameters). (Ilia) +- Fixed bug #38989 (Absolute path with slash at beginning doesn't work on win). + (Dmitry) +- Fixed bug #38985 (Can't cast COM objects). (Wez) +- Fixed bug #38981 (using FTP URLs in get_headers() causes crash). (Tony) +- Fixed bug #38963 (Fixed a possible open_basedir bypass in tempnam()). (Ilia) +- Fixed bug #38961 (metaphone() results in segmentation fault on NetBSD). + (Tony) +- Fixed bug #38949 (Cannot get xmlns value attribute). (Rob) +- Fixed bug #38942 (Double old-style-ctor inheritance). (Dmitry) +- Fixed bug #38941 (imap extension does not compile against new version of the + imap library). (Ilia) +- Fixed bug #38934 (move_uploaded_file() cannot read uploaded file outside of + open_basedir). (Ilia) +- Fixed bug #38904 (apache2filter changes cwd to /). (Ilia, Hannes) +- Fixed bug #38891 (get_headers() do not work with curl-wrappers). (Ilia) +- Fixed bug #38882 (ldap_connect causes segfault with newer versions of + OpenLDAP). (Tony) +- Fixed bug #38859 (parse_url() fails if passing '@' in passwd). (Tony) +- Fixed bug #38850 (lookupNamespaceURI doesn't return default namespace). (Rob) +- Fixed bug #38844 (curl_easy_strerror() is defined only since cURL 7.12.0). + (Tony) +- Fixed bug #38813 (DOMEntityReference->__construct crashes when called + explicitly). (Rob) +- Fixed bug #38808 ("maybe ref" issue for current() and others). (Dmitry) +- Fixed bug #38779 (engine crashes when require()'ing file with syntax error + through userspace stream wrapper). (Tony, Dmitry) +- Fixed bug #38772 (inconsistent overriding of methods in different visibility + contexts). (Dmitry) +- Fixed bug #38759 (PDO sqlite2 empty query causes segfault). (Tony) +- Fixed bug #38721 (Invalid memory read in date_parse()). (Tony, Derick) +- Fixed bug #38700 (SoapClient::__getTypes never returns). (Dmitry) +- Fixed bug #38693 (curl_multi_add_handle() set curl handle to null). (Ilia) +- Fixed bug #38687 (sockaddr local storage insufficient for all sock families). + (Sara) +- Fixed bug #38661 (mixed-case URL breaks url-wrappers). (Ilia) +- Fixed bug #38653 (memory leak in ReflectionClass::getConstant()). (Tony) +- Fixed bug #38649 (uninit'd optional arg in stream_socket_sendto()). (Sara) +- Fixed bug #38637 (curl_copy_handle() fails to fully copy the cURL handle). + (Tony, Ilia) +- Fixed bug #38624 (Strange warning when incrementing an object property and + exception is thrown from __get method). (Tony) +- Fixed bug #38623 (leaks in a tricky code with switch() and exceptions). + (Dmitry) +- Fixed bug #38579 (include_once() may include the same file twice). (Dmitry) +- Fixed bug #38574 (missing curl constants and improper constant detection). + (Ilia) +- Fixed bug #38543 (shutdown_executor() may segfault when memory_limit is too + low). (Dmitry) +- Fixed bug #38535 (memory corruption in pdo_pgsql driver on error retrieval + inside a failed query executed via query() method). (Ilia) +- Fixed bug #38534 (segfault when calling setlocale() in userspace session + handler). (Tony) +- Fixed bug #38524 (strptime() does not initialize the internal date storage + structure). (Ilia) +- Fixed bug #38511, #38473, #38263 (Fixed session extension request shutdown + order to ensure it is shutdown before the extensions it may depend on). + (Ilia) +- Fixed bug #38488 (Access to "php://stdin" and family crashes PHP on win32). + (Dmitry) +- Fixed bug #38474 (getAttribute select attribute by order, even when + prefixed). (Rob) +- Fixed bug #38467 (--enable-versioning causes make fail on OS X). (Tony) +- Fixed bug #38465 (ReflectionParameter fails if default value is an access + to self::). (Johannes) +- Fixed bug #38464 (array_count_values() mishandles numeric strings). + (Matt Wilmas, Ilia) +- Fixed bug #38461 (setting private attribute with __set() produces + segfault). (Tony) +- Fixed bug #38458, PECL bug #8944, PECL bug #7775 (error retrieving columns + after long/text columns with PDO_ODBC). (Wez) +- Fixed bug #38454 (warning upon disabling handler via + xml_set_element_handler). (dtorop933 at gmail dot com, Rob) +- Fixed bug #38451 (PDO_MYSQL doesn't compile on Solaris). (Tony) +- Fixed bug #38450 (constructor is not called for classes used in userspace + stream wrappers). (Tony) +- Fixed bug #38438 (DOMNodeList->item(0) segfault on empty NodeList). (Ilia) +- Fixed bug #38431 (xmlrpc_get_type() crashes PHP on objects). (Tony) +- Fixed bug #38427 (unicode causes xml_parser to misbehave). (Rob) +- Fixed bug #38424 (Different attribute assignment if new or existing). (Rob) +- Fixed bug #38400 (Use of com.typelib_file may cause a crash). (Ilia) +- Fixed bug #38394 (PDO fails to recover from failed prepared statement + execution). (Ilia) +- Fixed bug #38377 (session_destroy() gives warning after + session_regenerate_id()). (Ilia) +- Implemented #38357 (dbase_open can't open DBase 3 dbf file). + (rodrigo at fabricadeideias dot com, Mike) +- Fixed bug #38354 (Unwanted reformatting of XML when using AsXML). (Christian) +- Fixed bug #38347 (Segmentation fault when using foreach with an unknown/empty + SimpleXMLElement). (Tony) +- Fixed bug #38322 (reading past array in sscanf() leads to arbitrary code + execution). (Tony) +- Fixed bug #38315 (Constructing in the destructor causes weird behavior). + (Dmitry) +- Fixed bug #38303 (spl_autoload_register() suppress all errors silently). + (Ilia) +- Fixed bug #38290 (configure script ignores --without-cdb,inifile,flatfile). + (Marcus) +- Fixed bug #38289 (segfault in session_decode() when _SESSION is NULL). + (Tony) +- Fixed bug #38287 (static variables mess up global vars). (Dmitry) +- Fixed bug #38278 (session_cache_expire()'s value does not match phpinfo's + session.cache_expire). (Tony) +- Fixed bug #38276 (file_exists() works incorrectly with long filenames + on Windows). (Ilia, Tony) +- Fixed bug #38269 (fopen wrapper doesn't fail on invalid hostname with + curlwrappers enabled). (Tony) +- Fixed bug #38265 (heap corruption). (Dmitry) +- Fixed bug #38261 (openssl_x509_parse() leaks with invalid cert) (Pierre) +- Fixed bug #38255 (openssl possible leaks while passing keys) (Pierre) +- Fixed bug #38253 (PDO produces segfault with default fetch mode). (Tony) +- Fixed bug #38251 (socket_select() and invalid arguments). (Tony) +- Fixed bug #38236 (Binary data gets corrupted on multipart/formdata POST). + (Ilia) +- Fixed bug #38234 (Exception in __clone makes memory leak). (Dmitry, Nuno) +- Fixed bug #38229 (strtotime() does not parse YYYY-MM format). (Ilia) +- Fixed bug #38224 (session extension can't handle broken cookies). (Ilia) +- Fixed bug #38220 (Crash on some object operations). (Dmitry) +- Fixed bug #38217 (ReflectionClass::newInstanceArgs() tries to allocate too + much memory). (Tony) +- Fixed bug #38214 (gif interlace output cannot work). (Pierre) +- Fixed bug #38213, #37611, #37571 (wddx encoding fails to handle certain + characters). (Ilia) +- Fixed bug #38212 (Segfault on invalid imagecreatefromgd2part() parameters). + (Pierre) +- Fixed bug #38211 (variable name and cookie name match breaks script + execution). (Dmitry) +- Fixed bug #38199 (fclose() unable to close STDOUT and STDERR). (Tony) +- Fixed bug #38198 (possible crash when COM reports an exception). (Ilia) +- Fixed bug #38194 (ReflectionClass::isSubclassOf() returns TRUE for the + class itself). (Ilia) +- Fixed bug #38183 (disable_classes=Foobar causes disabled class to be + called Foo). (Jani) +- Fixed bug #38179 (imagecopy from a palette to a truecolor image loose alpha + channel) (Pierre) +- Fixed bug #38173 (Freeing nested cursors causes OCI8 to segfault). (Tony) +- Fixed bug #38168 (Crash in pdo_pgsql on missing bound parameters). (Ilia) +- Fixed bug #38161 (oci_bind_by_name() returns garbage when Oracle didn't set + the variable). (Tony) +- Fixed bug #38146 (Cannot use array returned from foo::__get('bar') in write + context). (Dmitry) +- Fixed bug #38132 (ReflectionClass::getStaticProperties() retains \0 in key + names). (Ilia) +- Fixed bug #38125 (undefined reference to spl_dual_it_free_storage). (Marcus) +- Fixed bug #38112 (corrupted gif segfaults) (Pierre) +- Fixed bug #38096 (large timeout values ignored on 32bit machines in + stream_socket_accept() and stream_socket_client()). (Ilia) +- Fixed bug #38086 (stream_copy_to_stream() returns 0 when maxlen is bigger + than the actual length). (Tony) +- Fixed bug #38072 (boolean arg for mysqli_autocommit() is always true on + Solaris). (Tony) +- Fixed bug #38067 (Parameters are not decoded from utf-8 when using encoding + option). (Dmitry) +- Fixed bug #38064 (ignored constructor visibility). (Marcus) +- Fixed bug #38055 (Wrong interpretation of boolean parameters). (Dmitry) +- Fixed bug #38047 ("file" and "line" sometimes not set in backtrace from + inside error handler). (Dmitry) +- Fixed bug #38019 (segfault extending mysqli class). (Dmitry) +- Fixed bug #38005 (SoapFault faultstring doesn't follow encoding rules). + (Dmitry) +- Fixed bug #38004 (Parameters in SoapServer are decoded twice). (Dmitry) +- Fixed bug #38003 (in classes inherited from MySQLi it's possible to call + private constructors from invalid context). (Tony) +- Fixed bug #37987 (invalid return of file_exists() in safe mode). (Ilia) +- Fixed bug #37947 (zend_ptr_stack reallocation problem). (Dmitry) +- Fixed bug #37945 (pathinfo() cannot handle argument with special characters + like German "Umlaut"). (Mike) +- Fixed bug #37931 (possible crash in OCI8 after database restart + when using persistent connections). (Tony) +- Fixed bug #37923 (Display constant value in reflection::export). (Johannes) +- Fixed bug #37920 (compilation problems on z/OS). (Tony) +- Fixed bug #37870 (pgo_pgsql tries to de-allocate unused statements). + (Ilia, ce at netage dot bg) +- Fixed bug #37864 (file_get_contents() leaks on empty file). (Hannes) +- Fixed bug #37862 (Integer pointer comparison to numeric value). + (bugs-php at thewrittenword dot com) +- Fixed bug #37846 (wordwrap() wraps incorrectly). (ddk at krasn dot ru, Tony) +- Fixed bug #37816 (ReflectionProperty does not throw exception when accessing + protected attribute). (Marcus) +- Fixed bug #37811 (define not using toString on objects). (Marcus) +- Fixed bug #37807 (segmentation fault during SOAP schema import). (Tony) +- Fixed bug #37806 (weird behavior of object type and comparison). (Marcus) +- Fixed bug #37780 (memory leak trying to execute a non existing file (CLI)). + (Mike) +- Fixed bug #37779 (empty include_path leads to search for files inside /). + (jr at terragate dot net, Ilia) +- Fixed bug #37747 (strtotime segfaults when given "nextyear"). (Derick) +- Fixed bug #37720 (merge_php_config scrambles values). + (Mike, pumuckel at metropolis dot de) +- Fixed bug #37709 (Possible crash in PDO::errorCode()). (Ilia) +- Fixed bug #37707 (clone without assigning leaks memory). (Ilia, Nuno, Dmitri) +- Fixed bug #37705 (Semaphore constants not available). (Ilia) +- Fixed bug #37671 (MySQLi extension fails to recognize BIT column). (Ilia) +- Fixed bug #37667 (Object is not added into array returned by __get). (Marcus) +- Fixed bug #37635 (parameter of pcntl signal handler is trashed). (Mike) +- Fixed bug #37632 (Protected method access problem). (Marcus) +- Fixed bug #37630 (MySQL extensions should link against thread safe client + libs if built with ZTS). (Mike) +- Fixed bug #37620 (mysqli_ssl_set validation is inappropriate). (Georg) +- Fixed bug #37616 (DATE_RFC822 does not product RFC 822 dates). + (Hannes Magnusson, Derick) +- Fixed bug #37614 (Class name lowercased in error message). (Johannes) +- Fixed bug #37587 (var without attribute causes segfault). (Marcus) +- Fixed bug #37586 (Bumped minimum PCRE version to 6.6, needed for recursion + limit support). (Ilia) +- Fixed bug #37581 (oci_bind_array_by_name clobbers input array when using + SQLT_AFC, AVC). (Tony) +- Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). (Ilia) +- Fixed bug #37565 (Using reflection::export with simplexml causing a crash). + (Marcus) +- Fixed bug #37564 (AES privacy encryption not possible due to net-snmp 5.2 + compatibility issue). (Jani, patch by scott dot moynes+php at gmail dot com) +- Fixed bug #37563 (array_key_exists performance is poor for &$array). (Ilia) +- Fixed bug #37558 (timeout functionality doesn't work after a second PHP + start-up on the same thread). (p dot desarnaud at wanadoo dot fr) +- Fixed bug #37531 (oci8 persistent connection corruption). (Tony) +- Fixed bug #37523 (namespaces added too late, leads to missing xsi:type + attributes. Incompatibility with libxml2-2.6.24). (Dmitry) +- Fixed bug #37514 (strtotime doesn't assume year correctly). (Derick) +- Fixed bug #37510 (session_regenerate_id changes session_id() even on + failure). (Hannes) +- Fixed bug #37505 (touch() truncates large files). (Ilia) +- Fixed bug #37499 (CLI segmentation faults during cleanup with sybase-ct + extension enabled). (Tony) +- Fixed bug #37496 (FastCGI output buffer overrun). (Piotr, Dmitry) +- Fixed bug #37487 (oci_fetch_array() array-type should always default to + OCI_BOTH). (Tony) +- Fixed bug #37457 (Crash when an exception is thrown in accept() method of + FilterIterator). (Marcus) +- Fixed bug #37456 (DOMElement->setAttribute() loops forever). (Rob) +- Fixed bug #37445 (Fixed crash in pdo_mysql resulting from premature object + destruction). (Ilia) +- Fixed bug #37428 (PHP crashes on windows if there are start-up errors and + event log is used for logging them). (Edin) +- Fixed bug #37418 (tidy module crashes on shutdown). (Tony) +- Fixed bug #37416 (iterator_to_array() hides exceptions thrown in rewind() + method). (Tony) +- Fixed bug #37413 (Rejected versions of flex that don't work). (Ilia) +- Fixed bug #37395 (recursive mkdir() fails to create nonexistent directories + in root dir). (Tony) +- Fixed bug #37394 (substr_compare() returns an error when offset equals + string length). (Ilia) +- Fixed bug #37392 (Unnecessary call to OCITransRollback() at the end of + request). (Tony) +- Fixed bug #37376 (fastcgi.c compile fail with gcc 2.95.4). (Ilia) +- Fixed bug #37368 (Incorrect timestamp returned for strtotime()). (Derick) +- Fixed bug #37363 (PDO_MYSQL does not build if no other mysql extension is + enabled). (Mike) +- Fixed bug #37348 (make PEAR install ignore open_basedir). (Ilia) +- Fixed bug #37341 ($_SERVER in included file is shortened to two entries, + if $_ENV gets used). (Dmitry) +- Fixed bug #37313 (sigemptyset() used without including+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/5.2.1/changes.txt b/data/releases/5.2/5.2.1/changes.txt new file mode 100644 index 0000000000..d1653d93f8 --- /dev/null +++ b/data/releases/5.2/5.2.1/changes.txt @@ -0,0 +1,362 @@ +- Added read-timeout context option "timeout" for HTTP streams. (Hannes, Ilia). +- Added CURLOPT_TCP_NODELAY constant to Curl extension. (Sara) +- Added support for hex numbers of any size. (Matt) +- Added function stream_socket_shutdown(). It is a wrapper for system + shutdown() function, that shut downs part of a full-duplex connection. + (Dmitry) +- Added internal heap protection (Dmitry) + . memory-limit is always enabled (--enable-memory-limit removed) + . default value if memory-limit is set to 128M + . safe unlinking + . cookies + . canary protection (debug build only) + . random generation of cookies and canaries +- Added forward support for 'b' prefix in front of string literals. (Andrei) +- Added three new functions to ext/xmlwriter (Rob, Ilia) + . xmlwriter_start_dtd_entity() + . xmlwriter_end_dtd_entity() + . xmlwriter_write_dtd_entity() +- Added a meta tag to phpinfo() output to prevent search engines from indexing + the page. (Ilia) +- Added new function, sys_get_temp_dir(). (Hartmut) +- Added missing object support to file_put_contents(). (Ilia) +- Added support for md2, ripemd256 and ripemd320 algos to hash(). (Sara) +- Added forward support for (binary) cast. (Derick) +- Added optimization for imageline with horizontal and vertical lines (Pierre) + +- Removed dependency from SHELL32.DLL. (Dmitry) +- Removed double "wrong parameter count" warnings in various functions. + (Hannes) +- Moved extensions to PECL: + . ext/informix (Derick, Tony) + +- Changed double-to-string utilities to use BSD implementation. (Dmitry, Tony) +- Updated bundled libcURL to version 7.16.0 in the Windows distro. (Edin) +- Updated timezone database to version 2006.16. (Derick) +- cgi.* and fastcgi.* directives are moved to INI subsystem. The new directive + cgi.check_shebang_line can be used to omitting check for "#! /usr/bin/php" + line. (Dmitry). +- Improved proc_open(). Now on Windows it can run external commands not + through CMD.EXE. (Dmitry) +- VCWD_REALPATH() is improved to use realpath cache without VIRTUAL_DIR. + (Dmitry) +- ext/bcmath initialization code is moved from request startup to module + startup. (Dmitry) +- Zend Memory Manager Improvements (Dmitry) + . use HeapAlloc() instead of VirtualAlloc() + . use "win32" storage manager (instead of "malloc") on Windows by default +- Zip Extension Improvements (Pierre) + . Fixed leak in statName and stateIndex + . Fixed return setComment (Hannes) + . Added addEmptyDir method +- Filter Extension Improvements (Ilia, Pierre) + . Fixed a bug when callback function returns a non-modified value. + . Added filter support for $_SERVER in cgi/apache2 sapis. + . Make sure PHP_SELF is filtered in Apache 1 sapi. + . Fixed bug #39358 (INSTALL_HEADERS contains incorrect reference to + php_filter.h). + . Added "default" option that allows a default value to be set for an + invalid or missing value. + . Invalid filters fails instead of returning unsafe value + . Fixed possible double encoding problem with sanitizing filters + . Make use of space-strict strip_tags() function + . Fixed whitespace trimming + . Added support for FastCGI environment variables. (Dmitry) +- PDO_MySQL Extension Improvements (Ilia) + . Enabled buffered queries by default. + . Enabled prepared statement emulation by default. + +- Small optimization of the date() function. (Matt,Ilia) +- Optimized the internal is_numeric_string() function. (Matt,Ilia) +- Optimized array functions utilizing php_splice(). (Ilia) +- Windows related optimizations (Dmitry, Stas) + . COM initialization/deinitialization are done only if necessary + . removed unnecessary checks for ISREG file and corresponding stat() calls + . opendir() is reimplementation using GetFistFile/GetNextFile those are + faster then _findfirst/_findnext + . implemented registry cache that prevent registry lookup on each request. + In case of modification of corresponding registry-tree PHP will reload it + automatic + . start timeout thread only if necessary + . stat() is reimplementation using GetFileAttributesEx(). The new + implementation is faster then implementation in MS VC CRT, but it doesn't + support Windows 95. +- Streams optimization (Dmitry) + . removed unnecessary ftell() calls (one call for each included PHP file) + . disabled calls to read() after EOF + +- Fixed incorrect function names on FreeBSD where inet_pton() was named + __inet_pton() and inet_ntop() was named __inet_ntop(). (Hannes) +- Fixed FastCGI impersonation for persistent connections on Windows. (Dmitry) +- Fixed wrong signature initialization in imagepng (Takeshi Abe) +- Fixed ftruncate() with negative size on FreeBSD. (Hannes) +- Fixed segfault in RegexIterator when given invalid regex. (Hannes) +- Fixed segfault in SplFileObject->openFile()->getPathname(). (Hannes) +- Fixed segfault in ZTS mode when OCI8 statements containing sub-statements + are destroyed in wrong order. (Tony) +- Fixed the validate email filter so that the letter "v" can also be used in + the user part of the email address. (Derick) +- Fixed bug #40297 (compile failure in ZTS mode when collections support is + missing). (Tony) +- Fixed bug #40285 (The PDO prepare parser goes into an infinite loop in + some instances). (Ilia) +- Fixed bug #40274 (Sessions fail with numeric root keys). (Ilia) +- Fixed bug #40259 (ob_start call many times - memory error). (Dmitry) +- Fixed bug #40231 (file_exists incorrectly reports false). (Dmitry) +- Fixed bug #40228 (ZipArchive::extractTo does create empty directories + recursively). (Pierre) +- Fixed bug #40200 (The FastCgi version has different realpath results than + thread safe version). (Dmitry) +- Fixed bug #40191 (use of array_unique() with objects triggers segfault). + (Tony) +- Fixed bug #40189 (possible endless loop in zlib.inflate stream filter). + (Greg, Tony) +- Fixed bug #40169 (CURLOPT_TCP_NODELAY only available in curl >= 7.11.2). + (Tony) +- Fixed bug #40129 (iconv extension doesn't compile with CodeWarrior on + Netware). (gk at gknw dot de, Tony) +- Fixed bug #40127 (apache2handler doesn't compile on Netware). + (gk at gknw dot de) +- Fixed bug #40121 (PDO_DBLIB driver wont free statements). (Ilia) +- Fixed bug #40098 (php_fopen_primary_script() not thread safe). (Ilia) +- Fixed bug #40092 (chroot() doesn't clear realpath cache). (Dmitry) +- Fixed bug #40091 (spl_autoload_register with 2 instances of the same class). + (Ilia) +- Fixed bug #40083 (milter SAPI functions always return false/null). (Tony) +- Fixed bug #40079 (php_get_current_user() not thread safe). + (Ilia, wharmby at uk dot ibm dot com) +- Fixed bug #40078 (ORA-01405 when fetching NULL values using + oci_bind_array_by_name()). (Tony) +- Fixed bug #40076 (zend_alloc.c: Value of enumeration constant must be in + range of signed integer). (Dmitry) +- Fixed bug #40073 (exif_read_data dies on certain images). (Tony, Marcus) +- Fixed bug #40036 (empty() does not work correctly with ArrayObject when + using ARRAY_AS_PROPS). (Ilia) +- Fixed bug #40012 (php_date.c doesn't compile on Netware). + (gk at gknw dot de, Derick) +- Fixed bug #40009 (http_build_query(array()) returns NULL). (Ilia) +- Fixed bug #40002 (Try/Catch performs poorly). (Dmitry) +- Fixed bug #39993 (tr_TR.UTF-8 locale has problems with PHP). (Ilia) +- Fixed bug #39990 (Cannot "foreach" over overloaded properties). (Dmitry) +- Fixed bug #39988 (type argument of oci_define_by_name() is ignored). + (Chris Jones, Tony) +- Fixed bug #39984 (redirect response code in header() could be ignored + in CGI sapi). (Ilia) +- Fixed bug #39979 (PGSQL_CONNECT_FORCE_NEW will causes next connect to + establish a new connection). (Ilia) +- Fixed bug #39971 (pg_insert/pg_update do not allow now() to be used + for timestamp fields). (Ilia) +- Fixed bug #39969 (ini setting short_open_tag has no effect when using + --enable-maintainer-zts). (Dmitry) +- Fixed bug #39952 (zip ignoring --with-libdir on zlib checks) + (judas dot iscariote at gmail dot com) +- Fixed bug #39944 (References broken). (Dmitry) +- Fixed bug #39935 (Extensions tidy,mcrypt,mhash,pdo_sqlite ignores + --with-libdir). (judas dot iscariote at gmail dot com, Derick) +- Fixed bug #39903 (Notice message when executing __halt_compiler() more than + once). (Tony) +- Fixed bug #39898 (FILTER_VALIDATE_URL validates \r\n\t etc). (Ilia) +- Fixed bug #39890 (using autoconf 2.6x and --with-layout=GNU breaks PEAR + install path). (Tony) +- Fixed bug #39884 (ReflectionParameter::getClass() throws exception for + type hint self). (thekid at php dot net) +- Fixed bug #39878 (CURL doesn't compile on Sun Studio Pro). (Ilia) +- Fixed bug #39873 (number_format() breaks with locale & decimal points). + (Ilia) +- Fixed bug #39869 (safe_read does not initialize errno). + (michiel at boland dot org, Dmitry) +- Fixed bug #39850 (SplFileObject throws contradictory/wrong error messages + when trying to open "php://wrong"). (Tony) +- Fixed bug #39846 (Invalid IPv4 treated as valid). (Ilia) +- Fixed bug #39845 (Persistent connections generate a warning in pdo_pgsql). + (Ilia) +- Fixed bug #39832 (SOAP Server: parameter not matching the WSDL specified + type are set to 0). (Dmitry) +- Fixed bug #39825 (foreach produces memory error). (Dmitry) +- Fixed bug #39816 (apxs2filter ignores httpd.conf & .htaccess php config + settings). (Ilia) +- Fixed bug #39815 (SOAP double encoding is not locale-independent). (Dmitry) +- Fixed bug #39797 (virtual() does not reset changed INI settings). (Ilia) +- Fixed bug #39795 (build fails on AIX because crypt_r() uses different + data struct). (Tony) +- Fixed bug #39791 (Crash in strtotime() on overly long relative date + multipliers). (Ilia) +- Fixed bug #39787 (PHP doesn't work with Apache 2.3). + (mv at binarysec dot com). +- Fixed bug #39782 (setTime() on a DateTime constructed with a Weekday + yields incorrect results). (Ilia) +- Fixed bug #39780 (PNG image with CRC/data error raises fatal error) (Pierre) +- Fixed bug #39779 (Enable AUTH PLAIN mechanism in underlying libc-client). + (michael dot heimpold at s2000 dot tu-chemnitz dot de, Ilia) +- Fixed bug #39775 ("Indirect modification ..." message is not shown). + (Dmitry) +- Fixed bug #39763 (magic quotes are applied twice by ext/filter in + parse_str()). (Ilia) +- Fixed bug #39760 (cloning fails on nested SimpleXML-Object). (Rob) +- Fixed bug #39759 (Can't use stored procedures fetching multiple result + sets in pdo_mysql). (Ilia) +- Fixed bug #39754 (Some POSIX extension functions not thread safe). + (Ilia, wharmby at uk dot ibm dot com) +- Fixed bug #39751 (putenv crash on Windows). (KevinJohnHoffman at gmail.com) +- Fixed bug #39732 (oci_bind_array_by_name doesn't work on Solaris 64bit). + (Tony) +- Fixed bug #39724 (Broken build due to spl/filter usage of pcre extension). + (Tony, Ilia) +- Fixed bug #39718 (possible crash if assert.callback is set in ini). (Ilia) +- Fixed bug #39702 (php crashes in the allocator on linux-m68k). (Dmitry) +- Fixed bug #39685 (iconv() - undefined function). (Hannes) +- Fixed bug #39673 (file_get_contents causes bus error on certain offsets). + (Tony) +- Fixed bug #39663 (Memory leak in pg_get_notify() and a possible memory + corruption on Windows in pgsql and pdo_pgsql extensions). + (Ilia, matteo at beccati dot com) +- Fixed bug #39662 (Segfault when calling asXML() of a cloned + SimpleXMLElement). (Rob, Tony) +- Fixed bug #39656 (crash when calling fetch() on a PDO statment object after + closeCursor()). (Ilia, Tony) +- Fixed bug #39653 (ext/dba doesn't check for db-4.5 and db-4.4 when db4 + support is enabled). (Tony) +- Fixed bug #39652 (Wrong negative results from memory_get_usage()). (Dmitry) +- Fixed bug #39648 (Implementation of PHP functions chown() and chgrp() are + not thread safe). (Ilia, wharmby at uk dot ibm dot com) +- Fixed bug #39640 (Segfault with "Allowed memory size exhausted"). (Dmitry) +- Fixed bug #39625 (Apache crashes on importStylesheet call). (Rob) +- Fixed bug #39623 (thread safety fixes on *nix for putenv() & mime_magic). + (Ilia, wharmby at uk dot ibm dot com) +- Fixed bug #39621 (str_replace() is not binary safe on strings with equal + length). (Tony) +- Fixed bug #39613 (Possible segfault in imap initialization due to missing + module dependency). (wharmby at uk dot ibm dot com, Tony) +- Fixed bug #39606 (Use of com.typelib_file in PHP.ini STILL causes A/V). (Rob) +- Fixed bug #39602 (Invalid session.save_handler crashes PHP). (Dmitry) +- Fixed bug #39596 (Creating Variant of type VT_ARRAY). (Rob) +- Fixed bug #39583 (ftp_put() does not change transfer mode to ASCII). (Tony) +- Fixed bug #39576 (array_walk() doesn't separate user data zval). (Tony) +- Fixed bug #39575 (move_uploaded_file() no longer working (safe mode + related)). (Tony) +- Fixed bug #39571 (timeout ssl:// connections). (Ilia) +- Fixed bug #39564 (PDO::errorInfo() returns inconsistent information when + sqlite3_step() fails). (Tony) +- Fixed bug #39548 (ZMSG_LOG_SCRIPT_NAME not routed to OutputDebugString() + on Windows). (Dmitry) +- Fixed bug #39538 (fgetcsv can't handle starting newlines and trailing odd + number of backslashes). (David Soria Parra, Pierre) +- Fixed bug #39534 (Error in maths to calculate of + ZEND_MM_ALIGNED_MIN_HEADER_SIZE). (wharmby at uk dot ibm dot com, Dmitry) +- Fixed bug #39527 (Failure to retrieve results when multiple unbuffered, + prepared statements are used in pdo_mysql). (Ilia) +- Fixed bug #39508 (imagefill crashes with small images 3 pixels or less). + (Pierre) +- Fixed bug #39506 (Archive corrupt with ZipArchive::addFile method). (Pierre) +- Fixed bug #39504 (xmlwriter_write_dtd_entity() creates Attlist tag, not + entity). (Hannes) +- Fixed bug #39483 (Problem with handling of \ char in prepared statements). + (Ilia, suhachov at gmail dot com) +- Fixed bug #39458 (ftp_nlist() returns false on empty dirs). (Nuno) +- Fixed bug #39454 (Returning a SOAP array segfaults PHP). (Dmitry) +- Fixed bug #39450 (getenv() fills other super-globals). (Ilia, Tony) +- Fixed bug #39449 (Overloaded array properties do not work correctly). + (Dmitry) +- Fixed bug #39445 (Calling debug_backtrace() in the __toString() + function produces a crash). (Dmitry) +- Fixed bug #39438 (Fatal error: Out of memory). (Dmitry) +- Fixed bug #39435 ('foo' instanceof bar gives invalid opcode error). (Sara) +- Fixed bug #39414 (Syntax error while compiling with Sun Workshop Complier). + (Johannes) +- Fixed bug #39398 (Booleans are not automatically translated to integers). + (Ilia) +- Fixed bug #39394 (Missing check for older variants of openssl). (Ilia) +- Fixed bug #39367 (clearstatcache() doesn't clear realpath cache). + (j at pureftpd dot org, Dmitry) +- Fixed bug #39366 (imagerotate does not use alpha with angle > 45 degrees) + (Pierre) +- Fixed bug #39364 (Removed warning on empty haystack inside mb_strstr()). + (Ilia) +- Fixed bug #39362 (Added an option to imap_open/imap_reopen to control the + number of connection retries). (Ilia) +- Fixed bugs #39361 & #39400 (mbstring function overloading problem). (Seiji) +- Fixed bug #39354 (Allow building of curl extension against libcurl + 7.16.0). (Ilia) +- Fixed bug #39350 (crash with implode("\n", array(false))). (Ilia) +- Fixed bug #39344 (Unnecessary calls to OnModify callback routine for + an extension INI directive). (wharmby at uk dot ibm dot com, Dmitry) +- Fixed bug #39320 (ZEND_HASH_APPLY_STOP causes deletion). (Marcus) +- Fixed bug #39313 (spl_autoload triggers Fatal error). (Marcus) +- Fixed bug #39300 (make install fails if wget is not available). (Tony) +- Fixed bug #39297 (Memory corruption because of indirect modification of + overloaded array). (Dmitry) +- Fixed bug #39286 (misleading error message when invalid dimensions are + given) (Pierre) +- Fixed bug #39273 (imagecopyresized may ignore alpha channel) (Pierre) +- Fixed bug #39265 (Fixed path handling inside mod_files.sh). + (michal dot taborsky at gmail dot com, Ilia) +- Fixed bug #39217 (serialNumber might be -1 when the value is too large). + (Pierre, Tony) +- Fixed bug #39215 (Inappropriate close of stdin/stdout/stderr). (Wez, Ilia) +- Fixed bug #39201 (Possible crash in Apache 2 with 413 ErrorHandler). (Ilia) +- Fixed bug #39151 (Parse error in recursiveiteratoriterator.php). (Marcus) +- Fixed bug #39121 (Incorrect return array handling in non-wsdl soap client). + (Dmitry) +- Fixed bug #39090 (DirectoryFilterDots doxygen docs and example is wrong). + (Marcus) +- Fixed bug #38852 (XML-RPC Breaks iconv). (Hannes) +- Fixed bug #38770 (unpack() broken with longs on 64 bit machines). + (Ilia, David Soria Parra). +- Fixed bug #38698 (for some keys cdbmake creates corrupted db and cdb can't + read valid db). (Marcus) +- Fixed bug #38680 (Added missing handling of basic types in json_decode). + (Ilia) +- Fixed bug #38604 (Fixed request time leak inside foreach() when iterating + through virtual properties). (Dmitry) +- Fixed bug #38602 (header( "HTTP/1.0 ..." ) does not change proto version). + (Ilia) +- Fixed bug #38542 (proc_get_status() returns wrong PID on windows). (Nuno) +- Fixed bug #38536 (SOAP returns an array of values instead of an object). + (Dmitry) +- Fixed bug #38456 (Apache2 segfaults when virtual() is called in .php + ErrorDocument). (Ilia) +- Fixed bug #38325 (spl_autoload_register() gives wrong line for "class not + found"). (Ilia) +- Fixed bug #38319 (Remove bogus warnings from persistent PDO connections). + (Ilia) +- Fixed bug #38274 (Memlimit fatal error sent to "wrong" stderr when using + fastcgi). (Dmitry) +- Fixed bug #38252 (Incorrect PDO error message on invalid default fetch + mode). (Ilia) +- Fixed bug #37927 (Prevent trap when COM extension processes argument of + type VT_DISPATCH|VT_REF) (Andy) +- Fixed bug #37773 (iconv_substr() gives "Unknown error" when string + length = 1"). (Ilia) +- Fixed bug #37627 (session save_path check checks the parent directory). + (Ilia) +- Fixed bug #37619 (proc_open() closes stdin on fork() failure). + (jdolecek at NetBSD dot org, Nuno) +- Fixed bug #37588 (COM Property propputref converts to PHP function + and can't be accesed). (Rob) +- Fixed bug #36975 (natcasesort() causes array_pop() to misbehave). + (Hannes) +- Fixed bug #36812 (pg_execute() modifies input array). (Ilia) +- Fixed bug #36798 (Error parsing named parameters with queries containing + high-ascii chars). (Ilia) +- Fixed bug #36644 (possible crash in variant_date_from_timestamp()). (Ilia) +- Fixed bug #36427 (proc_open() / proc_close() leak handles on windows). + (jdolecek at NetBSD dot org, Nuno) +- Fixed bug #36392 (wrong number of decimal digits with %e specifier in + sprintf). (Matt,Ilia) +- Fixed bug #36214 (__get method works properly only when conditional + operator is used). (Dmitry) +- Fixed bug #35634 (Erroneous "Class declarations may not be nested" + error raised). (Carl P. Corliss, Dmitry) +- Fixed bug #35106 (nested foreach fails when array variable has a + reference). (Dmitry) +- Fixed bug #34564 (COM extension not returning modified "out" argument) (Andy) +- Fixed bug #33734 (Something strange with COM Object). (Rob) +- Fixed bug #33386 (ScriptControl only sees last function of class). (Rob) +- Fixed bug #33282 (Re-assignment by reference does not clear the is_ref + flag) (Ilia, Dmitry, Matt Wilmas) +- Fixed bug #30074 (apparent symbol table error with + extract($blah, EXTR_REFS)) (Brian) +- Fixed bug #29840 (is_executable() does not honor safe_mode_exec_dir + setting). (Ilia) +- Fixed PECL bug #7295 (ORA-01405: fetched column value is NULL on LOB + fields). (Tony) diff --git a/data/releases/5.2/5.2.1/release.json b/data/releases/5.2/5.2.1/release.json new file mode 100644 index 0000000000..af3b19fe1b --- /dev/null +++ b/data/releases/5.2/5.2.1/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.1", + "date": "08 Feb 2007", + "tags": [], + "source": [ + { + "filename": "php-5.2.1.tar.bz2", + "name": "Source (tar.bz2)", + "md5": "261218e3569a777dbd87c16a15f05c8d" + }, + { + "filename": "php-5.2.1.tar.gz", + "name": "Source (tar.gz)", + "md5": "604eaee2b834bb037d2c83e53e300d3f" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.10/announcement.html b/data/releases/5.2/5.2.10/announcement.html new file mode 100644 index 0000000000..7ae30a357b --- /dev/null +++ b/data/releases/5.2/5.2.10/announcement.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/5.2.10/changes.txt b/data/releases/5.2/5.2.10/changes.txt new file mode 100644 index 0000000000..bd12d5cb13 --- /dev/null +++ b/data/releases/5.2/5.2.10/changes.txt @@ -0,0 +1,176 @@ +- Added "ignore_errors" option to http fopen wrapper. (David Zulke, Sara) +- Added new CURL options CURLOPT_REDIR_PROTOCOLS, CURLOPT_PROTOCOLS, + and CURLPROTO_* for redirect fixes in CURL 7.19.4. (Yoram Bar Haim, Stas) +- Added support for Sun CC (FR #46595 and FR #46513). (David Soria Parra) + +- Changed default value of array_unique()'s optional sorting type parameter + back to SORT_STRING to fix backwards compatibility breakage introduced in + PHP 5.2.9. (Moriyoshi) + +- Fixed memory corruptions while reading properties of zip files. (Ilia) +- Fixed memory leak in ob_get_clean/ob_get_flush. (Christian) +- Fixed segfault on invalid session.save_path. (Hannes) +- Fixed leaks in imap when a mail_criteria is used. (Pierre) +- Fixed missing erealloc() in fix for Bug #40091 in spl_autoload_register. (Greg) + +- Fixed bug #48562 (Reference recursion causes segfault when used in + wddx_serialize_vars()). (Felipe) +- Fixed bug #48557 (Numeric string keys in Apache Hashmaps are not cast to + integers). (David Zuelke) +- Fixed bug #48518 (curl crashes when writing into invalid file handle). (Tony) +- Fixed bug #48514 (cURL extension uses same resource name for simple and + multi APIs). (Felipe) +- Fixed bug #48469 (ldap_get_entries() leaks memory on empty search + results). (Patrick) +- Fixed bug #48456 (CPPFLAGS not restored properly in phpize.m4). (Jani, + spisek at kerio dot com) +- Fixed bug #48448 (Compile failure under IRIX 6.5.30 building cast.c). + (Kalle) +- Fixed bug #48441 (ldap_search() sizelimit, timelimit and deref options + persist). (Patrick) +- Fixed bug #48434 (Improve memory_get_usage() accuracy). (Arnaud) +- Fixed bug #48416 (Force a cache limit in ereg() to stop excessive memory + usage). (Scott) +- Fixed bug #48409 (Crash when exception is thrown while passing function + arguments). (Arnaud) +- Fixed bug #48378 (exif_read_data() segfaults on certain corrupted .jpeg + files). (Pierre) +- Fixed bug #48359 (Script hangs on snmprealwalk if OID is not increasing). + (Ilia, simonov at gmail dot com) +- Fixed bug #48336 (ReflectionProperty::getDeclaringClass() does not work + with redeclared property). + (patch by Markus dot Lidel at shadowconnect dot com) +- Fixed bug #48326 (constant MSG_DONTWAIT not defined). (Arnaud) +- Fixed bug #48313 (fgetcsv() does not return null for empty rows). (Ilia) +- Fixed bug #48309 (stream_copy_to_stream() and fpasstru() do not update + stream position of plain files). (Arnaud) +- Fixed bug #48307 (stream_copy_to_stream() copies 0 bytes when $source is a + socket). (Arnaud) +- Fixed bug #48273 (snmp*_real_walk() returns SNMP errors as values). + (Ilia, lytboris at gmail dot com) +- Fixed bug #48256 (Crash due to double-linking of history.o). + (tstarling at wikimedia dot org) +- Fixed bug #48248 (SIGSEGV when access to private property via &__get). + (Felipe) +- Fixed bug #48247 (Crash on errors during startup). (Stas) +- Fixed bug #48240 (DBA Segmentation fault dba_nextkey). (Felipe) +- Fixed bug #48224 (Incorrect shuffle in array_rand). (Etienne) +- Fixed bug #48221 (memory leak when passing invalid xslt parameter). + (Felipe) +- Fixed bug #48207 (CURLOPT_(FILE|WRITEHEADER options do not error out when + working with a non-writable stream). (Ilia) +- Fixed bug #48206 (Iterating over an invalid data structure with + RecursiveIteratorIterator leads to a segfault). (Scott) +- Fixed bug #48204 (xmlwriter_open_uri() does not emit warnings on invalid + paths). (Ilia) +- Fixed bug #48203 (Crash when CURLOPT_STDERR is set to regular file). (Jani) +- Fixed bug #48202 (Out of Memory error message when passing invalid file + path) (Pierre) +- Fixed bug #48156 (Added support for lcov v1.7). (Ilia) +- Fixed bug #48132 (configure check for curl ssl support fails with + --disable-rpath). (Jani) +- Fixed bug #48131 (Don't try to bind ipv4 addresses to ipv6 ips via bindto). + (Ilia) +- Fixed bug #48070 (PDO_OCI: Segfault when using persistent connection). + (Pierre, Matteo, jarismar dot php at gmail dot com) +- Fixed bug #48058 (Year formatter goes wrong with out-of-int range). (Derick) +- Fixed bug #48038 (odbc_execute changes variables used to form params array). + (Felipe) +- Fixed bug #47997 (stream_copy_to_stream returns 1 on empty streams). (Arnaud) +- Fixed bug #47991 (SSL streams fail if error stack contains items). (Mikko) +- Fixed bug #47981 (error handler not called regardless). (Hannes) +- Fixed bug #47969 (ezmlm_hash() returns different values depend on OS). (Ilia) +- Fixed bug #47946 (ImageConvolution overwrites background). (Ilia) +- Fixed bug #47940 (memory leaks in imap_body). (Pierre, Jake Levitt) +- Fixed bug #47937 (system() calls sapi_flush() regardless of output + buffering). (Ilia) +- Fixed bug #47903 ("@" operator does not work with string offsets). (Felipe) +- Fixed bug #47893 (CLI aborts on non blocking stdout). (Arnaud) +- Fixed bug #47849 (Non-deep import loses the namespace). (Rob) +- Fixed bug #47845 (PDO_Firebird omits first row from query). (Lars W) +- Fixed bug #47836 (array operator [] inconsistency when the array has + PHP_INT_MAX index value). (Matt) +- Fixed bug #47831 (Compile warning for strnlen() in main/spprintf.c). + (Ilia, rainer dot jung at kippdata dot de) +- Fixed bug #47828 (openssl_x509_parse() segfaults when a UTF-8 conversion + fails). (Scott, Kees Cook, Pierre) +- Fixed bug #47818 (Segfault due to bound callback param). (Felipe) +- Fixed bug #47801 (__call() accessed via parent:: operator is provided + incorrect method name). (Felipe) +- Fixed bug #47769 (Strange extends PDO). (Felipe) +- Fixed bug #47745 (FILTER_VALIDATE_INT doesn't allow minimum integer). + (Dmitry) +- Fixed bug #47721 (Alignment issues in mbstring and sysvshm extension). + (crrodriguez at opensuse dot org, Ilia) +- Fixed bug #47704 (PHP crashes on some "bad" operations with string + offsets). (Dmitry) +- Fixed bug #47695 (build error when xmlrpc and iconv are compiled against + different iconv versions). (Scott) +- Fixed bug #47667 (ZipArchive::OVERWRITE seems to have no effect). + (Mikko, Pierre) +- Fixed bug #47644 (Valid integers are truncated with json_decode()). (Scott) +- Fixed bug #47639 (pg_copy_from() WARNING: nonstandard use of \\ in a + string literal). (Ilia) +- Fixed bug #47616 (curl keeps crashing). (Felipe) +- Fixed bug #47598 (FILTER_VALIDATE_EMAIL is locale aware). (Ilia) +- Fixed bug #47566 (pcntl_wexitstatus() returns signed status). + (patch by james at jamesreno dot com) +- Fixed bug #47564 (unpacking unsigned long 32bit bit endian returns wrong + result). (Ilia) +- Fixed bug #47487 (performance degraded when reading large chunks after + fix of bug #44607). (Arnaud) +- Fixed bug #47468 (enable cli|cgi-only extensions for embed sapi). (Jani) +- Fixed bug #47435 (FILTER_FLAG_NO_PRIV_RANGE does not work with ipv6 + addresses in the filter extension). (Ilia) +- Fixed bug #47430 (Errors after writing to nodeValue parameter of an absent + previousSibling). (Rob) +- Fixed bug #47365 (ip2long() may allow some invalid values on certain 64bit + systems). (Ilia) +- Fixed bug #47254 (Wrong Reflection for extends class). (Felipe) +- Fixed bug #47042 (cgi sapi is incorrectly removing SCRIPT_FILENAME). + (Sriram Natarajan, David Soria Parra) +- Fixed bug #46882 (Serialize / Unserialize misbehaviour under OS with + different bit numbers). (Matt) +- Fixed bug #46812 (get_class_vars() does not include visible private variable + looking at subclass). (Arnaud) +- Fixed bug #46386 (Digest authentication with SOAP module fails against MSSQL + SOAP services). (Ilia, lordelph at gmail dot com) +- Fixed bug #46109 (Memory leak when mysqli::init() is called multiple times). + (Andrey) +- Fixed bug #45997 (safe_mode bypass with exec/system/passthru (windows only)). + (Pierre) +- Fixed bug #45877 (Array key '2147483647' left as string). (Matt) +- Fixed bug #45822 (Near infinite-loops while parsing huge relative offsets). + (Derick, Mike Sullivan) +- Fixed bug #45799 (imagepng() crashes on empty image). + (Martin McNickle, Takeshi Abe) +- Fixed bug #45622 (isset($arrayObject->p) misbehaves with + ArrayObject::ARRAY_AS_PROPS set). (robin_fernandes at uk dot ibm dot com, Arnaud) +- Fixed bug #45614 (ArrayIterator::current(), ::key() can show 1st private prop + of wrapped object). (robin_fernandes at uk dot ibm dot com, Arnaud) +- Fixed bug #45540 (stream_context_create creates bad http request). (Arnaud) +- Fixed bug #45202 (zlib.output_compression can not be set with ini_set()). + (Jani) +- Fixed bug #45191 (error_log ignores date.timezone php.ini val when setting + logging timestamps). (Derick) +- Fixed bug #45092 (header HTTP context option not being used when compiled + using --with-curlwrappers). (Jani) +- Fixed bug #44996 (xmlrpc_decode() ignores time zone on iso8601.datetime). + (Ilia, kawai at apache dot org) +- Fixed bug #44827 (define() is missing error checks for class constants). + (Ilia) +- Fixed bug #44214 (Crash using preg_replace_callback() and global variables). + (Nuno, Scott) +- Fixed bug #43073 (TrueType bounding box is wrong for angle<>0). + (Martin McNickle) +- Fixed bug #42663 (gzinflate() try to allocate all memory with truncated + data). (Arnaud) +- Fixed bug #42414 (some odbc_*() functions incompatible with Oracle ODBC + driver). (jhml at gmx dot net) +- Fixed bug #42362 (HTTP status codes 204 and 304 should not be gzipped). + (Scott, Edward Z. Yang) +- Fixed bug #42143 (The constant NAN is reported as 0 on Windows) + (Kanwaljeet Singla, Venkat Raman Don) +- Fixed bug #38805 (PDO truncates text from SQL Server text data type field). + (Steph) + diff --git a/data/releases/5.2/5.2.10/release.json b/data/releases/5.2/5.2.10/release.json new file mode 100644 index 0000000000..764060720b --- /dev/null +++ b/data/releases/5.2/5.2.10/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.10", + "date": "18 June 2009", + "tags": [], + "source": [ + { + "filename": "php-5.2.10.tar.bz2", + "name": "PHP 5.2.10 (tar.bz2)", + "md5": "15c7b5a87f57332d6fc683528e28247b" + }, + { + "filename": "php-5.2.10.tar.gz", + "name": "PHP 5.2.10 (tar.gz)", + "md5": "85753ba2909ac9fae5bca516adbda9e9" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.11/announcement.html b/data/releases/5.2/5.2.11/announcement.html new file mode 100644 index 0000000000..40d9986efd --- /dev/null +++ b/data/releases/5.2/5.2.11/announcement.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/5.2.11/changes.txt b/data/releases/5.2/5.2.11/changes.txt new file mode 100644 index 0000000000..c1b26bd6aa --- /dev/null +++ b/data/releases/5.2/5.2.11/changes.txt @@ -0,0 +1,124 @@ +- Fixed certificate validation inside php_openssl_apply_verification_policy. + (Ryan Sleevi, Ilia) +- Updated timezone database to version 2009.13 (2009m) (Derick) +- Added missing sanity checks around exif processing. (Ilia) +- Fixed sanity check for the color index in imagecolortransparent. (Pierre) +- Fixed zlib.deflate compress filter to actually accept level parameter. (Jani) +- Fixed leak on error in popen/exec (and related functions) on Windows. + (Pierre) +- Fixed regression in cURL extension that prevented flush of data to output + defined as a file handle. (Ilia) +- Fixed memory leak in stream_is_local(). (Felipe, Tony) + +- Fixed bug #49470 (FILTER_SANITIZE_EMAIL allows disallowed characters). (Ilia) +- Fixed bug #49447 (php engine needs to correctly check for socket API return + status on windows). (Sriram Natarajan) +- Fixed bug #49372 (segfault in php_curl_option_curl). (Pierre) +- Fixed bug #49361 (wordwrap() wraps incorrectly on end of line boundaries). + (Ilia, code-it at mail dot ru) +- Fixed bug #49289 (bcmath module doesn't compile with phpize configure). + (Jani) +- Fixed bug #49286 (php://input (php_stream_input_read) is broken). (Jani) +- Fixed bug #49269 (Ternary operator fails on Iterator object when used + inside foreach declaration). (Etienne, Dmitry) +- Fixed bug #49236 (Missing PHP_SUBST(PDO_MYSQL_SHARED_LIBADD)). (Jani) +- Fixed bug #49144 (Import of schema from different host transmits original + authentication details). (Dmitry) +- Fixed bug #49132 (posix_times returns false without error). + (phpbugs at gunnu dot us) +- Fixed bug #49125 (Error in dba_exists C code). (jdornan at stanford dot edu) +- Fixed bug #49095 (proc_get_status['exitcode'] fails on win32). (Felipe) +- Fixed bug #49074 (private class static fields can be modified by using + reflection). (Jani) +- Fixed bug #49072 (feof never returns true for damaged file in zip). + (Pierre) +- Fixed bug #49052 (context option headers freed too early when using + --with-curlwrappers). (Jani) +- Fixed bug #49032 (SplFileObject::fscanf() variables passed by reference). + (Jani) +- Fixed bug #49026 (proc_open() can bypass safe_mode_protected_env_vars + restrictions). (Ilia) +- Fixed bug #49000 (PHP CLI in Interactive mode (php -a) crashes when + including files from function). (Stas) +- Fixed bug #48994 (zlib.output_compression does not output HTTP headers + when set to a string value). (Jani) +- Fixed bug #48980 (Crash when compiling with pdo_firebird). (Felipe) +- Fixed bug #48962 (cURL does not upload files with specified filename). (Ilia) +- Fixed bug #48929 (Double \r\n after HTTP headers when "header" context + option is an array). (David Zülke) +- Fixed bug #48913 (Too long error code strings in pdo_odbc driver). + (naf at altlinux dot ru, Felipe) +- Fixed bug #48802 (printf() returns incorrect outputted length). (Jani) +- Fixed bug #48801 (Problem with imagettfbbox). (Takeshi Abe) +- Fixed bug #48788 (RecursiveDirectoryIterator doesn't descend into + symlinked directories). (Ilia) +- Fixed bug #48774 (SIGSEGVs when using curl_copy_handle()). (Sriram Natarajan) +- Fixed bug #48763 (ZipArchive produces corrupt archive). + (dani dot church at gmail dot com, Pierre) +- Fixed bug #48762 (IPv6 address filter still rejects valid address). (Felipe) +- Fixed bug #48733 (CURLOPT_WRITEHEADER|CURLOPT_FILE|CURLOPT_STDERR warns on + files that have been opened with r+). (Ilia) +- Fixed bug #48732 (TTF Bounding box wrong for letters below baseline). + (Takeshi Abe) +- Fixed bug #48718 (FILTER_VALIDATE_EMAIL does not allow numbers in domain + components). (Ilia) +- Fixed bug #48709 (metaphone and 'wh'). (brettz9 at yahoo dot com, Felipe) +- Fixed bug #48697 (mb_internal_encoding() value gets reset by parse_str()). + (Moriyoshi) +- Fixed bug #48696 (ldap_read() segfaults with invalid parameters). (Felipe) +- Fixed bug #48693 (Double declaration of __lambda_func when lambda wrongly + formatted). (peter at lvp-media dot com, Felipe) +- Fixed bug #48661 (phpize is broken with non-bash shells). (Jani) +- Fixed bug #48645 (mb_convert_encoding() doesn't understand hexadecimal + html-entities). (Moriyoshi) +- Fixed bug #48637 ("file" fopen wrapper is overwritten when using + --with-curlwrappers). (Jani) +- Fixed bug #48636 (Error compiling of ext/date on netware). + (guenter at php.net, Ilia) +- Fixed bug #48629 (get_defined_constants() ignores categorize parameter). + (Felipe) +- Fixed bug #48619 (imap_search ALL segfaults). (Pierre) +- Fixed bug #48608 (Invalid libreadline version not detected during + configure). (Jani) +- Fixed bug #48555 (ImageFTBBox() differs from previous versions for texts with + new lines) (Takeshi Abe) +- Fixed bug #48539 (pdo_dblib fails to connect, throws empty PDOException + "SQLSTATE[] (null)"). (Felipe) +- Fixed bug #48465 (sys_get_temp_dir() possibly inconsistent when using TMPDIR). + (Ilia) +- Fixed bug #48450 (Compile failure under IRIX 6.5.30 building gd.c). (Kalle) +- Fixed bug #48400 (imap crashes when closing stream opened with OP_PROTOTYPE + flag). (Jani) +- Fixed bug #48284 (hash "adler32" byte order is reversed). (Scott) +- Fixed bug #48276 (date("Y") on big endian machines produces the wrong + result). (Scott) +- Fixed bug #48247 (Infinite loop and possible crash during startup with + errors when errors are logged). (Jani) +- Fixed bug #48182 (ssl handshake fails during asynchronous socket connection). + (Sriram Natarajan) +- Fixed bug #48116 (Fixed build with Openssl 1.0). + (Pierre, Al dot Smith at aeschi dot ch dot eu dot org) +- Fixed bug #48060 (pdo_pgsql - large objects are returned as empty). (Matteo) +- Fixed bug #48057 (Only the date fields of the first row are fetched, + others are empty). (info at programmiernutte dot net) +- Fixed bug #47481 (natcasesort() does not sort extended ASCII characters + correctly). (Herman Radtke) +- Fixed bug #47351 (Memory leak in DateTime). (Derick, Tobias John) +- Fixed bug #47273 (Encoding bug in SoapServer->fault). (Dmitry) +- Fixed bug #46020 (with Sun Java System Web Server 7.0 on HPUX, #define HPUX). + (Uwe Schindler) +- Fixed bug #45905 (imagefilledrectangle() clipping error). + (markril at hotmail dot com, Pierre) +- Fixed bug #45280 (Reflection of instantiated COM classes causes PHP to + crash). (Paul Richards, Kalle) +- Fixed bug #45141 (setcookie will output expires years of >4 digits). (Ilia) +- Fixed bug #44683 (popen crashes when an invalid mode is passed). (Pierre) +- Fixed bug #44144 (spl_autoload_functions() should return object instance + when appropriate). (Hannes, Etienne) +- Fixed bug #43510 (stream_get_meta_data() does not return same mode as used in + fopen). (Jani) +- Fixed bug #42434 (ImageLine w/ antialias = 1px shorter). + (wojjie at gmail dot com, Kalle) +- Fixed bug #28038 (Sent incorrect RCPT TO commands to SMTP server) (Garrett) +- Fixed bug #49572 (use of C++ style comments causes build failure). + (Sriram Natarajan) diff --git a/data/releases/5.2/5.2.11/release.json b/data/releases/5.2/5.2.11/release.json new file mode 100644 index 0000000000..b77674efee --- /dev/null +++ b/data/releases/5.2/5.2.11/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.11", + "date": "17 September 2009", + "tags": [], + "source": [ + { + "filename": "php-5.2.11.tar.bz2", + "name": "PHP 5.2.11 (tar.bz2)", + "md5": "286bf34630f5643c25ebcedfec5e0a09" + }, + { + "filename": "php-5.2.11.tar.gz", + "name": "PHP 5.2.11 (tar.gz)", + "md5": "0223d71f0d6987c06c54b7557ff47f1d" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.12/announcement.html b/data/releases/5.2/5.2.12/announcement.html new file mode 100644 index 0000000000..4a390dee90 --- /dev/null +++ b/data/releases/5.2/5.2.12/announcement.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/5.2.12/changes.txt b/data/releases/5.2/5.2.12/changes.txt new file mode 100644 index 0000000000..ab5357a9b4 --- /dev/null +++ b/data/releases/5.2/5.2.12/changes.txt @@ -0,0 +1,119 @@ +- Updated timezone database to version 2009.19 (2009s). (Derick) + +- Added LIBXML_PARSEHUGE constant to overrides the maximum text size of a + single text node when using libxml2.7.3+. (Kalle) +- Added protection for $_SESSION from interrupt corruption and improved + "session.save_path" check. (Stas) +- Added "max_file_uploads" INI directive, which can be set to limit the + number of file uploads per-request to 20 by default, to prevent possible + DOS via temporary file exhaustion. (Ilia) + +- Changed "post_max_size" php.ini directive to allow unlimited post size by + setting it to 0. (Rasmus) + +- Improved fix for bug #50006 (Segfault caused by uksort()). (Stas) + +- Fixed error_log() to be binary safe when using message_type 3. (Jani) +- Fixed unnecessary invocation of setitimer when timeouts have been disabled. + (Arvind Srinivasan) +- Fixed crash in com_print_typeinfo when an invalid typelib is given. + (Pierre) +- Fixed a safe_mode bypass in tempnam() identified by Grzegorz Stachowiak. + (Rasmus) +- Fixed a open_basedir bypass in posix_mkfifo() identified by Grzegorz + Stachowiak. (Rasmus) +- Fixed crash in SQLiteDatabase::ArrayQuery() and SQLiteDatabase::SingleQuery() + when calling using Reflection. (Felipe) +- Fixed crash when instantiating PDORow and PDOStatement through Reflection. + (Felipe) +- Fixed memory leak in openssl_pkcs12_export_to_file(). (Felipe) + +- Fixed bug #50445 (PDO-ODBC stored procedure call from Solaris 64-bit causes + segfault). (davbrown4 at yahoo dot com, Felipe) +- Fixed bug #50345 (nanosleep not detected properly on some solaris versions). + (Jani) +- Fixed bug #50323 (Allow use of ; in values via ;; in PDO DSN). + (Ilia, Pierrick) +- Fixed bug #50285 (xmlrpc does not preserve keys in encoded indexed arrays). + (Felipe) +- Fixed bug #50282 (xmlrpc_encode_request() changes object into array in + calling function). (Felipe) +- Fixed bug #50266 (conflicting types for llabs). (Jani) +- Fixed bug #50255 (isset() and empty() silently casts array to object). + (Felipe) +- Fixed bug #50219 (soap call Segmentation fault on a redirected url). + (Pierrick) +- Fixed bug #50209 (Compiling with libedit cannot find readline.h). + (tcallawa at redhat dot com) +- Fixed bug #50207 (segmentation fault when concatenating very large strings + on 64bit linux). (Ilia) +- Fixed bug #50195 (pg_copy_to() fails when table name contains schema. (Ilia) +- Fixed bug #50185 (ldap_get_entries() return false instead of an empty array + when there is no error). (Jani) +- Fixed bug #50174 (Incorrectly matched docComment). (Felipe) +- Fixed bug #50168 (FastCGI fails with wrong error on HEAD request to + non-existent file). (Dmitry) +- Fixed bug #50162 (Memory leak when fetching timestamp column from Oracle + database). (Felipe) +- Fixed bug #50158 (FILTER_VALIDATE_EMAIL fails with valid addresses + containing = or ?). (Pierrick) +- Fixed bug #50073 (parse_url() incorrect when ? in fragment). (Ilia) +- Fixed bug #50006 (Segfault caused by uksort()). (Felipe) +- Fixed bug #50005 (Throwing through Reflection modified Exception object makes + segmentation fault). (Felipe) +- Fixed bug #49990 (SNMP3 warning message about security level printed twice). + (Jani) +- Fixed bug #49985 (pdo_pgsql prepare() re-use previous aborted transaction). + (ben dot pineau at gmail dot com, Ilia, Matteo) +- Fixed bug #49972 (AppendIterator undefined function crash). (Johannes) +- Fixed bug #49921 (Curl post upload functions changed). (Ilia) +- Fixed bug #49855 (import_request_variables() always returns NULL). + (Ilia, sjoerd at php dot net) +- Fixed bug #49847 (exec() fails to return data inside 2nd parameter, given + output lines >4095 bytes). (Ilia) +- Fixed bug #49809 (time_sleep_until() is not available on OpenSolaris). (Jani) +- Fixed bug #49785 (insufficient input string validation of htmlspecialchars()). + (Moriyoshi, hello at iwamot dot com) +- Fixed bug #49757 (long2ip() can return wrong value in a multi-threaded + applications). (Ilia, Florian Anderiasch) +- Fixed bug #49738 (calling mcrypt() after mcrypt_generic_deinit() crashes). + (Sriram Natarajan) +- Fixed bug #49719 (ReflectionClass::hasProperty returns true for a private + property in base class). (Felipe) +- Fixed bug #49698 (Unexpected change in strnatcasecmp()). (Rasmus) +- Fixed bug #49677 (ini parser crashes with apache2 and using ${something} ini + variables). (Jani) +- Fixed bug #49660 (libxml 2.7.3+ limits text nodes to 10MB). (Felipe) +- Fixed bug #49647 (DOMUserData does not exist). (Rob) +- Fixed bug #49630 (imap_listscan() function missing). (Felipe) +- Fixed bug #49627 (error_log to specified file does not log time according to + date.timezone). (Dmitry) +- Fixed bug #49578 (make install-pear fails). (Hannes) +- Fixed bug #49536 (mb_detect_encoding() returns incorrect results when + mbstring.strict_mode is turned on). (Moriyoshi) +- Fixed bug #49531 (CURLOPT_INFILESIZE sometimes causes warning "CURLPROTO_FILE + cannot be set"). (Felipe) +- Fixed bug #49528 (UTF-16 strings prefixed by BOMs wrongly converted). + (Moriyoshi) +- Fixed bug #49521 (PDO fetchObject sets values before calling constructor). + (Pierrick) +- Fixed bug #49517 (cURL's CURLOPT_FILE prevents file from being deleted after + fclose()). (Ilia) +- Fixed bug #49472 (Constants defined in Interfaces can be overridden). + (Felipe) +- Fixed bug #49354 (mb_strcut() cuts wrong length when offset is in the middle + of a multibyte character). (Moriyoshi) +- Fixed bug #49332 (Build error with Snow Leopard). (Scott) +- Fixed bug #49244 (Floating point NaN cause garbage characters). (Sjoerd) +- Fixed bug #49174 (crash when extending PDOStatement and trying to set + queryString property). (Felipe) +- Fixed bug #49098 (mysqli segfault on error). (Rasmus) +- Fixed bug #48805 (IPv6 socket transport is not working). (Ilia) +- Fixed bug #48764 (PDO_pgsql::query() always uses implicit prepared statements + if v3 proto available). (Matteo, Mark Kirkwood) +- Fixed bug #47848 (importNode doesn't preserve attribute namespaces). (Rob) +- Fixed bug #45120 (PDOStatement->execute() returns true then false for same + statement). (Pierrick) +- Fixed bug #34852 (Failure in odbc_exec() using oracle-supplied odbc driver). + (tim dot tassonis at trivadis dot com) + diff --git a/data/releases/5.2/5.2.12/release.json b/data/releases/5.2/5.2.12/release.json new file mode 100644 index 0000000000..6aaa96abef --- /dev/null +++ b/data/releases/5.2/5.2.12/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.12", + "date": "17 December 2009", + "tags": [], + "source": [ + { + "filename": "php-5.2.12.tar.bz2", + "name": "PHP 5.2.12 (tar.bz2)", + "md5": "5b7077e366c7eeab34da31dd860a1923" + }, + { + "filename": "php-5.2.12.tar.gz", + "name": "PHP 5.2.12 (tar.gz)", + "md5": "e6d6cc6570c77f60d8d4c99565d42ffd" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.13/announcement.html b/data/releases/5.2/5.2.13/announcement.html new file mode 100644 index 0000000000..74cc129620 --- /dev/null +++ b/data/releases/5.2/5.2.13/announcement.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/5.2.13/changes.txt b/data/releases/5.2/5.2.13/changes.txt new file mode 100644 index 0000000000..1fb3c3f1d8 --- /dev/null +++ b/data/releases/5.2/5.2.13/changes.txt @@ -0,0 +1,83 @@ +- Updated timezone database to version 2010.2. (Derick) +- Upgraded bundled PCRE to version 7.9. (Ilia) + +- Removed automatic file descriptor unlocking happening on shutdown and/or + stream close (on all OSes excluding Windows). (Tony, Ilia) + +- Changed tidyNode class to disallow manual node creation. (Pierrick) + +- Added missing host validation for HTTP urls inside FILTER_VALIDATE_URL. + (Ilia) + +- Improved LCG entropy. (Rasmus, Samy Kamkar) + +- Fixed safe_mode validation inside tempnam() when the directory path does + not end with a /). (Martin Jansen) +- Fixed a possible open_basedir/safe_mode bypass in session extension + identified by Grzegorz Stachowiak. (Ilia) +- Fixed bug in bundled libgd causing spurious horizontal lines drawn by + gdImageFilledPolygon (libgd #100). (Takeshi Abe) +- Fixed build of mysqli with MySQL 5.5.0-m2. (Andrey) + +- Fixed bug #50940 Custom content-length set incorrectly in Apache sapis. + (Brian France, Rasmus) +- Fixed bug #50930 (Wrong date by php_date.c patch with ancient gcc/glibc + versions). (Derick) +- Fixed bug #50859 (build fails with openssl 1.0 due to md2 deprecation). + (Ilia, hanno at hboeck dot de) +- Fixed bug #50847 (strip_tags() removes all tags greater then 1023 bytes + long). (Ilia) +- Fixed bug #50832 (HTTP fopen wrapper does not support passwordless HTTP + authentication). (Jani) +- Fixed bug #50823 (ReflectionFunction::isDeprecated producing "cannot be called + statically" error). (Jani, Felipe) +- Fixed bug #50791 (Compile failure: Bad logic in defining fopencookie + emulation). (Jani) +- Fixed bug #50787 (stream_set_write_buffer() has no effect on socket + streams). (vnegrier at optilian dot com, Ilia) +- Fixed bug #50772 (mysqli constructor without parameters does not return a + working mysqli object). (Andrey) +- Fixed bug #50761 (system.multiCall crashes in xmlrpc extension). (hiroaki + dot kawai at gmail dot com, Ilia) +- Fixed bug #50732 (exec() adds single byte twice to $output array). (Ilia) +- Fixed bug #50728 (All PDOExceptions hardcode 'code' property to 0). (Joey, + Ilia) +- Fixed bug #50727 (Accessing mysqli->affected_rows on no connection causes + segfault). (Andrey, Johannes) +- Fixed bug #50680 (strtotime() does not support eighth ordinal number). + (Ilia) +- Fixed bug #50661 (DOMDocument::loadXML does not allow UTF-16). (Rob) +- Fixed bug #50657 (copy() with an empty (zero-byte) HTTP source succeeds but + returns false). (Ilia) +- Fixed bug #50636 (MySQLi_Result sets values before calling constructor). + (Pierrick) +- Fixed bug #50632 (filter_input() does not return default value if the + variable does not exist). (Ilia) +- Fixed bug #50576 (XML_OPTION_SKIP_TAGSTART option has no effect). (Pierrick) +- Fixed bug #50575 (PDO_PGSQL LOBs are not compatible with PostgreSQL 8.5). + (Matteo) +- Fixed bug #50558 (Broken object model when extending tidy). (Pierrick) +- Fixed bug #50540 (Crash while running ldap_next_reference test cases). + (Sriram) +- Fixed bug #50508 (compile failure: Conflicting HEADER type declarations). + (Jani) +- Fixed bug #50394 (Reference argument converted to value in __call). (Stas) +- Fixed bug #49851 (http wrapper breaks on 1024 char long headers). (Ilia) +- Fixed bug #49600 (imageTTFText text shifted right). (Takeshi Abe) +- Fixed bug #49585 (date_format buffer not long enough for >4 digit years). + (Derick, Adam) +- Fixed bug #49463 (setAttributeNS fails setting default namespace). (Rob) +- Fixed bug #48667 (Implementing Iterator and IteratorAggregate). (Etienne) +- Fixed bug #48590 (SoapClient does not honor max_redirects). (Sriram) +- Fixed bug #48190 (Content-type parameter "boundary" is not case-insensitive + in HTTP uploads). (Ilia) +- Fixed bug #47601 (defined() requires class to exist when testing for class + constants). (Ilia) +- Fixed bug #47409 (extract() problem with array containing word "this"). + (Ilia, chrisstocktonaz at gmail dot com) +- Fixed bug #47002 (Field truncation when reading from dbase dbs with more + then 1024 fields). (Ilia, sjoerd-php at linuxonly dot nl) +- Fixed bug #45599 (strip_tags() truncates rest of string with invalid + attribute). (Ilia, hradtke) +- Fixed bug #44827 (define() allows :: in constant names). (Ilia) + diff --git a/data/releases/5.2/5.2.13/release.json b/data/releases/5.2/5.2.13/release.json new file mode 100644 index 0000000000..5387abf3f5 --- /dev/null +++ b/data/releases/5.2/5.2.13/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.13", + "date": "25 Feb 2010", + "tags": [], + "source": [ + { + "filename": "php-5.2.13.tar.bz2", + "name": "PHP 5.2.13 (tar.bz2)", + "md5": "eb4d0766dc4fb9667f05a68b6041e7d1" + }, + { + "filename": "php-5.2.13.tar.gz", + "name": "PHP 5.2.13 (tar.gz)", + "md5": "cdf95cdc1ebccccce9c96653fd593dd4" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.14/announcement.html b/data/releases/5.2/5.2.14/announcement.html new file mode 100644 index 0000000000..7f2945d21f --- /dev/null +++ b/data/releases/5.2/5.2.14/announcement.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/5.2.15/changes.txt b/data/releases/5.2/5.2.15/changes.txt new file mode 100644 index 0000000000..9824484f61 --- /dev/null +++ b/data/releases/5.2/5.2.15/changes.txt @@ -0,0 +1,30 @@ +- Fixed extract() to do not overwrite $GLOBALS and $this when using + EXTR_OVERWRITE. (jorto at redhat dot com) +- Fixed crash in zip extract method (possible CWE-170). + (Maksymilian Arciemowicz, Pierre) +- Fixed a possible double free in imap extension (Identified by Mateusz + Kocielski). (CVE-2010-4150). (Ilia) +- Fixed possible flaw in open_basedir (CVE-2010-3436). (Pierre) +- Fixed possible crash in mssql_fetch_batch(). (Kalle) +- Fixed NULL pointer dereference in ZipArchive::getArchiveComment. + (CVE-2010-3709). (Maksymilian Arciemowicz) + +- Fixed bug #53492 (fix crash if anti-aliasing steps are invalid). (Pierre) +- Fixed bug #53323 (pdo_firebird getAttribute() crash). + (preeves at ibphoenix dot com) +- Fixed bug #52929 (Segfault in filter_var with FILTER_VALIDATE_EMAIL with + large amount of data). (CVE-2010-3709). (Adam) +- Fixed bug #52879 (Objects unreferenced in __get, __set, __isset or __unset + can be freed too early). (mail_ben_schmidt at yahoo dot com dot au, Dmitry) +- Fixed bug #52772 (var_dump() doesn't check for the existence of + get_class_name before calling it). (Kalle, Gustavo) +- Fixed bug #52546 (pdo_dblib segmentation fault when iterating MONEY values). + (Felipe, Adam) +- Fixed bug #52436 (Compile error if systems do not have stdint.h) + (Sriram Natarajan) +- Fixed bug #52390 (mysqli_report() should be per-request setting). (Kalle) +- Fixed bug #51008 (Zend/tests/bug45877.phpt fails). (Dmitry) +- Fixed bug #47643 (array_diff() takes over 3000 times longer than php 5.2.4). + (Felipe) +- Fixed bug #44248 (RFC2616 transgression while HTTPS request through proxy + with SoapClient object). (Dmitry) diff --git a/data/releases/5.2/5.2.15/release.json b/data/releases/5.2/5.2.15/release.json new file mode 100644 index 0000000000..3ff23019e8 --- /dev/null +++ b/data/releases/5.2/5.2.15/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.15", + "date": "09 December 2010", + "tags": [], + "source": [ + { + "filename": "php-5.2.15.tar.bz2", + "name": "PHP 5.2.15 (tar.bz2)", + "md5": "d4ccad187b12835024980a0cea362893" + }, + { + "filename": "php-5.2.15.tar.gz", + "name": "PHP 5.2.15 (tar.gz)", + "md5": "dbbb2beed6b51e05d134744f137091a9" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.16/announcement.html b/data/releases/5.2/5.2.16/announcement.html new file mode 100644 index 0000000000..ba9697bbbd --- /dev/null +++ b/data/releases/5.2/5.2.16/announcement.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/5.2.16/changes.txt b/data/releases/5.2/5.2.16/changes.txt new file mode 100644 index 0000000000..2bcc1a9a35 --- /dev/null +++ b/data/releases/5.2/5.2.16/changes.txt @@ -0,0 +1,3 @@ +- Fixed bug #53517 (segfault in pgsql_stmt_execute() when postgres is down). + (gyp at balabit dot hu) +- Fixed bug #53516 (Regression in open_basedir handling). (Ilia) diff --git a/data/releases/5.2/5.2.16/release.json b/data/releases/5.2/5.2.16/release.json new file mode 100644 index 0000000000..0c2ff88317 --- /dev/null +++ b/data/releases/5.2/5.2.16/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.16", + "date": "16 December 2010", + "tags": [], + "source": [ + { + "filename": "php-5.2.16.tar.bz2", + "name": "PHP 5.2.16 (tar.bz2)", + "md5": "3b0bd012bd53bac9a5fefca61eccd5c6" + }, + { + "filename": "php-5.2.16.tar.gz", + "name": "PHP 5.2.16 (tar.gz)", + "md5": "68f2c92b5b33d131b1ea70ece9fc40ad" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.17/announcement.html b/data/releases/5.2/5.2.17/announcement.html new file mode 100644 index 0000000000..d62b4e9332 --- /dev/null +++ b/data/releases/5.2/5.2.17/announcement.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/5.2.2/changes.txt b/data/releases/5.2/5.2.2/changes.txt new file mode 100644 index 0000000000..b5c509c494 --- /dev/null +++ b/data/releases/5.2/5.2.2/changes.txt @@ -0,0 +1,221 @@ +- Improved bundled GD + . Sync to 2.0.35 + . Added imagegrabwindow and imagegrabscreen, capture a screen or a + window using its handle (Pierre) + . colors allocated henceforth from the resulting image overwrite the palette + colors (Rob Leslie) + . Improved thread safety of the gif support (Roman Nemecek, Nuno, Pierre) + . Use the dimension of the GIF frame to create the destination image (Pierre) + . Load only once the local color map from a GIF data (Pierre) + . Improved thread safety of the freetype cache (Scott MacVicar, Nuno, Pierre) + . imagearc huge CPU usage with large angles, libgd bug #74 (Pierre) +- Improved FastCGI SAPI to support external pipe and socket servers on win32. + (Dmitry) +- Improved Zend Memory Manager + . guarantee of reasonable time for worst cases of best-fit free block + searching algorithm. (Dmitry) + . better cache usage and less fragmentation on erealloc() (Tony, Dmitry) +- Improved SPL (Marcus) + . Added SplFileInfo::getBasename(), DirectoryIterator::getBasename(). + . Added SplFileInfo::getLinkTarget(), SplFileInfo::getRealPath(). + . Made RecursiveFilterIterator::accept() abstract as stated in documentation. +- Improved SOAP + . Added ability to encode arrays with "SOAP-ENC:Array" type instead of WSDL + type. To activate the ability use "feature"=>SOAP_USE_XSI_ARRAY_TYPE + option in SoapClient/SoapServer constructors. (Rob, Dmitry) + +- Added GMP_VERSION constant. (Tony) +- Added --ri switch to CLI which allows to check extension information. (Marcus) +- Added tidyNode::getParent() method (John, Nuno) +- Added openbasedir and safemode checks in zip:// stream wrapper and + ZipArchive::open (Pierre) +- Added php_pdo_sqlite_external.dll, a version of the PDO SQLite driver that + links against an external sqlite3.dll. This provides Windows users to upgrade + their sqlite3 version outside of the PHP release cycle. (Wez, Edin) +- Added linenumbers to array returned by token_get_all(). (Johannes) + +- Upgraded SQLite 3 to version 3.3.16 (Ilia) +- Upgraded libraries bundled in the Windows distribution. (Edin) + . c-client (imap) to version 2006e + . libpq (PostgreSQL) to version 8.2.3 + . libmysql (MySQL) to version 5.0.37 + . openssl to version 0.9.8e +- Upgraded PCRE to version 7.0 (Nuno) + +- Updated timezone database to version 2007.5. (Derick) + +- Fixed commandline handling for CLI and CGI. (Marcus, Johannes) +- Fixed iterator_apply() with a callback using __call(). (Johannes) +- Fixed possible multi bytes issues in openssl csr parser (Pierre) +- Fixed shmop_open() with IPC_CREAT|IPC_EXCL flags on Windows. + (Vladimir Kamaev, Tony). +- Fixed possible leak in ZipArchive::extractTo when safemode checks fails (Ilia) +- Fixed possible relative path issues in zip_open and TS mode (old API) (Pierre) +- Fixed zend_llist_remove_tail (Michael Wallner, Dmitry) +- Fixed a thread safety issue in gd gif read code (Nuno, Roman Nemecek) +- Fixed CVE-2007-1001, GD wbmp used with invalid image size (Pierre) +- Fixed unallocated memory access/double free in in array_user_key_compare() + (MOPB-24 by Stefan Esser) (Stas) +- Fixed wrong length calculation in unserialize S type + (MOPB-29 by Stefan Esser) (Stas) + +- Fixed bug #41215 (setAttribute return code reversed). (Ilia) +- Fixed bug #41192 (Per Directory Values only work for one key). (Dmitry) +- Fixed bug #41175 (addAttribute() fails to add an attribute with an empty + value). (Ilia) +- Fixed bug #41159 (mysql_pconnect() hash does not account for connect + flags). (Ilia) +- Fixed bug #41121 (range() overflow handling for large numbers on 32bit + machines). (Ilia) +- Fixed bug #41118 (PHP does not handle overflow of octal integers). (Tony) +- Fixed bug #41109 (recursiveiterator.inc says "implements" Iterator instead of + "extends"). (Marcus) +- Fixed bug #40130 (TTF usage doesn't work properly under Netware). (Scott, + gk at gknw dot de) +- Fixed bug #41093 (magic_quotes_gpc ignores first arrays keys). (Arpad, Ilia) +- Fixed bug #41075 (memleak when creating default object caused exception). + (Dmitry) +- Fixed bug #41067 (json_encode() problem with UTF-16 input). (jp at df5ea + dot net. Ilia) +- Fixed bug #41063 (chdir doesn't like root paths). (Dmitry) +- Fixed bug #41061 ("visibility error" in ReflectionFunction::export()). + (Johannes) +- Fixed bug #41043 (pdo_oci crash when freeing error text with persistent + connection). (Tony) +- Fixed bug #41037 (unregister_tick_function() inside the tick function crash PHP). + (Tony) +- Fixed bug #41034 (json_encode() ignores null byte started keys in arrays). + (Ilia) +- Fixed bug #41026 (segfault when calling "self::method()" in shutdown functions). + (Tony) +- Fixed bug #40999 (mcrypt_create_iv() not using random seed). (Ilia) +- Fixed bug #40998 (long session array keys are truncated). (Tony) +- Implement feature request #40947, allow a single filter as argument + for filter_var_array (Pierre) +- Fixed bug #40935 (pdo_mysql does not raise an exception on empty + fetchAll()). (Ilia) +- Fixed bug #40931 (open_basedir bypass via symlink and move_uploaded_file()). + (Tony) +- Fixed bug #40921 (php_default_post_reader crashes when post_max_size is + exceeded). (trickie at gmail dot com, Ilia) +- Fixed bug #40915 (addcslashes unexpected behavior with binary input). (Tony) +- Fixed bug #40899 (memory leak when nesting list()). (Dmitry) +- Fixed bug #40897 (error_log file not locked). (Ilia) +- Fixed bug #40883 (mysql_query() is allocating memory incorrectly). (Tony) +- Fixed bug #40872 (inconsistency in offsetSet, offsetExists treatment of + string enclosed integers). (Marcus) +- Fixed bug #40861 (strtotime() doesn't handle double negative relative time + units correctly). (Derick, Ilia) +- Fixed bug #40854 (imap_mail_compose() creates an invalid terminator for + multipart e-mails). (Ilia) +- Fixed bug #40848 (sorting issue on 64-bit Solaris). (Wez) +- Fixed bug #40836 (Segfault in ext/dom). (Rob) +- Fixed bug #40833 (Crash when using unset() on an ArrayAccess object retrieved + via __get()). (Dmitry) +- Fixed bug #40822 (pdo_mysql does not return rowCount() on select). (Ilia) +- Fixed bug #40815 (using strings like "class::func" and static methods in + set_exception_handler() might result in crash). (Tony) +- Fixed bug #40809 (Poor performance of ".="). (Dmitry) +- Fixed bug #40805 (Failure executing function ibase_execute()). (Tony) +- Fixed bug #40800 (cannot disable memory_limit with -1). (Dmitry, Tony) +- Fixed bug #40794 (ReflectionObject::getValues() may crash when used with + dynamic properties). (Tony) +- Fixed bug #40784 (Case sensitivity in constructor's fallback). (Tony) +- Fixed bug #40770 (Apache child exits when PHP memory limit reached). (Dmitry) +- Fixed bug #40764 (line thickness not respected for horizontal and vertical + lines). (Pierre) +- Fixed bug #40758 (Test fcgi_is_fastcgi() is wrong on windows). (Dmitry) +- Fixed bug #40754 (added substr() & substr_replace() overflow checks). (Ilia) +- Fixed bug #40752 (parse_ini_file() segfaults when a scalar setting is + redeclared as an array). (Tony) +- Fixed bug #40750 (openssl stream wrapper ignores default_stream_timeout). + (Tony) +- Fixed bug #40727 (segfault in PDO when failed to bind parameters). (Tony) +- Fixed bug #40709 (array_reduce() behaves strange with one item stored arrays). + (Ilia) +- Fixed bug #40703 (Resolved a possible namespace conflict between libxmlrpc + and MySQL's NDB table handler). (Ilia) +- Fixed bug #40961 (Incorrect results of DateTime equality check). (Mike) +- Fixed bug #40678 (Cross compilation fails). (Tony) +- Fixed bug #40621 (Crash when constructor called inappropriately). (Tony) +- Fixed bug #40609 (Segfaults when using more than one SoapVar in a request). + (Rob, Dmitry) +- Fixed bug #40606 (umask is not being restored when request is finished). + (Tony) +- Fixed bug #40598 (libxml segfault). (Rob) +- Fixed bug #40591 (list()="string"; gives invalid opcode). (Dmitry) +- Fixed bug #40578 (imagettftext() multithreading issue). (Tony, Pierre) +- Fixed bug #40576 (double values are truncated to 6 decimal digits when + encoding). (Tony) +- Fixed bug #40560 (DIR functions do not work on root UNC path). (Dmitry) +- Fixed bug #40548 (SplFileInfo::getOwner/getGroup give a warning on broken + symlink). (Marcus) +- Fixed bug #40546 (SplFileInfo::getPathInfo() throws an exception if directory + is in root dir). (Marcus) +- Fixed bug #40545 (multithreading issue in zend_strtod()). (Tony) +- Fixed bug #40503 (json_encode() value corruption on 32bit systems with + overflown values). (Ilia) +- Fixed bug #40467 (Partial SOAP request sent when XSD sequence or choice + include minOccurs=0). (Dmitry) +- Fixed bug #40465 (Ensure that all PHP elements are printed by var_dump). + (wharmby at uk dot ibm dot com, Ilia) +- Fixed bug #40464 (session.save_path wont use default-value when safe_mode + or open_basedir is enabled). (Ilia) +- Fixed bug #40455 (proc_open() uses wrong command line when safe_mode_exec_dir + is set). (Tony) +- Fixed bug #40432 (strip_tags() fails with greater than in attribute). (Ilia) +- Fixed bug #40431 (dynamic properties may cause crash in ReflectionProperty + methods). (Tony) +- Fixed bug #40451 (addAttribute() may crash when used with non-existent child + node). (Tony) +- Fixed bug #40442 (ArrayObject::offsetExists broke in 5.2.1, works in 5.2.0). + (olivier at elma dot fr, Marcus) +- Fixed bug #40428 (imagepstext() doesn't accept optional parameter). (Pierre) +- Fixed bug #40417 (Allow multiple instances of the same named PDO token in + prepared statement emulation code). (Ilia) +- Fixed bug #40414 (possible endless fork() loop when running fastcgi). + (Dmitry) +- Fixed bug #40410 (ext/posix does not compile on MacOS 10.3.9). (Tony) +- Fixed bug #40392 (memory leaks in PHP milter SAPI). + (tuxracer69 at gmail dot com, Tony) +- Fixed bug #40371 (pg_client_encoding() not working on Windows). (Edin) +- Fixed bug #40352 (FCGI_WEB_SERVER_ADDRS function get lost). (Dmitry) +- Fixed bug #40290 (strtotime() returns unexpected result with particular + timezone offset). (Derick) +- Fixed bug #40286 (PHP fastcgi with PHP_FCGI_CHILDREN don't kill children when + parent is killed). (Dmitry) +- Fixed bug #40261 (Extremely slow data handling due to memory fragmentation). + (Dmitry) +- Fixed bug #40236 (php -a function allocation eats memory). (Dmitry) +- Fixed bug #40109 (iptcembed fails on non-jfif jpegs). (Tony) +- Fixed bug #39965 (Latitude and longitude are backwards in date_sun_info()). + (Derick) +- Implement #39867 (openssl PKCS#12 support) (Marc Delling, Pierre) +- Fixed bug #39836 (SplObjectStorage empty after unserialize). (Marcus) +- Fixed bug #39416 (Milliseconds in date()). (Derick) +- Fixed bug #39396 (stream_set_blocking crashes on Win32). (Ilia, maurice at + iceblog dot de) +- Fixed bug #39351 (relative include fails on Solaris). (Dmitry, Tony) +- Fixed bug #39322 (proc_terminate() destroys process resource). (Nuno) +- Fixed bug #38406 (crash when assigning objects to SimpleXML attributes). (Tony) +- Fixed bug #37799 (ftp_ssl_connect() falls back to non-ssl connection). (Nuno) +- Fixed bug #36496 (SSL support in imap_open() not working on Windows). (Edin) +- Fixed bug #36226 (Inconsistent handling when passing nillable arrays). + (Dmitry) +- Fixed bug #35872 (Avoid crash caused by object store being referenced during + RSHUTDOWN). (Andy) +- Fixed bug #34794 (proc_close() hangs when used with two processes). + (jdolecek at netbsd dot org, Nuno) +- Fixed PECL bug #10194 (crash in Oracle client when memory limit reached in + the callback). (Tony) +- Fixed substr_compare and substr_count information leak (MOPB-14) (Stas, Ilia) +- Fixed crash on op-assign where argument is string offset (Brian, Stas) +- Fixed bug #38710 (data leakage because of nonexisting boundary checking in + statements in mysqli) (Stas) +- Fixed bug #37386 (autocreating element doesn't assign value to first node). + (Rob) +- Fixed bug #37013 (server hangs when returning circular object references). + (Dmitry) +- Fixed bug #33664 Console window appears when using exec() + (Richard Quadling, Stas) + diff --git a/data/releases/5.2/5.2.2/release.json b/data/releases/5.2/5.2.2/release.json new file mode 100644 index 0000000000..20945ab519 --- /dev/null +++ b/data/releases/5.2/5.2.2/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.2", + "date": "03 May 2007", + "tags": [], + "source": [ + { + "filename": "php-5.2.2.tar.bz2", + "name": "Source (tar.bz2)", + "md5": "d084337867d70b50a10322577be0e44e" + }, + { + "filename": "php-5.2.2.tar.gz", + "name": "Source (tar.gz)", + "md5": "7a920d0096900b2b962b21dc5c55fe3c" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.3/announcement.html b/data/releases/5.2/5.2.3/announcement.html new file mode 100644 index 0000000000..7fa2a86183 --- /dev/null +++ b/data/releases/5.2/5.2.3/announcement.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/5.2.3/changes.txt b/data/releases/5.2/5.2.3/changes.txt new file mode 100644 index 0000000000..9cf482a7ba --- /dev/null +++ b/data/releases/5.2/5.2.3/changes.txt @@ -0,0 +1,91 @@ +- Changed CGI install target to php-cgi and 'make install' to install CLI + when CGI is selected. (Jani) +- Changed JSON maximum nesting depth from 20 to 128. (Rasmus) + +- Improved compilation of heredocs and interpolated strings. (Matt, Dmitry) +- Optimized out a couple of per-request syscalls. (Rasmus) +- Optimized digest generation in md5() and sha1() functions. (Ilia) +- Upgraded bundled SQLite 3 to version 3.3.17. (Ilia) + +- Added "max_input_nesting_level" php.ini option to limit nesting level of + input variables. Fix for MOPB-03-2007. (Stas) +- Added a 4th parameter flag to htmlspecialchars() and htmlentities() that + makes the function not encode existing html entities. (Ilia) +- Added PDO::FETCH_KEY_PAIR mode that will fetch a 2 column result set into + an associated array. (Ilia) +- Added CURLOPT_TIMEOUT_MS and CURLOPT_CONNECTTIMEOUT_MS cURL constants. (Sara) +- Added --ini switch to CLI that prints out configuration file names. (Marcus) +- Added mysql_set_charset() to allow runtime altering of connection encoding. + (Scott) + +- Implemented FR #41416 (getColumnMeta() should also return table name). (Tony) + +- Fixed an integer overflow inside chunk_split(). Identified by Gerhard Wagner. + (Ilia) +- Fixed SOAP extension's handler() to work even when + "always_populate_raw_post_data" is off. (Ilia) +- Fixed possible infinite loop in imagecreatefrompng. (libgd #86) + (by Xavier Roche, CVE-2007-2756). (Pierre) +- Fixed ext/filter Email Validation Vulnerability (MOPB-45 by Stefan Esser). + (Ilia) +- Fixed altering $this via argument named "this". (Dmitry) +- Fixed PHP CLI usage of php.ini from the binary location. (Hannes) +- Fixed segfault in strripos(). (Tony, Joxean Koret) +- Fixed bug #41693 (scandir() allows empty directory names). (Ilia) +- Fixed bug #41673 (json_encode breaks large numbers in arrays). (Ilia) +- Fixed bug #41525 (ReflectionParameter::getPosition() not available). (Marcus) +- Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c). (Jani) +- Fixed bug #41504 (json_decode() incorrectly decodes JSON arrays with empty + string keys). (Ilia) +- Fixed bug #41492 (open_basedir/safe_mode bypass inside realpath()). (Ilia) +- Fixed bug #41477 (no arginfo about SoapClient::__soapCall()). (Ilia) +- Fixed bug #41455 (ext/dba/config.m4 pollutes global $LIBS and $LDFLAGS). + (mmarek at suse dot cz, Tony) +- Fixed bug #41442 (imagegd2() under output control). (Tony) +- Fixed bug #41430 (Fatal error with negative values of maxlen parameter of + file_get_contents()). (Tony) +- Fixed bug #41423 (PHP assumes wrongly that certain ciphers are enabled in + OpenSSL). (Pierre) +- Fixed bug #41421 (Uncaught exception from a stream wrapper segfaults). + (Tony, Dmitry) +- Fixed bug #41403 (json_decode cannot decode floats if localeconv + decimal_point is not '.'). (Tony) +- Fixed bug #41401 (wrong unary operator precedence). (Stas) +- Fixed bug #41394 (dbase_create creates file with corrupted header). (Tony) +- Fixed bug #41390 (Clarify error message with invalid protocol scheme). + (Scott) +- Fixed bug #41378 (fastcgi protocol lacks support for Reason-Phrase in + "Status:" header). (anight at eyelinkmedia dot com, Dmitry) +- Fixed bug #41374 (whole text concats values of wrong nodes). (Rob) +- Fixed bug #41358 (configure cannot determine SSL lib with libcurl >= 7.16.2). + (Mike) +- Fixed bug #41353 (crash in openssl_pkcs12_read() on invalid input). (Ilia) +- Fixed bug #41351 (Invalid opcode with foreach ($a[] as $b)). (Dmitry, Tony) +- Fixed bug #41347 (checkdnsrr() segfaults on empty hostname). (Scott) +- Fixed bug #41337 (WSDL parsing doesn't ignore non soap bindings). (Dmitry) +- Fixed bug #41326 (Writing empty tags with Xmlwriter::WriteElement[ns]) + (Pierre) +- Fixed bug #41321 (downgrade read errors in getimagesize() to E_NOTICE). + (Ilia) +- Fixed bug #41304 (compress.zlib temp files left). (Dmitry) +- Fixed bug #41293 (Fixed creation of HTTP_RAW_POST_DATA when there is no + default post handler). (Ilia) +- Fixed bug #41291 (FastCGI does not set SO_REUSEADDR). + (fmajid at kefta dot com, Dmitry) +- Fixed gd build when used with freetype 1.x (Pierre, Tony) +- Fixed bug #41287 (Namespace functions don't allow xmlns definition to be + optional). (Rob) +- Fixed bug #41285 (Improved fix for CVE-2007-1887 to work with non-bundled + sqlite2 lib). (Ilia) +- Fixed bug #41283 (Bug with deserializing array key that are doubles or + floats in wddx). (Ilia) +- Fixed bug #41257 (lookupNamespaceURI does not work as expected). (Rob) +- Fixed bug #41236 (Regression in timeout handling of non-blocking SSL + connections during reads and writes). (Ilia) +- Fixed bug #41134 (zend_ts_hash_clean not thread-safe). + (marco dot cova at gmail dot com, Tony) +- Fixed bug #41097 (ext/soap returning associative array as indexed without + using WSDL). (Dmitry) +- Fixed bug #41004 (minOccurs="0" and null class member variable). (Dmitry) +- Fixed bug #39542 (Behavior of require/include different to < 5.2.0). + (Dmitry) diff --git a/data/releases/5.2/5.2.3/release.json b/data/releases/5.2/5.2.3/release.json new file mode 100644 index 0000000000..6d717d44f9 --- /dev/null +++ b/data/releases/5.2/5.2.3/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.3", + "date": "31 May 2007", + "tags": [], + "source": [ + { + "filename": "php-5.2.3.tar.bz2", + "name": "Source (tar.bz2)", + "md5": "eb50b751c8e1ced05bd012d5a0e4dec3" + }, + { + "filename": "php-5.2.3.tar.gz", + "name": "Source (tar.gz)", + "md5": "df79b04d63fc4c1ccb6d8ea58a9cf3ac" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.4/announcement.html b/data/releases/5.2/5.2.4/announcement.html new file mode 100644 index 0000000000..8511cbe225 --- /dev/null +++ b/data/releases/5.2/5.2.4/announcement.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/5.2.4/changes.txt b/data/releases/5.2/5.2.4/changes.txt new file mode 100644 index 0000000000..339a90dc43 --- /dev/null +++ b/data/releases/5.2/5.2.4/changes.txt @@ -0,0 +1,258 @@ +- Removed --enable-versioning configure option. (Jani) + +- Upgraded PCRE to version 7.2 (Nuno) +- Updated timezone database to version 2007.6. (Derick) + +- Improved openssl_x509_parse() to return extensions in readable form. (Dmitry) + +- Enabled changing the size of statement cache for non-persistent OCI8 + connections. (Chris Jones, Tony) + +- Changed "display_errors" php.ini option to accept "stderr" as value which + makes the error messages to be outputted to STDERR instead of STDOUT with + CGI and CLI SAPIs (FR #22839). (Jani) +- Changed error handler to send HTTP 500 instead of blank page on PHP errors. + (Dmitry, Andrei Nigmatulin) +- Changed mail() function to be always available. (Johannes) + +- Added check for unknown options passed to configure. (Jani) +- Added persistent connection status checker to pdo_pgsql. + (Elvis Pranskevichus, Ilia) +- Added support for ATTR_TIMEOUT inside pdo_pgsql driver. (Ilia) +- Added php_ini_loaded_file() function which returns the path to the actual + php.ini in use. (Jani) +- Added GD version constants GD_MAJOR_VERSION, GD_MINOR_VERSION, + GD_RELEASE_VERSION, GD_EXTRA_VERSION and GD_VERSION_STRING. (Pierre) +- Added missing open_basedir checks to CGI. + (anight at eyelinkmedia dot com, Tony) +- Added missing format validator to unpack() function. (Ilia) +- Added missing error check inside bcpowmod(). (Ilia) +- Added CURLOPT_PRIVATE & CURLINFO_PRIVATE constants. + (Andrey A. Belashkov, Tony) +- Added missing MSG_EOR and MSG_EOF constants to sockets extension. (Jani) +- Added PCRE_VERSION constant. (Tony) +- Added ReflectionExtension::info() function to print the phpinfo() + block for an extension. (Johannes) + +- Implemented FR #41884 (ReflectionClass::getDefaultProperties() does not + handle static attributes). (Tony) + +- Fixed "Floating point exception" inside wordwrap(). + (Mattias Bengtsson, Ilia) +- Fixed several integer overflows in ImageCreate(), ImageCreateTrueColor(), + ImageCopyResampled() and ImageFilledPolygon() reported by Mattias Bengtsson. + (Tony) +- Fixed size calculation in chunk_split(). (Stas) +- Fixed integer overflow in str[c]spn(). (Stas) +- Fixed money_format() not to accept multiple %i or %n tokens. + (Stas, Ilia) +- Fixed zend_alter_ini_entry() memory_limit interruption + vulnerability. (Ilia) +- Fixed INFILE LOCAL option handling with MySQL extensions not to be + allowed when open_basedir or safe_mode is active. (Stas) +- Fixed session.save_path and error_log values to be checked against + open_basedir and safe_mode (CVE-2007-3378) (Stas, Maksymilian Arciemowicz) +- Fixed possible invalid read in glob() win32 implementation (CVE-2007-3806). + (Tony) +- Improved fix for MOPB-03-2007. (Ilia) +- Corrected fix for CVE-2007-2872. (Ilia) + +- Fixed possible crash in imagepsloadfont(), work around a bug in the pslib on + Windows. (Pierre) +- Fixed oci8 and PDO_OCI extensions to allow configuring with Oracle 11g + client libraries. (Chris Jones) +- Fixed EOF handling in case of reading from file opened in write only mode. + (Dmitry) +- Fixed var_export() to use the new H modifier so that it can generate + parseable PHP code for floats, independent of the locale. (Derick) +- Fixed regression introduced by the fix for the libgd bug #74. (Pierre) +- Fixed SimpleXML's behavior when used with empty(). (Sara) +- Fixed crash in OpenSSL extension because of non-string passphrase. (Dmitry) + +- Fixed PECL Bug #11345 (PDO_OCI crash after National language Support "NLS" + environment initialization error). (Chris Jones) +- Fixed PECL bug #11216 (crash in ZipArchive::addEmptyDir when a directory + already exists). (Pierre) + +- Fixed bug #42848 (Status: header incorrect under FastCGI). (Dmitry) +- Fixed bug #42368 (Incorrect error message displayed by pg_escape_string). + (Ilia) +- Fixed bug #42365 (glob() crashes and/or accepts way too many flags). + (Jani) +- Fixed Bug #42364 (Crash when using getRealPath with DirectoryIterator). + (Johannes) +- Fixed bug #42292 ($PHP_CONFIG not set for phpized builds). (Jani) +- Fixed bug #42261 (header wrong for date field). + (roberto at spadim dot com dot br, Ilia) +- Fixed bug #42259 (SimpleXMLIterator loses ancestry). (Rob) +- Fixed bug #42247 (ldap_parse_result() not defined under win32). (Jani) +- Fixed bug #42243 (copy() does not output an error when the first arg is a + dir). (Ilia) +- Fixed bug #42242 (sybase_connect() crashes). (Ilia) +- Fixed bug #42237 (stream_copy_to_stream returns invalid values for mmaped + streams). (andrew dot minerd at sellingsource dot com, Ilia) +- Fixed bug #42233 (Problems with æøå in extract()). (Jani) +- Fixed bug #42222 (possible buffer overflow in php_openssl_make_REQ). (Pierre) +- Fixed bug #42211 (property_exists() fails to find protected properties + from a parent class). (Dmitry) +- Fixed bug #42208 (substr_replace() crashes when the same array is passed + more than once). (crrodriguez at suse dot de, Ilia) +- Fixed bug #42198 (SCRIPT_NAME and PHP_SELF truncated when inside a userdir + and using PATH_INFO). (Dmitry) +- Fixed bug #42195 (C++ compiler required always). (Jani) +- Fixed bug #42183 (classmap causes crash in non-wsdl mode). (Dmitry) +- Fixed bug #42173 (oci8 INTERVAL and TIMESTAMP type fixes). (Chris) +- Fixed bug #42151 (__destruct functions not called after catching a SoapFault + exception). (Dmitry) +- Fixed bug #42142 (substr_replace() returns FALSE when length > string length). + (Ilia) +- Fixed bug #42135 (Second call of session_start() causes creation of SID). + (Ilia) +- Fixed bug #42134 (oci_error() returns false after oci_new_collection() fails). + (Tony) +- Fixed bug #42119 (array_push($arr,&$obj) doesn't work with + zend.ze1_compatibility_mode On). (Dmitry) +- Fixed bug #42117 (bzip2.compress loses data in internal buffer). + (Philip, Ilia) +- Fixed bug #42112 (deleting a node produces memory corruption). (Rob) +- Fixed bug #42107 (sscanf broken when using %2$s format parameters). (Jani) +- Fixed bug #42090 (json_decode causes segmentation fault). (Hannes) +- Fixed bug #42082 (NodeList length zero should be empty). (Hannes) +- Fixed bug #42072 (No warning message for clearstatcache() with arguments). + (Ilia) +- Fixed bug #42071 (ini scanner allows using NULL as option name). (Jani) +- Fixed bug #42027 (is_file() / is_dir() matches file/dirnames with wildcard char + or trailing slash in Windows). (Dmitry) +- Fixed bug #42019 (configure option --with-adabas=DIR does not work). (Jani) +- Fixed bug #42015 (ldap_rename(): server error "DSA is unwilling to perform"). + (bob at mroczka dot com, Jani) +- Fixed bug #42009 (is_a() and is_subclass_of() should NOT call autoload, in the + same way as "instanceof" operator). (Dmitry) +- Fixed bug #41989 (move_uploaded_file() & relative path in ZTS mode). (Tony) +- Fixed bug #41984 (Hangs on large SoapClient requests). (Dmitry) +- Fixed bug #41983 (Error Fetching http headers terminated by '\n'). (Dmitry) +- Fixed bug #41973 (--with-ldap=shared fails with LDFLAGS="-Wl,--as-needed"). (Nuno) +- Fixed bug #41971 (PDOStatement::fetch and PDOStatement::setFetchMode causes + unexpected behavior). (Ilia) +- Fixed bug #41964 (strtotime returns a timestamp for non-time string of + pattern '(A|a) .+'). (Derick) +- Fixed bug #41961 (Ensure search for hidden private methods does not stray from + class hierarchy). (robin_fernandes at uk dot ibm dot com) +- Fixed bug #41947 (SimpleXML incorrectly registers empty strings asnamespaces). + (Rob) +- Fixed bug #41929 (Foreach on object does not iterate over all visible properties). + (Dmitry) +- Fixed bug #41919 (crash in string to array conversion). + (judas dot iscariote at gmail dot com, Ilia) +- Fixed bug #41909 (var_export() is locale sensitive when exporting float + values). (Derick) +- Fixed bug #41908 (CFLAGS="-Os" ./configure --enable-debug fails). + (christian at hoffie dot info, Tony) +- Fixed bug #41904 (proc_open(): empty env array should cause empty environment + to be passed to process). (Jani) +- Fixed bug #41867 (SimpleXML: getName is broken). (Rob) +- Fixed bug #41865 (fputcsv(): 2nd parameter is not optional). (Jani) +- Fixed bug #41861 (SimpleXML: getNamespaces() returns the namespaces of a node's + siblings). (Rob) +- Fixed bug #41845 (pgsql extension does not compile with PostgreSQL <7.4). (Ilia) +- Fixed bug #41844 (Format returns incorrect number of digits for negative years + -0001 to -0999). (Derick) +- Fixed bug #41842 (Cannot create years < 0100 & negative years with date_create + or new DateTime). (Derick) +- Fixed bug #41833 (addChild() on a non-existent node, no node created, + getName() segfaults). (Rob) +- Fixed bug #41831 (pdo_sqlite prepared statements convert resources to + strings). (Ilia) +- Fixed bug #41815 (Concurrent read/write fails when EOF is reached). (Sascha) +- Fixed bug #41813 (segmentation fault when using string offset as an object). + (judas dot iscariote at gmail dot com, Tony) +- Fixed bug #41795 (checkdnsrr does not support DNS_TXT type). + (lucas at facebook dot com, Tony) +- Fixed bug #41773 (php_strip_whitespace() sends headers with errors + suppressed). (Tony) +- Fixed bug #41770 (SSL: fatal protocol error due to buffer issues). (Ilia) +- Fixed bug #41765 (Recode crashes/does not work on amd64). + (nexus at smoula dot net, Stas) +- Fixed bug #41724 (libxml_get_last_error() - errors service request scope). + (thekid at php dot net, Ilia) +- Fixed bug #41717 (imagepolygon does not respect thickness). (Pierre) +- Fixed bug #41713 (Persistent memory consumption on win32 since 5.2). (Dmitry) +- Fixed bug #41711 (NULL temporary lobs not supported in OCI8). + (Chris Jones, Tony) +- Fixed bug #41709 (strtotime() does not handle 00.00.0000). (Derick) +- Fixed bug #41698 (float parameters truncated to integer in prepared + statements). (Ilia) +- Fixed bug #41692 (ArrayObject shows weird behavior in respect to + inheritance). (Tony) +- Fixed bug #41691 (ArrayObject::exchangeArray hangs Apache). (Tony) +- Fixed bug #41686 (Omitting length param in array_slice not possible). (Ilia) +- Fixed bug #41685 (array_push() fails to warn when next index is + already occupied). (Ilia) +- Fixed bug #41655 (open_basedir bypass via glob()). (Ilia) +- Fixed bug #41640 (get_class_vars produces error on class constants). + (Johannes) +- Fixed bug #41635 (SoapServer and zlib.output_compression with FastCGI + result in major slowdown). (Dmitry) +- Fixed bug #41633 (Crash instantiating classes with self-referencing + constants). (Dmitry) +- Fixed bug #41630 (segfault when an invalid color index is present in the + image data). (Reported by Elliot+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/5.2.5/changes.txt b/data/releases/5.2/5.2.5/changes.txt new file mode 100644 index 0000000000..6a43ed187b --- /dev/null +++ b/data/releases/5.2/5.2.5/changes.txt @@ -0,0 +1,118 @@ +- Upgraded PCRE to version 7.3 (Nuno) +- Added optional parameter $provide_object to debug_backtrace(). (Sebastian) +- Added alpha support for imagefilter() IMG_FILTER_COLORIZE. (Pierre) +- Added ability to control memory consumption between request using + ZEND_MM_COMPACT environment variable. (Dmitry) + +- Improved speed of array_intersect_key(), array_intersect_assoc(), + array_uintersect_assoc(), array_diff_key(), array_diff_assoc() and + array_udiff_assoc(). (Dmitry) + +- Fixed move_uploaded_file() to always set file permissions of resulting file + according to UMASK. (Andrew Sitnikov) +- Fixed possible crash in ext/soap because of uninitialized value. (Zdash Urf) +- Fixed regression in glob() when enforcing safe_mode/open_basedir checks on + paths containing '*'. (Ilia) +- Fixed "mail.force_extra_parameters" php.ini directive not to be modifiable + in .htaccess due to the security implications - reported by SecurityReason. + (Stas) +- Fixed PDO crash when driver returns empty LOB stream. (Stas) +- Fixed dl() to only accept filenames - reported by Laurent Gaffie. (Stas) +- Fixed dl() to limit argument size to MAXPATHLEN (CVE-2007-4887). + (Christian Hoffmann) +- Fixed iconv_*() functions to limit argument sizes as workaround to libc + bug (CVE-2007-4783, CVE-2007-4840 by Laurent Gaffie). + (Christian Hoffmann, Stas) +- Fixed missing brackets leading to build warning and error in the log. + Win32 code. (Andrey) +- Fixed leaks with multiple connects on one mysqli object. (Andrey) +- Fixed endianness detection on MacOS when building universal binary. + (Uwe Schindler, Christian Speich, Tony) +- Fixed possible triggering of buffer overflows inside glibc + implementations of the fnmatch(), setlocale() and glob() functions. + Reported by Laurent Gaffie. (Ilia) +- Fixed imagerectangle regression with 1x1 rectangle (libgd #106). (Pierre) +- Fixed htmlentities/htmlspecialchars not to accept partial multibyte + sequences. (Stas) + +- Fixed bug #43196 (array_intersect_assoc() crashes with non-array input). + (Jani) +- Fixed bug #43139 (PDO ignores ATTR_DEFAULT_FETCH_MODE in some cases with + fetchAll()). (Ilia) +- Fixed bug #43137 (rmdir() and rename() do not clear statcache). (Jani) +- Fixed bug #43130 (Bound parameters cannot have - in their name). (Ilia) +- Fixed bug #43099 (XMLWriter::endElement() does not check # of params). + (Ilia) +- Fixed bug #43020 (Warning message is missing with shuffle() and more + than one argument). (Scott) +- Fixed bug #42976 (Crash when constructor for newInstance() or + newInstanceArgs() fails) (Ilia) +- Fixed bug #42943 (ext/mssql: Move *timeout initialization from RINIT + to connect time). (Ilia) +- Fixed bug #42917 (PDO::FETCH_KEY_PAIR doesn't work with setFetchMode). + (Ilia) +- Fixed bug #42890 (Constant "LIST" defined by mysqlclient and c-client). + (Andrey) +- Fixed bug #42869 (automatic session id insertion adds sessions id to + non-local forms). (Ilia) +- Fixed bug #42818 ($foo = clone(array()); leaks memory). (Dmitry) +- Fixed bug #42817 (clone() on a non-object does not result in a fatal + error). (Ilia) +- Fixed bug #42785 (json_encode() formats doubles according to locale rather + then following standard syntax). (Ilia) +- Fixed bug #42783 (pg_insert() does not accept an empty list for + insertion). (Ilia) +- Fixed bug #42773 (WSDL error causes HTTP 500 Response). (Dmitry) +- Fixed bug #42772 (Storing $this in a static var fails while handling a cast + to string). (Dmitry) +- Fixed bug #42767 (highlight_string() truncates trailing comment). (Ilia) +- Fixed bug #42739 (mkdir() doesn't like a trailing slash when safe_mode is + enabled). (Ilia) +- Fixed bug #42703 (Exception raised in an iterator::current() causes segfault + in FilterIterator) (Marcus) +- Fixed bug #42699 (PHP_SELF duplicates path). (Dmitry) +- Fixed bug #42654 (RecursiveIteratorIterator modifies only part of leaves) + (Marcus) +- Fixed bug #42643 (CLI segfaults if using ATTR_PERSISTENT). (Ilia) +- Fixed bug #42637 (SoapFault : Only http and https are allowed). (Bill Moran) +- Fixed bug #42629 (Dynamically loaded PHP extensions need symbols exported + on MacOSX). (jdolecek at NetBSD dot org) +- Fixed bug #42627 (bz2 extension fails to build with -fno-common). + (dolecek at netbsd dot org) +- Fixed Bug #42596 (session.save_path MODE option does not work). (Ilia) +- Fixed bug #42590 (Make the engine recognize \v and \f escape sequences). + (Ilia) +- Fixed bug #42587 (behavior change regarding symlinked .php files). (Dmitry) +- Fixed bug #42579 (apache_reset_timeout() does not exist). (Jani) +- Fixed bug #42549 (ext/mysql failed to compile with libmysql 3.23). (Scott) +- Fixed bug #42523 (PHP_SELF duplicates path). (Dmitry) +- Fixed bug #42512 (ip2long('255.255.255.255') should return 4294967295 on + 64-bit PHP). (Derick) +- Fixed bug #42506 (php_pgsql_convert() timezone parse bug) (nonunnet at + gmail dot com, Ilia) +- Fixed bug #42496 (OCI8 cursor is not closed when using 2 clobs in a select + query). (Oracle Corp.) +- Fixed bug #42462 (Segmentation when trying to set an attribute in a + DOMElement). (Rob) +- Fixed bug #42453 (CGI SAPI does not shut down cleanly with -i/-m/-v cmdline + options). (Dmitry) +- Fixed bug #42452 (PDO classes do not expose Reflection API information). + (Hannes) +- Fixed bug #42468 (Write lock on file_get_contents fails when using a + compression stream). (Ilia) +- Fixed bug #42488 (SoapServer reports an encoding error and the error itself + breaks). (Dmitry) +- Fixed bug #42378 (mysqli_stmt_bind_result memory exhaustion). (Andrey) +- Fixed bug #42359 (xsd:list type not parsed). (Dmitry) +- Fixed bug #42326 (SoapServer crash). (Dmitry) +- Fixed bug #42214 (SoapServer sends clients internal PHP errors). (Dmitry) +- Fixed bug #42189 (xmlrpc_set_type() crashes php on invalid datetime + values). (Ilia) +- Fixed bug #42139 (XMLReader option constants are broken using XML()). (Rob) +- Fixed bug #42086 (SoapServer return Procedure '' not present for WSIBasic + compliant wsdl). (Dmitry) +- Fixed bug #41822 (Relative includes broken when getcwd() fails). (Ab5602, + Jani) +- Fixed bug #41561 (Values set with php_admin_* in httpd.conf can be overwritten + with ini_set()). (Stas, Jani) +- Fixed bug #39651 (proc_open() append mode doesn't work on windows). (Nuno) diff --git a/data/releases/5.2/5.2.5/release.json b/data/releases/5.2/5.2.5/release.json new file mode 100644 index 0000000000..793a72b268 --- /dev/null +++ b/data/releases/5.2/5.2.5/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.5", + "date": "08 November 2007", + "tags": [], + "source": [ + { + "filename": "php-5.2.5.tar.bz2", + "name": "Source (tar.bz2)", + "md5": "1fe14ca892460b09f06729941a1bb605" + }, + { + "filename": "php-5.2.5.tar.gz", + "name": "Source (tar.gz)", + "md5": "61a0e1661b70760acc77bc4841900b7a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.6/announcement.html b/data/releases/5.2/5.2.6/announcement.html new file mode 100644 index 0000000000..edac8ca97e --- /dev/null +++ b/data/releases/5.2/5.2.6/announcement.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/5.2.6/changes.txt b/data/releases/5.2/5.2.6/changes.txt new file mode 100644 index 0000000000..2257904103 --- /dev/null +++ b/data/releases/5.2/5.2.6/changes.txt @@ -0,0 +1,141 @@ +- Upgraded PCRE to version 7.6 (Nuno) + +- Fixed two possible crashes inside posix extension (Tony) +- Fixed incorrect heredoc handling when label is used within the block. + (Matt) +- Fixed possible stack buffer overflow in FastCGI SAPI. (Andrei Nigmatulin) +- Fixed sending of uninitialized paddings which may contain some information. (Andrei Nigmatulin) +- Fixed a bug in formatting timestamps when DST is active in the default timezone (Derick) +- Properly address incomplete multibyte chars inside escapeshellcmd() (Ilia, Stefan Esser) +- Fix integer overflow in printf(). (Stas, Maksymilian Aciemowicz) +- Fixed security issue detailed in CVE-2008-0599. (Rasmus) +- Fixed potential memleak in stream filter parameter for zlib filter. (Greg) +- Added Reflection API metadata for the methods of the DOM classes. (Sebastian) +- Fixed weird behavior in CGI parameter parsing. (Dmitry, Hannes Magnusson) +- Fixed a safe_mode bypass in cURL identified by Maksymilian Arciemowicz. + (Ilia) +- Fixed a bug with PDO::FETCH_COLUMN|PDO::FETCH_GROUP mode when a column # by + which to group by data is specified. (Ilia) +- Fixed segfault in filter extension when using callbacks. (Arnar Mar Sig, + Felipe) +- Fixed faulty fix for bug #40189 (endless loop in zlib.inflate stream filter). (Greg) + +- Fixed bug #44742 (timezone_offset_get() causes segmentation faults). (Derick) +- Fixed bug #44720 (Prevent crash within session_register()). (Scott) +- Fixed bug #44703 (htmlspecialchars() does not detect bad character set argument). (Andy Wharmby) +- Fixed bug #44673 (With CGI argv/argc starts from arguments, not from script) (Dmitry) +- Fixed bug #44667 (proc_open() does not handle pipes with the mode 'wb' correctly). (Jani) +- Fixed bug #44663 (Crash in imap_mail_compose if "body" parameter invalid). (Ilia) +- Fixed bug #44650 (escaepshellscmd() does not check arg count). (Ilia) +- Fixed bug #44613 (Crash inside imap_headerinfo()). (Ilia, jmessa) +- Fixed bug #44603 (Order issues with Content-Type/Length headers on POST). (Ilia) +- Fixed bug #44594 (imap_open() does not validate # of retries parameter). (Ilia) +- Fixed bug #44591 (imagegif's filename parameter). (Felipe) +- Fixed bug #44557 (Crash in imap_setacl when supplied integer as username) (Thomas Jarosch) +- Fixed bug #44487 (call_user_method_array issues a warning when throwing an exception). (David Soria Parra) +- Fixed bug #44478 (Inconsistent behaviour when assigning new nodes). (Rob, Felipe) +- Fixed bug #44445 (email validator does not handle domains starting/ending with a -). (Ilia) +- Fixed bug #44440 (st_blocks undefined under BeOS). (Felipe) +- Fixed bug #44394 (Last two bytes missing from output). (Felipe) +- Fixed bug #44388 (Crash inside exif_read_data() on invalid images) (Ilia) +- Fixed bug #44373 (PDO_OCI extension compile failed). (Felipe) +- Fixed bug #44333 (SEGFAULT when using mysql_pconnect() with client_flags). (Felipe) +- Fixed bug #44306 (Better detection of MIPS processors on Windows). (Ilia) +- Fixed bug #44242 (metaphone('CMXFXM') crashes PHP). (Felipe) +- Fixed bug #44233 (MSG_PEEK undefined under BeOS R5). (jonathonfreeman at gmail dot com, Ilia) +- Fixed bug #44216 (strftime segfaults on large negative value). (Derick) +- Fixed bug #44209 (strtotime() doesn't support 64 bit timestamps on 64 bit platforms). (Derick) +- Fixed bug #44206 (OCI8 selecting ref cursors leads to ORA-1000 maximum open cursors reached). (Oracle Corp.) +- Fixed bug #44200 (A crash in PDO when no bound targets exists and yet bound parameters are present). (Ilia) +- Fixed bug #44197 (socket array keys lost on socket_select). (Felipe) +- Fixed bug #44191 (preg_grep messes up array index). (Felipe) +- Fixed bug #44189 (PDO setAttribute() does not properly validate values for native numeric options). (Ilia) +- Fixed bug #44184 (Double free of loop-variable on exception). (Dmitry) +- Fixed bug #44171 (Invalid FETCH_COLUMN index does not raise an error). (Ilia) +- Fixed bug #44166 (Parameter handling flaw in PDO::getAvailableDrivers()). (Ilia) +- Fixed bug #44159 (Crash: $pdo->setAttribute(PDO::STATEMENT_ATTR_CLASS, NULL)). (Felipe) +- Fixed bug #44152 (Possible crash with syslog logging on ZTS builds). (Ilia) +- Fixed bug #44141 (private parent constructor callable through static function). (Dmitry) +- Fixed bug #44113 (OCI8 new collection creation can fail with OCI-22303). (Oracle Corp.) +- Fixed bug #44069 (Huge memory usage with concatenation using . instead of .=). (Dmitry) +- Fixed bug #44046 (crash inside array_slice() function with an invalid by-ref offset). (Ilia) +- Fixed bug #44028 (crash inside stream_socket_enable_crypto() when enabling encryption without crypto type). (Ilia) +- Fixed bug #44018 (RecursiveDirectoryIterator options inconsistancy). (Marcus) +- Fixed bug #44008 (OCI8 incorrect usage of OCI-Lob->close crashes PHP). (Oracle Corp.) +- Fixed bug #43998 (Two error messages returned for incorrect encoding for mb_strto[upper|lower]). (Rui) +- Fixed bug #43994 (mb_ereg 'successfully' matching incorrect). (Rui) +- Fixed bug #43954 (Memory leak when sending the same HTTP status code multiple times). (Scott) +- Fixed bug #43927 (koi8r is missing from html_entity_decode()). (andy at demos dot su, Tony) +- Fixed bug #43912 (Interbase column names are truncated to 31 characters). (Ilia) +- Fixed bug #43875 (Two error messages returned for $new and $flag argument in mysql_connect()). (Hannes) +- Fixed bug #43863 (str_word_count() breaks on cyrillic "ya" in locale cp1251). (phprus at gmail dot com, Tony) +- Fixed bug #43841 (mb_strrpos offset is byte count for negative values). (Rui) +- Fixed bug #43840 (mb_strpos bounds check is byte count rather than a character count). (Rui) +- Fixed bug #43808 (date_create never fails (even when it should)). (Derick) +- Fixed bug #43793 (zlib filter is unable to auto-detect gzip/zlib file headers). (Greg) +- Fixed bug #43703 (Signature compatibility check broken). (Dmitry) +- Fixed bug #43677 (Inconsistent behaviour of include_path set with php_value). (manuel at mausz dot at) +- Fixed bug #43663 (Extending PDO class with a __call() function doesn't work). (David Soria Parra) +- Fixed bug #43647 (Make FindFile use PATH_SEPARATOR instead of ";"). (Ilia) +- Fixed bug #43635 (mysql extension ingores INI settings on NULL values passed to mysql_connect()). (Ilia) +- Fixed bug #43620 (Workaround for a bug inside libcurl 7.16.2 that can result in a crash). (Ilia) +- Fixed bug #43614 (incorrect processing of numerical string keys of array in arbitrary serialized data). (Dmitriy Buldakov, Felipe) +- Fixed bug #43606 (define missing depencies of the exif extension). (crrodriguez at suse dot de) +- Fixed bug #43589 (a possible infinite loop in bz2_filter.c). (Greg) +- Fixed bug #43580 (removed bogus declaration of a non-existent php_is_url() function). (Ilia) +- Fixed bug #43559 (array_merge_recursive() doesn't behave as expected with duplicate NULL values). (Felipe, Tony) +- Fixed bug #43533 (escapeshellarg('') returns null). (Ilia) +- Fixed bug #43527 (DateTime created from a timestamp reports environment timezone). (Derick) +- Fixed bug #43522 (stream_get_line() eats additional characters). (Felipe, Ilia, Tony) +- Fixed bug #43507 (SOAPFault HTTP Status 500 - would like to be able to set the HTTP Status). (Dmitry) +- Fixed bug #43505 (Assign by reference bug). (Dmitry) +- Fixed bug #43498 (file_exists() on a proftpd server got SIZE not allowed in ASCII mode). (Ilia, crrodriguez at suse dot de) +- Fixed bug #43497 (OCI8 XML/getClobVal aka temporary LOBs leak UGA memory). (Chris) +- Fixed bug #43495 (array_merge_recursive() crashes with recursive arrays). (Ilia) +- Fixed bug #43493 (pdo_pgsql does not send username on connect when password is not available). (Ilia) +- Fixed bug #43491 (Under certain conditions, file_exists() never returns). (Dmitry) +- Fixed bug #43483 (get_class_methods() does not list all visible methods). (Dmitry) +- Fixed bug #43482 (array_pad() does not warn on very small pad numbers). (Ilia) +- Fixed bug #43457 (Prepared statement with incorrect parms doesn't throw exception with pdo_pgsql driver). (Ilia) +- Fixed bug #43450 (Memory leak on some functions with implicit object __toString() call). (David C.) +- Fixed bug #43386 (array_globals not reset to 0 properly on init). (Ilia) +- Fixed bug #43377 (PHP crashes with invalid argument for DateTimeZone). (Ilia) +- Fixed bug #43373 (pcntl_fork() should not raise E_ERROR on error). (Ilia) +- Fixed bug #43364 (recursive xincludes don't remove internal xml nodes properly). (Rob, patch from ddb@bitxtender.de) +- Fixed bug #43301 (mb_ereg*_replace() crashes when replacement string is invalid PHP expression and 'e' option is used). (Jani) +- Fixed bug #43295 (crash because of uninitialized SG(sapi_headers).mimetype). (Dmitry) +- Fixed bug #43293 (Multiple segfaults in getopt()). (Hannes) +- Fixed bug #43279 (pg_send_query_params() converts all elements in 'params' to strings). (Ilia) +- Fixed bug #43276 (Incomplete fix for bug #42739, mkdir() under safe_mode). (Ilia) +- Fixed bug #43248 (backward compatibility break in realpath()). (Dmitry) +- Fixed bug #43221 (SimpleXML adding default namespace in addAttribute). (Rob) +- Fixed bug #43216 (stream_is_local() returns false on "file://"). (Dmitry) +- Fixed bug #43201 (Crash on using uninitialized vals and __get/__set). (Dmitry) +- Fixed bug #43182 (file_put_contents() LOCK_EX does not work properly on file truncation). (Ilia) +- Fixed bug #43175 (__destruct() throwing an exception with __call() causes segfault). (Dmitry) +- Fixed bug #43128 (Very long class name causes segfault). (Dmitry) +- Fixed bug #43105 (PHP seems to fail to close open files). (Hannes) +- Fixed bug #43092 (curl_copy_handle() crashes with > 32 chars long URL). (Jani) +- Fixed bug #43003 (Invalid timezone reported for DateTime objects constructed using a timestamp). (Derick) +- Fixed bug #42978 (mismatch between number of bound params and values causes a crash in pdo_pgsql). (Ilia) +- Fixed bug #42945 (preg_split() swallows part of the string). (Nuno) +- Fixed bug #42937 (__call() method not invoked when methods are called on parent from child class). (Dmitry) +- Fixed bug #42841 (REF CURSOR and oci_new_cursor() crash PHP). (Chris) +- Fixed bug #42838 (Wrong results in array_diff_uassoc) (Felipe) +- Fixed bug #42779 (Incorrect forcing from HTTP/1.0 request to HTTP/1.1 response). (Ilia) +- Fixed bug #42736 (xmlrpc_server_call_method() crashes). (Tony) +- Fixed bug #42692 (Procedure 'int1' not present with doc/lit SoapServer). (Dmitry) +- Fixed bug #42548 (mysqli PROCEDURE calls can't return result sets). (Hartmut) +- Fixed bug #42505 (new sendmail default breaks on Netware platform) (Guenter Knauf) +- Fixed bug #42369 (Implicit conversion to string leaks memory). (David C., Rob). +- Fixed bug #42272 (var_export() incorrectly escapes char(0)). (Derick) +- Fixed bug #42261 (Incorrect lengths for date and boolean data types). (Ilia) +- Fixed bug #42190 (Constructing DateTime with TimeZone Indicator invalidates DateTimeZone). (Derick) +- Fixed bug #42177 (Warning "array_merge_recursive(): recursion detected" comes again...). (Felipe) +- Fixed bug #41941 (oci8 extension not lib64 savvy). (Chris) +- Fixed bug #41828 (Failing to call RecursiveIteratorIterator::__construct() causes a sefault). (Etienne) +- Fixed bug #41599 (setTime() fails after modify() is used). (Derick) +- Fixed bug #41562 (SimpleXML memory issue). (Rob) +- Fixed bug #40013 (php_uname() does not return nodename on Netware (Guenter Knauf) +- Fixed bug #38468 (Unexpected creation of cycle). (Dmitry) +- Fixed bug #32979 (OpenSSL stream->fd casts broken in 64-bit build) (stotty at tvnet dot hu) diff --git a/data/releases/5.2/5.2.6/release.json b/data/releases/5.2/5.2.6/release.json new file mode 100644 index 0000000000..44da533e50 --- /dev/null +++ b/data/releases/5.2/5.2.6/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.6", + "date": "01 May 2008", + "tags": [], + "source": [ + { + "filename": "php-5.2.6.tar.bz2", + "name": "PHP 5.2.6 (tar.bz2)", + "md5": "7380ffecebd95c6edb317ef861229ebd" + }, + { + "filename": "php-5.2.6.tar.gz", + "name": "PHP 5.2.6 (tar.gz)", + "md5": "1720f95f26c506338f0dba3a51906bbd" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.7/announcement.html b/data/releases/5.2/5.2.7/announcement.html new file mode 100644 index 0000000000..da3e31e456 --- /dev/null +++ b/data/releases/5.2/5.2.7/announcement.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/5.2.7/changes.txt b/data/releases/5.2/5.2.7/changes.txt new file mode 100644 index 0000000000..d2867fc8e8 --- /dev/null +++ b/data/releases/5.2/5.2.7/changes.txt @@ -0,0 +1,304 @@ +- Upgraded PCRE to version 7.8 (Fixes CVE-2008-2371). (Ilia) +- Updated timezone database to version 2008.9. (Derick) +- Upgraded bundled libzip to 0.9.0. (Pierre) + +- Added logging option for error_log to send directly to SAPI. (Stas) +- Added PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION, + PHP_EXTRA_VERSION, PHP_VERSION_ID, PHP_ZTS and PHP_DEBUG constants. (Pierre) +- Added "PHP_INI_SCAN_DIR" environment variable which can be used to + either disable or change the compile time ini scan directory (FR #45114). + (Jani) + +- Reverted fix for bug #44197 due to behaviour change in minor version. + (Felipe) + +- Fixed missing initialization of BG(page_uid) and BG(page_gid), + reported by Maksymilian Arciemowicz. (Stas) +- Fixed memory leak inside sqlite_create_aggregate(). (Felipe) +- Fixed memory leak inside PDO sqlite's sqliteCreateAggregate() method. + (Felipe) +- Fixed a crash inside gd with invalid fonts (Fixes CVE-2008-3658). (Pierre) +- Fixed a possible overflow inside memnstr (Fixes CVE-2008-3659). + (LaurentGaffie) +- Fixed incorrect php_value order for Apache configuration, reported by + Maksymilian Arciemowicz. (Stas) +- Fixed memory leak inside readline_callback_handler_remove() function. + (Felipe) +- Fixed sybase_fetch_*() to continue reading after CS_ROW_FAIL status (Timm) +- Fixed a bug inside dba_replace() that could cause file truncation + withinvalid keys. (Ilia) +- Fixed memory leak inside readline_callback_handler_install() function.(Ilia) +- Fixed memory leak inside readline_completion_function() function. (Felipe) +- Fixed stream_get_contents() when using $maxlength and socket is notclosed. + indeyets [at] php [dot] net on #46049. (Arnaud) +- Fixed stream_get_line() to behave as documented on non-blocking streams. + (Arnaud) +- Fixed endless loop in PDOStatement::debugDumpParams(). + (jonah.harris at gmail dot com) +- Fixed ability to use "internal" heaps in extensions. (Arnaud, Dmitry) +- Fixed weekdays adding/subtracting algorithm. (Derick) +- Fixed some ambiguities in the date parser. (Derick) +- Fixed a bug with the YYYY-MM format not resetting the day correctly. + (Derick) +- Fixed a bug in the DateTime->modify() methods, it would not use the advanced + relative time strings. (Derick) +- Fixed extraction of zip files or directories when the entry name is a + relative path. (Pierre) +- Fixed read or write errors for large zip archives. (Pierre) +- Fixed security issues detailed in CVE-2008-2665 and CVE-2008-2666. + (Christian Hoffmann) +- Fixed simplexml asXML() not to lose encoding when dumping entire + document to file. (Ilia) +- Fixed a crash inside PDO when trying instantiate PDORow manually. + (Felipe) +- Fixed build failure of ext/mysqli with libmysql 6.0 - missing + rplfunctions. (Andrey) +- Fixed a regression when using strip_tags() and < is within an + attribute.(Scott) +- Fixed a crash on invalid method in ReflectionParameter constructor. + (Christian Seiler) + +- Fixed bug #46732 (mktime.year description is wrong). (Derick) +- Fixed bug #46696 (cURL fails in upload files with specified content-type). + (Ilia) +- Fixed bug #46673 (stream_lock call with wrong parameter). (Arnaud) +- Fixed bug #46649 (Setting array element with that same array produces + inconsistent results). (Arnaud) +- Fixed bug #46626 (mb_convert_case does not handle apostrophe correctly). + (Ilia) +- Fixed bug #46543 (ibase_trans() memory leaks when using wrong parameters). + (Felipe) +- Fixed bug #46521 (Curl ZTS OpenSSL, error in config.m4 fragment). + (jd at cpanel dot net) +- Fixed bug #46496 (wddx_serialize treats input as ISO-8859-1). (Mark Karpeles) +- Fixed bug #46427 (SoapClient() stumbles over its "stream_context" parameter). + (Dmitry, Herman Radtke) +- Fixed bug #46426 (offset parameter of stream_get_contents() does not + workfor "0"). (Felipe) +- Fixed bug #46406 (Unregistering nodeclass throws E_FATAL). (Rob) +- Fixed bug #46389 (NetWare needs small patch for _timezone). + (patch by guenter@php.net) +- Fixed bug #46388 (stream_notification_callback inside of object destroys + object variables). (Felipe) +- Fixed bug #46381 (wrong $this passed to internal methods causes segfault). + (Tony) +- Fixed bug #46379 (Infinite loop when parsing '#' in one line file). (Arnaud) +- Fixed bug #46366 (bad cwd with / as pathinfo). (Dmitry) +- Fixed bug #46360 (TCP_NODELAY constant for socket_{get,set}_option). + (bugs at trick dot vanstaveren dot us) +- Fixed bug #46343 (IPv6 address filter accepts invalid address). (Ilia) +- Fixed bug #46335 (DOMText::splitText doesn't handle multibyte characters). + (Rob) +- Fixed bug #46323 (compilation of simplexml for NetWare breaks). + (Patch by guenter [at] php [dot] net) +- Fixed bug #46319 (PHP sets default Content-Type header for HTTP 304 + response code, in cgi sapi). (Ilia) +- Fixed bug #46313 (Magic quotes broke $_FILES). (Arnaud) +- Fixed bug #46308 (Invalid write when changing property from inside getter). + (Dmitry) +- Fixed bug #46292 (PDO::setFetchMode() shouldn't requires the 2nd arg when + using FETCH_CLASSTYPE). (Felipe) +- Fixed bug #46274, #46249 (pdo_pgsql always fill in NULL for empty BLOB and + segfaults when returned by SELECT). (Felipe) +- Fixed bug #46271 (local_cert option is not resolved to full path). (Ilia) +- Fixed bug #46247 (ibase_set_event_handler() is allowing to pass callback + without event). (Felipe) +- Fixed bug #46246 (difference between call_user_func(array($this, $method)) + and $this->$method()). (Dmitry) +- Fixed bug #46222 (ArrayObject EG(uninitialized_var_ptr) overwrite). + (Etienne) +- Fixed bug #46215 (json_encode mutates its parameter and has some + class-specific state). (Felipe) +- Fixed bug #46206 (pg_query_params/pg_execute convert passed values to + strings). (Ilia) +- Fixed bug #46191 (BC break: DOMDocument saveXML() doesn't accept null). + (Rob) +- Fixed bug #46164 (stream_filter_remove() closes the stream). (Arnaud) +- Fixed bug #46157 (PDOStatement::fetchObject prototype error). (Felipe) +- Fixed bug #46147 (after stream seek, appending stream filter reads + incorrect data). (Greg) +- Fixed bug #46139 (PDOStatement->setFetchMode() forgets FETCH_PROPS_LATE). + (chsc at peytz dot dk, Felipe) +- Fixed bug #46127 (php_openssl_tcp_sockop_accept forgets to set context + on accepted stream) (Mark Karpeles, Pierre) +- Fixed bug #46110 (XMLWriter - openmemory() and openuri() leak memory on + multiple calls). (Ilia) +- Fixed bug #46088 (RegexIterator::accept - segfault). (Felipe) +- Fixed bug #46082 (stream_set_blocking() can cause a crash in some + circumstances). (Felipe) +- Fixed bug #46064 (Exception when creating ReflectionProperty object + on dynamicly created property). (Felipe) +- Fixed bug #46059 (Compile failure under IRIX 6.5.30 building posix.c). + (Arnaud) +- Fixed bug #46053 (SplFileObject::seek - Endless loop). (Arnaud) +- Fixed bug #46051 (SplFileInfo::openFile - memory overlap). (Arnaud) +- Fixed bug #46047 (SimpleXML converts empty nodes into object with + nested array). (Rob) +- Fixed bug #46031 (Segfault in AppendIterator::next). (Arnaud) +- Fixed bug #46029 (Segfault in DOMText when using with Reflection). (Rob) +- Fixed bug #46026 (bzip2.decompress/zlib.inflate filter tries to decompress + after end of stream). (Keisial at gmail dot com, Greg) +- Fixed bug #46024 (stream_select() doesn't return the correct number). + (Arnaud) +- Fixed bug #46010 (warnings incorrectly generated for iv in ecb mode). + (Felipe) +- Fixed bug #46003 (isset on nonexisting node return unexpected results). (Rob) +- Fixed bug #45956 (parse_ini_file() does not return false with syntax errors + in parsed file). (Jani) +- Fixed bug #45901 (wddx_serialize_value crash with SimpleXMLElement object). + (Rob) +- Fixed bug #45862 (get_class_vars is inconsistent with 'protected' and + 'private' variables). (ilewis at uk dot ibm dot com, Felipe) +- Fixed bug #45860 (header() function fails to correctly replace all Status + lines). (Dmitry) +- Fixed bug #45805 (Crash on throwing exception from error handler). (Dmitry) +- Fixed bug #45765 (ReflectionObject with default parameters of self::xxx cause + an error). (Felipe) +- Fixed bug #45751 (Using auto_prepend_file crashes (out of scope stack address + use)). (basant dot kukreja at sun dot com) +- Fixed bug #45722 (mb_check_encoding() crashes). (Moriyoshi) +- Fixed bug #45705 (rfc822_parse_adrlist() modifies passed address parameter). + (Jani) +- Fixed bug #45691 (Some per-dir or runtime settings may leak into other + requests). (Moriyoshi) +- Fixed bug #45581 (htmlspecialchars() double encoding hex items). (Arnaud) +- Fixed bug #45580 (levenshtein() crashes with invalid argument). (Ilia) +- Fixed bug #45575 (Segfault with invalid non-string as event handler callback). + (Christian Seiler) +- Fixed bug #45568 (ISAPI doesn't properly clear auth_digest in header). + (Patch by: navara at emclient dot com) +- Fixed bug #45556 (Return value from callback isn't freed). (Felipe) +- Fixed bug #45555 (Segfault with invalid non-string as + register_introspection_callback). (Christian Seiler) +- Fixed bug #45553 (Using XPath to return values for attributes with a + namespace does not work). (Rob) +- Fixed bug #45529 (new DateTimeZone() and date_create()->getTimezone() behave + different). (Derick) +- Fixed bug #45522 (FCGI_GET_VALUES request does not return supplied values). + (Arnaud) +- Fixed bug #45486 (mb_send_mail(); header 'Content-Type: text/plain; charset=' + parsing incorrect). (Felipe) +- Fixed bug #45485 (strip_tags and ). (Dmitry) +- Fixed bug #43668 (Added odbc.default_cursortype to control the ODBCcursor + model). (Patrick) +- Fixed bug #43666 (Fixed code to use ODBC 3.52 datatypes for 64bit + systems). (Patrick) +- Fixed bug #43540 (rfc1867 handler newlength problem). (Arnaud) +- Fixed bug #43452 (strings containing a weekday, or a number plus weekday + behaved incorrect of the current day-of-week was the same as the one in the + phrase). (Derick) +- Fixed bug #43353 (wrong detection of 'data' wrapper causes notice). + (gk at gknw dot de, Arnaud) +- Fixed bug #43053 (Regression: some numbers shown in scientific notation). + (int-e at gmx dot de) +- Fixed bug #43045 (SOAP encoding violation on "INF" for type double/float). + (Dmitry) +- Fixed bug #42862 (IMAP toolkit crash: rfc822.c legacy routine buffer + overflow). (Fixes CVE-2008-2829) (Dmitry) +- Fixed bug #42855 (dns_get_record() doesn't return all text from TXT record). + (a dot u dot savchuk at gmail dot com) +- Fixed bug #42737 (preg_split('//u') triggers a E_NOTICE with newlines). + (Nuno) +- Fixed bug #42718 (FILTER_UNSAFE_RAW not applied when configured as default + filter). (Arnaud) +- Fixed bug #42604 ("make test" fails with --with-config-file-scan-dir=path). + (Jani) +- Fixed bug #42473 (ob_start php://output and headers). (Arnaud) +- Fixed bug #42318 (problem with nm on AIX, not finding object files). + (Dmitry) +- Fixed bug #42294 (Unified solution for round() based on C99 round). (Ilia) +- Fixed bug #42078 (pg_meta_data mix tables metadata from different schemas). + (Felipe) +- Fixed bug #41348 (OCI8: allow compilation with Oracle 8.1). (Chris Jones) +- Fixed bug #41033 (enable signing with DSA keys. + (gordyf at google dot com, Pierre) +- Fixed bug #37100 (data is returned truncated with BINARY CURSOR). (Tony) +- Fixed bug #30312 (crash in sybase_unbuffered_query() function). (Timm) +- Fixed bug #24679 (pg_* functions doesn't work using schema). (Felipe) +- Fixed bug #14962 (PECL) (::extractTo 2nd argument is not really optional) + (Mark van Der Velden) +- Fixed bug #14032 (Mail() always returns false but mail is sent). (Mikko) + diff --git a/data/releases/5.2/5.2.7/release.json b/data/releases/5.2/5.2.7/release.json new file mode 100644 index 0000000000..3fdbfa5582 --- /dev/null +++ b/data/releases/5.2/5.2.7/release.json @@ -0,0 +1,6 @@ +{ + "version": "5.2.7", + "date": "04 December 2008", + "tags": [], + "source": [] +} diff --git a/data/releases/5.2/5.2.8/announcement.html b/data/releases/5.2/5.2.8/announcement.html new file mode 100644 index 0000000000..5a47b2a2fe --- /dev/null +++ b/data/releases/5.2/5.2.8/announcement.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/5.2.8/changes.txt b/data/releases/5.2/5.2.8/changes.txt new file mode 100644 index 0000000000..cbee0eb38a --- /dev/null +++ b/data/releases/5.2/5.2.8/changes.txt @@ -0,0 +1 @@ +- Reverted bug fix #42718 that broke magic_quotes_gpc (Scott) diff --git a/data/releases/5.2/5.2.8/release.json b/data/releases/5.2/5.2.8/release.json new file mode 100644 index 0000000000..a503f14447 --- /dev/null +++ b/data/releases/5.2/5.2.8/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.8", + "date": "08 December 2008", + "tags": [], + "source": [ + { + "filename": "php-5.2.8.tar.bz2", + "name": "PHP 5.2.8 (tar.bz2)", + "md5": "8760a833cf10433d3e72271ab0d0eccf" + }, + { + "filename": "php-5.2.8.tar.gz", + "name": "PHP 5.2.8 (tar.gz)", + "md5": "e748cace3cfecb66fb6de9a945f98e2a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.9/announcement.html b/data/releases/5.2/5.2.9/announcement.html new file mode 100644 index 0000000000..87cb146124 --- /dev/null +++ b/data/releases/5.2/5.2.9/announcement.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.2/5.2.9/changes.txt b/data/releases/5.2/5.2.9/changes.txt new file mode 100644 index 0000000000..e673f7aaed --- /dev/null +++ b/data/releases/5.2/5.2.9/changes.txt @@ -0,0 +1,96 @@ +- Changed __call() to be invoked on private/protected method access, similar to + properties and __get(). (Andrei) + +- Added optional sorting type flag parameter to array_unique(). Default is + SORT_REGULAR. (Andrei) + +- Fixed a crash on extract in zip when files or directories entry names contain + a relative path. (Pierre) +- Fixed error conditions handling in stream_filter_append(). (Arnaud) +- Fixed zip filename property read. (Pierre) +- Fixed explode() behavior with empty string to respect negative limit. (Shire) +- Fixed security issue in imagerotate(), background colour isn't validated + correctly with a non truecolour image. Reported by Hamid Ebadi, + APA Laboratory (Fixes CVE-2008-5498). (Scott) +- Fixed a segfault when malformed string is passed to json_decode(). (Scott) +- Fixed bug in xml_error_string() which resulted in messages being + off by one. (Scott) + +- Fixed bug #47422 (modulus operator returns incorrect results on 64 bit + linux). (Matt) +- Fixed bug #47399 (mb_check_encoding() returns true for some illegal SJIS + characters). (for-bugs at hnw dot jp, Moriyoshi) +- Fixed bug #47353 (crash when creating a lot of objects in object + destructor). (Tony) +- Fixed bug #47322 (sscanf %d doesn't work). (Felipe) +- Fixed bug #47282 (FILTER_VALIDATE_EMAIL is marking valid email addresses + as invalid). (Ilia) +- Fixed bug #47220 (segfault in dom_document_parser in recovery mode). (Rob) +- Fixed bug #47217 (content-type is not set properly for file uploads). (Ilia) +- Fixed bug #47174 (base64_decode() interprets pad char in mid string as + terminator). (Ilia) +- Fixed bug #47165 (Possible memory corruption when passing return value by + reference). (Dmitry) +- Fixed bug #47152 (gzseek/fseek using SEEK_END produces strange results). + (Felipe) +- Fixed bug #47131 (SOAP Extension ignores "user_agent" ini setting). (Ilia) +- Fixed bug #47109 (Memory leak on $a->{"a"."b"} when $a is not an object). + (Etienne, Dmitry) +- Fixed bug #47104 (Linking shared extensions fails with icc). (Jani) +- Fixed bug #47049 (SoapClient::__soapCall causes a segmentation fault). + (Dmitry) +- Fixed bug #47048 (Segfault with new pg_meta_data). (Felipe) +- Fixed bug #47042 (PHP cgi sapi is removing SCRIPT_FILENAME for non + apache). (Sriram Natarajan) +- Fixed bug #47037 (No error when using fopen with empty string). (Cristian + Rodriguez R., Felipe) +- Fixed bug #47035 (dns_get_record returns a garbage byte at the end of a + TXT record). (Felipe) +- Fixed bug #47027 (var_export doesn't show numeric indices on ArrayObject). + (Derick) +- Fixed bug #46985 (OVERWRITE and binary mode does not work, regression + introduced in 5.2.8). (Pierre) +- Fixed bug #46973 (IPv6 address filter rejects valid address). (Felipe) +- Fixed bug #46964 (Fixed pdo_mysql build with older version of MySQL). (Ilia) +- Fixed bug #46959 (Unable to disable PCRE). (Scott) +- Fixed bug #46918 (imap_rfc822_parse_adrlist host part not filled in + correctly). (Felipe) +- Fixed bug #46889 (Memory leak in strtotime()). (Derick) +- Fixed bug #46887 (Invalid calls to php_error_docref()). (oeriksson at + mandriva dot com, Ilia) +- Fixed bug #46873 (extract($foo) crashes if $foo['foo'] exists). (Arnaud) +- Fixed bug #46843 (CP936 euro symbol is not converted properly). (ty_c at + cybozuy dot co dot jp, Moriyoshi) +- Fixed bug #46798 (Crash in mssql extension when retrieving a NULL value + inside a binary or image column type). (Ilia) +- Fixed bug #46782 (fastcgi.c parse error). (Matt) +- Fixed bug #46760 (SoapClient doRequest fails when proxy is used). (Felipe) +- Fixed bug #46748 (Segfault when an SSL error has more than one error). + (Scott) +- Fixed bug #46739 (array returned by curl_getinfo should contain + content_type key). (Mikko) +- Fixed bug #46699 (xml_parse crash when parser is namespace aware). (Rob) +- Fixed bug #46419 (Elements of associative arrays with NULL value are + lost). (Dmitry) +- Fixed bug #46282 (Corrupt DBF When Using DATE). (arne at bukkie dot nl) +- Fixed bug #46026 (bz2.decompress/zlib.inflate filter tries to decompress + after end of stream). (Greg) +- Fixed bug #46005 (User not consistently logged under Apache2). (admorten + at umich dot edu, Stas) +- Fixed bug #45996 (libxml2 2.7 causes breakage with character data in + xml_parse()). (Rob) +- Fixed bug #45940 (MySQLI OO does not populate connect_error property on + failed connect). (Johannes) +- Fixed bug #45923 (mb_st[r]ripos() offset not handled correctly). (Moriyoshi) +- Fixed bug #45327 (memory leak if offsetGet throws exception). (Greg) +- Fixed bug #45239 (Encoding detector hangs with mbstring.strict_detection + enabled). (Moriyoshi) +- Fixed bug #45161 (Reusing a curl handle leaks memory). (Mark Karpeles, Jani) +- Fixed bug #44336 (Improve pcre UTF-8 string matching performance). (frode + at coretrek dot com, Nuno) +- Fixed bug #43841 (mb_strrpos() offset is byte count for negative values). + (Moriyoshi) +- Fixed bug #37209 (mssql_execute with non fatal errors). (Kalle) +- Fixed bug #35975 (Session cookie expires date format isn't the most + compatible. Now matches that of setcookie()). (Scott) + diff --git a/data/releases/5.2/5.2.9/release.json b/data/releases/5.2/5.2.9/release.json new file mode 100644 index 0000000000..3ca03b4488 --- /dev/null +++ b/data/releases/5.2/5.2.9/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.9", + "date": "26 February 2009", + "tags": [], + "source": [ + { + "filename": "php-5.2.9.tar.bz2", + "name": "PHP 5.2.9 (tar.bz2)", + "md5": "280d6cda7f72a4fc6de42fda21ac2db7" + }, + { + "filename": "php-5.2.9.tar.gz", + "name": "PHP 5.2.9 (tar.gz)", + "md5": "98b647561dc664adefe296106056cf11" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.0/announcement.html b/data/releases/5.3/5.3.0/announcement.html new file mode 100644 index 0000000000..df02346eb8 --- /dev/null +++ b/data/releases/5.3/5.3.0/announcement.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/5.3.0/changes.txt b/data/releases/5.3/5.3.0/changes.txt new file mode 100644 index 0000000000..802b19203c --- /dev/null +++ b/data/releases/5.3/5.3.0/changes.txt @@ -0,0 +1,639 @@ +- Upgraded bundled PCRE to version 7.9. (Nuno) +- Upgraded bundled sqlite to version 3.6.15. (Scott) + +- Moved extensions to PECL (Derick, Lukas, Pierre, Scott): + . ext/dbase + . ext/fbsql + . ext/fdf + . ext/ncurses + . ext/mhash (BC layer is now entirely within ext/hash) + . ext/ming + . ext/msql + . ext/sybase (not maintained anymore, sybase_ct has to be used instead) + +- Removed the experimental RPL (master/slave) functions from mysqli. (Andrey) +- Removed zend.ze1_compatibility_mode. (Dmitry) +- Removed all zend_extension_* php.ini directives. Zend extensions are now + always loaded using zend_extension directive. (Derick) +- Removed special treatment of "/tmp" in sessions for open_basedir. + Note: This undocumented behaviour was introduced in 5.2.2. (Alexey) +- Removed shebang line check from CGI sapi (checked by scanner). (Dmitry) + +- Changed PCRE, Reflection and SPL extensions to be always enabled. (Marcus) +- Changed md5() to use improved implementation. (Solar Designer, Dmitry) +- Changed HTTP stream wrapper to accept any code between and including + 200 to 399 as successful. (Mike, Noah Fontes) +- Changed __call() to be invoked on private/protected method access, similar to + properties and __get(). (Andrei) +- Changed dl() to be disabled by default. Enabled only when explicitly + registered by the SAPI. Currently enabled with cli, cgi and embed SAPIs. + (Dmitry) +- Changed opendir(), dir() and scandir() to use default context when no context + argument is passed. (Sara) +- Changed open_basedir to allow tightening in runtime contexts. (Sara) +- Changed PHP/Zend extensions to use flexible build IDs. (Stas) +- Changed error level E_ERROR into E_WARNING in Soap extension methods + parameter validation. (Felipe) +- Changed openssl info to show the shared library version number. (Scott) +- Changed floating point behaviour to consistently use double precision on all + platforms and with all compilers. (Christian Seiler) +- Changed round() to act more intuitively when rounding to a certain precision + and round very large and very small exponents correctly. (Christian Seiler) +- Changed session_start() to return false when session startup fails. (Jani) +- Changed property_exists() to check the existence of a property independent of + accessibility (like method_exists()). (Felipe) +- Changed array_reduce() to allow mixed $initial (Christian Seiler) + +- Improved PHP syntax and semantics: + . Added lambda functions and closures. (Christian Seiler, Dmitry) + . Added "jump label" operator (limited "goto"). (Dmitry, Sara) + . Added NOWDOC syntax. (Gwynne Raskind, Stas, Dmitry) + . Added HEREDOC syntax with double quotes. (Lars Strojny, Felipe) + . Added support for using static HEREDOCs to initialize static variables and + class members or constants. (Matt) + . Improved syntax highlighting and consistency for variables in double-quoted + strings and literal text in HEREDOCs and backticks. (Matt) + . Added "?:" operator. (Marcus) + . Added support for namespaces. (Dmitry, Stas, Gregory, Marcus) + . Added support for Late Static Binding. (Dmitry, Etienne Kneuss) + . Added support for __callStatic() magic method. (Sara) + . Added forward_static_call(_array) to complete LSB. (Mike Lively) + . Added support for dynamic access of static members using $foo::myFunc(). + (Etienne Kneuss) + . Improved checks for callbacks. (Marcus) + . Added __DIR__ constant. (Lars Strojny) + . Added new error modes E_USER_DEPRECATED and E_DEPRECATED. + E_DEPRECATED is used to inform about stuff being scheduled for removal + in future PHP versions. (Lars Strojny, Felipe, Marcus) + . Added "request_order" INI variable to control specifically $_REQUEST + behavior. (Stas) + . Added support for exception linking. (Marcus) + . Added ability to handle exceptions in destructors. (Marcus) + +- Improved PHP runtime speed and memory usage: + . Substitute global-scope, persistent constants with their values at compile + time. (Matt) + . Optimized ZEND_SIGNED_MULTIPLY_LONG(). (Matt) + . Removed direct executor recursion. (Dmitry) + . Use fastcall calling convention in executor on x86. (Dmitry) + . Use IS_CV for direct access to $this variable. (Dmitry) + . Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR). (Dmitry) + . Lazy EG(active_symbol_table) initialization. (Dmitry) + . Optimized ZEND_RETURN opcode to not allocate and copy return value if it is + not used. (Dmitry) + . Replaced all flex based scanners with re2c based scanners. + (Marcus, Nuno, Scott) + . Added garbage collector. (David Wang, Dmitry). + . Improved PHP binary size and startup speed with GCC4 visibility control. + (Nuno) + . Improved engine stack implementation for better performance and stability. + (Dmitry) + . Improved memory usage by moving constants to read only memory. + (Dmitry, Pierre) + . Changed exception handling. Now each op_array doesn't contain + ZEND_HANDLE_EXCEPTION opcode in the end. (Dmitry) + . Optimized require_once() and include_once() by eliminating fopen(3) on + second usage. (Dmitry) + . Optimized ZEND_FETCH_CLASS + ZEND_ADD_INTERFACE into single + ZEND_ADD_INTERFACE opcode. (Dmitry) + . Optimized string searching for a single character. + (Michal Dziemianko, Scott) + . Optimized interpolated strings to use one less opcode. (Matt) + +- Improved php.ini handling: (Jani) + . Added ".htaccess" style user-defined php.ini files support for CGI/FastCGI. + . Added support for special [PATH=/opt/httpd/www.example.com/] and + [HOST=www.example.com] sections. Directives set in these sections can + not be overridden by user-defined ini-files or during runtime. + . Added better error reporting for php.ini syntax errors. + . Allowed using full path to load modules using "extension" directive. + . Allowed "ini-variables" to be used almost everywhere ini php.ini files. + . Allowed using alphanumeric/variable indexes in "array" ini options. + . Added 3rd optional parameter to parse_ini_file() to specify the scanning + mode of INI_SCANNER_NORMAL or INI_SCANNER_RAW. In raw mode option values + and section values are treated as-is. + . Fixed get_cfg_var() to be able to return "array" ini options. + . Added optional parameter to ini_get_all() to only retrieve the current + value. (Hannes) + +- Improved Windows support: + . Update all libraries to their latest stable version. (Pierre, Rob, Liz, + Garrett). + . Added Windows support for stat(), touch(), filemtime(), filesize() and + related functions. (Pierre) + . Re-added socket_create_pair() for Windows in sockets extension. (Kalle) + . Added inet_pton() and inet_ntop() also for Windows platforms. + (Kalle, Pierre) + . Added mcrypt_create_iv() for Windows platforms. (Pierre) + . Added ACL Cache support on Windows. + (Kanwaljeet Singla, Pierre, Venkat Raman Don) + . Added constants based on Windows' GetVersionEx information. + PHP_WINDOWS_VERSION_* and PHP_WINDOWS_NT_*. (Pierre) + . Added support for ACL (is_writable, is_readable, reports now correct + results) on Windows. (Pierre, Venkat Raman Don, Kanwaljeet Singla) + . Added support for fnmatch() on Windows. (Pierre) + . Added support for time_nanosleep() and time_sleep_until() on Windows. + (Pierre) + . Added support for symlink(), readlink(), linkinfo() and link() on Windows. + They are available only when the running platform supports them. (Pierre) + . the GMP extension now relies on MPIR instead of the GMP library. (Pierre) + . Added Windows support for stream_socket_pair(). (Kalle) + . Drop all external dependencies for the core features. (Pierre) + . Drastically improve the build procedure (Pierre, Kalle, Rob): + . VC9 (Visual C++ 2008) or later support + . Initial experimental x64 support + . MSI installer now supports all recent Windows versions, including + Windows 7. (John, Kanwaljeet Singla) + +- Improved and cleaned CGI code: + . FastCGI is now always enabled and cannot be disabled. + See sapi/cgi/CHANGES for more details. (Dmitry) + . Added CGI SAPI -T option which can be used to measure execution + time of script repeated several times. (Dmitry) + +- Improved streams: + . Fixed confusing error message on failure when no errors are logged. (Greg) + . Added stream_supports_lock() function. (Benjamin Schulz) + . Added context parameter for copy() function. (Sara) + . Added "glob://" stream wrapper. (Marcus) + . Added "params" as optional parameter for stream_context_create(). (Sara) + . Added ability to use stream wrappers in include_path. (Gregory, Dmitry) + +- Improved DNS API + . Added Windows support for dns_check_record(), dns_get_mx(), checkdnsrr() and + getmxrr(). (Pierre) + . Added support for old style DNS functions (supports OSX and FBSD). (Scott) + . Added a new "entries" array in dns_check_record() containing the TXT + elements. (Felipe, Pierre) + +- Improved hash extension: + . Changed mhash to be a wrapper layer around the hash extension. (Scott) + . Added hash_copy() function. (Tony) + . Added sha224 hash algorithm to the hash extension. (Scott) + +- Improved IMAP support (Pierre): + . Added imap_gc() to clear the imap cache + . Added imap_utf8_to_mutf7() and imap_mutf7_to_utf8() + +- Improved mbstring extension: + . Added "mbstring.http_output_conv_mimetypes" INI directive that allows + common non-text types such as "application/xhtml+xml" to be converted + by mb_output_handler(). (Moriyoshi) + +- Improved OCI8 extension (Chris Jones/Oracle Corp.): + . Added Database Resident Connection Pooling (DRCP) and Fast + Application Notification (FAN) support. + . Added support for Oracle External Authentication (not supported + on Windows). + . Improve persistent connection handling of restarted DBs. + . Added SQLT_AFC (aka CHAR datatype) support to oci_bind_by_name. + . Fixed bug #45458 (Numeric keys for associative arrays are not + handled properly) + . Fixed bug #41069 (Segmentation fault with query over DB link). + . Fixed define of SQLT_BDOUBLE and SQLT_BFLOAT constants with Oracle + 10g ORACLE_HOME builds. + . Changed default value of oci8.default_prefetch from 10 to 100. + . Fixed PECL Bug #16035 (OCI8: oci_connect without ORACLE_HOME defined causes + segfault) (Chris Jones/Oracle Corp.) + . Fixed PECL Bug #15988 (OCI8: sqlnet.ora isn't read with older Oracle + libraries) (Chris Jones/Oracle Corp.) + . Fixed PECL Bug #14268 (Allow "pecl install oci8" command to "autodetect" an + Instant Client RPM install) (Chris Jones/Oracle Corp.) + . Fixed PECL bug #12431 (OCI8 ping functionality is broken). + . Allow building (e.g from PECL) the PHP 5.3-based OCI8 code with + PHP 4.3.9 onwards. + . Provide separate extensions for Oracle 11g and 10g on Windows. + (Pierre, Chris) + +- Improved OpenSSL extension: + . Added support for OpenSSL digest and cipher functions. (Dmitry) + . Added access to internal values of DSA, RSA and DH keys. (Dmitry) + . Fixed a memory leak on openssl_decrypt(). (Henrique) + . Fixed segfault caused by openssl_pkey_new(). (Henrique) + . Fixed bug caused by uninitilized variables in openssl_pkcs7_encrypt() and + openssl_pkcs7_sign(). (Henrique) + . Fixed error message in openssl_seal(). (Henrique) + +- Improved pcntl extension: (Arnaud) + . Added pcntl_signal_dispatch(). + . Added pcntl_sigprocmask(). + . Added pcntl_sigwaitinfo(). + . Added pcntl_sigtimedwait(). + +- Improved SOAP extension: + . Added support for element names in context of XMLSchema's+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/5.3.1/changes.txt b/data/releases/5.3/5.3.1/changes.txt new file mode 100644 index 0000000000..2dbc8df053 --- /dev/null +++ b/data/releases/5.3/5.3.1/changes.txt @@ -0,0 +1,248 @@ +- Upgraded bundled sqlite to version 3.6.19. (Scott) +- Updated timezone database to version 2009.17 (2009q). (Derick) + +- Changed ini file directives [PATH=](on Win32) and [HOST=](on all) to be case + insensitive. (garretts) + +- Restored shebang line check to CGI sapi (not checked by scanner anymore). + (Jani) + +- Added "max_file_uploads" INI directive, which can be set to limit the + number of file uploads per-request to 20 by default, to prevent possible + DOS via temporary file exhaustion. (Ilia) +- Added missing sanity checks around exif processing. (Ilia) +- Added error constant when json_encode() detects an invalid UTF-8 sequence. + (Scott) +- Added support for ACL on Windows for thread safe SAPI (Apache2 for example) + and fix its support on NTS. (Pierre) + +- Improved symbolic, mounted volume and junctions support for realpath on + Windows. (Pierre) +- Improved readlink on Windows, suppress \??\ and use the drive syntax only. + (Pierre) +- Improved dns_get_record() AAAA support on windows. Always available when + IPv6 is support is installed, format is now the same than on unix. (Pierre) +- Improved the DNS functions on OSX to use newer APIs, also use Bind 9 API + where available on other platforms. (Scott) +- Improved shared extension loading on OSX to use the standard Unix dlopen() + API. (Scott) + +- Fixed crash in com_print_typeinfo when an invalid typelib is given. (Pierre) +- Fixed a safe_mode bypass in tempnam() identified by Grzegorz Stachowiak. + (Rasmus) +- Fixed a open_basedir bypass in posix_mkfifo() identified by Grzegorz + Stachowiak. (Rasmus) +- Fixed certificate validation inside php_openssl_apply_verification_policy + (Ryan Sleevi, Ilia) +- Fixed crash in SQLiteDatabase::ArrayQuery() and SQLiteDatabase::SingleQuery() + when calling using Reflection. (Felipe) +- Fixed crash when instantiating PDORow and PDOStatement through Reflection. + (Felipe) +- Fixed sanity check for the color index in imagecolortransparent. (Pierre) +- Fixed scandir/readdir when used mounted points on Windows. (Pierre) +- Fixed zlib.deflate compress filter to actually accept level parameter. (Jani) +- Fixed leak on error in popen/exec (and related functions) on Windows. + (Pierre) +- Fixed possible bad caching of symlinked directories in the realpath cache + on Windows. (Pierre) +- Fixed atime and mtime in stat related functions on Windows. (Pierre) +- Fixed spl_autoload_unregister/spl_autoload_functions wrt. Closures and + Functors. (Christian Seiler) +- Fixed open_basedir circumvention for "mail.log" ini directive. + (Maksymilian Arciemowicz, Stas) +- Fixed signature generation/validation for zip archives in ext/phar. (Greg) +- Fixed memory leak in stream_is_local(). (Felipe, Tony) +- Fixed BC break in mime_content_type(), removes the content encoding. (Scott) + +- Fixed PECL bug #16842 (oci_error return false when NO_DATA_FOUND is raised). + (Chris Jones) + +- Fixed bug #50063 (safe_mode_include_dir fails). (Johannes, christian at + elmerot dot se) +- Fixed bug #50052 (Different Hashes on Windows and Linux on wrong Salt size). + (Pierre) +- Fixed bug #49986 (Missing ICU DLLs on windows package). (Pierre) +- Fixed bug #49910 (no support for ././@LongLink for long filenames in phar + tar support). (Greg) +- Fixed bug #49908 (throwing exception in __autoload crashes when interface + is not defined). (Felipe) +- Fixed bug #49847 (exec() fails to return data inside 2nd parameter, given + output lines >4095 bytes). (Ilia) +- Fixed bug #49809 (time_sleep_until() is not available on OpenSolaris). (Jani) +- Fixed bug #49757 (long2ip() can return wrong value in a multi-threaded + applications). (Ilia, Florian Anderiasch) +- Fixed bug #49738 (calling mcrypt after mcrypt_generic_deinit crashes). + (Sriram Natarajan) +- Fixed bug #49732 (crashes when using fileinfo when timestamp conversion + fails). (Pierre) +- Fixed bug #49698 (Unexpected change in strnatcasecmp()). (Rasmus) +- Fixed bug #49630 (imap_listscan function missing). (Felipe) +- Fixed bug #49572 (use of C++ style comments causes build failure). + (Sriram Natarajan) +- Fixed bug #49531 (CURLOPT_INFILESIZE sometimes causes warning "CURLPROTO_FILE + cannot be set"). (Felipe) +- Fixed bug #49517 (cURL's CURLOPT_FILE prevents file from being deleted after + fclose). (Ilia) +- Fixed bug #49470 (FILTER_SANITIZE_EMAIL allows disallowed characters). + (Ilia) +- Fixed bug #49447 (php engine need to correctly check for socket API + return status on windows). (Sriram Natarajan) +- Fixed bug #49391 (ldap.c utilizing deprecated ldap_modify_s). (Ilia) +- Fixed bug #49372 (segfault in php_curl_option_curl). (Pierre) +- Fixed bug #49361 (wordwrap() wraps incorrectly on end of line boundaries). + (Ilia, code-it at mail dot ru) +- Fixed bug #49306 (inside pdo_mysql default socket settings are ignored). + (Ilia) +- Fixed bug #49289 (bcmath module doesn't compile with phpize configure). + (Jani) +- Fixed bug #49286 (php://input (php_stream_input_read) is broken). (Jani) +- Fixed bug #49269 (Ternary operator fails on Iterator object when used inside + foreach declaration). (Etienne, Dmitry) +- Fixed bug #49236 (Missing PHP_SUBST(PDO_MYSQL_SHARED_LIBADD)). (Jani) +- Fixed bug #49223 (Inconsistency using get_defined_constants). (Garrett) +- Fixed bug #49193 (gdJpegGetVersionString() inside gd_compact identifies + wrong type in declaration). (Ilia) +- Fixed bug #49183 (dns_get_record does not return NAPTR records). (Pierre) +- Fixed bug #49144 (Import of schema from different host transmits original + authentication details). (Dmitry) +- Fixed bug #49142 (crash when exception thrown from __tostring()). + (David Soria Parra) +- Fixed bug #49132 (posix_times returns false without error). + (phpbugs at gunnu dot us) +- Fixed bug #49125 (Error in dba_exists C code). (jdornan at stanford dot edu) +- Fixed bug #49122 (undefined reference to mysqlnd_stmt_next_result on compile + with --with-mysqli and MySQL 6.0). (Jani) +- Fixed bug #49108 (2nd scan_dir produces segfault). (Felipe) +- Fixed bug #49098 (mysqli segfault on error). (Rasmus) +- Fixed bug #49095 (proc_get_status['exitcode'] fails on win32). (Felipe) +- Fixed bug #49092 (ReflectionFunction fails to work with functions in fully + qualified namespaces). (Kalle, Jani) +- Fixed bug #49074 (private class static fields can be modified by using + reflection). (Jani) +- Fixed bug #49072 (feof never returns true for damaged file in zip). (Pierre) +- Fixed bug #49065 ("disable_functions" php.ini option does not work on + Zend extensions). (Stas) +- Fixed bug #49064 (--enable-session=shared does not work: undefined symbol: + php_url_scanner_reset_vars). (Jani) +- Fixed bug #49056 (parse_ini_file() regression in 5.3.0 when using non-ASCII + strings as option keys). (Jani) +- Fixed bug #49052 (context option headers freed too early when using + --with-curlwrappers). (Jani) +- Fixed bug #49047 (The function touch() fails on directories on Windows). + (Pierre) +- Fixed bug #49032 (SplFileObject::fscanf() variables passed by reference). + (Jani) +- Fixed bug #49027 (mysqli_options() doesn't work when using mysqlnd). (Andrey) +- Fixed bug #49026 (proc_open() can bypass safe_mode_protected_env_vars + restrictions). (Ilia) +- Fixed bug #49020 (phar misinterprets ustar long filename standard). + (Greg) +- Fixed bug #49018 (phar tar stores long filenames wit prefix/name reversed). + (Greg) +- Fixed bug #49014 (dechunked filter broken when serving more than 8192 bytes + in a chunk). (andreas dot streichardt at globalpark dot com, Ilia) +- Fixed bug #49012 (phar tar signature algorithm reports as Unknown (0) in + getSignature() call). (Greg) +- Fixed bug #49000 (PHP CLI in Interactive mode (php -a) crashes + when including files from function). (Stas) +- Fixed bug #48994 (zlib.output_compression does not output HTTP headers when + set to a string value). (Jani) +- Fixed bug #48980 (Crash when compiling with pdo_firebird). (Felipe) +- Fixed bug #48962 (cURL does not upload files with specified filename). + (Ilia) +- Fixed bug #48929 (Double \r\n after HTTP headers when "header" context + option is an array). (David Zülke) +- Fixed bug #48913 (Too long error code strings in pdo_odbc driver). + (naf at altlinux dot ru, Felipe) +- Fixed bug #48912 (Namespace causes unexpected strict behaviour with + extract()). (Dmitry) +- Fixed bug #48909 (Segmentation fault in mysqli_stmt_execute()). (Andrey) +- Fixed bug #48899 (is_callable returns true even if method does not exist in + parent class). (Felipe) +- Fixed bug #48893 (Problems compiling with Curl). (Felipe) +- Fixed bug #48880 (Random Appearing open_basedir problem). (Rasmus, Gwynne) +- Fixed bug #48872 (string.c: errors: duplicate case values). (Kalle) +- Fixed bug #48854 (array_merge_recursive modifies arrays after first one). + (Felipe) +- Fixed bug #48805 (IPv6 socket transport is not working). (Ilia) +- Fixed bug #48802 (printf() returns incorrect outputted length). (Jani) +- Fixed bug #48791 (open office files always reported as corrupted). (Greg) +- Fixed bug #48788 (RecursiveDirectoryIterator doesn't descend into symlinked + directories). (Ilia) +- Fixed bug #48783 (make install will fail saying phar file exists). (Greg) +- Fixed bug #48774 (SIGSEGVs when using curl_copy_handle()). + (Sriram Natarajan) +- Fixed bug #48771 (rename() between volumes fails and reports no error on + Windows). (Pierre) +- Fixed bug #48768 (parse_ini_*() crash with INI_SCANNER_RAW). (Jani) +- Fixed bug #48763 (ZipArchive produces corrupt archive). (dani dot church at + gmail dot com, Pierre) +- Fixed bug #48762 (IPv6 address filter still rejects valid address). (Felipe) +- Fixed bug #48757 (ReflectionFunction::invoke() parameter issues). (Kalle) +- Fixed bug #48754 (mysql_close() crash php when no handle specified). + (Johannes, Andrey) +- Fixed bug #48752 (Crash during date parsing with invalid date). (Pierre) +- Fixed bug #48746 (Unable to browse directories within Junction Points). + (Pierre, Kanwaljeet Singla) +- Fixed bug #48745 (mysqlnd: mysql_num_fields returns wrong column count for + mysql_list_fields). (Andrey) +- Fixed bug #48740 (PHAR install fails when INSTALL_ROOT is not the final + install location). (james dot cohen at digitalwindow dot com, Greg) +- Fixed bug #48733 (CURLOPT_WRITEHEADER|CURLOPT_FILE|CURLOPT_STDERR warns on + files that have been opened with r+). (Ilia) +- Fixed bug #48719 (parse_ini_*(): scanner_mode parameter is not checked for + sanity). (Jani) +- Fixed bug #48718 (FILTER_VALIDATE_EMAIL does not allow numbers in domain + components). (Ilia) +- Fixed bug #48681 (openssl signature verification for tar archives broken). + (Greg) +- Fixed bug #48660 (parse_ini_*(): dollar sign as last character of value + fails). (Jani) +- Fixed bug #48645 (mb_convert_encoding() doesn't understand hexadecimal + html-entities). (Moriyoshi) +- Fixed bug #48637 ("file" fopen wrapper is overwritten when using + --with-curlwrappers). (Jani) +- Fixed bug #48608 (Invalid libreadline version not detected during configure). + (Jani) +- Fixed bug #48400 (imap crashes when closing stream opened with + OP_PROTOTYPE flag). (Jani) +- Fixed bug #48377 (error message unclear on converting phar with existing + file). (Greg) +- Fixed bug #48247 (Infinite loop and possible crash during startup with + errors when errors are logged). (Jani) +- Fixed bug #48198 error: 'MYSQLND_LLU_SPEC' undeclared. Cause for #48780 and + #46952 - both fixed too. (Andrey) +- Fixed bug #48189 (ibase_execute error in return param). (Kalle) +- Fixed bug #48182 (ssl handshake fails during asynchronous socket connection). + (Sriram Natarajan) +- Fixed bug #48116 (Fixed build with Openssl 1.0). (Pierre, + Al dot Smith at aeschi dot ch dot eu dot org) +- Fixed bug #48057 (Only the date fields of the first row are fetched, others + are empty). (info at programmiernutte dot net) +- Fixed bug #47481 (natcasesort() does not sort extended ASCII characters + correctly). (Herman Radtke) +- Fixed bug #47351 (Memory leak in DateTime). (Derick, Tobias John) +- Fixed bug #47273 (Encoding bug in SoapServer->fault). (Dmitry) +- Fixed bug #46682 (touch() afield returns different values on windows). + (Pierre) +- Fixed bug #46614 (Extended MySQLi class gives incorrect empty() result). + (Andrey) +- Fixed bug #46020 (with Sun Java System Web Server 7.0 on HPUX, #define HPUX). + (Uwe Schindler) +- Fixed bug #45905 (imagefilledrectangle() clipping error). + (markril at hotmail dot com, Pierre) +- Fixed bug #45554 (Inconsistent behavior of the u format char). (Derick) +- Fixed bug #45141 (setcookie will output expires years of >4 digits). (Ilia) +- Fixed bug #44683 (popen crashes when an invalid mode is passed). (Pierre) +- Fixed bug #43510 (stream_get_meta_data() does not return same mode as used + in fopen). (Jani) +- Fixed bug #42434 (ImageLine w/ antialias = 1px shorter). (wojjie at gmail dot + com, Kalle) +- Fixed bug #40013 (php_uname() does not return nodename on Netware (Guenter + Knauf) +- Fixed bug #38091 (Mail() does not use FQDN when sending SMTP helo). + (Kalle, Rick Yorgason) +- Fixed bug #28038 (Sent incorrect RCPT TO commands to SMTP server) (Garrett) +- Fixed bug #27051 (Impersonation with FastCGI does not exec process as + impersonated user). (Pierre) + diff --git a/data/releases/5.3/5.3.1/release.json b/data/releases/5.3/5.3.1/release.json new file mode 100644 index 0000000000..7b926da700 --- /dev/null +++ b/data/releases/5.3/5.3.1/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.1", + "date": "19 Nov 2009", + "tags": [], + "source": [ + { + "filename": "php-5.3.1.tar.bz2", + "name": "PHP 5.3.1 (tar.bz2)", + "md5": "63e97ad450f0f7259e785100b634c797" + }, + { + "filename": "php-5.3.1.tar.gz", + "name": "PHP 5.3.1 (tar.gz)", + "md5": "41fbb368d86acb13fc3519657d277681" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.10/announcement.html b/data/releases/5.3/5.3.10/announcement.html new file mode 100644 index 0000000000..9d8dbc1be1 --- /dev/null +++ b/data/releases/5.3/5.3.10/announcement.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/5.3.10/changes.txt b/data/releases/5.3/5.3.10/changes.txt new file mode 100644 index 0000000000..210a9a6fb0 --- /dev/null +++ b/data/releases/5.3/5.3.10/changes.txt @@ -0,0 +1,3 @@ +- Core: + . Fixed arbitrary remote code execution vulnerability reported by Stefan + Esser, CVE-2012-0830. (Stas, Dmitry) diff --git a/data/releases/5.3/5.3.10/release.json b/data/releases/5.3/5.3.10/release.json new file mode 100644 index 0000000000..0f3464785c --- /dev/null +++ b/data/releases/5.3/5.3.10/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.10", + "date": "02 February 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.10.tar.bz2", + "name": "PHP 5.3.10 (tar.bz2)", + "md5": "816259e5ca7d0a7e943e56a3bb32b17f" + }, + { + "filename": "php-5.3.10.tar.gz", + "name": "PHP 5.3.10 (tar.gz)", + "md5": "2b3d2d0ff22175685978fb6a5cbcdc13" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.11/announcement.html b/data/releases/5.3/5.3.11/announcement.html new file mode 100644 index 0000000000..a8167177ad --- /dev/null +++ b/data/releases/5.3/5.3.11/announcement.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/5.3.11/changes.txt b/data/releases/5.3/5.3.11/changes.txt new file mode 100644 index 0000000000..20e6b4e379 --- /dev/null +++ b/data/releases/5.3/5.3.11/changes.txt @@ -0,0 +1,157 @@ +- Core: + . Fixed bug #61650 (ini parser crashes when using ${xxxx} ini variables + (without apache2)). (Laruence) + . Fixed bug #61273 (call_user_func_array with more than 16333 arguments + leaks / crashes). (Laruence) + . Fixed bug #61165 (Segfault - strip_tags()). (Laruence) + . Improved max_input_vars directive to check nested variables (Dmitry). + . Fixed bug #61095 (Incorect lexing of 0x00*+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/5.3.12/changes.txt b/data/releases/5.3/5.3.12/changes.txt new file mode 100644 index 0000000000..a7479a0429 --- /dev/null +++ b/data/releases/5.3/5.3.12/changes.txt @@ -0,0 +1 @@ +- Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. (Rasmus) diff --git a/data/releases/5.3/5.3.12/release.json b/data/releases/5.3/5.3.12/release.json new file mode 100644 index 0000000000..e3e7f80fb3 --- /dev/null +++ b/data/releases/5.3/5.3.12/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.12", + "date": "03 May 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.12.tar.bz2", + "name": "PHP 5.3.12 (tar.bz2)", + "md5": "cf02c29be279c506cbd4ffc2819d7c82" + }, + { + "filename": "php-5.3.12.tar.gz", + "name": "PHP 5.3.12 (tar.gz)", + "md5": "aac80e478eb0785c50855ae8cefe735a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.13/announcement.html b/data/releases/5.3/5.3.13/announcement.html new file mode 100644 index 0000000000..89e07caed3 --- /dev/null +++ b/data/releases/5.3/5.3.13/announcement.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/5.3.13/changes.txt b/data/releases/5.3/5.3.13/changes.txt new file mode 100644 index 0000000000..d9473f49ec --- /dev/null +++ b/data/releases/5.3/5.3.13/changes.txt @@ -0,0 +1,3 @@ +- CGI + . Improve fix for PHP-CGI query string parameter vulnerability, CVE-2012-2311. + (Stas) diff --git a/data/releases/5.3/5.3.13/release.json b/data/releases/5.3/5.3.13/release.json new file mode 100644 index 0000000000..95bcfc9f69 --- /dev/null +++ b/data/releases/5.3/5.3.13/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.13", + "date": "08 May 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.13.tar.bz2", + "name": "PHP 5.3.13 (tar.bz2)", + "md5": "370be99c5cdc2e756c82c44d774933c8" + }, + { + "filename": "php-5.3.13.tar.gz", + "name": "PHP 5.3.13 (tar.gz)", + "md5": "179c67ce347680f468edbfc3c425476a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.14/announcement.html b/data/releases/5.3/5.3.14/announcement.html new file mode 100644 index 0000000000..69ac743387 --- /dev/null +++ b/data/releases/5.3/5.3.14/announcement.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/5.3.14/changes.txt b/data/releases/5.3/5.3.14/changes.txt new file mode 100644 index 0000000000..f991c909c8 --- /dev/null +++ b/data/releases/5.3/5.3.14/changes.txt @@ -0,0 +1,56 @@ +- CLI SAPI: + . Fixed bug #61546 (functions related to current script failed when chdir() + in cli sapi). (Laruence, reeze.xia@gmail.com) + +- CURL: + . Fixed bug #61948 (CURLOPT_COOKIEFILE '' raises open_basedir restriction). + (Laruence) + +- COM: + . Fixed bug #62146 com_dotnet cannot be built shared. (Johannes) + +- Core: + . Fixed CVE-2012-2143. (Solar Designer) + . Fixed missing bound check in iptcparse(). (chris at chiappa.net) + . Fixed bug #62373 (serialize() generates wrong reference to the object). + (Moriyoshi) + . Fixed bug #62005 (unexpected behavior when incrementally assigning to a + member of a null object). (Laruence) + . Fixed bug #61991 (long overflow in realpath_cache_get()). (Anatoliy) + . Fixed bug #61764 ('I' unpacks n as signed if n > 2^31-1 on LP64). (Gustavo) + . Fixed bug #61730 (Segfault from array_walk modifying an array passed by + reference). (Laruence) + . Fixed bug #61713 (Logic error in charset detection for htmlentities). + (Anatoliy) + . Fixed bug #54197 ([PATH=] sections incompatibility with user_ini.filename + set to null). (Anatoliy) + . Changed php://fd to be available only for CLI. + +- Fileinfo: + . Fixed bug #61812 (Uninitialised value used in libmagic). + (Laruence, Gustavo) + +- Iconv extension: + . Fixed a bug that iconv extension fails to link to the correct library + when another extension makes use of a library that links to the iconv + library. See https://bugs.gentoo.org/show_bug.cgi?id=364139 for detail. + (Moriyoshi) + +- Intl: + . Fixed bug #62082 (Memory corruption in internal function + get_icu_disp_value_src_php()). (Gustavo) + +- JSON + . Fixed bug #61537 (json_encode() incorrectly truncates/discards + information). (Adam) + +- PDO: + . Fixed bug #61755 (A parsing bug in the prepared statements can lead to + access violations). (Johannes) + +- Phar: + . Fix bug #61065 (Secunia SA44335). (Rasmus) + +- Streams: + . Fixed bug #61961 (file_get_contents leaks when access empty file with + maxlen set). (Reeze) diff --git a/data/releases/5.3/5.3.14/release.json b/data/releases/5.3/5.3.14/release.json new file mode 100644 index 0000000000..f4e41e5c82 --- /dev/null +++ b/data/releases/5.3/5.3.14/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.14", + "date": "14 June 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.14.tar.bz2", + "name": "PHP 5.3.14 (tar.bz2)", + "md5": "370be99c5cdc2e756c82c44d774933c8" + }, + { + "filename": "php-5.3.14.tar.gz", + "name": "PHP 5.3.14 (tar.gz)", + "md5": "148730865242a031a638ee3bab4a9d4d" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.14 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.15/announcement.html b/data/releases/5.3/5.3.15/announcement.html new file mode 100644 index 0000000000..b7228879b4 --- /dev/null +++ b/data/releases/5.3/5.3.15/announcement.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/5.3.15/changes.txt b/data/releases/5.3/5.3.15/changes.txt new file mode 100644 index 0000000000..7fa43bf2d0 --- /dev/null +++ b/data/releases/5.3/5.3.15/changes.txt @@ -0,0 +1,68 @@ +- Zend Engine: + . Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that + includes a semi-colon). (Pierrick) + +- COM: + . Fixed bug #62146 com_dotnet cannot be built shared. (Johannes) + +- Core: + . Fixed potential overflow in _php_stream_scandir, CVE-2012-2688. (Jason + Powell, Stas) + . Fixed bug #62432 (ReflectionMethod random corrupt memory on high + concurrent). (Johannes) + . Fixed bug #62443 (Crypt SHA256/512 Segfaults With Malformed + Salt). (Anthony Ferrara) + +- Fileinfo: + . Fixed magic file regex support. (Felipe) + +- FPM: + . Fixed bug #61045 (fpm don't send error log to fastcgi clients). (fat) + . Fixed bug #61835 (php-fpm is not allowed to run as root). (fat) + . Fixed bug #61295 (php-fpm should not fail with commented 'user' + for non-root start). (fat) + . Fixed bug #61026 (FPM pools can listen on the same address). (fat) + . Fixed bug #62033 (php-fpm exits with status 0 on some failures to start). + (fat) + . Fixed bug #62153 (when using unix sockets, multiples FPM instances + can be launched without errors). (fat) + . Fixed bug #62160 (Add process.priority to set nice(2) priorities). (fat) + . Fixed bug #61218 (FPM drops connection while receiving some binary values + in FastCGI requests). (fat) + . Fixed bug #62205 (php-fpm segfaults (null passed to strstr)). (fat) + +- Intl: + . Fixed bug #62083 (grapheme_extract() memory leaks). (Gustavo) + . Fixed bug #62081 (IntlDateFormatter constructor leaks memory when called + twice). (Gustavo) + . Fixed bug #62070 (Collator::getSortKey() returns garbage). (Gustavo) + . Fixed bug #62017 (datefmt_create with incorrectly encoded timezone leaks + pattern). (Gustavo) + . Fixed bug #60785 (memory leak in IntlDateFormatter constructor). (Gustavo) + +- JSON: + . Reverted fix for bug #61537. (Johannes) + +- Phar: + . Fixed bug #62227 (Invalid phar stream path causes crash). (Felipe) + +- Reflection: + . Fixed bug #62384 (Attempting to invoke a Closure more than once causes + segfault). (Felipe) + . Fixed bug #62202 (ReflectionParameter::getDefaultValue() memory leaks + with constant). (Laruence) + +- SPL: + . Fixed bug #62262 (RecursiveArrayIterator does not implement Countable). + (Nikita Popov) + +- SQLite: + . Fixed open_basedir bypass, CVE-2012-3365. (Johannes, reported by Yury + Maryshev) + +- XML Writer: + . Fixed bug #62064 (memory leak in the XML Writer module). + (jean-pierre dot lozi at lip6 dot fr) + +- Zip: + . Upgraded libzip to 0.10.1 (Anatoliy) diff --git a/data/releases/5.3/5.3.15/release.json b/data/releases/5.3/5.3.15/release.json new file mode 100644 index 0000000000..1f4f733b14 --- /dev/null +++ b/data/releases/5.3/5.3.15/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.15", + "date": "19 July 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.15.tar.bz2", + "name": "PHP 5.3.15 (tar.bz2)", + "md5": "5cfcfd0fa4c4da7576f397073e7993cc" + }, + { + "filename": "php-5.3.15.tar.gz", + "name": "PHP 5.3.15 (tar.gz)", + "md5": "7c885c79a611b89f3a1095fce6eae5c6" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.15 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.16/announcement.html b/data/releases/5.3/5.3.16/announcement.html new file mode 100644 index 0000000000..3815342099 --- /dev/null +++ b/data/releases/5.3/5.3.16/announcement.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/5.3.16/changes.txt b/data/releases/5.3/5.3.16/changes.txt new file mode 100644 index 0000000000..a1f15591f4 --- /dev/null +++ b/data/releases/5.3/5.3.16/changes.txt @@ -0,0 +1,19 @@ +- Core: + . Fixed bug #60194 (--with-zend-multibyte and --enable-debug reports LEAK + with run-test.php). (Laruence) + +- CURL: + . Fixed bug #62499 (curl_setopt($ch, CURLOPT_COOKIEFILE, "") returns false). + (r.hampartsumyan@gmail.com, Laruence) + +- DateTime: + . Fixed Bug #62500 (Segfault in DateInterval class when extended). (Laruence) + +- Reflection: + . Fixed bug #62715 (ReflectionParameter::isDefaultValueAvailable() wrong + result). (Laruence) + +- SPL: + . Fixed bug #62616 (ArrayIterator::count() from IteratorIterator instance + gives Segmentation fault). (Laruence, Gustavo) + diff --git a/data/releases/5.3/5.3.16/release.json b/data/releases/5.3/5.3.16/release.json new file mode 100644 index 0000000000..b336c440c2 --- /dev/null +++ b/data/releases/5.3/5.3.16/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.16", + "date": "16 Aug 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.16.tar.bz2", + "name": "PHP 5.3.16 (tar.bz2)", + "md5": "99cfd78531643027f60c900e792d21be" + }, + { + "filename": "php-5.3.16.tar.gz", + "name": "PHP 5.3.16 (tar.gz)", + "md5": "59b776edeac2897ebe3712dcc94b6706" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.16 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.17/announcement.html b/data/releases/5.3/5.3.17/announcement.html new file mode 100644 index 0000000000..cf6e12c13f --- /dev/null +++ b/data/releases/5.3/5.3.17/announcement.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/5.3.17/changes.txt b/data/releases/5.3/5.3.17/changes.txt new file mode 100644 index 0000000000..bb76ba03d2 --- /dev/null +++ b/data/releases/5.3/5.3.17/changes.txt @@ -0,0 +1,37 @@ +- Core: + . Fixed bug (segfault while build with zts and GOTO vm-kind). (Laruence) + . Fixed bug #62955 (Only one directive is loaded from "Per Directory Values" + Windows registry). (aserbulov at parallels dot com) + . Fixed bug #62763 (register_shutdown_function and extending class). + (Laruence) + . Fixed bug #62744 (dangling pointers made by zend_disable_class). (Laruence) + . Fixed bug #62716 (munmap() is called with the incorrect length). + (slangley@google.com) + . Fixed bug ##62460 (php binaries installed as binary.dSYM). (Reeze Xia) + +- CURL: + . Fixed bug #62839 (curl_copy_handle segfault with CURLOPT_FILE). (Pierrick) + . Fixed bug #62499 (curl_setopt($ch, CURLOPT_COOKIEFILE, "") returns false). + (r.hampartsumyan@gmail.com, Laruence) + + - DateTime: + . Fixed bug #62852 (Unserialize invalid DateTime causes crash). + (reeze.xia@gmail.com) + . Fixed bug #62500 (Segfault in DateInterval class when extended). (Laruence) + +- MySQLnd: + . Fixed bug #62885 (mysqli_poll - Segmentation fault). (Laruence) + +- PDO: + . Fixed bug #62685 (Wrong return datatype in PDO::inTransaction()). (Laruence) + +- Session: + . Fixed bug (segfault due to retval is not initialized). (Laruence) + +- SPL: + . Fixed bug #62904 (Crash when cloning an object which inherits SplFixedArray) + (Laruence) + +- Enchant: + . Fixed bug #62838 (enchant_dict_quick_check() destroys zval, but fails to + initialize it). (Tony, Mateusz Goik). diff --git a/data/releases/5.3/5.3.17/release.json b/data/releases/5.3/5.3.17/release.json new file mode 100644 index 0000000000..4147593dcd --- /dev/null +++ b/data/releases/5.3/5.3.17/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.17", + "date": "13 Sep 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.17.tar.bz2", + "name": "PHP 5.3.17 (tar.bz2)", + "md5": "29ee79c941ee85d6c1555c176f12f7ef" + }, + { + "filename": "php-5.3.17.tar.gz", + "name": "PHP 5.3.17 (tar.gz)", + "md5": "002e02e36c2cbcada8c49a7e5956d787" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.17 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.18/announcement.html b/data/releases/5.3/5.3.18/announcement.html new file mode 100644 index 0000000000..5001304c07 --- /dev/null +++ b/data/releases/5.3/5.3.18/announcement.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/5.3.18/changes.txt b/data/releases/5.3/5.3.18/changes.txt new file mode 100644 index 0000000000..8748468ee9 --- /dev/null +++ b/data/releases/5.3/5.3.18/changes.txt @@ -0,0 +1,38 @@ +- Core: + . Fixed bug #63111 (is_callable() lies for abstract static method). (Dmitry) + . Fixed bug #63093 (Segfault while load extension failed in zts-build). + (Laruence) + . Fixed bug #62976 (Notice: could not be converted to int when comparing + some builtin classes). (Laruence) + . Fixed bug #61767 (Shutdown functions not called in certain error + situation). (Dmitry) + . Fixed bug #61442 (exception threw in __autoload can not be catched). + (Laruence) + . Fixed bug #60909 (custom error handler throwing Exception + fatal error + = no shutdown function). (Dmitry) + +- cURL: + . Fixed bug #62085 (file_get_contents a remote file by Curl wrapper will + cause cpu Soaring). (Pierrick) + +- FPM: + . Fixed bug #62954 (startup problems fpm / php-fpm). (fat) + . Fixed bug #62886 (PHP-FPM may segfault/hang on startup). (fat) + . Fixed bug #63085 (Systemd integration and daemonize). (remi, fat) + . Fixed bug #62947 (Unneccesary warnings on FPM). (fat) + . Fixed bug #62887 (Only /status?plain&full gives "last request cpu"). (fat) + . Fixed bug #62216 (Add PID to php-fpm init.d script). (fat) + +- Intl: + . Fix bug #62915 (defective cloning in several intl classes). (Gustavo) + +- OCI8: + . Fixed bug #60901 (Improve "tail" syntax for AIX installation) (Chris Jones) + +- SOAP + . Fixed bug #50997 (SOAP Error when trying to submit 2nd Element of a choice). + (Dmitry) + +- SPL: + . Bug #62987 (Assigning to ArrayObject[null][something] overrides all + undefined variables). (Laruence) diff --git a/data/releases/5.3/5.3.18/release.json b/data/releases/5.3/5.3.18/release.json new file mode 100644 index 0000000000..a12bb5f1a9 --- /dev/null +++ b/data/releases/5.3/5.3.18/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.18", + "date": "18 Oct 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.18.tar.bz2", + "name": "PHP 5.3.18 (tar.bz2)", + "md5": "52539c19d0f261560af3c030143dfa8f" + }, + { + "filename": "php-5.3.18.tar.gz", + "name": "PHP 5.3.18 (tar.gz)", + "md5": "ff2009aadc7c4d1444f6cd8e45f39a41" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.18 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.19/announcement.html b/data/releases/5.3/5.3.19/announcement.html new file mode 100644 index 0000000000..5d91c0a650 --- /dev/null +++ b/data/releases/5.3/5.3.19/announcement.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/5.3.19/changes.txt b/data/releases/5.3/5.3.19/changes.txt new file mode 100644 index 0000000000..b793c2689a --- /dev/null +++ b/data/releases/5.3/5.3.19/changes.txt @@ -0,0 +1,41 @@ +- Core + . Fixed bug #63241 (PHP fails to open Windows deduplicated files). + (daniel dot stelter-gliese at innogames dot de) + . Fixed bug #62444 (Handle leak in is_readable on windows). + (krazyest at seznam dot cz) + +- Libxml + . Fixed bug #63389 (Missing context check on libxml_set_streams_context() + causes memleak). (Laruence) + +- Mbstring: + . Fixed bug #63447 (max_input_vars doesn't filter variables when + mbstring.encoding_translation = On). (Laruence) + +- MySQL: + . Fixed compilation failure on mixed 32/64 bit systems. (Andrey) + +- OCI8: + . Fixed bug #63265 (Add ORA-00028 to the PHP_OCI_HANDLE_ERROR macro) + (Chris Jones) + +- PCRE: + . Fixed bug #63055 (Segfault in zend_gc with SF2 testsuite). + (Dmitry, Laruence) + . Fixed bug #63284 (Upgrade PCRE to 8.31). (Anatoliy) + +- PDO: + . Fixed bug #63235 (buffer overflow in use of SQLGetDiagRec). + (Martin Osvald, Remi) + +- PDO_pgsql: + . Fixed bug #62593 (Emulate prepares behave strangely with PARAM_BOOL). + (Will Fitch) + +- Streams: + . Fixed bug #63240 (stream_get_line() return contains delimiter string). + (Tjerk, Gustavo) + +- Phar: + . Fixed bug #63297 (Phar fails to write an openssl based signature). + (Anatoliy) diff --git a/data/releases/5.3/5.3.19/release.json b/data/releases/5.3/5.3.19/release.json new file mode 100644 index 0000000000..98ece40bf9 --- /dev/null +++ b/data/releases/5.3/5.3.19/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.19", + "date": "22 Nov 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.19.tar.bz2", + "name": "PHP 5.3.19 (tar.bz2)", + "md5": "e1d2a3ec7849d4b3032bd1abf1916aa4" + }, + { + "filename": "php-5.3.19.tar.gz", + "name": "PHP 5.3.19 (tar.gz)", + "md5": "e1bcda4f14bb39ba041297abbf18f8d1" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.3.19 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.2/announcement.html b/data/releases/5.3/5.3.2/announcement.html new file mode 100644 index 0000000000..b38fbb6c72 --- /dev/null +++ b/data/releases/5.3/5.3.2/announcement.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/5.3.2/changes.txt b/data/releases/5.3/5.3.2/changes.txt new file mode 100644 index 0000000000..100a8a2f43 --- /dev/null +++ b/data/releases/5.3/5.3.2/changes.txt @@ -0,0 +1,234 @@ +- Upgraded bundled sqlite to version 3.6.22. (Ilia) +- Upgraded bundled libmagic to version 5.03. (Mikko) +- Upgraded bundled PCRE to version 8.00. (Scott) +- Updated timezone database to version 2010.3. (Derick) + +- Improved LCG entropy. (Rasmus, Samy Kamkar) +- Improved crypt support for edge cases (UFC compatibility). (Solar Designer, + Joey, Pierre) + +- Reverted fix for bug #49521 (PDO fetchObject sets values before calling + constructor). (Pierrick, Johannes) + +- Changed gmp_strval() to use full range from 2 to 62, and -2 to -36. FR #50283 + (David Soria Parra) +- Changed "post_max_size" php.ini directive to allow unlimited post size by + setting it to 0. (Rasmus) +- Changed tidyNode class to disallow manual node creation. (Pierrick) + +- Removed automatic file descriptor unlocking happening on shutdown and/or + stream close (on all OSes). (Tony, Ilia) + +- Added libpng 1.4.0 support. (Pierre) +- Added support for DISABLE_AUTHENTICATOR for imap_open. (Pierre) +- Added missing host validation for HTTP urls inside FILTER_VALIDATE_URL. + (Ilia) +- Added stream_resolve_include_path(). (Mikko) +- Added INTERNALDATE support to imap_append. (nick at mailtrust dot com) +- Added support for SHA-256 and SHA-512 to php's crypt. (Pierre) +- Added realpath_cache_size() and realpath_cache_get() functions. (Stas) +- Added FILTER_FLAG_STRIP_BACKTICK option to the filter extension. (Ilia) +- Added protection for $_SESSION from interrupt corruption and improved + "session.save_path" check. (Stas) +- Added LIBXML_PARSEHUGE constant to override the maximum text size of a + single text node when using libxml2.7.3+. (Kalle) +- Added ReflectionMethod::setAccessible() for invoking non-public methods + through the Reflection API. (Sebastian) +- Added Collator::getSortKey for intl extension. (Stas) +- Added support for CURLOPT_POSTREDIR. FR #49571. (Sriram Natarajan) +- Added support for CURLOPT_CERTINFO. FR #49253. + (Linus Nielsen FeltzingThe 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/5.3.20/changes.txt b/data/releases/5.3/5.3.20/changes.txt new file mode 100644 index 0000000000..77c30e2852 --- /dev/null +++ b/data/releases/5.3/5.3.20/changes.txt @@ -0,0 +1,41 @@ +- Zend Engine: + . Fixed bug #63635 (Segfault in gc_collect_cycles). (Dmitry) + . Fixed bug #63512 (parse_ini_file() with INI_SCANNER_RAW removes quotes + from value). (Pierrick) + . Fixed bug #63468 (wrong called method as callback with inheritance). + (Laruence) + +- Core: + . Fixed bug #63451 (config.guess file does not have AIX 7 defined, + shared objects are not created). (kemcline at au1 dot ibm dot com) + . Fixed bug #63377 (Segfault on output buffer). + (miau dot jp at gmail dot com, Laruence) + +- Apache2 Handler SAPI: + . Enabled Apache 2.4 configure option for Windows (Pierre, Anatoliy) + +- Date: + . Fixed bug #63435 (Datetime::format('u') sometimes wrong by 1 microsecond). + (Remi) + +- Fileinfo: + . Fixed bug #63248 (Load multiple magic files from a directory under Windows). + (Anatoliy) + . Fixed bug #63590 (Different results in TS and NTS under Windows). + (Anatoliy) + +- FPM: + . Fixed bug #63581 (Possible null dereference and buffer overflow). (Remi) + +- Imap: + . Fixed bug #63126 (DISABLE_AUTHENTICATOR ignores array). (Remi) + +- MySQLnd: + . Fixed bug #63398 (Segfault when polling closed link). (Laruence) + +- Reflection: + . Fixed Bug #63614 (Fatal error on Reflection). (Laruence) + +- SOAP + . Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests). + (John Jawed, Dmitry) diff --git a/data/releases/5.3/5.3.20/release.json b/data/releases/5.3/5.3.20/release.json new file mode 100644 index 0000000000..57849d09e1 --- /dev/null +++ b/data/releases/5.3/5.3.20/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.20", + "date": "20 Dec 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.20.tar.bz2", + "name": "PHP 5.3.20 (tar.bz2)", + "md5": "00241b9e89e93adf3baac32c56211e4e" + }, + { + "filename": "php-5.3.20.tar.gz", + "name": "PHP 5.3.20 (tar.gz)", + "md5": "1e202851bf2ba1ee96d7dc5b48944119" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.20 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.21/announcement.html b/data/releases/5.3/5.3.21/announcement.html new file mode 100644 index 0000000000..bb0da49527 --- /dev/null +++ b/data/releases/5.3/5.3.21/announcement.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/5.3.21/changes.txt b/data/releases/5.3/5.3.21/changes.txt new file mode 100644 index 0000000000..b4ab2f61fc --- /dev/null +++ b/data/releases/5.3/5.3.21/changes.txt @@ -0,0 +1,12 @@ +- Zend Engine: + . Fixed bug #63762 (Sigsegv when Exception::$trace is changed by user). + (Johannes) + +- cURL extension: + . Fixed bug (segfault due to libcurl connection caching). (Pierrick) + . Fixed bug #63795 (CURL >= 7.28.0 no longer support value 1 for + CURLOPT_SSL_VERIFYHOST). (Pierrick) + . Fixed bug #63352 (Can't enable hostname validation when using curl stream + wrappers). (Pierrick) + . Fixed bug #55438 (Curlwapper is not sending http header randomly). + (phpnet@lostreality.org, Pierrick) diff --git a/data/releases/5.3/5.3.21/release.json b/data/releases/5.3/5.3.21/release.json new file mode 100644 index 0000000000..e20b3e63cc --- /dev/null +++ b/data/releases/5.3/5.3.21/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.21", + "date": "17 Jan 2013", + "tags": [], + "source": [ + { + "filename": "php-5.3.21.tar.bz2", + "name": "PHP 5.3.21 (tar.bz2)", + "md5": "1b214fc19bb5f5c0902ba27c74d5f4a2" + }, + { + "filename": "php-5.3.21.tar.gz", + "name": "PHP 5.3.21 (tar.gz)", + "md5": "f47fbe3407520e5d9d895168950aa683" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.21 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.22/announcement.html b/data/releases/5.3/5.3.22/announcement.html new file mode 100644 index 0000000000..c911d50baf --- /dev/null +++ b/data/releases/5.3/5.3.22/announcement.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/5.3.22/changes.txt b/data/releases/5.3/5.3.22/changes.txt new file mode 100644 index 0000000000..9ab4c9d032 --- /dev/null +++ b/data/releases/5.3/5.3.22/changes.txt @@ -0,0 +1,22 @@ +- Zend Engine: + . Fixed bug #64099 (Wrong TSRM usage in zend_Register_class alias). (Johannes) + . Fixed bug #63899 (Use after scope error in zend_compile). (Laruence) + +- Core + . Fixed bug #63943 (Bad warning text from strpos() on empty needle). + (Laruence) + +- Date: + . Fixed bug #55397 (comparsion of incomplete DateTime causes SIGSEGV). + (Laruence, Derick) + +- FPM: + . Fixed bug #63999 (php with fpm fails to build on Solaris 10 or 11). (Adam) + +- SOAP + . Added check that soap.wsdl_cache_dir conforms to open_basedir + (CVE-2013-1635). (Dmitry) + . Disabled external entities loading (CVE-2013-1643). (Dmitry) + +- SPL: + . Fixed bug #64106 (Segfault on SplFixedArray[][x] = y when extended). (Nikita Popov) diff --git a/data/releases/5.3/5.3.22/release.json b/data/releases/5.3/5.3.22/release.json new file mode 100644 index 0000000000..fcec71648c --- /dev/null +++ b/data/releases/5.3/5.3.22/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.22", + "date": "21 Feb 2013", + "tags": [], + "source": [ + { + "filename": "php-5.3.22.tar.bz2", + "name": "PHP 5.3.22 (tar.bz2)", + "md5": "bf351426fc7f97aa13914062958a6100" + }, + { + "filename": "php-5.3.22.tar.gz", + "name": "PHP 5.3.22 (tar.gz)", + "md5": "5008d8e70195d933e30bfbae3651b4ed" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.22 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.23/announcement.html b/data/releases/5.3/5.3.23/announcement.html new file mode 100644 index 0000000000..4f2f542ca8 --- /dev/null +++ b/data/releases/5.3/5.3.23/announcement.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/5.3.23/changes.txt b/data/releases/5.3/5.3.23/changes.txt new file mode 100644 index 0000000000..eb24a7f1a6 --- /dev/null +++ b/data/releases/5.3/5.3.23/changes.txt @@ -0,0 +1,9 @@ +- Phar: + . Fixed timestamp update on Phar contents modification. (Dmitry) + +- SPL: + . Fixed bug #64264 (SPLFixedArray toArray problem). (Laruence) + . Fixed bug #64228 (RecursiveDirectoryIterator always assumes SKIP_DOTS). + (patch by kriss@krizalys.com, Laruence) + . Fixed bug #52861 (unset fails with ArrayObject and deep arrays). + (Mike Willbanks) diff --git a/data/releases/5.3/5.3.23/release.json b/data/releases/5.3/5.3.23/release.json new file mode 100644 index 0000000000..9f8cd1a4ed --- /dev/null +++ b/data/releases/5.3/5.3.23/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.23", + "date": "14 Mar 2013", + "tags": [], + "source": [ + { + "filename": "php-5.3.23.tar.bz2", + "name": "PHP 5.3.23 (tar.bz2)", + "md5": "ab7bd1dd3bbc8364cb9fcaa2d79fb502" + }, + { + "filename": "php-5.3.23.tar.gz", + "name": "PHP 5.3.23 (tar.gz)", + "md5": "9cd92b0de2b51dcd372f46fa623984f4" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.23 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.24/announcement.html b/data/releases/5.3/5.3.24/announcement.html new file mode 100644 index 0000000000..2cd9348e54 --- /dev/null +++ b/data/releases/5.3/5.3.24/announcement.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/5.3.24/changes.txt b/data/releases/5.3/5.3.24/changes.txt new file mode 100644 index 0000000000..61b9ad08ad --- /dev/null +++ b/data/releases/5.3/5.3.24/changes.txt @@ -0,0 +1,20 @@ +- Core + . Fixed bug #64370 (microtime(true) less than $_SERVER['REQUEST_TIME_FLOAT']). + (Anatol) + . Fixed bug #63914 (zend_do_fcall_common_helper_SPEC does not handle + exceptions properly). (Jeff Welch) + . Fixed bug #62343 (Show class_alias In get_declared_classes()) (Dmitry) + +- PCRE: + . Merged PCRE 8.32). (Anatol) + +- mysqlnd + . Fixed bug #63530 (mysqlnd_stmt::bind_one_parameter crashes, uses wrong alloc + for stmt->param_bind). (Andrey) + +- DateTime + . Fixed bug #62852 (Unserialize Invalid Date causes crash). (Anatol) + +- Zip: + . Bug #64452 (Zip crash intermittently). (Anatol) + diff --git a/data/releases/5.3/5.3.24/release.json b/data/releases/5.3/5.3.24/release.json new file mode 100644 index 0000000000..1f21da6e3d --- /dev/null +++ b/data/releases/5.3/5.3.24/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.24", + "date": "11 Apr 2013", + "tags": [], + "source": [ + { + "filename": "php-5.3.24.tar.bz2", + "name": "PHP 5.3.24 (tar.bz2)", + "md5": "9820604df98c648297dcd31ffb8214e8" + }, + { + "filename": "php-5.3.24.tar.gz", + "name": "PHP 5.3.24 (tar.gz)", + "md5": "cb0311a6a5ed6ffff8f41f713f9d8e84" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.24 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.25/announcement.html b/data/releases/5.3/5.3.25/announcement.html new file mode 100644 index 0000000000..eb827f8d97 --- /dev/null +++ b/data/releases/5.3/5.3.25/announcement.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/5.3.25/changes.txt b/data/releases/5.3/5.3.25/changes.txt new file mode 100644 index 0000000000..2df04ae2a2 --- /dev/null +++ b/data/releases/5.3/5.3.25/changes.txt @@ -0,0 +1,13 @@ +- Core: + . Fixed bug #64578 (debug_backtrace in set_error_handler corrupts zend heap: + segfault). (Laruence) + . Fixed bug #64458 (dns_get_record result with string of length -1). (Stas) + . Fixed bugs #47675 and #64577 (fd leak on Solaris). (Rasmus) + +- Streams: + . Fixed Windows x64 version of stream_socket_pair() and improved error + handling. (Anatol Belski) + +- Zip: + . Fixed bug #64342 (ZipArchive::addFile() has to check for file existence). + (Anatol) diff --git a/data/releases/5.3/5.3.25/release.json b/data/releases/5.3/5.3.25/release.json new file mode 100644 index 0000000000..73adfbc8d0 --- /dev/null +++ b/data/releases/5.3/5.3.25/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.25", + "date": "09 May 2013", + "tags": [], + "source": [ + { + "filename": "php-5.3.25.tar.bz2", + "name": "PHP 5.3.25 (tar.bz2)", + "md5": "d71db8d92edbb48beb5b645b55471139" + }, + { + "filename": "php-5.3.25.tar.gz", + "name": "PHP 5.3.25 (tar.gz)", + "md5": "a430a48b8939fe1f8915ee38681b0afa" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.25 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.26/announcement.html b/data/releases/5.3/5.3.26/announcement.html new file mode 100644 index 0000000000..840d793c95 --- /dev/null +++ b/data/releases/5.3/5.3.26/announcement.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/5.3.26/changes.txt b/data/releases/5.3/5.3.26/changes.txt new file mode 100644 index 0000000000..84df69335e --- /dev/null +++ b/data/releases/5.3/5.3.26/changes.txt @@ -0,0 +1,27 @@ +- Core: + . Fixed bug #64879 (Heap based buffer overflow in quoted_printable_encode, + CVE 2013-2110). (Stas) + +- Calendar: + . Fixed bug #64895 (Integer overflow in SndToJewish). (Remi) + +- FPM: + . Fixed some possible memory or resource leaks and possible null dereference + detected by code coverity scan. (Remi) + . Log a warning when a syscall fails. (Remi) + +- MySQLi: + . Fixed bug #64726 (Segfault when calling fetch_object on a use_result and DB + pointer has closed). (Laruence) + +- Phar + . Fixed bug #64214 (PHAR PHPTs intermittently crash when run on DFS, SMB or + with non std tmp dir). (Pierre) + +- Streams: + . Fixed bug #64770 (stream_select() fails with pipes returned by proc_open() + on Windows x64). (Anatol) + +- Zend Engine: + . Fixed bug #64821 (Custom Exception crash when internal properties + overridden). (Anatol) diff --git a/data/releases/5.3/5.3.26/release.json b/data/releases/5.3/5.3.26/release.json new file mode 100644 index 0000000000..1e1748648c --- /dev/null +++ b/data/releases/5.3/5.3.26/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.26", + "date": "06 Jun 2013", + "tags": [], + "source": [ + { + "filename": "php-5.3.26.tar.bz2", + "name": "PHP 5.3.26 (tar.bz2)", + "md5": "d71db8d92edbb48beb5b645b55471139" + }, + { + "filename": "php-5.3.26.tar.gz", + "name": "PHP 5.3.26 (tar.gz)", + "md5": "a430a48b8939fe1f8915ee38681b0afa" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.26 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.27/announcement.html b/data/releases/5.3/5.3.27/announcement.html new file mode 100644 index 0000000000..981eece0ee --- /dev/null +++ b/data/releases/5.3/5.3.27/announcement.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/5.3.27/changes.txt b/data/releases/5.3/5.3.27/changes.txt new file mode 100644 index 0000000000..e9a0a9cd2a --- /dev/null +++ b/data/releases/5.3/5.3.27/changes.txt @@ -0,0 +1,28 @@ +- Core: + . Fixed bug #64966 (segfault in zend_do_fcall_common_helper_SPEC). (Laruence) + . Fixed bug #64960 (Segfault in gc_zval_possible_root). (Laruence) + . Fixed bug #64934 (Apache2 TS crash with get_browser()). (Anatol) + . Fixed bug #63186 (compile failure on netbsd). (Matteo) + +- DateTime: + . Fixed bug #53437 (Crash when using unserialized DatePeriod instance). + (Gustavo, Derick, Anatol) + +- PDO_firebird: + . Fixed bug #64037 (Firebird return wrong value for numeric field). + (Matheus Degiovani, Matteo) + . Fixed bug #62024 (Cannot insert second row with null using parametrized + query). (patch by james@kenjim.com, Matheus Degiovani, Matteo) + +- PDO_pgsql: + . Fixed bug #64949 (Buffer overflow in _pdo_pgsql_error). (Remi) + +- pgsql: + . Fixed bug #64609 (pg_convert enum type support). (Matteo) + +- SPL: + . Fixed bug #64997 (Segfault while using RecursiveIteratorIterator on + 64-bits systems). (Laruence) + +- XML: + . Fixed bug #65236 (heap corruption in xml parser). (Rob) diff --git a/data/releases/5.3/5.3.27/release.json b/data/releases/5.3/5.3.27/release.json new file mode 100644 index 0000000000..3138f26654 --- /dev/null +++ b/data/releases/5.3/5.3.27/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.27", + "date": "11 Jul 2013", + "tags": [], + "source": [ + { + "filename": "php-5.3.27.tar.bz2", + "name": "PHP 5.3.27 (tar.bz2)", + "sha256": "e12db21c623b82a2244c4dd9b06bb75af20868c1b748a105a6829a5acc36b287" + }, + { + "filename": "php-5.3.27.tar.gz", + "name": "PHP 5.3.27 (tar.gz)", + "sha256": "5ecd737fc79ad33b5c79a9784c0b4211d211ba682d4d721ac6ce975907a5b12b" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.27 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.28/announcement.html b/data/releases/5.3/5.3.28/announcement.html new file mode 100644 index 0000000000..6ad04feff5 --- /dev/null +++ b/data/releases/5.3/5.3.28/announcement.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/5.3.28/changes.txt b/data/releases/5.3/5.3.28/changes.txt new file mode 100644 index 0000000000..fc021a78cb --- /dev/null +++ b/data/releases/5.3/5.3.28/changes.txt @@ -0,0 +1,9 @@ +- Openssl: + . Fixed handling null bytes in subjectAltName (CVE-2013-4073). + (Christian Heimes) + . Fixed memory corruption in openssl_x509_parse() (CVE-2013-6420). + (Stefan Esser). + +- FPM: + . Fixed bug #67060 (sapi/fpm: possible privilege escalation due to insecure + default configuration) (CVE-2014-0185). (Stas) diff --git a/data/releases/5.3/5.3.28/release.json b/data/releases/5.3/5.3.28/release.json new file mode 100644 index 0000000000..ccf039e467 --- /dev/null +++ b/data/releases/5.3/5.3.28/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.3.28", + "date": "11 Jul 2013", + "tags": [], + "source": [ + { + "filename": "php-5.3.28.tar.bz2", + "name": "PHP 5.3.28 (tar.bz2)", + "sha256": "0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513" + }, + { + "filename": "php-5.3.28.tar.gz", + "name": "PHP 5.3.28 (tar.gz)", + "sha256": "ace8fde82a4275d6dcec4e15feb047416e1813fea46e159dfd113298371396d0" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.28 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.29/announcement.html b/data/releases/5.3/5.3.29/announcement.html new file mode 100644 index 0000000000..db3642fb65 --- /dev/null +++ b/data/releases/5.3/5.3.29/announcement.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/5.3.29/changes.txt b/data/releases/5.3/5.3.29/changes.txt new file mode 100644 index 0000000000..0df13be063 --- /dev/null +++ b/data/releases/5.3/5.3.29/changes.txt @@ -0,0 +1,58 @@ +- Core: + . Fixed bug #66127 (Segmentation fault with ArrayObject unset). (Stas) + . Fixed bug #67247 (spl_fixedarray_resize integer overflow). (Stas) + . Fixed bug #67249 (printf out-of-bounds read). (Stas) + . Fixed bug #67250 (iptcparse out-of-bounds read). (Stas) + . Fixed bug #67252 (convert_uudecode out-of-bounds read). (Stas) + . Fixed bug #67359 (Segfault in recursiveDirectoryIterator). (Laruence) + . Fixed bug #67390 (insecure temporary file use in the configure script). + (Remi) (CVE-2014-3981) + . Fixed bug #67399 (putenv with empty variable may lead to crash). (Stas) + . Fixed bug #67492 (unserialize() SPL ArrayObject / SPLObjectStorage Type + Confusion) (CVE-2014-3515). (Stefan Esser) + . Fixed bug #67498 (phpinfo() Type Confusion Information Leak Vulnerability). + (Stefan Esser) + +- COM: + . Fixed missing type checks in com_event_sink (Yussuf Khalil, Stas). + +- Date: + . Fixed bug #66060 (Heap buffer over-read in DateInterval). (CVE-2013-6712) + (Remi) + . Fixed bug #67251 (date_parse_from_format out-of-bounds read). (Stas) + . Fixed bug #67253 (timelib_meridian_with_check out-of-bounds read). (Stas) + +- Exif: + . Fixed bug #65873 (Integer overflow in exif_read_data()). (Stas) + +- Fileinfo: + . Fixed bug #66307 (Fileinfo crashes with powerpoint files). (Anatol) + . Fixed bug #67326 (fileinfo: cdf_read_short_sector insufficient boundary + check). (CVE-2014-0207) + . Fixed bug #67327 (fileinfo: CDF infinite loop in nelements DoS). + (CVE-2014-0238) + . Fixed bug #67328 (fileinfo: fileinfo: numerous file_printf calls resulting + in performance degradation). (CVE-2014-0237) + . Fixed bug #67410 (fileinfo: mconvert incorrect handling of truncated pascal + string size). (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67411 (fileinfo: cdf_check_stream_offset insufficient boundary + check). (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67412 (fileinfo: cdf_count_chain insufficient boundary check). + (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67413 (fileinfo: cdf_read_property_info insufficient boundary + check). (Francisco Alonso, Jan Kaluza, Remi) + +- Intl: + . Fixed bug #67349 (Locale::parseLocale Double Free). (Stas) + . Fixed bug #67397 (Buffer overflow in locale_get_display_name and + uloc_getDisplayName (libicu 4.8.1)). (Stas) + +- Network: + . Fixed bug #67432 (Fix potential segfault in dns_check_record()). + (CVE-2014-4049). (Sara) + +- OpenSSL: + . Fixed missing type checks in OpenSSL options (Yussuf Khalil, Stas). + +- Session: + . Fixed missing type checks in php_session_create_id (Yussuf Khalil, Stas). diff --git a/data/releases/5.3/5.3.29/release.json b/data/releases/5.3/5.3.29/release.json new file mode 100644 index 0000000000..7f978709b3 --- /dev/null +++ b/data/releases/5.3/5.3.29/release.json @@ -0,0 +1,26 @@ +{ + "version": "5.3.29", + "date": "14 Aug 2014", + "tags": [], + "source": [ + { + "filename": "php-5.3.29.tar.bz2", + "name": "PHP 5.3.29 (tar.bz2)", + "sha256": "c4e1cf6972b2a9c7f2777a18497d83bf713cdbecabb65d3ff62ba441aebb0091" + }, + { + "filename": "php-5.3.29.tar.gz", + "name": "PHP 5.3.29 (tar.gz)", + "sha256": "57cf097de3d6c3152dda342f62b1b2e9c988f4cfe300ccfe3c11f3c207a0e317" + }, + { + "filename": "php-5.3.29.tar.xz", + "name": "PHP 5.3.29 (tar.xz)", + "sha256": "8438c2f14ab8f3d6cd2495aa37de7b559e33b610f9ab264f0c61b531bf0c262d" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.3", + "name": "Windows 5.3.29 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.3/announcement.html b/data/releases/5.3/5.3.3/announcement.html new file mode 100644 index 0000000000..bbfe1d2f2a --- /dev/null +++ b/data/releases/5.3/5.3.3/announcement.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/5.3.3/changes.txt b/data/releases/5.3/5.3.3/changes.txt new file mode 100644 index 0000000000..e580a59c70 --- /dev/null +++ b/data/releases/5.3/5.3.3/changes.txt @@ -0,0 +1,280 @@ +- Upgraded bundled sqlite to version 3.6.23.1. (Ilia) +- Upgraded bundled PCRE to version 8.02. (Ilia) + +- Added support for JSON_NUMERIC_CHECK option in json_encode() that converts + numeric strings to integers. (Ilia) +- Added stream_set_read_buffer, allows to set the buffer for read operation. + (Pierre) +- Added stream filter support to mcrypt extension (ported from + mcrypt_filter). (Stas) +- Added full_special_chars filter to ext/filter. (Rasmus) +- Added backlog socket context option for stream_socket_server(). (Mike) +- Added fifth parameter to openssl_encrypt()/openssl_decrypt() + (string $iv) to use non-NULL IV. + Made implicit use of NULL IV a warning. (Sara) +- Added openssl_cipher_iv_length(). (Sara) +- Added FastCGI Process Manager (FPM) SAPI. (Tony) +- Added recent Windows versions to php_uname and fix undefined windows + version support. (Pierre) +- Added Berkeley DB 5 support to the DBA extension. (Johannes, Chris Jones) +- Added support for copy to/from array/file for pdo_pgsql extension. + (Denis Gasparin, Ilia) +- Added inTransaction() method to PDO, with specialized support for Postgres. + (Ilia, Denis Gasparin) + +- Changed namespaced classes so that the ctor can only be named + __construct now. (Stas) +- Reset error state in PDO::beginTransaction() reset error state. (Ilia) + +- Implemented FR#51295 (SQLite3::busyTimeout not existing). (Mark) +- Implemented FR#35638 (Adding udate to imap_fetch_overview results). + (Charles_Duffy at dell dot com ) +- Rewrote var_export() to use smart_str rather than output buffering, prevents + data disclosure if a fatal error occurs (CVE-2010-2531). (Scott) +- Fixed possible buffer overflows in mysqlnd_list_fields, mysqlnd_change_user. + (Andrey) +- Fixed possible buffer overflows when handling error packets in mysqlnd. + Reported by Stefan Esser. (Andrey) +- Fixed very rare memory leak in mysqlnd, when binding thousands of columns. + (Andrey) +- Fixed a crash when calling an inexistent method of a class that inherits + PDOStatement if instantiated directly instead of doing by the PDO methods. + (Felipe) + +- Fixed memory leak on error in mcrypt_create_iv on Windows. (Pierre) +- Fixed a possible crash because of recursive GC invocation. (Dmitry) +- Fixed a possible resource destruction issues in shm_put_var(). + Reported by Stefan Esser. (Dmitry) +- Fixed a possible information leak because of interruption of XOR operator. + Reported by Stefan Esser. (Dmitry) +- Fixed a possible memory corruption because of unexpected call-time pass by + refernce and following memory clobbering through callbacks. + Reported by Stefan Esser. (Dmitry) +- Fixed a possible memory corruption in ArrayObject::uasort(). Reported by + Stefan Esser. (Dmitry) +- Fixed a possible memory corruption in parse_str(). Reported by Stefan Esser. + (Dmitry) +- Fixed a possible memory corruption in pack(). Reported by Stefan Esser. + (Dmitry) +- Fixed a possible memory corruption in substr_replace(). Reported by Stefan + Esser. (Dmitry) +- Fixed a possible memory corruption in addcslashes(). Reported by Stefan + Esser. (Dmitry) +- Fixed a possible stack exhaustion inside fnmatch(). Reported by Stefan + Esser. (Ilia) +- Fixed a possible dechunking filter buffer overflow. Reported by Stefan Esser. + (Pierre) +- Fixed a possible arbitrary memory access inside sqlite extension. Reported + by Mateusz Kocielski. (Ilia) +- Fixed string format validation inside phar extension. Reported by Stefan + Esser. (Ilia) +- Fixed handling of session variable serialization on certain prefix + characters. Reported by Stefan Esser. (Ilia) +- Fixed a NULL pointer dereference when processing invalid XML-RPC + requests (Fixes CVE-2010-0397, bug #51288). (Raphael Geissert) +- Fixed 64-bit integer overflow in mhash_keygen_s2k(). (Clément LECIGNE, Stas) +- Fixed SplObjectStorage unserialization problems (CVE-2010-2225). (Stas) +- Fixed the mail.log ini setting when no filename was given. (Johannes) + +- Fixed bug #52317 (Segmentation fault when using mail() on a rhel 4.x (only 64 + bit)). (Adam) +- Fixed bug #52262 (json_decode() shows no errors on invalid UTF-8). + (Scott) +- Fixed bug #52240 (hash_copy() does not copy the HMAC key, causes wrong + results and PHP crashes). (Felipe) +- Fixed bug #52238 (Crash when an Exception occured in iterator_to_array). + (Johannes) +- Fixed bug #52193 (converting closure to array yields empty array). (Felipe) +- Fixed bug #52183 (Reflectionfunction reports invalid number of arguments for + function aliases). (Felipe) +- Fixed bug #52162 (custom request header variables with numbers are removed). + (Sriram Natarajan) +- Fixed bug #52160 (Invalid E_STRICT redefined constructor error). (Felipe) +- Fixed bug #52138 (Constants are parsed into the ini file for section names). + (Felipe) +- Fixed bug #52115 (mysqli_result::fetch_all returns null, not an empty array). + (Andrey) +- Fixed bug #52101 (dns_get_record() garbage in 'ipv6' field on Windows). + (Pierre) +- Fixed bug #52082 (character_set_client & character_set_connection reset after + mysqli_change_user()). (Andrey) +- Fixed bug #52043 (GD doesn't recognize latest libJPEG versions). + (php at group dot apple dot com, Pierre) +- Fixed bug #52041 (Memory leak when writing on uninitialized variable returned + from function). (Dmitry) +- Fixed bug #52060 (Memory leak when passing a closure to method_exists()). + (Felipe) +- Fixed bug #52057 (ReflectionClass fails on Closure class). (Felipe) +- Fixed bug #52051 (handling of case sensitivity of old-style constructors + changed in 5.3+). (Felipe) +- Fixed bug #52037 (Concurrent builds fail in install-programs). (seanius at + debian dot org, Kalle) +- Fixed bug #52019 (make lcov doesn't support TESTS variable anymore). (Patrick) +- Fixed bug #52010 (open_basedir restrictions mismatch on vacuum command). + (Ilia) +- Fixed bug #52001 (Memory allocation problems after using variable variables). + (Dmitry) +- Fixed bug #51991 (spl_autoload and *nix support with namespace). (Felipe) +- Fixed bug #51943 (AIX: Several files are out of ANSI spec). (Kalle, + coreystup at gmail dot com) +- Fixed bug #51911 (ReflectionParameter::getDefaultValue() memory leaks with + constant array). (Felipe) +- Fixed bug #51905 (ReflectionParameter fails if default value is an array + with an access to self::). (Felipe) +- Fixed bug #51899 (Parse error in parse_ini_file() function when empy value + followed by no newline). (Felipe) +- Fixed bug #51844 (checkdnsrr does not support types other than MX). (Pierre) +- Fixed bug #51827 (Bad warning when register_shutdown_function called with + wrong num of parameters). (Felipe) +- Fixed bug #51822 (Segfault with strange __destruct() for static class + variables). (Dmitry) +- Fixed bug #51791 (constant() aborts execution when fail to check undefined + constant). (Felipe) +- Fixed bug #51732 (Fileinfo __construct or open does not work with NULL). + (Pierre) +- Fixed bug #51725 (xmlrpc_get_type() returns true on invalid dates). (Mike) +- Fixed bug #51723 (Content-length header is limited to 32bit integer with + Apache2 on Windows). (Pierre) +- Fixed bug #51721 (mark DOMNodeList and DOMNamedNodeMap as Traversable). + (David Zuelke) +- Fixed bug #51712 (Test mysql_mysqlnd_read_timeout_long must fail on MySQL4). + (Andrey) +- Fixed bug #51697 (Unsafe operations in free_storage of SPL iterators, + causes crash during shutdown). (Etienne) +- Fixed bug #51690 (Phar::setStub looks for case-sensitive + __HALT_COMPILER()). (Ilia) +- Fixed bug #51688 (ini per dir crashes when invalid document root are given). + (Pierre) +- Fixed bug #51671 (imagefill does not work correctly for small images). + (Pierre) +- Fixed bug #51670 (getColumnMeta causes segfault when re-executing query + after calling nextRowset). (Pierrick) +- Fixed bug #51647 Certificate file without private key (pk in another file) + doesn't work. (Andrey) +- Fixed bug #51629 (CURLOPT_FOLLOWLOCATION error message is misleading). + (Pierre) +- Fixed bug #51627 (script path not correctly evaluated). + (russell dot tempero at rightnow dot com) +- Fixed bug #51624 (Crash when calling mysqli_options()). (Felipe) +- Fixed bug #51615 (PHP crash with wrong HTML in SimpleXML). (Felipe) +- Fixed bug #51609 (pg_copy_to: Invalid results when using fourth parameter). + (Felipe) +- Fixed bug #51608 (pg_copy_to: WARNING: nonstandard use of \\ in a string + literal). (cbandy at jbandy dot com) +- Fixed bug #51607 (pg_copy_from does not allow schema in the tablename + argument). (cbandy at jbandy dot com) +- Fixed bug #51605 (Mysqli - zombie links). (Andrey) +- Fixed bug #51604 (newline in end of header is shown in start of message). + (Daniel Egeberg) +- Fixed bug #51590 (JSON_ERROR_UTF8 is undefined). (Felipe) +- Fixed bug #51583 (Bus error due to wrong alignment in mysqlnd). (Rainer Jung) +- Fixed bug #51582 (Don't assume UINT64_C it's ever available). + (reidrac at usebox dot net, Pierre) +- Fixed bug #51577 (Uninitialized memory reference with oci_bind_array_by_name) + (Oracle Corp.) +- Fixed bug #51562 (query timeout in mssql can not be changed per query). + (ejsmont dot artur at gmail dot com) +- Fixed bug #51552 (debug_backtrace() causes segmentation fault and/or memory + issues). (Dmitry) +- Fixed bug #51445 (var_dump() invalid/slow *RECURSION* detection). (Felipe) +- Fixed bug #51435 (Missing ifdefs / logic bug in crypt code cause compile + errors). (Felipe) +- Fixed bug #51424 (crypt() function hangs after 3rd call). (Pierre, Sriram) +- Fixed bug #51394 (Error line reported incorrectly if error handler throws an + exception). (Stas) +- Fixed bug #51393 (DateTime::createFromFormat() fails if format string contains + timezone). (Adam) +- Fixed bug #51347 (mysqli_close / connection memory leak). (Andrey, Johannes) +- Fixed bug #51338 (URL-Rewriter is still enabled if use_only_cookies is + on). (Ilia, j dot jeising at gmail dot com) +- Fixed bug #51291 (oci_error doesn't report last error when called two times) + (Oracle Corp.) +- Fixed bug #51276 (php_load_extension() is missing when HAVE_LIBDL is + undefined). (Tony) +- Fixed bug #51273 (Faultstring property does not exist when the faultstring is + empty) (Ilia, dennis at transip dot nl) +- Fixed bug #51269 (zlib.output_compression Overwrites Vary Header). (Adam) +- Fixed bug #51257 (CURL_VERSION_LARGEFILE incorrectly used after libcurl + version 7.10.1). (aron dot ujvari at microsec dot hu) +- Fixed bug #51242 (Empty mysql.default_port does not default to 3306 anymore, + but 0). (Adam) +- Fixed bug #51237 (milter SAPI crash on startup). (igmar at palsenberg dot com) +- Fixed bug #51213 (pdo_mssql is trimming value of the money column). (Ilia, + alexr at oplot dot com) +- Fixed bug #51190 (ftp_put() returns false when transfer was successful). + (Ilia) +- Fixed bug #51183 (ext/date/php_date.c fails to compile with Sun Studio). + (Sriram Natarajan) +- Fixed bug #51176 (Static calling in non-static method behaves like $this->). + (Felipe) +- Fixed bug #51171 (curl_setopt() doesn't output any errors or warnings when + an invalid option is provided). (Ilia) +- Fixed bug #51128 (imagefill() doesn't work with large images). (Pierre) +- Fixed bug #51096 ('last day' and 'first day' are handled incorrectly when + parsing date strings). (Derick) +- Fixed bug #51086 (DBA DB4 doesn't work with Berkeley DB 4.8). (Chris Jones) +- Fixed bug #51062 (DBA DB4 uses mismatched headers and libraries). (Chris + Jones) +- Fixed bug #51026 (mysqli_ssl_set not working). (Andrey) +- Fixed bug #51023 (filter doesn't detect int overflows with GCC 4.4). + (Raphael Geissert) +- Fixed bug #50999 (unaligned memory access in dba_fetch()). (Felipe) +- Fixed bug #50976 (Soap headers Authorization not allowed). + (Brain France, Dmitry) +- Fixed bug #50828 (DOMNotation is not subclass of DOMNode). (Rob) +- Fixed bug #50810 (property_exists does not work for private). (Felipe) +- Fixed bug #50762 (in WSDL mode Soap Header handler function only being called + if defined in WSDL). (mephius at gmail dot com) +- Fixed bug #50731 (Inconsistent namespaces sent to functions registered with + spl_autoload_register). (Felipe) +- Fixed bug #50563 (removing E_WARNING from parse_url). (ralph at smashlabs dot + com, Pierre) +- Fixed bug #50578 (incorrect shebang in phar.phar). (Fedora at FamilleCollet + dot com) +- Fixed bug #50392 (date_create_from_format enforces 6 digits for 'u' format + character). (Derick) +- Fixed bug #50383 (Exceptions thrown in __call / __callStatic do not include + file and line in trace). (Felipe) +- Fixed bug #50358 (Compile failure compiling ext/phar/util.lo). (Felipe) +- Fixed bug #50101 (name clash between global and local variable). + (patch by yoarvi at gmail dot com) +- Fixed bug #50055 (DateTime::sub() allows 'relative' time modifications). + (Derick) +- Fixed bug #51002 (fix possible memory corruption with very long names). + (Pierre) +- Fixed bug #49893 (Crash while creating an instance of Zend_Mail_Storage_Pop3). + (Dmitry) +- Fixed bug #49819 (STDOUT losing data with posix_isatty()). (Mike) +- Fixed bug #49778 (DateInterval::format("%a") is always zero when an interval + is created from an ISO string). (Derick) +- Fixed bug #49700 (memory leaks in php_date.c if garbage collector is + enabled). (Dmitry) +- Fixed bug #49576 (FILTER_VALIDATE_EMAIL filter needs updating) (Rasmus) +- Fixed bug #49490 (XPath namespace prefix conflict). (Rob) +- Fixed bug #49429 (odbc_autocommit doesn't work). (Felipe) +- Fixed bug #49320 (PDO returns null when SQLite connection fails). (Felipe) +- Fixed bug #49234 (mysqli_ssl_set not found). (Andrey) +- Fixed bug #49216 (Reflection doesn't seem to work properly on MySqli). + (Andrey) +- Fixed bug #49192 (PHP crashes when GC invoked on COM object). (Stas) +- Fixed bug #49081 (DateTime::diff() mistake if start in January and interval > + 28 days). (Derick) +- Fixed bug #49059 (DateTime::diff() repeats previous sub() operation). + (yoarvi@gmail.com, Derick) +- Fixed bug #48983 (DomDocument : saveHTMLFile wrong charset). (Rob) +- Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3). (Felipe) +- Fixed bug #48902 (Timezone database fallback map is outdated). (Derick) +- Fixed bug #48781 (Cyclical garbage collector memory leak). (Dmitry) +- Fixed bug #48601 (xpath() returns FALSE for legitimate query). (Rob) +- Fixed bug #48361 (SplFileInfo::getPathInfo should return the + parent dir). (Etienne) +- Fixed bug #48289 (iconv_mime_encode() quoted-printable scheme is broken). + (Adam, patch from hiroaki dot kawai at gmail dot com). +- Fixed bug #47842 (sscanf() does not support 64-bit values). (Mike) +- Fixed bug #46111 (Some timezone identifiers can not be parsed). (Derick) +- Fixed bug #45808 (stream_socket_enable_crypto() blocks and eats CPU). + (vincent at optilian dot com) +- Fixed bug #43233 (sasl support for ldap on Windows). (Pierre) +- Fixed bug #35673 (formatOutput does not work with saveHTML). (Rob) +- Fixed bug #33210 (getimagesize() fails to detect width/height on certain + JPEGs). (Ilia) diff --git a/data/releases/5.3/5.3.3/release.json b/data/releases/5.3/5.3.3/release.json new file mode 100644 index 0000000000..1ff9b6be56 --- /dev/null +++ b/data/releases/5.3/5.3.3/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.3", + "date": "22 July 2010", + "tags": [], + "source": [ + { + "filename": "php-5.3.3.tar.bz2", + "name": "PHP 5.3.3 (tar.bz2)", + "md5": "21ceeeb232813c10283a5ca1b4c87b48" + }, + { + "filename": "php-5.3.3.tar.gz", + "name": "PHP 5.3.3 (tar.gz)", + "md5": "5adf1a537895c2ec933fddd48e78d8a2" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.4/announcement.html b/data/releases/5.3/5.3.4/announcement.html new file mode 100644 index 0000000000..84d9528458 --- /dev/null +++ b/data/releases/5.3/5.3.4/announcement.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/5.3.4/changes.txt b/data/releases/5.3/5.3.4/changes.txt new file mode 100644 index 0000000000..e6cabff5be --- /dev/null +++ b/data/releases/5.3/5.3.4/changes.txt @@ -0,0 +1,354 @@ +- Upgraded bundled Sqlite3 to version 3.7.3. (Ilia) +- Upgraded bundled PCRE to version 8.10. (Ilia) + +- Security enhancements: + . Fixed crash in zip extract method (possible CWE-170). + (Maksymilian Arciemowicz, Pierre) + . Paths with NULL in them (foo\0bar.txt) are now considered as invalid. + (Rasmus) + . Fixed a possible double free in imap extension (Identified by Mateusz + Kocielski). (CVE-2010-4150). (Ilia) + . Fixed NULL pointer dereference in ZipArchive::getArchiveComment. + (CVE-2010-3709). (Maksymilian Arciemowicz) + . Fixed possible flaw in open_basedir (CVE-2010-3436). (Pierre) + . Fixed MOPS-2010-24, fix string validation. (CVE-2010-2950). (Pierre) + . Fixed symbolic resolution support when the target is a DFS share. (Pierre) + . Fixed bug #52929 (Segfault in filter_var with FILTER_VALIDATE_EMAIL with + large amount of data) (CVE-2010-3710). (Adam) + +- General improvements: + . Added stat support for zip stream. (Pierre) + . Added follow_location (enabled by default) option for the http stream + support. (Pierre) + . Improved support for is_link and related functions on Windows. (Pierre) + . Added a 3rd parameter to get_html_translation_table. It now takes a charset + hint, like htmlentities et al. (Gustavo) + +- Implemented feature requests: + . Implemented FR #52348, added new constant ZEND_MULTIBYTE to detect + zend multibyte at runtime. (Kalle) + . Implemented FR #52173, added functions pcntl_get_last_error() and + pcntl_strerror(). (nick dot telford at gmail dot com, Arnaud) + . Implemented symbolic links support for open_basedir checks. (Pierre) + . Implemented FR #51804, SplFileInfo::getLinkTarget on Windows. (Pierre) + . Implemented FR #50692, not uploaded files don't count towards + max_file_uploads limit. As a side improvement, temporary files are not + opened for empty uploads and, in debug mode, 0-length uploads. (Gustavo) + +- Improved MySQLnd: + . Added new character sets to mysqlnd, which are available in MySQL 5.5 + (Andrey) + +- Improved PHP-FPM SAPI: + . Added '-p/--prefix' to php-fpm to use a custom prefix and run multiple + instances. (fat) + . Added custom process title for FPM. (fat) + . Added '-t/--test' to php-fpm to check and validate FPM conf file. (fat) + . Added statistics about listening socket queue length for FPM. + (andrei dot nigmatulin at gmail dot com, fat) + +- Core: + . Fixed extract() to do not overwrite $GLOBALS and $this when using + EXTR_OVERWRITE. (jorto at redhat dot com) + . Fixed bug in the Windows implementation of dns_get_record, where the two + last parameters wouldn't be filled unless the type were DNS_ANY (Gustavo). + . Changed the $context parameter on copy() to actually have an effect. (Kalle) + . Fixed htmlentities/htmlspecialchars accepting certain ill-formed UTF-8 + sequences. (Gustavo) + . Fixed bug #53409 (sleep() returns NULL on Windows). (Pierre) + . Fixed bug #53319 (strip_tags() may strip '+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/5.3.6/changes.txt b/data/releases/5.3/5.3.6/changes.txt new file mode 100644 index 0000000000..de709f7e4c --- /dev/null +++ b/data/releases/5.3/5.3.6/changes.txt @@ -0,0 +1,228 @@ +- Upgraded bundled Sqlite3 to version 3.7.4. (Ilia) +- Upgraded bundled PCRE to version 8.11. (Ilia) + +- Zend Engine: + . Indirect reference to $this fails to resolve if direct $this is never used + in method. (Scott) + . Added options to debug backtrace functions. (Stas) + . Fixed bug numerous crashes due to setlocale (crash on error, pcre, mysql + etc.) on Windows in thread safe mode. (Pierre) + . Fixed Bug #53971 (isset() and empty() produce apparently spurious runtime + error). (Dmitry) + . Fixed Bug #53958 (Closures can't 'use' shared variables by value and by + reference). (Dmitry) + . Fixed Bug #53629 (memory leak inside highlight_string()). (Hannes, Ilia) + . Fixed Bug #51458 (Lack of error context with nested exceptions). (Stas) + . Fixed Bug #47143 (Throwing an exception in a destructor causes a fatal + error). (Stas) + . Fixed bug #43512 (same parameter name can be used multiple times in + method/function definition). (Felipe) + +- Core: + . Added ability to connect to HTTPS sites through proxy with basic + authentication using stream_context/http/header/Proxy-Authorization (Dmitry) + . Changed default value of ini directive serialize_precision from 100 to 17. + (Gustavo) + . Fixed bug #54055 (buffer overrun with high values for precision ini + setting). (Gustavo) + . Fixed bug #53959 (reflection data for fgetcsv out-of-date). (Richard) + . Fixed bug #53577 (Regression introduced in 5.3.4 in open_basedir with a + trailing forward slash). (lekensteyn at gmail dot com, Pierre) + . Fixed bug #53682 (Fix compile on the VAX). (Rasmus, jklos) + . Fixed bug #48484 (array_product() always returns 0 for an empty array). + (Ilia) + . Fixed bug #48607 (fwrite() doesn't check reply from ftp server before + exiting). (Ilia) + + +- Calendar extension: + . Fixed bug #53574 (Integer overflow in SdnToJulian, sometimes leading to + segfault). (Gustavo) + +- DOM extension: + . Implemented FR #39771 (Made DOMDocument::saveHTML accept an optional DOMNode + like DOMDocument::saveXML). (Gustavo) + +- DateTime extension: + . Fixed a bug in DateTime->modify() where absolute date/time statements had + no effect. (Derick) + . Fixed bug #53729 (DatePeriod fails to initialize recurrences on 64bit + big-endian systems). (Derick, rein@basefarm.no) + . Fixed bug #52808 (Segfault when specifying interval as two dates). (Stas) + . Fixed bug #52738 (Can't use new properties in class extended from + DateInterval). (Stas) + . Fixed bug #52290 (setDate, setISODate, setTime works wrong when DateTime + created from timestamp). (Stas) + . Fixed bug #52063 (DateTime constructor's second argument doesn't have a + null default value). (Gustavo, Stas) + +- Exif extension: + . Fixed bug #54002 (crash on crafted tag, reported by Luca Carettoni). + (Pierre) (CVE-2011-0708) + +- Filter extension: + . Fixed bug #53924 (FILTER_VALIDATE_URL doesn't validate port number). + (Ilia, Gustavo) + . Fixed bug #53150 (FILTER_FLAG_NO_RES_RANGE is missing some IP ranges). + (Ilia) + . Fixed bug #52209 (INPUT_ENV returns NULL for set variables (CLI)). (Ilia) + . Fixed bug #47435 (FILTER_FLAG_NO_RES_RANGE don't work with ipv6). + (Ilia, valli at icsurselva dot ch) + +- Fileinfo extension: + . Fixed bug #54016 (finfo_file() Cannot determine filetype in archives). + (Hannes) + +- Gettext + . Fixed bug #53837 (_() crashes on Windows when no LANG or LANGUAGE + environment variable are set). (Pierre) + +- IMAP extension: + . Implemented FR #53812 (get MIME headers of the part of the email). (Stas) + . Fixed bug #53377 (imap_mime_header_decode() doesn't ignore \t during long + MIME header unfolding). (Adam) + +- Intl extension: + . Fixed bug #53612 (Segmentation fault when using cloned several intl + objects). (Gustavo) + . Fixed bug #53512 (NumberFormatter::setSymbol crash on bogus $attr values). + (Felipe) + . Implemented clone functionality for number, date & message formatters. + (Stas). + +- JSON extension: + . Fixed bug #53963 (Ensure error_code is always set during some failed + decodings). (Scott) + +- mysqlnd + . Fixed problem with always returning 0 as num_rows for unbuffered sets. + (Andrey, Ulf) + +- MySQL Improved extension: + . Added 'db' and 'catalog' keys to the field fetching functions (FR #39847). + (Kalle) + . Fixed buggy counting of affected rows when using the text protocol. The + collected statistics were wrong when multi_query was used with mysqlnd + (Andrey) + . Fixed bug #53795 (Connect Error from MySqli (mysqlnd) when using SSL). + (Kalle) + . Fixed bug #53503 (mysqli::query returns false after successful LOAD DATA + query). (Kalle, Andrey) + . Fixed bug #53425 (mysqli_real_connect() ignores client flags when built to + call libmysql). (Kalle, tre-php-net at crushedhat dot com) + +- OpenSSL extension: + . Fixed stream_socket_enable_crypto() not honoring the socket timeout in + server mode. (Gustavo) + . Fixed bug #54060 (Memory leaks when openssl_encrypt). (Pierre) + . Fixed bug #54061 (Memory leaks when openssl_decrypt). (Pierre) + . Fixed bug #53592 (stream_socket_enable_crypto() busy-waits in client mode). + (Gustavo) + . Implemented FR #53447 (Cannot disable SessionTicket extension for servers + that do not support it) by adding a no_ticket SSL context option. (Adam, + Tony) + +- PDO MySQL driver: + . Fixed bug #53551 (PDOStatement execute segfaults for pdo_mysql driver). + (Johannes) + . Implemented FR #47802 (Support for setting character sets in DSN strings). + (Kalle) + +- PDO Oracle driver: + . Fixed bug #39199 (Cannot load Lob data with more than 4000 bytes on + ORACLE 10). (spatar at mail dot nnov dot ru) + +- PDO PostgreSQL driver: + . Fixed bug #53517 (segfault in pgsql_stmt_execute() when postgres is down). + (gyp at balabit dot hu) + +- Phar extension: + . Fixed bug #54247 (format-string vulnerability on Phar). (Felipe) + (CVE-2011-1153) + . Fixed bug #53541 (format string bug in ext/phar). + (crrodriguez at opensuse dot org, Ilia) + . Fixed bug #53898 (PHAR reports invalid error message, when the directory + does not exist). (Ilia) + +- PHP-FPM SAPI: + . Enforce security in the fastcgi protocol parsing. + (ef-lists at email dotde) + . Fixed bug #53777 (php-fpm log format now match php_error log format). (fat) + . Fixed bug #53527 (php-fpm --test doesn't set a valuable return value). (fat) + . Fixed bug #53434 (php-fpm slowlog now also logs the original request). (fat) + +- Readline extension: + . Fixed bug #53630 (Fixed parameter handling inside readline() function). + (jo at feuersee dot de, Ilia) + +- Reflection extension: + . Fixed bug #53915 (ReflectionClass::getConstant(s) emits fatal error on + constants with self::). (Gustavo) + +- Shmop extension: + . Fixed bug #54193 (Integer overflow in shmop_read()). (Felipe) + Reported by Jose Carlos NorteThe 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/5.3.7/changes.txt b/data/releases/5.3/5.3.7/changes.txt new file mode 100644 index 0000000000..ed01dbf6ff --- /dev/null +++ b/data/releases/5.3/5.3.7/changes.txt @@ -0,0 +1,273 @@ +- Upgraded bundled SQLite to version 3.7.7.1. (Scott) +- Upgraded bundled PCRE to version 8.12. (Scott) + +- Zend Engine: + . Fixed bug #55156 (ReflectionClass::getDocComment() returns comment even + though the class has none). (Felipe) + . Fixed bug #55007 (compiler fail after previous fail). (Felipe) + . Fixed bug #54910 (Crash when calling call_user_func with unknown function + name). (Dmitry) + . Fixed bug #54804 (__halt_compiler and imported namespaces). + (Pierrick, Felipe) + . Fixed bug #54624 (class_alias and type hint). (Felipe) + . Fixed bug #54585 (track_errors causes segfault). (Dmitry) + . Fixed bug #54423 (classes from dl()'ed extensions are not destroyed). + (Tony, Dmitry) + . Fixed bug #54372 (Crash accessing global object itself returned from its + __get() handle). (Dmitry) + . Fixed bug #54367 (Use of closure causes problem in ArrayAccess). (Dmitry) + . Fixed bug #54358 (Closure, use and reference). (Dmitry) + . Fixed bug #54262 (Crash when assigning value to a dimension in a non-array). + (Dmitry) + . Fixed bug #54039 (use() of static variables in lambda functions can break + staticness). (Dmitry) + +- Core + . Updated crypt_blowfish to 1.2. ((CVE-2011-2483) (Solar Designer) + . Removed warning when argument of is_a() or is_subclass_of() is not + a known class. (Stas) + . Fixed crash in error_log(). (Felipe) Reported by Mateusz Kocielski. + . Added PHP_MANDIR constant telling where the manpages were installed into, + and an --man-dir argument to php-config. (Hannes) + . Fixed a crash inside dtor for error handling. (Ilia) + . Fixed buffer overflow on overlog salt in crypt(). (Clément LECIGNE, Stas) + . Implemented FR #54459 (Range function accuracy). (Adam) + + . Fixed bug #55399 (parse_url() incorrectly treats ':' as a valid path). + (Ilia) + . Fixed bug #55339 (Segfault with allow_call_time_pass_reference = Off). + (Dmitry) + . Fixed bug #55295 [NEW]: popen_ex on windows, fixed possible heap overflow + (Pierre) + . Fixed bug #55258 (Windows Version Detecting Error). + ( xiaomao5 at live dot com, Pierre) + . Fixed bug #55187 (readlink returns weird characters when false result). + (Pierre) + . Fixed bug #55082 (var_export() doesn't escape properties properly). + (Gustavo) + . Fixed bug #55014 (Compile failure due to improper use of ctime_r()). (Ilia) + . Fixed bug #54939 (File path injection vulnerability in RFC1867 File upload + filename). (Felipe) Reported by Krzysztof Kotowicz. (CVE-2011-2202) + . Fixed bug #54935 php_win_err can lead to crash. (Pierre) + . Fixed bug #54924 (assert.* is not being reset upon request shutdown). (Ilia) + . Fixed bug #54895 (Fix compiling with older gcc version without need for + membar_producer macro). (mhei at heimpold dot de) + . Fixed bug #54866 (incorrect accounting for realpath_cache_size). + (Dustin Ward) + . Fixed bug #54723 (getimagesize() doesn't check the full ico signature). + (Scott) + . Fixed bug #54721 (Different Hashes on Windows, BSD and Linux on wrong Salt + size). (Pierre, os at irj dot ru) + . Fixed bug #54580 (get_browser() segmentation fault when browscap ini + directive is set through php_admin_value). (Gustavo) + . Fixed bug #54332 (Crash in zend_mm_check_ptr // Heap corruption). (Dmitry) + . Fixed bug #54305 (Crash in gc_remove_zval_from_buffer). (Dmitry) + . Fixed bug #54238 (use-after-free in substr_replace()). (Stas) + (CVE-2011-1148) + . Fixed bug #54204 (Can't set a value with a PATH section in php.ini). + (Pierre) + . Fixed bug #54180 (parse_url() incorrectly parses path when ? in fragment). + (tomas dot brastavicius at quantum dot lt, Pierrick) + . Fixed bug #54137 (file_get_contents POST request sends additional line + break). (maurice-php at mertinkat dot net, Ilia) + . Fixed bug #53848 (fgetcsv() ignores spaces at beginnings of fields). (Ilia) + . Alternative fix for bug #52550, as applied to the round() function (signed + overflow), as the old fix impacted the algorithm for numbers with magnitude + smaller than 0. (Gustavo) + . Fixed bug #53727 (Inconsistent behavior of is_subclass_of with interfaces) + (Ralph Schindler, Dmitry) + . Fixed bug #52935 (call exit in user_error_handler cause stream relate + core). (Gustavo) + . Fixed bug #51997 (SEEK_CUR with 0 value, returns a warning). (Ilia) + . Fixed bug #50816 (Using class constants in array definition fails). + (Pierrick, Dmitry) + . Fixed bug #50363 (Invalid parsing in convert.quoted-printable-decode + filter). (slusarz at curecanti dot org) + . Fixed bug #48465 (sys_get_temp_dir() possibly inconsistent when using + TMPDIR on Windows). (Pierre) + +- Apache2 Handler SAPI: + . Fixed bug #54529 (SAPI crashes on apache_config.c:197). + (hebergement at riastudio dot fr) + +- CLI SAPI: + . Fixed bug #52496 (Zero exit code on option parsing failure). (Ilia) + +- cURL extension: + . Added ini option curl.cainfo (support for custom cert db). (Pierre) + . Added CURLINFO_REDIRECT_URL support. (Daniel Stenberg, Pierre) + . Added support for CURLOPT_MAX_RECV_SPEED_LARGE and + CURLOPT_MAX_SEND_SPEED_LARGE. FR #51815. (Pierrick) + +- DateTime extension: + . Fixed bug where the DateTime object got changed while using date_diff(). + (Derick) + . Fixed bug #54340 (DateTime::add() method bug). (Adam) + . Fixed bug #54316 (DateTime::createFromFormat does not handle trailing '|' + correctly). (Adam) + . Fixed bug #54283 (new DatePeriod(NULL) causes crash). (Felipe) + . Fixed bug #51819 (Case discrepancy in timezone names cause Uncaught + exception and fatal error). (Hannes) + +- DBA extension: + . Supress warning on non-existent file open with Berkeley DB 5.2. (Chris Jones) + . Fixed bug #54242 (dba_insert returns true if key already exists). (Felipe) + +- Exif extesion: + . Fixed bug #54121 (error message format string typo). (Ilia) + +- Fileinfo extension: + . Fixed bug #54934 (Unresolved symbol strtoull in HP-UX 11.11). (Felipe) + +- Filter extension: + . Added 3rd parameter to filter_var_array() and filter_input_array() + functions that allows disabling addition of empty elements. (Ilia) + . Fixed bug #53037 (FILTER_FLAG_EMPTY_STRING_NULL is not implemented). (Ilia) + +- Interbase extension: + . Fixed bug #54269 (Short exception message buffer causes crash). (Felipe) + +- intl extension: + . Implemented FR #54561 (Expose ICU version info). (David Zuelke, Ilia) + . Implemented FR #54540 (Allow loading of arbitrary resource bundles when + fallback is disabled). (David Zuelke, Stas) + +- Imap extension: + . Fixed bug #55313 (Number of retries not set when params specified). + (kevin at kevinlocke dot name) + +- json extension: + . Fixed bug #54484 (Empty string in json_decode doesn't reset + json_last_error()). (Ilia) + +- LDAP extension: + . Fixed bug #53339 (Fails to build when compilng with gcc 4.5 and DSO + libraries). (Clint Byrum, Raphael) + +- libxml extension: + . Fixed bug #54601 (Removing the doctype node segfaults). (Hannes) + . Fixed bug #54440 (libxml extension ignores default context). (Gustavo) + +- mbstring extension: + . Fixed bug #54494 (mb_substr() mishandles UTF-32LE and UCS-2LE). (Gustavo) + +- MCrypt extension: + . Change E_ERROR to E_WARNING in mcrypt_create_iv when not enough data + has been fetched (Windows). (Pierre) + . Fixed bug #55169 (mcrypt_create_iv always fails to gather sufficient random + data on Windows). (Pierre) + +- mysqlnd + . Fixed crash when using more than 28,000 bound parameters. Workaround is to + set mysqlnd.net_cmd_buffer_size to at least 9000. (Andrey) + . Fixed bug #54674 mysqlnd valid_sjis_(head|tail) is using invalid operator + and range). (nihen at megabbs dot com, Andrey) + +- MySQLi extension: + . Fixed bug #55283 (SSL options set by mysqli_ssl_set ignored for MySQLi + persistent connections). (Andrey) + . Fixed Bug #54221 (mysqli::get_warnings segfault when used in multi queries). + (Andrey) + +- OpenSSL extension: + . openssl_encrypt()/openssl_decrypt() truncated keys of variable length + ciphers to the OpenSSL default for the algorithm. (Scott) + . On blocking SSL sockets respect the timeout option where possible. + (Scott) + . Fixed bug #54992 (Stream not closed and error not returned when SSL + CN_match fails). (Gustavo, laird_ngrps at dodo dot com dot au) + +- Oracle Database extension (OCI8): + . Added oci_client_version() returning the runtime Oracle client library + version. (Chris Jones) + +. PCRE extension: + . Increased the backtrack limit from 100000 to 1000000 (Rasmus) + +- PDO extension: + . Fixed bug #54929 (Parse error with single quote in sql comment). (Felipe) + . Fixed bug #52104 (bindColumn creates Warning regardless of ATTR_ERRMODE + settings). (Ilia) + +- PDO DBlib driver: + . Fixed bug #54329 (MSSql extension memory leak). + (dotslashpok at gmail dot com) + . Fixed bug #54167 (PDO_DBLIB returns null on SQLUNIQUE field). + (mjh at hodginsmedia dot com, Felipe) + +- PDO ODBC driver: + . Fixed data type usage in 64bit. (leocsilva at gmail dot com) + +- PDO MySQL driver: + . Fixed bug #54644 (wrong pathes in php_pdo_mysql_int.h). (Tony, Johannes) + . Fixed bug #53782 (foreach throws irrelevant exception). (Johannes, Andrey) + . Implemented FR #48587 (MySQL PDO driver doesn't support SSL connections). + (Rob) + +- PDO PostgreSQL driver: + . Fixed bug #54318 (Non-portable grep option used in PDO pgsql + configuration). (bwalton at artsci dot utoronto dot ca) + +- PDO Oracle driver: + . Fixed bug #44989 (64bit Oracle RPMs still not supported by pdo-oci). + (jbnance at tresgeek dot net) + +- Phar extension: + . Fixed bug #54395 (Phar::mount() crashes when calling with wrong parameters). + (Felipe) + +- PHP-FPM SAPI: + . Implemented FR #54499 (FPM ping and status_path should handle HEAD request). (fat) + . Implemented FR #54172 (Overriding the pid file location of php-fpm). (fat) + . Fixed missing Expires and Cache-Control headers for ping and status pages. + (fat) + . Fixed memory leak. (fat) Reported and fixed by Giovanni Giacobbi. + . Fixed wrong value of log_level when invoking fpm with -tt. (fat) + . Added xml format to the status page. (fat) + . Removed timestamp in logs written by children processes. (fat) + . Fixed exit at FPM startup on fpm_resources_prepare() errors. (fat) + . Added master rlimit_files and rlimit_core in the global configuration + settings. (fat) + . Removed pid in debug logs written by chrildren processes. (fat) + . Added custom access log (also added per request %CPU and memory + mesurement). (fat) + . Added a real scoreboard and several improvements to the status page. (fat) + +- Reflection extension: + . Fixed bug #54347 (reflection_extension does not lowercase module function + name). (Felipe, laruence at yahoo dot com dot cn) + +- SOAP extension: + . Fixed bug #55323 (SoapClient segmentation fault when XSD_TYPEKIND_EXTENSION + contains itself). (Dmitry) + . Fixed bug #54312 (soap_version logic bug). (tom at samplonius dot org) + +- Sockets extension: + . Fixed stack buffer overflow in socket_connect(). (CVE-2011-1938) + Found by Mateusz Kocielski, Marek Kroemeke and Filip Palian. (Felipe) + . Changed socket_set_block() and socket_set_nonblock() so they emit warnings + on error. (Gustavo) + . Fixed bug #51958 (socket_accept() fails on IPv6 server sockets). (Gustavo) + +- SPL extension: + . Fixed bug #54971 (Wrong result when using iterator_to_array with use_keys + on true). (Pierrick) + . Fixed bug #54970 (SplFixedArray::setSize() isn't resizing). (Felipe) + . Fixed bug #54609 (Certain implementation(s) of SplFixedArray cause hard + crash). (Felipe) + . Fixed bug #54384 (Dual iterators, GlobIterator, SplFileObject and + SplTempFileObject crash when user-space classes don't call the paren + constructor). (Gustavo) + . Fixed bug #54292 (Wrong parameter causes crash in + SplFileObject::__construct()). (Felipe) + . Fixed bug #54291 (Crash iterating DirectoryIterator for dir name starting + with \0). (Gustavo) + . Fixed bug #54281 (Crash in non-initialized RecursiveIteratorIterator). + (Felipe) + +- Streams: + . Fixed bug #54946 (stream_get_contents infinite loop). (Hannes) + . Fixed bug #54623 (Segfault when writing to a persistent socket after + closing a copy of the socket). (Gustavo) + . Fixed bug #54681 (addGlob() crashes on invalid flags). (Felipe) + diff --git a/data/releases/5.3/5.3.7/release.json b/data/releases/5.3/5.3.7/release.json new file mode 100644 index 0000000000..8208864abf --- /dev/null +++ b/data/releases/5.3/5.3.7/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.7", + "date": "18 August 2011", + "tags": [], + "source": [ + { + "filename": "php-5.3.7.tar.bz2", + "name": "PHP 5.3.7 (tar.bz2)", + "md5": "2d47d003c96de4e88863ff38da61af33" + }, + { + "filename": "php-5.3.7.tar.gz", + "name": "PHP 5.3.7 (tar.gz)", + "md5": "1ec460bf3a40cea4079ee80076558d51" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.8/announcement.html b/data/releases/5.3/5.3.8/announcement.html new file mode 100644 index 0000000000..fc695a2647 --- /dev/null +++ b/data/releases/5.3/5.3.8/announcement.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/5.3.8/changes.txt b/data/releases/5.3/5.3.8/changes.txt new file mode 100644 index 0000000000..f3f8d4e769 --- /dev/null +++ b/data/releases/5.3/5.3.8/changes.txt @@ -0,0 +1,7 @@ +- Core: + . Fixed bug #55439 (crypt() returns only the salt for MD5). (Stas) + +- OpenSSL: + . Reverted a change in timeout handling restoring PHP 5.3.6 behavior, + as the new behavior caused mysqlnd SSL connections to hang (#55283). + (Pierre, Andrey, Johannes) diff --git a/data/releases/5.3/5.3.8/release.json b/data/releases/5.3/5.3.8/release.json new file mode 100644 index 0000000000..e797cc5444 --- /dev/null +++ b/data/releases/5.3/5.3.8/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.8", + "date": "23 August 2011", + "tags": [], + "source": [ + { + "filename": "php-5.3.8.tar.bz2", + "name": "PHP 5.3.8 (tar.bz2)", + "md5": "704cd414a0565d905e1074ffdc1fadfb" + }, + { + "filename": "php-5.3.8.tar.gz", + "name": "PHP 5.3.8 (tar.gz)", + "md5": "f4ce40d5d156ca66a996dbb8a0e7666a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.9/announcement.html b/data/releases/5.3/5.3.9/announcement.html new file mode 100644 index 0000000000..31fac80769 --- /dev/null +++ b/data/releases/5.3/5.3.9/announcement.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.3/5.3.9/changes.txt b/data/releases/5.3/5.3.9/changes.txt new file mode 100644 index 0000000000..4712c92352 --- /dev/null +++ b/data/releases/5.3/5.3.9/changes.txt @@ -0,0 +1,251 @@ +- Core: + . Added max_input_vars directive to prevent attacks based on hash collisions + (CVE-2011-4885) (Dmitry). + . Fixed bug #60205 (possible integer overflow in content_length). (Laruence) + . Fixed bug #60139 (Anonymous functions create cycles not detected by the + GC). (Dmitry) + . Fixed bug #60138 (GC crash with referenced array in RecursiveArrayIterator) + (Dmitry). + . Fixed bug #60120 (proc_open's streams may hang with stdin/out/err when + the data exceeds or is equal to 2048 bytes). (Pierre, Pascal Borreli) + . Fixed bug #60099 (__halt_compiler() works in braced namespaces). (Felipe) + . Fixed bug #60019 (Function time_nanosleep() is undefined on OS X). (Ilia) + . Fixed bug #55874 (GCC does not provide __sync_fetch_and_add on some archs). + (klightspeed at netspace dot net dot au) + . Fixed bug #55798 (serialize followed by unserialize with numeric object + prop. gives integer prop). (Gustavo) + . Fixed bug #55749 (TOCTOU issue in getenv() on Windows builds). (Pierre) + . Fixed bug #55707 (undefined reference to `__sync_fetch_and_add_4' on Linux + parisc). (Felipe) + . Fixed bug #55674 (fgetcsv & str_getcsv skip empty fields in some + tab-separated records). (Laruence) + . Fixed bug #55649 (Undefined function Bug()). (Laruence) + . Fixed bug #55622 (memory corruption in parse_ini_string). (Pierre) + . Fixed bug #55576 (Cannot conditionally move uploaded file without race + condition). (Gustavo) + . Fixed bug #55510: $_FILES 'name' missing first character after upload. + (Arpad) + . Fixed bug #55509 (segfault on x86_64 using more than 2G memory). (Laruence) + . Fixed bug #55504 (Content-Type header is not parsed correctly on + HTTP POST request). (Hannes) + . Fixed bug #55475 (is_a() triggers autoloader, new optional 3rd argument to + is_a and is_subclass_of). (alan_k) + . Fixed bug #52461 (Incomplete doctype and missing xmlns). + (virsacer at web dot de, Pierre) + . Fixed bug #55366 (keys lost when using substr_replace an array). (Arpad) + . Fixed bug #55273 (base64_decode() with strict rejects whitespace after + pad). (Ilia) + . Fixed bug #52624 (tempnam() by-pass open_basedir with nonnexistent + directory). (Felipe) + . Fixed bug #50982 (incorrect assumption of PAGE_SIZE size). (Dmitry) + . Fixed invalid free in call_user_method() function. (Felipe) + . Fixed bug #43200 (Interface implementation / inheritence not possible in + abstract classes). (Felipe) + + +- BCmath: + . Fixed bug #60377 (bcscale related crashes on 64bits platforms). (shm) + +- Calendar: + . Fixed bug #55797 (Integer overflow in SdnToGregorian leads to segfault (in + optimized builds). (Gustavo) + +- cURL: + . Fixed bug #60439 (curl_copy_handle segfault when used with + CURLOPT_PROGRESSFUNCTION). (Pierrick) + . Fixed bug #54798 (Segfault when CURLOPT_STDERR file pointer is closed + before calling curl_exec). (Hannes) + . Fixed issues were curl_copy_handle() would sometimes lose copied + preferences. (Hannes) + +- DateTime: + . Fixed bug #60373 (Startup errors with log_errors on cause segfault). + (Derick) + . Fixed bug #60236 (TLA timezone dates are not converted properly from + timestamp). (Derick) + . Fixed bug #55253 (DateTime::add() and sub() result -1 hour on objects with + time zone type 2). (Derick) + . Fixed bug #54851 (DateTime::createFromFormat() doesn't interpret "D"). + (Derick) + . Fixed bug #53502 (strtotime with timezone memory leak). (Derick) + . Fixed bug #52062 (large timestamps with DateTime::getTimestamp and + DateTime::setTimestamp). (Derick) + . Fixed bug #51994 (date_parse_from_format is parsing invalid date using 'yz' + format). (Derick) + . Fixed bug #52113 (Seg fault while creating (by unserialization) + DatePeriod). (Derick) + . Fixed bug #48476 (cloning extended DateTime class without calling + parent::__constr crashed PHP). (Hannes) + +- EXIF: + . Fixed bug #60150 (Integer overflow during the parsing of invalid exif + header). (CVE-2011-4566) (Stas, flolechaud at gmail dot com) + +- Fileinfo: + . Fixed bug #60094 (C++ comment fails in c89). (Laruence) + . Fixed possible memory leak in finfo_open(). (Felipe) + . Fixed memory leak when calling the Finfo constructor twice. (Felipe) + +- Filter: + . Fixed Bug #55478 (FILTER_VALIDATE_EMAIL fails with internationalized + domain name addresses containing >1 -). (Ilia) + +- FTP: + . Fixed bug #60183 (out of sync ftp responses). (bram at ebskamp dot me, + rasmus) + +- Gd: + . Fixed bug #60160 (imagefill() doesn't work correctly + for small images). (Florian) + +- Intl: + . Fixed bug #61487 (Incorrent bounds checking in grapheme_strpos). + (Stas) + . Fixed bug #60192 (SegFault when Collator not constructed + properly). (Florian) + . Fixed memory leak in several Intl locale functions. (Felipe) + +- Json: + . Fixed bug #55543 (json_encode() with JSON_NUMERIC_CHECK fails on objects + with numeric string properties). (Ilia, dchurch at sciencelogic dot com) + +- Mbstring: + . Fixed possible crash in mb_ereg_search_init() using empty pattern. (Felipe) + +- MS SQL: + . Fixed bug #60267 (Compile failure with freetds 0.91). (Felipe) + +- MySQL: + . Fixed bug #55550 (mysql.trace_mode miscounts result sets). (Johannes) + +- MySQLi extension: + . Fixed bug #55859 (mysqli->stat property access gives error). (Andrey) + . Fixed bug #55582 (mysqli_num_rows() returns always 0 for unbuffered, when + mysqlnd is used). (Andrey) + . Fixed bug #55703 (PHP crash when calling mysqli_fetch_fields). + (eran at zend dot com, Laruence) + +- mysqlnd + . Fixed bug #55609 (mysqlnd cannot be built shared). (Johannes) + . Fixed bug #55067 (MySQL doesn't support compression - wrong config option). + (Andrey) + +- NSAPI SAPI: + . Don't set $_SERVER['HTTPS'] on unsecure connection (bug #55403). (Uwe + Schindler) + +- OpenSSL: + . Fixed bug #60279 (Fixed NULL pointer dereference in + stream_socket_enable_crypto, case when ssl_handle of session_stream is not + initialized.) (shm) + . Fix segfault with older versions of OpenSSL. (Scott) + +- Oracle Database extension (OCI8): + . Fixed bug #59985 (show normal warning text for OCI_NO_DATA). + (Chris Jones) + . Increased maximum Oracle error message buffer length for new 11.2.0.3 size. + (Chris Jones) + . Improve internal initalization failure error messages. (Chris Jones) + +- PDO + . Fixed bug #55776 (PDORow to session bug). (Johannes) + +- PDO Firebird: + . Fixed bug #48877 ("bindValue" and "bindParam" do not work for PDO Firebird). + (Mariuz) + . Fixed bug #47415 (PDO_Firebird segfaults when passing lowercased column name to bindColumn). + . Fixed bug #53280 (PDO_Firebird segfaults if query column count less than param count). + (Mariuz) + +- PDO MySQL driver: + . Fixed bug #60155 (pdo_mysql.default_socket ignored). (Johannes) + . Fixed bug #55870 (PDO ignores all SSL parameters when used with mysql + native driver). (Pierre) + . Fixed bug #54158 (MYSQLND+PDO MySQL requires #define + MYSQL_OPT_LOCAL_INFILE). (Andrey) + +- PDO OCI driver: + . Fixed bug #55768 (PDO_OCI can't resume Oracle session after it's been + killed). (mikhail dot v dot gavrilov at gmail dot com, Chris Jones, Tony) + +- Phar: + . Fixed bug #60261 (NULL pointer dereference in phar). (Felipe) + . Fixed bug #60164 (Stubs of a specific length break phar_open_from_fp + scanning for __HALT_COMPILER). (Ralph Schindler) + . Fixed bug #53872 (internal corruption of phar). (Hannes) + . Fixed bug #52013 (Unable to decompress files in a compressed phar). (Hannes) + +- PHP-FPM SAPI: + . Dropped restriction of not setting the same value multiple times, the last + one holds. (giovanni at giacobbi dot net, fat) + . Added .phar to default authorized extensions. (fat) + . Fixed bug #60659 (FPM does not clear auth_user on request accept). + (bonbons at linux-vserver dot org) + . Fixed bug #60629 (memory corruption when web server closed the fcgi fd). + (fat) + . Enhance error log when the primary script can't be open. FR #60199. (fat) + . Fixed bug #60179 (php_flag and php_value does not work properly). (fat) + . Fixed bug #55577 (status.html does not install). (fat) + . Fixed bug #55533 (The -d parameter doesn't work). (fat) + . Fixed bug #55526 (Heartbeat causes a lot of unnecessary events). (fat) + . Fixed bug #55486 (status show BIG processes number). (fat) + . Enhanced security by limiting access to user defined extensions. + FR #55181. (fat) + . Added process.max to control the number of process FPM can fork. FR #55166. + (fat) + . Implemented FR #54577 (Enhanced status page with full status and details + about each processes. Also provide a web page (status.html) for + real-time FPM status. (fat) + . Lowered default value for Process Manager. FR #54098. (fat) + . Implemented FR #52569 (Add the "ondemand" process-manager + to allow zero children). (fat) + . Added partial syslog support (on error_log only). FR #52052. (fat) + +- Postgres: + . Fixed bug #60244 (pg_fetch_* functions do not validate that row param + is >0). (Ilia) + +- Reflection: + . Fixed bug #60367 (Reflection and Late Static Binding). (Laruence) + +- Session: + . Fixed bug #55267 (session_regenerate_id fails after header sent). (Hannes) + +- SimpleXML: + . Reverted the SimpleXML->query() behaviour to returning empty arrays + instead of false when no nodes are found as it was since 5.3.3 + (bug #48601). (chregu, rrichards) + +- SOAP + . Fixed bug #54911 (Access to a undefined member in inherit SoapClient may + cause Segmentation Fault). (Dmitry) + . Fixed bug #48216 (PHP Fatal error: SOAP-ERROR: Parsing WSDL: + Extra content at the end of the doc, when server uses chunked transfer + encoding with spaces after chunk size). (Dmitry) + . Fixed bug #44686 (SOAP-ERROR: Parsing WSDL with references). (Dmitry) + +- Sockets: + . Fixed bug #60048 (sa_len a #define on IRIX). (china at thewrittenword dot + com) + +- SPL: + . Fixed bug #60082 (Crash in ArrayObject() when using recursive references). + (Tony) + . Fixed bug #55807 (Wrong value for splFileObject::SKIP_EMPTY). + (jgotti at modedemploi dot fr, Hannes) + . Fixed bug #54304 (RegexIterator::accept() doesn't work with scalar values). + (Hannes) + +- Streams: + . Fixed bug #60455 (stream_get_line misbehaves if EOF is not detected together + with the last read). (Gustavo) + +- Tidy: + . Fixed bug #54682 (Tidy::diagnose() NULL pointer dereference). + (Maksymilian Arciemowicz, Felipe) + +- XSL: + . Added xsl.security_prefs ini option to define forbidden operations within + XSLT stylesheets, default is not to enable write operations. This option + won't be in 5.4, since there's a new method. Fixes Bug #54446. (Chregu, + Nicolas Gregoire) diff --git a/data/releases/5.3/5.3.9/release.json b/data/releases/5.3/5.3.9/release.json new file mode 100644 index 0000000000..513b1de329 --- /dev/null +++ b/data/releases/5.3/5.3.9/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.9", + "date": "10 January 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.9.tar.bz2", + "name": "PHP 5.3.9 (tar.bz2)", + "md5": "dd3288ed5c08cd61ac5bf619cb357521" + }, + { + "filename": "php-5.3.9.tar.gz", + "name": "PHP 5.3.9 (tar.gz)", + "md5": "c79e374c61423beb64a69da1eb5526b7" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.0/announcement.html b/data/releases/5.4/5.4.0/announcement.html new file mode 100644 index 0000000000..afe82b6d98 --- /dev/null +++ b/data/releases/5.4/5.4.0/announcement.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/5.4.0/changes.txt b/data/releases/5.4/5.4.0/changes.txt new file mode 100644 index 0000000000..ffd8b4fe29 --- /dev/null +++ b/data/releases/5.4/5.4.0/changes.txt @@ -0,0 +1,429 @@ +- Installation: + . autoconf 2.59+ is now supported (and required) for generating the + configure script with ./buildconf. Autoconf 2.60+ is desirable + otherwise the configure help order may be incorrect. (Rasmus, Chris Jones) + +- Removed legacy features: + . break/continue $var syntax. (Dmitry) + . Safe mode and all related php.ini options. (Kalle) + . register_globals and register_long_arrays php.ini options. (Kalle) + . import_request_variables(). (Kalle) + . allow_call_time_pass_reference. (Pierrick) + . define_syslog_variables php.ini option and its associated function. (Kalle) + . highlight.bg php.ini option. (Kalle) + . safe_mode, safe_mode_gid, safe_mode_include_dir, + safe_mode_exec_dir, safe_mode_allowed_env_vars and + safe_mode_protected_env_vars php.ini options. + . zend.ze1_compatibility_mode php.ini option. + . Session bug compatibility mode (session.bug_compat_42 and + session.bug_compat_warn php.ini options). (Kalle) + . session_is_registered(), session_register() and session_unregister() + functions. (Kalle) + . y2k_compliance php.ini option. (Kalle) + . magic_quotes_gpc, magic_quotes_runtime and magic_quotes_sybase + php.ini options. get_magic_quotes_gpc, get_magic_quotes_runtime are kept + but always return false, set_magic_quotes_runtime raises an + E_CORE_ERROR. (Pierrick, Pierre) + . Removed support for putenv("TZ=..") for setting the timezone. (Derick) + . Removed the timezone guessing algorithm in case the timezone isn't set with + date.timezone or date_default_timezone_set(). Instead of a guessed + timezone, "UTC" is now used instead. (Derick) + +- Moved extensions to PECL: + . ext/sqlite. (Note: the ext/sqlite3 and ext/pdo_sqlite extensions are + not affected) (Johannes) + +- General improvements: + . Added short array syntax support ([1,2,3]), see UPGRADING guide for full + details. (rsky0711 at gmail . com, sebastian.deutsch at 9elements . com, + Pierre) + . Added binary number format (0b001010). (Jonah dot Harris at gmail dot com) + . Added support for Class::{expr}() syntax (Pierrick) + . Added multibyte support by default. Previously PHP had to be compiled + with --enable-zend-multibyte. Now it can be enabled or disabled through + the zend.multibyte directive in php.ini. (Dmitry) + . Removed compile time dependency from ext/mbstring (Dmitry) + . Added support for Traits. (Stefan, with fixes by Dmitry and Laruence) + . Added closure $this support back. (Stas) + . Added array dereferencing support. (Felipe) + . Added callable typehint. (Hannes) + . Added indirect method call through array. FR #47160. (Felipe) + . Added DTrace support. (David Soria Parra) + . Added class member access on instantiation (e.g. (new foo)->bar()) support. + (Felipe) + . = is now always available regardless of the short_open_tag setting. (Rasmus) + . Implemented Zend Signal Handling (configurable option --enable-zend-signals, + off by default). (Lucas Nealan, Arnaud Le Blanc, Brian Shire, Ilia) + . Improved output layer, see README.NEW-OUTPUT-API for internals. (Mike) + . Improved UNIX build system to allow building multiple PHP binary SAPIs and + one SAPI module the same time. FR #53271, FR #52419. (Jani) + . Implemented closure rebinding as parameter to bindTo. (Gustavo Lopes) + . Improved the warning message of incompatible arguments. (Laruence) + . Improved ternary operator performance when returning arrays. (Arnaud, Dmitry) + . Changed error handlers to only generate docref links when the docref_root + php.ini setting is not empty. (Derick) + . Changed silent conversion of array to string to produce a notice. (Patrick) + . Changed default encoding from ISO-8859-1 to UTF-8 when not specified in + htmlspecialchars and htmlentities. (Rasmus) + . Changed casting of null/''/false into an Object when adding a property + from E_STRICT into a warning. (Scott) + . Changed E_ALL to include E_STRICT. (Stas) + . Disabled Windows CRT warning by default, can be enabled again using the + php.ini directive windows_show_crt_warnings. (Pierre) + . Fixed bug #55378: Binary number literal returns float number though its + value is small enough. (Derick) + +- Improved Zend Engine memory usage: (Dmitry) + . Improved parse error messages. (Felipe) + . Replaced zend_function.pass_rest_by_reference by + ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags. + . Replaced zend_function.return_reference by ZEND_ACC_RETURN_REFERENCE + in zend_function.fn_flags. + . Removed zend_arg_info.required_num_args as it was only needed for internal + functions. Now the first arg_info for internal functions (which has special + meaning) is represented by the zend_internal_function_info structure. + . Moved zend_op_array.size, size_var, size_literal, current_brk_cont, + backpatch_count into CG(context) as they are used only during compilation. + . Moved zend_op_array.start_op into EG(start_op) as it's used only for + 'interactive' execution of a single top-level op-array. + . Replaced zend_op_array.done_pass_two by ZEND_ACC_DONE_PASS_TWO in + zend_op_array.fn_flags. + . op_array.vars array is trimmed (reallocated) during pass_two. + . Replaced zend_class_entry.constants_updated by ZEND_ACC_CONSTANTS_UPDATED + in zend_class_entry.ce_flags. + . Reduced the size of zend_class_entry by sharing the same memory space + by different information for internal and user classes. + See zend_class_entry.info union. + . Reduced size of temp_variable. + +- Improved Zend Engine - performance tweaks and optimizations: (Dmitry) + . Inlined most probable code-paths for arithmetic operations directly into + executor. + . Eliminated unnecessary iterations during request startup/shutdown. + . Changed $GLOBALS into a JIT autoglobal, so it's initialized only if used. + (this may affect opcode caches!) + . Improved performance of @ (silence) operator. + . Simplified string offset reading. Given $str="abc" then $str[1][0] is now + a legal construct. + . Added caches to eliminate repeatable run-time bindings of functions, + classes, constants, methods and properties. + . Added concept of interned strings. All strings constants known at compile + time are allocated in a single copy and never changed. + . ZEND_RECV now always has IS_CV as its result. + . ZEND_CATCH now has to be used only with constant class names. + . ZEND_FETCH_DIM_? may fetch array and dimension operands in different order. + . Simplified ZEND_FETCH_*_R operations. They can't be used with the + EXT_TYPE_UNUSED flag any more. This is a very rare and useless case. + ZEND_FREE might be required after them instead. + . Split ZEND_RETURN into two new instructions ZEND_RETURN and + ZEND_RETURN_BY_REF. + . Optimized access to global constants using values with pre-calculated + hash_values from the literals table. + . Optimized access to static properties using executor specialization. + A constant class name may be used as a direct operand of ZEND_FETCH_* + instruction without previous ZEND_FETCH_CLASS. + . zend_stack and zend_ptr_stack allocation is delayed until actual usage. + +- Other improvements to Zend Engine: + . Added an optimization which saves memory and emalloc/efree calls for empty + HashTables. (Stas, Dmitry) + . Added ability to reset user opcode handlers (Yoram). + . Changed the structure of op_array.opcodes. The constant values are moved from + opcode operands into a separate literal table. (Dmitry) + . Fixed (disabled) inline-caching for ZEND_OVERLOADED_FUNCTION methods. + (Dmitry) + +- Improved core functions: + . Enforce an extended class' __construct arguments to match the + abstract constructor in the base class. + . Disallow reusing superglobal names as parameter names. + . Added optional argument to debug_backtrace() and debug_print_backtrace() + to limit the amount of stack frames returned. (Sebastian, Patrick) + . Added hex2bin() function. (Scott) + . number_format() no longer truncates multibyte decimal points and thousand + separators to the first byte. FR #53457. (Adam) + . Added support for object references in recursive serialize() calls. + FR #36424. (Mike) + . Added support for SORT_NATURAL and SORT_FLAG_CASE in array + sort functions (sort, rsort, ksort, krsort, asort, arsort and + array_multisort). FR#55158 (Arpad) + . Added stream metadata API support and stream_metadata() stream class + handler. (Stas) + . User wrappers can now define a stream_truncate() method that responds + to truncation, e.g. through ftruncate(). FR #53888. (Gustavo) + . Improved unserialize() performance. + (galaxy dot mipt at gmail dot com, Kalle) + . Changed array_combine() to return empty array instead of FALSE when both + parameter arrays are empty. FR #34857. (joel.perras@gmail.com) + . Fixed bug #61095 (Incorect lexing of 0x00*+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/5.4.1/changes.txt b/data/releases/5.4/5.4.1/changes.txt new file mode 100644 index 0000000000..a5a8b86011 --- /dev/null +++ b/data/releases/5.4/5.4.1/changes.txt @@ -0,0 +1,131 @@ +- CLI Server: + . Fixed bug #61461 (missing checks around malloc() calls). (Ilia) + . Implemented FR #60850 (Built in web server does not set + $_SERVER['SCRIPT_FILENAME'] when using router). (Laruence) + . "Connection: close" instead of "Connection: closed" (Gustavo) + +- Core: + . Fixed crash in ZTS using same class in many threads. (Johannes) + . Fixed bug #61374 (html_entity_decode tries to decode code points that don't + exist in ISO-8859-1). (Gustavo) + . Fixed bug #61273 (call_user_func_array with more than 16333 arguments + leaks / crashes). (Laruence) + . Fixed bug #61225 (Incorrect lexing of 0b00*+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/5.4.10/changes.txt b/data/releases/5.4/5.4.10/changes.txt new file mode 100644 index 0000000000..10e02a26f6 --- /dev/null +++ b/data/releases/5.4/5.4.10/changes.txt @@ -0,0 +1,60 @@ +- Core: + . Fixed bug #63726 (Memleak with static properties and internal/user + classes). (Laruence) + . Fixed bug #63635 (Segfault in gc_collect_cycles). (Dmitry) + . Fixed bug #63512 (parse_ini_file() with INI_SCANNER_RAW removes quotes + from value). (Pierrick) + . Fixed bug #63468 (wrong called method as callback with inheritance). + (Laruence) + . Fixed bug #63451 (config.guess file does not have AIX 7 defined, + shared objects are not created). (kemcline at au1 dot ibm dot com) + . Fixed bug #61557 (Crasher in tt-rss backend.php). + (i dot am dot jack dot mail at gmail dot com) + . Fixed bug #61272 (ob_start callback gets passed empty string). + (Mike, casper at langemeijer dot eu) + +- Date: + . Fixed bug #63666 (Poor date() performance). (Paul Taulborg). + . Fixed bug #63435 (Datetime::format('u') sometimes wrong by 1 microsecond). + (Remi) + +- Imap: + . Fixed bug #63126 (DISABLE_AUTHENTICATOR ignores array). (Remi) + +- Json: + . Fixed bug #63588 (use php_next_utf8_char and remove duplicate + implementation). (Remi) + +- MySQLi: + . Fixed bug #63361 (missing header). (Remi) + +- MySQLnd: + . Fixed bug #63398 (Segfault when polling closed link). (Laruence) + +- Fileinfo: + . Fixed bug #63590 (Different results in TS and NTS under Windows). + (Anatoliy) + +- FPM: + . Fixed bug #63581 Possible null dereference and buffer overflow (Remi) + +- Pdo_sqlite: + . Fixed Bug #63149 getColumnMeta should return the table name + when system SQLite used. (Remi) + +- Apache2 Handler SAPI: + . Enabled Apache 2.4 configure option for Windows (Pierre, Anatoliy) + +- Reflection: + . Fixed Bug #63614 (Fatal error on Reflection). (Laruence) + +- SOAP + . Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests). + (John Jawed, Dmitry) + +- Sockets + . Fixed bug #49341 (Add SO_REUSEPORT support for socket_set_option()). + (Igor Wiedler, Lars) + +- SPL + . Fixed bug #63680 (Memleak in splfixedarray with cycle reference). (Laruence) diff --git a/data/releases/5.4/5.4.10/release.json b/data/releases/5.4/5.4.10/release.json new file mode 100644 index 0000000000..bec50ec30d --- /dev/null +++ b/data/releases/5.4/5.4.10/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.10", + "date": "20 Dec 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.10.tar.bz2", + "name": "PHP 5.4.10 (tar.bz2)", + "md5": "cb716b657a30570b9b468b9e7bc551a1" + }, + { + "filename": "php-5.4.10.tar.gz", + "name": "PHP 5.4.10 (tar.gz)", + "md5": "1e7fbe418658d5433bd315030584c45c" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.10 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.11/announcement.html b/data/releases/5.4/5.4.11/announcement.html new file mode 100644 index 0000000000..d0949881a9 --- /dev/null +++ b/data/releases/5.4/5.4.11/announcement.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/5.4.11/changes.txt b/data/releases/5.4/5.4.11/changes.txt new file mode 100644 index 0000000000..59c055b0cf --- /dev/null +++ b/data/releases/5.4/5.4.11/changes.txt @@ -0,0 +1,28 @@ +- Core: + . Fixed bug #63762 (Sigsegv when Exception::$trace is changed by user). + (Johannes) + . Fixed bug #43177 (Errors in eval()'ed code produce status code 500). + (Todd Ruth, Stas). + +- Filter: + . Fixed bug #63757 (getenv() produces memory leak with CGI SAPI). (Dmitry) + . Fixed bug #54096 (FILTER_VALIDATE_INT does not accept +0 and -0). + (martin at divbyzero dot net, Lars) + +- JSON: + . Fixed bug #63737 (json_decode does not properly decode with options + parameter). (Adam) + +- CLI server + . Update list of common mime types. Added webm, ogv, ogg. (Lars, + pascalc at gmail dot com) + +- cURL extension: + . Fixed bug (segfault due to libcurl connection caching). (Pierrick) + . Fixed bug #63859 (Memory leak when reusing curl-handle). (Pierrick) + . Fixed bug #63795 (CURL >= 7.28.0 no longer support value 1 for + CURLOPT_SSL_VERIFYHOST). (Pierrick) + . Fixed bug #63352 (Can't enable hostname validation when using curl stream + wrappers). (Pierrick) + . Fixed bug #55438 (Curlwapper is not sending http header randomly). + (phpnet@lostreality.org, Pierrick) diff --git a/data/releases/5.4/5.4.11/release.json b/data/releases/5.4/5.4.11/release.json new file mode 100644 index 0000000000..ef59f6a7ee --- /dev/null +++ b/data/releases/5.4/5.4.11/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.11", + "date": "17 Jan 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.11.tar.bz2", + "name": "PHP 5.4.11 (tar.bz2)", + "md5": "9975e68c22b86b013b934743ad2d2276" + }, + { + "filename": "php-5.4.11.tar.gz", + "name": "PHP 5.4.11 (tar.gz)", + "md5": "32fa16b3abd5527316c3c076b3395914" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.11 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.12/announcement.html b/data/releases/5.4/5.4.12/announcement.html new file mode 100644 index 0000000000..92d1f7f20e --- /dev/null +++ b/data/releases/5.4/5.4.12/announcement.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/5.4.12/changes.txt b/data/releases/5.4/5.4.12/changes.txt new file mode 100644 index 0000000000..7fef047919 --- /dev/null +++ b/data/releases/5.4/5.4.12/changes.txt @@ -0,0 +1,43 @@ +- Core: + . Fixed bug #64099 (Wrong TSRM usage in zend_Register_class alias). (Johannes) + . Fixed bug #64011 (get_html_translation_table() output incomplete with + HTML_ENTITIES and ISO-8859-1). (Gustavo) + . Fixed bug #63982 (isset() inconsistently produces a fatal error on + protected property). (Stas) + . Fixed bug #63943 (Bad warning text from strpos() on empty needle). + (Laruence) + . Fixed bug #63899 (Use after scope error in zend_compile). (Laruence) + . Fixed bug #63893 (Poor efficiency of strtr() using array with keys of very + different length). (Gustavo) + . Fixed bug #63882 (zend_std_compare_objects crash on recursion). (Dmitry) + . Fixed bug #63462 (Magic methods called twice for unset protected + properties). (Stas) + . Fixed bug #62524 (fopen follows redirects for non-3xx statuses). + (Wes Mason) + . Support BITMAPV5HEADER in getimagesize(). (AsamK, Lars) + +- Date: + . Fixed bug #63699 (Performance improvements for various ext/date functions). + (Lars, original patch by njaguar at gmail dot com) + . Fixed bug #55397: Comparsion of incomplete DateTime causes SIGSEGV. + (Derick) + +- FPM: + . Fixed bug #63999 (php with fpm fails to build on Solaris 10 or 11). (Adam) + +- Litespeed: + . Fixed bug #63228 (-Werror=format-security error in lsapi code). + (Elan Ruusamäe, George) + +- ext/sqlite3: + . Fixed bug #63921 (sqlite3::bindvalue and relative PHP functions aren't + using sqlite3_*_int64 API). (srgoogleguy, Lars) + +- PDO_OCI + . Fixed bug #57702 (Multi-row BLOB fetches). (hswong3i, Laruence) + . Fixed bug #52958 (Segfault in PDO_OCI on cleanup after running a long + testsuite). (hswong3i, Lars) + +- PDO_sqlite: + . Fixed bug #63916 (PDO::PARAM_INT casts to 32bit int internally even + on 64bit builds in pdo_sqlite). (srgoogleguy, Lars) diff --git a/data/releases/5.4/5.4.12/release.json b/data/releases/5.4/5.4.12/release.json new file mode 100644 index 0000000000..d364c195ab --- /dev/null +++ b/data/releases/5.4/5.4.12/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.12", + "date": "21 Feb 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.12.tar.bz2", + "name": "PHP 5.4.12 (tar.bz2)", + "md5": "5c7b614242ae12e9cacca21c8ab84818" + }, + { + "filename": "php-5.4.12.tar.gz", + "name": "PHP 5.4.12 (tar.gz)", + "md5": "81b20cac4f977b8764ae904302048d84" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.12 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.13/announcement.html b/data/releases/5.4/5.4.13/announcement.html new file mode 100644 index 0000000000..b017b098a0 --- /dev/null +++ b/data/releases/5.4/5.4.13/announcement.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/5.4.13/changes.txt b/data/releases/5.4/5.4.13/changes.txt new file mode 100644 index 0000000000..fcfefb3841 --- /dev/null +++ b/data/releases/5.4/5.4.13/changes.txt @@ -0,0 +1,51 @@ +- Core: + . Fixed bug #64354 (Unserialize array of objects whose class can't + be autoloaded fail). (Laruence) + . Fixed bug #64235 (Insteadof not work for class method in 5.4.11). + (Laruence) + . Fixed bug #64197 (_Offsetof() macro used but not defined on ARM/Clang). + (Ard Biesheuvel) + . Implemented FR #64175 (Added HTTP codes as of RFC 6585). (Jonh Wendell) + . Fixed bug #64142 (dval to lval different behavior on ppc64). (Remi) + . Fixed bug #64070 (Inheritance with Traits failed with error). (Dmitry) + +- CLI server: + . Fixed bug #64128 (buit-in web server is broken on ppc64). (Remi) + +- Mbstring: + . mb_split() can now handle empty matches like preg_split() does. (Moriyoshi) + +- mysqlnd + . Fixed bug #63530 (mysqlnd_stmt::bind_one_parameter crashes, uses wrong alloc + for stmt->param_bind). (Andrey) + +- OpenSSL: + . New SSL stream context option to prevent CRIME attack vector. (Daniel Lowrey, + Lars) + . Fixed bug #61930 (openssl corrupts ssl key resource when using + openssl_get_publickey()). (Stas) + +- PDO_mysql: + . Fixed bug #60840 (undefined symbol: mysqlnd_debug_std_no_trace_funcs). + (Johannes) + +- Phar: + . Fixed timestamp update on Phar contents modification. (Dmitry) + +- SOAP + . Added check that soap.wsdl_cache_dir conforms to open_basedir + (CVE-2013-1635). (Dmitry) + . Disabled external entities loading (CVE-2013-1643, CVE-2013-1824). + (Dmitry) + +- SPL: + . Fixed bug #64264 (SPLFixedArray toArray problem). (Laruence) + . Fixed bug #64228 (RecursiveDirectoryIterator always assumes SKIP_DOTS). + (patch by kriss@krizalys.com, Laruence) + . Fixed bug #64106 (Segfault on SplFixedArray[][x] = y when extended). + (Nikita Popov) + . Fixed bug #52861 (unset fails with ArrayObject and deep arrays). + (Mike Willbanks) + +- SNMP: + . Fixed bug #64124 (IPv6 malformed). (Boris Lytochkin) diff --git a/data/releases/5.4/5.4.13/release.json b/data/releases/5.4/5.4.13/release.json new file mode 100644 index 0000000000..9ee6e32c11 --- /dev/null +++ b/data/releases/5.4/5.4.13/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.13", + "date": "14 Mar 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.13.tar.bz2", + "name": "PHP 5.4.13 (tar.bz2)", + "md5": "cacd308e978b7cf9ba4993196612ccf7" + }, + { + "filename": "php-5.4.13.tar.gz", + "name": "PHP 5.4.13 (tar.gz)", + "md5": "445025340677d5bfe22eb670d6db6795" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.13 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.14/announcement.html b/data/releases/5.4/5.4.14/announcement.html new file mode 100644 index 0000000000..b0c82838a4 --- /dev/null +++ b/data/releases/5.4/5.4.14/announcement.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/5.4.14/changes.txt b/data/releases/5.4/5.4.14/changes.txt new file mode 100644 index 0000000000..490a156f22 --- /dev/null +++ b/data/releases/5.4/5.4.14/changes.txt @@ -0,0 +1,26 @@ +- Core: + . Fixed bug #64529 (Ran out of opcode space). (Dmitry) + . Fixed bug #64515 (Memoryleak when using the same variablename two times in + function declaration). (Laruence) + . Fixed bug #64432 (more empty delimiter warning in strX methods). (Laruence) + . Fixed bug #64417 (ArrayAccess::&offsetGet() in a trait causes fatal error). + (Dmitry) + . Fixed bug #64370 (microtime(true) less than $_SERVER['REQUEST_TIME_FLOAT']). + (Anatol) + . Fixed bug #64239 (Debug backtrace changed behavior since 5.4.10 or 5.4.11). + (Dmitry, Laruence) + . Fixed bug #63976 (Parent class incorrectly using child constant in class + property). (Dmitry) + . Fixed bug #63914 (zend_do_fcall_common_helper_SPEC does not handle + exceptions properly). (Jeff Welch) + . Fixed bug #62343 (Show class_alias In get_declared_classes()) (Dmitry) + +- PCRE: + . Merged PCRE 8.32. (Anatol) + +- SNMP: + . Fixed bug #61981 (OO API, walk: $suffix_as_key is not working correctly). + (Boris Lytochkin) + +- Zip: + . Bug #64452 (Zip crash intermittently). (Anatol) diff --git a/data/releases/5.4/5.4.14/release.json b/data/releases/5.4/5.4.14/release.json new file mode 100644 index 0000000000..d4ba3a211e --- /dev/null +++ b/data/releases/5.4/5.4.14/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.14", + "date": "11 Apr 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.14.tar.bz2", + "name": "PHP 5.4.14 (tar.bz2)", + "md5": "cfdc044be2c582991a1fe0967898fa38" + }, + { + "filename": "php-5.4.14.tar.gz", + "name": "PHP 5.4.14 (tar.gz)", + "md5": "08df8196af12bc850409a7bff13bf8f0" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.14 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.15/announcement.html b/data/releases/5.4/5.4.15/announcement.html new file mode 100644 index 0000000000..b2e36aea23 --- /dev/null +++ b/data/releases/5.4/5.4.15/announcement.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/5.4.15/changes.txt b/data/releases/5.4/5.4.15/changes.txt new file mode 100644 index 0000000000..6816854d88 --- /dev/null +++ b/data/releases/5.4/5.4.15/changes.txt @@ -0,0 +1,24 @@ +- Core: + . Fixed bug #64578 (debug_backtrace in set_error_handler corrupts zend heap: + segfault). (Laruence) + . Fixed bug #64458 (dns_get_record result with string of length -1). (Stas) + . Fixed bug #64433 (follow_location parameter of context is ignored for most + response codes). (Sergey Akbarov) + . Fixed bugs #47675 and #64577 (fd leak on Solaris) + +- Fileinfo: + . Upgraded libmagic to 5.14. (Anatol) + +- MySQLi: + . Fixed bug #64726 (Segfault when calling fetch_object on a use_result and DB + pointer has closed). (Laruence) + +- Zip: + . Fixed bug #64342 (ZipArchive::addFile() has to check for file existence). + (Anatol) + +- Streams: + . Fixed Windows x64 version of stream_socket_pair() and improved error + handling. (Anatol Belski) + . Fixed bug #64770 (stream_select() fails with pipes returned by proc_open() + on Windows x64). (Anatol) diff --git a/data/releases/5.4/5.4.15/release.json b/data/releases/5.4/5.4.15/release.json new file mode 100644 index 0000000000..01251e0f97 --- /dev/null +++ b/data/releases/5.4/5.4.15/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.15", + "date": "09 May 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.15.tar.bz2", + "name": "PHP 5.4.15 (tar.bz2)", + "md5": "145ea5e845e910443ff1eddb3dbcf56a" + }, + { + "filename": "php-5.4.15.tar.gz", + "name": "PHP 5.4.15 (tar.gz)", + "md5": "2651b983c18df9d455ec4c69aef45834" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.15 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.16/announcement.html b/data/releases/5.4/5.4.16/announcement.html new file mode 100644 index 0000000000..71b128732f --- /dev/null +++ b/data/releases/5.4/5.4.16/announcement.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/5.4.16/changes.txt b/data/releases/5.4/5.4.16/changes.txt new file mode 100644 index 0000000000..34118808c0 --- /dev/null +++ b/data/releases/5.4/5.4.16/changes.txt @@ -0,0 +1,45 @@ +- Core: + . Fixed bug #64879 (Heap based buffer overflow in quoted_printable_encode, + CVE 2013-2110). (Stas) + . Fixed bug #64853 (Use of no longer available ini directives causes crash on + TS build). (Anatol) + . Fixed bug #64729 (compilation failure on x32). (Gustavo) + . Fixed bug #64720 (SegFault on zend_deactivate). (Dmitry) + . Fixed bug #64660 (Segfault on memory exhaustion within function definition). + (Stas, reported by Juha Kylmänen) + +- Calendar: + . Fixed bug #64895 (Integer overflow in SndToJewish). (Remi) + +- Fileinfo: + . Fixed bug #64830 (mimetype detection segfaults on mp3 file). (Anatol) + +- FPM: + . Ignore QUERY_STRING when sent in SCRIPT_FILENAME. (Remi) + . Fixed some possible memory or resource leaks and possible null dereference + detected by code coverity scan. (Remi) + . Log a warning when a syscall fails. (Remi) + . Add --with-fpm-systemd option to report health to systemd, and + systemd_interval option to configure this. The service can now use + Type=notify in the systemd unit file. (Remi) + +- MySQLi + . Fixed bug #64726 (Segfault when calling fetch_object on a use_result and DB + pointer has closed). (Laruence) + +- Phar + . Fixed bug #64214 (PHAR PHPTs intermittently crash when run on DFS, SMB or + with non std tmp dir). (Pierre) + +- SNMP: + . Fixed bug #64765 (Some IPv6 addresses get interpreted wrong). + (Boris Lytochkin) + . Fixed bug #64159 (Truncated snmpget). (Boris Lytochkin) + +- Streams: + . Fixed bug #64770 (stream_select() fails with pipes returned by proc_open() + on Windows x64). (Anatol) + +- Zend Engine: + . Fixed bug #64821 (Custom Exceptions crash when internal properties + overridden). (Anatol) diff --git a/data/releases/5.4/5.4.16/release.json b/data/releases/5.4/5.4.16/release.json new file mode 100644 index 0000000000..413e3c660e --- /dev/null +++ b/data/releases/5.4/5.4.16/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.16", + "date": "09 May 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.16.tar.bz2", + "name": "PHP 5.4.16 (tar.bz2)", + "md5": "3d2c694d28861d707b2622c3cc941cff" + }, + { + "filename": "php-5.4.16.tar.gz", + "name": "PHP 5.4.16 (tar.gz)", + "md5": "3940a5295872964495f9c56596272d68" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.16 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.17/announcement.html b/data/releases/5.4/5.4.17/announcement.html new file mode 100644 index 0000000000..83286bf655 --- /dev/null +++ b/data/releases/5.4/5.4.17/announcement.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/5.4.17/changes.txt b/data/releases/5.4/5.4.17/changes.txt new file mode 100644 index 0000000000..30948becab --- /dev/null +++ b/data/releases/5.4/5.4.17/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed bug #64988 (Class loading order affects E_STRICT warning). (Laruence) + . Fixed bug #64966 (segfault in zend_do_fcall_common_helper_SPEC). (Laruence) + . Fixed bug #64960 (Segfault in gc_zval_possible_root). (Laruence) + . Fixed bug #64936 (doc comments picked up from previous scanner run). (Stas, + Jonathan Oddy) + . Fixed bug #64934 (Apache2 TS crash with get_browser()). (Anatol) + . Fixed bug #64166 (quoted-printable-encode stream filter incorrectly + discarding whitespace). (Michael M Slusarz) + +- DateTime: + . Fixed bug #53437 (Crash when using unserialized DatePeriod instance). + (Gustavo, Derick, Anatol) + +- FPM: + . Fixed Bug #64915 (error_log ignored when daemonize=0). (Remi) + . Implemented FR #64764 (add support for FPM init.d script). (Lior Kaplan) + +- PDO: + . Fixed bug #63176 (Segmentation fault when instantiate 2 persistent PDO to + the same db server). (Laruence) + +- PDO_DBlib: + . Fixed bug #63638 (Cannot connect to SQL Server 2008 with PDO dblib). + (Stanley Sufficool) + . Fixed bug #64338 (pdo_dblib can't connect to Azure SQL). (Stanley + Sufficool) + . Fixed bug #64808 (FreeTDS PDO getColumnMeta on a prepared but not executed + statement crashes). (Stanley Sufficool) + +- PDO_firebird: + . Fixed bug #64037 (Firebird return wrong value for numeric field). + (Matheus Degiovani, Matteo) + . Fixed bug #62024 (Cannot insert second row with null using parametrized + query). (patch by james@kenjim.com, Matheus Degiovani, Matteo) + +- PDO_mysql: + . Fixed bug #48724 (getColumnMeta() doesn't return native_type for BIT, + TINYINT and YEAR). (Antony, Daniel Beardsley) + +- PDO_pgsql: + . Fixed Bug #64949 (Buffer overflow in _pdo_pgsql_error). (Remi) + +- pgsql: + . Fixed bug #64609 (pg_convert enum type support). (Matteo) + . Fixed bug #65015 (pg_send_query does not flush send buffer) + patch submitted by: adam at vektah dot net (Yasuo) + +- Readline: + . Implement FR #55694 (Expose additional readline variable to prevent + default filename completion). (Hartmel) + +- SPL: + . Fixed bug #64997 (Segfault while using RecursiveIteratorIterator on + 64-bits systems). (Laruence) diff --git a/data/releases/5.4/5.4.17/release.json b/data/releases/5.4/5.4.17/release.json new file mode 100644 index 0000000000..2b5174efb0 --- /dev/null +++ b/data/releases/5.4/5.4.17/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.17", + "date": "04 Jul 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.17.tar.bz2", + "name": "PHP 5.4.17 (tar.bz2)", + "md5": "1e027e99e2a874310fd518e87e3947af" + }, + { + "filename": "php-5.4.17.tar.gz", + "name": "PHP 5.4.17 (tar.gz)", + "md5": "cc698032dcdcb9ad158edcc90fe798d6" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.17 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.18/announcement.html b/data/releases/5.4/5.4.18/announcement.html new file mode 100644 index 0000000000..88e111346c --- /dev/null +++ b/data/releases/5.4/5.4.18/announcement.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/5.4.18/changes.txt b/data/releases/5.4/5.4.18/changes.txt new file mode 100644 index 0000000000..d9f9737300 --- /dev/null +++ b/data/releases/5.4/5.4.18/changes.txt @@ -0,0 +1,94 @@ +- Core: + . Fixed value of FILTER_SANITIZE_FULL_SPECIAL_CHARS constant (previously was + erroneously set to FILTER_SANITIZE_SPECIAL_CHARS value). (Andrey + avp200681 gmail com). + . Fixed bug #65254 (Exception not catchable when exception thrown in autoload + with a namespace). (Laruence) + . Fixed bug #65108 (is_callable() triggers Fatal Error). + (David Soria Parra, Laruence) + . Fixed bug #65088 (Generated configure script is malformed on OpenBSD). + (Adam) + . Fixed bug #62964 (Possible XSS on "Registered stream filters" info). + (david at nnucomputerwhiz dot com) + . Fixed bug #62672 (Error on serialize of ArrayObject). (Lior Kaplan) + . Fixed bug #62475 (variant_* functions causes crash when null given as an + argument). (Felipe) + . Fixed bug #60732 (php_error_docref links to invalid pages). (Jakub Vrana) + . Fixed bug #65226 (chroot() does not get enabled). (Anatol) + +- CGI: + . Fixed Bug #65143 (Missing php-cgi man page). (Remi) + +- CLI server: + . Fixed bug #65066 (Cli server not responsive when responding with 422 http + status code). (Adam) + +- CURL: + . Fixed bug #62665 (curl.cainfo doesn't appear in php.ini). (Lior Kaplan) + +- FPM: + . Fixed bug #63983 (enabling FPM borks compile on FreeBSD). + (chibisuke at web dot de, Felipe) + +- FTP: + . Fixed bug #65228 (FTPs memory leak with SSL). + (marco dot beierer at mbsecurity dot ch) + +- GMP: + . Fixed bug #65227 (Memory leak in gmp_cmp second parameter). (Felipe) + +- Imap: + . Fixed bug #64467 (Segmentation fault after imap_reopen failure). + (askalski at gmail dot com) + +- Intl: + . Fixed bug #62759 (Buggy grapheme_substr() on edge case). (Stas) + . Fixed bug #61860 (Offsets may be wrong for grapheme_stri* functions). + (Stas) + +- mysqlnd: + . Fixed segfault in mysqlnd when doing long prepare. (Andrey) + +- ODBC: + . Fixed bug #61387 (NULL valued anonymous column causes segfault in + odbc_fetch_array). (Brandon Kirsch) + +- Openssl: + . Fixed handling null bytes in subjectAltName (CVE-2013-4248). + (Christian Heimes) + +- PDO: + . Allowed PDO_OCI to compile with Oracle Database 12c client libraries. + (Chris Jones) + +- PDO_dblib: + . Fixed bug #65219 (PDO/dblib not working anymore ("use dbName" not sent)). + (Stanley Sufficool) + +- PDO_pgsql: + . Fixed meta data retrieve when OID is larger than 2^31. (Yasuo) + +- Phar: + . Fixed Bug #65142 (Missing phar man page). (Remi) + +- Session + . Fixed bug #62535 ($_SESSION[$key]["cancel_upload"] doesn't work as + documented). (Arpad) + . Fixed bug #35703 (when session_name("123") consist only digits, + should warning). (Yasuo) + . Fixed bug #49175 (mod_files.sh does not support hash bits). Patch by + oorza2k5 at gmail dot com (Yasuo) + +- Sockets: + . Implemented FR #63472 (Setting SO_BINDTODEVICE with socket_set_option). + (Damjan Cvetko) + +- SPL: + . Fixed bug #65136 (RecursiveDirectoryIterator segfault). (Laruence) + . Fixed bug #61828 (Memleak when calling Directory(Recursive)Iterator + /Spl(Temp)FileObject ctor twice). (Laruence) + . Fixed bug #60560 (SplFixedArray un-/serialize, getSize(), count() return 0, + keys are strings). (Adam) + +- XML: + . Fixed bug #65236 (heap corruption in xml parser, CVE-2013-4113). (Rob) diff --git a/data/releases/5.4/5.4.18/release.json b/data/releases/5.4/5.4.18/release.json new file mode 100644 index 0000000000..b055c31004 --- /dev/null +++ b/data/releases/5.4/5.4.18/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.18", + "date": "04 Jul 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.18.tar.bz2", + "name": "PHP 5.4.18 (tar.bz2)", + "md5": "b2e185b46b22a48a385cf21a0dc76e65" + }, + { + "filename": "php-5.4.18.tar.gz", + "name": "PHP 5.4.18 (tar.gz)", + "md5": "d0a3f55deceaec921f45f76d7b4e764b" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.18 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.19/announcement.html b/data/releases/5.4/5.4.19/announcement.html new file mode 100644 index 0000000000..c8f50b648f --- /dev/null +++ b/data/releases/5.4/5.4.19/announcement.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/5.4.19/changes.txt b/data/releases/5.4/5.4.19/changes.txt new file mode 100644 index 0000000000..75024c6cb3 --- /dev/null +++ b/data/releases/5.4/5.4.19/changes.txt @@ -0,0 +1,6 @@ +- Core: + . Fixed bug #64503 (Compilation fails with error: conflicting types for + 'zendparse'). (Laruence) + +- Openssl: + . Fixed UMR in fix for CVE-2013-4248. diff --git a/data/releases/5.4/5.4.19/release.json b/data/releases/5.4/5.4.19/release.json new file mode 100644 index 0000000000..f554aeda9c --- /dev/null +++ b/data/releases/5.4/5.4.19/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.19", + "date": "22 Aug 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.19.tar.bz2", + "name": "PHP 5.4.19 (tar.bz2)", + "md5": "f06f99b9872b503758adab5ba7a7e755" + }, + { + "filename": "php-5.4.19.tar.gz", + "name": "PHP 5.4.19 (tar.gz)", + "md5": "9e7ad2494ba3de519328f74267de8342" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.19 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.2/announcement.html b/data/releases/5.4/5.4.2/announcement.html new file mode 100644 index 0000000000..9d719b2c75 --- /dev/null +++ b/data/releases/5.4/5.4.2/announcement.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/5.4.2/changes.txt b/data/releases/5.4/5.4.2/changes.txt new file mode 100644 index 0000000000..a7479a0429 --- /dev/null +++ b/data/releases/5.4/5.4.2/changes.txt @@ -0,0 +1 @@ +- Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. (Rasmus) diff --git a/data/releases/5.4/5.4.2/release.json b/data/releases/5.4/5.4.2/release.json new file mode 100644 index 0000000000..f1d4ae6066 --- /dev/null +++ b/data/releases/5.4/5.4.2/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.4.2", + "date": "03 May 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.2.tar.bz2", + "name": "PHP 5.4.2 (tar.bz2)", + "md5": "252a6546db3a26260b419a883c875615" + }, + { + "filename": "php-5.4.2.tar.gz", + "name": "PHP 5.4.2 (tar.gz)", + "md5": "4b62935cbea385a23335f17d64d716c7" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.20/announcement.html b/data/releases/5.4/5.4.20/announcement.html new file mode 100644 index 0000000000..d8e4472c93 --- /dev/null +++ b/data/releases/5.4/5.4.20/announcement.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/5.4.20/changes.txt b/data/releases/5.4/5.4.20/changes.txt new file mode 100644 index 0000000000..3e6643c95b --- /dev/null +++ b/data/releases/5.4/5.4.20/changes.txt @@ -0,0 +1,73 @@ +- Core: + . Fixed bug #60598 (cli/apache sapi segfault on objects manipulation). + (Laruence) + . Fixed bug #65579 (Using traits with get_class_methods causes segfault). + (Adam) + . Fixed bug #65490 (Duplicate calls to get lineno & filename for + DTRACE_FUNCTION_*). (Chris Jones) + . Fixed bug #65483 (quoted-printable encode stream filter incorrectly encoding + spaces). (Michael M Slusarz) + . Fixed bug #65481 (shutdown segfault due to serialize) (Mike) + . Fixed bug #65470 (Segmentation fault in zend_error() with + --enable-dtrace). (Chris Jones, Kris Van Hees) + . Fixed bug #65372 (Segfault in gc_zval_possible_root when return reference + fails). (Laruence) + . Fixed bug #65304 (Use of max int in array_sum). (Laruence) + . Fixed bug #65291 (get_defined_constants() causes PHP to crash in a very + limited case). (Arpad) + . Fixed bug #65225 (PHP_BINARY incorrectly set). (Patrick Allaert) + . Improved fix for bug #63186 (compile failure on netbsd). (Matteo) + . Fixed bug #62692 (PHP fails to build with DTrace). (Chris Jones, Kris Van Hees) + . Fixed bug #61759 (class_alias() should accept classes with leading + backslashes). (Julien) + . Fixed bug #61345 (CGI mode - make install don't work). (Michael Heimpold) + . Cherry-picked some DTrace build commits (allowing builds on Linux, + bug #62691, and bug #63706) from PHP 5.5 branch + . Fixed bug #61268 (--enable-dtrace leads make to clobber + Zend/zend_dtrace.d) (Chris Jones) + +- cURL: + . Fixed bug #65458 (curl memory leak). (Adam) + +- Datetime: + . Fixed bug #65554 (createFromFormat broken when weekday name is followed + by some delimiters). (Valentin Logvinskiy, Stas). + . Fixed bug #65564 (stack-buffer-overflow in DateTimeZone stuff caught + by AddressSanitizer). (Remi). + +- Openssl: + . Fixed bug #64802 (openssl_x509_parse fails to parse subject properly in + some cases). (Mark Jones) + +- Session: + . Fixed bug #62129 (rfc1867 crashes php even though turned off). (gxd305 at + gmail dot com) + . Fixed bug #50308 (session id not appended properly for empty anchor tags). + (Arpad) + . Fixed possible buffer overflow under Windows. Note: Not a security fix. + (Yasuo) + . Changed session.auto_start to PHP_INI_PERDIR. (Yasuo) + +- SOAP: + . Fixed bug #65018 (SoapHeader problems with SoapServer). (Dmitry) + +- SPL: + . Fixed bug #65328 (Segfault when getting SplStack object Value). (Laruence) + +- PDO: + . Fixed bug #64953 (Postgres prepared statement positional parameter + casting). (Mike) + +- Phar: + . Fixed bug #65028 (Phar::buildFromDirectory creates corrupt archives for + some specific contents). (Stas) + +- Pgsql: + . Fixed bug #65336 (pg_escape_literal/identifier() silently returns false). + (Yasuo) + . Fixed bug #62978 (Disallow possible SQL injections with pg_select()/pg_update() + /pg_delete()/pg_insert()). (Yasuo) + +- Zlib: + . Fixed bug #65391 (Unable to send vary header user-agent when + ob_start('ob_gzhandler') is called) (Mike) diff --git a/data/releases/5.4/5.4.20/release.json b/data/releases/5.4/5.4.20/release.json new file mode 100644 index 0000000000..5ee5b5692c --- /dev/null +++ b/data/releases/5.4/5.4.20/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.20", + "date": "19 Sep 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.20.tar.bz2", + "name": "PHP 5.4.20 (tar.bz2)", + "md5": "e25db5592ed14842b4239be9d990cce8" + }, + { + "filename": "php-5.4.20.tar.gz", + "name": "PHP 5.4.20 (tar.gz)", + "md5": "e505b63ebe383ef9a378467216ba69d4" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.20 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.21/announcement.html b/data/releases/5.4/5.4.21/announcement.html new file mode 100644 index 0000000000..d89178273f --- /dev/null +++ b/data/releases/5.4/5.4.21/announcement.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/5.4.21/changes.txt b/data/releases/5.4/5.4.21/changes.txt new file mode 100644 index 0000000000..a3f70650fb --- /dev/null +++ b/data/releases/5.4/5.4.21/changes.txt @@ -0,0 +1,32 @@ +- Core: + . Fixed bug #65322 (compile time errors won't trigger auto loading). (Nikita) + +- CLI server: + . Fixed bug #65633 (built-in server treat some http headers as + case-sensitive). (Adam) + +- Datetime: + . Fixed bug #64157 (DateTime::createFromFormat() reports confusing error + message). (Boro Sitnikovski) + +- DBA extension: + . Fixed bug #65708 (dba functions cast $key param to string in-place, + bypassing copy on write). (Adam) + +- Filter: + . Add RFC 6598 IPs to reserved addresses. (Sebastian Nohn) + . Fixed bug #64441 (FILTER_VALIDATE_URL rejects fully qualified domain names). + (Syra) + +- IMAP: + . Fixed bug #65721 (configure script broken in 5.5.4 and 5.4.20 when enabling + imap). (ryotakatsuki at gmail dot com) + +- Standard: + . Fixed bug #61548 (content-type must appear at the end of headers for 201 + Location to work in http). (Mike) + +- Build system: + . Fixed bug #62396 ('make test' crashes starting with 5.3.14 (missing + gzencode())). (Mike) + diff --git a/data/releases/5.4/5.4.21/release.json b/data/releases/5.4/5.4.21/release.json new file mode 100644 index 0000000000..b647232f0d --- /dev/null +++ b/data/releases/5.4/5.4.21/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.21", + "date": "17 Oct 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.21.tar.bz2", + "name": "PHP 5.4.21 (tar.bz2)", + "md5": "3dcf021e89b039409d0b1c346b936b5f" + }, + { + "filename": "php-5.4.21.tar.gz", + "name": "PHP 5.4.21 (tar.gz)", + "md5": "cc8da0d18683e3a83b332f264af7ca83" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.21 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.22/announcement.html b/data/releases/5.4/5.4.22/announcement.html new file mode 100644 index 0000000000..955d2ffcc0 --- /dev/null +++ b/data/releases/5.4/5.4.22/announcement.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/5.4.22/changes.txt b/data/releases/5.4/5.4.22/changes.txt new file mode 100644 index 0000000000..7f728aa06a --- /dev/null +++ b/data/releases/5.4/5.4.22/changes.txt @@ -0,0 +1,35 @@ +- Core: + . Fixed bug #65911 (scope resolution operator - strange behavior with $this). + (Bob Weinand) + +- CLI server: + . Fixed bug #65818 (Segfault with built-in webserver and chunked transfer + encoding). (Felipe) + +- Exif: + . Fixed crash on unknown encoding. (Draal) + +- FTP: + . Fixed bug #65667 (ftp_nb_continue produces segfault). (Philip Hofstetter) + +- ODBC: + . Fixed bug #65950 (Field name truncation if the field name is bigger than + 32 characters). (patch submitted by: michael dot y at zend dot com, Yasuo) + +- PDO: + . Fixed bug #66033 (Segmentation Fault when constructor of PDO statement + throws an exception). (Laruence) + +- Sockets: + . Fixed bug #65808 (the socket_connect() won't work with IPv6 address). + (Mike) + +- Standard: + . Fixed bug #64760 (var_export() does not use full precision for floating-point + numbers) (Yasuo) + . Fixed bug #66395 (basename function doesn't remove drive letter). (Anatol) + +- XMLReader: + . Fixed bug #51936 (Crash with clone XMLReader). (Mike) + . Fixed bug #64230 (XMLReader does not suppress errors). (Mike) + diff --git a/data/releases/5.4/5.4.22/release.json b/data/releases/5.4/5.4.22/release.json new file mode 100644 index 0000000000..711a42952d --- /dev/null +++ b/data/releases/5.4/5.4.22/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.22", + "date": "14 Nov 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.22.tar.bz2", + "name": "PHP 5.4.22 (tar.bz2)", + "sha256": "3b8619b030e372f2b64e3a059d05a3ef3354e81f8a72923ba45475bf222f7cca" + }, + { + "filename": "php-5.4.22.tar.gz", + "name": "PHP 5.4.22 (tar.gz)", + "sha256": "ca6e52a0ba11e9521c6a26f293a602cdc00cad1adbb4658e35b8d3f41057cbb8" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.22 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.23/announcement.html b/data/releases/5.4/5.4.23/announcement.html new file mode 100644 index 0000000000..17992dce76 --- /dev/null +++ b/data/releases/5.4/5.4.23/announcement.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/5.4.23/changes.txt b/data/releases/5.4/5.4.23/changes.txt new file mode 100644 index 0000000000..187b542655 --- /dev/null +++ b/data/releases/5.4/5.4.23/changes.txt @@ -0,0 +1,26 @@ +- Core: + . Fixed bug #66094 (unregister_tick_function tries to cast a Closure to a + string). (Laruence) + . Fixed bug #65969 (Chain assignment with T_LIST failure). (Dmitry) + . Fixed bug #65947 (basename is no more working after fgetcsv in certain + situation). (Laruence) + +- JSON + . Fixed whitespace part of bug #64874 ("json_decode handles whitespace and + case-sensitivity incorrectly"). (Andrea Faulds) + +- MySQLi: + . Fixed bug #66043 (Segfault calling bind_param() on mysqli). (Laruence) + +- mysqlnd: + . Fixed bug #66124 (mysqli under mysqlnd loses precision when bind_param + with 'i'). (Andrey) + . Fixed bug #66141 (mysqlnd quote function is wrong with NO_BACKSLASH_ESCAPES + after failed query). (Andrey) + +- Openssl: + . Fixed memory corruption in openssl_x509_parse() (CVE-2013-6420). + (Stefan Esser). + +- PDO + . Fixed bug 65946 (sql_parser permanently converts values bound to strings) diff --git a/data/releases/5.4/5.4.23/release.json b/data/releases/5.4/5.4.23/release.json new file mode 100644 index 0000000000..d3f2c2c33a --- /dev/null +++ b/data/releases/5.4/5.4.23/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.23", + "date": "12 Dec 2013", + "tags": [], + "source": [ + { + "filename": "php-5.4.23.tar.bz2", + "name": "PHP 5.4.23 (tar.bz2)", + "sha256": "ae7c070fa9b9e16413ef944d910b68f3ba79192eca4010b0af132b8631bd91cc" + }, + { + "filename": "php-5.4.23.tar.gz", + "name": "PHP 5.4.23 (tar.gz)", + "sha256": "c9add0e59f41298a253bbb9090c47a03064b099120a563ca8ad289e18fcd1ce7" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.23 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.24/announcement.html b/data/releases/5.4/5.4.24/announcement.html new file mode 100644 index 0000000000..70310a1c64 --- /dev/null +++ b/data/releases/5.4/5.4.24/announcement.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/5.4.24/changes.txt b/data/releases/5.4/5.4.24/changes.txt new file mode 100644 index 0000000000..d355c3788b --- /dev/null +++ b/data/releases/5.4/5.4.24/changes.txt @@ -0,0 +1,39 @@ +- Core: + . Added validation of class names in the autoload process. (Dmitry) + . Fixed invalid C code in zend_strtod.c. (Lior Kaplan) + . Fixed bug #61645 (fopen and O_NONBLOCK). (Mike) + +- Date: + . Fixed bug #66060 (Heap buffer over-read in DateInterval). (CVE-2013-6712) + (Remi) + . Fixed bug #63391 (Incorrect/inconsistent day of week prior to the year + 1600). (Derick, T. Carter) + . Fixed bug #61599 (Wrong Day of Week). (Derick, T. Carter) + +- DOM: + . Fixed bug #65196 (Passing DOMDocumentFragment to DOMDocument::saveHTML() + Produces invalid Markup). (Mike) + +- Exif: + . Fixed bug #65873 (Integer overflow in exif_read_data()). (Stas) + +- Filter: + . Fixed bug #66229 (128.0.0.0/16 isn't reserved any longer). (Adam) + +- GD: + . Fixed bug #64405 (Use freetype-config for determining freetype2 dir(s)). + (Adam) + +- PDO_odbc: + . Fixed bug #66311 (Stack smashing protection kills PDO/ODBC queries). + (michael at orlitzky dot com) + +- SNMP: + . Fixed SNMP_ERR_TOOBIG handling for bulk walk operations. (Boris Lytochkin) + +- XSL + . Fixed bug #49634 (Segfault throwing an exception in a XSL registered + function). (Mike) + +- ZIP: + . Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real). (Remi) diff --git a/data/releases/5.4/5.4.24/release.json b/data/releases/5.4/5.4.24/release.json new file mode 100644 index 0000000000..a30432d471 --- /dev/null +++ b/data/releases/5.4/5.4.24/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.24", + "date": "9 Jan 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.24.tar.bz2", + "name": "PHP 5.4.24 (tar.bz2)", + "sha256": "97fe70eddaf5b93969714a551870fe03f6b0a387f85b83a6d63a40a76199a327" + }, + { + "filename": "php-5.4.24.tar.gz", + "name": "PHP 5.4.24 (tar.gz)", + "sha256": "c64d6e3b428e78b44760167557e26cd16a9f83f449a255e69d5e035bdd7057ed" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.24 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.25/announcement.html b/data/releases/5.4/5.4.25/announcement.html new file mode 100644 index 0000000000..77d76865bc --- /dev/null +++ b/data/releases/5.4/5.4.25/announcement.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/5.4.25/changes.txt b/data/releases/5.4/5.4.25/changes.txt new file mode 100644 index 0000000000..64fcdf3a9d --- /dev/null +++ b/data/releases/5.4/5.4.25/changes.txt @@ -0,0 +1,15 @@ +- Core: + . Fixed bug #66286 (Incorrect object comparison with inheritance). (Nikita) + . Fixed bug #66509 (copy() arginfo has changed starting from 5.4). + (Will Fitch) + +- mysqlnd: + . Fixed bug #66283 (Segmentation fault after memory_limit). (Johannes) + +- PDO_pgsql: + . Fixed bug #62479 (PDO-psql cannot connect if password contains spaces). + (Will Fitch, Ilia) + +- Session: + . Fixed bug #66481 (Calls to session_name() segfault when session.name is + null). (Laruence) diff --git a/data/releases/5.4/5.4.25/release.json b/data/releases/5.4/5.4.25/release.json new file mode 100644 index 0000000000..e30e5a1de5 --- /dev/null +++ b/data/releases/5.4/5.4.25/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.25", + "date": "6 Feb 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.25.tar.bz2", + "name": "PHP 5.4.25 (tar.bz2)", + "sha256": "b6c18c07c6bf34f75e601b28829d636e44c1c9f4267aac4ed013443c32a2245f" + }, + { + "filename": "php-5.4.25.tar.gz", + "name": "PHP 5.4.25 (tar.gz)", + "sha256": "0c66cec73bfbd31f68c96e5a4d8454599271f0b0462c2ff7dedce4262fda8fe3" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.25 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.26/announcement.html b/data/releases/5.4/5.4.26/announcement.html new file mode 100644 index 0000000000..bbb7fb7f62 --- /dev/null +++ b/data/releases/5.4/5.4.26/announcement.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/5.4.26/changes.txt b/data/releases/5.4/5.4.26/changes.txt new file mode 100644 index 0000000000..3f165f529d --- /dev/null +++ b/data/releases/5.4/5.4.26/changes.txt @@ -0,0 +1,19 @@ +- JSON: + . Fixed bug #65753 (JsonSerializeable couldn't implement on module extension) + (chobieeee@php.net) + +- Fileinfo: + . Fixed bug #66731 (file: infinite recursion). (CVE-2014-1943) (Remi) + . Fixed bug #66820 (out-of-bounds memory access in fileinfo). (Remi) + +- LDAP: + . Implemented ldap_modify_batch (https://wiki.php.net/rfc/ldap_modify_batch). + (Ondřej Hošek) + +- Openssl: + . Fixed bug #66501 (Add EC key support to php_openssl_is_private_key). + (Mark Zedwood) + +- Pgsql: + . Added warning for dangerous client encoding and remove possible injections + for pg_insert()/pg_update()/pg_delete()/pg_select(). (Yasuo) diff --git a/data/releases/5.4/5.4.26/release.json b/data/releases/5.4/5.4.26/release.json new file mode 100644 index 0000000000..7af0643711 --- /dev/null +++ b/data/releases/5.4/5.4.26/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.26", + "date": "6 Mar 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.26.tar.bz2", + "name": "PHP 5.4.26 (tar.bz2)", + "sha256": "5053649317b9331df40bd836c976a32b31dbc5c5d68997d3ae01cb90db22d240" + }, + { + "filename": "php-5.4.26.tar.gz", + "name": "PHP 5.4.26 (tar.gz)", + "sha256": "ec3f902b5e8cbdd660e01e784b537f1210a12182d9bbd62164776075bc097eca" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.26 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.27/announcement.html b/data/releases/5.4/5.4.27/announcement.html new file mode 100644 index 0000000000..cebbed4e45 --- /dev/null +++ b/data/releases/5.4/5.4.27/announcement.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/5.4.27/changes.txt b/data/releases/5.4/5.4.27/changes.txt new file mode 100644 index 0000000000..99a871ef2e --- /dev/null +++ b/data/releases/5.4/5.4.27/changes.txt @@ -0,0 +1,24 @@ +- Core: + . Fixed bug #60602 (proc_open() changes environment array) (Tjerk) + +- Fileinfo: + . Fixed bug #66946 (fileinfo: extensive backtracking in awk rule regular + expression). (CVE-2013-7345) (Remi) + +- FPM: + . Added clear_env configuration directive to disable clearenv() call. + (Github PR# 598, Paul Annesley) + +- GMP + . Fixed bug #66872 (invalid argument crashes gmp_testbit) (Pierre) + +- Mail: + . Fixed bug #66535 (Don't add newline after X-PHP-Originating-Script) (Tjerk) + +- MySQLi: + . Fixed bug #66762 (Segfault in mysqli_stmt::bind_result() when link closed) + (Remi) + +- Openssl: + . Fixed bug #66833 (Default disgest algo is still MD5, switch to SHA1). (Remi) + \ No newline at end of file diff --git a/data/releases/5.4/5.4.27/release.json b/data/releases/5.4/5.4.27/release.json new file mode 100644 index 0000000000..74043db743 --- /dev/null +++ b/data/releases/5.4/5.4.27/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.27", + "date": "3 Apr 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.27.tar.bz2", + "name": "PHP 5.4.27 (tar.bz2)", + "sha256": "09dcc44cded735e1cf1b1b9f2749d1a0fd90e03378b6a70364a662f4740e61e2" + }, + { + "filename": "php-5.4.27.tar.gz", + "name": "PHP 5.4.27 (tar.gz)", + "sha256": "a70dc68eeed902f8378fded473d53e4e37be645b941554dcf4237559cbda2bb3" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.27 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.28/announcement.html b/data/releases/5.4/5.4.28/announcement.html new file mode 100644 index 0000000000..46b97909af --- /dev/null +++ b/data/releases/5.4/5.4.28/announcement.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/5.4.28/changes.txt b/data/releases/5.4/5.4.28/changes.txt new file mode 100644 index 0000000000..bb51a16099 --- /dev/null +++ b/data/releases/5.4/5.4.28/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed bug #61019 (Out of memory on command stream_get_contents). (Mike) + . Fixed bug #64330 (stream_socket_server() creates wrong Abstract Namespace + UNIX sockets). (Mike) + . Fixed bug #66171 (Symlinks and session handler allow open_basedir bypass). + (Jann Horn, Stas) + . Fixed bug #66182 (exit in stream filter produces segfault). (Mike) + . Fixed bug #66736 (fpassthru broken). (Mike) + . Fixed bug #67024 (getimagesize should recognize BMP files with negative + height). (Gabor Buella) + . Fixed bug #67033 (Remove reference to Windows 95). (Anatol) + +- cURL: + . Fixed bug #66562 (curl_exec returns differently than curl_multi_getcontent). + (Freek Lijten) + +- Date: + . Fixed bug #66721 (__wakeup of DateTime segfaults when invalid object data is + supplied). (Boro Sitnikovski) + +- Embed: + . Fixed bug #65715 (php5embed.lib isn't provided anymore). (Anatol) + +- Fileinfo: + . Fixed bug #66987 (Memory corruption in fileinfo ext / bigendian). + (Remi) + +- FPM: + . Fixed bug #66482 (unknown entry 'priority' in php-fpm.conf). + . Fixed bug #67060 (sapi/fpm: possible privilege escalation due to insecure + default configuration) (CVE-2014-0185). (Stas) + +- JSON: + . Fixed bug #66021 (Blank line inside empty array/object when + JSON_PRETTY_PRINT is set). (Kevin Israel) + +- LDAP: + . Fixed issue with null bytes in LDAP bindings. (Matthew Daley) + +- OpenSSL: + . Fix bug #66942 (memory leak in openssl_seal()). (Chuan Ma) + . Fix bug #66952 (memory leak in openssl_open()). (Chuan Ma) + +- SimpleXML: + . Fixed bug #66084 (simplexml_load_string() mangles empty node name) + (Anatol) + +- XSL: + . Fixed bug #53965 (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/5.4.29/changes.txt b/data/releases/5.4/5.4.29/changes.txt new file mode 100644 index 0000000000..9650f8b2ec --- /dev/null +++ b/data/releases/5.4/5.4.29/changes.txt @@ -0,0 +1,37 @@ +- COM: + . Fixed bug #66431 (Special Character via COM Interface (CP_UTF8)). (Anatol) + +- Core: + . Fixed bug #65701 (copy() doesn't work when destination filename is created + by tempnam()). (Boro Sitnikovski) + . Fixed bug #67072 (Echoing unserialized "SplFileObject" crash). (Anatol) + . Fixed bug #67245 (usage of memcpy() with overlapping src and dst in + zend_exceptions.c). (Bob) + . Fixed bug #67247 (spl_fixedarray_resize integer overflow). (Stas) + . Fixed bug #67249 (printf out-of-bounds read). (Stas) + . Fixed bug #67250 (iptcparse out-of-bounds read). (Stas) + . Fixed bug #67252 (convert_uudecode out-of-bounds read). (Stas) + +- Date: + . Fixed bug #67118 (DateTime constructor crash with invalid data). (Anatol) + . Fixed bug #67251 (date_parse_from_format out-of-bounds read). (Stas) + . Fixed bug #67253 (timelib_meridian_with_check out-of-bounds read). (Stas) + +- DOM: + . Fixed bug #67081 (DOMDocumentType->internalSubset returns entire DOCTYPE tag, + not only the subset). (Anatol) + +- Fileinfo: + . Fixed bug #66307 (Fileinfo crashes with powerpoint files). (Anatol) + . Fixed bug #67327 (fileinfo: CDF infinite loop in nelements DoS). + (CVE-2014-0238) + . Fixed bug #67328 (fileinfo: fileinfo: numerous file_printf calls resulting in + performance degradation). (CVE-2014-0237) + +- FPM: + . Fixed bug #66908 (php-fpm reload leaks epoll_create() file descriptor). + (Julio Pintos) + +- Phar: + . Fix bug #64498 ($phar->buildFromDirectory can't compress file with an accent + in its name). (PR #588) diff --git a/data/releases/5.4/5.4.29/release.json b/data/releases/5.4/5.4.29/release.json new file mode 100644 index 0000000000..f3b2e4e4f6 --- /dev/null +++ b/data/releases/5.4/5.4.29/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.29", + "date": "29 May 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.29.tar.bz2", + "name": "PHP 5.4.29 (tar.bz2)", + "sha256": "62ce3ca063cf04f6065eeac82117e43b44e20487bc0a0a8d05436e17a0b1e2a7" + }, + { + "filename": "php-5.4.29.tar.gz", + "name": "PHP 5.4.29 (tar.gz)", + "sha256": "9fa51d3e44783802ea51b910719ad524a8994524f7cf7307f683fe89191bc401" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.29 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.3/announcement.html b/data/releases/5.4/5.4.3/announcement.html new file mode 100644 index 0000000000..92b056e39a --- /dev/null +++ b/data/releases/5.4/5.4.3/announcement.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/5.4.3/changes.txt b/data/releases/5.4/5.4.3/changes.txt new file mode 100644 index 0000000000..6818c27338 --- /dev/null +++ b/data/releases/5.4/5.4.3/changes.txt @@ -0,0 +1,5 @@ +- CGI + . Re-Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. + (Stas) + . Fix bug #61807 - Buffer Overflow in apache_request_headers. + (nyt-php at countercultured dot net). diff --git a/data/releases/5.4/5.4.3/release.json b/data/releases/5.4/5.4.3/release.json new file mode 100644 index 0000000000..612fa67100 --- /dev/null +++ b/data/releases/5.4/5.4.3/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.4.3", + "date": "08 May 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.3.tar.bz2", + "name": "PHP 5.4.3 (tar.bz2)", + "md5": "51f9488bf8682399b802c48656315cac" + }, + { + "filename": "php-5.4.3.tar.gz", + "name": "PHP 5.4.3 (tar.gz)", + "md5": "c9dccc89cc89d39e84f6e6f0cf1c8a65" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.30/announcement.html b/data/releases/5.4/5.4.30/announcement.html new file mode 100644 index 0000000000..e990cae270 --- /dev/null +++ b/data/releases/5.4/5.4.30/announcement.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/5.4.30/changes.txt b/data/releases/5.4/5.4.30/changes.txt new file mode 100644 index 0000000000..87e26072f2 --- /dev/null +++ b/data/releases/5.4/5.4.30/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed BC break introduced by patch for bug #67072. (Anatol, Stas) + . Fixed bug #66622 (Closures do not correctly capture the late bound class + (static::) in some cases). (Levi Morrison) + . Fixed bug #67390 (insecure temporary file use in the configure script). + (Remi) (CVE-2014-3981) + . Fixed bug #67399 (putenv with empty variable may lead to crash). (Stas) + . Fixed bug #67498 (phpinfo() Type Confusion Information Leak Vulnerability). + (Stefan Esser) + +- CLI server: + . Fixed Bug #67406 (built-in web-server segfaults on startup). (Remi) + +- Date: + . Fixed bug #67308 (Serialize of DateTime truncates fractions of second). + (Adam) + . Fixed regression in fix for bug #67118 (constructor can't be called twice). + (Remi) + +- Fileinfo: + . Fixed bug #67326 (fileinfo: cdf_read_short_sector insufficient boundary + check). (CVE-2014-0207) + . Fixed bug #67410 (fileinfo: mconvert incorrect handling of truncated pascal + string size). (CVE-2014-3478) (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67411 (fileinfo: cdf_check_stream_offset insufficient boundary + check). (CVE-2014-3479) (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67412 (fileinfo: cdf_count_chain insufficient boundary check). + (CVE-2014-3480) (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67413 (fileinfo: cdf_read_property_info insufficient boundary + check). (CVE-2014-3487) (Francisco Alonso, Jan Kaluza, Remi) + +- Intl: + . Fixed bug #67349 (Locale::parseLocale Double Free). (Stas) + . Fixed bug #67397 (Buffer overflow in locale_get_display_name and + uloc_getDisplayName (libicu 4.8.1)). (Stas) + +- Network: + . Fixed bug #67432 (Fix potential segfault in dns_get_record()). + (CVE-2014-4049). (Sara) + +- OpenSSL: + . Fixed bug #65698 (certificates validity parsing does not work past 2050). + (Paul Oehler) + . Fixed bug #66636 (openssl_x509_parse warning with V_ASN1_GENERALIZEDTIME). + (Paul Oehler) + +- SOAP: + . Implemented FR #49898 (Add SoapClient::__getCookies()). (Boro Sitnikovski) + +- SPL: + . Fixed bug #66127 (Segmentation fault with ArrayObject unset). (Stas) + . Fixed bug #67359 (Segfault in recursiveDirectoryIterator). (Laruence) + . Fixed bug #67360 (Missing element after ArrayObject::getIterator). (Adam) + . Fixed bug #67492 (unserialize() SPL ArrayObject / SPLObjectStorage Type + Confusion) (CVE-2014-3515). (Stefan Esser) diff --git a/data/releases/5.4/5.4.30/release.json b/data/releases/5.4/5.4.30/release.json new file mode 100644 index 0000000000..7453edcc7f --- /dev/null +++ b/data/releases/5.4/5.4.30/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.30", + "date": "26 Jun 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.30.tar.bz2", + "name": "PHP 5.4.30 (tar.bz2)", + "sha256": "32b83644e42d57388d6e5ec700c3502cde5f5e1207395b1e361e4cb2ce496ce6" + }, + { + "filename": "php-5.4.30.tar.gz", + "name": "PHP 5.4.30 (tar.gz)", + "sha256": "c17da64890b728bdc146bdc69b37085412d4e2585fac98848ac2e824bb564c85" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.30 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.31/announcement.html b/data/releases/5.4/5.4.31/announcement.html new file mode 100644 index 0000000000..398694ca60 --- /dev/null +++ b/data/releases/5.4/5.4.31/announcement.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/5.4.31/changes.txt b/data/releases/5.4/5.4.31/changes.txt new file mode 100644 index 0000000000..bd95525f88 --- /dev/null +++ b/data/releases/5.4/5.4.31/changes.txt @@ -0,0 +1,39 @@ +- Core: + . Fixed bug #67428 (header('Location: foo') will override a 308-399 response + code). (Adam) + . Fixed bug #67436 (Autoloader isn't called if two method definitions don't + match). (Bob) + . Fixed bug #67091 (make install fails to install libphp5.so on FreeBSD 10.0). + (Ferenc) + . Fixed bug #67151 (strtr with empty array crashes). (Nikita) + . Fixed bug #67407 (Windows 8.1/Server 2012 R2 reported as Windows 8/Server + 2012). (Christian Wenz) + . Implemented FR #34407 (ucwords and Title Case). (Tjerk) + +- CLI server: + . Implemented FR #67429 (CLI server is missing some new HTTP response codes). + (Adam) + . Fixed bug #66830 (Empty header causes PHP built-in web server to hang). + (Adam) + +- FPM: + . Fixed bug #67530 (error_log=syslog ignored). (Remi) + . Fixed bug #67531 (syslog cannot be set in pool configuration). (Remi) + +- Intl: + . Fixed bug #67052 (NumberFormatter::parse() resets LC_NUMERIC setting). + (Stas) + +- pgsql: + . Fixed bug #67550 (Error in code "form" instead of "from", pgsql.c, line 756), + which affected builds against libpq < 7.3. (Adam) + +- Phar: + . Fixed bug #67587 (Redirection loop on nginx with FPM). (Christian Weiske) + +- Streams: + . Fixed bug #67430 (http:// wrapper doesn't follow 308 redirects). (Adam) + +- Session: + . Fixed bug #66827 (Session raises E_NOTICE when session name variable is array). + (Yasuo) diff --git a/data/releases/5.4/5.4.31/release.json b/data/releases/5.4/5.4.31/release.json new file mode 100644 index 0000000000..1999933939 --- /dev/null +++ b/data/releases/5.4/5.4.31/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.31", + "date": "24 Jul 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.31.tar.bz2", + "name": "PHP 5.4.31 (tar.bz2)", + "sha256": "5e8e491431fd1d99df925d762b05da05c80b02cb38c9b3db616e8894a307914d" + }, + { + "filename": "php-5.4.31.tar.gz", + "name": "PHP 5.4.31 (tar.gz)", + "sha256": "332f62e4f751482d40ad08544ee97e004170d0382c84d01ce8efe405d0972f66" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.31 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.32/announcement.html b/data/releases/5.4/5.4.32/announcement.html new file mode 100644 index 0000000000..f69c4f0bd5 --- /dev/null +++ b/data/releases/5.4/5.4.32/announcement.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/5.4.32/changes.txt b/data/releases/5.4/5.4.32/changes.txt new file mode 100644 index 0000000000..3975092d9e --- /dev/null +++ b/data/releases/5.4/5.4.32/changes.txt @@ -0,0 +1,51 @@ +- COM: + . Fixed missing type checks in com_event_sink. (Yussuf Khalil, Stas) + . Fixed bug #41577 (DOTNET is successful once per server run). + (Aidas Kasparas) + +- Fileinfo: + . Fixed bug #67705 (extensive backtracking in rule regular expression). + (CVE-2014-3538) (Remi) + . Fixed bug #67716 (Segfault in cdf.c). (CVE-2014-3587) (Remi) + +- GD: + . Fixed bug #66901 (php-gd 'c_color' NULL pointer dereference). + (CVE-2014-2497). (Remi) + . Fixed bug #67730 (Null byte injection possible with imagexxx functions). + (CVE-2014-5120) (Ryan Mauger) + +- LiteSpeed: + . Updated LiteSpeed SAPI code from V5.5 to V6.6 (George Wang) + +- Network: + . Fixed bug #67717 (segfault in dns_get_record). (CVE-2014-3597) (Remi) + +- Milter: + . Fixed bug #67715 (php-milter does not build and crashes randomly). (Mike) + +- OpenSSL: + . Fixed missing type checks in OpenSSL options (Yussuf Khalil, Stas). + +- Readline: + . Fixed bug #55496 (Interactive mode doesn't force a newline before the + prompt). (Bob, Johannes) + . Fixed bug #67496 (Save command history when exiting interactive shell + with control-c). (Dmitry Saprykin, Johannes) + +- Sessions: + . Fixed missing type checks in php_session_create_id. (Yussuf Khalil, Stas). + +- SPL: + . Fixed bug #67539 (ArrayIterator use-after-free due to object change during + sorting). (CVE-2014-4698) (research at insighti dot org, Laruence) + . Fixed bug #67538 (SPL Iterators use-after-free). (CVE-2014-4670) (Laruence) + +- Core: + . Fixed bug #67693 (incorrect push to the empty array) (Tjerk) + +- ODBC: + . Fixed bug #60616 (odbc_fetch_into returns junk data at end of multi-byte + char fields). (Keyur) + +- MySQLi: + . Fixed bug #67839 (mysqli does not handle 4-byte floats correctly). (Keyur) diff --git a/data/releases/5.4/5.4.32/release.json b/data/releases/5.4/5.4.32/release.json new file mode 100644 index 0000000000..c88702bb3c --- /dev/null +++ b/data/releases/5.4/5.4.32/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.32", + "date": "21 Aug 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.32.tar.bz2", + "name": "PHP 5.4.32 (tar.bz2)", + "sha256": "26d0717669a098f18cd22dc3ae8282101d38508054500c26775ddcc26ca7c826" + }, + { + "filename": "php-5.4.32.tar.gz", + "name": "PHP 5.4.32 (tar.gz)", + "sha256": "80ebdf34f91b8e1d516080363804137177368777aa9ecffee600f2957e8b0f94" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.32 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.33/announcement.html b/data/releases/5.4/5.4.33/announcement.html new file mode 100644 index 0000000000..66eac284b9 --- /dev/null +++ b/data/releases/5.4/5.4.33/announcement.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/5.4.33/changes.txt b/data/releases/5.4/5.4.33/changes.txt new file mode 100644 index 0000000000..812aadbff0 --- /dev/null +++ b/data/releases/5.4/5.4.33/changes.txt @@ -0,0 +1,25 @@ +- Core: + . Fixed bug #47358 (glob returns error, should be empty array()). (Pierre) + . Fixed bug #65463 (SIGSEGV during zend_shutdown()). (Keyur Govande) + . Fixed bug #66036 (Crash on SIGTERM in apache process). (Keyur Govande) + +- OpenSSL: + . Fixed bug #41631 (socket timeouts not honored in blocking SSL reads). + (Daniel Lowrey) + +- Date: + . Fixed bug #66091 (memory leaks in DateTime constructor). (Tjerk) + +- FPM: + . Fixed #67606 (FPM with mod_fastcgi/apache2.4 is broken). (David Zuelke) + +- GD: + . Made fontFetch's path parser thread-safe. (Sara) + +- Wddx: + . Fixed bug #67873 (Segfaults in php_wddx_serialize_var). (Anatol, Remi) + +- Zlib: + . Fixed bug #67724 (chained zlib filters silently fail with large amounts of + data). (Mike) + . Fixed bug #67865 (internal corruption phar error). (Mike) diff --git a/data/releases/5.4/5.4.33/release.json b/data/releases/5.4/5.4.33/release.json new file mode 100644 index 0000000000..649d2ef36e --- /dev/null +++ b/data/releases/5.4/5.4.33/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.33", + "date": "18 Sep 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.33.tar.bz2", + "name": "PHP 5.4.33 (tar.bz2)", + "sha256": "1a75b2d0835e74b8886cd3980d9598a0e06691441bb7f91d19b74c2278e40bb5" + }, + { + "filename": "php-5.4.33.tar.gz", + "name": "PHP 5.4.33 (tar.gz)", + "sha256": "74e542dd2f15ebbc123738a71e867d57d2996a6edb40e6ac62fcf5ab85763d19" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.33 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.34/announcement.html b/data/releases/5.4/5.4.34/announcement.html new file mode 100644 index 0000000000..bdfaca3cc9 --- /dev/null +++ b/data/releases/5.4/5.4.34/announcement.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/5.4.34/changes.txt b/data/releases/5.4/5.4.34/changes.txt new file mode 100644 index 0000000000..509c02cbd8 --- /dev/null +++ b/data/releases/5.4/5.4.34/changes.txt @@ -0,0 +1,22 @@ +- Fileinfo: + . Fixed bug #66242 (libmagic: don't assume char is signed). (ArdB) + +- Core: + . Fixed bug #67985 (Incorrect last used array index copied to new array after + unset). (Tjerk) + . Fixed bug #68044 (Integer overflow in unserialize() (32-bits only)). + (CVE-2014-3669) (Stas) + +- cURL: + . Fixed bug #68089 (NULL byte injection - cURL lib). (Stas) + +- EXIF: + . Fixed bug #68113 (Heap corruption in exif_thumbnail()). (CVE-2014-3670) + (Stas) + +- OpenSSL: + . Reverted fixes for bug #41631, due to regressions. (Stas) + +- XMLRPC: + . Fixed bug #68027 (Global buffer overflow in mkgmtime() function). + (CVE-2014-3668) (Stas) diff --git a/data/releases/5.4/5.4.34/release.json b/data/releases/5.4/5.4.34/release.json new file mode 100644 index 0000000000..ac42106a47 --- /dev/null +++ b/data/releases/5.4/5.4.34/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.34", + "date": "16 Oct 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.34.tar.bz2", + "name": "PHP 5.4.34 (tar.bz2)", + "sha256": "57d4ea10f0c18b096a7c8fd0a98dcbe40c8f4dc94453fd3ca0a10e35fb2f8234" + }, + { + "filename": "php-5.4.34.tar.gz", + "name": "PHP 5.4.34 (tar.gz)", + "sha256": "c8d909062ad7616cedb54dc03d85b40d40f6d4adce986ec8cabd9b8b94872096" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.34 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.35/announcement.html b/data/releases/5.4/5.4.35/announcement.html new file mode 100644 index 0000000000..6fb55ec8cf --- /dev/null +++ b/data/releases/5.4/5.4.35/announcement.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/5.4.35/release.json b/data/releases/5.4/5.4.35/release.json new file mode 100644 index 0000000000..d4be09ec69 --- /dev/null +++ b/data/releases/5.4/5.4.35/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.35", + "date": "13 Nov 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.35.tar.bz2", + "name": "PHP 5.4.35 (tar.bz2)", + "sha256": "8cdb4265cd0f778befacd1e6b5939ec23315fff38400e17e77a36e4c55b9746b" + }, + { + "filename": "php-5.4.35.tar.gz", + "name": "PHP 5.4.35 (tar.gz)", + "sha256": "7ecab4ebb880b6d4f68bd4e3e49d837d4704fe26d81dc992b17b74151ee950a7" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.35 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.36/announcement.html b/data/releases/5.4/5.4.36/announcement.html new file mode 100644 index 0000000000..d7d855513c --- /dev/null +++ b/data/releases/5.4/5.4.36/announcement.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/5.4.36/release.json b/data/releases/5.4/5.4.36/release.json new file mode 100644 index 0000000000..cbc331844e --- /dev/null +++ b/data/releases/5.4/5.4.36/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.36", + "date": "18 Dec 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.36.tar.bz2", + "name": "PHP 5.4.36 (tar.bz2)", + "sha256": "b0951608c3e8afb978a624c7f79a889980210f5258f666c1d997bd6491e13241" + }, + { + "filename": "php-5.4.36.tar.gz", + "name": "PHP 5.4.36 (tar.gz)", + "sha256": "e11851662222765d6ab6e671adc983c657d5358a183856b43a5bad0c612d2959" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.36 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.37/announcement.html b/data/releases/5.4/5.4.37/announcement.html new file mode 100644 index 0000000000..c706404ab5 --- /dev/null +++ b/data/releases/5.4/5.4.37/announcement.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/5.4.37/release.json b/data/releases/5.4/5.4.37/release.json new file mode 100644 index 0000000000..70f4986703 --- /dev/null +++ b/data/releases/5.4/5.4.37/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.37", + "date": "22 Jan 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.37.tar.bz2", + "name": "PHP 5.4.37 (tar.bz2)", + "sha256": "857bf6675eeb0ae9c3cd6f9ccdb2a9b7bf89dcfda7f0a80857638fe023f3a8ad" + }, + { + "filename": "php-5.4.37.tar.gz", + "name": "PHP 5.4.37 (tar.gz)", + "sha256": "6bf3b3ebefa600cfb6dd7f2678f23b17a958e82e8ce2d012286818d7c36dfd31" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.37 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.38/announcement.html b/data/releases/5.4/5.4.38/announcement.html new file mode 100644 index 0000000000..c9a0a1a268 --- /dev/null +++ b/data/releases/5.4/5.4.38/announcement.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/5.4.38/release.json b/data/releases/5.4/5.4.38/release.json new file mode 100644 index 0000000000..b0742c00a2 --- /dev/null +++ b/data/releases/5.4/5.4.38/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.38", + "date": "19 Feb 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.38.tar.bz2", + "name": "PHP 5.4.38 (tar.bz2)", + "sha256": "abf37db0cfadc9bb814f9df35f6aa966ad63f4f4c4475e432ec625568a5d3e88" + }, + { + "filename": "php-5.4.38.tar.gz", + "name": "PHP 5.4.38 (tar.gz)", + "sha256": "e694b7265f314f73c9df43538e0e54e2495cb72252e8a91c1aec66ffcf47241f" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.38 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.39/announcement.html b/data/releases/5.4/5.4.39/announcement.html new file mode 100644 index 0000000000..7c3c590e4f --- /dev/null +++ b/data/releases/5.4/5.4.39/announcement.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/5.4.39/release.json b/data/releases/5.4/5.4.39/release.json new file mode 100644 index 0000000000..5934f16cf0 --- /dev/null +++ b/data/releases/5.4/5.4.39/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.39", + "date": "19 Mar 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.39.tar.bz2", + "name": "PHP 5.4.39 (tar.bz2)", + "sha256": "7ceb76538e709c74533210ae41148d5c01c330ac8a73220954bbc4fcae69d77e" + }, + { + "filename": "php-5.4.39.tar.gz", + "name": "PHP 5.4.39 (tar.gz)", + "sha256": "9af5d2c3782aa94b7336401755dc44b62dc4ea881bf5e39540a4c7181b54d945" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.39 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.4/announcement.html b/data/releases/5.4/5.4.4/announcement.html new file mode 100644 index 0000000000..930f36cc47 --- /dev/null +++ b/data/releases/5.4/5.4.4/announcement.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/5.4.4/changes.txt b/data/releases/5.4/5.4.4/changes.txt new file mode 100644 index 0000000000..f2add439ad --- /dev/null +++ b/data/releases/5.4/5.4.4/changes.txt @@ -0,0 +1,83 @@ +- COM: + . Fixed bug #62146 com_dotnet cannot be built shared. (Johannes) + +- CLI Server: + . Implemented FR #61977 (Need CLI web-server support for files with .htm & + svg extensions). (Sixd, Laruence) + . Improved performance while sending error page, this also fixed + bug #61785 (Memory leak when access a non-exists file without router). + (Laruence) + . Fixed bug #61546 (functions related to current script failed when chdir() + in cli sapi). (Laruence, reeze.xia@gmail.com) + +- Core: + . Fixed missing bound check in iptcparse(). (chris at chiappa.net) + . Fixed CVE-2012-2143. (Solar Designer) + . Fixed bug #62097 (fix for for bug #54547). (Gustavo) + . Fixed bug #62005 (unexpected behavior when incrementally assigning to a + member of a null object). (Laruence) + . Fixed bug #61978 (Object recursion not detected for classes that implement + JsonSerializable). (Felipe) + . Fixed bug #61991 (long overflow in realpath_cache_get()). (Anatoliy) + . Fixed bug #61922 (ZTS build doesn't accept zend.script_encoding config). + (Laruence) + . Fixed bug #61827 (incorrect \e processing on Windows) (Anatoliy) + . Fixed bug #61782 (__clone/__destruct do not match other methods when checking + access controls). (Stas) + . Fixed bug #61764 ('I' unpacks n as signed if n > 2^31-1 on LP64). (Gustavo) + . Fixed bug #61761 ('Overriding' a private static method with a different + signature causes crash). (Laruence) + . Fixed bug #61730 (Segfault from array_walk modifying an array passed by + reference). (Laruence) + . Fixed bug #61728 (PHP crash when calling ob_start in request_shutdown + phase). (Laruence) + . Fixed bug #61713 (Logic error in charset detection for htmlentities). + (Anatoliy) + . Fixed bug #61660 (bin2hex(hex2bin($data)) != $data). (Nikita Popov) + . Fixed bug #61650 (ini parser crashes when using ${xxxx} ini variables + (without apache2)). (Laruence) + . Fixed bug #61605 (header_remove() does not remove all headers). (Laruence) + . Fixed bug #54547 (wrong equality of string numbers). (Gustavo) + . Fixed bug #54197 ([PATH=] sections incompatibility with user_ini.filename + set to null). (Anatoliy) + . Changed php://fd to be available only for CLI. + +- CURL: + . Fixed bug #61948 (CURLOPT_COOKIEFILE '' raises open_basedir restriction). + (Laruence) + +- Fileinfo + . Fixed bug #61812 (Uninitialised value used in libmagic). + (Laruence, Gustavo) + . Fixed bug #61566 failure caused by the posix lseek and read versions + under windows in cdf_read(). (Anatoliy) + . Fixed bug #61565 where php_stream_open_wrapper_ex tries to open a + directory descriptor under windows. (Anatoliy) + +- Intl + . Fixed bug #62082 (Memory corruption in internal function + get_icu_disp_value_src_php()). (Gustavo) + +- Libxml: + . Fixed bug #61617 (Libxml tests failed(ht is already destroyed)). + (Laruence) + +- PDO: + . Fixed bug #61755 (A parsing bug in the prepared statements can lead to + access violations). (Johannes) + +- Phar: + . Fixed bug #61065 (Secunia SA44335, CVE-2012-2386). (Rasmus) + +- Pgsql: + . Added pg_escape_identifier/pg_escape_literal. (Yasuo Ohgaki) + +- Streams: + . Fixed bug #61961 (file_get_contents leaks when access empty file with + maxlen set). (Reeze) + +- Zlib: + . Fixed bug #61820 (using ob_gzhandler will complain about headers already + sent when no compression). (Mike) + . Fixed bug #61443 (can't change zlib.output_compression on the fly). (Mike) + . Fixed bug #60761 (zlib.output_compression fails on refresh). (Mike) diff --git a/data/releases/5.4/5.4.4/release.json b/data/releases/5.4/5.4.4/release.json new file mode 100644 index 0000000000..a5db135046 --- /dev/null +++ b/data/releases/5.4/5.4.4/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.4", + "date": "14 June 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.4.tar.bz2", + "name": "PHP 5.4.4 (tar.bz2)", + "md5": "1fd98dc3f6f3805cd67bff12a26ed77f" + }, + { + "filename": "php-5.4.4.tar.gz", + "name": "PHP 5.4.4 (tar.gz)", + "md5": "8366c3626f2275ab8c7ef5e2d6bc5bd7" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.4 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.40/announcement.html b/data/releases/5.4/5.4.40/announcement.html new file mode 100644 index 0000000000..536e1a1eb2 --- /dev/null +++ b/data/releases/5.4/5.4.40/announcement.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/5.4.40/release.json b/data/releases/5.4/5.4.40/release.json new file mode 100644 index 0000000000..7b28e6b4a1 --- /dev/null +++ b/data/releases/5.4/5.4.40/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.40", + "date": "16 Apr 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.40.tar.bz2", + "name": "PHP 5.4.40 (tar.bz2)", + "sha256": "4898ffe8ac3ccb2d8cc94f7d76a9ea0414d954f5d4479895ddfccdc2e158a51a" + }, + { + "filename": "php-5.4.40.tar.gz", + "name": "PHP 5.4.40 (tar.gz)", + "sha256": "663f5d06cd648e81ba4f2d6ad621bb580d83de70240c832dae527c97954da33d" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.40 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.41/announcement.html b/data/releases/5.4/5.4.41/announcement.html new file mode 100644 index 0000000000..c435f8c54d --- /dev/null +++ b/data/releases/5.4/5.4.41/announcement.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/5.4.41/release.json b/data/releases/5.4/5.4.41/release.json new file mode 100644 index 0000000000..fb0747ad63 --- /dev/null +++ b/data/releases/5.4/5.4.41/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.41", + "date": "14 May 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.41.tar.bz2", + "name": "PHP 5.4.41 (tar.bz2)", + "sha256": "5bc4b45a1280ff80a3cf5b8563716f325cfd0121d7fd25aa54d56ff38b3b8272" + }, + { + "filename": "php-5.4.41.tar.gz", + "name": "PHP 5.4.41 (tar.gz)", + "sha256": "638cf19c865bc4eba2a4bab8952116a62691d1a72e1e2c9a9a2aadee92d1ce2e" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.41 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.42/announcement.html b/data/releases/5.4/5.4.42/announcement.html new file mode 100644 index 0000000000..16dcfb626d --- /dev/null +++ b/data/releases/5.4/5.4.42/announcement.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/5.4.42/release.json b/data/releases/5.4/5.4.42/release.json new file mode 100644 index 0000000000..a84e9a7d2c --- /dev/null +++ b/data/releases/5.4/5.4.42/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.42", + "date": "11 Jun 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.42.tar.bz2", + "name": "PHP 5.4.42 (tar.bz2)", + "sha256": "6285b2e64bfaa69e5d983d7d981b4f254f5259ad3fd591ca832722a4cc1ae0f9" + }, + { + "filename": "php-5.4.42.tar.gz", + "name": "PHP 5.4.42 (tar.gz)", + "sha256": "f0b40c097a6f11c4c2f5078d34f50fb9428d79b9e9821117bd7d6cca6af78d11" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.42 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.43/announcement.html b/data/releases/5.4/5.4.43/announcement.html new file mode 100644 index 0000000000..896bcd28b8 --- /dev/null +++ b/data/releases/5.4/5.4.43/announcement.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/5.4.43/release.json b/data/releases/5.4/5.4.43/release.json new file mode 100644 index 0000000000..b037bb8a7e --- /dev/null +++ b/data/releases/5.4/5.4.43/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.43", + "date": "09 Jul 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.43.tar.bz2", + "name": "PHP 5.4.43 (tar.bz2)", + "sha256": "25d7724fb00ad1b520f5bad2173717031153d0a8e3de2c75e7a084c76f8ecd6b" + }, + { + "filename": "php-5.4.43.tar.gz", + "name": "PHP 5.4.43 (tar.gz)", + "sha256": "cfc2176adc05f009666ecfab4a1cc66cc546c5d071245b2a048b3d113f67a2af" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.43 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.44/announcement.html b/data/releases/5.4/5.4.44/announcement.html new file mode 100644 index 0000000000..a476fc53eb --- /dev/null +++ b/data/releases/5.4/5.4.44/announcement.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/5.4.44/release.json b/data/releases/5.4/5.4.44/release.json new file mode 100644 index 0000000000..f1df89a815 --- /dev/null +++ b/data/releases/5.4/5.4.44/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.44", + "date": "06 Aug 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.44.tar.bz2", + "name": "PHP 5.4.44 (tar.bz2)", + "sha256": "8dd59e5ce9248cf36ac3de5412a518b8b24c01ace6c46ce3d12e4ce981a3856d" + }, + { + "filename": "php-5.4.44.tar.gz", + "name": "PHP 5.4.44 (tar.gz)", + "sha256": "1799998e48da3d8f34722840628e18789e26ea21741d4e498ade6749b3266602" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.44 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.45/announcement.html b/data/releases/5.4/5.4.45/announcement.html new file mode 100644 index 0000000000..911158cebc --- /dev/null +++ b/data/releases/5.4/5.4.45/announcement.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/5.4.45/release.json b/data/releases/5.4/5.4.45/release.json new file mode 100644 index 0000000000..9d5c785833 --- /dev/null +++ b/data/releases/5.4/5.4.45/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.45", + "date": "03 Sep 2015", + "tags": [], + "source": [ + { + "filename": "php-5.4.45.tar.bz2", + "name": "PHP 5.4.45 (tar.bz2)", + "sha256": "4e0d28b1554c95cfaea6fa2b64aac85433f158ce72bb571bcd5574f98f4c6582" + }, + { + "filename": "php-5.4.45.tar.gz", + "name": "PHP 5.4.45 (tar.gz)", + "sha256": "25bc4723955f4e352935258002af14a14a9810b491a19400d76fcdfa9d04b28f" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.45 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.5/announcement.html b/data/releases/5.4/5.4.5/announcement.html new file mode 100644 index 0000000000..c687ca6d0c --- /dev/null +++ b/data/releases/5.4/5.4.5/announcement.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/5.4.5/changes.txt b/data/releases/5.4/5.4.5/changes.txt new file mode 100644 index 0000000000..122b9c19e4 --- /dev/null +++ b/data/releases/5.4/5.4.5/changes.txt @@ -0,0 +1,85 @@ +- Core: + . Fixed bug #62443 (Crypt SHA256/512 Segfaults With Malformed + Salt). (Anthony Ferrara) + . Fixed bug #62432 (ReflectionMethod random corrupt memory on high + concurrent). (Johannes) + . Fixed bug #62373 (serialize() generates wrong reference to the object). + (Moriyoshi) + . Fixed bug #62357 (compile failure: (S) Arguments missing for built-in + function __memcmp). (Laruence) + . Fixed bug #61998 (Using traits with method aliases appears to result in + crash during execution). (Dmitry) + . Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that + includes a semi-colon). (Pierrick) + . Fixed potential overflow in _php_stream_scandir (CVE-2012-2688). + (Jason Powell, Stas) + +- EXIF: + . Fixed information leak in ext exif (discovered by Martin Noga, + Matthew "j00ru" Jurczyk, Gynvael Coldwind) + +- FPM: + . Fixed bug #62205 (php-fpm segfaults (null passed to strstr)). (fat) + . Fixed bug #62160 (Add process.priority to set nice(2) priorities). (fat) + . Fixed bug #62153 (when using unix sockets, multiples FPM instances + . Fixed bug #62033 (php-fpm exits with status 0 on some failures to start). + (fat) + . Fixed bug #61839 (Unable to cross-compile PHP with --enable-fpm). (fat) + . Fixed bug #61835 (php-fpm is not allowed to run as root). (fat) + . Fixed bug #61295 (php-fpm should not fail with commented 'user' + . Fixed bug #61218 (FPM drops connection while receiving some binary values + in FastCGI requests). (fat) + . Fixed bug #61045 (fpm don't send error log to fastcgi clients). (fat) + for non-root start). (fat) + . Fixed bug #61026 (FPM pools can listen on the same address). (fat) + can be launched without errors). (fat) + +- Iconv: + . Fix bug #55042 (Erealloc in iconv.c unsafe). (Stas) + +- Intl: + . Fixed bug #62083 (grapheme_extract() memory leaks). (Gustavo) + . ResourceBundle constructor now accepts NULL for the first two arguments. + (Gustavo) + . Fixed bug #62081 (IntlDateFormatter constructor leaks memory when called + twice). (Gustavo) + . Fixed bug #62070 (Collator::getSortKey() returns garbage). (Gustavo) + . Fixed bug #62017 (datefmt_create with incorrectly encoded timezone leaks + pattern). (Gustavo) + . Fixed bug #60785 (memory leak in IntlDateFormatter constructor). (Gustavo) + +- JSON: + . Fixed bug #61359 (json_encode() calls too many reallocs). (Stas) + +- libxml: + . Fixed bug #62266 (Custom extension segfaults during xmlParseFile with FPM + SAPI). (Gustavo) + +- Phar: + . Fixed bug #62227 (Invalid phar stream path causes crash). (Felipe) + +- Readline: + . Fixed bug #62186 (readline fails to compile - void function should not + return a value). (Johannes) + +- Reflection: + . Fixed bug #62384 (Attempting to invoke a Closure more than once causes + segfault). (Felipe) + . Fixed bug #62202 (ReflectionParameter::getDefaultValue() memory leaks + with constant). (Laruence) + +- Sockets: + . Fixed bug #62025 (__ss_family was changed on AIX 5.3). (Felipe) + +- SPL: + . Fixed bug #62433 (Inconsistent behavior of RecursiveDirectoryIterator to + dot files). (Laruence) + . Fixed bug #62262 (RecursiveArrayIterator does not implement Countable). + (Nikita Popov) + +- XML Writer: + . Fixed bug #62064 (memory leak in the XML Writer module). + (jean-pierre dot lozi at lip6 dot fr) + +- Zip: + . Upgraded libzip to 0.10.1 (Anatoliy) diff --git a/data/releases/5.4/5.4.5/release.json b/data/releases/5.4/5.4.5/release.json new file mode 100644 index 0000000000..1469cc017f --- /dev/null +++ b/data/releases/5.4/5.4.5/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.5", + "date": "19 July 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.5.tar.bz2", + "name": "PHP 5.4.5 (tar.bz2)", + "md5": "ffcc7f4dcf2b79d667fe0c110e6cb724" + }, + { + "filename": "php-5.4.5.tar.gz", + "name": "PHP 5.4.5 (tar.gz)", + "md5": "51fb5bf974d92359f0606dffc810735a" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.5 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.6/announcement.html b/data/releases/5.4/5.4.6/announcement.html new file mode 100644 index 0000000000..db465b8af5 --- /dev/null +++ b/data/releases/5.4/5.4.6/announcement.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/5.4.6/changes.txt b/data/releases/5.4/5.4.6/changes.txt new file mode 100644 index 0000000000..a051f307ea --- /dev/null +++ b/data/releases/5.4/5.4.6/changes.txt @@ -0,0 +1,56 @@ +- CLI Server: + . Implemented FR #62700 (have the console output 'Listening on + http://localhost:8000'). (pascal.chevrel@free.fr) + +- Core: + . Fixed bug #62661 (Interactive php-cli crashes if include() is used in + auto_prepend_file). (Laruence) + . Fixed bug #62653: (unset($array[$float]) causes a crash). (Nikita Popov, + Laruence) + . Fixed bug #62565 (Crashes due non-initialized internal properties_table). + (Felipe) + . Fixed bug #60194 (--with-zend-multibyte and --enable-debug reports LEAK + with run-test.php). (Laruence) + +- CURL: + . Fixed bug #62499 (curl_setopt($ch, CURLOPT_COOKIEFILE, "") returns false). + (r.hampartsumyan@gmail.com, Laruence) + +- DateTime: + . Fixed Bug #62500 (Segfault in DateInterval class when extended). (Laruence) + +- Fileinfo: + . Fixed bug #61964 (finfo_open with directory causes invalid free). + (reeze.xia@gmail.com) + +- Intl: + . Fixed bug #62564 (Extending MessageFormatter and adding property causes + crash). (Felipe) + +- MySQLnd: + . Fixed bug #62594 (segfault in mysqlnd_res_meta::set_mode). (Laruence) + +- readline: + . Fixed bug #62612 (readline extension compilation fails with + sapi/cli/cli.h: No such file). (Johannes) + +- Reflection: + . Implemented FR #61602 (Allow access to name of constant used as default + value). (reeze.xia@gmail.com) + +- SimpleXML: + . Implemented FR #55218 Get namespaces from current node. (Lonny) + +- SPL: + . Fixed bug #62616 (ArrayIterator::count() from IteratorIterator instance + gives Segmentation fault). (Laruence, Gustavo) + . Fixed bug #61527 (ArrayIterator gives misleading notice on next() when + moved to the end). (reeze.xia@gmail.com) + +- Streams: + . Fixed bug #62597 (segfault in php_stream_wrapper_log_error with ZTS build). + (Laruence) + +- Zlib: + . Fixed bug #55544 (ob_gzhandler always conflicts with + zlib.output_compression). (Laruence) diff --git a/data/releases/5.4/5.4.6/release.json b/data/releases/5.4/5.4.6/release.json new file mode 100644 index 0000000000..33d2ff227b --- /dev/null +++ b/data/releases/5.4/5.4.6/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.6", + "date": "16 Aug 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.6.tar.bz2", + "name": "PHP 5.4.6 (tar.bz2)", + "md5": "c9aa0f4996d1b91ee9e45afcfaeb5d2e" + }, + { + "filename": "php-5.4.6.tar.gz", + "name": "PHP 5.4.6 (tar.gz)", + "md5": "efe59afb73190c9bd6d50614998ffceb" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.6 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.7/announcement.html b/data/releases/5.4/5.4.7/announcement.html new file mode 100644 index 0000000000..3406270c1c --- /dev/null +++ b/data/releases/5.4/5.4.7/announcement.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/5.4.7/changes.txt b/data/releases/5.4/5.4.7/changes.txt new file mode 100644 index 0000000000..a59e98645b --- /dev/null +++ b/data/releases/5.4/5.4.7/changes.txt @@ -0,0 +1,67 @@ +- Core: + . Fixed bug (segfault while build with zts and GOTO vm-kind). (Laruence) + . Fixed bug #62844 (parse_url() does not recognize //). (Andrew Faulds). + . Fixed bug #62829 (stdint.h included on platform where HAVE_STDINT_H is not + set). (Felipe) + . Fixed bug #62763 (register_shutdown_function and extending class). + (Laruence) + . Fixed bug #62725 (Calling exit() in a shutdown function does not return + the exit value). (Laruence) + . Fixed bug #62744 (dangling pointers made by zend_disable_class). (Laruence) + . Fixed bug #62716 (munmap() is called with the incorrect length). + (slangley@google.com) + . Fixed bug #62358 (Segfault when using traits a lot). (Laruence) + . Fixed bug #62328 (implementing __toString and a cast to string fails) + (Laruence) + . Fixed bug #51363 (Fatal error raised by var_export() not caught by error + handler). (Lonny Kapelushnik) + . Fixed bug #40459 (Stat and Dir stream wrapper methods do not call + constructor). (Stas) + +- CURL: + . Fixed bug #62912 (CURLINFO_PRIMARY_* AND CURLINFO_LOCAL_* not exposed). + (Pierrick) + . Fixed bug #62839 (curl_copy_handle segfault with CURLOPT_FILE). (Pierrick) + +- Intl: + . Fixed Spoofchecker not being registered on ICU 49.1. (Gustavo) + . Fix bug #62933 (ext/intl compilation error on icu 3.4.1). (Gustavo) + . Fix bug #62915 (defective cloning in several intl classes). (Gustavo) + +- Installation: + . Fixed bug #62460 (php binaries installed as binary.dSYM). (Reeze Xia) + +- PCRE: + . Fixed bug #55856 (preg_replace should fail on trailing garbage). + (reg dot php at alf dot nu) + +- PDO: + . Fixed bug #62685 (Wrong return datatype in PDO::inTransaction()). (Laruence) + +- Reflection: + . Fixed bug #62892 (ReflectionClass::getTraitAliases crashes on importing + trait methods as private). (Felipe) + . Fixed bug #62715 (ReflectionParameter::isDefaultValueAvailable() wrong + result). (Laruence) + +- Session: + . Fixed bug (segfault due to retval is not initialized). (Laruence) + . Fixed bug (segfault due to PS(mod_user_implemented) not be reseted + when close handler call exit). (Laruence) + +- SOAP + . Fixed bug #50997 (SOAP Error when trying to submit 2nd Element of a choice). + (Dmitry) + +- SPL: + . Fixed bug #62904 (Crash when cloning an object which inherits SplFixedArray) + (Laruence) + . Implemented FR #62840 (Add sort flag to ArrayObject::ksort). (Laruence) + +- Standard: + . Fixed bug #62836 (Seg fault or broken object references on unserialize()). + (Laruence) + +- FPM: + . Merged PR 121 by minitux to add support for slow request counting on PHP + FPM status page. (Lars) diff --git a/data/releases/5.4/5.4.7/release.json b/data/releases/5.4/5.4.7/release.json new file mode 100644 index 0000000000..33c3c65428 --- /dev/null +++ b/data/releases/5.4/5.4.7/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.7", + "date": "13 Sep 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.7.tar.bz2", + "name": "PHP 5.4.7 (tar.bz2)", + "md5": "9cd421f1cc8fa8e7f215e44a1b06199f" + }, + { + "filename": "php-5.4.7.tar.gz", + "name": "PHP 5.4.7 (tar.gz)", + "md5": "94661b761dcfdfdd5108e8b12e0dd4f8" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.7 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.8/announcement.html b/data/releases/5.4/5.4.8/announcement.html new file mode 100644 index 0000000000..0086cf7b82 --- /dev/null +++ b/data/releases/5.4/5.4.8/announcement.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/5.4.8/changes.txt b/data/releases/5.4/5.4.8/changes.txt new file mode 100644 index 0000000000..1e9e529de5 --- /dev/null +++ b/data/releases/5.4/5.4.8/changes.txt @@ -0,0 +1,87 @@ +- CLI server: + . Implemented FR #63242 (Default error page in PHP built-in web server uses + outdated html/css). (pascal.chevrel@free.fr) + . Changed response to unknown HTTP method to 501 according to RFC. + (Niklas Lindgren). + . Support HTTP PATCH method. Patch by Niklas Lindgren, GitHub PR #190. + (Lars) + +- Core: + . Fixed bug #63219 (Segfault when aliasing trait method when autoloader + throws excpetion). (Laruence) + . Added optional second argument for assert() to specify custom message. Patch + by Lonny Kapelushnik (lonny@lonnylot.com). (Lars) + . Support building PHP with the native client toolchain. (Stuart Langley) + . Added --offline option for tests. (Remi) + . Fixed bug #63162 (parse_url does not match password component). (husman) + . Fixed bug #63111 (is_callable() lies for abstract static method). (Dmitry) + . Fixed bug #63093 (Segfault while load extension failed in zts-build). + (Laruence) + . Fixed bug #62976 (Notice: could not be converted to int when comparing + some builtin classes). (Laruence) + . Fixed bug #62955 (Only one directive is loaded from "Per Directory Values" + Windows registry). (aserbulov at parallels dot com) + . Fixed bug #62907 (Double free when use traits). (Dmitry) + . Fixed bug #61767 (Shutdown functions not called in certain error + situation). (Dmitry) + . Fixed bug #60909 (custom error handler throwing Exception + fatal error + = no shutdown function). (Dmitry) + . Fixed bug #60723 (error_log error time has changed to UTC ignoring default + timezone). (Laruence) + +- cURL: + . Fixed bug #62085 (file_get_contents a remote file by Curl wrapper will + cause cpu Soaring). (Pierrick) + +- Date: + . Fixed bug #62896 ("DateTime->modify('+0 days')" modifies DateTime object) + (Lonny Kapelushnik) + . Fixed bug #62561 (DateTime add 'P1D' adds 25 hours). (Lonny Kapelushnik) + +- DOM: + . Fixed bug #63015 (Incorrect arginfo for DOMErrorHandler). (Rob) + +- FPM: + . Fixed bug #62954 (startup problems fpm / php-fpm). (fat) + . Fixed bug #62886 (PHP-FPM may segfault/hang on startup). (fat) + . Fixed bug #63085 (Systemd integration and daemonize). (remi, fat) + . Fixed bug #62947 (Unneccesary warnings on FPM). (fat) + . Fixed bug #62887 (Only /status?plain&full gives "last request cpu"). (fat) + . Fixed bug #62216 (Add PID to php-fpm init.d script). (fat) + +- OCI8: + . Fixed bug #60901 (Improve "tail" syntax for AIX installation) (Chris Jones) + +- OpenSSL: + . Implemented FR #61421 (OpenSSL signature verification missing RMD160, + SHA224, SHA256, SHA384, SHA512). (Mark Jones) + +- PDO: + . Fixed bug #63258 (seg fault with PDO and dblib using DBSETOPT(H->link, + DBQUOTEDIDENT, 1)). (Laruence) + . Fixed bug #63235 (buffer overflow in use of SQLGetDiagRec). + (Martin Osvald, Remi) + +- PDO Firebird: + . Fixed bug #63214 (Large PDO Firebird Queries). + (james at kenjim dot com) + +- SOAP + . Fixed bug #50997 (SOAP Error when trying to submit 2nd Element of a choice). + (Dmitry) + +- SPL: + . Bug #62987 (Assigning to ArrayObject[null][something] overrides all + undefined variables). (Laruence) + +- mbstring: + . Allow passing null as a default value to mb_substr() and mb_strcut(). Patch + by Alexander Moskaliov via GitHub PR #133. (Lars) + +- Filter extension: + . Bug #49510: Boolean validation fails with FILTER_NULL_ON_FAILURE with empty + string or false. (Lars) + +- Sockets + . Fixed bug #63000 (MCAST_JOIN_GROUP on OSX is broken, merge of PR 185 by + Igor Wiedler). (Lars) diff --git a/data/releases/5.4/5.4.8/release.json b/data/releases/5.4/5.4.8/release.json new file mode 100644 index 0000000000..ab7a3c3e82 --- /dev/null +++ b/data/releases/5.4/5.4.8/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.8", + "date": "18 Oct 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.8.tar.bz2", + "name": "PHP 5.4.8 (tar.bz2)", + "md5": "bb8c816a9299be8995255ef70c63b800" + }, + { + "filename": "php-5.4.8.tar.gz", + "name": "PHP 5.4.8 (tar.gz)", + "md5": "b25b735f342efbfdcdaf00b83189f183" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.8 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.9/announcement.html b/data/releases/5.4/5.4.9/announcement.html new file mode 100644 index 0000000000..fa7a51016c --- /dev/null +++ b/data/releases/5.4/5.4.9/announcement.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.4/5.4.9/changes.txt b/data/releases/5.4/5.4.9/changes.txt new file mode 100644 index 0000000000..04863b1633 --- /dev/null +++ b/data/releases/5.4/5.4.9/changes.txt @@ -0,0 +1,54 @@ +- Core: + . Fixed bug #63305 (zend_mm_heap corrupted with traits). (Dmitry, Laruence) + . Fixed bug #63369 ((un)serialize() leaves dangling pointers, causes crashes). + (Tony, Andrew Sitnikov) + . Fixed bug #63241 (PHP fails to open Windows deduplicated files). + (daniel dot stelter-gliese at innogames dot de) + . Fixed bug #62444 (Handle leak in is_readable on windows). + (krazyest at seznam dot cz) + +- Curl: + . Fixed bug #63363 (Curl silently accepts boolean true for SSL_VERIFYHOST). + Patch by John Jawed GitHub PR #221 (Anthony) + +- Fileinfo: + . Fixed bug #63248 (Load multiple magic files from a directory under Windows). + (Anatoliy) + +- Libxml + . Fixed bug #63389 (Missing context check on libxml_set_streams_context() + causes memleak). (Laruence) + +- Mbstring: + . Fixed bug #63447 (max_input_vars doesn't filter variables when + mbstring.encoding_translation = On). (Laruence) + +- OCI8: + . Fixed bug #63265 (Add ORA-00028 to the PHP_OCI_HANDLE_ERROR macro) + (Chris Jones) + +- PCRE: + . Fixed bug #63180 (Corruption of hash tables). (Dmitry) + . Fixed bug #63055 (Segfault in zend_gc with SF2 testsuite). + (Dmitry, Laruence) + . Fixed bug #63284 (Upgrade PCRE to 8.31). (Anatoliy) + +- PDO: + . Fixed bug #63235 (buffer overflow in use of SQLGetDiagRec). + (Martin Osvald, Remi) + +- PDO_pgsql: + . Fixed bug #62593 (Emulate prepares behave strangely with PARAM_BOOL). + (Will Fitch) + +- Phar: + . Fixed bug #63297 (Phar fails to write an openssl based signature). + (Anatoliy) + +- Streams: + . Fixed bug #63240 (stream_get_line() return contains delimiter string). + (Tjerk, Gustavo) + +- Reflection: + . Fixed bug #63399 (ReflectionClass::getTraitAliases() incorrectly resolves + traitnames). (Laruence) diff --git a/data/releases/5.4/5.4.9/release.json b/data/releases/5.4/5.4.9/release.json new file mode 100644 index 0000000000..69871551f0 --- /dev/null +++ b/data/releases/5.4/5.4.9/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.9", + "date": "22 Nov 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.9.tar.bz2", + "name": "PHP 5.4.9 (tar.bz2)", + "md5": "076a9f84d861d3f664a2878d5773ba78" + }, + { + "filename": "php-5.4.9.tar.gz", + "name": "PHP 5.4.9 (tar.gz)", + "md5": "e1ac28e1cf20738f0aeeba8261aa4537" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.9 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.0/announcement.html b/data/releases/5.5/5.5.0/announcement.html new file mode 100644 index 0000000000..0b7c257eff --- /dev/null +++ b/data/releases/5.5/5.5.0/announcement.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/5.5.0/changes.txt b/data/releases/5.5/5.5.0/changes.txt new file mode 100644 index 0000000000..087095adb0 --- /dev/null +++ b/data/releases/5.5/5.5.0/changes.txt @@ -0,0 +1,426 @@ +- Core: + . Added Zend Opcache extension and enable building it by default. + More details here: https://wiki.php.net/rfc/optimizerplus. (Dmitry) + . Added generators and coroutines (https://wiki.php.net/rfc/generators). + (Nikita Popov) + . Added "finally" keyword (https://wiki.php.net/rfc/finally). (Laruence) + . Added simplified password hashing API + (https://wiki.php.net/rfc/password_hash). (Anthony Ferrara) + . Added support for constant array/string dereferencing. (Laruence) + . Added array_column function which returns a column in a multidimensional + array. https://wiki.php.net/rfc/array_column. (Ben Ramsey) + . Added boolval(). (Jille Timmermans) + . Added "Z" option to pack/unpack. (Gustavo) + . Added Generator::throw() method. (Nikita Popov) + . Added Class Name Resolution As Scalar Via "class" Keyword. + (Ralph Schindler, Nikita Popov, Lars) + . Added optional second argument for assert() to specify custom message. Patch + by Lonny Kapelushnik (lonny@lonnylot.com). (Lars) + . Added support for using empty() on the result of function calls and + other expressions (https://wiki.php.net/rfc/empty_isset_exprs). + (Nikita Popov) + . Added support for non-scalar Iterator keys in foreach + (https://wiki.php.net/rfc/foreach-non-scalar-keys). (Nikita Popov) + . Added support for list in foreach (https://wiki.php.net/rfc/foreachlist). + (Laruence) + . Added support for changing the process's title in CLI/CLI-Server SAPIs. + The implementation is more robust that the proctitle PECL module. More + details here: https://wiki.php.net/rfc/cli_process_title. (Keyur) + . Added ARMv7/v8 versions of various Zend arithmetic functions that are + implemented using inline assembler (Ard Biesheuvel) + . Added systemtap support by enabling systemtap compatible dtrace probes on + linux. (David Soria Parra) + . Optimized access to temporary and compiled VM variables. 8% less memory + reads. (Dmitry) + . The VM stacks for passing function arguments and syntaticaly nested calls + were merged into a single stack. The stack size needed for op_array + execution is calculated at compile time and preallocated at once. As result + all the stack push operatins don't require checks for stack overflow + any more. (Dmitry) + . Improve set_exception_handler while doing reset. (Laruence) + . Return previous handler when passing NULL to set_error_handler and + set_exception_handler. (Nikita Popov) + . Remove php_logo_guid(), php_egg_logo_guid(), php_real_logo_guid(), + zend_logo_guid(). (Adnrew Faulds) + . Drop Windows XP and 2003 support. (Pierre) + . Implemented FR #64175 (Added HTTP codes as of RFC 6585). (Jonh Wendell) + . Implemented FR #60738 (Allow 'set_error_handler' to handle NULL). + (Laruence, Nikita Popov) + . Implemented FR #60524 (specify temp dir by php.ini). (ALeX Kazik). + . Implemented FR #46487 (Dereferencing process-handles no longer waits on + those processes). (Jille Timmermans) + . Fixed bug #65051 (count() off by one inside unset()). (Nikita) + . Fixed bug #64988 (Class loading order affects E_STRICT warning). (Laruence) + . Fixed bug #64966 (segfault in zend_do_fcall_common_helper_SPEC). (Laruence) + . Fixed bug #64960 (Segfault in gc_zval_possible_root). (Laruence) + . Fixed bug #64936 (doc comments picked up from previous scanner run). (Stas, + Jonathan Oddy) + . Fixed bug #64934 (Apache2 TS crash with get_browser()). (Anatol) + . Fixed bug #64879 (Heap based buffer overflow in quoted_printable_encode, + CVE 2013-2110). (Stas) + . Fixed bug #64853 (Use of no longer available ini directives causes crash + on TS build). (Anatol) + . Fixed bug #64821 (Custom Exceptions crash when internal properties overridden). + (Anatol) + . Fixed bug #64720 (SegFault on zend_deactivate). (Dmitry) + . Fixed bug #64677 (execution operator `` stealing surrounding arguments). + . Fixed bug #64660 (Segfault on memory exhaustion within function definition). + (Stas, reported by Juha Kylmänen) + . Fixed bug #64578 (debug_backtrace in set_error_handler corrupts zend heap: + segfault). (Laruence) + . Fixed bug #64565 (copy doesn't report failure on partial copy). (Remi) + . Fixed bug #64555 (foreach no longer copies keys if they are interned). + (Nikita Popov) + . Fixed bugs #47675 and #64577 (fd leak on Solaris) + . Fixed bug #64544 (Valgrind warnings after using putenv). (Laruence) + . Fixed bug #64515 (Memoryleak when using the same variablename 2times in + function declaration). (Laruence) + . Fixed bug #64503 (Compilation fails with error: conflicting types for + 'zendparse'). (Laruence) + . Fixed bug #64239 (Debug backtrace changed behavior since 5.4.10 or 5.4.11). + (Dmitry, Laruence) + . Fixed bug #64523, allow XOR in php.ini. (Dejan Marjanovic, Lars) + . Fixed bug #64354 (Unserialize array of objects whose class can't + be autoloaded fail). (Laruence) + . Fixed bug #64370 (microtime(true) less than $_SERVER['REQUEST_TIME_FLOAT']). + (Anatol) + . Fixed bug #64166 (quoted-printable-encode stream filter incorrectly + discarding whitespace). (Michael M Slusarz) + (Laruence) + . Fixed bug #64142 (dval to lval different behavior on ppc64). (Remi) + . Fixed bug #64135 (Exceptions from set_error_handler are not always + propagated). (Laruence) + . Fixed bug #63980 (object members get trimmed by zero bytes). (Laruence) + . Fixed bug #63874 (Segfault if php_strip_whitespace has heredoc). (Pierrick) + . Fixed bug #63830 (Segfault on undefined function call in nested generator). + (Nikita Popov) + . Fixed bug #63822 (Crash when using closures with ArrayAccess). + (Nikita Popov) + . Fixed bug #61681 (Malformed grammar). (Nikita Popov, Etienne, Laruence) + . Fixed bug #61038 (unpack("a5", "str\0\0") does not work as expected). + (srgoogleguy, Gustavo) + . Fixed bug #61025 (__invoke() visibility not honored). (Laruence) + . Fixed bug #60833 (self, parent, static behave inconsistently + case-sensitive). (Stas, mario at include-once dot org) + . Fixed Bug #52126: timestamp for mail.log (Martin Jansen, Lars) + . Fixed bug #49348 (Uninitialized ++$foo->bar; does not cause a notice). + (Stas) + . Fixed Bug #23955: allow specifying Max-Age attribute in setcookie() (narfbg, Lars) + . Fixed bug #18556 (Engine uses locale rules to handle class names). (Stas) + . Fix undefined behavior when converting double variables to integers. + The double is now always rounded towards zero, the remainder of its division + by 2^32 or 2^64 (depending on sizeof(long)) is calculated and it's made + signed assuming a two's complement representation. (Gustavo) + . Drop support for bison < 2.4 when building PHP from GIT source. + (Laruence) + +- Apache2 Handler SAPI: + . Enabled Apache 2.4 configure option for Windows (Pierre, Anatoliy) + +- Calendar: + . Fixed bug #64895 (Integer overflow in SndToJewish). (Remi) + . Fixed bug #54254 (cal_from_jd returns month = 6 when there is only one Adar) + (Stas, Eitan Mosenkis) + +- CLI server: + . Fixed bug #64128 (buit-in web server is broken on ppc64). (Remi) + +- CURL: + . Remove curl stream wrappers. (Pierrick) + . Implemented FR #46439 - added CURLFile for safer file uploads. + (Stas) + . Added support for CURLOPT_FTP_RESPONSE_TIMEOUT, CURLOPT_APPEND, + CURLOPT_DIRLISTONLY, CURLOPT_NEW_DIRECTORY_PERMS, CURLOPT_NEW_FILE_PERMS, + CURLOPT_NETRC_FILE, CURLOPT_PREQUOTE, CURLOPT_KRBLEVEL, CURLOPT_MAXFILESIZE, + CURLOPT_FTP_ACCOUNT, CURLOPT_COOKIELIST, CURLOPT_IGNORE_CONTENT_LENGTH, + CURLOPT_CONNECT_ONLY, CURLOPT_LOCALPORT, CURLOPT_LOCALPORTRANGE, + CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPT_SSL_SESSIONID_CACHE, + CURLOPT_FTP_SSL_CCC, CURLOPT_HTTP_CONTENT_DECODING, + CURLOPT_HTTP_TRANSFER_DECODING, CURLOPT_PROXY_TRANSFER_MODE, + CURLOPT_ADDRESS_SCOPE, CURLOPT_CRLFILE, CURLOPT_ISSUERCERT, + CURLOPT_USERNAME, CURLOPT_PASSWORD, CURLOPT_PROXYUSERNAME, + CURLOPT_PROXYPASSWORD, CURLOPT_NOPROXY, CURLOPT_SOCKS5_GSSAPI_NEC, + CURLOPT_SOCKS5_GSSAPI_SERVICE, CURLOPT_TFTP_BLKSIZE, + CURLOPT_SSH_KNOWNHOSTS, CURLOPT_FTP_USE_PRET, CURLOPT_MAIL_FROM, + CURLOPT_MAIL_RCPT, CURLOPT_RTSP_CLIENT_CSEQ, CURLOPT_RTSP_SERVER_CSEQ, + CURLOPT_RTSP_SESSION_ID, CURLOPT_RTSP_STREAM_URI, CURLOPT_RTSP_TRANSPORT, + CURLOPT_RTSP_REQUEST, CURLOPT_RESOLVE, CURLOPT_ACCEPT_ENCODING, + CURLOPT_TRANSFER_ENCODING, CURLOPT_DNS_SERVERS and CURLOPT_USE_SSL. + (Pierrick) + . Added new functions curl_escape, curl_multi_setopt, curl_multi_strerror + curl_pause, curl_reset, curl_share_close, curl_share_init, + curl_share_setopt curl_strerror and curl_unescape. (Pierrick) + . Addes new curl options CURLOPT_TELNETOPTIONS, CURLOPT_GSSAPI_DELEGATION, + CURLOPT_ACCEPTTIMEOUT_MS, CURLOPT_SSL_OPTIONS, CURLOPT_TCP_KEEPALIVE, + CURLOPT_TCP_KEEPIDLE and CURLOPT_TCP_KEEPINTVL. (Pierrick) + . Fixed bug #55635 (CURLOPT_BINARYTRANSFER no longer used. The constant + still exists for backward compatibility but is doing nothing). (Pierrick) + . Fixed bug #54995 (Missing CURLINFO_RESPONSE_CODE support). (Pierrick) + +- DateTime + . Added DateTimeImmutable - a variant of DateTime that only returns the + modified state instead of changing itself. (Derick) + . Fixed bug #64825 (Invalid free when unserializing DateTimeZone). + (Anatol) + . Fixed bug #64359 (strftime crash with VS2012). (Anatol) + . Fixed bug #62852 (Unserialize Invalid Date causes crash). (Anatol) + . Fixed bug #61642 (modify("+5 weekdays") returns Sunday). + (Dmitri Iouchtchenko) + . Fixed bug #60774 (DateInterval::format("%a") is always zero when an + interval is created using the createFromDateString method) (Lonny + Kapelushnik, Derick) + . Fixed bug #54567 (DateTimeZone serialize/unserialize) (Lonny + Kapelushnik, Derick) + . Fixed bug #53437 (Crash when using unserialized DatePeriod instance). + (Gustavo, Derick, Anatol) + +- dba: + . Bug #62489: dba_insert not working as expected. + (marc-bennewitz at arcor dot de, Lars) + +- Filter: + . Implemented FR #49180 - added MAC address validation. (Martin) + +- Fileinfo: + . Upgraded libmagic to 5.14. (Anatol) + . Fixed bug #64830 (mimetype detection segfaults on mp3 file). (Anatol) + . Fixed bug #63590 (Different results in TS and NTS under Windows). + (Anatoliy) + . Fixed bug #63248 (Load multiple magic files from a directory under Windows). + (Anatoliy) + +- FPM: + . Add --with-fpm-systemd option to report health to systemd, and + systemd_interval option to configure this. The service can now use + Type=notify in the systemd unit file. (Remi) + . Ignore QUERY_STRING when sent in SCRIPT_FILENAME. (Remi) + . Log a warning when a syscall fails. (Remi) + . Implemented FR #64764 (add support for FPM init.d script). (Lior Kaplan) + . Fixed Bug #64915 (error_log ignored when daemonize=0). (Remi) + . Fixed bug #63999 (php with fpm fails to build on Solaris 10 or 11). (Adam) + . Fixed some possible memory or resource leaks and possible null dereference + detected by code coverity scan. (Remi) + +- GD: + . Fixed Bug #64962 (imagerotate produces corrupted image). (Remi) + . Fixed Bug #64961 (segfault in imagesetinterpolation). (Remi) + . Fix build with system libgd >= 2.1 which is now the minimal + version required (as build with previous version is broken). + No change when bundled libgd is used. (Ondrej Sury, Remi) + +- Hash: + . Added support for PBKDF2 via hash_pbkdf2(). (Anthony Ferrara) + . Fixed Bug #64745 (hash_pbkdf2() truncates data when using default length + and hex output). (Anthony Ferrara) + +- Intl: + . Added UConverter wrapper. + . The intl extension now requires ICU 4.0+. + . Added intl.use_exceptions INI directive, which controls what happens when + global errors are set together with intl.error_level. (Gustavo) + . MessageFormatter::format() and related functions now accepted named + arguments and mixed numeric/named arguments in ICU 4.8+. (Gustavo) + . MessageFormatter::format() and related functions now don't error out when + an insufficient argument count is provided. Instead, the placeholders will + remain unsubstituted. (Gustavo) + . MessageFormatter::parse() and MessageFormat::format() (and their static + equivalents) don't throw away better than second precision in the arguments. + (Gustavo) + . IntlDateFormatter::__construct and datefmt_create() now accept for the + $timezone argument time zone identifiers, IntlTimeZone objects, DateTimeZone + objects and NULL. (Gustavo) + . IntlDateFormatter::__construct and datefmt_create() no longer accept invalid + timezone identifiers or empty strings. (Gustavo) + . The default time zone used in IntlDateFormatter::__construct and + datefmt_create() (when the corresponding argument is not passed or NULL is + passed) is now the one given by date_default_timezone_get(), not the + default ICU time zone. (Gustavo) + . The time zone passed to the IntlDateFormatter is ignored if it is NULL and + if the calendar passed is an IntlCalendar object -- in this case, the + IntlCalendar's time zone will be used instead. Otherwise, the time zone + specified in the $timezone argument is used instead. This does not affect + old code, as IntlCalendar was introduced in this version. (Gustavo) + . IntlDateFormatter::__construct and datefmt_create() now accept for the + $calendar argument also IntlCalendar objects. (Gustavo) + . IntlDateFormatter::getCalendar() and datefmt_get_calendar() return false + if the IntlDateFormatter was set up with an IntlCalendar instead of the + constants IntlDateFormatter::GREGORIAN/TRADITIONAL. IntlCalendar did not + exist before this version. (Gustavo) + . IntlDateFormatter::setCalendar() and datefmt_set_calendar() now also accept + an IntlCalendar object, in which case its time zone is taken. Passing a + constant is still allowed, and still keeps the time zone. (Gustavo) + . IntlDateFormatter::setTimeZoneID() and datefmt_set_timezone_id() are + deprecated. Use IntlDateFormatter::setTimeZone() or datefmt_set_timezone() + instead. (Gustavo) + . IntlDateFormatter::format() and datefmt_format() now also accept an + IntlCalendar object for formatting. (Gustavo) + . Added the classes: IntlCalendar, IntlGregorianCalendar, IntlTimeZone, + IntlBreakIterator, IntlRuleBasedBreakIterator and + IntlCodePointBreakIterator. (Gustavo) + . Added the functions: intlcal_get_keyword_values_for_locale(), + intlcal_get_now(), intlcal_get_available_locales(), intlcal_get(), + intlcal_get_time(), intlcal_set_time(), intlcal_add(), + intlcal_set_time_zone(), intlcal_after(), intlcal_before(), intlcal_set(), + intlcal_roll(), intlcal_clear(), intlcal_field_difference(), + intlcal_get_actual_maximum(), intlcal_get_actual_minimum(), + intlcal_get_day_of_week_type(), intlcal_get_first_day_of_week(), + intlcal_get_greatest_minimum(), intlcal_get_least_maximum(), + intlcal_get_locale(), intlcal_get_maximum(), + intlcal_get_minimal_days_in_first_week(), intlcal_get_minimum(), + intlcal_get_time_zone(), intlcal_get_type(), + intlcal_get_weekend_transition(), intlcal_in_daylight_time(), + intlcal_is_equivalent_to(), intlcal_is_lenient(), intlcal_is_set(), + intlcal_is_weekend(), intlcal_set_first_day_of_week(), + intlcal_set_lenient(), intlcal_equals(), + intlcal_get_repeated_wall_time_option(), + intlcal_get_skipped_wall_time_option(), + intlcal_set_repeated_wall_time_option(), + intlcal_set_skipped_wall_time_option(), intlcal_from_date_time(), + intlcal_to_date_time(), intlcal_get_error_code(), + intlcal_get_error_message(), intlgregcal_create_instance(), + intlgregcal_set_gregorian_change(), intlgregcal_get_gregorian_change() and + intlgregcal_is_leap_year(). (Gustavo) + . Added the functions: intltz_create_time_zone(), intltz_create_default(), + intltz_get_id(), intltz_get_gmt(), intltz_get_unknown(), + intltz_create_enumeration(), intltz_count_equivalent_ids(), + intltz_create_time_zone_id_enumeration(), intltz_get_canonical_id(), + intltz_get_region(), intltz_get_tz_data_version(), + intltz_get_equivalent_id(), intltz_use_daylight_time(), intltz_get_offset(), + intltz_get_raw_offset(), intltz_has_same_rules(), intltz_get_display_name(), + intltz_get_dst_savings(), intltz_from_date_time_zone(), + intltz_to_date_time_zone(), intltz_get_error_code(), + intltz_get_error_message(). (Gustavo) + . Added the methods: IntlDateFormatter::formatObject(), + IntlDateFormatter::getCalendarObject(), IntlDateFormatter::getTimeZone(), + IntlDateFormatter::setTimeZone(). (Gustavo) + . Added the functions: datefmt_format_object(), datefmt_get_calendar_object(), + datefmt_get_timezone(), datefmt_set_timezone(), + datefmt_get_calendar_object(), intlcal_create_instance(). (Gustavo) + +- mbstring: + . Fixed bug #64769 (mbstring PHPTs crash on Windows x64). (Anatol) + +- MCrypt + . mcrypt_ecb(), mcrypt_cbc(), mcrypt_cfb() and mcrypt_ofb() now throw + E_DEPRECATED. (GoogleGuy) + +- mysql + . This extension is now deprecated, and deprecation warnings will be generated + when connections are established to databases via mysql_connect(), + mysql_pconnect(), or through implicit connection: use MySQLi or PDO_MySQL + instead (https://wiki.php.net/rfc/mysql_deprecation). (Adam) + . Dropped support for LOAD DATA LOCAL INFILE handlers when using libmysql. + Known for stability problems. (Andrey) + . Added support for SHA256 authentication available with MySQL 5.6.6+. + (Andrey) + +- mysqli: + . Added mysqli_begin_transaction()/mysqli::begin_transaction(). Implemented + all options, per MySQL 5.6, which can be used with START TRANSACTION, COMMIT + and ROLLBACK through options to mysqli_commit()/mysqli_rollback() and their + respective OO counterparts. They work in libmysql and mysqlnd mode. (Andrey) + . Added mysqli_savepoint(), mysqli_release_savepoint(). (Andrey) + . Fixed bug #64726 (Segfault when calling fetch_object on a use_result and DB + pointer has closed). (Laruence) + . Fixed bug #64394 (MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS undeclared when + using Connector/C). (Andrey) + +- mysqlnd + . Add new begin_transaction() call to the connection object. Implemented all + options, per MySQL 5.6, which can be used with START TRANSACTION, COMMIT + and ROLLBACK. (Andrey) + . Added mysqlnd_savepoint(), mysqlnd_release_savepoint(). (Andrey) + . Fixed bug #63530 (mysqlnd_stmt::bind_one_parameter crashes, uses wrong alloc + for stmt->param_bind). (Andrey) + . Fixed return value of mysqli_stmt_affected_rows() in the time after + prepare() and before execute(). (Andrey) + +- PCRE: + . Merged PCRE 8.32. (Anatol) + . Deprecated the /e modifier + (https://wiki.php.net/rfc/remove_preg_replace_eval_modifier). (Nikita Popov) + . Fixed bug #63284 (Upgrade PCRE to 8.31). (Anatoliy) + +- PDO: + . Fixed bug #63176 (Segmentation fault when instantiate 2 persistent PDO to + the same db server). (Laruence) + +- PDO_DBlib: + . Fixed bug #63638 (Cannot connect to SQL Server 2008 with PDO dblib). + (Stanley Sufficool) + . Fixed bug #64338 (pdo_dblib can't connect to Azure SQL). (Stanley + Sufficool) + . Fixed bug #64808 (FreeTDS PDO getColumnMeta on a prepared but not executed + statement crashes). (Stanley Sufficool) + +- PDO_pgsql: + . Fixed Bug #64949 (Buffer overflow in _pdo_pgsql_error). (Remi) + +- PDO_mysql: + . Fixed bug #48724 (getColumnMeta() doesn't return native_type for BIT, + TINYINT and YEAR). (Antony, Daniel Beardsley) + +- pgsql: + . Added pg_escape_literal() and pg_escape_identifier() (Yasuo) + . Bug #46408: Locale number format settings can cause pg_query_params to + break with numerics. (asmecher, Lars) + +- Phar: + . Fixed timestamp update on Phar contents modification. (Dmitry) + +- Readline: + . Implement FR #55694 (Expose additional readline variable to prevent + default filename completion). (Hartmel) + +- Reflection: + . Fixed bug #64007 (There is an ability to create instance of Generator by + hand). (Laruence) + +- Sockets: + . Added recvmsg() and sendmsg() wrappers. (Gustavo) + See https://wiki.php.net/rfc/sendrecvmsg + . Fixed bug #64508 (Fails to build with --disable-ipv6). (Gustavo) + . Fixed bug #64287 (sendmsg/recvmsg shutdown handler causes segfault). + (Gustavo) + +- SPL: + . Fixed bug #64997 (Segfault while using RecursiveIteratorIterator on + 64-bits systems). (Laruence) + . Fixed bug #64264 (SPLFixedArray toArray problem). (Laruence) + . Fixed bug #64228 (RecursiveDirectoryIterator always assumes SKIP_DOTS). + (patch by kriss@krizalys.com, Laruence) + . Fixed bug #64106 (Segfault on SplFixedArray[][x] = y when extended). + (Nikita Popov) + . Fix bug #60560 (SplFixedArray un-/serialize, getSize(), count() return 0, + keys are strings). (Adam) + . Fixed bug #52861 (unset fails with ArrayObject and deep arrays). + (Mike Willbanks) + . Implement FR #48358 (Add SplDoublyLinkedList::add() to insert an element + at a given offset). (Mark Baker, David Soria Parra) + +- SNMP: + . Fixed bug #64765 (Some IPv6 addresses get interpreted wrong). + (Boris Lytochkin) + . Fixed bug #64159 (Truncated snmpget). (Boris Lytochkin) + . Fixed bug #64124 (IPv6 malformed). (Boris Lytochkin) + . Fixed bug #61981 (OO API, walk: $suffix_as_key is not working correctly). + (Boris Lytochkin) + +- SOAP: + . Added SoapClient constructor option 'ssl_method' to specify ssl method. + (Eric Iversen) + +- Streams: + . Fixed bug #64770 (stream_select() fails with pipes returned by proc_open() + on Windows x64). (Anatol) + . Fixed Windows x64 version of stream_socket_pair() and improved error + handling. (Anatol Belski) + +- Tokenizer: + . Fixed bug #60097 (token_get_all fails to lex nested heredoc). (Nikita Popov) + +- Zip: + . Upgraded libzip to 0.10.1 (Anatoliy) + . Bug #64452 (Zip crash intermittently). (Anatol) + . Fixed bug #64342 (ZipArchive::addFile() has to check for file existence). + (Anatol) diff --git a/data/releases/5.5/5.5.0/release.json b/data/releases/5.5/5.5.0/release.json new file mode 100644 index 0000000000..72425f2f41 --- /dev/null +++ b/data/releases/5.5/5.5.0/release.json @@ -0,0 +1,26 @@ +{ + "version": "5.5.0", + "date": "20 Jun 2013", + "tags": [], + "source": [ + { + "filename": "php-5.5.0.tar.bz2", + "name": "PHP 5.5.0 (tar.bz2)", + "md5": "daf2d54e79def9fd0fb2ac7dfcefb7f3" + }, + { + "filename": "php-5.5.0.tar.gz", + "name": "PHP 5.5.0 (tar.gz)", + "md5": "79c4e7a8cb0f8e2e072120775b92c523" + }, + { + "filename": "php-5.5.0.tar.xz", + "name": "PHP 5.5.0 (tar.xz)", + "md5": "c7df0cb28cfff4e277fd9cd9b73cebfb" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.5", + "name": "Windows 5.5.0 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.1/announcement.html b/data/releases/5.5/5.5.1/announcement.html new file mode 100644 index 0000000000..b1f44f5619 --- /dev/null +++ b/data/releases/5.5/5.5.1/announcement.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/5.5.1/changes.txt b/data/releases/5.5/5.5.1/changes.txt new file mode 100644 index 0000000000..3ee6ec8d91 --- /dev/null +++ b/data/releases/5.5/5.5.1/changes.txt @@ -0,0 +1,76 @@ +- Core: + . Fixed bug #65254 (Exception not catchable when exception thrown in autoload + with a namespace). (Laruence) + . Fixed bug #65088 (Generated configure script is malformed on OpenBSD). + (Adam) + . Fixed bug #65108 (is_callable() triggers Fatal Error). + (David Soria Parra, Laruence) + . Fixed bug #65035 (yield / exit segfault). (Nikita) + . Fixed bug #65161 (Generator + autoload + syntax error = segfault). (Nikita) + . hex2bin() raises E_WARNING for invalid hex string. (Yasuo) + . Fixed bug #65226 (chroot() does not get enabled). (Anatol) + +- OPcache + . Fixed bug #64827 (Segfault in zval_mark_grey (zend_gc.c)). (Laruence) + . OPcache must be compatible with LiteSpeed SAPI (Dmitry) + +- CGI: + . Fixed Bug #65143 (Missing php-cgi man page). (Remi) + +- CLI server: + . Fixed bug #65066 (Cli server not responsive when responding with 422 http + status code). (Adam) + +- DateTime + . Fixed fug #65184 (strftime() returns insufficient-length string under + multibyte locales). (Anatol) + +- GD + . Fixed #65070 (bgcolor does not use the same format as the input image with + imagerotate). (Pierre) + . Fixed Bug #65060 (imagecreatefrom... crashes with user streams). (Remi) + . Fixed Bug #65084 (imagecreatefromjpeg fails with URL). (Remi) + . Fix gdImageCreateFromWebpCtx and use same logic to load WebP image + that other formats. (Remi) + +- Intl: + . Add IntlCalendar::setMinimalDaysInFirstWeek()/ + intlcal_set_minimal_days_in_first_week(). + . Fixed trailing space in name of constant IntlCalendar::FIELD_FIELD_COUNT. + . Fixed bug #62759 (Buggy grapheme_substr() on edge case). (Stas) + . Fixed bug #61860 (Offsets may be wrong for grapheme_stri* functions). + (Stas) + +- OCI8: + . Bump PECL package info version check to allow PECL installs with PHP 5.5+ + +- PDO: + . Allowed PDO_OCI to compile with Oracle Database 12c client libraries. + (Chris Jones) + +- Pgsql + . pg_unescape_bytea() raises E_WARNING for invalid inputs. (Yasuo) + +- Phar: + . Fixed Bug #65142 (Missing phar man page). (Remi) + +- Session: + . Added optional create_sid() argument to session_set_save_handler(), + SessionHandler and new SessionIdInterface. (Leigh, Arpad) + +- Sockets: + . Implemented FR #63472 (Setting SO_BINDTODEVICE with socket_set_option). + (Damjan Cvetko) + . Allowed specifying paths in the abstract namespace for the functions + socket_bind(), socket_connect() and socket_sendmsg(). (Gustavo) + . Fixed bug #65260 (sendmsg() ancillary data construction for SCM_RIGHTS is + faulty). (Gustavo) + +- SPL: + . Fixed bug #65136 (RecursiveDirectoryIterator segfault). (Laruence) + . Fixed bug #61828 (Memleak when calling Directory(Recursive)Iterator + /Spl(Temp)FileObject ctor twice). (Laruence) + +- CGI/FastCGI SAPI: + . Added PHP_FCGI_BACKLOG, overrides the default listen backlog. (Arnaud Le + Blanc) diff --git a/data/releases/5.5/5.5.1/release.json b/data/releases/5.5/5.5.1/release.json new file mode 100644 index 0000000000..91c38816e9 --- /dev/null +++ b/data/releases/5.5/5.5.1/release.json @@ -0,0 +1,26 @@ +{ + "version": "5.5.1", + "date": "18 Jul 2013", + "tags": [], + "source": [ + { + "filename": "php-5.5.1.tar.bz2", + "name": "PHP 5.5.1 (tar.bz2)", + "md5": "e6520ba8f86e03451f1e9226ca2be681" + }, + { + "filename": "php-5.5.1.tar.gz", + "name": "PHP 5.5.1 (tar.gz)", + "md5": "a7d9598c0e60b47960b8e803e51c4309" + }, + { + "filename": "php-5.5.1.tar.xz", + "name": "PHP 5.5.1 (tar.xz)", + "md5": "365403c216d22255c3aa57fe54944f8e" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.5", + "name": "Windows 5.5.1 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.10/announcement.html b/data/releases/5.5/5.5.10/announcement.html new file mode 100644 index 0000000000..0601549e81 --- /dev/null +++ b/data/releases/5.5/5.5.10/announcement.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/5.5.10/changes.txt b/data/releases/5.5/5.5.10/changes.txt new file mode 100644 index 0000000000..e22dd66d13 --- /dev/null +++ b/data/releases/5.5/5.5.10/changes.txt @@ -0,0 +1,35 @@ +- Core: + . Fixed Request #66574i (Allow multiple paths in php_ini_scanned_path). (Remi) + +- Date: + . Fixed bug #45528 (Allow the DateTimeZone constructor to accept timezones + per offset too). (Derick) + +- Fileinfo: + . Bug #66731 (file: infinite recursion) (CVE-2014-1943). (Remi) + . Fixed bug #66820 (out-of-bounds memory access in fileinfo) + (CVE-2014-2270). (Remi) + +- GD + . Fixed Bug #66815 (imagecrop(): insufficient fix for NULL defer + CVE-2013-7327). (Tomas Hoger, Remi) + +- JSON: + . Fixed bug #65753 (JsonSerializeable couldn't implement on module extension) + (chobieeee@php.net) + +- LDAP: + . Implemented ldap_modify_batch (https://wiki.php.net/rfc/ldap_modify_batch). + (Ondřej Hošek) + +- Openssl: + . Fixed bug #66501 (Add EC key support to php_openssl_is_private_key). + (Mark Zedwood) + +- PCRE: + . Upgraded to PCRE 8.34. (Anatol) + +- Pgsql: + . Added warning for dangerous client encoding and remove possible injections + for pg_insert()/pg_update()/pg_delete()/pg_select(). (Yasuo) + diff --git a/data/releases/5.5/5.5.10/release.json b/data/releases/5.5/5.5.10/release.json new file mode 100644 index 0000000000..336b68ec70 --- /dev/null +++ b/data/releases/5.5/5.5.10/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.5.10", + "date": "6 Mar 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.10.tar.bz2", + "name": "PHP 5.5.10 (tar.bz2)", + "sha256": "bb34e61f8e6f56c612867bfe85d144d5045cd5e44497539bc126a4e8c6795419" + }, + { + "filename": "php-5.5.10.tar.gz", + "name": "PHP 5.5.10 (tar.gz)", + "sha256": "abf751810593844e0897007797210828b193a213d9b204f203e0331019cadb90" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.11/announcement.html b/data/releases/5.5/5.5.11/announcement.html new file mode 100644 index 0000000000..a8fce684e2 --- /dev/null +++ b/data/releases/5.5/5.5.11/announcement.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/5.5.11/changes.txt b/data/releases/5.5/5.5.11/changes.txt new file mode 100644 index 0000000000..8f350b49d3 --- /dev/null +++ b/data/releases/5.5/5.5.11/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Allow zero length comparison in substr_compare() (Tjerk) + . Fixed bug #60602 (proc_open() changes environment array) (Tjerk) + +- SPL: + . Added feature #65545 (SplFileObject::fread()) (Tjerk) + . Fixed bug #66702 (RegexIterator::INVERT_MATCH does not invert). (Joshua + Thijssen) + +- cURL: + . Fixed bug #66109 (Can't reset CURLOPT_CUSTOMREQUEST to default behaviour) (Tjerk) + . Fix compilation on libcurl versions between 7.10.5 and 7.12.2, inclusive. + (Adam) + +- Fileinfo: + . Fixed bug #66946i (fileinfo: extensive backtracking in awk rule regular + expression). (CVE-2013-7345) (Remi) + +- FPM: + . Added clear_env configuration directive to disable clearenv() call. + (Github PR# 598, Paul Annesley) + +- GD: + . Fixed bug #66714 (imageconvolution breakage). (Brad Daily) + . Fixed bug #66869 (Invalid 2nd argument crashes imageaffinematrixget) (Pierre) + . Fixed bug #66887 (imagescale - poor quality of scaled image). (Remi) + . Fixed bug #66890 (imagescale segfault). (Remi) + . Fixed bug #66893 (imagescale ignore method argument). (Remi) + +- Hash: + . hash_pbkdf2() now works correctly if the $length argument is not specified. + (Nikita) + +- Intl: + . Fixed bug #66873 (A reproductible crash in UConverter when given invalid + encoding) (Stas) + +- Mail: + . Fixed bug #66535 (Don't add newline after X-PHP-Originating-Script) (Tjerk) + +- MySQLi: + . Fixed bug #66762 (Segfault in mysqli_stmt::bind_result() when link closed) + (Remi) + +- OPCache + . Added function opcache_is_script_cached(). (Danack) + . Added information about interned strings usage. (Terry, Julien, Dmitry) + +- Openssl: + . Fixed bug #66833 (Default disgest algo is still MD5, switch to SHA1). (Remi) + +- GMP + . Fixed bug #66872 (invalid argument crashes gmp_testbit) (Pierre) + +- SQLite: + . Updated bundled libsqlite to 3.8.3.1 (Anatol) diff --git a/data/releases/5.5/5.5.11/release.json b/data/releases/5.5/5.5.11/release.json new file mode 100644 index 0000000000..d0abf9250e --- /dev/null +++ b/data/releases/5.5/5.5.11/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.5.11", + "date": "3 Apr 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.11.tar.bz2", + "name": "PHP 5.5.11 (tar.bz2)", + "sha256": "60e14c255f2a461a7a26639b84a2fc448cc2f91c8dead0e9fd00cd8ba27a2e96" + }, + { + "filename": "php-5.5.11.tar.gz", + "name": "PHP 5.5.11 (tar.gz)", + "sha256": "a8b7bb1049732bf806e94090661f39f8359e0bf36d59ce6b98a53ea80411b450" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.12/announcement.html b/data/releases/5.5/5.5.12/announcement.html new file mode 100644 index 0000000000..692a0d257d --- /dev/null +++ b/data/releases/5.5/5.5.12/announcement.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/5.5.12/changes.txt b/data/releases/5.5/5.5.12/changes.txt new file mode 100644 index 0000000000..f6ee17c583 --- /dev/null +++ b/data/releases/5.5/5.5.12/changes.txt @@ -0,0 +1,63 @@ +- Core: + . Fixed bug #61019 (Out of memory on command stream_get_contents). (Mike) + . Fixed bug #64330 (stream_socket_server() creates wrong Abstract Namespace + UNIX sockets). (Mike) + . Fixed bug #66182 (exit in stream filter produces segfault). (Mike) + . Fixed bug #66736 (fpassthru broken). (Mike) + . Fixed bug #67024 (getimagesize should recognize BMP files with negative + height). (Gabor Buella) + . Fixed bug #67043 (substr_compare broke by previous change) (Tjerk) + . Fixed bug #67033 (Remove reference to Windows 95). (Anatol) + +- cURL: + . Fixed bug #66562 (curl_exec returns differently than curl_multi_getcontent). + (Freek Lijten) + +- Date: + . Fixed bug #66721 (__wakeup of DateTime segfaults when invalid object data is + supplied). (Boro Sitnikovski) + +- Embed: + . Fixed bug #65715 (php5embed.lib isn't provided anymore). (Anatol). + +- Fileinfo: + . Fixed bug #66987 (Memory corruption in fileinfo ext / bigendian). + (Remi) + +- FPM: + . Fixed bug #66482 (unknown entry 'priority' in php-fpm.conf). + . Fixed bug #67060 (sapi/fpm: possible privilege escalation due to insecure + default configuration) (CVE-2014-0185). (Stas) + +- JSON: + . Fixed bug #66021 (Blank line inside empty array/object when + JSON_PRETTY_PRINT is set). (Kevin Israel) + . Fixed bug #64695 (JSON_NUMERIC_CHECK has issues with strings that are + numbers plus the letter e). (Jakub Zelenka) + +- LDAP: + . Fixed issue with null bytes in LDAP bindings. (Matthew Daley) + +- mysqli: + . Fixed problem in mysqli_commit()/mysqli_rollback() with second parameter + (extra comma) and third parameters (lack of escaping). (Andrey) + +- OpenSSL: + . Fix bug #66942 (memory leak in openssl_seal()). (Chuan Ma) + . Fix bug #66952 (memory leak in openssl_open()). (Chuan Ma) + +- SimpleXML: + . Fixed bug #66084 (simplexml_load_string() mangles empty node name) + (Anatol) + +- SQLite: + . Fixed bug #66967 (Updated bundled libsqlite to 3.8.4.3). (Anatol) + +- XSL: + . Fixed bug #53965 (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/5.5.13/changes.txt b/data/releases/5.5/5.5.13/changes.txt new file mode 100644 index 0000000000..e19a2fd657 --- /dev/null +++ b/data/releases/5.5/5.5.13/changes.txt @@ -0,0 +1,49 @@ +- CLI server: + . Fixed bug #67079 (Missing MIME types for XML/XSL files). (Anatol) + +- COM: + . Fixed bug #66431 (Special Character via COM Interface (CP_UTF8)). (Anatol) + +- Core: + . Fixed bug #65701 (copy() doesn't work when destination filename is created + by tempnam()). (Boro Sitnikovski) + . Fixed bug #67072 (Echoing unserialized "SplFileObject" crash). (Anatol) + . Fixed bug #67245 (usage of memcpy() with overlapping src and dst in + zend_exceptions.c). (Bob) + . Fixed bug #67247 (spl_fixedarray_resize integer overflow). (Stas) + . Fixed bug #67249 (printf out-of-bounds read). (Stas) + . Fixed bug #67250 (iptcparse out-of-bounds read). (Stas) + . Fixed bug #67252 (convert_uudecode out-of-bounds read). (Stas) + +- Curl: + . Fixed bug #64247 (CURLOPT_INFILE doesn't allow reset). (Mike) + +- Date: + . Fixed bug #67118 (DateTime constructor crash with invalid data). (Anatol) + . Fixed bug #67251 (date_parse_from_format out-of-bounds read). (Stas) + . Fixed bug #67253 (timelib_meridian_with_check out-of-bounds read). (Stas) + +- DOM: + . Fixed bug #67081 (DOMDocumentType->internalSubset returns entire DOCTYPE tag, + not only the subset). (Anatol) + +- Fileinfo: + . Fixed bug #66307 (Fileinfo crashes with powerpoint files). (Anatol) + . Fixed bug #67327 (fileinfo: CDF infinite loop in nelements DoS) (CVE-2014-0238). + . Fixed bug #67328 (fileinfo: fileinfo: numerous file_printf calls resulting in + performance degradation) (CVE-2014-0237). + +- FPM: + . Fixed bug #66908 (php-fpm reload leaks epoll_create() file descriptor). + (Julio Pintos) + +- GD: + . Fixed bug #67248 (imageaffinematrixget missing check of parameters). (Stas) + +- PCRE: + . Fixed bug #67238 (Ungreedy and min/max quantifier bug, applied patch + from the upstream). (Anatol) + +- Phar: + . Fix bug #64498 ($phar->buildFromDirectory can't compress file with an accent + in its name). (PR #588) diff --git a/data/releases/5.5/5.5.13/release.json b/data/releases/5.5/5.5.13/release.json new file mode 100644 index 0000000000..8a7262bcf9 --- /dev/null +++ b/data/releases/5.5/5.5.13/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.5.13", + "date": "29 May 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.13.tar.bz2", + "name": "PHP 5.5.13 (tar.bz2)", + "sha256": "e58a4a754eb18d2d8b1a120cad5cce4ed24a7db5d49eca5830a40e4c8ca78b9c" + }, + { + "filename": "php-5.5.13.tar.gz", + "name": "PHP 5.5.13 (tar.gz)", + "sha256": "15e34eb7c45e66963cbece29fb41e53cc6c6e3ec4a54c291a53cf6a1527771b6" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.14/announcement.html b/data/releases/5.5/5.5.14/announcement.html new file mode 100644 index 0000000000..12b8d46a4a --- /dev/null +++ b/data/releases/5.5/5.5.14/announcement.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/5.5.14/changes.txt b/data/releases/5.5/5.5.14/changes.txt new file mode 100644 index 0000000000..1ee65721ef --- /dev/null +++ b/data/releases/5.5/5.5.14/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Fixed BC break introduced by patch for bug #67072. (Anatol, Stas) + . Fixed bug #66622 (Closures do not correctly capture the late bound class + (static::) in some cases). (Levi Morrison) + . Fixed bug #67390 (insecure temporary file use in the configure script). + (Remi) (CVE-2014-3981) + . Fixed bug #67399 (putenv with empty variable may lead to crash). (Stas) + +- CLI server: + . Fixed Bug #67406 (built-in web-server segfaults on startup). (Remi) + +- Date: + . Fixed bug #67308 (Serialize of DateTime truncates fractions of second). + (Adam) + . Fixed regression in fix for bug #67118 (constructor can't be called twice). + (Remi) + +- Fileinfo: + . Fixed bug #67326 (fileinfo: cdf_read_short_sector insufficient boundary check). + . Fixed bug #67410 (fileinfo: mconvert incorrect handling of truncated pascal + string size). (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67411 (fileinfo: cdf_check_stream_offset insufficient boundary + check). (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67412 (fileinfo: cdf_count_chain insufficient boundary check). + (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67413 (fileinfo: cdf_read_property_info insufficient boundary + check). (Francisco Alonso, Jan Kaluza, Remi) + +- LiteSpeed: + . Updated LiteSpeed SAPI code from V5.5 to V6.6 (George Wang) + +- Network: + . Fixed bug #67432 (Fix potential segfault in dns_get_record()). + (CVE-2014-4049). (Sara) + +- OPCache: + . Fixed issue #183 (TMP_VAR is not only used once). (Dmitry, Laruence) + +- OpenSSL: + . Fixed bug #65698 (certificates validity parsing does not work past 2050). + (Paul Oehler) + . Fixed bug #66636 (openssl_x509_parse warning with V_ASN1_GENERALIZEDTIME). + (Paul Oehler) + +- PDO-ODBC: + . Fixed bug #50444 (PDO-ODBC changes for 64-bit). + +- SOAP: + . Implemented FR #49898 (Add SoapClient::__getCookies()). (Boro Sitnikovski) + +- SPL: + . Fixed bug #66127 (Segmentation fault with ArrayObject unset). (Stas) + . Fixed bug #67359 (Segfault in recursiveDirectoryIterator). (Laruence) + . Fixed bug #67360 (Missing element after ArrayObject::getIterator). (Adam) + . Fixed bug #67492 (unserialize() SPL ArrayObject / SPLObjectStorage Type + Confusion). (CVE-2014-3515) (Stefan Esser) diff --git a/data/releases/5.5/5.5.14/release.json b/data/releases/5.5/5.5.14/release.json new file mode 100644 index 0000000000..2e5b3a4df7 --- /dev/null +++ b/data/releases/5.5/5.5.14/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.5.14", + "date": "26 Jun 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.14.tar.bz2", + "name": "PHP 5.5.14 (tar.bz2)", + "sha256": "df5a057877f827549e0a60b43fb01e4bd440814bcf04fbd70bacbddf74482610" + }, + { + "filename": "php-5.5.14.tar.gz", + "name": "PHP 5.5.14 (tar.gz)", + "sha256": "ef7e4f4942c5767e01b96650a5bd4178c663738436f99b5695c3144732ff7166" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.15/announcement.html b/data/releases/5.5/5.5.15/announcement.html new file mode 100644 index 0000000000..49d96ad0b5 --- /dev/null +++ b/data/releases/5.5/5.5.15/announcement.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/5.5.15/changes.txt b/data/releases/5.5/5.5.15/changes.txt new file mode 100644 index 0000000000..2f776ecfd2 --- /dev/null +++ b/data/releases/5.5/5.5.15/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Fixed bug #67428 (header('Location: foo') will override a 308-399 response + code). (Adam) + . Fixed bug #67436 (Autoloader isn't called if two method definitions don't + match). (Bob) + . Fixed bug #67091 (make install fails to install libphp5.so on FreeBSD 10.0). + (Ferenc) + . Fixed bug #67497 (eval with parse error causes segmentation fault in + generator). (Nikita) + . Fixed bug #67151 (strtr with empty array crashes). (Nikita) + . Fixed bug #67407 (Windows 8.1/Server 2012 R2 reported as Windows 8/Server + 2012). (Christian Wenz) + . Fixed bug #66608 (Incorrect behavior with nested "finally" blocks). + (Laruence, Dmitry) + . Implemented FR #34407 (ucwords and Title Case). (Tjerk) + +- CLI server: + . Implemented FR #67429 (CLI server is missing some new HTTP response codes). + (Adam) + . Fixed bug #66830 (Empty header causes PHP built-in web server to hang). + (Adam) + . Fixed bug #67594 (Unable to access to apache_request_headers() elements). + (Tjerk) + +- FPM: + . Fixed bug #67530 (error_log=syslog ignored). (Remi) + . Fixed bug #67531 (syslog cannot be set in pool configuration). (Remi) + +- Intl: + . Fixed bug #66921 (Wrong argument type hint for function + intltz_from_date_time_zone). (Stas) + . Fixed bug #67052 (NumberFormatter::parse() resets LC_NUMERIC setting). + (Stas) + +- OPCache: + . Fixed bug #67215 (php-cgi work with opcache, may be segmentation fault + happen) (Dmitry, Laruence) + +- pgsql: + . Fixed bug #67550 (Error in code "form" instead of "from", pgsql.c, line 756), + which affected builds against libpq < 7.3. (Adam) + +- Phar: + . Fixed bug #67587 (Redirection loop on nginx with FPM). (Christian Weiske) + +- SPL: + . Fixed bug #67539 (ArrayIterator use-after-free due to object change during + sorting). (CVE-2014-4698) (research at insighti dot org, Laruence) + . Fixed bug #67538 (SPL Iterators use-after-free). (CVE-2014-4670) (Laruence) + +- Streams: + . Fixed bug #67430 (http:// wrapper doesn't follow 308 redirects). (Adam) + +- Session: + . Fixed bug #66827 (Session raises E_NOTICE when session name variable is array). + (Yasuo) diff --git a/data/releases/5.5/5.5.15/release.json b/data/releases/5.5/5.5.15/release.json new file mode 100644 index 0000000000..6c69136bca --- /dev/null +++ b/data/releases/5.5/5.5.15/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.15", + "date": "24 Jul 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.15.tar.bz2", + "name": "PHP 5.5.15 (tar.bz2)", + "sha256": "00f24226b12fee27e332383b6304f1b9ed3f4d9173dd728a68c5c3f5a59b8ba7" + }, + { + "filename": "php-5.5.15.tar.gz", + "name": "PHP 5.5.15 (tar.gz)", + "sha256": "578febd686018401c4857699b29502b1aecaf82bf43525d810867f583961ac6e" + }, + { + "filename": "php-5.5.15.tar.xz", + "name": "PHP 5.5.15 (tar.xz)", + "sha256": "c20e360cf06bd4279ab423a7785d36aba0e2a9fdcd0b817883ab01cf0d914dd6" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.16/announcement.html b/data/releases/5.5/5.5.16/announcement.html new file mode 100644 index 0000000000..fdb4c107c3 --- /dev/null +++ b/data/releases/5.5/5.5.16/announcement.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/5.5.16/changes.txt b/data/releases/5.5/5.5.16/changes.txt new file mode 100644 index 0000000000..75876067fa --- /dev/null +++ b/data/releases/5.5/5.5.16/changes.txt @@ -0,0 +1,42 @@ +- COM: + . Fixed missing type checks in com_event_sink (Yussuf Khalil, Stas). + +- Fileinfo: + . Fixed bug #67705 (extensive backtracking in rule regular expression). + (CVE-2014-3538) (Remi) + . Fixed bug #67716 (Segfault in cdf.c). (CVE-2014-3587) (Remi) + +- FPM: + . Fixed bug #67635 (php links to systemd libraries without using pkg-config). + (pacho at gentoo dot org, Remi) + +- GD: + . Fixed bug #66901 (php-gd 'c_color' NULL pointer dereference). + (CVE-2014-2497) (Remi) + . Fixed bug #67730 (Null byte injection possible with imagexxx functions). + (CVE-2014-5120) (Ryan Mauger) + +- Milter: + . Fixed bug #67715 (php-milter does not build and crashes randomly). (Mike) + +- Network: + . Fixed bug #67717 (segfault in dns_get_record). (CVE-2014-3597) (Remi) + +- OpenSSL: + . Fixed missing type checks in OpenSSL options. (Yussuf Khalil, Stas) + +- readline: + . Fixed bug #55496 (Interactive mode doesn't force a newline before the + prompt). (Bob, Johannes) + . Fixed bug #67496 (Save command history when exiting interactive shell + with control-c). (Dmitry Saprykin, Johannes) + +- Sessions: + . Fixed missing type checks in php_session_create_id (Yussuf Khalil, Stas). + +- Core: + . Fixed bug #67693 (incorrect push to the empty array) (Tjerk) + +- ODBC: + . Fixed bug #60616 (odbc_fetch_into returns junk data at end of multi-byte + char fields). (Keyur) diff --git a/data/releases/5.5/5.5.16/release.json b/data/releases/5.5/5.5.16/release.json new file mode 100644 index 0000000000..20dc67c197 --- /dev/null +++ b/data/releases/5.5/5.5.16/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.16", + "date": "21 Aug 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.16.tar.bz2", + "name": "PHP 5.5.16 (tar.bz2)", + "sha256": "a1d7c4556a80bed744a348211b33bc35303edd56dd0a34e0a75a948c879cc5f6" + }, + { + "filename": "php-5.5.16.tar.gz", + "name": "PHP 5.5.16 (tar.gz)", + "sha256": "cdea80ab1b0466f4656b46155e341b700799e78569a5cc582eeaededb448086c" + }, + { + "filename": "php-5.5.16.tar.xz", + "name": "PHP 5.5.16 (tar.xz)", + "sha256": "8276e8de4928e8e7011d1ac6c841c5adfc4561c7329ef2f5e055e7f4e1af0e48" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.17/announcement.html b/data/releases/5.5/5.5.17/announcement.html new file mode 100644 index 0000000000..6fd2e069f5 --- /dev/null +++ b/data/releases/5.5/5.5.17/announcement.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/5.5.17/changes.txt b/data/releases/5.5/5.5.17/changes.txt new file mode 100644 index 0000000000..b23449a0bf --- /dev/null +++ b/data/releases/5.5/5.5.17/changes.txt @@ -0,0 +1,40 @@ +- Core: + . Fixed bug #47358 (glob returns error, should be empty array()). (Pierre) + . Fixed bug #65463 (SIGSEGV during zend_shutdown()). (Keyur Govande) + . Fixed bug #66036 (Crash on SIGTERM in apache process). (Keyur Govande) + . Fixed bug #67878 (program_prefix not honoured in man pages). (Remi) + +- COM: + . Fixed bug #41577 (DOTNET is successful once per server run) + (Aidas Kasparas) + +- FPM: + . Fixed #67606 (FPM with mod_fastcgi/apache2.4 is broken). (David Zuelke) + +- OpenSSL: + . Fixed bug #41631 (socket timeouts not honored in blocking SSL reads). + (Daniel Lowrey) + . Fixed bug #67850 (extension won't build if openssl compiled without SSLv3) + (Daniel Lowrey) + +- SPL: + . Fixed bug #67813 (CachingIterator::__construct InvalidArgumentException + wrong message). (tim_siebels_aurich at yahoo dot de) + +- Date: + . Fixed bug #66091 (memory leaks in DateTime constructor). (Tjerk) + . Fixed bug #66985 (Some timezones are no longer valid in PHP 5.5.10). + (Derick) + . Fixed bug #67109 (First uppercase letter breaks date string parsing). + (Derick) + +- GD + . Made fontFetch's path parser thread-safe. (Sara). + +- MySQLi: + . Fixed bug #67839 (mysqli does not handle 4-byte floats correctly). (Keyur) + +- Zlib: + . Fixed bug #67724 (chained zlib filters silently fail with large amounts of + data). (Mike) + . Fixed bug #67865 (internal corruption phar error). Mike diff --git a/data/releases/5.5/5.5.17/release.json b/data/releases/5.5/5.5.17/release.json new file mode 100644 index 0000000000..c2f3252cec --- /dev/null +++ b/data/releases/5.5/5.5.17/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.17", + "date": "18 Sep 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.17.tar.bz2", + "name": "PHP 5.5.17 (tar.bz2)", + "sha256": "5d81db0c8b2a68da05715c363d037922b82a45c966785d64a77482e5c01e4e1b" + }, + { + "filename": "php-5.5.17.tar.gz", + "name": "PHP 5.5.17 (tar.gz)", + "sha256": "657169be88ae70625d97bb94dd29140c2b602f1ba8d5e42ca14a400b63cf4720" + }, + { + "filename": "php-5.5.17.tar.xz", + "name": "PHP 5.5.17 (tar.xz)", + "sha256": "382b2a1cfbf67ca9e30171c9c49bfe260d5e458e07850d4b036e8430e1829093" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.18/announcement.html b/data/releases/5.5/5.5.18/announcement.html new file mode 100644 index 0000000000..441d035714 --- /dev/null +++ b/data/releases/5.5/5.5.18/announcement.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/5.5.18/changes.txt b/data/releases/5.5/5.5.18/changes.txt new file mode 100644 index 0000000000..5dd7d15abf --- /dev/null +++ b/data/releases/5.5/5.5.18/changes.txt @@ -0,0 +1,34 @@ +- Core: + . Fixed bug #67985 (Incorrect last used array index copied to new array after + unset). (Tjerk) + . Fixed bug #67739 (Windows 8.1/Server 2012 R2 OS build number reported + as 6.2 (instead of 6.3)). (Christian Wenz) + . Fixed bug #67633 (A foreach on an array returned from a function not doing + copy-on-write). (Nikita) + . Fixed bug #51800 (proc_open on Windows hangs forever). (Anatol) + . Fixed bug #68044 (Integer overflow in unserialize() (32-bits only)). + (CVE-2014-3669) (Stas) + +- cURL: + . Fixed bug #68089 (NULL byte injection - cURL lib). (Stas) + +- EXIF: + . Fixed bug #68113 (Heap corruption in exif_thumbnail()). (CVE-2014-3670) + (Stas) + +- FPM: + . Fixed bug #65641 (PHP-FPM incorrectly defines the SCRIPT_NAME variable + when using Apache, mod_proxy-fcgi and ProxyPass). (Remi) + +- OpenSSL: + . Revert regression introduced by fix of bug #41631 + +- Reflection: + . Fixed bug #68103 (Duplicate entry in Reflection for class alias). (Remi) + +- Session: + . Fixed bug #67972 (SessionHandler Invalid memory read create_sid()). (Adam) + +- XMLRPC: + . Fixed bug #68027 (Global buffer overflow in mkgmtime() function). + (CVE-2014-3668) (Stas) diff --git a/data/releases/5.5/5.5.18/release.json b/data/releases/5.5/5.5.18/release.json new file mode 100644 index 0000000000..7521409e44 --- /dev/null +++ b/data/releases/5.5/5.5.18/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.18", + "date": "16 Oct 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.18.tar.bz2", + "name": "PHP 5.5.18 (tar.bz2)", + "sha256": "f974279927b72b672dda4ef4b4362b4847fd3d19ce1d4f2e982230a4e93bb842" + }, + { + "filename": "php-5.5.18.tar.gz", + "name": "PHP 5.5.18 (tar.gz)", + "sha256": "71f6445cc21c944a3b98592193c62e29a58af3fe26d097312502b4fd400286e4" + }, + { + "filename": "php-5.5.18.tar.xz", + "name": "PHP 5.5.18 (tar.xz)", + "sha256": "ccfbf6af18d1e56145867454dcbc75d90512f40ee9d3e57fdc6cb5fe3fc9726e" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.19/announcement.html b/data/releases/5.5/5.5.19/announcement.html new file mode 100644 index 0000000000..dabcba75a1 --- /dev/null +++ b/data/releases/5.5/5.5.19/announcement.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/5.5.19/changes.txt b/data/releases/5.5/5.5.19/changes.txt new file mode 100644 index 0000000000..47fbcaee9f --- /dev/null +++ b/data/releases/5.5/5.5.19/changes.txt @@ -0,0 +1,39 @@ +- Core: + . Fixed bug #68095 (AddressSanitizer reports a heap buffer overflow in + php_getopt()). (Stas) + . Fixed bug #68118 ($a->foo .= 'test'; can leave $a->foo undefined). (Nikita) + . Fixed bug #68129 (parse_url() - incomplete support for empty usernames + and passwords) (Tjerk) + . Fixed bug #68365 (zend_mm_heap corrupted after memory overflow in + zend_hash_copy). (Dmitry) + +- CURL: + . Add CURL_SSLVERSION_TLSv1_0, CURL_SSLVERSION_TLSv1_1, and + CURL_SSLVERSION_TLSv1_2 constants if supported by libcurl (Rasmus) + +- Fileinfo: + . Fixed bug #66242 (libmagic: don't assume char is signed). (ArdB) + . Fixed bug #68283 (fileinfo: out-of-bounds read in elf note headers). + (CVE-2014-3710) (Remi) + +- FPM: + . Implemented FR #55508 (listen and listen.allowed_clients should take IPv6 + addresses). (Robin Gloster) + +- GD: + . Fixed bug #65171 (imagescale() fails without height param). (Remi) + +- GMP: + . Fixed bug #63595 (GMP memory management conflicts with other libraries + using GMP). (Remi) + +- Mysqli: + . Fixed bug #68114 (linker error on some OS X machines with fixed width + decimal support) (Keyur Govande) + +- ODBC: + . Fixed bug #68087 (ODBC not correctly reading DATE column when preceded by + a VARCHAR column) (Keyur Govande) + +- SPL: + . Fixed bug #68128 (Regression in RecursiveRegexIterator) (Tjerk) diff --git a/data/releases/5.5/5.5.19/release.json b/data/releases/5.5/5.5.19/release.json new file mode 100644 index 0000000000..df7b77a3df --- /dev/null +++ b/data/releases/5.5/5.5.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.19", + "date": "13 Nov 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.19.tar.bz2", + "name": "PHP 5.5.19 (tar.bz2)", + "sha256": "4366dbb904cba8c8dd32224ac9408495d20aecaed86a871d78df420f5a23bbff" + }, + { + "filename": "php-5.5.19.tar.gz", + "name": "PHP 5.5.19 (tar.gz)", + "sha256": "8d39f224424f37644da913353f1e773c20b7fc55bb3cc81526c18f91d1d6394e" + }, + { + "filename": "php-5.5.19.tar.xz", + "name": "PHP 5.5.19 (tar.xz)", + "sha256": "ccff8dfcd342e48a5b1e8b85c1c8c95d2e2eefab869757dcaa5224f11bb30e21" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.2/announcement.html b/data/releases/5.5/5.5.2/announcement.html new file mode 100644 index 0000000000..b9d78b0ad5 --- /dev/null +++ b/data/releases/5.5/5.5.2/announcement.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/5.5.2/changes.txt b/data/releases/5.5/5.5.2/changes.txt new file mode 100644 index 0000000000..28e87f42c0 --- /dev/null +++ b/data/releases/5.5/5.5.2/changes.txt @@ -0,0 +1,66 @@ +- Core: + . Fixed bug #65372 (Segfault in gc_zval_possible_root when return reference + fails). (Laruence) + . Fixed value of FILTER_SANITIZE_FULL_SPECIAL_CHARS constant (previously was + erroneously set to FILTER_SANITIZE_SPECIAL_CHARS value). (Andrey + avp200681 gmail com). + . Fixed bug #65304 (Use of max int in array_sum). (Laruence) + . Fixed bug #65291 (get_defined_constants() causes PHP to crash in a very + limited case). (Arpad) + . Fixed bug #62691 (solaris sed has no -i switch). (Chris Jones) + . Fixed bug #61345 (CGI mode - make install don't work). (Michael Heimpold) + . Fixed bug #61268 (--enable-dtrace leads make to clobber + Zend/zend_dtrace.d) (Chris Jones) + +- DOM: + . Added flags option to DOMDocument::schemaValidate() and + DOMDocument::schemaValidateSource(). Added LIBXML_SCHEMA_CREATE flag. + (Chris Wright) + +- OPcache: + . Added opcache.restrict_api configuration directive that may limit + usage of OPcache API functions only to particular script(s). (Dmitry) + . Added support for glob symbols in blacklist entries (?, *, **). + (Terry Elison, Dmitry) + . Fixed bug #65338 (Enabling both php_opcache and php_wincache AVs on + shutdown). (Dmitry) + +- Openssl: + . Fixed handling null bytes in subjectAltName (CVE-2013-4248). + (Christian Heimes) + +- PDO_mysql: + . Fixed bug #65299 (pdo mysql parsing errors). (Johannes) + +- Pgsql: + . Fixed bug #62978 (Disallow possible SQL injections with pg_select()/pg_update() + /pg_delete()/pg_insert()). (Yasuo) + +- Phar: + . Fixed bug #65028 (Phar::buildFromDirectory creates corrupt archives for + some specific contents). (Stas) + +- Sessions: + . Implemented strict sessions RFC (https://wiki.php.net/rfc/strict_sessions) + which protects against session fixation attacks and session collisions. + (CVE-2011-4718). (Yasuo Ohgaki) + . Fixed possible buffer overflow under Windows. Note: Not a security fix. + (Yasuo) + . Changed session.auto_start to PHP_INI_PERDIR. (Yasuo) + +- SOAP: + . Fixed bug #65018 (SoapHeader problems with SoapServer). (Dmitry) + +- SPL: + . Fixed bug #65328 (Segfault when getting SplStack object Value). (Laruence) + . Added RecursiveTreeIterator setPostfix and getPostifx methods. (Joshua + Thijssen) + . Fixed bug #61697 (spl_autoload_functions returns lambda functions + incorrectly). (Laruence) + +- Streams: + . Fixed bug #65268 (select() implementation uses outdated tick API). (Anatol) + +- Pgsql: + . Fixed bug #65336 (pg_escape_literal/identifier() scilently returns false). + (Yasuo) diff --git a/data/releases/5.5/5.5.2/release.json b/data/releases/5.5/5.5.2/release.json new file mode 100644 index 0000000000..8fbe2d5f37 --- /dev/null +++ b/data/releases/5.5/5.5.2/release.json @@ -0,0 +1,26 @@ +{ + "version": "5.5.2", + "date": "15 Aug 2013", + "tags": [], + "source": [ + { + "filename": "php-5.5.2.tar.bz2", + "name": "PHP 5.5.2 (tar.bz2)", + "md5": "caf7f4d86514a568fb3c8021b096a9f0" + }, + { + "filename": "php-5.5.2.tar.gz", + "name": "PHP 5.5.2 (tar.gz)", + "md5": "2a90884749f97868071538098b3debc1" + }, + { + "filename": "php-5.5.2.tar.xz", + "name": "PHP 5.5.2 (tar.xz)", + "md5": "95c6d7a4c36c475b10447954dea056a5" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.5", + "name": "Windows 5.5.2 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.20/announcement.html b/data/releases/5.5/5.5.20/announcement.html new file mode 100644 index 0000000000..7569a696f3 --- /dev/null +++ b/data/releases/5.5/5.5.20/announcement.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/5.5.20/changes.txt b/data/releases/5.5/5.5.20/changes.txt new file mode 100644 index 0000000000..ca2dd3b90e --- /dev/null +++ b/data/releases/5.5/5.5.20/changes.txt @@ -0,0 +1,48 @@ +- Core: + . Fixed bug #68091 (Some Zend headers lack appropriate extern "C" blocks). + (Adam) + . Fixed bug #68185 ("Inconsistent insteadof definition."- incorrectly + triggered). (Julien) + . Fixed bug #68370 ("unset($this)" can make the program crash). (Laruence) + . Fixed bug #68545 (NULL pointer dereference in unserialize.c). (Anatol) + . Fixed bug #68594 (Use after free vulnerability in unserialize()). + (CVE-2014-8142) (Stefan Esser) + +- Date: + . Fixed day_of_week function as it could sometimes return negative values + internally. (Derick) + +- FPM: + . Fixed bug #68381 (fpm_unix_init_main ignores log_level). + (David Zuelke, Remi) + . Fixed bug #68420 (listen=9000 listens to ipv6 localhost instead of all + addresses). (Remi) + . Fixed bug #68421 (access.format='%R' doesn't log ipv6 address). (Remi) + . Fixed bug #68423 (PHP-FPM will no longer load all pools). (Remi) + . Fixed bug #68428 (listen.allowed_clients is IPv4 only). (Remi) + . Fixed bug #68452 (php-fpm man page is oudated). (Remi) + . Fixed request #68458 (Change pm.start_servers default warning to + notice). (David Zuelke, Remi) + . Fixed bug #68463 (listen.allowed_clients can silently result + in no allowed access). (Remi) + . Fixed request #68391 (php-fpm conf files loading order). + (Florian Margaine, Remi) + . Fixed bug #68478 (access.log don't use prefix). (Remi) + +- Mcrypt: + . Fixed possible read after end of buffer and use after free. (Dmitry) + +- PDO_pgsql: + . Fixed bug #66584 (Segmentation fault on statement deallocation) (Matteo) + . Fixed bug #67462 (PDO_PGSQL::beginTransaction() wrongly throws exception + when not in transaction) (Matteo) + . Fixed bug #68351 (PDO::PARAM_BOOL and ATTR_EMULATE_PREPARES misbehaving) + (Matteo) + +- SOAP: + . Fixed bug #68361 (Segmentation fault on SoapClient::__getTypes). + (Laruence) + +- zlib: + . Fixed bug #53829 (Compiling PHP with large file support will replace + function gzopen by gzopen64) (Sascha Kettler, Matteo) diff --git a/data/releases/5.5/5.5.20/release.json b/data/releases/5.5/5.5.20/release.json new file mode 100644 index 0000000000..8441093aba --- /dev/null +++ b/data/releases/5.5/5.5.20/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.20", + "date": "18 Dec 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.20.tar.bz2", + "name": "PHP 5.5.20 (tar.bz2)", + "sha256": "f28a150d1cd8991bd1a41dce4fdff4e343d1dbe01a48b9b44bea74532ce0391a" + }, + { + "filename": "php-5.5.20.tar.gz", + "name": "PHP 5.5.20 (tar.gz)", + "sha256": "7454e4f2dba3b08b2c88bb178e7bf704ed100f3d7ab6b83ea5046a6e4acb7295" + }, + { + "filename": "php-5.5.20.tar.xz", + "name": "PHP 5.5.20 (tar.xz)", + "sha256": "a0649450f8b0a23cd4c9ad15d0aa271d956f9516fc37b9e9dc492459b57721c8" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.21/announcement.html b/data/releases/5.5/5.5.21/announcement.html new file mode 100644 index 0000000000..391a76468e --- /dev/null +++ b/data/releases/5.5/5.5.21/announcement.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/5.5.21/changes.txt b/data/releases/5.5/5.5.21/changes.txt new file mode 100644 index 0000000000..24050992b6 --- /dev/null +++ b/data/releases/5.5/5.5.21/changes.txt @@ -0,0 +1,93 @@ +- Core: + . Upgraded crypt_blowfish to version 1.3. (Leigh) + . Fixed bug #60704 (unlink() bug with some files path). + . Fixed bug #65419 (Inside trait, self::class != __CLASS__). (Julien) + . Fixed bug #65576 (Constructor from trait conflicts with inherited + constructor). (dunglas at gmail dot com) + . Fixed bug #55541 (errors spawn MessageBox, which blocks test automation). + (Anatol) + . Fixed bug #68297 (Application Popup provides too few information). (Anatol) + . Fixed bug #65769 (localeconv() broken in TS builds). (Anatol) + . Fixed bug #65230 (setting locale randomly broken). (Anatol) + . Fixed bug #66764 (configure doesn't define EXPANDED_DATADIR / PHP_DATADIR + correctly). (Ferenc) + . Fixed bug #68583 (Crash in timeout thread). (Anatol) + . Fixed bug #68676 (Explicit Double Free). (CVE-2014-9425) (Kalle) + . Fixed bug #68710 (Use After Free Vulnerability in PHP's unserialize()). + (CVE-2015-0231) (Stefan Esser) + +- CGI: + . Fixed bug #68618 (out of bounds read crashes php-cgi). (CVE-2014-9427) + (Stas) + +- CLI server: + . Fixed bug #68745 (Invalid HTTP requests make web server segfault). (Adam) + +- cURL: + . Fixed bug #67643 (curl_multi_getcontent returns '' when + CURLOPT_RETURNTRANSFER isn't set). (Jille Timmermans) + +- EXIF: + . Fixed bug #68799 (Free called on uninitialized pointer). (CVE-2015-0232) + (Stas) + +- Fileinfo: + . Fixed bug #68671 (incorrect expression in libmagic). + (Joshua Rogers, Anatol Belski) + . Removed readelf.c and related code from libmagic sources + (Remi, Anatol) + . Fixed bug #68735 (fileinfo out-of-bounds memory access). (CVE-2014-9652) + (Anatol) + +- FPM: + . Fixed bug #68751 (listen.allowed_clients is broken). (Remi) + +- GD: + . Fixed bug #68601 (buffer read overflow in gd_gif_in.c). (CVE-2014-9709) + (Jan Bee, Remi) + +- Mbstring: + . Fixed bug #68504 (--with-libmbfl configure option not present on Windows). + (Ashesh Vashi) + +- Mcrypt: + . Fixed possible read after end of buffer and use after free. (Dmitry) + +- Opcache: + . Fixed bug #67111 (Memory leak when using "continue 2" inside two foreach + loops). (Nikita) + +- OpenSSL: + . Fixed bug #55618 (use case-insensitive cert name matching). (Daniel Lowrey) + +- Pcntl: + . Fixed bug #60509 (pcntl_signal doesn't decrease ref-count of old handler + when setting SIG_DFL). (Julien) + +- PCRE: + . Fixed bug #66679 (Alignment Bug in PCRE 8.34 upstream). + (Rainer Jung, Anatol Belski) + +- pgsql: + . Fixed bug #68697 (lo_export return -1 on failure). (Ondřej Surý) + +- PDO: + . Fixed bug #68371 (PDO#getAttribute() cannot be called with platform-specific + attribute names). (Matteo) + +- PDO_mysql: + . Fixed bug #68424 (Add new PDO mysql connection attr to control multi + statements option). (peter dot wolanin at acquia dot com) + +- SPL: + . Fixed bug #66405 (RecursiveDirectoryIterator::CURRENT_AS_PATHNAME + breaks the RecursiveIterator). (Paul Garvin) + . Fixed bug #65213 (cannot cast SplFileInfo to boolean) (Tjerk) + . Fixed bug #68479 (Added escape parameter to SplFileObject::fputcsv). (Salathe) + +- SQLite: + . Fixed bug #68120 (Update bundled libsqlite to 3.8.7.2). (Anatol) + +- Streams: + . Fixed bug #68532 (convert.base64-encode omits padding bytes). + (blaesius at krumedia dot de) diff --git a/data/releases/5.5/5.5.21/release.json b/data/releases/5.5/5.5.21/release.json new file mode 100644 index 0000000000..f5d1373a20 --- /dev/null +++ b/data/releases/5.5/5.5.21/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.21", + "date": "22 Jan 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.21.tar.bz2", + "name": "PHP 5.5.21 (tar.bz2)", + "sha256": "62e9429975c4ca5d7067a5052d5388fbf2ac8c51eeee581d59b04cc5a8da83fe" + }, + { + "filename": "php-5.5.21.tar.gz", + "name": "PHP 5.5.21 (tar.gz)", + "sha256": "45adba5b4d2519f6174b85fd5b07a77389f397603d84084bdd26c44b3d7dc8af" + }, + { + "filename": "php-5.5.21.tar.xz", + "name": "PHP 5.5.21 (tar.xz)", + "sha256": "f2583540b2698d7d0ee9cfc071c2b56ccc64a52a2b53101511ba8df5b126d6d2" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.22/announcement.html b/data/releases/5.5/5.5.22/announcement.html new file mode 100644 index 0000000000..6da412d9ba --- /dev/null +++ b/data/releases/5.5/5.5.22/announcement.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/5.5.22/changes.txt b/data/releases/5.5/5.5.22/changes.txt new file mode 100644 index 0000000000..c56ea6e8b5 --- /dev/null +++ b/data/releases/5.5/5.5.22/changes.txt @@ -0,0 +1,67 @@ +- Core: + . Removed support for multi-line headers, as the are deprecated by RFC 7230. + (Stas) + . Fixed bug #67068 (getClosure returns somethings that's not a closure). + (Danack at basereality dot com) + . Fixed bug #68942 (Use after free vulnerability in unserialize() with + DateTimeZone). (CVE-2015-0273) (Stas) + . Fixed bug #68925 (Mitigation for CVE-2015-0235 – GHOST: glibc gethostbyname + buffer overflow). (Stas) + . Added NULL byte protection to exec, system and passthru. (Yasuo) + +- Date: + . Fixed bug #45081 (strtotime incorrectly interprets SGT time zone). (Derick) + +- Dba: + . Fixed bug #68711 (useless comparisons). (bugreports at internot dot info) + +- Enchant: + . Fixed bug #68552 (heap buffer overflow in enchant_broker_request_dict()). + (CVE-2014-9705) (Antony) + +- Fileinfo: + . Fixed bug #68827 (Double free with disabled ZMM). (Joshua Rogers) + +- FPM: + . Fixed bug #66479 (Wrong response to FCGI_GET_VALUES). (Frank Stolle) + . Fixed bug #68571 (core dump when webserver close the socket). + (redfoxli069 at gmail dot com, Laruence) + +- Libxml: + . Fixed bug #64938 (libxml_disable_entity_loader setting is shared + between threads). (Martin Jansen) + +- PDO_mysql: + . Fixed bug #68750 (PDOMysql with mysqlnd does not allow the usage of + named pipes). (steffenb198 at aol dot com) + +- Phar: + . Fixed bug #68901 (use after free). (CVE-2015-2301) + (bugreports at internot dot info) + +- Pgsql: + . Fixed Bug #65199 'pg_copy_from() modifies input array variable). (Yasuo) + +- Sqlite3: + . Fixed bug #68260 (SQLite3Result::fetchArray declares wrong + required_num_args). (Julien) + +- Mysqli: + . Fixed bug #68114 (linker error on some OS X machines with fixed + width decimal support) (Keyur Govande) + . Fixed bug #68657 (Reading 4 byte floats with Mysqli and libmysqlclient + has rounding errors) (Keyur Govande) + +- Session: + . Fixed bug #68941 (mod_files.sh is a bash-script) (bugzilla at ii.nl, Yasuo) + . Fixed Bug #66623 (no EINTR check on flock) (Yasuo) + . Fixed bug #68063 (Empty session IDs do still start sessions) (Yasuo) + +- Standard: + . Fixed bug #65272 (flock() out parameter not set correctly in windows). + (Daniel Lowrey) + . Fixed bug #69033 (Request may get env. variables from previous requests + if PHP works as FastCGI). (Anatol) + +- Streams: + . Fixed bug which caused call after final close on streams filter. (Bob) diff --git a/data/releases/5.5/5.5.22/release.json b/data/releases/5.5/5.5.22/release.json new file mode 100644 index 0000000000..b80f751bb8 --- /dev/null +++ b/data/releases/5.5/5.5.22/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.22", + "date": "20 Feb 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.22.tar.bz2", + "name": "PHP 5.5.22 (tar.bz2)", + "sha256": "c218c184bef2905bc79fcdda6040f3d1738261395fb706396935d1c6f6e162bb" + }, + { + "filename": "php-5.5.22.tar.gz", + "name": "PHP 5.5.22 (tar.gz)", + "sha256": "cb6174e1e74de233ec7b461302f823a7eacf7bcc946d347486c930e53f2b7db7" + }, + { + "filename": "php-5.5.22.tar.xz", + "name": "PHP 5.5.22 (tar.xz)", + "sha256": "5256a7e3999eb11f8b4b407408ea4780f60aa959e0c48cfcf376091e721df223" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.23/announcement.html b/data/releases/5.5/5.5.23/announcement.html new file mode 100644 index 0000000000..180cd664bd --- /dev/null +++ b/data/releases/5.5/5.5.23/announcement.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/5.5.23/changes.txt b/data/releases/5.5/5.5.23/changes.txt new file mode 100644 index 0000000000..028607f21b --- /dev/null +++ b/data/releases/5.5/5.5.23/changes.txt @@ -0,0 +1,74 @@ +- Core: + . Fixed bug #69174 (leaks when unused inner class use traits precedence). + (Laruence) + . Fixed bug #69139 (Crash in gc_zval_possible_root on unserialize). + (Laruence) + . Fixed bug #69121 (Segfault in get_current_user when script owner is not + in passwd with ZTS build). (dan at syneto dot net) + . Fixed bug #65593 (Segfault when calling ob_start from output buffering + callback). (Mike) + . Fixed bug #69017 (Fail to push to the empty array with the constant value + defined in class scope). (Laruence) + . Fixed bug #68986 (pointer returned by php_stream_fopen_temporary_file + not validated in memory.c). (nayana at ddproperty dot com) + . Fixed bug #68166 (Exception with invalid character causes segv). (Rasmus) + . Fixed bug #69141 (Missing arguments in reflection info for some builtin + functions). (kostyantyn dot lysyy at oracle dot com) + . Fixed bug #68976 (Use After Free Vulnerability in unserialize()). + (CVE-2015-2787) (Stas) + . Fixed bug #69134 (Per Directory Values overrides PHP_INI_SYSTEM + configuration options). (Anatol Belski) + . Fixed bug #69207 (move_uploaded_file allows nulls in path). (CVE-2015-2348) + (Stas) + +- CGI: + . Fixed bug #69015 (php-cgi's getopt does not see $argv). (Laruence) + +- CLI: + . Fixed bug #67741 (auto_prepend_file messes up __LINE__). (Reeze Xia) + +- cURL: + . Fixed bug #69088 (PHP_MINIT_FUNCTION does not fully initialize cURL on + Win32). (Grant Pannell) + . Add CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME constants if supported + by libcurl. (Linus Unneback) + +- Ereg: + . Fixed bug #69248 (heap overflow vulnerability in regcomp.c). (CVE-2015-2305) (Stas) + +- FPM: + . Fixed bug #68822 (request time is reset too early). (honghu069 at 163 dot com) + +- ODBC: + . Fixed bug #68964 (Allowed memory size exhausted with odbc_exec). (Anatol) + +- Opcache: + . Fixed bug #69125 (Array numeric string as key). (Laruence) + . Fixed bug #69038 (switch(SOMECONSTANT) misbehaves). (Laruence) + +- OpenSSL: + . Fixed bugs #61285, #68329, #68046, #41631 (encrypted streams don't observe + socket timeouts). (Brad Broerman) + +- pgsql: + . Fixed bug #68638 (pg_update() fails to store infinite values). + (william dot welter at 4linux dot com dot br, Laruence) + +- Readline: + . Fixed bug #69054 (Null dereference in readline_(read|write)_history() without + parameters). (Laruence) + +- SOAP: + . Fixed bug #69085 (SoapClient's __call() type confusion through + unserialize()). (CVE-2015-4147, CVE-2015-4148) + (andrea dot palazzo at truel dot it, Laruence) + +- SPL: + . Fixed bug #69108 ("Segmentation fault" when (de)serializing + SplObjectStorage). (Laruence) + . Fixed bug #68557 (RecursiveDirectoryIterator::seek(0) broken after + calling getChildren()). (Julien) + +- ZIP: + . Fixed bug #69253 (ZIP Integer Overflow leads to writing past heap + boundary). (CVE-2015-2331) (Stas) diff --git a/data/releases/5.5/5.5.23/release.json b/data/releases/5.5/5.5.23/release.json new file mode 100644 index 0000000000..69a07ecb54 --- /dev/null +++ b/data/releases/5.5/5.5.23/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.23", + "date": "20 Feb 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.23.tar.bz2", + "name": "PHP 5.5.23 (tar.bz2)", + "sha256": "a99ab264dcd40181baa9defeaa4b21eb2c20d4e9316b904cc05f628762e6ada7" + }, + { + "filename": "php-5.5.23.tar.gz", + "name": "PHP 5.5.23 (tar.gz)", + "sha256": "bf1246d4aca5b1a4e26f5cea273565ad3ee4607f20b7f28a508e3cab1a4d0c82" + }, + { + "filename": "php-5.5.23.tar.xz", + "name": "PHP 5.5.23 (tar.xz)", + "sha256": "2fc8315606cd6a51dae2e1fe9ac7a9bead76dace3eaf888ba372506695403af4" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.24/announcement.html b/data/releases/5.5/5.5.24/announcement.html new file mode 100644 index 0000000000..41210fc728 --- /dev/null +++ b/data/releases/5.5/5.5.24/announcement.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/5.5.24/changes.txt b/data/releases/5.5/5.5.24/changes.txt new file mode 100644 index 0000000000..383edc6ee7 --- /dev/null +++ b/data/releases/5.5/5.5.24/changes.txt @@ -0,0 +1,98 @@ +- Apache2handler: + . Fixed bug #69218 (potential remote code execution with apache 2.4 + apache2handler). (Gerrit Venema) + +- Core: + . Fixed bug #66609 (php crashes with __get() and ++ operator in some cases). + (Dmitry, Laruence) + . Fixed bug #67626 (User exceptions not properly handled in streams). + (Julian) + . Fixed bug #68021 (get_browser() browser_name_regex returns non-utf-8 + characters). (Tjerk) + . Fixed bug #68917 (parse_url fails on some partial urls). (Wei Dai) + . Fixed bug #69134 (Per Directory Values overrides PHP_INI_SYSTEM + configuration options). (Anatol Belski) + . Additional fix for bug #69152 (Type confusion vulnerability in + exception::getTraceAsString). (Stas) + . Fixed bug #69212 (Leaking VIA_HANDLER func when exception thrown in + __call/... arg passing). (Nikita) + . Fixed bug #69221 (Segmentation fault when using a generator in combination + with an Iterator). (Nikita) + . Fixed bug #69337 (php_stream_url_wrap_http_ex() type-confusion + vulnerability). (Stas) + . Fixed bug #69353 (Missing null byte checks for paths in various PHP + extensions). (Stas) + +- cURL: + . Implemented FR#69278 (HTTP2 support). (Masaki Kagaya) + . Fixed bug #68739 (Missing break / control flow). (Laruence) + . Fixed bug #69316 (Use-after-free in php_curl related to + CURLOPT_FILE/_INFILE/_WRITEHEADER). (Laruence) + +- Date: + . Export date_get_immutable_ce so that it can be used by extensions. (Derick + Rethans) + . Fixed bug #69336 (Issues with "last day ofThe 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/5.5.25/changes.txt b/data/releases/5.5/5.5.25/changes.txt new file mode 100644 index 0000000000..57b0c5c9d3 --- /dev/null +++ b/data/releases/5.5/5.5.25/changes.txt @@ -0,0 +1,44 @@ +- Core: + . Fixed bug #69364 (PHP Multipart/form-data remote dos Vulnerability). + (CVE-2015-4024) (Stas) + . Fixed bug #69403 (str_repeat() sign mismatch based memory corruption). + (Stas) + . Fixed bug #69418 (CVE-2006-7243 fix regressions in 5.4+). (CVE-2015-4025) + (Stas) + . Fixed bug #69522 (heap buffer overflow in unpack()). (Stas) + . Fixed bug #69467 (Wrong checked for the interface by using Trait). + (Laruence) + . Fixed bug #69420 (Invalid read in zend_std_get_method). (Laruence) + . Fixed bug #60022 ("use statement [...] has no effect" depends on leading + backslash). (Nikita) + . Fixed bug #67314 (Segmentation fault in gc_remove_zval_from_buffer). + (Dmitry) + . Fixed bug #68652 (segmentation fault in destructor). (Dmitry) + . Fixed bug #69419 (Returning compatible sub generator produces a warning). + (Nikita) + . Fixed bug #69472 (php_sys_readlink ignores misc errors from + GetFinalPathNameByHandleA). (Jan Starke) + +- FTP: + . Fixed bug #69545 (Integer overflow in ftp_genlist() resulting in heap + overflow). (CVE-2015-4022) (Stas) + +- ODBC: + . Fixed bug #69354 (Incorrect use of SQLColAttributes with ODBC 3.0). + (Anatol) + . Fixed bug #69474 (ODBC: Query with same field name from two tables returns + incorrect result). (Anatol) + . Fixed bug #69381 (out of memory with sage odbc driver). (Frederic Marchall, + Anatol Belski) + +- OpenSSL: + . Fixed bug #69402 (Reading empty SSL stream hangs until timeout). + (Daniel Lowrey) + +- PCNTL: + . Fixed bug #68598 (pcntl_exec() should not allow null char). (CVE-2015-4026) + (Stas) + +- Phar: + . Fixed bug #69453 (Memory Corruption in phar_parse_tarfile when entry + filename starts with null). (CVE-2015-4021) (Stas) diff --git a/data/releases/5.5/5.5.25/release.json b/data/releases/5.5/5.5.25/release.json new file mode 100644 index 0000000000..bdfe0e18fd --- /dev/null +++ b/data/releases/5.5/5.5.25/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.25", + "date": "14 May 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.25.tar.bz2", + "name": "PHP 5.5.25 (tar.bz2)", + "sha256": "68df37e725ddd05675c0df906041038127938ecc52113a54d10e1e4029262c63" + }, + { + "filename": "php-5.5.25.tar.gz", + "name": "PHP 5.5.25 (tar.gz)", + "sha256": "c9397f60bff139e0df441c5e2766108c5bc7ad690de136eb9f5b2f9bbf771240" + }, + { + "filename": "php-5.5.25.tar.xz", + "name": "PHP 5.5.25 (tar.xz)", + "sha256": "ac10015dddfc103b58ccc949504bd50f0d79d0abe74a0cc7842251af06ce8b07" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.26/announcement.html b/data/releases/5.5/5.5.26/announcement.html new file mode 100644 index 0000000000..265da968f4 --- /dev/null +++ b/data/releases/5.5/5.5.26/announcement.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/5.5.26/changes.txt b/data/releases/5.5/5.5.26/changes.txt new file mode 100644 index 0000000000..b28e0bc3db --- /dev/null +++ b/data/releases/5.5/5.5.26/changes.txt @@ -0,0 +1,47 @@ +- Core: + . Fixed bug #69566 (Conditional jump or move depends on uninitialised value + in extension trait). (jbboehr at gmail dot com) + . Fixed bug #66048 (temp. directory is cached during multiple requests). + (Julien) + . Fixed bug #69628 (complex GLOB_BRACE fails on Windows). + (Christoph M. Becker) + . Improved fix for bug #69545 (Integer overflow in ftp_genlist() resulting in + heap overflow). (CVE-2015-4643) (Max Spelsberg) + . Fixed bug #69646 (OS command injection vulnerability in escapeshellarg). + (CVE-2015-4642) (Anatol Belski) + . Fixed bug #69719 (Incorrect handling of paths with NULs). (CVE-2015-4598) + (Stas) + +- GD: + . Fixed bug #69479 (GD fails to build with newer libvpx). (Remi) + +- Iconv: + . Fixed bug #48147 (iconv with //IGNORE cuts the string). (Stas) + +- Litespeed SAPI: + . Fixed bug #68812 (Unchecked return value). (George Wang) + +- Mail: + . Fixed bug #68776 (mail() does not have mail header injection prevention for + additional headers). (Yasuo) + +- MCrypt: + . Added file descriptor caching to mcrypt_create_iv() (Leigh) + +- PCRE: + . Upgraded pcrelib to 8.37. (CVE-2015-2325, CVE-2015-2326) + +- Phar: + . Fixed bug #69680 (phar symlink in binary directory broken). + (Matteo Bernardini, Remi) + +- Postgres: + . Fixed bug #69667 (segfault in php_pgsql_meta_data). (CVE-2015-4644) (Remi) + +- Opcache + . Fixed bug #69549 (Memory leak with opcache.optimization_level=0xFFFFFFFF). + (Laruence, Dmitry) + +- Sqlite3: + . Upgrade bundled sqlite to 3.8.10.2. (CVE-2015-3414, CVE-2015-3415, + CVE-2015-3416) (Kaplan) diff --git a/data/releases/5.5/5.5.26/release.json b/data/releases/5.5/5.5.26/release.json new file mode 100644 index 0000000000..302264993d --- /dev/null +++ b/data/releases/5.5/5.5.26/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.26", + "date": "11 Jun 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.26.tar.bz2", + "name": "PHP 5.5.26 (tar.bz2)", + "sha256": "816afffdb03ff4c542bc172a2f77f9c69b817df82d60cce05c1b4f578c2c926e" + }, + { + "filename": "php-5.5.26.tar.gz", + "name": "PHP 5.5.26 (tar.gz)", + "sha256": "bee980d433bab99d07ee2bf6f2dcb87d746e49d57adec7d0ce7edb39306695ec" + }, + { + "filename": "php-5.5.26.tar.xz", + "name": "PHP 5.5.26 (tar.xz)", + "sha256": "97672c41cf2f95628dbffb63648147b43b23ea41b99ad22ccf5f4fe9b6e91b51" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.27/announcement.html b/data/releases/5.5/5.5.27/announcement.html new file mode 100644 index 0000000000..b82414b76d --- /dev/null +++ b/data/releases/5.5/5.5.27/announcement.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/5.5.27/changes.txt b/data/releases/5.5/5.5.27/changes.txt new file mode 100644 index 0000000000..d2abb388e1 --- /dev/null +++ b/data/releases/5.5/5.5.27/changes.txt @@ -0,0 +1,53 @@ +- Core: + . Fixed bug #69768 (escapeshell*() doesn't cater to !). (cmb) + . Fixed bug #69703 (Use __builtin_clzl on PowerPC). + (dja at axtens dot net, Kalle) + . Fixed bug #69732 (can induce segmentation fault with basic php code). + (Dmitry) + . Fixed bug #69642 (Windows 10 reported as Windows 8). + (Christian Wenz, Anatol Belski) + . Fixed bug #69551 (parse_ini_file() and parse_ini_string() segmentation + fault). (Christoph M. Becker) + . Fixed bug #69781 (phpinfo() reports Professional Editions of Windows + 7/8/8.1/10 as "Business"). (Christian Wenz) + . Fixed bug #69835 (phpinfo() does not report many Windows SKUs). + (Christian Wenz) + . Fixed bug #69892 (Different arrays compare indentical due to integer key + truncation). (Nikita) + . Fixed bug #69874 (Can't set empty additional_headers for mail()), regression + from fix to bug #68776. (Yasuo) + +- GD: + . Fixed bug #61221 (imagegammacorrect function loses alpha channel). (cmb) + +- Mysqlnd: + . Fixed bug #69669 (mysqlnd is vulnerable to BACKRONYM) (CVE-2015-3152). + (Andrey) + +- PCRE: + . Fixed Bug #53823 (preg_replace: * qualifier on unicode replace garbles the + string). (cmb) + . Fixed bug #69864 (Segfault in preg_replace_callback) (cmb, ab) + +- PDO_pgsql: + . Fixed bug #69752 (PDOStatement::execute() leaks memory with DML + Statements when closeCuror() is u). (Philip Hofstetter) + . Fixed bug #69362 (PDO-pgsql fails to connect if password contains a + leading single quote). (Matteo) + . Fixed bug #69344 (PDO PgSQL Incorrect binding numeric array with gaps). + (Matteo) + +- Phar: + . Fixed bug #69958 (Segfault in Phar::convertToData on invalid file). + (CVE-2015-5589) (Stas) + . Fixed bug #69923 (Buffer overflow and stack smashing error in + phar_fix_filepath). (CVE-2015-5590) (Stas) + +- SimpleXML: + . Refactored the fix for bug #66084 (simplexml_load_string() mangles empty + node name). (Christoph Michael Becker) + +- SPL: + . Fixed bug #69737 (Segfault when SplMinHeap::compare produces fatal error). + (Stas) + . Fixed bug #67805 (SplFileObject setMaxLineLength). (Willian Gustavo Veiga). diff --git a/data/releases/5.5/5.5.27/release.json b/data/releases/5.5/5.5.27/release.json new file mode 100644 index 0000000000..4269dbf158 --- /dev/null +++ b/data/releases/5.5/5.5.27/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.27", + "date": "09 Jul 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.27.tar.bz2", + "name": "PHP 5.5.27 (tar.bz2)", + "sha256": "c4b4c6a534c0ca67a9ae39bec4f51e52d13e820135dd016eae230e15337e1f70" + }, + { + "filename": "php-5.5.27.tar.gz", + "name": "PHP 5.5.27 (tar.gz)", + "sha256": "57cc716ebb37a62654c154582e48a282055b08ce91995c79b0be41b9940237f0" + }, + { + "filename": "php-5.5.27.tar.xz", + "name": "PHP 5.5.27 (tar.xz)", + "sha256": "7ee398058067a7d8184e402fcdccb25003852cb8dc94eefa3cda051a3e47fdd8" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.28/announcement.html b/data/releases/5.5/5.5.28/announcement.html new file mode 100644 index 0000000000..ab982d77f7 --- /dev/null +++ b/data/releases/5.5/5.5.28/announcement.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/5.5.28/changes.txt b/data/releases/5.5/5.5.28/changes.txt new file mode 100644 index 0000000000..de3d245ee8 --- /dev/null +++ b/data/releases/5.5/5.5.28/changes.txt @@ -0,0 +1,31 @@ +- Core: + . Fixed bug #69793 (Remotely triggerable stack exhaustion via recursive + method calls). (Stas) + . Fixed bug #69892 (Different arrays compare indentical due to integer key + truncation). (Nikita) + . Fixed bug #70002 (TS issues with temporary dir handling). (Anatol) + . Fixed bug #70121 (unserialize() could lead to unexpected methods execution + / NULL pointer deref). (Stas) + +- OpenSSL: + . Fixed bug #70014 (openssl_random_pseudo_bytes() is not cryptographically + secure). (CVE-2015-8867) (Stas) + +- Phar: + . Improved fix for bug #69441. (Anatol Belski) + . Fixed bug #70019 (Files extracted from archive may be placed outside of + destination directory). (CVE-2015-6833) (Anatol Belski) + +- SOAP: + . Fixed bug #70081 (SoapClient info leak / null pointer dereference via + multiple type confusions). (Stas) + +- SPL: + . Fixed bug #70068 (Dangling pointer in the unserialization of ArrayObject + items). (CVE-2015-6832) (sean.heelan) + . Fixed bug #70166 (Use After Free Vulnerability in unserialize() with + SPLArrayObject). (CVE-2015-6831) (taoguangchen at icloud dot com) + . Fixed bug #70168 (Use After Free Vulnerability in unserialize() with + SplObjectStorage). (CVE-2015-6831) (taoguangchen at icloud dot com) + . Fixed bug #70169 (Use After Free Vulnerability in unserialize() with + SplDoublyLinkedList). (CVE-2015-6831) (taoguangchen at icloud dot com) diff --git a/data/releases/5.5/5.5.28/release.json b/data/releases/5.5/5.5.28/release.json new file mode 100644 index 0000000000..d5080eac00 --- /dev/null +++ b/data/releases/5.5/5.5.28/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.28", + "date": "06 Aug 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.28.tar.bz2", + "name": "PHP 5.5.28 (tar.bz2)", + "sha256": "197d2c572e030c177e53d3763d59ac6d363d7c78dc22e6cc1e2ac65573d9c2f3" + }, + { + "filename": "php-5.5.28.tar.gz", + "name": "PHP 5.5.28 (tar.gz)", + "sha256": "6084f25a39ab2f79ade46bf0258a1cd6c9bbb09a106b40dd996dbdf8cd3b08f2" + }, + { + "filename": "php-5.5.28.tar.xz", + "name": "PHP 5.5.28 (tar.xz)", + "sha256": "d060455c804c622cda9f3f5f084b10c6ceba73ee76c1720897e17137a0f75ecd" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.29/announcement.html b/data/releases/5.5/5.5.29/announcement.html new file mode 100644 index 0000000000..6d77fd1a8d --- /dev/null +++ b/data/releases/5.5/5.5.29/announcement.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/5.5.29/changes.txt b/data/releases/5.5/5.5.29/changes.txt new file mode 100644 index 0000000000..b5cd0679bd --- /dev/null +++ b/data/releases/5.5/5.5.29/changes.txt @@ -0,0 +1,35 @@ +- Core: + . Fixed bug #70172 (Use After Free Vulnerability in unserialize()). + (CVE-2015-6834) (Stas) + . Fixed bug #70219 (Use after free vulnerability in session deserializer). + (CVE-2015-6835) (taoguangchen at icloud dot com) + +- EXIF: + . Fixed bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte + value of 32 bytes). (Stas) + +- hash: + . Fixed bug #70312 (HAVAL gives wrong hashes in specific cases). (letsgolee + at naver dot com) + +- PCRE: + . Fixed bug #70345 (Multiple vulnerabilities related to PCRE functions). + (Anatol Belski) + +- SOAP: + . Fixed bug #70388 (SOAP serialize_function_call() type confusion / RCE). + (CVE-2015-6836) (Stas) + +- SPL: + . Fixed bug #70365 (Use-after-free vulnerability in unserialize() with + SplObjectStorage). (CVE-2015-6834) (taoguangchen at icloud dot com) + . Fixed bug #70366 (Use-after-free vulnerability in unserialize() with + SplDoublyLinkedList). (CVE-2015-6834) (taoguangchen at icloud dot com) + +- XSLT: + . Fixed bug #69782 (NULL pointer dereference). (CVE-2015-6837, CVE-2015-6838) + (Stas) + +- ZIP: + . Fixed bug #70350 (ZipArchive::extractTo allows for directory traversal when + creating directories). (CVE-2014-9767) (neal at fb dot com) diff --git a/data/releases/5.5/5.5.29/release.json b/data/releases/5.5/5.5.29/release.json new file mode 100644 index 0000000000..65082e78bf --- /dev/null +++ b/data/releases/5.5/5.5.29/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.29", + "date": "03 Sep 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.29.tar.bz2", + "name": "PHP 5.5.29 (tar.bz2)", + "sha256": "fbcee579ecc77cad6960a541116aee669cf145c2cd9a54bf60503a870843b946" + }, + { + "filename": "php-5.5.29.tar.gz", + "name": "PHP 5.5.29 (tar.gz)", + "sha256": "c25a4c4eae558cc9899d2994813dd272eafff9466926f30821a83edaafe620a9" + }, + { + "filename": "php-5.5.29.tar.xz", + "name": "PHP 5.5.29 (tar.xz)", + "sha256": "22c72d1b88c8d9a8ab9ca565e9ca5844287c006134098805d9a373a862bbbcad" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.3/announcement.html b/data/releases/5.5/5.5.3/announcement.html new file mode 100644 index 0000000000..6042debbd5 --- /dev/null +++ b/data/releases/5.5/5.5.3/announcement.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/5.5.3/changes.txt b/data/releases/5.5/5.5.3/changes.txt new file mode 100644 index 0000000000..61b90a0d3b --- /dev/null +++ b/data/releases/5.5/5.5.3/changes.txt @@ -0,0 +1,2 @@ +- Openssl: + . Fixed UMR in fix for CVE-2013-4248. diff --git a/data/releases/5.5/5.5.3/release.json b/data/releases/5.5/5.5.3/release.json new file mode 100644 index 0000000000..9156e9c9cf --- /dev/null +++ b/data/releases/5.5/5.5.3/release.json @@ -0,0 +1,26 @@ +{ + "version": "5.5.3", + "date": "22 Aug 2013", + "tags": [], + "source": [ + { + "filename": "php-5.5.3.tar.bz2", + "name": "PHP 5.5.3 (tar.bz2)", + "md5": "886b08ee6865d654911a6bb02ae98ee8" + }, + { + "filename": "php-5.5.3.tar.gz", + "name": "PHP 5.5.3 (tar.gz)", + "md5": "a5dfdd41ccf539942db966310f7429da" + }, + { + "filename": "php-5.5.3.tar.xz", + "name": "PHP 5.5.3 (tar.xz)", + "md5": "437e98144ef014dfab0922a9eed36853" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.5", + "name": "Windows 5.5.3 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.30/announcement.html b/data/releases/5.5/5.5.30/announcement.html new file mode 100644 index 0000000000..25ed8cc913 --- /dev/null +++ b/data/releases/5.5/5.5.30/announcement.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/5.5.30/changes.txt b/data/releases/5.5/5.5.30/changes.txt new file mode 100644 index 0000000000..f71d4b1999 --- /dev/null +++ b/data/releases/5.5/5.5.30/changes.txt @@ -0,0 +1,5 @@ +- Phar: + . Fixed bug #69720 (Null pointer dereference in phar_get_fp_offset()). + (CVE-2015-7803) (Stas) + . Fixed bug #70433 (Uninitialized pointer in phar_make_dirstream when zip + entry filename is "/"). (CVE-2015-7804) (Stas) diff --git a/data/releases/5.5/5.5.30/release.json b/data/releases/5.5/5.5.30/release.json new file mode 100644 index 0000000000..b26618c650 --- /dev/null +++ b/data/releases/5.5/5.5.30/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.30", + "date": "01 Oct 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.30.tar.bz2", + "name": "PHP 5.5.30 (tar.bz2)", + "sha256": "e7332a713cecdd1cb44a1b1336739885c9789f633f0f51236b25e48ab03c3b29" + }, + { + "filename": "php-5.5.30.tar.gz", + "name": "PHP 5.5.30 (tar.gz)", + "sha256": "8ad57f4317391354e66c83d26752f67515b2e923277eb97b2b420dfeff3c1007" + }, + { + "filename": "php-5.5.30.tar.xz", + "name": "PHP 5.5.30 (tar.xz)", + "sha256": "d00dc06fa5e0f3de048fb0cf940b3cc59b43b3f8cad825d4fffb35503cf2e8f2" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.31/announcement.html b/data/releases/5.5/5.5.31/announcement.html new file mode 100644 index 0000000000..3cbb3535f2 --- /dev/null +++ b/data/releases/5.5/5.5.31/announcement.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/5.5.31/changes.txt b/data/releases/5.5/5.5.31/changes.txt new file mode 100644 index 0000000000..700cf1b7bb --- /dev/null +++ b/data/releases/5.5/5.5.31/changes.txt @@ -0,0 +1,17 @@ +- FPM: + . Fixed bug #70755 (fpm_log.c memory leak and buffer overflow). + (CVE-2016-5114) (Stas) + +- GD: + . Fixed bug #70976 (Memory Read via gdImageRotateInterpolated Array Index + Out of Bounds). (CVE-2016-1903) (emmanuel dot law at gmail dot com). + +- WDDX: + . Fixed bug #70661 (Use After Free Vulnerability in WDDX Packet Deserialization). + (taoguangchen at icloud dot com) + . Fixed bug #70741 (Session WDDX Packet Deserialization Type Confusion + Vulnerability). (taoguangchen at icloud dot com) + +- XMLRPC: + . Fixed bug #70728 (Type Confusion Vulnerability in PHP_to_XMLRPC_worker()). + (Julien) diff --git a/data/releases/5.5/5.5.31/release.json b/data/releases/5.5/5.5.31/release.json new file mode 100644 index 0000000000..bb3c9ac24b --- /dev/null +++ b/data/releases/5.5/5.5.31/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.31", + "date": "07 Jan 2016", + "tags": [], + "source": [ + { + "filename": "php-5.5.31.tar.bz2", + "name": "PHP 5.5.31 (tar.bz2)", + "sha256": "fb4a382b9a9dceb749b7ef047d8251320bc8d371c843714e5b4f4b70d61ba277" + }, + { + "filename": "php-5.5.31.tar.gz", + "name": "PHP 5.5.31 (tar.gz)", + "sha256": "59a4417029ba5497d17ee02b65f419129ecf9ca8a1d864e0bccd5a3d4407a597" + }, + { + "filename": "php-5.5.31.tar.xz", + "name": "PHP 5.5.31 (tar.xz)", + "sha256": "a9ac5b94fcc3811b661a090dddd716f81e43947240b35e6a0123e609a135ac54" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.32/announcement.html b/data/releases/5.5/5.5.32/announcement.html new file mode 100644 index 0000000000..003761d728 --- /dev/null +++ b/data/releases/5.5/5.5.32/announcement.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/5.5.32/changes.txt b/data/releases/5.5/5.5.32/changes.txt new file mode 100644 index 0000000000..f64d120160 --- /dev/null +++ b/data/releases/5.5/5.5.32/changes.txt @@ -0,0 +1,24 @@ +- Core: + . Fixed bug #71039 (exec functions ignore length but look for NULL termination). + (Anatol) + . Fixed bug #71323 (Output of stream_get_meta_data can be falsified by its + input). (Leo Gaspard) + . Fixed bug #71459 (Integer overflow in iptcembed()). (Stas) + +- GD: + . Improved the fix for bug #70976. (Remi) + +- PCRE: + . Upgraded pcrelib to 8.38. (CVE-2015-8383, CVE-2015-8386, CVE-2015-8387, + CVE-2015-8389, CVE-2015-8390, CVE-2015-8391, CVE-2015-8393, CVE-2015-8394) + +- Phar: + . Fixed bug #71354 (Heap corruption in tar/zip/phar parser). (CVE-2016-4342) + (Stas) + . Fixed bug #71391 (NULL Pointer Dereference in phar_tar_setupmetadata()). + (Stas) + . Fixed bug #71488 (Stack overflow when decompressing tar archives). + (CVE-2016-2554) (Stas) + +- WDDX: + . Fixed bug #71335 (Type Confusion in WDDX Packet Deserialization). (Stas) diff --git a/data/releases/5.5/5.5.32/release.json b/data/releases/5.5/5.5.32/release.json new file mode 100644 index 0000000000..1932923af8 --- /dev/null +++ b/data/releases/5.5/5.5.32/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.32", + "date": "04 Feb 2016", + "tags": [], + "source": [ + { + "filename": "php-5.5.32.tar.bz2", + "name": "PHP 5.5.32 (tar.bz2)", + "sha256": "b0f2c108db8e05db9f6366aaba9a754fd0ee31f3f86ee889561b608dfd6e92ee" + }, + { + "filename": "php-5.5.32.tar.gz", + "name": "PHP 5.5.32 (tar.gz)", + "sha256": "419aa62a68a640192799928a29e5cd4cd5b965458223bea2b3209a68c3e95989" + }, + { + "filename": "php-5.5.32.tar.xz", + "name": "PHP 5.5.32 (tar.xz)", + "sha256": "02f569dcf5bd57dd5e390ddcab8609e3957a698e2db0b793cf2c11a7e33743c9" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.33/announcement.html b/data/releases/5.5/5.5.33/announcement.html new file mode 100644 index 0000000000..e75c370cb4 --- /dev/null +++ b/data/releases/5.5/5.5.33/announcement.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/5.5.33/changes.txt b/data/releases/5.5/5.5.33/changes.txt new file mode 100644 index 0000000000..205fbe3b9a --- /dev/null +++ b/data/releases/5.5/5.5.33/changes.txt @@ -0,0 +1,5 @@ +- Phar: + . Fixed bug #71498 (Out-of-Bound Read in phar_parse_zipfile()). (Stas) + +- WDDX: + . Fixed bug #71587 (Use-After-Free / Double-Free in WDDX Deserialize). (Stas) diff --git a/data/releases/5.5/5.5.33/release.json b/data/releases/5.5/5.5.33/release.json new file mode 100644 index 0000000000..e51d9290ca --- /dev/null +++ b/data/releases/5.5/5.5.33/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.33", + "date": "03 Mar 2016", + "tags": [], + "source": [ + { + "filename": "php-5.5.33.tar.bz2", + "name": "PHP 5.5.33 (tar.bz2)", + "sha256": "c490b1ed4df596b48eb68f630d89ca512945e2650840e7dace1119cc7e600aa9" + }, + { + "filename": "php-5.5.33.tar.gz", + "name": "PHP 5.5.33 (tar.gz)", + "sha256": "d2747bcf2cc94f652ac216f522904863a22042c66fabcf82ad7449d261d7a45b" + }, + { + "filename": "php-5.5.33.tar.xz", + "name": "PHP 5.5.33 (tar.xz)", + "sha256": "b91dbd3c53f9895e8f7b29e5fed25a64dd3a76b454f6ef7265e73c96b4303f30" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.34/announcement.html b/data/releases/5.5/5.5.34/announcement.html new file mode 100644 index 0000000000..3b5d6e3a20 --- /dev/null +++ b/data/releases/5.5/5.5.34/announcement.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/5.5.34/changes.txt b/data/releases/5.5/5.5.34/changes.txt new file mode 100644 index 0000000000..11685777c2 --- /dev/null +++ b/data/releases/5.5/5.5.34/changes.txt @@ -0,0 +1,19 @@ +- Fileinfo: + . Fixed bug #71527 (Buffer over-write in finfo_open with malformed magic + file). (CVE-2015-8865) (Anatol) + +- Mbstring: + . Fixed bug #71906 (AddressSanitizer: negative-size-param (-1) in + mbfl_strcut). (CVE-2016-4073) (Stas) + +- ODBC: + . Fixed bug #71860 (Invalid memory write in phar on filename with \0 in + name). (CVE-2016-4072) (Stas) + +- SNMP: + . Fixed bug #71704 (php_snmp_error() Format String Vulnerability). + (CVE-2016-4071) (andrew at jmpesp dot org) + +- Standard: + . Fixed bug #71798 (Integer Overflow in php_raw_url_encode). (CVE-2016-4070) + (taoguangchen at icloud dot com, Stas) diff --git a/data/releases/5.5/5.5.34/release.json b/data/releases/5.5/5.5.34/release.json new file mode 100644 index 0000000000..62dde1380a --- /dev/null +++ b/data/releases/5.5/5.5.34/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.34", + "date": "31 Mar 2016", + "tags": [], + "source": [ + { + "filename": "php-5.5.34.tar.bz2", + "name": "PHP 5.5.34 (tar.bz2)", + "sha256": "af88884416a92619de842ad0fd23f7f7e8140efb0b9194f98a38a78781e5851c" + }, + { + "filename": "php-5.5.34.tar.gz", + "name": "PHP 5.5.34 (tar.gz)", + "sha256": "0e573b406441294b233e35e1f2e12d7896d68457e3e10bf6e1f4825e75271cca" + }, + { + "filename": "php-5.5.34.tar.xz", + "name": "PHP 5.5.34 (tar.xz)", + "sha256": "6989a4f9900e6ddec7248790449bbb4aa55728730bff4973acb49d236c9e9e2a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.35/announcement.html b/data/releases/5.5/5.5.35/announcement.html new file mode 100644 index 0000000000..588e8d62fa --- /dev/null +++ b/data/releases/5.5/5.5.35/announcement.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/5.5.35/changes.txt b/data/releases/5.5/5.5.35/changes.txt new file mode 100644 index 0000000000..40ac7888f5 --- /dev/null +++ b/data/releases/5.5/5.5.35/changes.txt @@ -0,0 +1,17 @@ +- BCMath: + . Fixed bug #72093 (bcpowmod accepts negative scale and corrupts _one_ + definition). (Stas) + +- Exif: + . Fixed bug #72094 (Out of bounds heap read access in exif header + processing). (Stas) + +- GD: + . Fixed bug #71912 (libgd: signedness vulnerability). (CVE-2016-3074) (Stas) + +- Intl: + . Fixed bug #72061 (Out-of-bounds reads in zif_grapheme_stripos with negative + offset). (Stas) + +- XML: + . Fixed bug #72099 (xml_parse_into_struct segmentation fault). (Stas) diff --git a/data/releases/5.5/5.5.35/release.json b/data/releases/5.5/5.5.35/release.json new file mode 100644 index 0000000000..25df15d207 --- /dev/null +++ b/data/releases/5.5/5.5.35/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.35", + "date": "31 Mar 2016", + "tags": [], + "source": [ + { + "filename": "php-5.5.35.tar.bz2", + "name": "PHP 5.5.35 (tar.bz2)", + "sha256": "2d648dd648e820fd64693ce72f9bf07064d147220e594e39fb9f6310238258d7" + }, + { + "filename": "php-5.5.35.tar.gz", + "name": "PHP 5.5.35 (tar.gz)", + "sha256": "21e10a49c62ab34a7edc976af686a952e70142f19135ca8da67758e1c8c3df30" + }, + { + "filename": "php-5.5.35.tar.xz", + "name": "PHP 5.5.35 (tar.xz)", + "sha256": "9bef96634af853960be085690b2f4cea5850b749ea950942769b22b1a9f24873" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.36/announcement.html b/data/releases/5.5/5.5.36/announcement.html new file mode 100644 index 0000000000..460a72a092 --- /dev/null +++ b/data/releases/5.5/5.5.36/announcement.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/5.5.36/changes.txt b/data/releases/5.5/5.5.36/changes.txt new file mode 100644 index 0000000000..a3a0d01c62 --- /dev/null +++ b/data/releases/5.5/5.5.36/changes.txt @@ -0,0 +1,16 @@ +- Core: + . Fixed bug #72114 (Integer underflow / arbitrary null write in + fread/gzread). (CVE-2016-5096) (Stas) + . Fixed bug #72135 (Integer Overflow in php_html_entities). (CVE-2016-5094) + (Stas) + +- GD: + . Fixed bug #72227 (imagescale out-of-bounds read). (CVE-2013-7456) (Stas) + +- Intl: + . Fixed bug #72241 (get_icu_value_internal out-of-bounds read). + (CVE-2016-5093) (Stas) + +- Phar: + . Fixed bug #71331 (Uninitialized pointer in phar_make_dirstream()). + (CVE-2016-4343) (Stas) diff --git a/data/releases/5.5/5.5.36/release.json b/data/releases/5.5/5.5.36/release.json new file mode 100644 index 0000000000..91c266caa3 --- /dev/null +++ b/data/releases/5.5/5.5.36/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.36", + "date": "26 May 2016", + "tags": [], + "source": [ + { + "filename": "php-5.5.36.tar.bz2", + "name": "PHP 5.5.36 (tar.bz2)", + "sha256": "2484edfaa3de606d74f927b55c5206f51b1ae24ea8e428aa9fc15474c7bb71bb" + }, + { + "filename": "php-5.5.36.tar.gz", + "name": "PHP 5.5.36 (tar.gz)", + "sha256": "ef829f9a9600a858e2363533b80c4e4773505bdc8ea3692d703fc893f267728a" + }, + { + "filename": "php-5.5.36.tar.xz", + "name": "PHP 5.5.36 (tar.xz)", + "sha256": "e1bbe33d6b4da66b15c483131520a9fc505eeb6629fa70c5cfba79590a1d0801" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.37/announcement.html b/data/releases/5.5/5.5.37/announcement.html new file mode 100644 index 0000000000..a7091bbd02 --- /dev/null +++ b/data/releases/5.5/5.5.37/announcement.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/5.5.37/changes.txt b/data/releases/5.5/5.5.37/changes.txt new file mode 100644 index 0000000000..e3aaeeb6d5 --- /dev/null +++ b/data/releases/5.5/5.5.37/changes.txt @@ -0,0 +1,38 @@ +- Core: + . Fixed bug #72268 (Integer Overflow in nl2br()). (Stas) + . Fixed bug #72275 (Integer Overflow in json_encode()/json_decode()/ + json_utf8_to_utf16()). (Stas) + . Fixed bug #72400 (Integer Overflow in addcslashes/addslashes). (Stas) + . Fixed bug #72403 (Integer Overflow in Length of String-typed ZVAL). (Stas) + +- GD: + . Fixed bug #66387 (Stack overflow with imagefilltoborder). (CVE-2015-8874) + (cmb) + . Fixed bug #72298 (pass2_no_dither out-of-bounds access). (Stas) + . Fixed bug #72339 (Integer Overflow in _gd2GetHeader() resulting in heap + overflow). (CVE-2016-5766) (Pierre) + . Fixed bug #72407 (NULL Pointer Dereference at _gdScaleVert). (Stas) + . Fixed bug #72446 (Integer Overflow in gdImagePaletteToTrueColor() resulting + in heap overflow). (CVE-2016-5767) (Pierre) + +- mbstring: + . Fixed bug #72402 (_php_mb_regex_ereg_replace_exec - double free). + (CVE-2016-5768) (Stas) + +- mcrypt: + . Fixed bug #72455 (Heap Overflow due to integer overflows). (CVE-2016-5769) + (Stas) + +- SPL: + . Fixed bug #72262 (int/size_t confusion in SplFileObject::fread). + (CVE-2016-5770) (Stas) + . Fixed bug #72433 (Use After Free Vulnerability in PHP's GC algorithm and + unserialize). (CVE-2016-5771) (Dmitry) + +- WDDX: + . Fixed bug #72340 (Double Free Courruption in wddx_deserialize). + (CVE-2016-5772) (Stas) + +- zip: + . Fixed bug #72434 (ZipArchive class Use After Free Vulnerability in PHP's GC + algorithm and unserialize). (CVE-2016-5773) (Dmitry) diff --git a/data/releases/5.5/5.5.37/release.json b/data/releases/5.5/5.5.37/release.json new file mode 100644 index 0000000000..1f6310117b --- /dev/null +++ b/data/releases/5.5/5.5.37/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.37", + "date": "23 Jun 2016", + "tags": [], + "source": [ + { + "filename": "php-5.5.37.tar.bz2", + "name": "PHP 5.5.37 (tar.bz2)", + "sha256": "d2380ebe46caf17f2c4cd055867d00a82e6702dc5f62dc29ce864a5742905d88" + }, + { + "filename": "php-5.5.37.tar.gz", + "name": "PHP 5.5.37 (tar.gz)", + "sha256": "7cef04b549fdbe00c26dc785b6ba10439672a1596db518fc46632ecba45f44b9" + }, + { + "filename": "php-5.5.37.tar.xz", + "name": "PHP 5.5.37 (tar.xz)", + "sha256": "c322444fdf6d3ba26aa67d67ee32d1e815a877f35831351c83763431a80e3612" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.38/announcement.html b/data/releases/5.5/5.5.38/announcement.html new file mode 100644 index 0000000000..8a39fd1a79 --- /dev/null +++ b/data/releases/5.5/5.5.38/announcement.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/5.5.38/changes.txt b/data/releases/5.5/5.5.38/changes.txt new file mode 100644 index 0000000000..89e3aaf64d --- /dev/null +++ b/data/releases/5.5/5.5.38/changes.txt @@ -0,0 +1,42 @@ +- BZip2: + . Fixed bug #72613 (Inadequate error handling in bzread()). (Stas) + +- Core: + . Fixed bug #70480 (php_url_parse_ex() buffer overflow read). (Stas) + . Fixed bug #72513 (Stack-based buffer overflow vulnerability in + virtual_file_ex). (loianhtuan at gmail dot com) + . Fixed bug #72562 (Use After Free in unserialize() with Unexpected Session + Deserialization). (taoguangchen at icloud dot com) + . Fixed bug #72573 (HTTP_PROXY is improperly trusted by some PHP libraries and + applications). (CVE-2016-5385) (Stas) + +- EXIF: + . Fixed bug #72603 (Out of bound read in exif_process_IFD_in_MAKERNOTE). + (Stas) + . Fixed bug #72618 (NULL Pointer Dereference in exif_process_user_comment). + (Stas) + +- GD: + . Fixed bug #72512 (gdImageTrueColorToPaletteBody allows arbitrary write/read + access). (Pierre) + . Fixed bug #72519 (imagegif/output out-of-bounds access). (Pierre) + . Fixed bug #72558 (Integer overflow error within _gdContributionsAlloc()). + (CVE-2016-6207) (Pierre) + +- Intl: + . Fixed bug #72533 (locale_accept_from_http out-of-bounds access). (Stas) + +- ODBC: + . Fixed bug #69975 (PHP segfaults when accessing nvarchar(max) defined columns) + +- SNMP: + . Fixed bug #72479 (Use After Free Vulnerability in SNMP with GC and + unserialize()). (taoguangchen at icloud dot com) + +- Xmlrpc: + . Fixed bug #72606 (heap-buffer-overflow (write) simplestring_addn simplestring.c). + (Stas) + +- Zip: + . Fixed bug #72520 (Stack-based buffer overflow vulnerability in + php_stream_zip_opener). (loianhtuan at gmail dot com) diff --git a/data/releases/5.5/5.5.38/release.json b/data/releases/5.5/5.5.38/release.json new file mode 100644 index 0000000000..d9e27a5d52 --- /dev/null +++ b/data/releases/5.5/5.5.38/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.38", + "date": "21 Jul 2016", + "tags": [], + "source": [ + { + "filename": "php-5.5.38.tar.bz2", + "name": "PHP 5.5.38 (tar.bz2)", + "sha256": "473c81ebb2e48ca468caee031762266651843d7227c18a824add9b07b9393e38" + }, + { + "filename": "php-5.5.38.tar.gz", + "name": "PHP 5.5.38 (tar.gz)", + "sha256": "4f458c9b504269615715a62f182b7c2f89bb8284f484befc221b56a1571b506e" + }, + { + "filename": "php-5.5.38.tar.xz", + "name": "PHP 5.5.38 (tar.xz)", + "sha256": "cb527c44b48343c8557fe2446464ff1d4695155a95601083e5d1f175df95580f" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.4/announcement.html b/data/releases/5.5/5.5.4/announcement.html new file mode 100644 index 0000000000..ea74c1ebbf --- /dev/null +++ b/data/releases/5.5/5.5.4/announcement.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/5.5.4/changes.txt b/data/releases/5.5/5.5.4/changes.txt new file mode 100644 index 0000000000..cc0a5d89ef --- /dev/null +++ b/data/releases/5.5/5.5.4/changes.txt @@ -0,0 +1,52 @@ +- Core: + . Fixed bug #60598 (cli/apache sapi segfault on objects manipulation). + (Laruence) + . Improved fputcsv() to allow specifying escape character. + . Fixed bug #65490 (Duplicate calls to get lineno & filename for + DTRACE_FUNCTION_*). (Chris Jones) + . Fixed bug #65483 (quoted-printable encode stream filter incorrectly encoding + spaces). (Michael M Slusarz) + . Fixed bug #65481 (shutdown segfault due to serialize) (Mike) + . Fixed bug #65470 (Segmentation fault in zend_error() with + --enable-dtrace). (Chris Jones, Kris Van Hees) + . Fixed bug #65225 (PHP_BINARY incorrectly set). (Patrick Allaert) + . Fixed bug #62692 (PHP fails to build with DTrace). (Chris Jones, Kris Van Hees) + . Fixed bug #61759 (class_alias() should accept classes with leading + backslashes). (Julien) + . Fixed bug #46311 (Pointer aliasing issue results in miscompile on gcc4.4). + (Nikita Popov) + +- cURL: + . Fixed bug #65458 (curl memory leak). (Adam) + +- Datetime: + . Fixed bug #65554 (createFromFormat broken when weekday name is followed + by some delimiters). (Valentin Logvinskiy, Stas). + . Fixed bug #65564 (stack-buffer-overflow in DateTimeZone stuff caught + by AddressSanitizer). (Remi). + +- OPCache: + . Fixed bug #65561 (Zend Opcache on Solaris 11 x86 needs ZEND_MM_ALIGNMENT=4). + (Terry Ellison) + +- Openssl: + . Fixed bug #64802 (openssl_x509_parse fails to parse subject properly in + some cases). (Mark Jones) + +- PDO: + . Fixed bug #64953 (Postgres prepared statement positional parameter + casting). (Mike) + +- Session: + . Fixed bug #65475 (Session ID is not initialized properly when strict session + is enabled). (Yasuo) + . Fixed bug #51127/#65359 Request #25630/#43980/#54383 (Added php_serialize + session serialize handler that uses plain serialize()). (Yasuo) + +- Standard: + . Fix issue with return types of password API helper functions. Found via + static analysis by cjones. (Anthony Ferrara) + +- Zlib: + . Fixed bug #65391 (Unable to send vary header user-agent when + ob_start('ob_gzhandler') is called) (Mike) diff --git a/data/releases/5.5/5.5.4/release.json b/data/releases/5.5/5.5.4/release.json new file mode 100644 index 0000000000..c9920eee57 --- /dev/null +++ b/data/releases/5.5/5.5.4/release.json @@ -0,0 +1,26 @@ +{ + "version": "5.5.4", + "date": "19 Sep 2013", + "tags": [], + "source": [ + { + "filename": "php-5.5.4.tar.bz2", + "name": "PHP 5.5.4 (tar.bz2)", + "md5": "456f2eb1ee36f2a277bd4cc778e720eb" + }, + { + "filename": "php-5.5.4.tar.gz", + "name": "PHP 5.5.4 (tar.gz)", + "md5": "bf842770ac64a47ff599f463e6cf1334" + }, + { + "filename": "php-5.5.4.tar.xz", + "name": "PHP 5.5.4 (tar.xz)", + "md5": "32c1dc56701d21def91a39a312392b54" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.5", + "name": "Windows 5.5.4 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.5/announcement.html b/data/releases/5.5/5.5.5/announcement.html new file mode 100644 index 0000000000..3d21b71396 --- /dev/null +++ b/data/releases/5.5/5.5.5/announcement.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/5.5.5/changes.txt b/data/releases/5.5/5.5.5/changes.txt new file mode 100644 index 0000000000..3be35372a1 --- /dev/null +++ b/data/releases/5.5/5.5.5/changes.txt @@ -0,0 +1,76 @@ +- Core: + . Fixed bug #64979 (Wrong behavior of static variables in closure generators). + (Nikita) + . Fixed bug #65322 (compile time errors won't trigger auto loading). (Nikita) + . Fixed bug #65821 (By-ref foreach on property access of string offset + segfaults). (Nikita) + +- CLI server: + . Fixed bug #65633 (built-in server treat some http headers as + case-sensitive). (Adam) + . Fixed bug #65818 (Segfault with built-in webserver and chunked transfer + encoding). (Felipe) + . Added application/pdf to PHP CLI Web Server mime types (Chris Jones) + +- Datetime: + . Fixed bug #64157 (DateTime::createFromFormat() reports confusing error + message). (Boro Sitnikovski) + . Fixed bug #65502 (DateTimeImmutable::createFromFormat returns DateTime). + (Boro Sitnikovski) + . Fixed bug #65548 (Comparison for DateTimeImmutable doesn't work). + (Boro Sitnikovski) + +- DBA extension: + . Fixed bug #65708 (dba functions cast $key param to string in-place, + bypassing copy on write). (Adam) + +- Filter: + . Add RFC 6598 IPs to reserved addresses. (Sebastian Nohn) + . Fixed bug #64441 (FILTER_VALIDATE_URL rejects fully qualified domain names). + (Syra) + +- FTP: + . Fixed bug #65667 (ftp_nb_continue produces segfault). (Philip Hofstetter) + +- GD + . Ensure that the defined interpolation method is used with the generic + scaling methods. (Pierre) + +- IMAP: + . Fixed bug #65721 (configure script broken in 5.5.4 and 5.4.20 when enabling + imap). (ryotakatsuki at gmail dot com) + +- OPcache: + . Added support for GNU Hurd. (Svante Signell) + . Added function opcache_compile_file() to load PHP scripts into cache + without execution. (Julien) + . Fixed bug #65845 (Error when Zend Opcache Optimizer is fully enabled). + (Dmitry) + . Fixed bug #65665 (Exception not properly caught when opcache enabled). + (Laruence) + . Fixed bug #65510 (5.5.2 crashes in _get_zval_ptr_ptr_var). (Dmitry) + . Fixed issue #135 (segfault in interned strings if initial memory is too + low). (Julien) + +- Sockets: + . Fixed bug #65808 (the socket_connect() won't work with IPv6 address). + (Mike) + +- SPL: + . Fix bug #64782 (SplFileObject constructor make $context optional / give it + a default value). (Nikita) + +- Standard: + . Fixed bug #61548 (content-type must appear at the end of headers for 201 + Location to work in http). (Mike) + +- XMLReader: + . Fixed bug #51936 (Crash with clone XMLReader). (Mike) + . Fixed bug #64230 (XMLReader does not suppress errors). (Mike) + +- Build system: + . Fixed bug #51076 (race condition in shtool's mkdir -p implementation). + (Mike, Raphael Geissert) + . Fixed bug #62396 ('make test' crashes starting with 5.3.14 (missing + gzencode())). (Mike) + diff --git a/data/releases/5.5/5.5.5/release.json b/data/releases/5.5/5.5.5/release.json new file mode 100644 index 0000000000..3c996cfe39 --- /dev/null +++ b/data/releases/5.5/5.5.5/release.json @@ -0,0 +1,26 @@ +{ + "version": "5.5.5", + "date": "17 Oct 2013", + "tags": [], + "source": [ + { + "filename": "php-5.5.5.tar.bz2", + "name": "PHP 5.5.5 (tar.bz2)", + "sha256": "a400b324ae288eb0c9285e550fe5fd7f92c0f4e126496c3b05f9041da6cc04de" + }, + { + "filename": "php-5.5.5.tar.gz", + "name": "PHP 5.5.5 (tar.gz)", + "sha256": "483ff2370fa3a8863e6b023383c4bcfcc3ba462137c30c5fc75043e1755b7d17" + }, + { + "filename": "php-5.5.5.tar.xz", + "name": "PHP 5.5.5 (tar.xz)", + "sha256": "82cc9c88b946354bfe629917a85ed33d8cfc901460d432a75f823667d94f29ee" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.5", + "name": "Windows 5.5.5 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.6/announcement.html b/data/releases/5.5/5.5.6/announcement.html new file mode 100644 index 0000000000..361ab3929d --- /dev/null +++ b/data/releases/5.5/5.5.6/announcement.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/5.5.6/changes.txt b/data/releases/5.5/5.5.6/changes.txt new file mode 100644 index 0000000000..4df76cff68 --- /dev/null +++ b/data/releases/5.5/5.5.6/changes.txt @@ -0,0 +1,40 @@ +- Core: + . Fixed bug #65947 (basename is no more working after fgetcsv in certain + situation). (Laruence) + . Improved performance of array_merge() and func_get_args() by eliminating + useless copying. (Dmitry) + . Fixed bug #65939 (Space before ";" breaks php.ini parsing). + (brainstorm at nopcode dot org) + . Fixed bug #65911 (scope resolution operator - strange behavior with $this). + (Bob Weinand) + . Fixed bug #65936 (dangling context pointer causes crash). (Tony) + +- FPM: + . Changed default listen() backlog to 65535. (Tony) + +- JSON + . Fixed whitespace part of bug #64874 ("json_decode handles whitespace and + case-sensitivity incorrectly"). (Andrea Faulds) + +- MySQLi: + . Fixed bug #66043 (Segfault calling bind_param() on mysqli). (Laruence) + +- OPcache + . Increased limit for opcache.max_accelerated_files to 1,000,000. (Chris) + . Fixed issue #115 (path issue when using phar). (Dmitry) + . Fixed issue #149 (Phar mount points not working with OPcache enabled). + (Dmitry) + +- ODBC + . Fixed bug #65950 (Field name truncation if the field name is bigger than + 32 characters). (patch submitted by: michael dot y at zend dot com, Yasuo) + +- PDO: + . Fixed bug #66033 (Segmentation Fault when constructor of PDO statement + throws an exception). (Laruence) + . Fixed bug 65946 (sql_parser permanently converts values bound to strings) + +- Standard: + . Fixed bug #64760 (var_export() does not use full precision for floating-point + numbers) (Yasuo) + diff --git a/data/releases/5.5/5.5.6/release.json b/data/releases/5.5/5.5.6/release.json new file mode 100644 index 0000000000..5a8feb8209 --- /dev/null +++ b/data/releases/5.5/5.5.6/release.json @@ -0,0 +1,26 @@ +{ + "version": "5.5.6", + "date": "14 Nov 2013", + "tags": [], + "source": [ + { + "filename": "php-5.5.6.tar.bz2", + "name": "PHP 5.5.6 (tar.bz2)", + "sha256": "a9b7d291199d7e6b90ef1d78eb791d738944d66856e76bde9463ce2645b0e4a4" + }, + { + "filename": "php-5.5.6.tar.gz", + "name": "PHP 5.5.6 (tar.gz)", + "sha256": "01f9c45154d4c9a47a825aa662bd64493082bd57dafdc720cf899ee194220a67" + }, + { + "filename": "php-5.5.6.tar.xz", + "name": "PHP 5.5.6 (tar.xz)", + "sha256": "3235a5c15e8fc55498dd80fe43f4aecc51dba35a7fc916aee7ef12d4e1f8767a" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.5", + "name": "Windows 5.5.6 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.7/announcement.html b/data/releases/5.5/5.5.7/announcement.html new file mode 100644 index 0000000000..6b871b416b --- /dev/null +++ b/data/releases/5.5/5.5.7/announcement.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/5.5.7/changes.txt b/data/releases/5.5/5.5.7/changes.txt new file mode 100644 index 0000000000..4f798c8277 --- /dev/null +++ b/data/releases/5.5/5.5.7/changes.txt @@ -0,0 +1,22 @@ +- CLI server: + . Added some MIME types to the CLI web server (Chris Jones) + . Implemented FR #65917 (getallheaders() is not supported by the built-in web + server) - also implements apache_response_headers() (Andrea Faulds) + +- Core: + . Fixed bug #66094 (unregister_tick_function tries to cast a Closure to a + string). (Laruence) + . Fixed bug #65969 (Chain assignment with T_LIST failure). (Dmitry) + +- OPCache + . Fixed bug #66176 (Invalid constant substitution). (Dmitry) + . Fixed bug #65915 (Inconsistent results with require return value). (Dmitry) + . Fixed bug #65559 (Opcache: cache not cleared if changes occur while + running). (Dmitry) + +- readline + . Fixed Bug #65714 (PHP cli forces the tty to cooked mode). (Remi) + +- Openssl: + . Fixed memory corruption in openssl_x509_parse() (CVE-2013-6420). + (Stefan Esser). diff --git a/data/releases/5.5/5.5.7/release.json b/data/releases/5.5/5.5.7/release.json new file mode 100644 index 0000000000..4f12ecc3dc --- /dev/null +++ b/data/releases/5.5/5.5.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.7", + "date": "12 Dec 2013", + "tags": [], + "source": [ + { + "filename": "php-5.5.7.tar.bz2", + "name": "PHP 5.5.7 (tar.bz2)", + "sha256": "2cb9425ef514b984dd233097d82a66f4623b9bf48f2ef265bc7ba25d697d6008" + }, + { + "filename": "php-5.5.7.tar.gz", + "name": "PHP 5.5.7 (tar.gz)", + "sha256": "7b954338d7dd538ef6fadbc110e6a0f50d0b39dabec2c12a7f000c17332591b8" + }, + { + "filename": "php-5.5.7.tar.xz", + "name": "PHP 5.5.7 (tar.xz)", + "sha256": "b7bae5d878b8fc3f4b481eb8f2179b5e71d30dfb3bc3640a5068c1b46633f08c" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.8/announcement.html b/data/releases/5.5/5.5.8/announcement.html new file mode 100644 index 0000000000..8da5be666c --- /dev/null +++ b/data/releases/5.5/5.5.8/announcement.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/5.5.8/changes.txt b/data/releases/5.5/5.5.8/changes.txt new file mode 100644 index 0000000000..06bf5e75ea --- /dev/null +++ b/data/releases/5.5/5.5.8/changes.txt @@ -0,0 +1,60 @@ +- Core: + . Disallowed JMP into a finally block. (Laruence) + . Added validation of class names in the autoload process. (Dmitry) + . Fixed invalid C code in zend_strtod.c. (Lior Kaplan) + . Fixed ZEND_MM_MEM_TYPE=mmap_zero. (Dmitry, Tony) + . Fixed bug #66041 (list() fails to unpack yielded ArrayAccess object). + (Nikita) + . Fixed bug #65764 (generators/throw_rethrow FAIL with + ZEND_COMPILE_EXTENDED_INFO). (Nikita) + . Fixed bug #61645 (fopen and O_NONBLOCK). (Mike) + . Fixed bug #66218 (zend_register_functions breaks reflection). (Remi) + +- Date: + . Fixed bug #66060 (Heap buffer over-read in DateInterval) (CVE-2013-6712). + (Remi) + . Fixed bug #65768 (DateTimeImmutable::diff does not work). (Nikita Nefedov) + +- DOM: + . Fixed bug #65196 (Passing DOMDocumentFragment to DOMDocument::saveHTML() + Produces invalid Markup). (Mike) + +- Exif: + . Fixed bug #65873 (Integer overflow in exif_read_data()). (Stas) + +- Filter: + . Fixed bug #66229 (128.0.0.0/16 isn't reserved any longer). (Adam) + +- GD: + . Fixed bug #64405 (Use freetype-config for determining freetype2 dir(s)). + (Adam) + +- PDO_odbc: + . Fixed bug #66311 (Stack smashing protection kills PDO/ODBC queries). + (michael at orlitzky dot com) + +- MySQLi: + . Fixed bug #65486 (mysqli_poll() is broken on win x64). (Anatol) + +- OPCache: + . Fixed revalidate_path=1 behavior to avoid caching of symlinks values. + (Dmitry) + . Fixed Issue #140: "opcache.enable_file_override" doesn't respect + "opcache.revalidate_freq". (Dmitry). + +- SNMP: + . Fixed SNMP_ERR_TOOBIG handling for bulk walk operations. (Boris Lytochkin) + +- SOAP + . Fixed bug #66112 (Use after free condition in SOAP extension). + (martin dot koegler at brz dot gv dot at) + +- Sockets: + . Fixed bug #65923 (ext/socket assumes AI_V4MAPPED is defined). (Felipe) + +- XSL + . Fixed bug #49634 (Segfault throwing an exception in a XSL registered + function). (Mike) + +- ZIP: + . Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real). (Remi) diff --git a/data/releases/5.5/5.5.8/release.json b/data/releases/5.5/5.5.8/release.json new file mode 100644 index 0000000000..e66e9bff24 --- /dev/null +++ b/data/releases/5.5/5.5.8/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.5.8", + "date": "9 Jan 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.8.tar.bz2", + "name": "PHP 5.5.8 (tar.bz2)", + "sha256": "6d5f45659d13383fc8429f185cc9da0b30c7bb72dcae9baf568f0511eb7f8b68" + }, + { + "filename": "php-5.5.8.tar.gz", + "name": "PHP 5.5.8 (tar.gz)", + "sha256": "67c74a9a2357dc65f5b1701cadb574f1309c4c3a20a2a5c56aeae4c4be90f2f8" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.9/announcement.html b/data/releases/5.5/5.5.9/announcement.html new file mode 100644 index 0000000000..496b9bc1fb --- /dev/null +++ b/data/releases/5.5/5.5.9/announcement.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.5/5.5.9/changes.txt b/data/releases/5.5/5.5.9/changes.txt new file mode 100644 index 0000000000..6eb707b84e --- /dev/null +++ b/data/releases/5.5/5.5.9/changes.txt @@ -0,0 +1,38 @@ +- Core: + . Fixed bug #66509 (copy() arginfo has changed starting from 5.4). (willfitch) + +- GD: + . Fixed bug #66356 (Heap Overflow Vulnerability in imagecrop()). + (Laruence, Remi) + +- OPCache: + . Fixed bug #66474 (Optimizer bug in constant string to boolean conversion). + (Dmitry) + . Fixed bug #66461 (PHP crashes if opcache.interned_strings_buffer=0). + (Dmitry) + . Fixed bug #66298 (ext/opcache/Optimizer/zend_optimizer.c has dos-style + ^M as lineend). (Laruence) + +- PDO_pgsql: + . Fixed bug #62479 (PDO-psql cannot connect if password contains +spaces) (willfitch, iliaa) + +- Readline + . Fixed Bug #66412 (readline_clear_history() with libedit causes segfault after + #65714). (Remi) + +- Session + . Fixed bug #66469 (Session module is sending multiple set-cookie headers when + session.use_strict_mode=1) (Yasuo) + . Fixed bug #66481 (Segfaults on session_name()). + (cmcdermottroe at engineyard dot com, Yasuo) + +- Standard + . Fixed bug #66395 (basename function doesn't remove drive letter). (Anatol) + +- Sockets: + . Fixed bug #66381 (__ss_family was changed on AIX 5.3). (Felipe) + +- Zend Engine + . Fixed bug #66009 (Failed compilation of PHP extension with C++ std + library using VS 2012). (Anatol) diff --git a/data/releases/5.5/5.5.9/release.json b/data/releases/5.5/5.5.9/release.json new file mode 100644 index 0000000000..1b7635c4ad --- /dev/null +++ b/data/releases/5.5/5.5.9/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.9", + "date": "6 Feb 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.9.tar.bz2", + "name": "PHP 5.5.9 (tar.bz2)", + "sha256": "9d1dea5195e2bcd928416130a6e19173d02bd36fb76c382522bf145c458fbed3" + }, + { + "filename": "php-5.5.9.tar.gz", + "name": "PHP 5.5.9 (tar.gz)", + "sha256": "ec1bf0cb3be80240049dbd92c272d4bf242a614fa5f9dcc42a15adb5fd01ccde" + }, + { + "filename": "php-5.5.9.tar.xz", + "name": "PHP 5.5.9 (tar.xz)", + "sha256": "7f7a7b1189472e59b234233daab9aa9692bb5eb8404485e9a78221f75ee4664a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.0/announcement.html b/data/releases/5.6/5.6.0/announcement.html new file mode 100644 index 0000000000..55a48312d1 --- /dev/null +++ b/data/releases/5.6/5.6.0/announcement.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/5.6.0/changes.txt b/data/releases/5.6/5.6.0/changes.txt new file mode 100644 index 0000000000..4de3ff7b53 --- /dev/null +++ b/data/releases/5.6/5.6.0/changes.txt @@ -0,0 +1,579 @@ +- Apache2 Handler SAPI: + . Fixed Apache log issue caused by APR's lack of support for %zu + (APR issue https://issues.apache.org/bugzilla/show_bug.cgi?id=56120). + (Jeff Trawick) + +- CLI server: + . Added some MIME types to the CLI web server. (Chris Jones) + . Fixed bug #67079 (Missing MIME types for XML/XSL files). (Anatol) + . Fixed bug #66830 (Empty header causes PHP built-in web server to hang). + (Adam) + . Fixed bug #67594 (Unable to access to apache_request_headers() elements). + (Tjerk) + . Implemented FR #67429 (CLI server is missing some new HTTP response codes). + (Adam) + . Fixed Bug #67406 (built-in web-server segfaults on startup). (Remi) + +- COM: + . Fixed bug #41577 (DOTNET is successful once per server run) + (Aidas Kasparas) + . Fixed missing type checks in com_event_sink (Yussuf Khalil, Stas). + . Fixed bug #66431 (Special Character via COM Interface (CP_UTF8)). (Anatol) + +- Core: + . Improved phpinfo() stylesheets. (Colin Viebrock) + . Fixed bug #67693 (incorrect push to the empty array). (Tjerk) + . Removed inconsistency regarding behaviour of array in constants at + run-time. (Bob) + . Fixed bug #67497 (eval with parse error causes segmentation fault in + generator). (Nikita) + . Fixed bug #67151 (strtr with empty array crashes). (Nikita) + . Fixed bug #67407 (Windows 8.1/Server 2012 R2 reported as Windows 8/Server + 2012). (Christian Wenz) + . Fixed bug #66608 (Incorrect behavior with nested "finally" blocks). + (Laruence, Dmitry) + . Implemented FR #34407 (ucwords and Title Case). (Tjerk) + . Fixed bug #67091 (make install fails to install libphp5.so on FreeBSD 10.0). + (Ferenc) + . Fixed bug #67368 (Memory leak with immediately dereferenced array in class + constant). (Laruence) + . Fixed bug #67468 (Segfault in highlight_file()/highlight_string()). + (Andreas Ferber) + . Fixed bug #67498 (phpinfo() Type Confusion Information Leak Vulnerability). + (Stefan Esser) + . Fixed bug #67551 (php://input temp file will be located in sys_temp_dir + instead of upload_tmp_dir). (Mike) + . Fixed bug #67169 (array_splice all elements, then []= gives wrong index). + (Nikita) + . Fixed bug #67198 (php://input regression). (Mike) + . Fixed bug #67247 (spl_fixedarray_resize integer overflow). (Stas) + . Fixed bug #67250 (iptcparse out-of-bounds read). (Stas) + . Fixed bug #67252 (convert_uudecode out-of-bounds read). (Stas) + . Fixed bug #67249 (printf out-of-bounds read). (Stas) + . Implemented FR #64744 (Differentiate between member function call on a null + and non-null, non-objects). (Boro Sitnikovski) + . Fixed bug #67436 (Autoloader isn't called if two method definitions don't + match). (Bob) + . Fixed bug #66622 (Closures do not correctly capture the late bound class + (static::) in some cases). (Levi Morrison) + . Fixed bug #67390 (insecure temporary file use in the configure script). + (Remi) (CVE-2014-3981) + . Fixed bug #67392 (dtrace breaks argument unpack). (Nikita) + . Fixed bug #67428 (header('Location: foo') will override a 308-399 response + code). (Adam) + . Fixed bug #67433 (SIGSEGV when using count() on an object implementing + Countable). (Matteo) + . Fixed bug #67399 (putenv with empty variable may lead to crash). (Stas) + . Expose get_debug_info class hook as __debugInfo() magic method. (Sara) + . Implemented unified default encoding + (RFC: https://wiki.php.net/rfc/default_encoding). (Yasuo Ohgaki) + . Added T_POW (**) operator + (RFC: https://wiki.php.net/rfc/pow-operator). (Tjerk Meesters) + . Improved IS_VAR operands fetching. (Laruence, Dmitry) + . Improved empty string handling. Now ZE uses an interned string instead of + allocation new empty string each time. (Laruence, Dmitry) + . Implemented internal operator overloading + (RFC: https://wiki.php.net/rfc/operator_overloading_gmp). (Nikita) + . Made calls from incompatible context issue an E_DEPRECATED warning instead + of E_STRICT (phase 1 of RFC: https://wiki.php.net/rfc/incompat_ctx). + (Gustavo) + . Uploads equal or greater than 2GB in size are now accepted. + (Ralf Lang, Mike) + . Reduced POST data memory usage by 200-300%. Changed INI setting + always_populate_raw_post_data to throw a deprecation warning when enabling + and to accept -1 for never populating the $HTTP_RAW_POST_DATA global + variable, which will be the default in future PHP versions. (Mike) + . Implemented dedicated syntax for variadic functions + (RFC: https://wiki.php.net/rfc/variadics). (Nikita) + . Fixed bug #50333 Improving multi-threaded scalability by using + emalloc/efree/estrdup (Anatol, Dmitry) + . Implemented constant scalar expressions (with support for constants) + (RFC: https://wiki.php.net/rfc/const_scalar_exprs). (Bob) + . Fixed bug #65784 (Segfault with finally). (Laruence, Dmitry) + . Fixed bug #66509 (copy() arginfo has changed starting from 5.4). (willfitch) + . Allow zero length comparison in substr_compare() (Tjerk) + . Fixed bug #60602 (proc_open() changes environment array) (Tjerk) + . Fixed bug #61019 (Out of memory on command stream_get_contents). (Mike) + . Fixed bug #64330 (stream_socket_server() creates wrong Abstract Namespace + UNIX sockets). (Mike) + . Fixed bug #66182 (exit in stream filter produces segfault). (Mike) + . Fixed bug #66736 (fpassthru broken). (Mike) + . Fixed bug #66822 (Cannot use T_POW in const expression) (Tjerk) + . Fixed bug #67043 (substr_compare broke by previous change) (Tjerk) + . Fixed bug #65701 (copy() doesn't work when destination filename is created + by tempnam()). (Boro Sitnikovski) + . Fixed bug #66015 (Unexpected array indexing in class's static property). (Bob) + . Added (constant) string/array dereferencing to static scalar expressions + to complete the set; now possible thanks to bug #66015 being fixed. (Bob) + . Fixed bug #66568 (Update reflection information for unserialize() function). + (Ferenc) + . Fixed bug #66660 (Composer.phar install/update fails). (Ferenc) + . Fixed bug #67024 (getimagesize should recognize BMP files with negative + height). (Gabor Buella) + . Fixed bug #67064 (Countable interface prevents using 2nd parameter + ($mode) of count() function). (Bob) + . Fixed bug #67072 (Echoing unserialized "SplFileObject" crash). (Anatol) + . Fixed bug #67033 (Remove reference to Windows 95). (Anatol) + +- Curl: + . Implemented FR #65646 (re-enable CURLOPT_FOLLOWLOCATION with open_basedir + or safe_mode). (Adam) + . Check for openssl.cafile ini directive when loading CA certs. (Daniel Lowrey) + . Remove cURL close policy related constants as these have no effect and are + no longer used in libcurl. (Chris Wright) + . Fixed bug #66109 (Can't reset CURLOPT_CUSTOMREQUEST to default behaviour) + (Tjerk) + . Fix compilation on libcurl versions between 7.10.5 and 7.12.2, inclusive. + (Adam) + . Fixed bug #64247 (CURLOPT_INFILE doesn't allow reset). (Mike) + . Fixed bug #66562 (curl_exec returns differently than curl_multi_getcontent). + (Freek Lijten) + +- Date: + . Fixed bug #66060 (Heap buffer over-read in DateInterval). (CVE-2013-6712) + (Remi) + . Fixed bug #66091 (memory leaks in DateTime constructor) (Tjerk). + . Fixed bug #67308 (Serialize of DateTime truncates fractions of second). + (Adam) + . Fixed regression in fix for bug #67118 (constructor can't be called twice). + (Remi) + . Fixed bug #67251 (date_parse_from_format out-of-bounds read). (Stas) + . Fixed bug #67253 (timelib_meridian_with_check out-of-bounds read). (Stas) + . Added DateTimeImmutable::createFromMutable to create a DateTimeImmutable + object from an existing DateTime (mutable) object (Derick) + . Fixed bug #66721 (__wakeup of DateTime segfaults when invalid object data is + supplied). (Boro Sitnikovski) + . Fixed bug #67118 (DateTime constructor crash with invalid data). (Anatol) + +- DOM: + . Fixed bug #67081 (DOMDocumentType->internalSubset returns entire DOCTYPE tag, + not only the subset). (Anatol) + +- Embed: + . Fixed bug #65715 (php5embed.lib isn't provided anymore). (Anatol). + +- Fileinfo: + . Fixed bug #67716 (Segfault in cdf.c). (CVE-2014-3587) (Remi) + . Fixed bug #67705 (extensive backtracking in rule regular expression). + (CVE-2014-3538) (Remi) + . Fixed bug #67327 (fileinfo: CDF infinite loop in nelements DoS). + (CVE-2014-0238) + . Fixed bug #67328 (fileinfo: fileinfo: numerous file_printf calls resulting in + performance degradation). (CVE-2014-0237) + . Fixed bug #67326 (fileinfo: cdf_read_short_sector insufficient boundary check). + (CVE-2014-0207) + . Fixed bug #67329 (fileinfo: NULL pointer deference flaw by processing certain + CDF files). (CVE-2014-0236) + . Fixed bug #67410 (fileinfo: mconvert incorrect handling of truncated pascal + string size). (CVE-2014-3478) (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67411 (fileinfo: cdf_check_stream_offset insufficient boundary + check). (CVE-2014-3479) (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67412 (fileinfo: cdf_count_chain insufficient boundary check). + (CVE-2014-3480) (Francisco Alonso, Jan Kaluza, Remi) + . Fixed bug #67413 (fileinfo: cdf_read_property_info insufficient boundary + check). (CVE-2014-3487) (Francisco Alonso, Jan Kaluza, Remi) + . Upgraded to libmagic-5.17 (Anatol) + . Fixed bug #66731 (file: infinite recursion). (CVE-2014-1943) (Remi) + . Fixed bug #66820 (out-of-bounds memory access in fileinfo). + (CVE-2014-2270). (Remi) + . Fixed bug #66946 (fileinfo: extensive backtracking in awk rule regular + expression). (CVE-2013-7345) (Remi) + . Fixed bug #66987 (Memory corruption in fileinfo ext / bigendian). + (Remi) + . Fixed bug #66907 (Solaris 10 is missing strcasestr and needs substitute). + (Anatol) + . Fixed bug #66307 (Fileinfo crashes with powerpoint files). (Anatol) + +- FPM: + . Fixed bug #67606 (revised fix 67541, broke mod_fastcgi BC). (David Zuelke) + . Fixed bug #67530 (error_log=syslog ignored). (Remi) + . Fixed bug #67635 (php links to systemd libraries without using pkg-config). + (pacho at gentoo dot org, Remi) + . Fixed bug #67531 (syslog cannot be set in pool configuration). (Remi) + . Fixed bug #67541 (Fix Apache 2.4.10+ SetHandler proxy:fcgi:// + incompatibilities). (David Zuelke) + . Included apparmor support in fpm + (RFC: https://wiki.php.net/rfc/fpm_change_hat). (Gernot Vormayr) + . Added clear_env configuration directive to disable clearenv() call. + (Github PR# 598, Paul Annesley) + . Fixed bug #66482 (unknown entry 'priority' in php-fpm.conf). + . Fixed bug #66908 (php-fpm reload leaks epoll_create() file descriptor). + (Julio Pintos) + . Fixed bug #67060 (sapi/fpm: possible privilege escalation due to insecure + default configuration) (CVE-2014-0185). (Stas) + +- GD + . Fixed bug #67730 (Null byte injection possible with imagexxx functions). + (CVE-2014-5120) (Ryan Mauger) + . Fixed bug #66901 (php-gd 'c_color' NULL pointer dereference). + (CVE-2014-2497) (Remi) + . Fixed bug #67248 (imageaffinematrixget missing check of parameters). (Stas) + . Fixed imagettftext to load the correct character map rather than the last one. + (Scott) + . Fixed bug #66356 (Heap Overflow Vulnerability in imagecrop()). + (CVE-2013-7226) + . Fixed bug #66815 (imagecrop(): insufficient fix for NULL defer). + (CVE-2013-7327). (Tomas Hoger, Remi). + . Fixed bug #66869 (Invalid 2nd argument crashes imageaffinematrixget) (Pierre) + . Fixed bug #66887 (imagescale - poor quality of scaled image). (Remi) + . Fixed bug #66890 (imagescale segfault). (Remi) + . Fixed bug #66893 (imagescale ignore method argument). (Remi) + +- GMP: + . Fixed bug #66872 (invalid argument crashes gmp_testbit) (Pierre) + . Fixed crashes in serialize/unserialize. (Stas) + . Moved GMP to use object as the underlying structure and implemented various + improvements based on this. + (RFC: https://wiki.php.net/rfc/operator_overloading_gmp). (Nikita) + . Added gmp_root() and gmp_rootrem() functions for calculating nth roots. + (Nikita) + +- Hash: + . Added gost-crypto (CryptoPro S-box) GOST hash algo. (Manuel Mausz) + . Fixed bug #66698 (Missing FNV1a32 and FNV1a64 hash functions). + (Michael M Slusarz). + . Implemented timing attack safe string comparison function + (RFC: https://wiki.php.net/rfc/timing_attack). (Rouven Weßling) + . hash_pbkdf2() now works correctly if the $length argument is not specified. + (Nikita) + +- Intl: + . Fixed bug #66873 (A reproductible crash in UConverter when given invalid + encoding) (Stas) + . Fixed bug #66921 (Wrong argument type hint for function + intltz_from_date_time_zone). (Stas) + . Fixed bug #67052 (NumberFormatter::parse() resets LC_NUMERIC setting). + (Stas) + . Fixed bug #67349 (Locale::parseLocale Double Free). (Stas) + . Fixed bug #67397 (Buffer overflow in locale_get_display_name and + uloc_getDisplayName (libicu 4.8.1)). (Stas) + +- JSON: + . Fixed case part of bug #64874 ("json_decode handles whitespace and + case-sensitivity incorrectly") + . Fixed bug #65753 (JsonSerializeable couldn't implement on module extension) + (chobieeee@php.net) + . Fixed bug #66021 (Blank line inside empty array/object when + JSON_PRETTY_PRINT is set). (Kevin Israel) + +- ldap + . Added new function ldap_modify_batch(). (Ondrej Hosek) + . Fixed issue with null bytes in LDAP bindings. (Matthew Daley) + +- litespeed + . Updated LiteSpeed SAPI code to V6.6 (George Wang) + . Fixed bug #63228 (-Werror=format-security error in lsapi code). + (Elan Ruusamäe, George) + +- Mail: + . Fixed bug #66535 (Don't add newline after X-PHP-Originating-Script) (Tjerk) + +- Mcrypt: + . No longer allow invalid key sizes, invalid IV sizes or missing required IV + in mcrypt_encrypt, mcrypt_decrypt and the deprecated mode functions. + (Nikita) + . Use /dev/urandom as the default source for mcrypt_create_iv(). (Nikita) + +- Mbstring: + . Upgraded to oniguruma 5.9.5 (Anatol) + . Fixed bug #67199 (mb_regex_encoding mismatch). (Yasuo) + +- Milter: + . Fixed bug #67715 (php-milter does not build and crashes randomly). (Mike) + +- mysqli + . Added new function mysqli_get_links_stats() as well as new INI variable + mysqli.rollback_on_cached_plink of type bool (Andrey) + . Fixed bug #66762 (Segfault in mysqli_stmt::bind_result() when link closed) + (Remi) + . Fixed building against an external libmysqlclient. (Adam) + +- mysqlnd: + . Disabled flag for SP OUT variables for 5.5+ servers as they are not natively + supported by the overlying APIs. (Andrey) + . Added a new fetching mode to mysqlnd. (Andrey) + . Added support for gb18030 from MySQL 5.7. (Andrey) + +- Network: + . Fixed bug #67717 (segfault in dns_get_record). (CVE-2014-3597) (Remi) + . Fixed bug #67432 (Fix potential segfault in dns_get_record()). + (CVE-2014-4049). (Sara) + +- OCI8 + . Fixed Bug #66875 (Improve performance of multi-row OCI_RETURN_LOB queries) + (Perrier, Chris Jones) + +- ODBC: + . Fixed bug #60616 (odbc_fetch_into returns junk at end of multi-byte char + fields). (Keyur Govande) + +- OpenSSL: + . Fixed bug #41631 (socket timeouts not honored in blocking SSL reads) + (Daniel Lowrey). + . Fixed missing type checks in OpenSSL options (Yussuf Khalil, Stas). + . Fixed bug #67609 (TLS connections fail behind HTTP proxy). (Daniel Lowrey) + . Fixed broken build against OpenSSL older than 0.9.8 where ECDH unavailable. + (Lior Kaplan) + . Fixed bug #67666 (Subject altNames doesn't support wildcard matching). (Tjerk) + . Fixed bug #67224 (Fall back to crypto_type from context if not specified + explicitly in stream_socket_enable_crypto). (Chris Wright) + . Fixed bug #65698 (certificates validity parsing does not work past 2050). + (Paul Oehler) + . Fixed bug #66636 (openssl_x509_parse warning with V_ASN1_GENERALIZEDTIME). + (Paul Oehler) + . Peer certificates now verified by default in client socket operations + (RFC: https://wiki.php.net/rfc/tls-peer-verification). (Daniel Lowrey) + . New openssl.cafile and openssl.capath ini directives. (Daniel Lowrey) + . Added crypto_method option for the ssl stream context. (Martin Jansen) + . Added certificate fingerprint support. (Tjerk Meesters) + . Added explicit TLSv1.1 and TLSv1.2 stream transports. (Daniel Lowrey) + . Fixed bug #65729 (CN_match gives false positive). (Tjerk Meesters) + . Peer name verification matches SAN DNS names for certs using + the Subject Alternative Name x509 extension. (Daniel Lowrey) + . Fixed segfault when built against OpenSSL>=1.0.1 (Daniel Lowrey) + . Added SPKAC support. (Jason Gerfen) + . Fallback to Windows CA cert store for peer verification if no openssl.cafile + ini directive or "cafile" SSL context option specified in Windows. + (Chris Wright) + . The openssl.cafile and openssl.capath ini directives introduced in alpha2 + now have PHP_INI_PERDIR accessibility (was PHP_INI_ALL). (Daniel Lowrey) + . New "peer_name" SSL context option replaces "CN_match" (which still works + as before but triggers E_DEPRECATED). (Daniel Lowrey) + . Fixed segfault when accessing non-existent context for client SNI use + (Daniel Lowrey) + . Fixed bug #66501 (Add EC key support to php_openssl_is_private_key). + (Mark Zedwood) + . Fixed Bug #47030 (add new boolean "verify_peer_name" SSL context option + allowing clients to verify cert names separately from the cert itself). + "verify_peer_name" is enabled by default for client streams. + (Daniel Lowrey) + . Fixed Bug #65538 ("cafile" SSL context option now supports stream + wrappers). (Daniel Lowrey) + . New openssl_get_cert_locations() function to aid CA file and peer + verification debugging. (Daniel Lowrey) + . Encrypted stream wrappers now disable TLS compression by default. + (Daniel Lowrey) + . New "capture_session_meta" SSL context option allows encrypted client and + server streams access to negotiated protocol/cipher information. + (Daniel Lowrey) + . New "honor_cipher_order" SSL context option allows servers to prioritize + cipher suites of their choosing when negotiating SSL/TLS handshakes. + (Daniel Lowrey) + . New "single_ecdh_use" and "single_dh_use" SSL context options allow for + improved forward secrecy in encrypted stream servers. (Daniel Lowrey) + . New "dh_param" SSL context option allows stream servers control over + the parameters when negotiating DHE cipher suites. (Daniel Lowrey) + . New "ecdh_curve" SSL context option allowing stream servers to specify + the curve to use when negotiating ephemeral ECDHE ciphers (defaults to + NIST P-256). (Daniel Lowrey) + . New "rsa_key_size" SSL context option gives stream servers control + over the key size (in bits) used for RSA key agreements. (Daniel Lowrey) + . Crypto methods for encrypted client and server streams now use + bitwise flags for fine-grained protocol support. (Daniel Lowrey) + . Added new tlsv1.0 stream wrapper to specify TLSv1 client/server method. + tls wrapper now negotiates TLSv1, TLSv1.1 or TLSv1.2. (Daniel Lowrey) + . Encrypted client streams now enable SNI by default. (Daniel Lowrey) + . Encrypted streams now prioritize ephemeral key agreement and high strength + ciphers by default. (Daniel Lowrey) + . New OPENSSL_DEFAULT_STREAM_CIPHERS constant exposes default cipher + list. (Daniel Lowrey) + . New STREAM_CRYPTO_METHOD_* constants for enhanced control over the crypto + methods negotiated encrypted server/client sessions. (Daniel Lowrey) + . Encrypted stream servers now automatically mitigate potential DoS vector + arising from client-initiated TLS renegotiation. New "reneg_limit", + "reneg_window" and "reneg_limit_callback" SSL context options for custom + renegotiation limiting control. (Daniel Lowrey) + . Fixed memory leak in windows cert verification on verify failure. + (Chris Wright) + . Peer certificate capturing via SSL context options now functions even if + peer verification fails. (Daniel Lowrey) + . Encrypted TLS servers now support the server name indication TLS extension + via the new "SNI_server_certs" SSL context option. (Daniel Lowrey) + . Fixed bug #66833 (Default disgest algo is still MD5, switch to SHA1). (Remi) + . Fixed bug #66942 (memory leak in openssl_seal()). (Chuan Ma) + . Fixed bug #66952 (memory leak in openssl_open()). (Chuan Ma) + . Fixed bug #66840 (Fix broken build when extension built separately). + (Daniel Lowrey) + +- OPcache: + . Added an optimization of class constants and constant calls to some + internal functions (Laruence, Dmitry) + . Added an optimization pass to convert FCALL_BY_NAME into DO_FCALL. + (Laruence, Dmitry) + . Added an optimization pass to merged identical constants (and related + cache_slots) in op_array->literals table. (Laruence, Dmitry) + . Added script level constant replacement optimization pass. (Dmitry) + . Added function opcache_is_script_cached(). (Danack) + . Added information about interned strings usage. (Terry, Julien, Dmitry) + . Fixed bug #67215 (php-cgi work with opcache, may be segmentation fault + happen) (Dmitry, Laruence) + +- PCRE: + . Fixed bug #67238 (Ungreedy and min/max quantifier bug, applied patch + from the upstream). (Anatol) + . Upgraded to PCRE 8.34. (Anatol) + . Added support for (*MARK) backtracking verbs. (Nikita) + +- pgsql: + . Fixed bug #67550 (Error in code "form" instead of "from", pgsql.c, line 756), + which affected builds against libpq < 7.3. (Adam) + . pg_insert()/pg_select()/pg_update()/pg_delete() are no longer EXPERIMENTAL. + (Yasuo) + . Impremented FR #25854 Return value for pg_insert should be resource instead of bool. + (Yasuo) + . Implemented FR #41146 - Add "description" with exteneded flag pg_meta_data(). + pg_meta_data(resource $conn, string $table [, bool extended]) + It also made pg_meta_data() return "is enum" always. + (Yasuo) + . Read-only access to the socket stream underlying database connections is + exposed via a new pg_socket() function to allow read/write polling when + establishing asynchronous connections and executing queries in non-blocking + applications. (Daniel Lowrey) + . Asynchronous connections are now possible using the PGSQL_CONNECT_ASYNC + flag in conjunction with a new pg_connect_poll() function and connection + polling status constants. (Daniel Lowrey) + . New pg_flush() and pg_consume_input() functions added to manually complete + non-blocking reads/writes to underlying connection sockets. (Daniel Lowrey) + . pg_version() returns full report which obtained by PQparameterStatus(). + (Yasuo) + . Added pg_lo_truncate(). (Yasuo) + . Added 64bit large object support for PostgreSQL 9.3 and later. (Yasuo) + . Fixed bug #67555 (Cannot build against libpq 7.3). (Adam) + +- phpdbg + . Fixed bug #67575 (Compilation fails for phpdbg when the + build directory != src directory). (Andy Thompson) + . Fixed Bug #67499 (readline feature not enabled when build with libedit). (Remi) + . Fix issue krakjoe/phpdbg#94 (List behavior is inconsistent). (Bob) + . Fix issue krakjoe/phpdbg#97 (The prompt should always ensure it is on a + newline). (Bob) + . Fix issue krakjoe/phpdbg#98 (break if does not seem to work). (Bob) + . Fix issue krakjoe/phpdbg#99 (register function has the same behavior as + run). (Bob) + . Fix issue krakjoe/phpdbg#100 (No way to list the current stack/frames) + (Help entry was missing). (Bob) + . Fixed bug which caused phpdbg to fail immediately on startup in non-debug + builds. (Bob) + . Fixed bug #67212 (phpdbg uses non-standard TIOCGWINSZ). (Ferenc) + . Included phpdbg sapi (RFC: https://wiki.php.net/rfc/phpdbg). + (Felipe Pena, Joe Watkins and Bob Weinand) + . Added watchpoints (watch command). (Bob) + . Renamed some commands (next => continue and how to step). (Joe) + . Fixed issue #85 (https://github.com/krakjoe/phpdbg/issues/85) + (Added stdin/stdout/stderr constants and their php:// wrappers). (Bob) + +- PDO: + . Fixed bug #66604 ('pdo/php_pdo_error.h' not copied to the include dir). + (Matteo) + +- PDO-ODBC: + . Fixed bug #50444 (PDO-ODBC changes for 64-bit). + +- PDO_pgsql: + . Fixed Bug #42614 (PDO_pgsql: add pg_get_notify support). (Matteo) + . Fixed Bug #63657 (pgsqlCopyFromFile, pgsqlCopyToArray use Postgres < 7.3 + syntax). (Matteo) + . Cleaned up code by increasing the requirements to libpq versions providing + PQexecParams, PQprepare, PQescapeStringConn, PQescapeByteaConn. According + to the release notes that means 8.0.8+ or 8.1.4+. (Matteo) + . Deprecated PDO::PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT, an + undocument constant effectively equivalent to PDO::ATTR_EMULATE_PREPARES. + (Matteo) + . Added PDO::PGSQL_ATTR_DISABLE_PREPARES constant to execute the queries + without preparing them, while still passing parameters separately from + the command text using PQexecParams. (Matteo) + +- PDO_firebird: + . Fixed Bug #66071 (memory corruption in error handling) (Popa) + +- Phar: + . Fixed bug #64498 ($phar->buildFromDirectory can't compress file with an accent + in its name). (PR #588) + . Fixed bug #67587 (Redirection loop on nginx with FPM). (Christian Weiske) + +- readline: + . Fixed bug #55496 (Interactive mode doesn't force a newline before the + prompt). (Bob, Johannes) + . Fixed bug #67496 (Save command history when exiting interactive shell + with control-c). (Dmitry Saprykin, Johannes) + +- Reflection: + . Implemented FR #67713 (loosen the restrictions on + ReflectionClass::newInstanceWithoutConstructor()). (Ferenc) + +- Session: + . Fixed bug #67694 (Regression in session_regenerate_id()). (Tjerk) + . Fixed missing type checks in php_session_create_id (Yussuf Khalil, Stas). + . Fixed bug #66827 (Session raises E_NOTICE when session name variable is array). + (Yasuo) + . Fixed Bug #65315 (session.hash_function silently fallback to default md5) + (Yasuo) + . Implemented Request #17860 (Session write short circuit). (Yasuo) + . Implemented Request #20421 (session_abort() and session_reset() function). + (Yasuo) + . Remove session_gc() and session_serializer_name() wich were introduced in the first 5.6.0 alpha. + +- SimpleXML: + . Fixed bug #66084 (simplexml_load_string() mangles empty node name) + (Anatol) + +- SQLite: + . Updated the bundled libsqlite to the version 3.8.3.1 (Anatol) + . Fixed bug #66967 (Updated bundled libsqlite to 3.8.4.3). (Anatol) + +- SOAP: + . Implemented FR #49898 (Add SoapClient::__getCookies()). (Boro Sitnikovski) + +- SPL: + . Revert fix for bug #67064 (BC issues). (Bob) + . Fixed bug #67539 (ArrayIterator use-after-free due to object change during + sorting). (CVE-2014-4698) (research at insighti dot org, Laruence) + . Fixed bug #67538 (SPL Iterators use-after-free). (CVE-2014-4670) (Laruence) + . Fixed bug #67492 (unserialize() SPL ArrayObject / SPLObjectStorage Type + Confusion) (CVE-2014-3515). (Stefan Esser) + . Fixed bug #67359 (Segfault in recursiveDirectoryIterator). (Laruence) + . Fixed bug #66127 (Segmentation fault with ArrayObject unset). (Stas) + . Fixed request #67453 (Allow to unserialize empty data). (Remi) + . Added feature #65545 (SplFileObject::fread()) (Tjerk) + . Fixed bug #66834 (empty() does not work on classes that extend ArrayObject) (Tjerk) + . Fixed bug #66702 (RegexIterator::INVERT_MATCH does not invert). (Joshua + Thijssen) + +- Standard: + . Implemented FR #65634 (HTTP wrapper is very slow with protocol_version + 1.1). (Adam) + . Implemented Change crypt() behavior w/o salt RFC. (Yasuo) + https://wiki.php.net/rfc/crypt_function_salt + . Implemented request #49824 (Change array_fill() to allow creating empty + array). (Nikita) + +- Streams: + . Fixed bug #67430 (http:// wrapper doesn't follow 308 redirects). (Adam) + +- Tokenizer: + . Fixed bug #67395 (token_name() does not return name for T_POW and T_POW_EQUAL + token). (Ferenc) + +- XMLReader: + . Fixed bug #55285 (XMLReader::getAttribute/No/Ns methods inconsistency). + (Mike) + +- XSL: + . Fixed bug #53965 (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/5.6.1/changes.txt b/data/releases/5.6/5.6.1/changes.txt new file mode 100644 index 0000000000..265189c683 --- /dev/null +++ b/data/releases/5.6/5.6.1/changes.txt @@ -0,0 +1,48 @@ +- Core: + . Implemented FR #38409 (parse_ini_file() looses the type of booleans). (Tjerk) + . Fixed bug #65463 (SIGSEGV during zend_shutdown()). (Keyur Govande) + . Fixed bug #66036 (Crash on SIGTERM in apache process). (Keyur Govande) + . Fixed bug #67878 (program_prefix not honoured in man pages). (Remi) + . Fixed bug #67938 (Segfault when extending interface method with variadic). + (Nikita) + . Fixed bug #67985 (Incorrect last used array index copied to new array after + unset). (Tjerk) + . Fixed bug #68088 (New Posthandler Potential Illegal efree() vulnerability). + (Mike) (CVE-2014-3622) + +- DOM: + . Made DOMNode::textContent writeable. (Tjerk) + +- Fileinfo: + . Fixed bug #67731 (finfo::file() returns invalid mime type + for binary files). (Anatol) + +- GD: + . Made fontFetch's path parser thread-safe. (Sara) + +- GMP: + . Fixed bug #67917 (Using GMP objects with overloaded operators can cause + memory exhaustion). (Nikita) + . Fixed bug #50175 (gmp_init() results 0 on given base and number starting + with 0x or 0b). (Nikita) + . Implemented gmp_import() and gmp_export(). (Leigh, Nikita) + +- MySQLi: + . Fixed bug #67839 (mysqli does not handle 4-byte floats correctly). (Keyur) + +- OpenSSL: + . Fixed bug #67850 (extension won't build if openssl compiled without SSLv3). + (Daniel Lowrey) + +- phpdbg: + . Fixed issue krakjoe/phpdbg#111 (compile error without ZEND_SIGNALS). (Bob) + +- SOAP: + . Fixed bug #67955 (SoapClient prepends 0-byte to cookie names). (Philip Hofstetter) + +- Session: + . Fixed bug #67972 (SessionHandler Invalid memory read create_sid()). (Adam) + +- Sysvsem: + . Implemented FR #67990 (Add optional nowait argument to sem_acquire). + (Matteo) diff --git a/data/releases/5.6/5.6.1/release.json b/data/releases/5.6/5.6.1/release.json new file mode 100644 index 0000000000..3871a37509 --- /dev/null +++ b/data/releases/5.6/5.6.1/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.1", + "date": "02 Oct 2014", + "tags": [], + "source": [ + { + "filename": "php-5.6.1.tar.bz2", + "name": "PHP 5.6.1 (tar.bz2)", + "sha256": "82c1ccd17830d697d7a4d75bb60ea12be58fa80b4dba101e97db1a6372ca45f0" + }, + { + "filename": "php-5.6.1.tar.gz", + "name": "PHP 5.6.1 (tar.gz)", + "sha256": "e34f0ab6b1f431f3115f60094f6d7ded12a90db2361194b8ef9e6eff812db21c" + }, + { + "filename": "php-5.6.1.tar.xz", + "name": "PHP 5.6.1 (tar.xz)", + "sha256": "57640a700364949292da06e55423f162428a864451d05751a8829ae04d65745e" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.10/announcement.html b/data/releases/5.6/5.6.10/announcement.html new file mode 100644 index 0000000000..5d436f81a8 --- /dev/null +++ b/data/releases/5.6/5.6.10/announcement.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/5.6.10/changes.txt b/data/releases/5.6/5.6.10/changes.txt new file mode 100644 index 0000000000..6a4a2f78d9 --- /dev/null +++ b/data/releases/5.6/5.6.10/changes.txt @@ -0,0 +1,52 @@ +- Core: + . Fixed bug #66048 (temp. directory is cached during multiple requests). + (Julien) + . Fixed bug #69566 (Conditional jump or move depends on uninitialised value + in extension trait). (jbboehr at gmail dot com) + . Fixed bug #69599 (Strange generator+exception+variadic crash). (Nikita) + . Fixed bug #69628 (complex GLOB_BRACE fails on Windows). + (Christoph M. Becker) + . Fixed POST data processing slowdown due to small input buffer size + on Windows. (Jorge Oliveira, Anatol) + . Fixed bug #69646 (OS command injection vulnerability in escapeshellarg). + (CVE-2015-4642) (Anatol Belski) + . Fixed bug #69719 (Incorrect handling of paths with NULs). (CVE-2015-4598) + (Stas) + +- FTP + . Improved fix for bug #69545 (Integer overflow in ftp_genlist() resulting in + heap overflow). (CVE-2015-4643) (Max Spelsberg) + +- GD: + . Fixed bug #69479 (GD fails to build with newer libvpx). (Remi) + +- Iconv: + . Fixed bug #48147 (iconv with //IGNORE cuts the string). (Stas) + +- Litespeed SAPI: + . Fixed bug #68812 (Unchecked return value). (George Wang) + +- Mail: + . Fixed bug #68776 (mail() does not have mail header injection prevention for + additional headers). (Yasuo) + +- MCrypt: + . Added file descriptor caching to mcrypt_create_iv() (Leigh) + +- Opcache + . Fixed bug #69549 (Memory leak with opcache.optimization_level=0xFFFFFFFF). + (Laruence, Dmitry) + +- PCRE + . Upgraded pcrelib to 8.37. (CVE-2015-2325, CVE-2015-2326) + +- Phar: + . Fixed bug #69680 (phar symlink in binary directory broken). + (Matteo Bernardini, Remi) + +- Postgres: + . Fixed bug #69667 (segfault in php_pgsql_meta_data). (CVE-2015-4644) (Remi) + +- Sqlite3: + . Upgrade bundled sqlite to 3.8.10.2. (CVE-2015-3414, CVE-2015-3415, + CVE-2015-3416) (Kaplan) diff --git a/data/releases/5.6/5.6.10/release.json b/data/releases/5.6/5.6.10/release.json new file mode 100644 index 0000000000..131ee8d532 --- /dev/null +++ b/data/releases/5.6/5.6.10/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.10", + "date": "11 Jun 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.10.tar.bz2", + "name": "PHP 5.6.10 (tar.bz2)", + "sha256": "0a579c81c724ea41815eee0caa8ea7d8eeb302458519d8cc4fc5b055577c8c45" + }, + { + "filename": "php-5.6.10.tar.gz", + "name": "PHP 5.6.10 (tar.gz)", + "sha256": "7759d6e178be524085e1482921748c14d11cbd0a133ba8aabb96c391ce7ed3fc" + }, + { + "filename": "php-5.6.10.tar.xz", + "name": "PHP 5.6.10 (tar.xz)", + "sha256": "1af720c955b0a57aa47606e928616e84c78868aff2a5f269c70601a77d6da8c1" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.11/announcement.html b/data/releases/5.6/5.6.11/announcement.html new file mode 100644 index 0000000000..19d83ea2b0 --- /dev/null +++ b/data/releases/5.6/5.6.11/announcement.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/5.6.11/changes.txt b/data/releases/5.6/5.6.11/changes.txt new file mode 100644 index 0000000000..8cb9c83b5d --- /dev/null +++ b/data/releases/5.6/5.6.11/changes.txt @@ -0,0 +1,65 @@ +- Core: + . Fixed bug #69768 (escapeshell*() doesn't cater to !). (cmb) + . Fixed bug #69703 (Use __builtin_clzl on PowerPC). + (dja at axtens dot net, Kalle) + . Fixed bug #69732 (can induce segmentation fault with basic php code). + (Dmitry) + . Fixed bug #69642 (Windows 10 reported as Windows 8). + (Christian Wenz, Anatol Belski) + . Fixed bug #69551 (parse_ini_file() and parse_ini_string() segmentation + fault). (Christoph M. Becker) + . Fixed bug #69781 (phpinfo() reports Professional Editions of Windows + 7/8/8.1/10 as "Business"). (Christian Wenz) + . Fixed bug #69740 (finally in generator (yield) swallows exception in + iteration). (Nikita) + . Fixed bug #69835 (phpinfo() does not report many Windows SKUs). + (Christian Wenz) + . Fixed bug #69892 (Different arrays compare indentical due to integer key + truncation). (Nikita) + . Fixed bug #69874 (Can't set empty additional_headers for mail()), regression + from fix to bug #68776. (Yasuo) + +- GD: + . Fixed bug #61221 (imagegammacorrect function loses alpha channel). (cmb) + +- GMP: + . Fixed bug #69803 (gmp_random_range() modifies second parameter if GMP + number). (Nikita) + +- Mysqlnd: + . Fixed bug #69669 (mysqlnd is vulnerable to BACKRONYM). (CVE-2015-3152) + (Andrey) + +- PCRE: + . Fixed Bug #53823 (preg_replace: * qualifier on unicode replace garbles the + string). (cmb) + . Fixed bug #69864 (Segfault in preg_replace_callback) (cmb, ab) + +- PDO_pgsql: + . Fixed bug #69752 (PDOStatement::execute() leaks memory with DML + Statements when closeCuror() is u). (Philip Hofstetter) + . Fixed bug #69362 (PDO-pgsql fails to connect if password contains a + leading single quote). (Matteo) + . Fixed bug #69344 (PDO PgSQL Incorrect binding numeric array with gaps). + (Matteo) + +- Phar: + . Fixed bug #69958 (Segfault in Phar::convertToData on invalid file). + (CVE-2015-5589) (Stas) + . Fixed bug #69923 (Buffer overflow and stack smashing error in + phar_fix_filepath). (CVE-2015-5590) (Stas) + +- SimpleXML: + . Refactored the fix for bug #66084 (simplexml_load_string() mangles empty + node name). (Christoph Michael Becker) + +- SPL: + . Fixed bug #69737 (Segfault when SplMinHeap::compare produces fatal error). + (Stas) + . Fixed bug #67805 (SplFileObject setMaxLineLength). (Willian Gustavo Veiga). + . Fixed bug #69970 (Use-after-free vulnerability in + spl_recursive_it_move_forward_ex()). (Laruence) + +- Sqlite3: + . Fixed bug #69972 (Use-after-free vulnerability in + sqlite3SafetyCheckSickOrOk()). (Laruence) diff --git a/data/releases/5.6/5.6.11/release.json b/data/releases/5.6/5.6.11/release.json new file mode 100644 index 0000000000..822f4e0343 --- /dev/null +++ b/data/releases/5.6/5.6.11/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.11", + "date": "10 Jul 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.11.tar.bz2", + "name": "PHP 5.6.11 (tar.bz2)", + "sha256": "bd6b260816764c267244749ead07482120dbf8d1920ebbbb0dcb2aa411033866" + }, + { + "filename": "php-5.6.11.tar.gz", + "name": "PHP 5.6.11 (tar.gz)", + "sha256": "85916b46c0d1f2a5315c84fb2773293f4084c3676ba4ed420d0432cbb60ff9d8" + }, + { + "filename": "php-5.6.11.tar.xz", + "name": "PHP 5.6.11 (tar.xz)", + "sha256": "3f97dbb1c646b90e1ef638defabe429ef036f903b5baa1c34769d3de4fe62bd4" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.12/announcement.html b/data/releases/5.6/5.6.12/announcement.html new file mode 100644 index 0000000000..7c331c882e --- /dev/null +++ b/data/releases/5.6/5.6.12/announcement.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/5.6.12/changes.txt b/data/releases/5.6/5.6.12/changes.txt new file mode 100644 index 0000000000..188aa7c9af --- /dev/null +++ b/data/releases/5.6/5.6.12/changes.txt @@ -0,0 +1,60 @@ +- Core: + . Fixed bug #70012 (Exception lost with nested finally block). (Laruence) + . Fixed bug #70002 (TS issues with temporary dir handling). (Anatol) + . Fixed bug #69793 (Remotely triggerable stack exhaustion via recursive + method calls). (Stas) + . Fixed bug #69892 (Different arrays compare indentical due to integer key + truncation). (Nikita) + . Fixed bug #70121 (unserialize() could lead to unexpected methods execution + / NULL pointer deref). (Stas) + +- CLI server: + . Fixed bug #69655 (php -S changes MKCALENDAR request method to MKCOL). (cmb) + . Fixed bug #64878 (304 responses return Content-Type header). (cmb) + +- GD: + . Fixed bug #53156 (imagerectangle problem with point ordering). (cmb) + . Fixed bug #66387 (Stack overflow with imagefilltoborder). (CVE-2015-8874) + (cmb) + . Fixed bug #70102 (imagecreatefromwebm() shifts colors). (cmb) + . Fixed bug #66590 (imagewebp() doesn't pad to even length). (cmb) + . Fixed bug #66882 (imagerotate by -90 degrees truncates image by 1px). (cmb) + . Fixed bug #70064 (imagescale(..., IMG_BICUBIC) leaks memory). (cmb) + . Fixed bug #69024 (imagescale segfault with palette based image). (cmb) + . Fixed bug #53154 (Zero-height rectangle has whiskers). (cmb) + . Fixed bug #67447 (imagecrop() add a black line when cropping). (cmb) + . Fixed bug #68714 (copy 'n paste error). (cmb) + . Fixed bug #66339 (PHP segfaults in imagexbm). (cmb) + . Fixed bug #70047 (gd_info() doesn't report WebP support). (cmb) + +- ODBC: + . Fixed bug #69975 (PHP segfaults when accessing nvarchar(max) defined + columns). (CVE-2015-8879) (cmb) + +- OpenSSL: + . Fixed bug #69882 (OpenSSL error "key values mismatch" after + openssl_pkcs12_read with extra cert). (Tomasz Sawicki) + . Fixed bug #70014 (openssl_random_pseudo_bytes() is not cryptographically + secure). (CVE-2015-8867) (Stas) + +- Phar: + . Improved fix for bug #69441. (Anatol Belski) + . Fixed bug #70019 (Files extracted from archive may be placed outside of + destination directory). (CVE-2015-6833) (Anatol Belski) + +- SOAP: + . Fixed bug #70081 (SoapClient info leak / null pointer dereference via + multiple type confusions). (Stas) + +- SPL: + . Fixed bug #70068 (Dangling pointer in the unserialization of ArrayObject + items). (CVE-2015-6832) (sean.heelan) + . Fixed bug #70166 (Use After Free Vulnerability in unserialize() with + SPLArrayObject). (CVE-2015-6831) (taoguangchen at icloud dot com) + . Fixed bug #70168 (Use After Free Vulnerability in unserialize() with + SplObjectStorage). (CVE-2015-6831) (taoguangchen at icloud dot com) + . Fixed bug #70169 (Use After Free Vulnerability in unserialize() with + SplDoublyLinkedList). (CVE-2015-6831) (taoguangchen at icloud dot com) + +- Standard: + . Fixed bug #70096 (Repeated iptcembed() adds superfluous FF bytes). (cmb) diff --git a/data/releases/5.6/5.6.12/release.json b/data/releases/5.6/5.6.12/release.json new file mode 100644 index 0000000000..6cc21f4cc4 --- /dev/null +++ b/data/releases/5.6/5.6.12/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.12", + "date": "06 Aug 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.12.tar.bz2", + "name": "PHP 5.6.12 (tar.bz2)", + "sha256": "6f27104272af7b2a996f85e4100fac627630fbdaf39d7bd263f16cf529c8853a" + }, + { + "filename": "php-5.6.12.tar.gz", + "name": "PHP 5.6.12 (tar.gz)", + "sha256": "7799b42606c1770d1ad90bfc7521d2b6c294c4c27dcf1a206dee562533b4f984" + }, + { + "filename": "php-5.6.12.tar.xz", + "name": "PHP 5.6.12 (tar.xz)", + "sha256": "f8a8446866c0dc3f33319aa196ce87b64d71cab3dd96e39c8816adccc7e8ef33" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.13/announcement.html b/data/releases/5.6/5.6.13/announcement.html new file mode 100644 index 0000000000..9208d09b27 --- /dev/null +++ b/data/releases/5.6/5.6.13/announcement.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/5.6.13/changes.txt b/data/releases/5.6/5.6.13/changes.txt new file mode 100644 index 0000000000..d7886f81de --- /dev/null +++ b/data/releases/5.6/5.6.13/changes.txt @@ -0,0 +1,72 @@ +- Core: + . Fixed bug #69900 (Too long timeout on pipes). (Anatol) + . Fixed bug #69487 (SAPI may truncate POST data). (cmb) + . Fixed bug #70198 (Checking liveness does not work as expected). + (Shafreeck Sea, Anatol Belski) + . Fixed bug #70172 (Use After Free Vulnerability in unserialize()). + (CVE-2015-6834) (Stas) + . Fixed bug #70219 (Use after free vulnerability in session deserializer). + (CVE-2015-6835) (taoguangchen at icloud dot com) + +- CLI server: + . Fixed bug #66606 (Sets HTTP_CONTENT_TYPE but not CONTENT_TYPE). + (wusuopu, cmb) + . Fixed bug #70264 (CLI server directory traversal). (cmb) + +- Date: + . Fixed bug #70266 (DateInterval::__construct.interval_spec is not supposed to + be optional). (cmb) + . Fixed bug #70277 (new DateTimeZone($foo) is ignoring text after null byte). + (cmb) + +- EXIF: + . Fixed bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte + value of 32 bytes). (Stas) + +- GMP: + . Fixed bug #70284 (Use after free vulnerability in unserialize() with GMP). + (stas) + +- hash: + . Fixed bug #70312 (HAVAL gives wrong hashes in specific cases). (letsgolee + at naver dot com) + +- MCrypt: + . Fixed bug #69833 (mcrypt fd caching not working). (Anatol) + +- Opcache: + . Fixed bug #70237 (Empty while and do-while segmentation fault with opcode + on CLI enabled). (Dmitry, Laruence) + +- PCRE: + . Fixed bug #70232 (Incorrect bump-along behavior with \K and empty string + match). (cmb) + . Fixed bug #70345 (Multiple vulnerabilities related to PCRE functions). + (Anatol Belski) + +- SOAP: + . Fixed bug #70388 (SOAP serialize_function_call() type confusion / RCE). + (CVE-2015-6836) (Stas) + +- SPL: + . Fixed bug #70290 (Null pointer deref (segfault) in spl_autoload via + ob_start). (hugh at allthethings dot co dot nz) + . Fixed bug #70303 (Incorrect constructor reflection for ArrayObject). (cmb) + . Fixed bug #70365 (Use-after-free vulnerability in unserialize() with + SplObjectStorage). (CVE-2015-6834) (taoguangchen at icloud dot com) + . Fixed bug #70366 (Use-after-free vulnerability in unserialize() with + SplDoublyLinkedList). (CVE-2015-6834) (taoguangchen at icloud dot com) + +- Standard: + . Fixed bug #70052 (getimagesize() fails for very large and very small WBMP). + (cmb) + . Fixed bug #70157 (parse_ini_string() segmentation fault with + INI_SCANNER_TYPED). (Tjerk) + +- XSLT: + . Fixed bug #69782 (NULL pointer dereference). (CVE-2015-6837, CVE-2015-6838) + (Stas) + +- ZIP: + . Fixed bug #70350 (ZipArchive::extractTo allows for directory traversal when + creating directories). (CVE-2014-9767) (neal at fb dot com) diff --git a/data/releases/5.6/5.6.13/release.json b/data/releases/5.6/5.6.13/release.json new file mode 100644 index 0000000000..5a05e0bc64 --- /dev/null +++ b/data/releases/5.6/5.6.13/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.13", + "date": "03 Sep 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.13.tar.bz2", + "name": "PHP 5.6.13 (tar.bz2)", + "sha256": "6358837c9cbab41b91ede59dbf0670ae0fb925a1369ecbc1a44a27212420f893" + }, + { + "filename": "php-5.6.13.tar.gz", + "name": "PHP 5.6.13 (tar.gz)", + "sha256": "92acc6c067f5e015a6881b4119eafec10eca11722e810f2c2083f72e17119bcf" + }, + { + "filename": "php-5.6.13.tar.xz", + "name": "PHP 5.6.13 (tar.xz)", + "sha256": "c1f0837df20cd3bed149033924770deca3e7e2d18e2e7e81395096576f153fdc" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.14/announcement.html b/data/releases/5.6/5.6.14/announcement.html new file mode 100644 index 0000000000..de56e3bd3f --- /dev/null +++ b/data/releases/5.6/5.6.14/announcement.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/5.6.14/changes.txt b/data/releases/5.6/5.6.14/changes.txt new file mode 100644 index 0000000000..2259e8a541 --- /dev/null +++ b/data/releases/5.6/5.6.14/changes.txt @@ -0,0 +1,47 @@ +- Core: + . Fixed bug #70370 (Bundled libtool.m4 doesn't handle FreeBSD 10 when + building extensions). (Adam) + +- CLI server: + . Fixed bug #68291 (404 on urls with '+'). (cmb) + +- DOM: + . Fixed bug #70001 (Assigning to DOMNode::textContent does additional entity + encoding). (cmb) + +- ldap: + . Fixed bug #70465 (Bug in ldap_search() modifies LDAP_OPT_TIMELIMIT/DEREF's values). (Tyson Andre) + . Fixed bug #69574 (ldap timeouts not enforced). (Côme Bernigaud) + +- Mysqlnd: + . Fixed bug #70456 (mysqlnd doesn't activate TCP keep-alive when connecting to + a server). (Sergei Turchanov) + +- OpenSSL: + . Fixed bug #55259 (openssl extension does not get the DH parameters from + DH key resource). (Jakub Zelenka) + . Fixed bug #70395 (Missing ARG_INFO for openssl_seal()). (cmb) + . Fixed bug #60632 (openssl_seal fails with AES). (Jakub Zelenka) + . Fixed bug #68312 (Lookup for openssl.cnf causes a message box). (Anatol) + +- PDO: + . Fixed bug #70389 (PDO constructor changes unrelated variables). (Laruence) + +- Phar: + . Fixed bug #69720 (Null pointer dereference in phar_get_fp_offset()). + (CVE-2015-7803) (Stas) + . FIxed bug #70433 (Uninitialized pointer in phar_make_dirstream when zip + entry filename is "/"). (CVE-2015-7804) (Stas) + +- Phpdbg: + . Fix phpdbg_break_next() sometimes not breaking. (Bob) + +- Standard: + . Fixed bug #67131 (setcookie() conditional for empty values not met). (cmb) + +- Streams: + . Fixed bug #70361 (HTTP stream wrapper doesn't close keep-alive connections). + (Niklas Keller) + +- Zip: + . Fixed bug #70322 (ZipArchive::close() doesn't indicate errors). (cmb) diff --git a/data/releases/5.6/5.6.14/release.json b/data/releases/5.6/5.6.14/release.json new file mode 100644 index 0000000000..e4e3e4a5ad --- /dev/null +++ b/data/releases/5.6/5.6.14/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.14", + "date": "01 Oct 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.14.tar.bz2", + "name": "PHP 5.6.14 (tar.bz2)", + "sha256": "36f295f11641c1839a5df00e693f685fd134c65e8a1d46e8ee0abae8662b2eb0" + }, + { + "filename": "php-5.6.14.tar.gz", + "name": "PHP 5.6.14 (tar.gz)", + "sha256": "29baf7ffca644f7f8e86028c40275b9e460342bdf9562d45f8f0498899cb738d" + }, + { + "filename": "php-5.6.14.tar.xz", + "name": "PHP 5.6.14 (tar.xz)", + "sha256": "c8edf6b05fd8a69ebd88d90c5c0975ee168502204622ad5cfcd550bc222632d9" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.15/announcement.html b/data/releases/5.6/5.6.15/announcement.html new file mode 100644 index 0000000000..382db3562a --- /dev/null +++ b/data/releases/5.6/5.6.15/announcement.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/5.6.15/changes.txt b/data/releases/5.6/5.6.15/changes.txt new file mode 100644 index 0000000000..9edf7ffab6 --- /dev/null +++ b/data/releases/5.6/5.6.15/changes.txt @@ -0,0 +1,24 @@ +- Core: + . Fixed bug #70681 (Segfault when binding $this of internal instance method + to null). (Nikita) + . Fixed bug #70685 (Segfault for getClosure() internal method rebind with + invalid $this). (Nikita) + +- Date: + . Fixed bug #70619 (DateTimeImmutable segfault). (Laruence) + +- Mcrypt: + . Fixed bug #70625 (mcrypt_encrypt() won't return data when no IV was + specified under RC4). (Nikita) + +- Mysqlnd: + . Fixed bug #70384 (mysqli_real_query():Unknown type 245 sent by the server). + (Andrey) + . Fixed bug #70572 segfault in mysqlnd_connect. (Andrey, Remi) + +- Opcache: + . Fixed bug #70632 (Third one of segfault in gc_remove_from_buffer). + (Laruence) + . Fixed bug #70631 (Another Segfault in gc_remove_from_buffer()). (Laruence) + . Fixed bug #70601 (Segfault in gc_remove_from_buffer()). (Laruence) + . Fixed compatibility with Windows 10 (see also bug #70652). (Anatol) diff --git a/data/releases/5.6/5.6.15/release.json b/data/releases/5.6/5.6.15/release.json new file mode 100644 index 0000000000..f7aaff91ca --- /dev/null +++ b/data/releases/5.6/5.6.15/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.15", + "date": "29 Oct 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.15.tar.bz2", + "name": "PHP 5.6.15 (tar.bz2)", + "sha256": "11a0645c4d4b749e256da1e0d6df89dd886b5b06b83c914d942653661dbd1c38" + }, + { + "filename": "php-5.6.15.tar.gz", + "name": "PHP 5.6.15 (tar.gz)", + "sha256": "bb2d4c226a4897b7c3659c2538a87aef7ec104f58f5ae930a263dd77fb8ebc40" + }, + { + "filename": "php-5.6.15.tar.xz", + "name": "PHP 5.6.15 (tar.xz)", + "sha256": "cf52e2e621e60997269663fa4bc06253191fa2a41dc9b08c8c911435b3ebcca9" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.16/announcement.html b/data/releases/5.6/5.6.16/announcement.html new file mode 100644 index 0000000000..a81033df90 --- /dev/null +++ b/data/releases/5.6/5.6.16/announcement.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/5.6.16/changes.txt b/data/releases/5.6/5.6.16/changes.txt new file mode 100644 index 0000000000..8c0f3edbc2 --- /dev/null +++ b/data/releases/5.6/5.6.16/changes.txt @@ -0,0 +1,25 @@ +- Core: + . Fixed bug #70828 (php-fpm 5.6 with opcache crashes when referencing a + non-existent constant). (Laruence) + . Fixed bug #70748 (Segfault in ini_lex () at Zend/zend_ini_scanner.l). + (Laruence) + +- Mysqlnd: + . Fixed bug #68344 (MySQLi does not provide way to disable peer certificate + validation) by introducing MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT + connection flag. (Andrey) + +- OCI8: + . Fixed bug #68298 (OCI int overflow). (Senthil) + +- PDO_DBlib: + . Fixed bug #69757 (Segmentation fault on nextRowset). + (miracle at rpz dot name) + +- SOAP: + . Fixed bug #70875 (Segmentation fault if wsdl has no targetNamespace + attribute). (Matteo) + +- SPL: + . Fixed bug #70852 (Segfault getting NULL offset of an ArrayObject). + (Reeze Xia) diff --git a/data/releases/5.6/5.6.16/release.json b/data/releases/5.6/5.6.16/release.json new file mode 100644 index 0000000000..7f6cc8c261 --- /dev/null +++ b/data/releases/5.6/5.6.16/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.16", + "date": "26 Nov 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.16.tar.bz2", + "name": "PHP 5.6.16 (tar.bz2)", + "sha256": "4fe6f40964c1bfaba05fc144ba20a2cdad33e11685f4f101ea5a48b98bbcd2ae" + }, + { + "filename": "php-5.6.16.tar.gz", + "name": "PHP 5.6.16 (tar.gz)", + "sha256": "b6618df6b11a275fa28596f1775727679f8492e100f3bd488d8a8bfbfc19349f" + }, + { + "filename": "php-5.6.16.tar.xz", + "name": "PHP 5.6.16 (tar.xz)", + "sha256": "8ef43271d9bd8cc8f8d407d3ba569de9fa14a28985ae97c76085bb50d597de98" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.17/announcement.html b/data/releases/5.6/5.6.17/announcement.html new file mode 100644 index 0000000000..835b7485bf --- /dev/null +++ b/data/releases/5.6/5.6.17/announcement.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/5.6.17/changes.txt b/data/releases/5.6/5.6.17/changes.txt new file mode 100644 index 0000000000..5b0dfc4802 --- /dev/null +++ b/data/releases/5.6/5.6.17/changes.txt @@ -0,0 +1,41 @@ +- Core: + . Fixed bug #66909 (configure fails utf8_to_mutf7 test). (Michael Orlitzky) + . Fixed bug #70958 (Invalid opcode while using ::class as trait method + paramater default value). (Laruence) + . Fixed bug #70957 (self::class can not be resolved with reflection for + abstract class). (Laruence) + . Fixed bug #70944 (try{ } finally{} can create infinite chains of + exceptions). (Laruence) + . Fixed bug #61751 (SAPI build problem on AIX: Undefined symbol: + php_register_internal_extensions). (Lior Kaplan) + +- FPM: + . Fixed bug #70755 (fpm_log.c memory leak and buffer overflow). (Stas) + +- GD: + . Fixed bug #70976 (Memory Read via gdImageRotateInterpolated Array Index + Out of Bounds). (CVE-2016-1903) (emmanuel dot law at gmail dot com) + +- Mysqlnd: + . Fixed bug #68077 (LOAD DATA LOCAL INFILE / open_basedir restriction). + (Laruence) + +- SOAP: + . Fixed bug #70900 (SoapClient systematic out of memory error). (Dmitry) + +- Standard: + . Fixed bug #70960 (ReflectionFunction for array_unique returns wrong number + of parameters). (Laruence) + +- PDO_Firebird: + . Fixed bug #60052 (Integer returned as a 64bit integer on X64_86). (Mariuz) + +- WDDX: + . Fixed bug #70661 (Use After Free Vulnerability in WDDX Packet + Deserialization). (taoguangchen at icloud dot com) + . Fixed bug #70741 (Session WDDX Packet Deserialization Type Confusion + Vulnerability). (taoguangchen at icloud dot com) + +- XMLRPC: + . Fixed bug #70728 (Type Confusion Vulnerability in PHP_to_XMLRPC_worker()). + (Julien) diff --git a/data/releases/5.6/5.6.17/release.json b/data/releases/5.6/5.6.17/release.json new file mode 100644 index 0000000000..3d048b2144 --- /dev/null +++ b/data/releases/5.6/5.6.17/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.17", + "date": "07 Jan 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.17.tar.bz2", + "name": "PHP 5.6.17 (tar.bz2)", + "sha256": "77b45f56a1e63e75bb22b42cfb8b438ec4083c59ce774b4d7c1685544b7add3b" + }, + { + "filename": "php-5.6.17.tar.gz", + "name": "PHP 5.6.17 (tar.gz)", + "sha256": "f5036535651e919415f4b6589391c95e4ff48f2d391818251c45da216791aac8" + }, + { + "filename": "php-5.6.17.tar.xz", + "name": "PHP 5.6.17 (tar.xz)", + "sha256": "ea9d5749380c7c7171e131616466deacd7cb124b5010eafc34e551b0a7b0fb2c" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.18/announcement.html b/data/releases/5.6/5.6.18/announcement.html new file mode 100644 index 0000000000..5c253375f4 --- /dev/null +++ b/data/releases/5.6/5.6.18/announcement.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/5.6.18/changes.txt b/data/releases/5.6/5.6.18/changes.txt new file mode 100644 index 0000000000..abe51ff482 --- /dev/null +++ b/data/releases/5.6/5.6.18/changes.txt @@ -0,0 +1,51 @@ +- Core: + . Fixed bug #71039 (exec functions ignore length but look for NULL + termination). (Anatol) + . Fixed bug #71089 (No check to duplicate zend_extension). (Remi) + . Fixed bug #71201 (round() segfault on 64-bit builds). (Anatol) + . Added support for new HTTP 451 code. (Julien) + . Fixed bug #71273 (A wrong ext directory setup in php.ini leads to crash). + (Anatol) + . Fixed bug #71323 (Output of stream_get_meta_data can be falsified by its + input). (Leo Gaspard) + . Fixed bug #71459 (Integer overflow in iptcembed()). (Stas) + +- Apache2handler: + . Fix >2G Content-Length headers in apache2handler. (Adam Harvey) + +- FTP: + . Implemented FR #55651 (Option to ignore the returned FTP PASV address). + (abrender at elitehosts dot com) + +- Opcache: + . Fixed bug #71127 (Define in auto_prepend_file is overwrite). (Laruence) + . Fixed bug #71024 (Unable to use PHP 7.0 x64 side-by-side with PHP 5.6 x32 + on the same server). (Anatol) + +- PCRE: + . Upgraded bundled PCRE library to 8.38. (CVE-2015-8383, CVE-2015-8386, + CVE-2015-8387, CVE-2015-8389, CVE-2015-8390, CVE-2015-8391, CVE-2015-8393, + CVE-2015-8394) + +- Phar: + . Fixed bug #71354 (Heap corruption in tar/zip/phar parser). (CVE-2016-4342) + (Stas) + . Fixed bug #71331 (Uninitialized pointer in phar_make_dirstream()). + (CVE-2016-4343) (Stas) + . Fixed bug #71391 (NULL Pointer Dereference in phar_tar_setupmetadata()). + (Stas) + . Fixed bug #71488 (Stack overflow when decompressing tar archives). + (CVE-2016-2554) (Stas) + +- Session: + . Fixed bug #69111 (Crash in SessionHandler::read()). (Anatol) + +- SOAP: + . Fixed bug #70979 (crash with bad soap request). (Anatol) + +- SPL: + . Fixed bug #71204 (segfault if clean spl_autoload_funcs while autoloading). + (Laruence) + +- WDDX: + . Fixed bug #71335 (Type Confusion in WDDX Packet Deserialization). (Stas) diff --git a/data/releases/5.6/5.6.18/release.json b/data/releases/5.6/5.6.18/release.json new file mode 100644 index 0000000000..6de13ba74c --- /dev/null +++ b/data/releases/5.6/5.6.18/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.18", + "date": "04 Feb 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.18.tar.bz2", + "name": "PHP 5.6.18 (tar.bz2)", + "sha256": "c3cd4a29a9562309d36e2b128407d6eaa5c7dde590d2b1a464457383e517f4ed" + }, + { + "filename": "php-5.6.18.tar.gz", + "name": "PHP 5.6.18 (tar.gz)", + "sha256": "76da4150dc2da86b7b63b1aad3c20d1d11964796251ac0dd4d26d0a3f5045015" + }, + { + "filename": "php-5.6.18.tar.xz", + "name": "PHP 5.6.18 (tar.xz)", + "sha256": "54dd9106c3469bc7028644d72ac140af00655420bbaaf4a742a64e9ed02ec1b0" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.19/announcement.html b/data/releases/5.6/5.6.19/announcement.html new file mode 100644 index 0000000000..7c8a1efd4a --- /dev/null +++ b/data/releases/5.6/5.6.19/announcement.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/5.6.19/changes.txt b/data/releases/5.6/5.6.19/changes.txt new file mode 100644 index 0000000000..3d1bcc7e4f --- /dev/null +++ b/data/releases/5.6/5.6.19/changes.txt @@ -0,0 +1,43 @@ +- CLI server: + . Fixed bug #71559 (Built-in HTTP server, we can download file in web by bug). + (Johannes, Anatol) + +- CURL: + . Fixed bug #71523 (Copied handle with new option CURLOPT_HTTPHEADER crashes + while curl_multi_exec). (Laruence) + +- Date: + . Fixed bug #68078 (Datetime comparisons ignore microseconds). (Willem-Jan + Zijderveld) + . Fixed bug #71525 (Calls to date_modify will mutate timelib_rel_time, + causing date_date_set issues). (Sean DuBois) + +- Fileinfo: + . Fixed bug #71434 (finfo throws notice for specific python file). (Laruence) + +- FPM: + . Fixed bug #62172 (FPM not working with Apache httpd 2.4 balancer/fcgi + setup). (Matt Haught, Remi) + +- Opcache: + . Fixed bug #71584 (Possible use-after-free of ZCG(cwd) in Zend Opcache). + (Yussuf Khalil) + +- PDO MySQL: + . Fixed bug #71569 (#70389 fix causes segmentation fault). (Nikita) + +- Phar: + . Fixed bug #71498 (Out-of-Bound Read in phar_parse_zipfile()). (Stas) + +- Standard: + . Fixed bug #70720 (strip_tags improper php code parsing). (Julien) + +- WDDX: + . Fixed bug #71587 (Use-After-Free / Double-Free in WDDX Deserialize). (Stas) + +- XSL: + . Fixed bug #71540 (NULL pointer dereference in xsl_ext_function_php()). + (Stas) + +- Zip: + . Fixed bug #71561 (NULL pointer dereference in Zip::ExtractTo). (Laruence) diff --git a/data/releases/5.6/5.6.19/release.json b/data/releases/5.6/5.6.19/release.json new file mode 100644 index 0000000000..00cd970ff6 --- /dev/null +++ b/data/releases/5.6/5.6.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.19", + "date": "03 Mar 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.19.tar.bz2", + "name": "PHP 5.6.19 (tar.bz2)", + "sha256": "2a24a3f84971680ac0a4c71050067de4f76ee235aa4a041fae21bfa69975c168" + }, + { + "filename": "php-5.6.19.tar.gz", + "name": "PHP 5.6.19 (tar.gz)", + "sha256": "fce49cddac9337f0c83afbafac5acfb82ba9f876a5a880c88240feac8c9b7a22" + }, + { + "filename": "php-5.6.19.tar.xz", + "name": "PHP 5.6.19 (tar.xz)", + "sha256": "bb32337f93a00b71789f116bddafa8848139120e7fb6f4f98a84f52dbcb8329f" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.2/announcement.html b/data/releases/5.6/5.6.2/announcement.html new file mode 100644 index 0000000000..9daf28ed35 --- /dev/null +++ b/data/releases/5.6/5.6.2/announcement.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/5.6.2/changes.txt b/data/releases/5.6/5.6.2/changes.txt new file mode 100644 index 0000000000..f9d0ef2295 --- /dev/null +++ b/data/releases/5.6/5.6.2/changes.txt @@ -0,0 +1,14 @@ +- Core: + . Fixed bug #68044 (Integer overflow in unserialize() (32-bits only)). + (CVE-2014-3669) (Stas) + +- cURL: + . Fixed bug #68089 (NULL byte injection - cURL lib). (Stas) + +- EXIF: + . Fixed bug #68113 (Heap corruption in exif_thumbnail()). (CVE-2014-3670) + (Stas) + +- XMLRPC: + . Fixed bug #68027 (Global buffer overflow in mkgmtime() function). + (CVE-2014-3668) (Stas) diff --git a/data/releases/5.6/5.6.2/release.json b/data/releases/5.6/5.6.2/release.json new file mode 100644 index 0000000000..57f5e029cb --- /dev/null +++ b/data/releases/5.6/5.6.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.2", + "date": "16 Oct 2014", + "tags": [], + "source": [ + { + "filename": "php-5.6.2.tar.bz2", + "name": "PHP 5.6.2 (tar.bz2)", + "sha256": "671dcf1f636410c63bb9eb015c4c180d904f5436f81217be0adbf52da9becdb5" + }, + { + "filename": "php-5.6.2.tar.gz", + "name": "PHP 5.6.2 (tar.gz)", + "sha256": "4bb316831979317caf738bb9e2c590bf3b7951ce60c69b9ca33f26069d9a2f39" + }, + { + "filename": "php-5.6.2.tar.xz", + "name": "PHP 5.6.2 (tar.xz)", + "sha256": "9be1322d33520fb2164282fb0fcdc212f66ffedcd912bff60955d5696454fe39" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.20/announcement.html b/data/releases/5.6/5.6.20/announcement.html new file mode 100644 index 0000000000..398945bba9 --- /dev/null +++ b/data/releases/5.6/5.6.20/announcement.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/5.6.20/changes.txt b/data/releases/5.6/5.6.20/changes.txt new file mode 100644 index 0000000000..7a726d3f90 --- /dev/null +++ b/data/releases/5.6/5.6.20/changes.txt @@ -0,0 +1,43 @@ +- CLI Server: + . Fixed bug #69953 (Support MKCALENDAR request method). (Christoph) + +- Core: + . Fixed bug #71596 (Segmentation fault on ZTS with date function + (setlocale)). (Anatol) + +- Curl: + . Fixed bug #71694 (Support constant CURLM_ADDED_ALREADY). (mpyw) + +- Date: + . Fixed bug #71635 (DatePeriod::getEndDate segfault). (Thomas Punt) + +- Fileinfo: + . Fixed bug #71527 (Buffer over-write in finfo_open with malformed magic + file). (CVE-2015-8865) (Anatol) + +- Mbstring: + . Fixed bug #71906 (AddressSanitizer: negative-size-param (-1) in + mbfl_strcut). (CVE-2016-4073) (Stas) + +- ODBC: + . Fixed bug #47803, #69526 (Executing prepared statements is succesfull only + for the first two statements). (einavitamar at gmail dot com, Anatol) + . Fixed bug #71860 (Invalid memory write in phar on filename with \0 in + name). (CVE-2016-4072) (Stas) + +- PDO_DBlib: + . Fixed bug #54648 (PDO::MSSQL forces format of datetime fields). + (steven dot lambeth at gmx dot de, Anatol) + +- Phar: + . Fixed bug #71625 (Crash in php7.dll with bad phar filename). (Anatol) + . Fixed bug #71504 (Parsing of tar file with duplicate filenames causes + memory leak). (Jos Elstgeest) + +- SNMP: + . Fixed bug #71704 (php_snmp_error() Format String Vulnerability). + (CVE-2016-4071) (andrew at jmpesp dot org) + +- Standard: + . Fixed bug #71798 (Integer Overflow in php_raw_url_encode). + (CVE-2016-4070) (taoguangchen at icloud dot com, Stas) diff --git a/data/releases/5.6/5.6.20/release.json b/data/releases/5.6/5.6.20/release.json new file mode 100644 index 0000000000..4e7beff589 --- /dev/null +++ b/data/releases/5.6/5.6.20/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.20", + "date": "31 Mar 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.20.tar.bz2", + "name": "PHP 5.6.20 (tar.bz2)", + "sha256": "5ac7bf7caec7a79b18cf458e786fd1609ad2da771224b80bc15cc6f01b22bf1f" + }, + { + "filename": "php-5.6.20.tar.gz", + "name": "PHP 5.6.20 (tar.gz)", + "sha256": "9a7ec6e1080ee93dcbe7df3e49ea1c3c3da5fc2258aff763f39ab3786baf8d56" + }, + { + "filename": "php-5.6.20.tar.xz", + "name": "PHP 5.6.20 (tar.xz)", + "sha256": "2b87d40213361112af49157a435e0d4cdfd334c9b7c731c8b844932b1f444e7a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.21/announcement.html b/data/releases/5.6/5.6.21/announcement.html new file mode 100644 index 0000000000..6956add08a --- /dev/null +++ b/data/releases/5.6/5.6.21/announcement.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/5.6.21/changes.txt b/data/releases/5.6/5.6.21/changes.txt new file mode 100644 index 0000000000..57eee06c8f --- /dev/null +++ b/data/releases/5.6/5.6.21/changes.txt @@ -0,0 +1,58 @@ +- Core: + . Fixed bug #69537 (__debugInfo with empty string for key gives error). + (krakjoe) + . Fixed bug #71841 (EG(error_zval) is not handled well). (Laruence) + +- BCmath: + . Fixed bug #72093 (bcpowmod accepts negative scale and corrupts + _one_ definition). (Stas) + +- Curl: + . Fixed bug #71831 (CURLOPT_NOPROXY applied as long instead of string). + (Michael Sierks) + +- Date: + . Fixed bug #71889 (DateInterval::format Segmentation fault). (Thomas Punt) + +- EXIF: + . Fixed bug #72094 (Out of bounds heap read access in exif header processing). (Stas) + +- GD: + . Fixed bug #71952 (Corruption inside imageaffinematrixget). (Stas) + . Fixed bug #71912 (libgd: signedness vulnerability). (CVE-2016-3074) (Stas) + +- Intl: + . Fixed bug #72061 (Out-of-bounds reads in zif_grapheme_stripos with negative + offset). (Stas) + +- OCI8: + . Fixed bug #71422 (Fix ORA-01438: value larger than specified precision + allowed for this column). (Chris Jones) + +- ODBC: + . Fixed bug #63171 (Script hangs after max_execution_time). (Remi) + +- Opcache: + . Fixed bug #71843 (null ptr deref ZEND_RETURN_SPEC_CONST_HANDLER). + (Laruence) + +- PDO: + . Fixed bug #52098 (Own PDOStatement implementation ignore __call()). + (Daniel Kalaspuffar, Julien) + . Fixed bug #71447 (Quotes inside comments not properly handled). (Matteo) + +- Postgres: + . Fixed bug #71820 (pg_fetch_object binds parameters before call + constructor). (Anatol) + +- SPL: + . Fixed bug #67582 (Cloned SplObjectStorage with overwritten getHash fails + offsetExists()). (Nikita) + +- Standard: + . Fixed bug #71840 (Unserialize accepts wrongly data). (Ryat, Laruence) + . Fixed bug #67512 (php_crypt() crashes if crypt_r() does not exist or + _REENTRANT is not defined). (Nikita) + +- XML: + . Fixed bug #72099 (xml_parse_into_struct segmentation fault). (Stas) diff --git a/data/releases/5.6/5.6.21/release.json b/data/releases/5.6/5.6.21/release.json new file mode 100644 index 0000000000..ae3cfdedf4 --- /dev/null +++ b/data/releases/5.6/5.6.21/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.21", + "date": "28 Apr 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.21.tar.bz2", + "name": "PHP 5.6.21 (tar.bz2)", + "sha256": "b4ed7ab574b689fd6d6494fde954826c06efc85c505e017b8d776c7c7f479590" + }, + { + "filename": "php-5.6.21.tar.gz", + "name": "PHP 5.6.21 (tar.gz)", + "sha256": "5997668c1f6f2d86a59cf75cc86b4a94687884614dec481fad7e13a76b70fcd5" + }, + { + "filename": "php-5.6.21.tar.xz", + "name": "PHP 5.6.21 (tar.xz)", + "sha256": "566ff1a486cb0485ed477a91ea292423f77a58671270ff73b74e67e3ce7084f9" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.22/announcement.html b/data/releases/5.6/5.6.22/announcement.html new file mode 100644 index 0000000000..ab492a4b13 --- /dev/null +++ b/data/releases/5.6/5.6.22/announcement.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/5.6.22/changes.txt b/data/releases/5.6/5.6.22/changes.txt new file mode 100644 index 0000000000..b470f454df --- /dev/null +++ b/data/releases/5.6/5.6.22/changes.txt @@ -0,0 +1,18 @@ +- Core: + . Fixed bug #72172 (zend_hex_strtod should not use strlen). + (bwitz at hotmail dot com ) + . Fixed bug #72114 (Integer underflow / arbitrary null write in + fread/gzread). (CVE-2016-5096) (Stas) + . Fixed bug #72135 (Integer Overflow in php_html_entities). (CVE-2016-5094) + (Stas) + +- GD: + . Fixed bug #72227 (imagescale out-of-bounds read). (CVE-2013-7456) (Stas) + +- Intl + . Fixed bug #64524 (Add intl.use_exceptions to php.ini-*). (Anatol) + . Fixed bug #72241 (get_icu_value_internal out-of-bounds read). + (CVE-2016-5093) (Stas) + +- Postgres: + . Fixed bug #72151 (mysqli_fetch_object changed behaviour). (Anatol) diff --git a/data/releases/5.6/5.6.22/release.json b/data/releases/5.6/5.6.22/release.json new file mode 100644 index 0000000000..c73db566e9 --- /dev/null +++ b/data/releases/5.6/5.6.22/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.22", + "date": "26 May 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.22.tar.bz2", + "name": "PHP 5.6.22 (tar.bz2)", + "sha256": "90da8a80cc52fa699cf2bfa4c6fa737c772df7c92b81ef483460aa3b1e9f88c6" + }, + { + "filename": "php-5.6.22.tar.gz", + "name": "PHP 5.6.22 (tar.gz)", + "sha256": "4ce0f58c3842332c4e3bb2ec1c936c6817294273abaa37ea0ef7ca2a68cf9b21" + }, + { + "filename": "php-5.6.22.tar.xz", + "name": "PHP 5.6.22 (tar.xz)", + "sha256": "c96980d7de1d66c821a4ee5809df0076f925b2fe0b8c362d234d92f2f0a178e2" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.23/announcement.html b/data/releases/5.6/5.6.23/announcement.html new file mode 100644 index 0000000000..8f14a346ee --- /dev/null +++ b/data/releases/5.6/5.6.23/announcement.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/5.6.23/changes.txt b/data/releases/5.6/5.6.23/changes.txt new file mode 100644 index 0000000000..01ed56ce7b --- /dev/null +++ b/data/releases/5.6/5.6.23/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed bug #72268 (Integer Overflow in nl2br()). (Stas) + . Fixed bug #72275 (Integer Overflow in json_encode()/json_decode()/ + json_utf8_to_utf16()). (Stas) + . Fixed bug #72400 (Integer Overflow in addcslashes/addslashes). (Stas) + . Fixed bug #72403 (Integer Overflow in Length of String-typed ZVAL). (Stas) + +- Date: + . Fixed bug #63740 (strtotime seems to use both sunday and monday as start of + week). (Derick) + +- GD: + . Fixed bug #66387 (Stack overflow with imagefilltoborder). (CVE-2015-8874) + (cmb) + . Fixed bug #72298 (pass2_no_dither out-of-bounds access). (Stas) + . Fixed bug #72337 (invalid dimensions can lead to crash). (Pierre) + . Fixed bug #72339 (Integer Overflow in _gd2GetHeader() resulting in + heap overflow). (CVE-2016-5766) (Pierre) + . Fixed bug #72407 (NULL Pointer Dereference at _gdScaleVert). (Stas) + . Fixed bug #72446 (Integer Overflow in gdImagePaletteToTrueColor() resulting + in heap overflow). (CVE-2016-5767) (Pierre) + +- Intl: + . Fixed bug #70484 (selectordinal doesn't work with named parameters). + (Anatol) + +- mbstring: + . Fixed bug #72402 (_php_mb_regex_ereg_replace_exec - double free). + (CVE-2016-5768) (Stas) + +- mcrypt: + . Fixed bug #72455 (Heap Overflow due to integer overflows). (CVE-2016-5769) + (Stas) + +- OpenSSL: + . Fixed bug #72140 (segfault after calling ERR_free_strings()). + (Jakub Zelenka) + +- Phar: + . Fixed bug #72321 (invalid free in phar_extract_file()). + (hji at dyntopia dot com) + +- SPL: + . Fixed bug #72262 (int/size_t confusion in SplFileObject::fread). + (CVE-2016-5770) (Stas) + . Fixed bug #72433 (Use After Free Vulnerability in PHP's GC algorithm and + unserialize). (CVE-2016-5771) (Dmitry) + +- WDDX: + . Fixed bug #72340 (Double Free Courruption in wddx_deserialize). + (CVE-2016-5772) (Stas) + +- zip: + . Fixed bug #72434 (ZipArchive class Use After Free Vulnerability in PHP's GC + algorithm and unserialize). (CVE-2016-5773) (Dmitry) diff --git a/data/releases/5.6/5.6.23/release.json b/data/releases/5.6/5.6.23/release.json new file mode 100644 index 0000000000..4b298e6779 --- /dev/null +++ b/data/releases/5.6/5.6.23/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.23", + "date": "23 Jun 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.23.tar.bz2", + "name": "PHP 5.6.23 (tar.bz2)", + "sha256": "facd280896d277e6f7084b60839e693d4db68318bfc92085d3dc0251fd3558c7" + }, + { + "filename": "php-5.6.23.tar.gz", + "name": "PHP 5.6.23 (tar.gz)", + "sha256": "5f2274a13970887e8c81500c2afe292d51c3524d1a06554b0a87c74ce0a24ffe" + }, + { + "filename": "php-5.6.23.tar.xz", + "name": "PHP 5.6.23 (tar.xz)", + "sha256": "39141e9a617af172aedbbacee7a63eb15502850f7cea20d759a9cffa7cfb0a1a" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.24/announcement.html b/data/releases/5.6/5.6.24/announcement.html new file mode 100644 index 0000000000..a027624f77 --- /dev/null +++ b/data/releases/5.6/5.6.24/announcement.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/5.6.24/changes.txt b/data/releases/5.6/5.6.24/changes.txt new file mode 100644 index 0000000000..f627a05358 --- /dev/null +++ b/data/releases/5.6/5.6.24/changes.txt @@ -0,0 +1,71 @@ +- Core: + . Fixed bug #71936 (Segmentation fault destroying HTTP_RAW_POST_DATA). + (mike dot laspina at gmail dot com, Remi) + . Fixed bug #72496 (Cannot declare public method with signature incompatible + with parent private method). (Pedro Magalhães) + . Fixed bug #72138 (Integer Overflow in Length of String-typed ZVAL). (Stas) + . Fixed bug #72513 (Stack-based buffer overflow vulnerability in + virtual_file_ex). (loianhtuan at gmail dot com) + . Fixed bug #72562 (Use After Free in unserialize() with Unexpected Session + Deserialization). (taoguangchen at icloud dot com) + . Fixed bug #72573 (HTTP_PROXY is improperly trusted by some PHP libraries and + applications). (CVE-2016-5385) (Stas) + +- bz2: + . Fixed bug #72447 (Type Confusion in php_bz2_filter_create()). (gogil at + stealien dot com). + . Fixed bug #72613 (Inadequate error handling in bzread()). (Stas) + +- Date: + . Fixed bug #66836 (DateTime::createFromFormat 'U' with pre 1970 dates fails + parsing). (derick) + +- EXIF: + . Fixed bug #50845 (exif_read_data() returns corrupted exif headers). + (Bartosz Dziewoński) + . Fixed bug #72603 (Out of bound read in exif_process_IFD_in_MAKERNOTE). + (Stas) + . Fixed bug #72618 (NULL Pointer Dereference in exif_process_user_comment). + (Stas) + +- GD: + . Fixed bug #43475 (Thick styled lines have scrambled patterns). (cmb) + . Fixed bug #53640 (XBM images require width to be multiple of 8). (cmb) + . Fixed bug #64641 (imagefilledpolygon doesn't draw horizontal line). (cmb) + . Fixed bug #72512 (gdImageTrueColorToPaletteBody allows arbitrary write/read + access). (Pierre) + . Fixed bug #72519 (imagegif/output out-of-bounds access). (Pierre) + . Fixed bug #72558 (Integer overflow error within _gdContributionsAlloc()). + (CVE-2016-6207) (Pierre) + +- Intl: + . Fixed bug #72533 (locale_accept_from_http out-of-bounds access). (Stas) + +- OpenSSL: + . Fixed bug #71915 (openssl_random_pseudo_bytes is not fork-safe). + (Jakub Zelenka) + . Fixed bug #72336 (openssl_pkey_new does not fail for invalid DSA params). + (Jakub Zelenka) + +- SNMP: + . Fixed bug #72479 (Use After Free Vulnerability in SNMP with GC and + unserialize()). (taoguangchen at icloud dot com) + +- SPL: + . Fixed bug #55701 (GlobIterator throws LogicException). (Valentin VĂLCIU) + +- SQLite3: + . Fixed bug #70628 (Clearing bindings on an SQLite3 statement doesn't work). + (cmb) + +- Streams: + . Fixed bug #72439 (Stream socket with remote address leads to a segmentation + fault). (Laruence) + +- Xmlrpc: + . Fixed bug #72606 (heap-buffer-overflow (write) simplestring_addn simplestring.c). + (Stas) + +- Zip: + . Fixed bug #72520 (Stack-based buffer overflow vulnerability in + php_stream_zip_opener). (loianhtuan at gmail dot com) diff --git a/data/releases/5.6/5.6.24/release.json b/data/releases/5.6/5.6.24/release.json new file mode 100644 index 0000000000..423885726d --- /dev/null +++ b/data/releases/5.6/5.6.24/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.24", + "date": "21 Jul 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.24.tar.bz2", + "name": "PHP 5.6.24 (tar.bz2)", + "sha256": "bf23617ec3ed0a125ec8bde2b7bca9d3804b2ff4df8de192890c84dc9fac38c6" + }, + { + "filename": "php-5.6.24.tar.gz", + "name": "PHP 5.6.24 (tar.gz)", + "sha256": "5f8b2e4e00360fee6eb1b89447266ae45993265955bd1ea9866270d75cdb6ec1" + }, + { + "filename": "php-5.6.24.tar.xz", + "name": "PHP 5.6.24 (tar.xz)", + "sha256": "ed7c38c6dac539ade62e08118258f4dac0c49beca04d8603bee4e0ea6ca8250b" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.25/announcement.html b/data/releases/5.6/5.6.25/announcement.html new file mode 100644 index 0000000000..415dd43b02 --- /dev/null +++ b/data/releases/5.6/5.6.25/announcement.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/5.6.25/changes.txt b/data/releases/5.6/5.6.25/changes.txt new file mode 100644 index 0000000000..8aa9de2613 --- /dev/null +++ b/data/releases/5.6/5.6.25/changes.txt @@ -0,0 +1,135 @@ +- Bz2: + . Fixed bug #72837 (integer overflow in bzdecompress caused heap + corruption). (Stas) + +- Core: + . Fixed bug #70436 (Use After Free Vulnerability in unserialize()). + (Taoguang Chen) + . Fixed bug #72024 (microtime() leaks memory). (maroszek at gmx dot net) + . Fixed bug #72581 (previous property undefined in Exception after + deserialization). (Laruence) + . Implemented FR #72614 (Support "nmake test" on building extensions by + phpize). (Yuji Uchiyama) + . Fixed bug #72641 (phpize (on Windows) ignores PHP_PREFIX). + (Yuji Uchiyama) + . Fixed bug #72663 (Create an Unexpected Object and Don't Invoke + __wakeup() in Deserialization). (Stas) + . Fixed bug #72681 (PHP Session Data Injection Vulnerability). (Stas) + . Fixed URL rewriter partially. It would not rewrite '//example.com/' URL + unconditionally. Only requested host(HTTP_HOST) is rewritten. (Yasuo) + +- Calendar: + . Fixed bug #67976 (cal_days_month() fails for final month of the French + calendar). (cmb) + . Fixed bug #71894 (AddressSanitizer: global-buffer-overflow in + zif_cal_from_jd). (cmb) + +- Curl: + . Fixed bug #71144 (Segmentation fault when using cURL with ZTS). + (maroszek at gmx dot net) + . Fixed bug #71929 (Certification information (CERTINFO) data parsing error). + (Pierrick) + . Fixed bug #72807 (integer overflow in curl_escape caused heap + corruption). (Stas) + +- DOM: + . Fixed bug #66502 (DOM document dangling reference). (Sean Heelan, cmb) + +- Ereg: + . Fixed bug #72838 (Integer overflow lead to heap corruption in + sql_regcase). (Stas) + +- EXIF: + . Fixed bug #72627 (Memory Leakage In exif_process_IFD_in_TIFF). (Stas) + . Fixed bug #72735 (Samsung picture thumb not read (zero size)). (Kalle, Remi) + +- Filter: + . Fixed bug #71745 (FILTER_FLAG_NO_RES_RANGE does not cover whole 127.0.0.0/8 + range). (bugs dot php dot net at majkl578 dot cz) + +- FPM: + . Fixed bug #72575 (using --allow-to-run-as-root should ignore missing user). + (gooh) + +- GD: + . Fixed bug #43828 (broken transparency of imagearc for truecolor in + blendingmode). (cmb) + . Fixed bug #66555 (Always false condition in ext/gd/libgd/gdkanji.c). (cmb) + . Fixed bug #68712 (suspicious if-else statements). (cmb) + . Fixed bug #70315 (500 Server Error but page is fully rendered). (cmb) + . Fixed bug #72596 (imagetypes function won't advertise WEBP support). (cmb) + . Fixed bug #72604 (imagearc() ignores thickness for full arcs). (cmb) + . Fixed bug #72697 (select_colors write out-of-bounds). (Stas) + . Fixed bug #72709 (imagesetstyle() causes OOB read for empty $styles). (cmb) + . Fixed bug #72730 (imagegammacorrect allows arbitrary write access). (Stas) + . Fixed bug #72494 (imagecropauto out-of-bounds access). (Fernando, Pierre, + cmb) + +- Intl: + . Partially fixed #72506 (idn_to_ascii for UTS #46 incorrect for long domain + names). (cmb) + +- mbstring: + . Fixed bug #72691 (mb_ereg_search raises a warning if a match zero-width). + (cmb) + . Fixed bug #72693 (mb_ereg_search increments search position when a match + zero-width). (cmb) + . Fixed bug #72694 (mb_ereg_search_setpos does not accept a string's last + position). (cmb) + . Fixed bug #72710 (`mb_ereg` causes buffer overflow on regexp compile error). + (ju1ius) + +- OCI8: + . Fixed invalid handle error with Implicit Result Sets. (Chris Jones) + +- PCRE: + . Fixed bug #72688 (preg_match missing group names in matches). (cmb) + +- PDO_pgsql: + . Fixed bug #70313 (PDO statement fails to throw exception). (Matteo) + +- Reflection: + . Fixed bug #72222 (ReflectionClass::export doesn't handle array constants). + (Nikita Nefedov) + +- SNMP: + . Fixed bug #72708 (php_snmp_parse_oid integer overflow in memory + allocation). (djodjo at gmail dot com) + +- Standard: + . Fixed bug #72330 (CSV fields incorrectly split if escape char followed by + UTF chars). (cmb) + . Fixed bug #72836 (integer overflow in base64_decode). (Stas) + . Fixed bug #72848 (integer overflow in quoted_printable_encode). (Stas) + . Fixed bug #72849 (integer overflow in urlencode). (Stas) + . Fixed bug #72850 (integer overflow in php_uuencode). (Stas) + +- Streams: + . Fixed bug #41021 (Problems with the ftps wrapper). (vhuk) + . Fixed bug #54431 (opendir() does not work with ftps:// wrapper). (vhuk) + . Fixed bug #72667 (opendir() with ftp:// attempts to open data stream for + non-existent directories). (vhuk) + . Fixed bug #72764 (ftps:// opendir wrapper data channel encryption fails + with IIS FTP 7.5, 8.5). (vhuk) + . Fixed bug #72771 (ftps:// wrapper is vulnerable to protocol downgrade + attack). (Stas) + +- SPL: + . Fixed bug #72122 (IteratorIterator breaks '@' error suppression). (kinglozzer) + . Fixed bug #72646 (SplFileObject::getCsvControl does not return the escape + character). (cmb) + . Fixed bug #72684 (AppendIterator segfault with closed generator). (Pierrick) + +- SQLite3: + . Implemented FR #72653 (SQLite should allow opening with empty filename). + (cmb) + +- Wddx: + . Fixed bug #72142 (WDDX Packet Injection Vulnerability in + wddx_serialize_value()). (Taoguang Chen) + . Fixed bug #72749 (wddx_deserialize allows illegal memory access) (Stas) + . Fixed bug #72750 (wddx_deserialize null dereference). (Stas) + . Fixed bug #72790 (wddx_deserialize null dereference with invalid xml). + (Stas) + . Fixed bug #72799 (wddx_deserialize null dereference in + php_wddx_pop_element). (Stas) diff --git a/data/releases/5.6/5.6.25/release.json b/data/releases/5.6/5.6.25/release.json new file mode 100644 index 0000000000..69830415b9 --- /dev/null +++ b/data/releases/5.6/5.6.25/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.25", + "date": "18 Aug 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.25.tar.bz2", + "name": "PHP 5.6.25 (tar.bz2)", + "sha256": "58ce6032aced7f3e42ced492bd9820e5b3f2a3cd3ef71429aa92fd7b3eb18dde" + }, + { + "filename": "php-5.6.25.tar.gz", + "name": "PHP 5.6.25 (tar.gz)", + "sha256": "733f1c811d51c2d4031a0c058dc94d09d03858d781ca2eb2cce78853bc76db58" + }, + { + "filename": "php-5.6.25.tar.xz", + "name": "PHP 5.6.25 (tar.xz)", + "sha256": "7535cd6e20040ccec4594cc386c6f15c3f2c88f24163294a31068cf7dfe7f644" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.26/announcement.html b/data/releases/5.6/5.6.26/announcement.html new file mode 100644 index 0000000000..4ffbc42aa1 --- /dev/null +++ b/data/releases/5.6/5.6.26/announcement.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/5.6.26/changes.txt b/data/releases/5.6/5.6.26/changes.txt new file mode 100644 index 0000000000..2fce9e219f --- /dev/null +++ b/data/releases/5.6/5.6.26/changes.txt @@ -0,0 +1,86 @@ +- Core: + . Fixed bug #72907 (null pointer deref, segfault in gc_remove_zval_from_buffer + (zend_gc.c:260)). (Laruence) + +- Dba: + . Fixed bug #71514 (Bad dba_replace condition because of wrong API usage). + (cmb) + . Fixed bug #70825 (Cannot fetch multiple values with group in ini file). + (cmb) + +- EXIF: + . Fixed bug #72926 (Uninitialized Thumbail Data Leads To Memory Leakage in + exif_process_IFD_in_TIFF). (Stas) + +- FTP: + . Fixed bug #70195 (Cannot upload file using ftp_put to FTPES with + require_ssl_reuse). (Benedict Singer) + +- GD: + . Fixed bug #66005 (imagecopy does not support 1bit transparency on truecolor + images). (cmb) + . Fixed bug #72913 (imagecopy() loses single-color transparency on palette + images). (cmb) + . Fixed bug #68716 (possible resource leaks in _php_image_convert()). (cmb) + +- Intl: + . Fixed bug #73007 (add locale length check). (Stas) + +- JSON: + . Fixed bug #72787 (json_decode reads out of bounds). (Jakub Zelenka) + +- mbstring: + . Fixed bug #66797 (mb_substr only takes 32-bit signed integer). (cmb) + . Fixed bug #72910 (Out of bounds heap read in mbc_to_code() / triggered by + mb_ereg_match()). (Stas) + +- MSSQL: + . Fixed bug #72039 (Use of uninitialised value on mssql_guid_string). (Kalle) + +- Mysqlnd: + . Fixed bug #72293 (Heap overflow in mysqlnd related to BIT fields). (Stas) + +- Phar: + . Fixed bug #72928 (Out of bound when verify signature of zip phar in + phar_parse_zipfile). (Stas) + . Fixed bug #73035 (Out of bound when verify signature of tar phar in + phar_parse_tarfile). (Stas) + +- PDO: + . Fixed bug #60665 (call to empty() on NULL result using PDO::FETCH_LAZY + returns false). (cmb) + +- PDO_pgsql: + . Implemented FR #72633 (Postgres PDO lastInsertId() should work without + specifying a sequence). (Pablo Santiago Sánchez, Matteo) + . Fixed bug #72759 (Regression in pgo_pgsql). (Anatol) + +- SPL: + . Fixed bug #73029 (Missing type check when unserializing SplArray). (Stas) + +- Standard: + . Fixed bug #72823 (strtr out-of-bound access). (cmb) + . Fixed bug #72278 (getimagesize returning FALSE on valid jpg). (cmb) + . Fixed bug #65550 (get_browser() incorrectly parses entries with "+" sign). + (cmb) + . Fixed bug #71882 (Negative ftruncate() on php://memory exhausts memory). + (cmb) + . Fixed bug #73011 (integer overflow in fgets cause heap corruption). (Stas) + . Fixed bug #73017 (memory corruption in wordwrap function). (Stas) + . Fixed bug #73045 (integer overflow in fgetcsv caused heap corruption). (Stas) + . Fixed bug #73052 (Memory Corruption in During Deserialized-object Destruction) + (Stas) + +- Streams: + . Fixed bug #72853 (stream_set_blocking doesn't work). (Laruence) + +- Wddx: + . Fixed bug #72860 (wddx_deserialize use-after-free). (Stas) + . Fixed bug #73065 (Out-Of-Bounds Read in php_wddx_push_element). (Stas) + +- XML: + . Fixed bug #72085 (SEGV on unknown address zif_xml_parse). (cmb) + . Fixed bug #72927 (integer overflow in xml_utf8_encode). (Stas) + +- ZIP: + . Fixed bug #68302 (impossible to compile php with zip support). (cmb) diff --git a/data/releases/5.6/5.6.26/release.json b/data/releases/5.6/5.6.26/release.json new file mode 100644 index 0000000000..22ae0e9649 --- /dev/null +++ b/data/releases/5.6/5.6.26/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.26", + "date": "15 Sep 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.26.tar.bz2", + "name": "PHP 5.6.26 (tar.bz2)", + "sha256": "d47aab8083a4284b905777e1b45dd7735adc53be827b29f896684750ac8b6236" + }, + { + "filename": "php-5.6.26.tar.gz", + "name": "PHP 5.6.26 (tar.gz)", + "sha256": "f76b6cc23739d9dabf875aee57d91ae73f15e88ddf78803369b8b4728b19b924" + }, + { + "filename": "php-5.6.26.tar.xz", + "name": "PHP 5.6.26 (tar.xz)", + "sha256": "203a854f0f243cb2810d1c832bc871ff133eccdf1ff69d32846f93bc1bef58a8" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.27/announcement.html b/data/releases/5.6/5.6.27/announcement.html new file mode 100644 index 0000000000..202e6608f4 --- /dev/null +++ b/data/releases/5.6/5.6.27/announcement.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/5.6.27/changes.txt b/data/releases/5.6/5.6.27/changes.txt new file mode 100644 index 0000000000..d8ea5c0d9b --- /dev/null +++ b/data/releases/5.6/5.6.27/changes.txt @@ -0,0 +1,92 @@ +- Core: + . Fixed bug #73025 (Heap Buffer Overflow in virtual_popen of + zend_virtual_cwd.c). (cmb) + . Fixed bug #73058 (crypt broken when salt is 'too' long). (Anatol) + . Fixed bug #72703 (Out of bounds global memory read in BF_crypt triggered by + password_verify). (Anatol) + . Fixed bug #73189 (Memcpy negative size parameter php_resolve_path). (Stas) + . Fixed bug #73147 (Use After Free in unserialize()). (Stas) + +- BCmath: + . Fixed bug #73190 (memcpy negative parameter _bc_new_num_ex). (Stas) + +- DOM: + . Fixed bug #73150 (missing NULL check in dom_document_save_html). (Stas) + +- Ereg: + . Fixed bug #73284 (heap overflow in php_ereg_replace function). (Stas) + +- Filter: + . Fixed bug #72972 (Bad filter for the flags FILTER_FLAG_NO_RES_RANGE and + FILTER_FLAG_NO_PRIV_RANGE). (julien) + . Fixed bug #67167 (Wrong return value from FILTER_VALIDATE_BOOLEAN, + FILTER_NULL_ON_FAILURE). (levim, cmb) + . Fixed bug #73054 (default option ignored when object passed to int filter). + (cmb) + +- GD: + . Fixed bug #67325 (imagetruecolortopalette: white is duplicated in palette). + (cmb) + . Fixed bug #50194 (imagettftext broken on transparent background w/o + alphablending). (cmb) + . Fixed bug #73003 (Integer Overflow in gdImageWebpCtx of gd_webp.c). (trylab, + cmb) + . Fixed bug #53504 (imagettfbbox gives incorrect values for bounding box). + (Mark Plomer, cmb) + . Fixed bug #73157 (imagegd2() ignores 3rd param if 4 are given). (cmb) + . Fixed bug #73155 (imagegd2() writes wrong chunk sizes on boundaries). (cmb) + . Fixed bug #73159 (imagegd2(): unrecognized formats may result in corrupted + files). (cmb) + . Fixed bug #73161 (imagecreatefromgd2() may leak memory). (cmb) + +- Intl: + . Fixed bug #73218 (add mitigation for ICU int overflow). (Stas) + +- Imap: + . Fixed bug #73208 (integer overflow in imap_8bit caused heap corruption). + (Stas) + +- Mbstring: + . Fixed bug #72994 (mbc_to_code() out of bounds read). (Laruence, cmb) + . Fixed bug #66964 (mb_convert_variables() cannot detect recursion). (Yasuo) + . Fixed bug #72992 (mbstring.internal_encoding doesn't inherit default_charset). + (Yasuo) + . Fixed bug #73082 (string length overflow in mb_encode_* function). (Stas) + +- PCRE: + . Fixed bug #73174 (heap overflow in php_pcre_replace_impl). (Stas) + +- Opcache: + . Fixed bug #72590 (Opcache restart with kill_all_lockers does not work). + (Keyur) (julien backport) + +- OpenSSL: + . Fixed bug #73072 (Invalid path SNI_server_certs causes segfault). + (Jakub Zelenka) + . Fixed bug #73275 (crash in openssl_encrypt function). (Stas) + . Fixed bug #73276 (crash in openssl_random_pseudo_bytes function). (Stas) + +- Session: + . Fixed bug #68015 (Session does not report invalid uid for files save handler). + (Yasuo) + . Fixed bug #73100 (session_destroy null dereference in ps_files_path_create). + (cmb) + +- SimpleXML: + . Fixed bug #73293 (NULL pointer dereference in SimpleXMLElement::asXML()). + (Stas) + +- SPL: + . Fixed bug #73073 (CachingIterator null dereference when convert to string). + (Stas) + +- Standard: + . Fixed bug #73240 (Write out of bounds at number_format). (Stas) + . Fixed bug #73017 (memory corruption in wordwrap function). (Stas) + +- Stream: + . Fixed bug #73069 (readfile() mangles files larger than 2G). (Laruence) + +- Zip: + . Fixed bug #70752 (Depacking with wrong password leaves 0 length files). + (cmb) diff --git a/data/releases/5.6/5.6.27/release.json b/data/releases/5.6/5.6.27/release.json new file mode 100644 index 0000000000..1c9b36ba55 --- /dev/null +++ b/data/releases/5.6/5.6.27/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.27", + "date": "13 Oct 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.27.tar.bz2", + "name": "PHP 5.6.27 (tar.bz2)", + "sha256": "3b77d3a067b6e9cc7bb282d4d5b0e6eeb0623a828bb0479241e3b030446f2a3c" + }, + { + "filename": "php-5.6.27.tar.gz", + "name": "PHP 5.6.27 (tar.gz)", + "sha256": "3e6cecec615907587a2b35fa8e7f915f038034dc57530734c2b94d381e664a1a" + }, + { + "filename": "php-5.6.27.tar.xz", + "name": "PHP 5.6.27 (tar.xz)", + "sha256": "16eb544498339d1d855292826e2e547ab01a31600141094959073e5e10e93ab5" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.28/announcement.html b/data/releases/5.6/5.6.28/announcement.html new file mode 100644 index 0000000000..a981ab846c --- /dev/null +++ b/data/releases/5.6/5.6.28/announcement.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/5.6.28/changes.txt b/data/releases/5.6/5.6.28/changes.txt new file mode 100644 index 0000000000..17d8292578 --- /dev/null +++ b/data/releases/5.6/5.6.28/changes.txt @@ -0,0 +1,38 @@ +- Core: + . Fixed bug #73337 (try/catch not working with two exceptions inside a same + operation). (Dmitry) + +- Bz2: + . Fixed bug #73356 (crash in bzcompress function). (Stas) + +-GD: + . Fixed bug #73213 (Integer overflow in imageline() with antialiasing). (cmb) + . Fixed bug #73272 (imagescale() is not affected by, but affects + imagesetinterpolation()). (cmb) + . Fixed bug #73279 (Integer overflow in gdImageScaleBilinearPalette()). (cmb) + . Fixed bug #73280 (Stack Buffer Overflow in GD dynamicGetbuf). (cmb) + . Fixed bug #72482 (Illegal write/read access caused by gdImageAALine overflow). + (cmb) + . Fixed bug #72696 (imagefilltoborder stackoverflow on truecolor images). (cmb) + +- Imap: + . Fixed bug #73418 (Integer Overflow in "_php_imap_mail" leads Heap Overflow). + (Anatol) + +- SPL: + . Fixed bug #73144 (Use-after-free in ArrayObject Deserialization). (Stas) + +- SOAP: + . Fixed bug #73037 (SoapServer reports Bad Request when gzipped). (Anatol) + +- SQLite3: + . Fixed bug #73333 (2147483647 is fetched as string). (cmb) + +- Standard: + . Fixed bug #73203 (passing additional_parameters causes mail to fail). (cmb) + . Fixed bug #73188 (use after free in userspace streams). (Sara) + . Fixed bug #73192 (parse_url return wrong hostname). (Nikita) + +- Wddx: + . Fixed bug #73331 (NULL Pointer Dereference in WDDX Packet Deserialization + with PDORow). (Stas) diff --git a/data/releases/5.6/5.6.28/release.json b/data/releases/5.6/5.6.28/release.json new file mode 100644 index 0000000000..4805b4ef2b --- /dev/null +++ b/data/releases/5.6/5.6.28/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.28", + "date": "10 Nov 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.28.tar.bz2", + "name": "PHP 5.6.28 (tar.bz2)", + "sha256": "c55ea3f4aad5a0b65631d01c4468930fd981ad208ffcd242acdf731bcb47548f" + }, + { + "filename": "php-5.6.28.tar.gz", + "name": "PHP 5.6.28 (tar.gz)", + "sha256": "27a47ac15e0868d51181d3909cfe3c63ae9b643a3ab40dc30a75b5b500bce500" + }, + { + "filename": "php-5.6.28.tar.xz", + "name": "PHP 5.6.28 (tar.xz)", + "sha256": "07187ba2870f89cef334cd2ad6cb801aeec5eaf283da0293a9a6be75d6786d11" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.29/announcement.html b/data/releases/5.6/5.6.29/announcement.html new file mode 100644 index 0000000000..779fd57d51 --- /dev/null +++ b/data/releases/5.6/5.6.29/announcement.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/5.6.29/changes.txt b/data/releases/5.6/5.6.29/changes.txt new file mode 100644 index 0000000000..2452c4fe70 --- /dev/null +++ b/data/releases/5.6/5.6.29/changes.txt @@ -0,0 +1,32 @@ +- Mbstring: + . Fixed bug #73505 (string length overflow in mbfl_memory_device_output + function). (Stas) + +- Mysqlnd: + . Fixed bug #64526 (Add missing mysqlnd.* parameters to php.ini-*). (cmb) + +- Opcache: + . Fixed bug #73402 (Opcache segfault when using class constant to call a + method). (Laruence) + . Fixed bug #69090 (check cached files permissions) + +- OpenSSL + . Fixed bug #72776 (Invalid parameter in memcpy function trough + openssl_pbkdf2). (Jakub Zelenka) + +- Postgres: + . Fixed bug #73498 (Incorrect SQL generated for pg_copy_to()). (Craig Duncan) + +- SOAP: + . Fixed bug #73452 (Segfault (Regression for #69152)). (Dmitry) + +- SQLite3: + . Fixed bug #73530 (Unsetting result set may reset other result set). (cmb) + +- Standard: + . Fixed bug #73297 (HTTP stream wrapper should ignore HTTP 100 Continue). + (rowan dot collins at gmail dot com) + +- WDDX: + . Fixed bug #73631 (Memory leak due to invalid wddx stack processing). + (bughunter at fosec dot vn). diff --git a/data/releases/5.6/5.6.29/release.json b/data/releases/5.6/5.6.29/release.json new file mode 100644 index 0000000000..7fb0448698 --- /dev/null +++ b/data/releases/5.6/5.6.29/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.29", + "date": "08 Dec 2016", + "tags": [], + "source": [ + { + "filename": "php-5.6.29.tar.bz2", + "name": "PHP 5.6.29 (tar.bz2)", + "sha256": "499b844c8aa7be064c111692e51a093ba94e54d2d9abb01e70ea76183a1825bb" + }, + { + "filename": "php-5.6.29.tar.gz", + "name": "PHP 5.6.29 (tar.gz)", + "sha256": "0b1b939129a7286c5a474ac2cf845b979477f26dff36639e04022def9e252574" + }, + { + "filename": "php-5.6.29.tar.xz", + "name": "PHP 5.6.29 (tar.xz)", + "sha256": "0ff352a433f73e2c82b0d5b283b600402518569bf72a74e247f356dacbf322a7" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.3/announcement.html b/data/releases/5.6/5.6.3/announcement.html new file mode 100644 index 0000000000..378006138b --- /dev/null +++ b/data/releases/5.6/5.6.3/announcement.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/5.6.3/changes.txt b/data/releases/5.6/5.6.3/changes.txt new file mode 100644 index 0000000000..c8f77d66c4 --- /dev/null +++ b/data/releases/5.6/5.6.3/changes.txt @@ -0,0 +1,67 @@ +- Core: + . Implemented 64-bit format codes for pack() and unpack(). (Leigh) + . Fixed bug #51800 (proc_open on Windows hangs forever). (Anatol) + . Fixed bug #67633 (A foreach on an array returned from a function not doing + copy-on-write). (Nikita) + . Fixed bug #67739 (Windows 8.1/Server 2012 R2 OS build number reported + as 6.2 (instead of 6.3)). (Christian Wenz) + . Fixed bug #67949 (DOMNodeList elements should be accessible through + array notation) (Florian) + . Fixed bug #68095 (AddressSanitizer reports a heap buffer overflow in + php_getopt()). (Stas) + . Fixed bug #68118 ($a->foo .= 'test'; can leave $a->foo undefined). (Nikita) + . Fixed bug #68129 (parse_url() - incomplete support for empty usernames + and passwords) (Tjerk) + . Fixed bug #68365 (zend_mm_heap corrupted after memory overflow in + zend_hash_copy). (Dmitry) + +- CURL: + . Add CURL_SSLVERSION_TLSv1_0, CURL_SSLVERSION_TLSv1_1, and + CURL_SSLVERSION_TLSv1_2 constants if supported by libcurl (Rasmus) + +- Fileinfo: + . Fixed bug #66242 (libmagic: don't assume char is signed). (ArdB) + . Fixed bug #68224 (buffer-overflow in libmagic/readcdf.c caught by + AddressSanitizer). (Remi) + . Fixed bug #68283 (fileinfo: out-of-bounds read in elf note headers). + (CVE-2014-3710) (Remi) + +- FPM: + . Fixed bug #65641 (PHP-FPM incorrectly defines the SCRIPT_NAME variable + when using Apache, mod_proxy-fcgi and ProxyPass). (Remi) + . Implemented FR #55508 (listen and listen.allowed_clients should take IPv6 + addresses). (Robin Gloster) + +- GD: + . Fixed bug #65171 (imagescale() fails without height param). (Remi) + +- GMP: + . Implemented gmp_random_range() and gmp_random_bits(). (Leigh) + . Fixed bug #63595 (GMP memory management conflicts with other libraries + using GMP). (Remi) + +- Mysqli: + . Fixed bug #68114 (linker error on some OS X machines with fixed width + decimal support) (Keyur Govande) + +- ODBC: + . Fixed bug #68087 (ODBC not correctly reading DATE column when preceded by + a VARCHAR column) (Keyur Govande) + +- OpenSSL: + . Fixed bug #68074 (Allow to use system cipher list instead of hardcoded + value). (Remi) + +- PDO_pgsql: + . Fixed bug #68199 (PDO::pgsqlGetNotify doesn't support NOTIFY payloads) + (Matteo, Alain Laporte) + . Fixed bug #66584 (Segmentation fault on statement deallocation) (Matteo) + +- OpenSSL: + . Revert regression introduced by fix of bug #41631 + +- Reflection: + . Fixed bug #68103 (Duplicate entry in Reflection for class alias). (Remi) + +- SPL: + . Fixed bug #68128 (Regression in RecursiveRegexIterator) (Tjerk) diff --git a/data/releases/5.6/5.6.3/release.json b/data/releases/5.6/5.6.3/release.json new file mode 100644 index 0000000000..3db044d4e2 --- /dev/null +++ b/data/releases/5.6/5.6.3/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.3", + "date": "13 Nov 2014", + "tags": [], + "source": [ + { + "filename": "php-5.6.3.tar.bz2", + "name": "PHP 5.6.3 (tar.bz2)", + "sha256": "8986b20124d14430d795165e47801ef065a38d5855bea39d0d47b13ab9ad4009" + }, + { + "filename": "php-5.6.3.tar.gz", + "name": "PHP 5.6.3 (tar.gz)", + "sha256": "7ac79fe7ef50c2d5893375f5d8854909337adf1632e42bb08b36b66a0d8016a7" + }, + { + "filename": "php-5.6.3.tar.xz", + "name": "PHP 5.6.3 (tar.xz)", + "sha256": "fad244506cc7f10fe56aba8129b3c39a4f9316d9544a4fba932c3f81fc2244b5" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.30/announcement.html b/data/releases/5.6/5.6.30/announcement.html new file mode 100644 index 0000000000..5a3ed9d35a --- /dev/null +++ b/data/releases/5.6/5.6.30/announcement.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/5.6.30/changes.txt b/data/releases/5.6/5.6.30/changes.txt new file mode 100644 index 0000000000..f33ba5174e --- /dev/null +++ b/data/releases/5.6/5.6.30/changes.txt @@ -0,0 +1,26 @@ +- EXIF: + . Fixed bug #73737 (FPE when parsing a tag format). (Stas) + +- GD: + . Fixed bug #73549 (Use after free when stream is passed to imagepng). (cmb) + . Fixed bug #73868 (DOS vulnerability in gdImageCreateFromGd2Ctx()). (cmb) + . Fixed bug #73869 (Signed Integer Overflow gd_io.c). (cmb) + +- Intl: + . Fixed bug #68447 (grapheme_extract take an extra trailing character). + (SATŌ Kentarō) + +- Phar: + . Fixed bug #73764 (Crash while loading hostile phar archive). (Stas) + . Fixed bug #73768 (Memory corruption when loading hostile phar). (Stas) + . Fixed bug #73773 (Seg fault when loading hostile phar). (Stas) + +- SQLite3: + . Reverted fix for bug #73530 (Unsetting result set may reset other result + set). (cmb) + +- Standard: + . Fixed bug #70213 (Unserialize context shared on double class lookup). + (Taoguang Chen) + . Fixed bug #73825 (Heap out of bounds read on unserialize in + finish_nested_data()). (Stas) diff --git a/data/releases/5.6/5.6.30/release.json b/data/releases/5.6/5.6.30/release.json new file mode 100644 index 0000000000..065ba3e5fa --- /dev/null +++ b/data/releases/5.6/5.6.30/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.30", + "date": "19 Jan 2017", + "tags": [], + "source": [ + { + "filename": "php-5.6.30.tar.bz2", + "name": "PHP 5.6.30 (tar.bz2)", + "sha256": "a105c293fa1dbff118b5b0ca74029e6c461f8c78f49b337a2a98be9e32c27906" + }, + { + "filename": "php-5.6.30.tar.gz", + "name": "PHP 5.6.30 (tar.gz)", + "sha256": "8bc7d93e4c840df11e3d9855dcad15c1b7134e8acf0cf3b90b932baea2d0bde2" + }, + { + "filename": "php-5.6.30.tar.xz", + "name": "PHP 5.6.30 (tar.xz)", + "sha256": "a363185c786432f75e3c7ff956b49c3369c3f6906a6b10459f8d1ddc22f70805" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.31/announcement.html b/data/releases/5.6/5.6.31/announcement.html new file mode 100644 index 0000000000..dab750f8d0 --- /dev/null +++ b/data/releases/5.6/5.6.31/announcement.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/5.6.31/changes.txt b/data/releases/5.6/5.6.31/changes.txt new file mode 100644 index 0000000000..8e330d194a --- /dev/null +++ b/data/releases/5.6/5.6.31/changes.txt @@ -0,0 +1,27 @@ +- Core: + . Fixed bug #73807 (Performance problem with processing post request over + 2000000 chars). (Nikita) + . Fixed bug #74111 (Heap buffer overread (READ: 1) finish_nested_data from + unserialize). (Nikita) + . Fixed bug #74603 (PHP INI Parsing Stack Buffer Overflow Vulnerability). + (Stas) + . Fixed bug #74819 (wddx_deserialize() heap out-of-bound read via + php_parse_date()). (Derick) + +- GD: + . Fixed bug #74435 (Buffer over-read into uninitialized memory). (cmb) + +- mbstring: + . Add oniguruma upstream fix (CVE-2017-9224, CVE-2017-9226, CVE-2017-9227, + CVE-2017-9228, CVE-2017-9229) (Remi, Mamoru TASAKA) + +- OpenSSL: + . Fixed bug #74651 (negative-size-param (-1) in memcpy in zif_openssl_seal()). + (Stas) + +- PCRE: + . Fixed bug #74087 (Segmentation fault in PHP7.1.1(compiled using the bundled PCRE library)). + (Stas) + +- WDDX: + . Fixed bug #74145 (wddx parsing empty boolean tag leads to SIGSEGV). (Stas) diff --git a/data/releases/5.6/5.6.31/release.json b/data/releases/5.6/5.6.31/release.json new file mode 100644 index 0000000000..79114d6b9d --- /dev/null +++ b/data/releases/5.6/5.6.31/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.31", + "date": "06 Jul 2017", + "tags": [], + "source": [ + { + "filename": "php-5.6.31.tar.bz2", + "name": "PHP 5.6.31 (tar.bz2)", + "sha256": "8f397169cb65f0539f3bcb04060f97770d73e19074a37bd2c58b98ebf6ecb10f" + }, + { + "filename": "php-5.6.31.tar.gz", + "name": "PHP 5.6.31 (tar.gz)", + "sha256": "6687ed2f09150b2ad6b3780ff89715891f83a9c331e69c90241ef699dec4c43f" + }, + { + "filename": "php-5.6.31.tar.xz", + "name": "PHP 5.6.31 (tar.xz)", + "sha256": "c464af61240a9b7729fabe0314cdbdd5a000a4f0c9bd201f89f8628732fe4ae4" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.32/announcement.html b/data/releases/5.6/5.6.32/announcement.html new file mode 100644 index 0000000000..ca934319ec --- /dev/null +++ b/data/releases/5.6/5.6.32/announcement.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/5.6.32/changes.txt b/data/releases/5.6/5.6.32/changes.txt new file mode 100644 index 0000000000..e0528122aa --- /dev/null +++ b/data/releases/5.6/5.6.32/changes.txt @@ -0,0 +1,8 @@ +- Date: + . Fixed bug #75055 (Out-Of-Bounds Read in timelib_meridian()). (Derick) + +- mcrypt: + . Fixed bug #72535 (arcfour encryption stream filter crashes php). (Leigh) + +- PCRE: + . Fixed bug #75207 (applied upstream patch for CVE-2016-1283). (Anatol) diff --git a/data/releases/5.6/5.6.32/release.json b/data/releases/5.6/5.6.32/release.json new file mode 100644 index 0000000000..1bc317a895 --- /dev/null +++ b/data/releases/5.6/5.6.32/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.32", + "date": "26 Oct 2017", + "tags": [], + "source": [ + { + "filename": "php-5.6.32.tar.bz2", + "name": "PHP 5.6.32 (tar.bz2)", + "sha256": "3ee44e7a5fa42b563652b3ea0d3487bc236fcc9e5ea74b583775cab867abcb51" + }, + { + "filename": "php-5.6.32.tar.gz", + "name": "PHP 5.6.32 (tar.gz)", + "sha256": "7bef1ae8cd633df5b9c5964262d276d2dc21acbfcd94022d1e2084d199315df4" + }, + { + "filename": "php-5.6.32.tar.xz", + "name": "PHP 5.6.32 (tar.xz)", + "sha256": "8c2b4f721c7475fb9eabda2495209e91ea933082e6f34299d11cba88cd76e64b" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.33/announcement.html b/data/releases/5.6/5.6.33/announcement.html new file mode 100644 index 0000000000..ad5fb307a2 --- /dev/null +++ b/data/releases/5.6/5.6.33/announcement.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/5.6.33/changes.txt b/data/releases/5.6/5.6.33/changes.txt new file mode 100644 index 0000000000..20c1416ef1 --- /dev/null +++ b/data/releases/5.6/5.6.33/changes.txt @@ -0,0 +1,5 @@ +- GD: + . Fixed bug #75571 (Potential infinite loop in gdImageCreateFromGifCtx). (cmb) + +- Phar: + . Fixed bug #74782 (Reflected XSS in .phar 404 page). (Stas) diff --git a/data/releases/5.6/5.6.33/release.json b/data/releases/5.6/5.6.33/release.json new file mode 100644 index 0000000000..14b5b4418b --- /dev/null +++ b/data/releases/5.6/5.6.33/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.33", + "date": "04 Jan 2018", + "tags": [], + "source": [ + { + "filename": "php-5.6.33.tar.bz2", + "name": "PHP 5.6.33 (tar.bz2)", + "sha256": "07f696a9761dcd839e2045c95c3a4d2ffb52c54417477cca9d30a14975b831cc" + }, + { + "filename": "php-5.6.33.tar.gz", + "name": "PHP 5.6.33 (tar.gz)", + "sha256": "bedfac81cfaa25961812a1aec458c4109411a14991b43a416343ffb830b8da6a" + }, + { + "filename": "php-5.6.33.tar.xz", + "name": "PHP 5.6.33 (tar.xz)", + "sha256": "9004995fdf55f111cd9020e8b8aff975df3d8d4191776c601a46988c375f3553" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.34/announcement.html b/data/releases/5.6/5.6.34/announcement.html new file mode 100644 index 0000000000..c5d5dffef4 --- /dev/null +++ b/data/releases/5.6/5.6.34/announcement.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/5.6.34/changes.txt b/data/releases/5.6/5.6.34/changes.txt new file mode 100644 index 0000000000..b079a00367 --- /dev/null +++ b/data/releases/5.6/5.6.34/changes.txt @@ -0,0 +1,2 @@ +- Standard: + . Fixed bug #75981 (stack-buffer-overflow while parsing HTTP response). (Stas) diff --git a/data/releases/5.6/5.6.34/release.json b/data/releases/5.6/5.6.34/release.json new file mode 100644 index 0000000000..694d50b85b --- /dev/null +++ b/data/releases/5.6/5.6.34/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.34", + "date": "01 Mar 2018", + "tags": [], + "source": [ + { + "filename": "php-5.6.34.tar.bz2", + "name": "PHP 5.6.34 (tar.bz2)", + "sha256": "e19f499d8cee4b0b0780361ecb6a00c41654772a754803ab9ea866b8d47cf2cd" + }, + { + "filename": "php-5.6.34.tar.gz", + "name": "PHP 5.6.34 (tar.gz)", + "sha256": "de28251ef6d7eb945eb7b770ff668b9f978d9adad52a8c763f6ee409a96732ea" + }, + { + "filename": "php-5.6.34.tar.xz", + "name": "PHP 5.6.34 (tar.xz)", + "sha256": "21453be3a045204cd2717543ef42771324f411f40962ecda4fe841930a933128" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.35/announcement.html b/data/releases/5.6/5.6.35/announcement.html new file mode 100644 index 0000000000..77b9ff1a19 --- /dev/null +++ b/data/releases/5.6/5.6.35/announcement.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/5.6.35/changes.txt b/data/releases/5.6/5.6.35/changes.txt new file mode 100644 index 0000000000..eedd8521f2 --- /dev/null +++ b/data/releases/5.6/5.6.35/changes.txt @@ -0,0 +1,3 @@ +- FPM: + . Fixed bug #75605 (Dumpable FPM child processes allow bypassing opcache + access controls). (Jakub Zelenka) diff --git a/data/releases/5.6/5.6.35/release.json b/data/releases/5.6/5.6.35/release.json new file mode 100644 index 0000000000..16678d0832 --- /dev/null +++ b/data/releases/5.6/5.6.35/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.35", + "date": "29 Mar 2018", + "tags": [], + "source": [ + { + "filename": "php-5.6.35.tar.bz2", + "name": "PHP 5.6.35 (tar.bz2)", + "sha256": "ee78a7e9ca21d8ea394d037c55effff477a49dbae31c7753c547036f5bd73b92" + }, + { + "filename": "php-5.6.35.tar.gz", + "name": "PHP 5.6.35 (tar.gz)", + "sha256": "dd0242304f510d48a5216dd2f5796bcf59e8e18366658259aaf205e1d63abf71" + }, + { + "filename": "php-5.6.35.tar.xz", + "name": "PHP 5.6.35 (tar.xz)", + "sha256": "9985cb64cb8224c289effff5b34f670d14f838175f76daea0507d643eec650d2" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.36/announcement.html b/data/releases/5.6/5.6.36/announcement.html new file mode 100644 index 0000000000..20cbd94c98 --- /dev/null +++ b/data/releases/5.6/5.6.36/announcement.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/5.6.36/release.json b/data/releases/5.6/5.6.36/release.json new file mode 100644 index 0000000000..7e2ec01947 --- /dev/null +++ b/data/releases/5.6/5.6.36/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.36", + "date": "26 Apr 2018", + "tags": [], + "source": [ + { + "filename": "php-5.6.36.tar.bz2", + "name": "PHP 5.6.36 (tar.bz2)", + "sha256": "626a0e3f5d8a0e686a2b930f0dd3a0601fe3dcb5e43dd0e8c3fab631e64e172a" + }, + { + "filename": "php-5.6.36.tar.gz", + "name": "PHP 5.6.36 (tar.gz)", + "sha256": "06086a8b6a9964ef8009c4d9176b4eeb0c564ea39c1213f015e24f3466d2d69f" + }, + { + "filename": "php-5.6.36.tar.xz", + "name": "PHP 5.6.36 (tar.xz)", + "sha256": "18f536bf548e909b4e980379d0c4e56d024b2b1eb1c9768fd169360491f1d6dd" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.37/announcement.html b/data/releases/5.6/5.6.37/announcement.html new file mode 100644 index 0000000000..3a01768d01 --- /dev/null +++ b/data/releases/5.6/5.6.37/announcement.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/5.6.37/changes.txt b/data/releases/5.6/5.6.37/changes.txt new file mode 100644 index 0000000000..d3444428f8 --- /dev/null +++ b/data/releases/5.6/5.6.37/changes.txt @@ -0,0 +1,24 @@ +- Exif: + . Fixed bug #76423 (Int Overflow lead to Heap OverFlow in + exif_thumbnail_extract of exif.c). (Stas) + . Fixed bug #76557 (heap-buffer-overflow (READ of size 48) while reading exif + data). (Stas) + +- Win32: + . Fixed bug #76459 (windows linkinfo lacks openbasedir check). (Anatol) + +26 Apr 2018 PHP 5.6.36 + +- Exif: + . Fixed bug #76130 (Heap Buffer Overflow (READ: 1786) in exif_iif_add_value). + (Stas) + +- iconv: + . Fixed bug #76249 (stream filter convert.iconv leads to infinite loop on + invalid sequence). (Stas) + +- LDAP: + . Fixed bug #76248 (Malicious LDAP-Server Response causes Crash). (Stas) + +- Phar: + . Fixed bug #76129 (fix for CVE-2018-5712 may not be complete). (Stas) diff --git a/data/releases/5.6/5.6.37/release.json b/data/releases/5.6/5.6.37/release.json new file mode 100644 index 0000000000..39d63b9c12 --- /dev/null +++ b/data/releases/5.6/5.6.37/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.37", + "date": "19 Jul 2018", + "tags": [], + "source": [ + { + "filename": "php-5.6.37.tar.bz2", + "name": "PHP 5.6.37 (tar.bz2)", + "sha256": "886ad63d05d94ea3e54322691aadea0cf1d4bcdb4450b02fe300e5b570788b23" + }, + { + "filename": "php-5.6.37.tar.gz", + "name": "PHP 5.6.37 (tar.gz)", + "sha256": "b7ec077f35ef3a8cdd33c29124140b1761111a1429878b4c463bb20d2a31b184" + }, + { + "filename": "php-5.6.37.tar.xz", + "name": "PHP 5.6.37 (tar.xz)", + "sha256": "5000d82610f9134aaedef28854ec3591f68dedf26a17b8935727dac2843bd256" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.38/announcement.html b/data/releases/5.6/5.6.38/announcement.html new file mode 100644 index 0000000000..3081b54a9c --- /dev/null +++ b/data/releases/5.6/5.6.38/announcement.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/5.6.38/changes.txt b/data/releases/5.6/5.6.38/changes.txt new file mode 100644 index 0000000000..2ada72c99b --- /dev/null +++ b/data/releases/5.6/5.6.38/changes.txt @@ -0,0 +1,2 @@ +- Apache2 + . Fixed bug #76582 (XSS due to the header Transfer-Encoding: chunked). (Stas) diff --git a/data/releases/5.6/5.6.38/release.json b/data/releases/5.6/5.6.38/release.json new file mode 100644 index 0000000000..dcab6dedfa --- /dev/null +++ b/data/releases/5.6/5.6.38/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.38", + "date": "13 Sep 2018", + "tags": [], + "source": [ + { + "filename": "php-5.6.38.tar.bz2", + "name": "PHP 5.6.38 (tar.bz2)", + "sha256": "d65b231bbdd63be4439ef5ced965cfd63e62983429dbd4dfcfb49981593ebc03" + }, + { + "filename": "php-5.6.38.tar.gz", + "name": "PHP 5.6.38 (tar.gz)", + "sha256": "3b74d46cd79a45cce90c8059e09d8bd0beeb5de562cbb0cb42f96ff8fa665fd4" + }, + { + "filename": "php-5.6.38.tar.xz", + "name": "PHP 5.6.38 (tar.xz)", + "sha256": "c2fac47dc6316bd230f0ea91d8a5498af122fb6a3eb43f796c9ea5f59b04aa1e" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.39/announcement.html b/data/releases/5.6/5.6.39/announcement.html new file mode 100644 index 0000000000..4f05f2ebbf --- /dev/null +++ b/data/releases/5.6/5.6.39/announcement.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/5.6.39/changes.txt b/data/releases/5.6/5.6.39/changes.txt new file mode 100644 index 0000000000..0ec745fa00 --- /dev/null +++ b/data/releases/5.6/5.6.39/changes.txt @@ -0,0 +1,13 @@ +- Core: + . Fixed bug #77231 (Segfault when using convert.quoted-printable-encode + filter). (Stas) + +- IMAP: + . Fixed bug #77020 (null pointer dereference in imap_mail). (cmb) + . Fixed bug #77153 (imap_open allows to run arbitrary shell commands via + mailbox parameter). (Stas) + +- Phar: + . Fixed bug #77022 (PharData always creates new files with mode 0666). (Stas) + . Fixed bug #77143 (Heap Buffer Overflow (READ: 4) in phar_parse_pharfile). + (Stas) diff --git a/data/releases/5.6/5.6.39/release.json b/data/releases/5.6/5.6.39/release.json new file mode 100644 index 0000000000..6c522ef798 --- /dev/null +++ b/data/releases/5.6/5.6.39/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.39", + "date": "06 Dec 2018", + "tags": [], + "source": [ + { + "filename": "php-5.6.39.tar.bz2", + "name": "PHP 5.6.39 (tar.bz2)", + "sha256": "b3db2345f50c010b01fe041b4e0f66c5aa28eb325135136f153e18da01583ad5" + }, + { + "filename": "php-5.6.39.tar.gz", + "name": "PHP 5.6.39 (tar.gz)", + "sha256": "127b122b7d6c7f3c211c0ffa554979370c3131196137404a51a391d8e2e9c7bb" + }, + { + "filename": "php-5.6.39.tar.xz", + "name": "PHP 5.6.39 (tar.xz)", + "sha256": "8147576001a832ff3d03cb2980caa2d6b584a10624f87ac459fcd3948c6e4a10" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.4/announcement.html b/data/releases/5.6/5.6.4/announcement.html new file mode 100644 index 0000000000..9777f15400 --- /dev/null +++ b/data/releases/5.6/5.6.4/announcement.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/5.6.4/changes.txt b/data/releases/5.6/5.6.4/changes.txt new file mode 100644 index 0000000000..6ce027117e --- /dev/null +++ b/data/releases/5.6/5.6.4/changes.txt @@ -0,0 +1,62 @@ +- Core: + . Fixed bug #68091 (Some Zend headers lack appropriate extern "C" blocks). + (Adam) + . Fixed bug #68104 (Segfault while pre-evaluating a disabled function). + (Laruence) + . Fixed bug #68185 ("Inconsistent insteadof definition."- incorrectly + triggered). (Julien) + . Fixed bug #68355 (Inconsistency in example php.ini comments). + (Chris McCafferty) + . Fixed bug #68370 ("unset($this)" can make the program crash). (Laruence) + . Fixed bug #68422 (Incorrect argument reflection info for array_multisort()). + (Alexander Lisachenko) + . Fixed bug #68545 (NULL pointer dereference in unserialize.c). (Anatol) + . Fixed bug #68446 (Array constant not accepted for array parameter default). + (Bob, Dmitry) + . Fixed bug #68594 (Use after free vulnerability in unserialize()). + (CVE-2014-8142) (Stefan Esser) + +- Date: + . Fixed day_of_week function as it could sometimes return negative values + internally. (Derick) + +- FPM: + . Fixed bug #68381 (fpm_unix_init_main ignores log_level). + (David Zuelke, Remi) + . Fixed bug #68420 (listen=9000 listens to ipv6 localhost instead of all + addresses). (Remi) + . Fixed bug #68421 (access.format='%R' doesn't log ipv6 address). (Remi) + . Fixed bug #68423 (PHP-FPM will no longer load all pools). (Remi) + . Fixed bug #68428 (listen.allowed_clients is IPv4 only). (Remi) + . Fixed bug #68452 (php-fpm man page is oudated). (Remi) + . Fixed request #68458 (Change pm.start_servers default warning to + notice). (David Zuelke, Remi) + . Fixed bug #68463 (listen.allowed_clients can silently result + in no allowed access). (Remi) + . Fixed request #68391 (php-fpm conf files loading order). + (Florian Margaine, Remi) + . Fixed bug #68478 (access.log don't use prefix). (Remi) + +- Mcrypt: + . Fixed possible read after end of buffer and use after free. (Dmitry) + +- GMP: + . Fixed bug #68419 (build error with gmp 4.1). (Remi) + +- PDO_pgsql: + . Fixed bug #67462 (PDO_PGSQL::beginTransaction() wrongly throws exception + when not in transaction) (Matteo) + . Fixed bug #68351 (PDO::PARAM_BOOL and ATTR_EMULATE_PREPARES misbehaving) + (Matteo) + +- Session: + . Fixed bug #68331 (Session custom storage callable functions not being called) + (Yasuo Ohgaki) + +- SOAP: + . Fixed bug #68361 (Segmentation fault on SoapClient::__getTypes). + (Laruence) + +- zlib: + . Fixed bug #53829 (Compiling PHP with large file support will replace + function gzopen by gzopen64) (Sascha Kettler, Matteo) diff --git a/data/releases/5.6/5.6.4/release.json b/data/releases/5.6/5.6.4/release.json new file mode 100644 index 0000000000..29f96dc0ee --- /dev/null +++ b/data/releases/5.6/5.6.4/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.4", + "date": "18 Dec 2014", + "tags": [], + "source": [ + { + "filename": "php-5.6.4.tar.bz2", + "name": "PHP 5.6.4 (tar.bz2)", + "sha256": "576f9001b612f5ddc22f447311bbec321e2c959b6a52259d664c4ba04ef044f1" + }, + { + "filename": "php-5.6.4.tar.gz", + "name": "PHP 5.6.4 (tar.gz)", + "sha256": "9c318f10af598e3d0b306a00860cfeb13c34024a9032a59ff53e3cd3c7791e97" + }, + { + "filename": "php-5.6.4.tar.xz", + "name": "PHP 5.6.4 (tar.xz)", + "sha256": "8cf44c59f467cdc2dd76c1167d1f368575ccff9b12941e199a362eb44a79acea" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.40/announcement.html b/data/releases/5.6/5.6.40/announcement.html new file mode 100644 index 0000000000..8510eef515 --- /dev/null +++ b/data/releases/5.6/5.6.40/announcement.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/5.6.40/changes.txt b/data/releases/5.6/5.6.40/changes.txt new file mode 100644 index 0000000000..d4e4d193ad --- /dev/null +++ b/data/releases/5.6/5.6.40/changes.txt @@ -0,0 +1,22 @@ +- GD: + . Fixed bug #77269 (efree() on uninitialized Heap data in imagescale leads to + use-after-free). (cmb) + . Fixed bug #77270 (imagecolormatch Out Of Bounds Write on Heap). (cmb) + +- Mbstring: + . Fixed bug #77370 (Buffer overflow on mb regex functions - fetch_token). (Stas) + . Fixed bug #77371 (heap buffer overflow in mb regex functions + - compile_string_node). (Stas) + . Fixed bug #77381 (heap buffer overflow in multibyte match_at). (Stas) + . Fixed bug #77382 (heap buffer overflow due to incorrect length in + expand_case_fold_string). (Stas) + . Fixed bug #77385 (buffer overflow in fetch_token). (Stas) + . Fixed bug #77394 (Buffer overflow in multibyte case folding - unicode). (Stas) + . Fixed bug #77418 (Heap overflow in utf32be_mbc_to_code). (Stas) + +- Phar: + . Fixed bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext). (Stas) + +- Xmlrpc: + . Fixed bug #77242 (heap out of bounds read in xmlrpc_decode()). (cmb) + . Fixed bug #77380 (Global out of bounds read in xmlrpc base64 code). (Stas) diff --git a/data/releases/5.6/5.6.40/release.json b/data/releases/5.6/5.6.40/release.json new file mode 100644 index 0000000000..575c287e13 --- /dev/null +++ b/data/releases/5.6/5.6.40/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.40", + "date": "10 Jan 2019", + "tags": [], + "source": [ + { + "filename": "php-5.6.40.tar.bz2", + "name": "PHP 5.6.40 (tar.bz2)", + "sha256": "ffd025d34623553ab2f7fd8fb21d0c9e6f9fa30dc565ca03a1d7b763023fba00" + }, + { + "filename": "php-5.6.40.tar.gz", + "name": "PHP 5.6.40 (tar.gz)", + "sha256": "56fb9878d12fdd921f6a0897e919f4e980d930160e154cbde2cc6d9206a27cac" + }, + { + "filename": "php-5.6.40.tar.xz", + "name": "PHP 5.6.40 (tar.xz)", + "sha256": "1369a51eee3995d7fbd1c5342e5cc917760e276d561595b6052b21ace2656d1c" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.5/announcement.html b/data/releases/5.6/5.6.5/announcement.html new file mode 100644 index 0000000000..942ff580ab --- /dev/null +++ b/data/releases/5.6/5.6.5/announcement.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/5.6.5/changes.txt b/data/releases/5.6/5.6.5/changes.txt new file mode 100644 index 0000000000..583e9bfcac --- /dev/null +++ b/data/releases/5.6/5.6.5/changes.txt @@ -0,0 +1,100 @@ +- Core: + . Upgraded crypt_blowfish to version 1.3. (Leigh) + . Fixed bug #60704 (unlink() bug with some files path). + . Fixed bug #65419 (Inside trait, self::class != __CLASS__). (Julien) + . Fixed bug #68536 (pack for 64bits integer is broken on bigendian). (Remi) + . Fixed bug #55541 (errors spawn MessageBox, which blocks test automation). + (Anatol) + . Fixed bug #68297 (Application Popup provides too few information). (Anatol) + . Fixed bug #65769 (localeconv() broken in TS builds). (Anatol) + . Fixed bug #65230 (setting locale randomly broken). (Anatol) + . Fixed bug #66764 (configure doesn't define EXPANDED_DATADIR / PHP_DATADIR + correctly). (Ferenc) + . Fixed bug #68583 (Crash in timeout thread). (Anatol) + . Fixed bug #65576 (Constructor from trait conflicts with inherited + constructor). (dunglas at gmail dot com) + . Fixed bug #68676 (Explicit Double Free). (CVE-2014-9425) (Kalle) + . Fixed bug #68710 (Use After Free Vulnerability in PHP's unserialize()). + (CVE-2015-0231) (Stefan Esser) + +- CGI: + . Fixed bug #68618 (out of bounds read crashes php-cgi). (CVE-2014-9427) + (Stas) + +- CLI server: + . Fixed bug #68745 (Invalid HTTP requests make web server segfault). (Adam) + +- cURL: + . Fixed bug #67643 (curl_multi_getcontent returns '' when + CURLOPT_RETURNTRANSFER isn't set). (Jille Timmermans) + +- Date: + . Implemented FR #68268 (DatePeriod: Getter for start date, end date and + interval). (Marc Bennewitz) + +- EXIF: + . Fixed bug #68799: Free called on uninitialized pointer. (CVE-2015-0232) + (Stas) + +- Fileinfo: + . Fixed bug #68398 (msooxml matches too many archives). (Anatol) + . Fixed bug #68665 (invalid free in libmagic). (Joshua Rogers, Anatol Belski) + . Fixed bug #68671 (incorrect expression in libmagic). + (Joshua Rogers, Anatol Belski) + . Removed readelf.c and related code from libmagic sources + (Remi, Anatol) + . Fixed bug #68735 (fileinfo out-of-bounds memory access). (CVE-2014-9652) + (Anatol) + +- FPM: + . Fixed request #68526 (Implement POSIX Access Control List for UDS). (Remi) + . Fixed bug #68751 (listen.allowed_clients is broken). (Remi) + +- GD: + . Fixed bug #68601 (buffer read overflow in gd_gif_in.c). (CVE-2014-9709) + (Jan Bee, Remi) + . Fixed request #68656 (Report gd library version). (Remi) + +- mbstring: + . Fixed bug #68504 (--with-libmbfl configure option not present on Windows). + (Ashesh Vashi) + +- Opcache: + . Fixed bug #68644 (strlen incorrect : mbstring + func_overload=2 +UTF-8 + + Opcache). (Laruence) + . Fixed bug #67111 (Memory leak when using "continue 2" inside two foreach + loops). (Nikita) + +- OpenSSL: + . Improved handling of OPENSSL_KEYTYPE_EC keys. (Dominic Luechinger) + +- pcntl: + . Fixed bug #60509 (pcntl_signal doesn't decrease ref-count of old handler + when setting SIG_DFL). (Julien) + +- PCRE: + . Fixed bug #66679 (Alignment Bug in PCRE 8.34 upstream). + (Rainer Jung, Anatol Belski) + +- pgsql: + . Fixed bug #68697 (lo_export return -1 on failure). (Ondřej Surý) + +- PDO: + . Fixed bug #68371 (PDO#getAttribute() cannot be called with platform-specifi + attribute names). (Matteo) + +- PDO_mysql: + . Fixed bug #68424 (Add new PDO mysql connection attr to control multi + statements option). (peter dot wolanin at acquia dot com) + +- SPL: + . Fixed bug #66405 (RecursiveDirectoryIterator::CURRENT_AS_PATHNAME + breaks the RecursiveIterator). (Paul Garvin) + . Fixed bug #68479 (Added escape parameter to SplFileObject::fputcsv). (Salathe) + +- SQLite: + . Fixed bug #68120 (Update bundled libsqlite to 3.8.7.2). (Anatol) + +- Streams: + . Fixed bug #68532 (convert.base64-encode omits padding bytes). + (blaesius at krumedia dot de) diff --git a/data/releases/5.6/5.6.5/release.json b/data/releases/5.6/5.6.5/release.json new file mode 100644 index 0000000000..d378808002 --- /dev/null +++ b/data/releases/5.6/5.6.5/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.5", + "date": "22 Jan 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.5.tar.bz2", + "name": "PHP 5.6.5 (tar.bz2)", + "sha256": "adab4c0775512a5ca0ae74e08efdc941d92529b75283e0f44d3f53822cdfd06d" + }, + { + "filename": "php-5.6.5.tar.gz", + "name": "PHP 5.6.5 (tar.gz)", + "sha256": "f67c480bcf2f6f703ec8d8a772540f4a518f766b08d634d7a919402c13a636cf" + }, + { + "filename": "php-5.6.5.tar.xz", + "name": "PHP 5.6.5 (tar.xz)", + "sha256": "c5ef4abaef8c1ea66dcfd5a075a2f357b666aff5c5b686fca7c78c1cfd64e996" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.6/announcement.html b/data/releases/5.6/5.6.6/announcement.html new file mode 100644 index 0000000000..9930db52c0 --- /dev/null +++ b/data/releases/5.6/5.6.6/announcement.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/5.6.6/changes.txt b/data/releases/5.6/5.6.6/changes.txt new file mode 100644 index 0000000000..1d7189f180 --- /dev/null +++ b/data/releases/5.6/5.6.6/changes.txt @@ -0,0 +1,78 @@ +- Core: + . Removed support for multi-line headers, as the are deprecated by RFC 7230. + (Stas) + . Fixed bug #67068 (getClosure returns somethings that's not a closure). + (Danack at basereality dot com) + . Fixed bug #68942 (Use after free vulnerability in unserialize() with + DateTimeZone). (CVE-2015-0273) (Stas) + . Fixed bug #68925 (Mitigation for CVE-2015-0235 – GHOST: glibc gethostbyname + buffer overflow). (Stas) + . Fixed Bug #67988 (htmlspecialchars() does not respect default_charset + specified by ini_set) (Yasuo) + . Added NULL byte protection to exec, system and passthru. (Yasuo) + +- Dba: + . Fixed bug #68711 (useless comparisons). (bugreports at internot dot info) + +- Enchant: + . Fixed bug #68552 (heap buffer overflow in enchant_broker_request_dict()). + (CVE-2014-9705) (Antony) + +- Fileinfo: + . Fixed bug #68827 (Double free with disabled ZMM). (Joshua Rogers) + . Fixed bug #67647 (Bundled libmagic 5.17 does not detect quicktime files + correctly). (Anatol) + . Fixed bug #68731 (finfo_buffer doesn't extract the correct mime with some + gifs). (Anatol) + +- FPM: + . Fixed bug #66479 (Wrong response to FCGI_GET_VALUES). (Frank Stolle) + . Fixed bug #68571 (core dump when webserver close the socket). + (redfoxli069 at gmail dot com, Laruence) + +- JSON: + . Fixed bug #50224 (json_encode() does not always encode a float as a float) + by adding JSON_PRESERVE_ZERO_FRACTION. (Juan Basso) + +- LIBXML: + . Fixed bug #64938 (libxml_disable_entity_loader setting is shared + between threads). (Martin Jansen) + +- Mysqli: + . Fixed bug #68114 (linker error on some OS X machines with fixed + width decimal support) (Keyur Govande) + . Fixed bug #68657 (Reading 4 byte floats with Mysqli and libmysqlclient + has rounding errors) (Keyur Govande) + +- Opcache: + . Fixed bug with try blocks being removed when extended_info opcode + generation is turned on. (Laruence) + +- PDO_mysql: + . Fixed bug #68750 (PDOMysql with mysqlnd does not allow the usage of + named pipes). (steffenb198 at aol dot com) + +- Phar: + . Fixed bug #68901 (use after free). (CVE-2015-2301) + (bugreports at internot dot info) + +- Pgsql: + . Fixed Bug #65199 (pg_copy_from() modifies input array variable) (Yasuo) + +- Session: + . Fixed bug #68941 (mod_files.sh is a bash-script) (bugzilla at ii.nl, Yasuo) + . Fixed Bug #66623 (no EINTR check on flock) (Yasuo) + . Fixed bug #68063 (Empty session IDs do still start sessions) (Yasuo) + +- Sqlite3: + . Fixed bug #68260 (SQLite3Result::fetchArray declares wrong + required_num_args). (Julien) + +- Standard: + . Fixed bug #65272 (flock() out parameter not set correctly in windows). + (Daniel Lowrey) + . Fixed bug #69033 (Request may get env. variables from previous requests + if PHP works as FastCGI). (Anatol) + +- Streams: + . Fixed bug which caused call after final close on streams filter. (Bob) diff --git a/data/releases/5.6/5.6.6/release.json b/data/releases/5.6/5.6.6/release.json new file mode 100644 index 0000000000..d8791c50f1 --- /dev/null +++ b/data/releases/5.6/5.6.6/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.6", + "date": "19 Feb 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.6.tar.bz2", + "name": "PHP 5.6.6 (tar.bz2)", + "sha256": "09625c9b65e0c8198dc76995a35f0feec0e13ea4489526e64a00954b12adbb4c" + }, + { + "filename": "php-5.6.6.tar.gz", + "name": "PHP 5.6.6 (tar.gz)", + "sha256": "164fb27bab0a0ca4902bc67d5f5638e43466c88153aee3b54546d8ec682ec03b" + }, + { + "filename": "php-5.6.6.tar.xz", + "name": "PHP 5.6.6 (tar.xz)", + "sha256": "b963b2d45baeebeeb421c05ee60889e87971e3e27a4be873d265fee3250fde20" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.7/announcement.html b/data/releases/5.6/5.6.7/announcement.html new file mode 100644 index 0000000000..3a8ae00bd6 --- /dev/null +++ b/data/releases/5.6/5.6.7/announcement.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/5.6.7/changes.txt b/data/releases/5.6/5.6.7/changes.txt new file mode 100644 index 0000000000..a55b842526 --- /dev/null +++ b/data/releases/5.6/5.6.7/changes.txt @@ -0,0 +1,84 @@ +- Core: + . Fixed bug #69174 (leaks when unused inner class use traits precedence). + (Laruence) + . Fixed bug #69139 (Crash in gc_zval_possible_root on unserialize). + (Laruence) + . Fixed bug #69121 (Segfault in get_current_user when script owner is not + in passwd with ZTS build). (dan at syneto dot net) + . Fixed bug #65593 (Segfault when calling ob_start from output buffering + callback). (Mike) + . Fixed bug #68986 (pointer returned by php_stream_fopen_temporary_file + not validated in memory.c). (nayana at ddproperty dot com) + . Fixed bug #68166 (Exception with invalid character causes segv). (Rasmus) + . Fixed bug #69141 (Missing arguments in reflection info for some builtin + functions). (kostyantyn dot lysyy at oracle dot com) + . Fixed bug #68976 (Use After Free Vulnerability in unserialize()). + (CVE-2015-2787) (Stas) + . Fixed bug #69134 (Per Directory Values overrides PHP_INI_SYSTEM + configuration options). (Anatol Belski) + . Fixed bug #69207 (move_uploaded_file allows nulls in path). (CVE-2015-2348) + (Stas) + +- CGI: + . Fixed bug #69015 (php-cgi's getopt does not see $argv). (Laruence) + +- CLI: + . Fixed bug #67741 (auto_prepend_file messes up __LINE__). (Reeze Xia) + +- cURL: + . Fixed bug #69088 (PHP_MINIT_FUNCTION does not fully initialize cURL on + Win32). (Grant Pannell) + . Add CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME constants if supported + by libcurl. (Linus Unneback) + +- Ereg: + . Fixed bug #69248 (heap overflow vulnerability in regcomp.c). (CVE-2015-2305) + (Stas) + +- FPM: + . Fixed bug #68822 (request time is reset too early). (honghu069 at 163 dot com) + +- ODBC: + . Fixed bug #68964 (Allowed memory size exhausted with odbc_exec). (Anatol) + +- Opcache: + . Fixed bug #69159 (Opcache causes problem when passing a variable variable + to a function). (Dmitry, Laruence) + . Fixed bug #69125 (Array numeric string as key). (Laruence) + . Fixed bug #69038 (switch(SOMECONSTANT) misbehaves). (Laruence) + +- OpenSSL: + . Fixed bug #68912 (Segmentation fault at openssl_spki_new). (Laruence) + . Fixed bug #61285, #68329, #68046, #41631 (encrypted streams don't observe + socket timeouts). (Brad Broerman) + . Fixed bug #68920 (use strict peer_fingerprint input checks) + (Daniel Lowrey) + . Fixed bug #68879 (IP Address fields in subjectAltNames not used) + (Daniel Lowrey) + . Fixed bug #68265 (SAN match fails with trailing DNS dot) (Daniel Lowrey) + . Fixed bug #67403 (Add signatureType to openssl_x509_parse) (Daniel Lowrey) + . Fixed bug (#69195 Inconsistent stream crypto values across versions) + (Daniel Lowrey) + +- pgsql: + . Fixed bug #68638 (pg_update() fails to store infinite values). + (william dot welter at 4linux dot com dot br, Laruence) + +- Readline: + . Fixed bug #69054 (Null dereference in readline_(read|write)_history() without + parameters). (Laruence) + +- SOAP: + . Fixed bug #69085 (SoapClient's __call() type confusion through + unserialize()). (CVE-2015-4147, CVE-2015-4148) (andrea dot palazzo at truel + dot it, Laruence) + +- SPL: + . Fixed bug #69108 ("Segmentation fault" when (de)serializing + SplObjectStorage). (Laruence) + . Fixed bug #68557 (RecursiveDirectoryIterator::seek(0) broken after + calling getChildren()). (Julien) + +- ZIP: + . Fixed bug #69253 (ZIP Integer Overflow leads to writing past heap + boundary). (CVE-2015-2331) (Stas) diff --git a/data/releases/5.6/5.6.7/release.json b/data/releases/5.6/5.6.7/release.json new file mode 100644 index 0000000000..152f51622f --- /dev/null +++ b/data/releases/5.6/5.6.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.7", + "date": "19 Mar 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.7.tar.bz2", + "name": "PHP 5.6.7 (tar.bz2)", + "sha256": "02954fb74c61a7879d48ebdcd4ecb78aa0056f4215ca9b096232de28eb8f17bc" + }, + { + "filename": "php-5.6.7.tar.gz", + "name": "PHP 5.6.7 (tar.gz)", + "sha256": "11398540a582c876f5e070207231afde975eb49bb2eeae20b052e8ca325c0f47" + }, + { + "filename": "php-5.6.7.tar.xz", + "name": "PHP 5.6.7 (tar.xz)", + "sha256": "a85522dd2e6f80ee5637e537447ee54896c77a8fabe49d2310830d0e20952787" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.8/announcement.html b/data/releases/5.6/5.6.8/announcement.html new file mode 100644 index 0000000000..e38408ca5d --- /dev/null +++ b/data/releases/5.6/5.6.8/announcement.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/5.6.8/changes.txt b/data/releases/5.6/5.6.8/changes.txt new file mode 100644 index 0000000000..2500bf5796 --- /dev/null +++ b/data/releases/5.6/5.6.8/changes.txt @@ -0,0 +1,99 @@ +- Core: + . Fixed bug #66609 (php crashes with __get() and ++ operator in some cases). + (Dmitry, Laruence) + . Fixed bug #68021 (get_browser() browser_name_regex returns non-utf-8 + characters). (Tjerk) + . Fixed bug #68917 (parse_url fails on some partial urls). (Wei Dai) + . Fixed bug #69134 (Per Directory Values overrides PHP_INI_SYSTEM + configuration options). (Anatol Belski) + . Additional fix for bug #69152 (Type confusion vulnerability in + exception::getTraceAsString). (Stas) + . Fixed bug #69210 (serialize function return corrupted data when sleep has + non-string values). (Juan Basso) + . Fixed bug #69212 (Leaking VIA_HANDLER func when exception thrown in + __call/... arg passing). (Nikita) + . Fixed bug #69221 (Segmentation fault when using a generator in combination + with an Iterator). (Nikita) + . Fixed bug #69337 (php_stream_url_wrap_http_ex() type-confusion + vulnerability). (Stas) + . Fixed bug #69353 (Missing null byte checks for paths in various PHP + extensions). (Stas) + +- Apache2handler: + . Fixed bug #69218 (potential remote code execution with apache 2.4 + apache2handler). (Gerrit Venema) + +- cURL: + . Implemented FR#69278 (HTTP2 support). (Masaki Kagaya) + . Fixed bug #68739 (Missing break / control flow). (Laruence) + . Fixed bug #69316 (Use-after-free in php_curl related to + CURLOPT_FILE/_INFILE/_WRITEHEADER). (Laruence) + +- Date: + . Fixed bug #69336 (Issues with "last day ofThe 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/5.6/5.6.9/changes.txt b/data/releases/5.6/5.6.9/changes.txt new file mode 100644 index 0000000000..2e237e1a23 --- /dev/null +++ b/data/releases/5.6/5.6.9/changes.txt @@ -0,0 +1,44 @@ +- Core: + . Fixed bug #69467 (Wrong checked for the interface by using Trait). + (Laruence) + . Fixed bug #69420 (Invalid read in zend_std_get_method). (Laruence) + . Fixed bug #60022 ("use statement [...] has no effect" depends on leading + backslash). (Nikita) + . Fixed bug #67314 (Segmentation fault in gc_remove_zval_from_buffer). + (Dmitry) + . Fixed bug #68652 (segmentation fault in destructor). (Dmitry) + . Fixed bug #69419 (Returning compatible sub generator produces a warning). + (Nikita) + . Fixed bug #69472 (php_sys_readlink ignores misc errors from + GetFinalPathNameByHandleA). (Jan Starke) + . Fixed bug #69364 (PHP Multipart/form-data remote dos Vulnerability). + (CVE-2015-4024) (Stas) + . Fixed bug #69403 (str_repeat() sign mismatch based memory corruption). + (Stas) + . Fixed bug #69418 (CVE-2006-7243 fix regressions in 5.4+). (CVE-2015-4025) + (Stas) + . Fixed bug #69522 (heap buffer overflow in unpack()). (Stas) + +- FTP: + . Fixed bug #69545 (Integer overflow in ftp_genlist() resulting in heap + overflow). (CVE-2015-4022) (Stas) + +- ODBC: + . Fixed bug #69354 (Incorrect use of SQLColAttributes with ODBC 3.0). + (Anatol) + . Fixed bug #69474 (ODBC: Query with same field name from two tables returns + incorrect result). (Anatol) + . Fixed bug #69381 (out of memory with sage odbc driver). (Frederic Marchall, + Anatol Belski) + +- OpenSSL: + . Fixed bug #69402 (Reading empty SSL stream hangs until timeout). + (Daniel Lowrey) + +- PCNTL: + . Fixed bug #68598 (pcntl_exec() should not allow null char). (CVE-2015-4026) + (Stas) + +- Phar: + . Fixed bug #69453 (Memory Corruption in phar_parse_tarfile when entry + filename starts with null). (CVE-2015-4021) (Stas) diff --git a/data/releases/5.6/5.6.9/release.json b/data/releases/5.6/5.6.9/release.json new file mode 100644 index 0000000000..76c30ee583 --- /dev/null +++ b/data/releases/5.6/5.6.9/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.9", + "date": "14 May 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.9.tar.bz2", + "name": "PHP 5.6.9 (tar.bz2)", + "sha256": "19d3b87b7b8bba3be24cf6d757d16b723a98881c3af8d15469fd25501e9abcb9" + }, + { + "filename": "php-5.6.9.tar.gz", + "name": "PHP 5.6.9 (tar.gz)", + "sha256": "49527ba66357fe65bcd463dfb8dcff1b8879419f88b3c334f50696a2aceacb87" + }, + { + "filename": "php-5.6.9.tar.xz", + "name": "PHP 5.6.9 (tar.xz)", + "sha256": "1fac497b596f5e4e87d87a7ca90f8725e39a8ca3f9d7adb500fa83c4bb70a73f" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.0/announcement.html b/data/releases/7.0/7.0.0/announcement.html new file mode 100644 index 0000000000..8ff59d867f --- /dev/null +++ b/data/releases/7.0/7.0.0/announcement.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/7.0.0/changes.txt b/data/releases/7.0/7.0.0/changes.txt new file mode 100644 index 0000000000..eecd495bc6 --- /dev/null +++ b/data/releases/7.0/7.0.0/changes.txt @@ -0,0 +1,701 @@ +- Core: + . Fixed bug #70947 (INI parser segfault with INI_SCANNER_TYPED). (Laruence) + . Fixed bug #70914 (zend_throw_or_error() format string vulnerability). + (Taoguang Chen) + . Fixed bug #70912 (Null ptr dereference instantiating class with invalid + array property). (Laruence) + . Fixed bug #70895, #70898 (null ptr deref and segfault with crafted calable). + (Anatol, Laruence) + . Fixed bug #70249 (Segmentation fault while running PHPUnit tests on + phpBB 3.2-dev). (Laruence) + . Fixed bug #70805 (Segmentation faults whilst running Drupal 8 test suite). + (Dmitry, Laruence) + . Fixed bug #70842 (Persistent Stream Segmentation Fault). (Caleb Champlin) + . Fixed bug #70862 (Several functions do not check return code of + php_stream_copy_to_mem()). (Anatol) + . Fixed bug #70863 (Incorect logic to increment_function for proxy objects). + (Anatol) + . Fixed bug #70323 (Regression in zend_fetch_debug_backtrace() can cause + segfaults). (Aharvey, Laruence) + . Fixed bug #70873 (Regression on private static properties access). + (Laruence) + . Fixed bug #70748 (Segfault in ini_lex () at Zend/zend_ini_scanner.l). + (Laruence) + . Fixed bug #70689 (Exception handler does not work as expected). (Laruence) + . Fixed bug #70430 (Stack buffer overflow in zend_language_parser()). (Nikita) + . Fixed bug #70782 (null ptr deref and segfault (zend_get_class_fetch_type)). + (Nikita) + . Fixed bug #70785 (Infinite loop due to exception during identical + comparison). (Laruence) + . Fixed bug #70630 (Closure::call/bind() crash with ReflectionFunction-> + getClosure()). (Dmitry, Bob) + . Fixed bug #70662 (Duplicate array key via undefined index error handler). + (Nikita) + . Fixed bug #70681 (Segfault when binding $this of internal instance method + to null). (Nikita) + . Fixed bug #70685 (Segfault for getClosure() internal method rebind with + invalid $this). (Nikita) + . Added zend_internal_function.reserved[] fields. (Dmitry) + . Fixed bug #70557 (Memleak on return type verifying failed). (Laruence) + . Fixed bug #70555 (fun_get_arg() on unsetted vars return UNKNOW). (Laruence) + . Fixed bug #70548 (Redundant information printed in case of uncaught engine + exception). (Laruence) + . Fixed bug #70547 (unsetting function variables corrupts backtrace). + (Laruence) + . Fixed bug #70528 (assert() with instanceof adds apostrophes around class + name). (Laruence) + . Fixed bug #70481 (Memory leak in auto_global_copy_ctor() in ZTS build). + (Laruence) + . Fixed bug #70431 (Memory leak in php_ini.c). (Senthil, Laruence) + . Fixed bug #70478 (**= does no longer work). (Bob) + . Fixed bug #70398 (SIGSEGV, Segmentation fault zend_ast_destroy_ex). + (Dmitry, Bob, Laruence) + . Fixed bug #70332 (Wrong behavior while returning reference on object). + (Laruence, Dmitry) + . Fixed bug #70300 (Syntactical inconsistency with new group use syntax). + (marcio dot web2 at gmail dot com) + . Fixed bug #70321 (Magic getter breaks reference to array property). + (Laruence) + . Fixed bug #70187 (Notice: unserialize(): Unexpected end of serialized + data). (Dmitry) + . Fixed bug #70145 (From field incorrectly parsed from headers). (Anatol) + . Fixed bug #70370 (Bundled libtool.m4 doesn't handle FreeBSD 10 when + building extensions). (Adam) + . Fixed bug causing exception traces with anon classes to be truncated. (Bob) + . Fixed bug #70397 (Segmentation fault when using Closure::call and yield). + (Bob) + . Fixed bug #70299 (Memleak while assigning object offsetGet result). + (Laruence) + . Fixed bug #70288 (Apache crash related to ZEND_SEND_REF). (Laruence) + . Fixed bug #70262 (Accessing array crashes PHP 7.0beta3). + (Laruence, Dmitry) + . Fixed bug #70258 (Segfault if do_resize fails to allocated memory). + (Laruence) + . Fixed bug #70253 (segfault at _efree () in zend_alloc.c:1389). (Laruence) + . Fixed bug #70240 (Segfault when doing unset($var());). (Laruence) + . Fixed bug #70223 (Incrementing value returned by magic getter). (Laruence) + . Fixed bug #70215 (Segfault when __invoke is static). (Bob) + . Fixed bug #70207 (Finally is broken with opcache). (Laruence, Dmitry) + . Fixed bug #70173 (ZVAL_COPY_VALUE_EX broken for 32bit Solaris Sparc). + (Laruence, cmb) + . Fixed bug #69487 (SAPI may truncate POST data). (cmb) + . Fixed bug #70198 (Checking liveness does not work as expected). + (Shafreeck Sea, Anatol Belski) + . Fixed bug #70241,#70293 (Skipped assertions affect Generator returns). (Bob) + . Fixed bug #70239 (Creating a huge array doesn't result in exhausted, + but segfault). (Laruence, Anatol) + . Fixed "finally" issues. (Nikita, Dmitry) + . Fixed bug #70098 (Real memory usage doesn't decrease). (Dmitry) + . Fixed bug #70159 (__CLASS__ is lost in closures). (Julien) + . Fixed bug #70156 (Segfault in zend_find_alias_name). (Laruence) + . Fixed bug #70124 (null ptr deref / seg fault in ZEND_HANDLE_EXCEPTION). + (Laruence) + . Fixed bug #70117 (Unexpected return type error). (Laruence) + . Fixed bug #70106 (Inheritance by anonymous class). (Bob) + . Fixed bug #69674 (SIGSEGV array.c:953). (cmb) + . Fixed bug #70164 (__COMPILER_HALT_OFFSET__ under namespace is not defined). + (Bob) + . Fixed bug #70108 (sometimes empty $_SERVER['QUERY_STRING']). (Anatol) + . Fixed bug #70179 ($this refcount issue). (Bob) + . Fixed bug #69896 ('asm' operand has impossible constraints). (Anatol) + . Fixed bug #70183 (null pointer deref (segfault) in zend_eval_const_expr). + (Hugh Davenport) + . Fixed bug #70182 (Segfault in ZEND_ASSIGN_DIV_SPEC_CV_UNUSED_HANDLER). + (Hugh Davenport) + . Fixed bug #69793 (Remotely triggerable stack exhaustion via recursive + method calls). (Stas) + . Fixed bug #69892 (Different arrays compare indentical due to integer key + truncation). (Nikita) + . Fixed bug #70121 (unserialize() could lead to unexpected methods execution + / NULL pointer deref). (Stas) + . Fixed bug #70089 (segfault at ZEND_FETCH_DIM_W_SPEC_VAR_CONST_HANDLER ()). + (Laruence) + . Fixed bug #70057 (Build failure on 32-bit Mac OS X 10.6.8: recursive + inlining). (Laruence) + . Fixed bug #70012 (Exception lost with nested finally block). (Laruence) + . Fixed bug #69996 (Changing the property of a cloned object affects the + original). (Dmitry, Laruence) + . Fixed bug #70083 (Use after free with assign by ref to overloaded objects). + (Bob) + . Fixed bug #70006 (cli - function with default arg = STDOUT crash output). + (Laruence) + . Fixed bug #69521 (Segfault in gc_collect_cycles()). + (arjen at react dot com, Laruence) + . Improved zend_string API. (Francois Laupretre) + . Fixed bug #69955 (Segfault when trying to combine [] and assign-op on + ArrayAccess object). (Laruence) + . Fixed bug #69957 (Different ways of handling div/mod/intdiv). (Bob) + . Fixed bug #69900 (Too long timeout on pipes). (Anatol) + . Fixed bug #69872 (uninitialised value in strtr with array). (Laruence) + . Fixed bug #69868 (Invalid read of size 1 in zend_compile_short_circuiting). + (Laruence) + . Fixed bug #69849 (Broken output of apache_request_headers). (Kalle) + . Fixed bug #69840 (iconv_substr() doesn't work with UTF-16BE). (Kalle) + . Fixed bug #69823 (PHP 7.0.0alpha1 segmentation fault when exactly 33 + extensions are loaded). (Laruence) + . Fixed bug #69805 (null ptr deref and seg fault in zend_resolve_class_name). + (Laruence) + . Fixed bug #69802 (Reflection on Closure::__invoke borks type hint class + name). (Dmitry) + . Fixed bug #69761 (Serialization of anonymous classes should be prevented). + (Laruence) + . Fixed bug #69551 (parse_ini_file() and parse_ini_string() segmentation + fault). (Christoph M. Becker) + . Fixed bug #69781 (phpinfo() reports Professional Editions of Windows + 7/8/8.1/10 as "Business"). (Christian Wenz) + . Fixed bug #69835 (phpinfo() does not report many Windows SKUs). + (Christian Wenz) + . Fixed bug #69889 (Null coalesce operator doesn't work for string offsets). + (Nikita) + . Fixed bug #69891 (Unexpected array comparison result). (Nikita) + . Fixed bug #69892 (Different arrays compare indentical due to integer key + truncation). (Nikita) + . Fixed bug #69893 (Strict comparison between integer and empty string keys + crashes). (Nikita) + . Fixed bug #69767 (Default parameter value with wrong type segfaults). + (cmb, Laruence) + . Fixed bug #69756 (Fatal error: Nesting level too deep - recursive dependency + ? with ===). (Dmitry, Laruence) + . Fixed bug #69758 (Item added to array not being removed by array_pop/shift + ). (Laruence) + . Fixed bug #68475 (Add support for $callable() sytnax with 'Class::method'). + (Julien, Aaron Piotrowski) + . Fixed bug #69485 (Double free on zend_list_dtor). (Laruence) + . Fixed bug #69427 (Segfault on magic method __call of private method in + superclass). (Laruence) + . Improved __call() and __callStatic() magic method handling. Now they are + called in a stackless way using ZEND_CALL_TRAMPOLINE opcode, without + additional stack frame. (Laruence, Dmitry) + . Optimized strings concatenation. (Dmitry, Laruence) + . Fixed weird operators behavior. Division by zero now emits warning and + returns +/-INF, modulo by zero and intdid() throws an exception, shifts + by negative offset throw exceptions. Compile-time evaluation of division + by zero is disabled. (Dmitry, Andrea, Nikita) + . Fixed bug #69371 (Hash table collision leads to inaccessible array keys). + (Laruence) + . Fixed bug #68933 (Invalid read of size 8 in zend_std_read_property). + (Laruence, arjen at react dot com) + . Fixed bug #68252 (segfault in Zend/zend_hash.c in function + _zend_hash_del_el). (Laruence) + . Fixed bug #65598 (Closure executed via static autoload incorrectly marked as + static). (Nikita) + . Fixed bug #66811 (Cannot access static::class in lambda, writen outside of a + class). (Nikita) + . Fixed bug #69568 (call a private function in closure failed). (Nikita) + . Added PHP_INT_MIN constant. (Andrea) + . Added Closure::call() method. (Andrea) + . Fixed bug #67959 (Segfault when calling phpversion('spl')). (Florian) + . Implemented the RFC `Catchable "Call to a member function bar() on a + non-object"`. (Timm) + . Added options parameter for unserialize allowing to specify acceptable + classes (https://wiki.php.net/rfc/secure_unserialize). (Stas) + . Fixed bug #63734 (Garbage collector can free zvals that are still + referenced). (Dmitry) + . Removed ZEND_ACC_FINAL_CLASS, promoting ZEND_ACC_FINAL as final class + modifier. (Guilherme Blanco) + . is_long() & is_integer() is now an alias of is_int(). (Kalle) + . Implemented FR #55467 (phpinfo: PHP Variables with $ and single quotes). (Kalle) + . Added ?? operator. (Andrea) + . Added <=> operator. (Andrea) + . Added \u{xxxxx} Unicode Codepoint Escape Syntax. (Andrea) + . Fixed oversight where define() did not support arrays yet const syntax did. + (Andrea, Dmitry) + . Use "integer" and "float" instead of "long" and "double" in ZPP, type hint + and conversion error messages. (Andrea) + . Implemented FR #55428 (E_RECOVERABLE_ERROR when output buffering in output + buffering handler). (Kalle) + . Removed scoped calls of non-static methods from an incompatible $this + context. (Nikita) + . Removed support for #-style comments in ini files. (Nikita) + . Removed support for assigning the result of new by reference. (Nikita) + . Invalid octal literals in source code now produce compile errors, fixes + PHPSadness #31. (Andrea) + . Removed dl() function on fpm-fcgi. (Nikita) + . Removed support for hexadecimal numeric strings. (Nikita) + . Removed obsolete extensions and SAPIs. See the full list in UPGRADING. (Anatol) + . Added NULL byte protection to exec, system and passthru. (Yasuo) + . Added error_clear_last() function. (Reeze Xia) + . Fixed bug #68797 (Number 2.2250738585072012e-308 converted incorrectly). + (Anatol) + . Improved zend_qsort(using hybrid sorting algo) for better performance, + and also renamed zend_qsort to zend_sort. (Laruence) + . Added stable sorting algo zend_insert_sort. (Laruence) + . Improved zend_memnchr(using sunday algo) for better performance. (Laruence) + . Implemented the RFC `Scalar Type Decalarations v0.5`. (Anthony) + . Implemented the RFC `Group Use Declarations`. (Marcio) + . Implemented the RFC `Continue Output Buffering`. (Mike) + . Implemented the RFC `Constructor behaviour of internal classes`. (Dan, Dmitry) + . Implemented the RFC `Fix "foreach" behavior`. (Dmitry) + . Implemented the RFC `Generator Delegation`. (Bob) + . Implemented the RFC `Anonymous Class Support`. (Joe, Nikita, Dmitry) + . Implemented the RFC `Context Sensitive Lexer`. (Marcio Almada) + . Fixed bug #69511 (Off-by-one buffer overflow in php_sys_readlink). + (Jan Starke, Anatol) + +- CLI server: + . Fixed bug #68291 (404 on urls with '+'). (cmb) + . Fixed bug #66606 (Sets HTTP_CONTENT_TYPE but not CONTENT_TYPE). + (wusuopu, cmb) + . Fixed bug #70264 (CLI server directory traversal). (cmb) + . Fixed bug #69655 (php -S changes MKCALENDAR request method to MKCOL). (cmb) + . Fixed bug #64878 (304 responses return Content-Type header). (cmb) + . Refactor MIME type handling to use a hash table instead of linear search. + (Adam) + . Update the MIME type list from the one shipped by Apache HTTPD. (Adam) + . Added support for SEARCH WebDav method. (Mats Lindh) + +- COM: + . Fixed bug #69939 (Casting object to bool returns false). (Kalle) + +- Curl: + . Fixed bug #70330 (Segmentation Fault with multiple "curl_copy_handle"). + (Laruence) + . Fixed bug #70163 (curl_setopt_array() type confusion). (Laruence) + . Fixed bug #70065 (curl_getinfo() returns corrupted values). (Anatol) + . Fixed bug #69831 (Segmentation fault in curl_getinfo). (im dot denisenko at + yahoo dot com) + . Fixed bug #68937 (Segfault in curl_multi_exec). (Laruence) + . Removed support for unsafe file uploads. (Nikita) + +- Date: + . Fixed bug #70245 (strtotime does not emit warning when 2nd parameter is + object or string). (cmb) + . Fixed bug #70266 (DateInterval::__construct.interval_spec is not supposed to + be optional). (cmb) + . Fixed bug #70277 (new DateTimeZone($foo) is ignoring text after null byte). + (cmb) + . Fixed day_of_week function as it could sometimes return negative values + internally. (Derick) + . Removed $is_dst parameter from mktime() and gmmktime(). (Nikita) + . Removed date.timezone warning + (https://wiki.php.net/rfc/date.timezone_warning_removal). (Bob) + . Added "v" DateTime format modifier to get the 3-digit version of fraction + of seconds. (Mariano Iglesias) + . Implemented FR #69089 (Added DateTime::RFC3339_EXTENDED to output in + RFC3339 Extended format which includes fraction of seconds). (Mariano + Iglesias) + +- DBA: + . Fixed bug #62490 (dba_delete returns true on missing item (inifile)). (Mike) + . Fixed bug #68711 (useless comparisons). (bugreports at internot dot info) + +- DOM: + . Fixed bug #70558 ("Couldn't fetch" error in + DOMDocument::registerNodeClass()). (Laruence) + . Fixed bug #70001 (Assigning to DOMNode::textContent does additional entity + encoding). (cmb) + . Fixed bug #69846 (Segmenation fault (access violation) when iterating over + DOMNodeList). (Anatol Belski) + . Made DOMNode::textContent writeable. (Tjerk) + +- EXIF: + . Fixed bug #70385 (Buffer over-read in exif_read_data with TIFF IFD tag byte + value of 32 bytes). (Stas) + +- Fileinfo: + . Fixed bug #66242 (libmagic: don't assume char is signed). (ArdB) + +- Filter: + . New FILTER_VALIDATE_DOMAIN and better RFC conformance for FILTER_VALIDATE_URL. (Kevin Dunglas) + . Fixed bug #67167 (Wrong return value from FILTER_VALIDATE_BOOLEAN, + FILTER_NULL_ON_FAILURE). (levim) + +- FPM: + . Fixed bug #70538 ("php-fpm -i" crashes). (rainer dot jung at + kippdata dot de) + . Fixed bug #70279 (HTTP Authorization Header is sometimes passed to newer + reqeusts). (Laruence) + . Fixed bug #68945 (Unknown admin values segfault pools). (Laruence) + . Fixed bug #65933 (Cannot specify config lines longer than 1024 bytes). (Chris Wright) + . Implemented FR #67106 (Split main fpm config). (Elan Ruusamäe, Remi) + +- FTP: + . Fixed bug #69082 (FTPS support on Windows). (Anatol) + +- GD: + . Fixed bug #53156 (imagerectangle problem with point ordering). (cmb) + . Fixed bug #66387 (Stack overflow with imagefilltoborder). (CVE-2015-8874) + (cmb) + . Fixed bug #70102 (imagecreatefromwebm() shifts colors). (cmb) + . Fixed bug #66590 (imagewebp() doesn't pad to even length). (cmb) + . Fixed bug #66882 (imagerotate by -90 degrees truncates image by 1px). (cmb) + . Fixed bug #70064 (imagescale(..., IMG_BICUBIC) leaks memory). (cmb) + . Fixed bug #69024 (imagescale segfault with palette based image). (cmb) + . Fixed bug #53154 (Zero-height rectangle has whiskers). (cmb) + . Fixed bug #67447 (imagecrop() add a black line when cropping). (cmb) + . Fixed bug #68714 (copy 'n paste error). (cmb) + . Fixed bug #66339 (PHP segfaults in imagexbm). (cmb) + . Fixed bug #70047 (gd_info() doesn't report WebP support). (cmb) + . Replace libvpx with libwebp for bundled libgd. (cmb, Anatol) + . Fixed bug #61221 (imagegammacorrect function loses alpha channel). (cmb) + . Made fontFetch's path parser thread-safe. (Sara) + . Removed T1Lib support. (Kalle) + +- GMP: + . Fixed bug #70284 (Use after free vulnerability in unserialize() with GMP). + (stas) + +- hash: + . Fixed bug #70312 (HAVAL gives wrong hashes in specific cases). (letsgolee + at naver dot com) + +- IMAP: + . Fixed bug #70158 (Building with static imap fails). (cmb) + . Fixed bug #69998 (curl multi leaking memory). (Pierrick) + +- Intl: + . Fixed bug #70453 (IntlChar::foldCase() incorrect arguments and missing + constants). (cmb) + . Fixed bug #70454 (IntlChar::forDigit second parameter should be optional). + (cmb, colinodell) + . Removed deprecated aliases datefmt_set_timezone_id() and + IntlDateFormatter::setTimeZoneID(). (Nikita) + +- JSON: + . Fixed bug #62010 (json_decode produces invalid byte-sequences). + (Jakub Zelenka) + . Fixed bug #68546 (json_decode() Fatal error: Cannot access property + started with '\0'). (Jakub Zelenka) + . Replace non-free JSON parser with a parser from Jsond extension, fixes #63520 + (JSON extension includes a problematic license statement). (Jakub Zelenka) + . Fixed bug #68938 (json_decode() decodes empty string without error). + (jeremy at bat-country dot us) + +- LDAP: + . Fixed bug #47222 (Implement LDAP_OPT_DIAGNOSTIC_MESSAGE). (Andreas Heigl) + +- LiteSpeed: + . Updated LiteSpeed SAPI code from V5.5 to V6.6. (George Wang) + +- libxml: + . Fixed handling of big lines in error messages with libxml >= 2.9.0. + (Christoph M. Becker) + +- Mcrypt: + . Fixed bug #70625 (mcrypt_encrypt() won't return data when no IV was + specified under RC4). (Nikita) + . Fixed bug #69833 (mcrypt fd caching not working). (Anatol) + . Fixed possible read after end of buffer and use after free. (Dmitry) + . Removed mcrypt_generic_end() alias. (Nikita) + . Removed mcrypt_ecb(), mcrypt_cbc(), mcrypt_cfb(), mcrypt_ofb(). (Nikita) + +- Mysqli: + . Fixed bug #32490 (constructor of mysqli has wrong name). (cmb) + +- Mysqlnd: + . Fixed bug #70949 (SQL Result Sets With NULL Can Cause Fatal Memory Errors). + (Laruence) + . Fixed bug #70384 (mysqli_real_query():Unknown type 245 sent by the server). + (Andrey) + . Fixed bug #70456 (mysqlnd doesn't activate TCP keep-alive when connecting to + a server). (Sergei Turchanov) + . Fixed bug #70572 segfault in mysqlnd_connect. (Andrey, Remi) + . Fixed Bug #69796 (mysqli_stmt::fetch doesn't assign null values to + bound variables). (Laruence) + +- OCI8: + . Fixed memory leak with LOBs. (Senthil) + . Fixed bug #68298 (OCI int overflow) (Senthil). + . Corrected oci8 hash destructors to prevent segfaults, and a few other fixes. + (Cameron Porter) + +- ODBC: + . Fixed bug #69975 (PHP segfaults when accessing nvarchar(max) defined + columns). (CVE-2015-8879) (cmb) + +- Opcache: + . Fixed bug #70656 (require() statement broken after opcache_reset() or a + few hours of use). (Laruence) + . Fixed bug #70843 (Segmentation fault on MacOSX with + opcache.file_cache_only=1). (Laruence) + . Fixed bug #70724 (Undefined Symbols from opcache.so on Mac OS X 10.10). + (Laruence) + . Fixed compatibility with Windows 10 (see also bug #70652). (Anatol) + . Attmpt to fix "Unable to reattach to base address" problem. (Matt Ficken) + . Fixed bug #70423 (Warning Internal error: wrong size calculation). (Anatol) + . Fixed bug #70237 (Empty while and do-while segmentation fault with opcode + on CLI enabled). (Dmitry, Laruence) + . Fixed bug #70111 (Segfault when a function uses both an explicit return + type and an explicit cast). (Laruence) + . Fixed bug #70058 (Build fails when building for i386). (Laruence) + . Fixed bug #70022 (Crash with opcache using opcache.file_cache_only=1). + (Anatol) + . Removed opcache.load_comments configuration directive. Now doc comments + loading costs nothing and always enabled. (Dmitry) + . Fixed bug #69838 (Wrong size calculation for function table). (Anatol) + . Fixed bug #69688 (segfault with eval and opcache fast shutdown). + (Laruence) + . Added experimental (disabled by default) file based opcode cache. + (Dmitry, Laruence, Anatol) + . Fixed bug with try blocks being removed when extended_info opcode + generation is turned on. (Laruence) + . Fixed bug #68644 (strlen incorrect : mbstring + func_overload=2 +UTF-8 + + Opcache). (Laruence) + +- OpenSSL: + . Require at least OpenSSL version 0.9.8. (Jakub Zelenka) + . Fixed bug #68312 (Lookup for openssl.cnf causes a message box). (Anatol) + . Fixed bug #55259 (openssl extension does not get the DH parameters from + DH key resource). (Jakub Zelenka) + . Fixed bug #70395 (Missing ARG_INFO for openssl_seal()). (cmb) + . Fixed bug #60632 (openssl_seal fails with AES). (Jakub Zelenka) + . Implemented FR #70438 (Add IV parameter for openssl_seal and openssl_open) + (Jakub Zelenka) + . Fixed bug #70014 (openssl_random_pseudo_bytes() is not cryptographically + secure). (CVE-2015-8867) (Stas) + . Fixed bug #69882 (OpenSSL error "key values mismatch" after + openssl_pkcs12_read with extra cert). (Tomasz Sawicki) + . Added "alpn_protocols" SSL context option allowing encrypted client/server + streams to negotiate alternative protocols using the ALPN TLS extension when + built against OpenSSL 1.0.2 or newer. Negotiated protocol information is + accessible through stream_get_meta_data() output. + . Removed "CN_match" and "SNI_server_name" SSL context options. Use automatic + detection or the "peer_name" option instead. (Nikita) + +- Pcntl: + . Fixed bug #70386 (Can't compile on NetBSD because of missing WCONTINUED + and WIFCONTINUED). (Matteo) + . Fixed bug #60509 (pcntl_signal doesn't decrease ref-count of old handler + when setting SIG_DFL). (Julien) + . Implemented FR #68505 (Added wifcontinued and wcontinued). (xilon-jul) + . Added rusage support to pcntl_wait() and pcntl_waitpid(). (Anton Stepanenko, + Tony) + +- PCRE: + . Fixed bug #70232 (Incorrect bump-along behavior with \K and empty string + match). (cmb) + . Fixed bug #70345 (Multiple vulnerabilities related to PCRE functions). + (Anatol Belski) + . Fixed bug #70232 (Incorrect bump-along behavior with \K and empty string + match). (cmb) + . Fixed bug #53823 (preg_replace: * qualifier on unicode replace garbles the + string). (cmb) + . Fixed bug #69864 (Segfault in preg_replace_callback). (cmb, ab) + +- PDO: + . Fixed bug #70861 (Segmentation fault in pdo_parse_params() during Drupal 8 + test suite). (Anatol) + . Fixed bug #70389 (PDO constructor changes unrelated variables). (Laruence) + . Fixed bug #70272 (Segfault in pdo_mysql). (Laruence) + . Fixed bug #70221 (persistent sqlite connection + custom function + segfaults). (Laruence) + . Removed support for the /e (PREG_REPLACE_EVAL) modifier. (Nikita) + . Fixed bug #59450 (./configure fails with "Cannot find php_pdo_driver.h"). + (maxime dot besson at smile dot fr) + +- PDO_DBlib: + . Fixed bug #69757 (Segmentation fault on nextRowset). + (miracle at rpz dot name) + +- PDO_mysql: + . Fixed bug #68424 (Add new PDO mysql connection attr to control multi + statements option). (peter dot wolanin at acquia dot com) + +- PDO_OCI: + . Fixed bug #70308 (PDO::ATTR_PREFETCH is ignored). (Chris Jones) + +- PDO_pgsql: + . Fixed bug #69752 (PDOStatement::execute() leaks memory with DML + Statements when closeCuror() is u). (Philip Hofstetter) + . Removed PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT attribute in favor of + ATTR_EMULATE_PREPARES). (Nikita) + +- Phar: + . Fixed bug #69720 (Null pointer dereference in phar_get_fp_offset()). (Stas) + . FIxed bug #70433 (Uninitialized pointer in phar_make_dirstream when zip + entry filename is "/"). (Stas) + . Improved fix for bug #69441. (Anatol Belski) + . Fixed bug #70019 (Files extracted from archive may be placed outside of + destination directory). (Anatol Belski) + +- Phpdbg: + . Fixed bug #70614 (incorrect exit code in -rr mode with Exceptions). (Bob) + . Fixed bug #70532 (phpdbg must respect set_exception_handler). (Bob) + . Fixed bug #70531 (Run and quit mode (-qrr) should not fallback to + interactive mode). (Bob) + . Fixed bug #70533 (Help overview (-h) does not rpint anything under Windows). + (Anatol) + . Fixed bug #70449 (PHP won't compile on 10.4 and 10.5 because of missing + constants). (Bob) + . Fixed bug #70214 (FASYNC not defined, needs sys/file.h include). (Bob) + . Fixed bug #70138 (Segfault when displaying memory leaks). (Bob) + +- Reflection: + . Fixed bug #70650 (Wrong docblock assignment). (Marcio) + . Fixed bug #70674 (ReflectionFunction::getClosure() leaks memory when used + for internal functions). (Dmitry, Bob) + . Fixed bug causing bogus traces for ReflectionGenerator::getTrace(). (Bob) + . Fixed inheritance chain of Reflector interface. (Tjerk) + . Added ReflectionGenerator class. (Bob) + . Added reflection support for return types and type declarations. (Sara, + Matteo) + +- Session: + . Fixed bug #70876 (Segmentation fault when regenerating session id with + strict mode). (Laruence) + . Fixed bug #70529 (Session read causes "String is not zero-terminated" error). + (Yasuo) + . Fixed bug #70013 (Reference to $_SESSION is lost after a call to + session_regenerate_id()). (Yasuo) + . Fixed bug #69952 (Data integrity issues accessing superglobals by + reference). (Bob) + . Fixed bug #67694 (Regression in session_regenerate_id()). (Tjerk) + . Fixed bug #68941 (mod_files.sh is a bash-script). (bugzilla at ii.nl, Yasuo) + +- SOAP: + . Fixed bug #70940 (Segfault in soap / type_to_string). (Remi) + . Fixed bug #70900 (SoapClient systematic out of memory error). (Dmitry) + . Fixed bug #70875 (Segmentation fault if wsdl has no targetNamespace + attribute). (Matteo) + . Fixed bug #70715 (Segmentation fault inside soap client). (Laruence) + . Fixed bug #70709 (SOAP Client generates Segfault). (Laruence) + . Fixed bug #70388 (SOAP serialize_function_call() type confusion / RCE). + (Stas) + . Fixed bug #70081 (SoapClient info leak / null pointer dereference via + multiple type confusions). (Stas) + . Fixed bug #70079 (Segmentation fault after more than 100 SoapClient + calls). (Laruence) + . Fixed bug #70032 (make_http_soap_request calls + zend_hash_get_current_key_ex(,,,NULL). (Laruence) + . Fixed bug #68361 (Segmentation fault on SoapClient::__getTypes). (Laruence) + +- SPL: + . Fixed bug #70959 (ArrayObject unserialize does not restore protected + fields). (Laruence) + . Fixed bug #70853 (SplFixedArray throws exception when using ref variable + as index). (Laruence) + . Fixed bug #70868 (PCRE JIT and pattern reuse segfault). (Laruence) + . Fixed bug #70730 (Incorrect ArrayObject serialization if unset is called + in serialize()). (Laruence) + . Fixed bug #70573 (Cloning SplPriorityQueue leads to memory leaks). (Dmitry) + . Fixed bug #70303 (Incorrect constructor reflection for ArrayObject). (cmb) + . Fixed bug #70068 (Dangling pointer in the unserialization of ArrayObject + items). (sean.heelan) + . Fixed bug #70166 (Use After Free Vulnerability in unserialize() with + SPLArrayObject). (taoguangchen at icloud dot com) + . Fixed bug #70168 (Use After Free Vulnerability in unserialize() with + SplObjectStorage). (taoguangchen at icloud dot com) + . Fixed bug #70169 (Use After Free Vulnerability in unserialize() with + SplDoublyLinkedList). (taoguangchen at icloud dot com) + . Fixed bug #70053 (MutlitpleIterator array-keys incompatible change in + PHP 7). (Tjerk) + . Fixed bug #69970 (Use-after-free vulnerability in + spl_recursive_it_move_forward_ex()). (Laruence) + . Fixed bug #69845 (ArrayObject with ARRAY_AS_PROPS broken). (Dmitry) + . Changed ArrayIterator implementation using zend_hash_iterator_... API. + Allowed modification of iterated ArrayObject using the same behavior + as proposed in `Fix "foreach" behavior`. Removed "Array was modified + outside object and internal position is no longer valid" hack. (Dmitry) + . Implemented FR #67886 (SplPriorityQueue/SplHeap doesn't expose extractFlags + nor curruption state). (Julien) + . Fixed bug #66405 (RecursiveDirectoryIterator::CURRENT_AS_PATHNAME + breaks the RecursiveIterator). (Paul Garvin) + +- SQLite3: + . Fixed bug #70571 (Memory leak in sqlite3_do_callback). (Adam) + . Fixed bug #69972 (Use-after-free vulnerability in + sqlite3SafetyCheckSickOrOk()). (Laruence) + . Fixed bug #69897 (segfault when manually constructing SQLite3Result). + (Kalle) + . Fixed bug #68260 (SQLite3Result::fetchArray declares wrong + required_num_args). (Julien) + +- Standard: + . Fixed count on symbol tables. (Laruence) + . Fixed bug #70963 (Unserialize shows UNKNOWN in result). (Laruence) + . Fixed bug #70910 (extract() breaks variable references). (Laruence) + . Fixed bug #70808 (array_merge_recursive corrupts memory of unset items). + (Laruence) + . Fixed bug #70667 (strtr() causes invalid writes and a crashes). (Dmitry) + . Fixed bug #70668 (array_keys() doesn't respect references when $strict is + true). (Bob, Dmitry) + . Implemented the RFC `Random Functions Throwing Exceptions in PHP 7`. + (Sammy Kaye Powers, Anthony) + . Fixed bug #70487 (pack('x') produces an error). (Nikita) + . Fixed bug #70342 (changing configuration with ignore_user_abort(true) isn't + working). (Laruence) + . Fixed bug #70295 (Segmentation fault with setrawcookie). (Bob) + . Fixed bug #67131 (setcookie() conditional for empty values not met). (cmb) + . Fixed bug #70365 (Use-after-free vulnerability in unserialize() with + SplObjectStorage). (taoguangchen at icloud dot com) + . Fixed bug #70366 (Use-after-free vulnerability in unserialize() with + SplDoublyLinkedList). (taoguangchen at icloud dot com) + . Fixed bug #70250 (extract() turns array elements to references). + (Laruence) + . Fixed bug #70211 (php 7 ZEND_HASH_IF_FULL_DO_RESIZE use after free). + (Laruence) + . Fixed bug #70208 (Assert breaking access on objects). (Bob) + . Fixed bug #70140 (str_ireplace/php_string_tolower - Arbitrary Code + Execution). (CVE-2015-6527) (Laruence) + . Implemented FR #70112 (Allow "dirname" to go up various times). (Remi) + . Fixed bug #36365 (scandir duplicates file name at every 65535th file). (cmb) + . Fixed bug #70096 (Repeated iptcembed() adds superfluous FF bytes). (cmb) + . Fixed bug #70018 (exec does not strip all whitespace). (Laruence) + . Fixed bug #69983 (get_browser fails with user agent of null). + (Kalle, cmb, Laruence) + . Fixed bug #69976 (Unable to parse "all" urls with colon char). (cmb) + . Fixed bug #69768 (escapeshell*() doesn't cater to !). (cmb) + . Fixed bug #62922 (Truncating entire string should result in string). + (Nikita) + . Fixed bug #69723 (Passing parameters by reference and array_column). + (Laruence) + . Fixed bug #69523 (Cookie name cannot be empty). (Christoph M. Becker) + . Fixed bug #69325 (php_copy_file_ex does not pass the argument). + (imbolk at gmail dot com) + . Fixed bug #69299 (Regression in array_filter's $flag argument in PHP 7). + (Laruence) + . Removed call_user_method() and call_user_method_array() functions. (Kalle) + . Fixed user session handlers (See rfc:session.user.return-value). (Sara) + . Added intdiv() function. (Andrea) + . Improved precision of log() function for base 2 and 10. (Marc Bennewitz) + . Remove string category support in setlocale(). (Nikita) + . Remove set_magic_quotes_runtime() and its alias magic_quotes_runtime(). + (Nikita) + . Fixed bug #65272 (flock() out parameter not set correctly in windows). + (Daniel Lowrey) + . Added preg_replace_callback_array function. (Wei Dai) + . Deprecated salt option to password_hash. (Anthony) + . Fixed bug #69686 (password_verify reports back error on PHP7 will null + string). (Anthony) + . Added Windows support for getrusage(). (Kalle) + . Removed hardcoded limit on number of pipes in proc_open(). (Tony) + +- Streams: + . Fixed bug #70361 (HTTP stream wrapper doesn't close keep-alive connections). + (Niklas Keller) + . Fixed bug #68532 (convert.base64-encode omits padding bytes). + (blaesius at krumedia dot de) + . Removed set_socket_blocking() in favor of its alias stream_set_blocking(). + (Nikita) + +- Tokenizer: + . Fixed bug #69430 (token_get_all has new irrecoverable errors). (Nikita) + +- XMLReader: + . Fixed bug #70309 (XmlReader read generates extra output). (Anatol) + +- XMLRPC + . Fixed bug #70526 (xmlrpc_set_type returns false on success). (Laruence) + +- XSL: + . Fixed bug #70678 (PHP7 returns true when false is expected). (Felipe) + . Fixed bug #70535 (XSLT: free(): invalid pointer). (Laruence) + . Fixed bug #69782 (NULL pointer dereference). (Stas) + . Fixed bug #64776 (The XSLT extension is not thread safe). (Mike) + . Removed xsl.security_prefs ini option. (Nikita) + +- Zlib: + . Added deflate_init(), deflate_add(), inflate_init(), inflate_add() + functions allowing incremental/streaming compression/decompression. + (Daniel Lowrey & Bob Weinand) + +- Zip: + . Fixed bug #70322 (ZipArchive::close() doesn't indicate errors). + (CVE-2014-9767) (cmb) + . Fixed bug #70350 (ZipArchive::extractTo allows for directory traversal when + creating directories). (neal at fb dot com) + . Added ZipArchive::setCompressionName and ZipArchive::setCompressionIndex + methods. (Remi, Cedric Delmas) + . Update bundled libzip to 1.0.1. (Remi, Anatol) + . Fixed bug #67161 (ZipArchive::getStream() returns NULL for certain file). + (Christoph M. Becker) diff --git a/data/releases/7.0/7.0.0/release.json b/data/releases/7.0/7.0.0/release.json new file mode 100644 index 0000000000..df6d3c9c3f --- /dev/null +++ b/data/releases/7.0/7.0.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.0", + "date": "03 Dec 2015", + "tags": [], + "source": [ + { + "filename": "php-7.0.0.tar.bz2", + "name": "PHP 7.0.0 (tar.bz2)", + "sha256": "a92a54306832167a39f7c0ec00524fc6f3f7d985c806caa7632561d0ddedfcea" + }, + { + "filename": "php-7.0.0.tar.gz", + "name": "PHP 7.0.0 (tar.gz)", + "sha256": "d6ae7b4a2e5c43a9945a97e83b6b3adfb7d0df0b91ef78b647a6dffefaa9c71b" + }, + { + "filename": "php-7.0.0.tar.xz", + "name": "PHP 7.0.0 (tar.xz)", + "sha256": "7dbdda74c502960febe0544b3e3a7c430389a7a4260e94c73fd8ca26c33b8540" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.1/announcement.html b/data/releases/7.0/7.0.1/announcement.html new file mode 100644 index 0000000000..ae62b69e15 --- /dev/null +++ b/data/releases/7.0/7.0.1/announcement.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/7.0.1/changes.txt b/data/releases/7.0/7.0.1/changes.txt new file mode 100644 index 0000000000..b8673e6031 --- /dev/null +++ b/data/releases/7.0/7.0.1/changes.txt @@ -0,0 +1,87 @@ +- Core: + . Fixed bug #71105 (Format String Vulnerability in Class Name Error Message). + (CVE-2015-8617) (andrew at jmpesp dot org) + . Fixed bug #70831 (Compile fails on system with 160 CPUs). (Daniel Axtens) + . Fixed bug #71006 (symbol referencing errors on Sparc/Solaris). (Dmitry) + . Fixed bug #70997 (When using parentClass:: instead of parent::, static + context changed). (Dmitry) + . Fixed bug #70970 (Segfault when combining error handler with output + buffering). (Laruence) + . Fixed bug #70967 (Weird error handling for __toString when Error is + thrown). (Laruence) + . Fixed bug #70958 (Invalid opcode while using ::class as trait method + paramater default value). (Laruence) + . Fixed bug #70944 (try{ } finally{} can create infinite chains of + exceptions). (Laruence) + . Fixed bug #70931 (Two errors messages are in conflict). (dams, Laruence) + . Fixed bug #70904 (yield from incorrectly marks valid generator as + finished). (Bob) + . Fixed bug #70899 (buildconf failure in extensions). (Bob, Reeze) + . Fixed bug #61751 (SAPI build problem on AIX: Undefined symbol: + php_register_internal_extensions). (Lior Kaplan) + . Fixed \int (or generally every scalar type name with leading backslash) + to not be accepted as type name. (Bob) + . Fixed exception not being thrown immediately into a generator yielding + from an array. (Bob) + . Fixed bug #70987 (static::class within Closure::call() causes segfault). + (Andrea) + . Fixed bug #71013 (Incorrect exception handler with yield from). (Bob) + . Fixed double free in error condition of format printer. (Bob) + +- CLI server: + . Fixed bug #71005 (Segfault in php_cli_server_dispatch_router()). (Adam) + +- Intl: + . Fixed bug #71020 (Use after free in Collator::sortWithSortKeys). + (CVE-2015-8616) (emmanuel dot law at gmail dot com, Laruence) + +- Mysqlnd: + . Fixed bug #68077 (LOAD DATA LOCAL INFILE / open_basedir restriction). + (Laruence) + . Fixed bug #68344 (MySQLi does not provide way to disable peer certificate + validation) by introducing MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT + connection flag. (Andrey) + +- OCI8: + . Fixed LOB implementation size_t/zend_long mismatch reported by gcov. + (Senthil) + +- Opcache: + . Fixed bug #71024 (Unable to use PHP 7.0 x64 side-by-side with PHP 5.6 x32 + on the same server). (Anatol) + . Fixed bug #70991 (zend_file_cache.c:710: error: array type has incomplete + element type). (Laruence) + . Fixed bug #70977 (Segmentation fault with opcache.huge_code_pages=1). + (Laruence) + +- PDO_Firebird: + . Fixed bug #60052 (Integer returned as a 64bit integer on X64_86). (Mariuz) + +- Phpdbg: + . Fixed stderr being written to stdout. (Bob) + +- Reflection: + . Fixed bug #71018 (ReflectionProperty::setValue() behavior changed). + (Laruence) + . Fixed bug #70982 (setStaticPropertyValue behaviors inconsistently with + 5.6). (Laruence) + +- Soap: + . Fixed bug #70993 (Array key references break argument processing). + (Laruence) + +- SPL: + . Fixed bug #71028 (Undefined index with ArrayIterator). (Laruence) + +- SQLite3: + . Fixed bug #71049 (SQLite3Stmt::execute() releases bound parameter instead + of internal buffer). (Laruence) + +- Standard: + . Fixed bug #70999 (php_random_bytes: called object is not a function). + (Scott) + . Fixed bug #70960 (ReflectionFunction for array_unique returns wrong number + of parameters). (Laruence) + +- Streams/Socket: + . Add IPV6_V6ONLY constant / make it usable in stream contexts. (Bob) diff --git a/data/releases/7.0/7.0.1/release.json b/data/releases/7.0/7.0.1/release.json new file mode 100644 index 0000000000..1356923c05 --- /dev/null +++ b/data/releases/7.0/7.0.1/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.1", + "date": "17 Dec 2015", + "tags": [], + "source": [ + { + "filename": "php-7.0.1.tar.bz2", + "name": "PHP 7.0.1 (tar.bz2)", + "sha256": "04ce3bd1da001397b342c2219a5093be9ecbbc97f022e1e6a0ec2fedc3d93e42" + }, + { + "filename": "php-7.0.1.tar.gz", + "name": "PHP 7.0.1 (tar.gz)", + "sha256": "d12aaba2bead056322aa53bd5fbe762b27a42d37f451cd42ff2e7a549ca21dbf" + }, + { + "filename": "php-7.0.1.tar.xz", + "name": "PHP 7.0.1 (tar.xz)", + "sha256": "84fcb8b9c61f70db802d3b6636c6ba602470a375e593375c0c744483aa0c0357" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.10/announcement.html b/data/releases/7.0/7.0.10/announcement.html new file mode 100644 index 0000000000..a20e938d14 --- /dev/null +++ b/data/releases/7.0/7.0.10/announcement.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/7.0.10/release.json b/data/releases/7.0/7.0.10/release.json new file mode 100644 index 0000000000..5bc8f22358 --- /dev/null +++ b/data/releases/7.0/7.0.10/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.10", + "date": "18 Aug 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.10.tar.bz2", + "name": "PHP 7.0.10 (tar.bz2)", + "sha256": "8055bbe5a736986931c0c6a08b765d6d778271ec7d2d56c50a1ad259ec09f6de" + }, + { + "filename": "php-7.0.10.tar.gz", + "name": "PHP 7.0.10 (tar.gz)", + "sha256": "46216e05db09c0fffbf832e3b64f3722ccbdd6d4ae16d9791e41adf0a4b00641" + }, + { + "filename": "php-7.0.10.tar.xz", + "name": "PHP 7.0.10 (tar.xz)", + "sha256": "348476ff7ba8d95a1e28e1059430c10470c5f8110f6d9133d30153dda4cdf56a" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.11/announcement.html b/data/releases/7.0/7.0.11/announcement.html new file mode 100644 index 0000000000..65e6ce73f7 --- /dev/null +++ b/data/releases/7.0/7.0.11/announcement.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/7.0.11/release.json b/data/releases/7.0/7.0.11/release.json new file mode 100644 index 0000000000..6822c8168e --- /dev/null +++ b/data/releases/7.0/7.0.11/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.11", + "date": "15 Sep 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.11.tar.bz2", + "name": "PHP 7.0.11 (tar.bz2)", + "sha256": "f99b729dc1149858844b18af1e8c0de6dd1cdfdd52e22fbb4de2aa78bf9bf7f1" + }, + { + "filename": "php-7.0.11.tar.gz", + "name": "PHP 7.0.11 (tar.gz)", + "sha256": "02d27b5d140dbad8d400a95af808e1e9ce87aa8d2a2100870734ba26e6700d79" + }, + { + "filename": "php-7.0.11.tar.xz", + "name": "PHP 7.0.11 (tar.xz)", + "sha256": "d4cccea8da1d27c11b89386f8b8e95692ad3356610d571253d00ca67d524c735" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.12/announcement.html b/data/releases/7.0/7.0.12/announcement.html new file mode 100644 index 0000000000..5d03d345f6 --- /dev/null +++ b/data/releases/7.0/7.0.12/announcement.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/7.0.12/release.json b/data/releases/7.0/7.0.12/release.json new file mode 100644 index 0000000000..59fd6f7369 --- /dev/null +++ b/data/releases/7.0/7.0.12/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.12", + "date": "13 Oct 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.12.tar.bz2", + "name": "PHP 7.0.12 (tar.bz2)", + "sha256": "38c47294fe8fb239b0230dc63a93c3e4044f472ab93b5dff8b65feb4103a6a27" + }, + { + "filename": "php-7.0.12.tar.gz", + "name": "PHP 7.0.12 (tar.gz)", + "sha256": "c4693cc363b4bbc7224294cc94faf3598e616cbe8540dd6975f68c7d3c52682f" + }, + { + "filename": "php-7.0.12.tar.xz", + "name": "PHP 7.0.12 (tar.xz)", + "sha256": "f3d6c49e1c242e5995dec15e503fde996c327eb86cd7ec45c690e93c971b83ff" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.13/announcement.html b/data/releases/7.0/7.0.13/announcement.html new file mode 100644 index 0000000000..9ed274e181 --- /dev/null +++ b/data/releases/7.0/7.0.13/announcement.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/7.0.13/release.json b/data/releases/7.0/7.0.13/release.json new file mode 100644 index 0000000000..3ffc213eaf --- /dev/null +++ b/data/releases/7.0/7.0.13/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.13", + "date": "10 Nov 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.13.tar.bz2", + "name": "PHP 7.0.13 (tar.bz2)", + "sha256": "d090bb523812117ec0c08d8f0b5c5f0616aa7a29a2eeee0374efe53a7cfe88c1" + }, + { + "filename": "php-7.0.13.tar.gz", + "name": "PHP 7.0.13 (tar.gz)", + "sha256": "c8d8cf1b29e7f7e89be9ee64f453cb7ef6d20e1d13a83cba037bd654ef2da42c" + }, + { + "filename": "php-7.0.13.tar.xz", + "name": "PHP 7.0.13 (tar.xz)", + "sha256": "357ba7f93975d7d836abed0852dc3ed96a988af539e87750613294cbee82f1bf" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.14/announcement.html b/data/releases/7.0/7.0.14/announcement.html new file mode 100644 index 0000000000..b6618a8aaa --- /dev/null +++ b/data/releases/7.0/7.0.14/announcement.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/7.0.14/release.json b/data/releases/7.0/7.0.14/release.json new file mode 100644 index 0000000000..1866da344c --- /dev/null +++ b/data/releases/7.0/7.0.14/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.14", + "date": "08 Dec 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.14.tar.bz2", + "name": "PHP 7.0.14 (tar.bz2)", + "sha256": "fbc4369a0d42b55fd1ce75eb4f3d17b012da754a67567d8e3288fbfbb7490534" + }, + { + "filename": "php-7.0.14.tar.gz", + "name": "PHP 7.0.14 (tar.gz)", + "sha256": "320cfd2184e7252d3d77eae5d5474554fa04ab9fbee7c6094c07e8bd3b5b632b" + }, + { + "filename": "php-7.0.14.tar.xz", + "name": "PHP 7.0.14 (tar.xz)", + "sha256": "0f1dff6392a1cc2ed126b9695f580a2ed77eb09d2c23b41cabfb41e6f27a8c89" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.15/announcement.html b/data/releases/7.0/7.0.15/announcement.html new file mode 100644 index 0000000000..ec5b5501e3 --- /dev/null +++ b/data/releases/7.0/7.0.15/announcement.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/7.0.15/release.json b/data/releases/7.0/7.0.15/release.json new file mode 100644 index 0000000000..8aa67953a0 --- /dev/null +++ b/data/releases/7.0/7.0.15/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.15", + "date": "19 Jan 2017", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.15.tar.bz2", + "name": "PHP 7.0.15 (tar.bz2)", + "sha256": "a8c8f947335683fa6dd1b7443ed70f2a42bc33e8b6c215f139138cee89e47dd9" + }, + { + "filename": "php-7.0.15.tar.gz", + "name": "PHP 7.0.15 (tar.gz)", + "sha256": "c24324c6d4bf27e8bc1d12da0aae4f15a43c8374f681e23e9b1e67f5b719c3a6" + }, + { + "filename": "php-7.0.15.tar.xz", + "name": "PHP 7.0.15 (tar.xz)", + "sha256": "300364d57fc4a6176ff7d52d390ee870ab6e30df121026649f8e7e0b9657fe93" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.16/announcement.html b/data/releases/7.0/7.0.16/announcement.html new file mode 100644 index 0000000000..88f638dcaf --- /dev/null +++ b/data/releases/7.0/7.0.16/announcement.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/7.0.16/release.json b/data/releases/7.0/7.0.16/release.json new file mode 100644 index 0000000000..9cc14ba5fb --- /dev/null +++ b/data/releases/7.0/7.0.16/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.16", + "date": "16 Feb 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.16.tar.bz2", + "name": "PHP 7.0.16 (tar.bz2)", + "sha256": "83c5f57575dc0feca563af529d6f1d60183bf9c2c13e98a6da131fbd0a3597ab" + }, + { + "filename": "php-7.0.16.tar.gz", + "name": "PHP 7.0.16 (tar.gz)", + "sha256": "bc6709dc7612957d0533c09c9c8a9c2e7c4fd9d64e697707bb1b39670eab61d4" + }, + { + "filename": "php-7.0.16.tar.xz", + "name": "PHP 7.0.16 (tar.xz)", + "sha256": "244ac39bc657448962860aa7a590e4417f68513ad5e86ee2727b1328b0537309" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.17/announcement.html b/data/releases/7.0/7.0.17/announcement.html new file mode 100644 index 0000000000..be237033d1 --- /dev/null +++ b/data/releases/7.0/7.0.17/announcement.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/7.0.17/release.json b/data/releases/7.0/7.0.17/release.json new file mode 100644 index 0000000000..31143d7d24 --- /dev/null +++ b/data/releases/7.0/7.0.17/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.17", + "date": "30 Mar 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.17.tar.bz2", + "name": "PHP 7.0.17 (tar.bz2)", + "sha256": "aee503926b96d807692fac3e0fd64e3259788f5139819a983152679cb6e91d4b" + }, + { + "filename": "php-7.0.17.tar.gz", + "name": "PHP 7.0.17 (tar.gz)", + "sha256": "1f42ffe9895dad746baf4a0e8d81f2272f55fdef66cf298ac911d8791ceb1e80" + }, + { + "filename": "php-7.0.17.tar.xz", + "name": "PHP 7.0.17 (tar.xz)", + "sha256": "471c16fcdd6a5e1a37199e97bcaeea6117626229785185be7532aaa7c6ee04be" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.18/announcement.html b/data/releases/7.0/7.0.18/announcement.html new file mode 100644 index 0000000000..abfa1af456 --- /dev/null +++ b/data/releases/7.0/7.0.18/announcement.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/7.0.18/release.json b/data/releases/7.0/7.0.18/release.json new file mode 100644 index 0000000000..1fa7d01495 --- /dev/null +++ b/data/releases/7.0/7.0.18/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.18", + "date": "13 Apr 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.18.tar.bz2", + "name": "PHP 7.0.18 (tar.bz2)", + "sha256": "b20cc63d507032b39d8bb14cb64784e460b0e47997e90a8704b703bcbb233fd1" + }, + { + "filename": "php-7.0.18.tar.gz", + "name": "PHP 7.0.18 (tar.gz)", + "sha256": "e0fb336749d72e6c9cfcebb9b48497f004fa99f93b68c21cb3eb657053665e1d" + }, + { + "filename": "php-7.0.18.tar.xz", + "name": "PHP 7.0.18 (tar.xz)", + "sha256": "679cffcdf2495dee5ab89bda595e678a1096136678b3a1d08f1f57ba347c234d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.19/announcement.html b/data/releases/7.0/7.0.19/announcement.html new file mode 100644 index 0000000000..63efb2f23f --- /dev/null +++ b/data/releases/7.0/7.0.19/announcement.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/7.0.19/release.json b/data/releases/7.0/7.0.19/release.json new file mode 100644 index 0000000000..ef13c4c310 --- /dev/null +++ b/data/releases/7.0/7.0.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.19", + "date": "11 May 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.19.tar.bz2", + "name": "PHP 7.0.19 (tar.bz2)", + "sha256": "0f3ac0afc02aec22f6b1659045da9287453e9309439d0499622bc8e94a7f7d59" + }, + { + "filename": "php-7.0.19.tar.gz", + "name": "PHP 7.0.19 (tar.gz)", + "sha256": "4b4120acdbb8cbf5f7a18625c2eb5cdd2fdb4fc69a4831bc7ffdfd1ee78b1ce0" + }, + { + "filename": "php-7.0.19.tar.xz", + "name": "PHP 7.0.19 (tar.xz)", + "sha256": "640e5e3377d15a6d19adce2b94a9d876eeddabdb862d154a5e347987f4225ef6" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.2/announcement.html b/data/releases/7.0/7.0.2/announcement.html new file mode 100644 index 0000000000..9f7b0c71dd --- /dev/null +++ b/data/releases/7.0/7.0.2/announcement.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/7.0.2/release.json b/data/releases/7.0/7.0.2/release.json new file mode 100644 index 0000000000..986e2a0878 --- /dev/null +++ b/data/releases/7.0/7.0.2/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.2", + "date": "07 Jan 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.2.tar.bz2", + "name": "PHP 7.0.2 (tar.bz2)", + "sha256": "9b1b75fbd9c92c6b0003b234e550965038826d11ea1f430bf279964da9da2236" + }, + { + "filename": "php-7.0.2.tar.gz", + "name": "PHP 7.0.2 (tar.gz)", + "sha256": "040198aef3dc5f17c253c1282160aabc6a05ca0b18b3d6fc9213970363083412" + }, + { + "filename": "php-7.0.2.tar.xz", + "name": "PHP 7.0.2 (tar.xz)", + "sha256": "556121271a34c442b48e3d7fa3d3bbb4413d91897abbb92aaeced4a7df5f2ab2" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.20/announcement.html b/data/releases/7.0/7.0.20/announcement.html new file mode 100644 index 0000000000..f27d28779b --- /dev/null +++ b/data/releases/7.0/7.0.20/announcement.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/7.0.20/release.json b/data/releases/7.0/7.0.20/release.json new file mode 100644 index 0000000000..7e640e470b --- /dev/null +++ b/data/releases/7.0/7.0.20/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.20", + "date": "08 Jun 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.20.tar.bz2", + "name": "PHP 7.0.20 (tar.bz2)", + "sha256": "cdfddfe01cc615218e333e34a1c761c9ef8fdf5199b27617264a02705eda7fc3" + }, + { + "filename": "php-7.0.20.tar.gz", + "name": "PHP 7.0.20 (tar.gz)", + "sha256": "b44947f0c1926928d5c2f176506b878c32b5cd09ce3b5b52bbbecf4328ab812d" + }, + { + "filename": "php-7.0.20.tar.xz", + "name": "PHP 7.0.20 (tar.xz)", + "sha256": "31b9cf1fb83fe3cd82c2f6603a0ae81ae6abacb5286827e362d8f85e68908e0a" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.21/announcement.html b/data/releases/7.0/7.0.21/announcement.html new file mode 100644 index 0000000000..6e46b76e2a --- /dev/null +++ b/data/releases/7.0/7.0.21/announcement.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/7.0.21/release.json b/data/releases/7.0/7.0.21/release.json new file mode 100644 index 0000000000..937f2086de --- /dev/null +++ b/data/releases/7.0/7.0.21/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.21", + "date": "06 Jul 2017", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.21.tar.bz2", + "name": "PHP 7.0.21 (tar.bz2)", + "sha256": "2ba133c392de6f86aacced8c54e0adefd1c81d3840ac323b9926b8ed3dc6231f" + }, + { + "filename": "php-7.0.21.tar.gz", + "name": "PHP 7.0.21 (tar.gz)", + "sha256": "f2f05f629dd02c75834ddf033916bd5ff92a720602839d81fd8b6d90e37b6225" + }, + { + "filename": "php-7.0.21.tar.xz", + "name": "PHP 7.0.21 (tar.xz)", + "sha256": "6713fe3024365d661593235b525235045ef81f18d0043654658c9de1bcb8b9e3" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.22/announcement.html b/data/releases/7.0/7.0.22/announcement.html new file mode 100644 index 0000000000..7a47e27d25 --- /dev/null +++ b/data/releases/7.0/7.0.22/announcement.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/7.0.22/release.json b/data/releases/7.0/7.0.22/release.json new file mode 100644 index 0000000000..6fb58bccca --- /dev/null +++ b/data/releases/7.0/7.0.22/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.22", + "date": "03 Aug 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.22.tar.bz2", + "name": "PHP 7.0.22 (tar.bz2)", + "sha256": "88e0b27f69abdd12ecde81f000c5a9ea479af7218456ea7f6557edb43c6dfdde" + }, + { + "filename": "php-7.0.22.tar.gz", + "name": "PHP 7.0.22 (tar.gz)", + "sha256": "04292eaea0eeb75e9b6a36a3db8e90a3d43f939646fd9d7d1e083e5b70884383" + }, + { + "filename": "php-7.0.22.tar.xz", + "name": "PHP 7.0.22 (tar.xz)", + "sha256": "408c3fbc235ec940433bfac1f3ed4bf797f61b4a1693b9fb0b6a04b2c1832501" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.23/announcement.html b/data/releases/7.0/7.0.23/announcement.html new file mode 100644 index 0000000000..bee1800e32 --- /dev/null +++ b/data/releases/7.0/7.0.23/announcement.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/7.0.23/release.json b/data/releases/7.0/7.0.23/release.json new file mode 100644 index 0000000000..1219074774 --- /dev/null +++ b/data/releases/7.0/7.0.23/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.23", + "date": "31 Aug 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.23.tar.bz2", + "name": "PHP 7.0.23 (tar.bz2)", + "sha256": "6fe94cefc7d2c60ee2c1648b977beed756ad9cd0a7e4ea8bb8cf521d9355a09c" + }, + { + "filename": "php-7.0.23.tar.gz", + "name": "PHP 7.0.23 (tar.gz)", + "sha256": "d511089ecaf386f3ab752efba76558c03558afa6b5b3fe71d84881c76644b466" + }, + { + "filename": "php-7.0.23.tar.xz", + "name": "PHP 7.0.23 (tar.xz)", + "sha256": "8e526e3551a58e00c8055fa4a72804aa1bd3ee1c0411b25bf1504cc4992609df" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.24/announcement.html b/data/releases/7.0/7.0.24/announcement.html new file mode 100644 index 0000000000..acedc1bf53 --- /dev/null +++ b/data/releases/7.0/7.0.24/announcement.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/7.0.24/release.json b/data/releases/7.0/7.0.24/release.json new file mode 100644 index 0000000000..eecc86e57c --- /dev/null +++ b/data/releases/7.0/7.0.24/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.24", + "date": "28 Sep 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.24.tar.bz2", + "name": "PHP 7.0.24 (tar.bz2)", + "sha256": "9bf91982694f178821c0aaf03563a20494873ece6933e2eeecfd76f325bdcf19" + }, + { + "filename": "php-7.0.24.tar.gz", + "name": "PHP 7.0.24 (tar.gz)", + "sha256": "151015b578c14a4ab47d1e5894b36c85cf5655237599b805a08d106fe18a8c8e" + }, + { + "filename": "php-7.0.24.tar.xz", + "name": "PHP 7.0.24 (tar.xz)", + "sha256": "4dba7aa365193c9229f89f1975fad4c01135d29922a338ffb4a27e840d6f1c98" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.25/announcement.html b/data/releases/7.0/7.0.25/announcement.html new file mode 100644 index 0000000000..6930d77910 --- /dev/null +++ b/data/releases/7.0/7.0.25/announcement.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/7.0.25/release.json b/data/releases/7.0/7.0.25/release.json new file mode 100644 index 0000000000..fffec5727d --- /dev/null +++ b/data/releases/7.0/7.0.25/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.25", + "date": "26 Oct 2017", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.25.tar.bz2", + "name": "PHP 7.0.25 (tar.bz2)", + "sha256": "95a24d96d126a196e1550e394182b43a6460cdd2026f1a77bef01e422415cc25" + }, + { + "filename": "php-7.0.25.tar.gz", + "name": "PHP 7.0.25 (tar.gz)", + "sha256": "081b46bf588d38c636fd6cd1dab8855b6b3e171550d1e65f770f53aede594ee7" + }, + { + "filename": "php-7.0.25.tar.xz", + "name": "PHP 7.0.25 (tar.xz)", + "sha256": "5cc14bd20fb2226f6d34465662425cd100441bde9042ea1cef2e4506d6ded8cc" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.26/announcement.html b/data/releases/7.0/7.0.26/announcement.html new file mode 100644 index 0000000000..3e5ac2bd36 --- /dev/null +++ b/data/releases/7.0/7.0.26/announcement.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/7.0.26/release.json b/data/releases/7.0/7.0.26/release.json new file mode 100644 index 0000000000..3b2f70ff74 --- /dev/null +++ b/data/releases/7.0/7.0.26/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.0.26", + "date": "23 Nov 2017", + "tags": [], + "source": [ + { + "filename": "php-7.0.26.tar.bz2", + "name": "PHP 7.0.26 (tar.bz2)", + "sha256": "2590d722f7b23b6a903c5a00cf04e7ee728df79d10ae473e3a81ba41588509a7" + }, + { + "filename": "php-7.0.26.tar.gz", + "name": "PHP 7.0.26 (tar.gz)", + "sha256": "04c345f7c9e3f1cd02f275bfec893a4e0290e724073f2f3d7282a219128b537c" + }, + { + "filename": "php-7.0.26.tar.xz", + "name": "PHP 7.0.26 (tar.xz)", + "sha256": "ed5cbb4bbb0ddef8985f100bba2e94002ad22a230b5da2dccfe148915df5f199" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.27/announcement.html b/data/releases/7.0/7.0.27/announcement.html new file mode 100644 index 0000000000..65b56dee4e --- /dev/null +++ b/data/releases/7.0/7.0.27/announcement.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/7.0.27/release.json b/data/releases/7.0/7.0.27/release.json new file mode 100644 index 0000000000..8942dcd054 --- /dev/null +++ b/data/releases/7.0/7.0.27/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.27", + "date": "04 Jan 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.27.tar.bz2", + "name": "PHP 7.0.27 (tar.bz2)", + "sha256": "99fa2563bb4c4c1cde9febe87cfe97324227d7b4b8828f2e936e507127394131" + }, + { + "filename": "php-7.0.27.tar.gz", + "name": "PHP 7.0.27 (tar.gz)", + "sha256": "809c0181e970dd17c6a6cabbf64518e719c7253e7490f8e1279bc1e1fbdf7996" + }, + { + "filename": "php-7.0.27.tar.xz", + "name": "PHP 7.0.27 (tar.xz)", + "sha256": "4b2bc823e806dbf7b62fe0b92b0d14b0c6e03f88c3fc5d96278416c54ce11f6c" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.28/announcement.html b/data/releases/7.0/7.0.28/announcement.html new file mode 100644 index 0000000000..0acd4adfaf --- /dev/null +++ b/data/releases/7.0/7.0.28/announcement.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/7.0.28/release.json b/data/releases/7.0/7.0.28/release.json new file mode 100644 index 0000000000..d50a83fb12 --- /dev/null +++ b/data/releases/7.0/7.0.28/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.28", + "date": "01 Mar 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.28.tar.bz2", + "name": "PHP 7.0.28 (tar.bz2)", + "sha256": "ae5491b4613f3710e3d09e688ba3d30d3acc1112c7b96a8703663b8a95063c7f" + }, + { + "filename": "php-7.0.28.tar.gz", + "name": "PHP 7.0.28 (tar.gz)", + "sha256": "cd2fd94feb0d5809ffb9d900138643fa74e70656436e5f2595b03239dd97aa9c" + }, + { + "filename": "php-7.0.28.tar.xz", + "name": "PHP 7.0.28 (tar.xz)", + "sha256": "e738ffce2c30bc0e84be9446af86bef0a0607d321f1a3d04bbfe2402fb5f6de0" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.29/announcement.html b/data/releases/7.0/7.0.29/announcement.html new file mode 100644 index 0000000000..a7af2c9158 --- /dev/null +++ b/data/releases/7.0/7.0.29/announcement.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/7.0.29/release.json b/data/releases/7.0/7.0.29/release.json new file mode 100644 index 0000000000..31073dfb2f --- /dev/null +++ b/data/releases/7.0/7.0.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.29", + "date": "29 Mar 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.29.tar.bz2", + "name": "PHP 7.0.29 (tar.bz2)", + "sha256": "989142d5c5ff7a11431254f9c1995235bad61a3364b99c966e11e06aa10d3fbc" + }, + { + "filename": "php-7.0.29.tar.gz", + "name": "PHP 7.0.29 (tar.gz)", + "sha256": "5efe45e345f967cb20f9ff92cd514753872a65feffea1bf311c71864344bd8e8" + }, + { + "filename": "php-7.0.29.tar.xz", + "name": "PHP 7.0.29 (tar.xz)", + "sha256": "ca79d3ecc123bff4b623d4a1bbf5ad53ad39f5f2f5912fecc0ea97e95eba21cc" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.3/announcement.html b/data/releases/7.0/7.0.3/announcement.html new file mode 100644 index 0000000000..2feca8cb50 --- /dev/null +++ b/data/releases/7.0/7.0.3/announcement.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/7.0.3/release.json b/data/releases/7.0/7.0.3/release.json new file mode 100644 index 0000000000..4b4daaf61c --- /dev/null +++ b/data/releases/7.0/7.0.3/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.3", + "date": "04 Feb 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.3.tar.bz2", + "name": "PHP 7.0.3 (tar.bz2)", + "sha256": "826823d754f09c779222a99becf9c53a4dc719dba2d777aca7807c6ca68e6fc6" + }, + { + "filename": "php-7.0.3.tar.gz", + "name": "PHP 7.0.3 (tar.gz)", + "sha256": "5521df8db153aba35c90cf1a1829106b6bbdac32425216d440f9cc29f00a7c08" + }, + { + "filename": "php-7.0.3.tar.xz", + "name": "PHP 7.0.3 (tar.xz)", + "sha256": "3af2b62617a0e46214500fc3e7f4a421067224913070844d3665d6cc925a1cca" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.30/announcement.html b/data/releases/7.0/7.0.30/announcement.html new file mode 100644 index 0000000000..04ae63b882 --- /dev/null +++ b/data/releases/7.0/7.0.30/announcement.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/7.0.30/release.json b/data/releases/7.0/7.0.30/release.json new file mode 100644 index 0000000000..347e77cddc --- /dev/null +++ b/data/releases/7.0/7.0.30/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.30", + "date": "26 Apr 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.30.tar.bz2", + "name": "PHP 7.0.30 (tar.bz2)", + "sha256": "213f38400c239b8fab2f6f59d6f4d4bd463d0a75bd4edf723dd4d5fea8850b50" + }, + { + "filename": "php-7.0.30.tar.gz", + "name": "PHP 7.0.30 (tar.gz)", + "sha256": "54e7615205123b940b996300bf99c707c2317b6b78388061a204b23ab3388a26" + }, + { + "filename": "php-7.0.30.tar.xz", + "name": "PHP 7.0.30 (tar.xz)", + "sha256": "c90892fb68ab9b8476519658d3f78f6388f2609ae1309bdc2a2e1cc9f92dd686" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.31/announcement.html b/data/releases/7.0/7.0.31/announcement.html new file mode 100644 index 0000000000..e4617570e8 --- /dev/null +++ b/data/releases/7.0/7.0.31/announcement.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/7.0.31/release.json b/data/releases/7.0/7.0.31/release.json new file mode 100644 index 0000000000..912256098a --- /dev/null +++ b/data/releases/7.0/7.0.31/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.31", + "date": "19 Jul 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.31.tar.bz2", + "name": "PHP 7.0.31 (tar.bz2)", + "sha256": "7e8bd73eced6e679a179d39571e8fee6c83e51c86f43338f65c2dc88c1106b91" + }, + { + "filename": "php-7.0.31.tar.gz", + "name": "PHP 7.0.31 (tar.gz)", + "sha256": "182f36e5709837158bd4970ce57fe80735bdf79025133c00d6ad882d1c4d98dd" + }, + { + "filename": "php-7.0.31.tar.xz", + "name": "PHP 7.0.31 (tar.xz)", + "sha256": "68f57b3f4587071fb54a620cb83a1cfb3f0bd4ee071e0ce3bf7046a5f2d2f3cf" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.32/announcement.html b/data/releases/7.0/7.0.32/announcement.html new file mode 100644 index 0000000000..b3274da38f --- /dev/null +++ b/data/releases/7.0/7.0.32/announcement.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/7.0.32/release.json b/data/releases/7.0/7.0.32/release.json new file mode 100644 index 0000000000..9c771973df --- /dev/null +++ b/data/releases/7.0/7.0.32/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.32", + "date": "13 Sep 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.32.tar.bz2", + "name": "PHP 7.0.32 (tar.bz2)", + "sha256": "56e8d8cf9c08178afa8663589805f83bdb01634efd98131977038e24066492e1" + }, + { + "filename": "php-7.0.32.tar.gz", + "name": "PHP 7.0.32 (tar.gz)", + "sha256": "08d13389f611ec55f3b9164347a97e410099238a3dd85946e556a288ce366fbe" + }, + { + "filename": "php-7.0.32.tar.xz", + "name": "PHP 7.0.32 (tar.xz)", + "sha256": "ff6f62afeb32c71b3b89ecbd42950ef6c5e0c329cc6e1c58ffac47e6f1f883c4" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.33/announcement.html b/data/releases/7.0/7.0.33/announcement.html new file mode 100644 index 0000000000..7a581a3fec --- /dev/null +++ b/data/releases/7.0/7.0.33/announcement.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/7.0.33/release.json b/data/releases/7.0/7.0.33/release.json new file mode 100644 index 0000000000..615b43256a --- /dev/null +++ b/data/releases/7.0/7.0.33/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.33", + "date": "10 Jan 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.33.tar.bz2", + "name": "PHP 7.0.33 (tar.bz2)", + "sha256": "4933ea74298a1ba046b0246fe3771415c84dfb878396201b56cb5333abe86f07" + }, + { + "filename": "php-7.0.33.tar.gz", + "name": "PHP 7.0.33 (tar.gz)", + "sha256": "d71a6ecb6b13dc53fed7532a7f8f949c4044806f067502f8fb6f9facbb40452a" + }, + { + "filename": "php-7.0.33.tar.xz", + "name": "PHP 7.0.33 (tar.xz)", + "sha256": "ab8c5be6e32b1f8d032909dedaaaa4bbb1a209e519abb01a52ce3914f9a13d96" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.4/announcement.html b/data/releases/7.0/7.0.4/announcement.html new file mode 100644 index 0000000000..3d4aab6ec9 --- /dev/null +++ b/data/releases/7.0/7.0.4/announcement.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/7.0.4/release.json b/data/releases/7.0/7.0.4/release.json new file mode 100644 index 0000000000..31c8c445c9 --- /dev/null +++ b/data/releases/7.0/7.0.4/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.4", + "date": "03 Mar 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.4.tar.bz2", + "name": "PHP 7.0.4 (tar.bz2)", + "sha256": "a246c503709c189ba8e1e22ed2cb22abc27da43a997ff1b3318e181baf529dcc" + }, + { + "filename": "php-7.0.4.tar.gz", + "name": "PHP 7.0.4 (tar.gz)", + "sha256": "f6cdac2fd37da0ac0bbcee0187d74b3719c2f83973dfe883d5cde81c356fe0a8" + }, + { + "filename": "php-7.0.4.tar.xz", + "name": "PHP 7.0.4 (tar.xz)", + "sha256": "584e0e374e357a71b6e95175a2947d787453afc7f9ab7c55651c10491c4df532" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.5/announcement.html b/data/releases/7.0/7.0.5/announcement.html new file mode 100644 index 0000000000..13d68e055a --- /dev/null +++ b/data/releases/7.0/7.0.5/announcement.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/7.0.5/release.json b/data/releases/7.0/7.0.5/release.json new file mode 100644 index 0000000000..7be8d79e6d --- /dev/null +++ b/data/releases/7.0/7.0.5/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.5", + "date": "31 Mar 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.5.tar.bz2", + "name": "PHP 7.0.5 (tar.bz2)", + "sha256": "2c09af7fe64537ea795f098b9b542ead407ef83f7cdc65b3787115ccbbb51de9" + }, + { + "filename": "php-7.0.5.tar.gz", + "name": "PHP 7.0.5 (tar.gz)", + "sha256": "f9d93419031b4df663fc48f03b8a833545de8776225e46637563e2be6029908d" + }, + { + "filename": "php-7.0.5.tar.xz", + "name": "PHP 7.0.5 (tar.xz)", + "sha256": "c41f1a03c24119c0dd9b741cdb67880486e64349fc33527767f6dc28d3803abb" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.6/announcement.html b/data/releases/7.0/7.0.6/announcement.html new file mode 100644 index 0000000000..5895bc29af --- /dev/null +++ b/data/releases/7.0/7.0.6/announcement.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/7.0.6/release.json b/data/releases/7.0/7.0.6/release.json new file mode 100644 index 0000000000..e4583552df --- /dev/null +++ b/data/releases/7.0/7.0.6/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.6", + "date": "28 Apr 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.6.tar.bz2", + "name": "PHP 7.0.6 (tar.bz2)", + "sha256": "14ddf192a9965c858c1e742a61456be2f34a4db87556172c0d76f08de96329b7" + }, + { + "filename": "php-7.0.6.tar.gz", + "name": "PHP 7.0.6 (tar.gz)", + "sha256": "f6b47cb3e02530d96787ae5c7888aefbd1db6ae4164d68b88808ee6f4da94277" + }, + { + "filename": "php-7.0.6.tar.xz", + "name": "PHP 7.0.6 (tar.xz)", + "sha256": "1b237a9455e5476a425dbb9d99966bad68107747c601958cb9558a7fb49ab419" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.7/announcement.html b/data/releases/7.0/7.0.7/announcement.html new file mode 100644 index 0000000000..20aec92727 --- /dev/null +++ b/data/releases/7.0/7.0.7/announcement.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/7.0.7/release.json b/data/releases/7.0/7.0.7/release.json new file mode 100644 index 0000000000..95f9295764 --- /dev/null +++ b/data/releases/7.0/7.0.7/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.7", + "date": "26 May 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.7.tar.bz2", + "name": "PHP 7.0.7 (tar.bz2)", + "sha256": "474f2925c4782b94016e3afbb17b14ff9cc6f4fdb6f6e231b36a378bb18a3d1a" + }, + { + "filename": "php-7.0.7.tar.gz", + "name": "PHP 7.0.7 (tar.gz)", + "sha256": "66282ff4a9f88fe9607d9574e15bf335885b964245591a1740adb3f79c514a67" + }, + { + "filename": "php-7.0.7.tar.xz", + "name": "PHP 7.0.7 (tar.xz)", + "sha256": "9cc64a7459242c79c10e79d74feaf5bae3541f604966ceb600c3d2e8f5fe4794" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.8/announcement.html b/data/releases/7.0/7.0.8/announcement.html new file mode 100644 index 0000000000..efaa8d5307 --- /dev/null +++ b/data/releases/7.0/7.0.8/announcement.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/7.0.8/release.json b/data/releases/7.0/7.0.8/release.json new file mode 100644 index 0000000000..1fdd06c7ab --- /dev/null +++ b/data/releases/7.0/7.0.8/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.8", + "date": "23 Jun 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.8.tar.bz2", + "name": "PHP 7.0.8 (tar.bz2)", + "sha256": "66dc7ba388490e07b1313fe3a06b1fa822e1310585fe29f4909995f131e27c8d" + }, + { + "filename": "php-7.0.8.tar.gz", + "name": "PHP 7.0.8 (tar.gz)", + "sha256": "1f024fa6d87594b99fa312e3185c357dcffa42e07d21c726f41d1fa6f773720b" + }, + { + "filename": "php-7.0.8.tar.xz", + "name": "PHP 7.0.8 (tar.xz)", + "sha256": "0a2142c458b0846f556b16da1c927d74c101aa951bb840549abe5c58584fb394" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.0/7.0.9/announcement.html b/data/releases/7.0/7.0.9/announcement.html new file mode 100644 index 0000000000..60a8f59b06 --- /dev/null +++ b/data/releases/7.0/7.0.9/announcement.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.0/7.0.9/release.json b/data/releases/7.0/7.0.9/release.json new file mode 100644 index 0000000000..b821b6612f --- /dev/null +++ b/data/releases/7.0/7.0.9/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.0.9", + "date": "21 Jul 2016", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.0.9.tar.bz2", + "name": "PHP 7.0.9 (tar.bz2)", + "sha256": "2ee6968b5875f2f38700c58a189aad859a6a0b85fc337aa102ec2dc3652c3b7b" + }, + { + "filename": "php-7.0.9.tar.gz", + "name": "PHP 7.0.9 (tar.gz)", + "sha256": "93895a6a610c94751c890e5ee91a7f4bc0eae476b95fe30425d13f7ae88753d5" + }, + { + "filename": "php-7.0.9.tar.xz", + "name": "PHP 7.0.9 (tar.xz)", + "sha256": "970c322ba3e472cb0264b8ba9d4d92e87918da5d0cca53c4aba2a70545b8626d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.0/announcement.html b/data/releases/7.1/7.1.0/announcement.html new file mode 100644 index 0000000000..7fce872b1b --- /dev/null +++ b/data/releases/7.1/7.1.0/announcement.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/7.1.0/changes.txt b/data/releases/7.1/7.1.0/changes.txt new file mode 100644 index 0000000000..a7b51a7a4c --- /dev/null +++ b/data/releases/7.1/7.1.0/changes.txt @@ -0,0 +1,1961 @@ +- Core: + . Added nullable types. (Levi, Dmitry) + . Added DFA optimization framework based on e-SSA form. (Dmitry, Nikita) + . Added specialized opcode handlers (e.g. ZEND_ADD_LONG_NO_OVERFLOW). + (Dmitry) + . Added [] = as alternative construct to list() =. (Bob) + . Added void return type. (Andrea) + . Added support for negative string offsets in string offset syntax and + various string functions. (Francois) + . Added a form of the list() construct where keys can be specified. (Andrea) + . Implemented safe execution timeout handling, that prevents random crashes + after "Maximum execution time exceeded" error. (Dmitry) + . Implemented the RFC `Support Class Constant Visibility`. (Sean DuBois, + Reeze Xia, Dmitry) + . Implemented the RFC `Catching multiple exception types`. (Bronislaw Bialek, + Pierrick) + . Implemented logging to syslog with dynamic error levels. (Jani Ollikainen) + . Implemented FR #72614 (Support "nmake test" on building extensions by + phpize). (Yuji Uchiyama) + . Implemented RFC: Iterable. (Aaron Piotrowski) + . Implemented RFC: Closure::fromCallable (Danack) + . Implemented RFC: Replace "Missing argument" warning with "\ArgumentCountError" + exception. (Dmitry, Davey) + . Implemented RFC: Fix inconsistent behavior of $this variable. (Dmitry) + . Fixed bug #73585 (Logging of "Internal Zend error - Missing class + information" missing class name). (Laruence) + . Fixed memory leak(null coalescing operator with Spl hash). (Tyson Andre) + . Fixed bug #72736 (Slow performance when fetching large dataset with mysqli + / PDO). (Dmitry) + . Fixed bug #72482 (Ilegal write/read access caused by gdImageAALine + overflow). (cmb) + . Fixed bug #72696 (imagefilltoborder stackoverflow on truecolor images). + (cmb) + . Fixed bug #73350 (Exception::__toString() cause circular references). + (Laruence) + . Fixed bug #73329 ((Float)"Nano" == NAN). (Anatol) + . Fixed bug #73288 (Segfault in __clone > Exception.toString > __get). + (Laruence) + . Fixed for #73240 (Write out of bounds at number_format). (Stas) + . Fix pthreads detection when cross-compiling (ffontaine) + . Fixed bug #73337 (try/catch not working with two exceptions inside a same + operation). (Dmitry) + . Fixed bug #73156 (segfault on undefined function). (Dmitry) + . Fixed bug #73163 (PHP hangs if error handler throws while accessing undef + const in default value). (Nikita) + . Fixed bug #73172 (parse error: Invalid numeric literal). (Nikita, Anatol) + . Fixed bug #73181 (parse_str() without a second argument leads to crash). + (Nikita) + . Fixed bug #73025 (Heap Buffer Overflow in virtual_popen of + zend_virtual_cwd.c). (cmb) + . Fixed bug #73058 (crypt broken when salt is 'too' long). (Anatol) + . Fixed bug #72944 (Null pointer deref in zval_delref_p). (Dmitry) + . Fixed bug #72943 (assign_dim on string doesn't reset hval). (Laruence) + . Fixed bug #72598 (Reference is lost after array_slice()) (Nikita) + . Fixed bug #72703 (Out of bounds global memory read in BF_crypt triggered by + password_verify). (Anatol) + . Fixed bug #72813 (Segfault with __get returned by ref). (Laruence) + . Fixed bug #72767 (PHP Segfaults when trying to expand an infinite operator). + (Nikita) + . TypeError messages for arg_info type checks will now say "must be ... + or null" where the parameter or return type accepts null. (Andrea) + . Fixed bug #72857 (stream_socket_recvfrom read access violation). (Anatol) + . Fixed bug #72663 (Create an Unexpected Object and Don't Invoke + __wakeup() in Deserialization). (Stas) + . Fixed bug #72681 (PHP Session Data Injection Vulnerability). (Stas) + . Fixed bug #72742 (memory allocator fails to realloc small block to large + one). (Stas) + . Fixed URL rewriter. It would not rewrite '//example.com/' URL + unconditionally. URL rewrite target hosts whitelist is implemented. (Yasuo) + . Fixed bug #72641 (phpize (on Windows) ignores PHP_PREFIX). + (Yuji Uchiyama) + . Fixed bug #72683 (getmxrr broken). (Anatol) + . Fixed bug #72629 (Caught exception assignment to variables ignores + references). (Laruence) + . Fixed bug #72594 (Calling an earlier instance of an included anonymous + class fatals). (Laruence) + . Fixed bug #72581 (previous property undefined in Exception after + deserialization). (Laruence) + . Fixed bug #72543 (Different references behavior comparing to PHP 5) + (Laruence, Dmitry, Nikita) + . Fixed bug #72347 (VERIFY_RETURN type casts visible in finally). (Dmitry) + . Fixed bug #72216 (Return by reference with finally is not memory safe). + (Dmitry) + . Fixed bug #72215 (Wrong return value if var modified in finally). (Dmitry) + . Fixed bug #71818 (Memory leak when array altered in destructor). (Dmitry) + . Fixed bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes) + (Dmitry, Nikita) + . Added new constant PHP_FD_SETSIZE. (cmb) + . Added optind parameter to getopt(). (as) + . Added PHP to SAPI error severity mapping for logs. (Martin Vobruba) + . Fixed bug #71911 (Unable to set --enable-debug on building extensions by + phpize on Windows). (Yuji Uchiyama) + . Fixed bug #29368 (The destructor is called when an exception is thrown from + the constructor). (Dmitry) + . Implemented RFC: RNG Fixes. (Leigh) + . Implemented email validation as per RFC 6531. (Leo Feyer, Anatol) + . Fixed bug #72513 (Stack-based buffer overflow vulnerability in + virtual_file_ex). (Stas) + . Fixed bug #72573 (HTTP_PROXY is improperly trusted by some PHP libraries + and applications). (Stas) + . Fixed bug #72523 (dtrace issue with reflection (failed test)). (Laruence) + . Fixed bug #72508 (strange references after recursive function call and + "switch" statement). (Laruence) + . Fixed bug #72441 (Segmentation fault: RFC list_keys). (Laruence) + . Fixed bug #72395 (list() regression). (Laruence) + . Fixed bug #72373 (TypeError after Generator function w/declared return type + finishes). (Nikita) + . Fixed bug #69489 (tempnam() should raise notice if falling back to temp dir). + (Laruence, Anatol) + . Fixed UTF-8 and long path support on Windows. (Anatol) + . Fixed bug #53432 (Assignment via string index access on an empty string + converts to array). (Nikita) + . Fixed bug #62210 (Exceptions can leak temporary variables). (Dmitry, Bob) + . Fixed bug #62814 (It is possible to stiffen child class members visibility). + (Nikita) + . Fixed bug #69989 (Generators don't participate in cycle GC). (Nikita) + . Fixed bug #70228 (Memleak if return in finally block). (Dmitry) + . Fixed bug #71266 (Missing separation of properties HT in foreach etc). + (Dmitry) + . Fixed bug #71604 (Aborted Generators continue after nested finally). + (Nikita) + . Fixed bug #71572 (String offset assignment from an empty string inserts + null byte). (Francois) + . Fixed bug #71897 (ASCII 0x7F Delete control character permitted in + identifiers). (Andrea) + . Fixed bug #72188 (Nested try/finally blocks losing return value). (Dmitry) + . Fixed bug #72213 (Finally leaks on nested exceptions). (Dmitry, Nikita) + . Fixed bug #47517 (php-cgi.exe missing UAC manifest). + (maxdax15801 at users noreply github com) + . Change statement and fcall extension handlers to accept frame. (Joe) + . Number operators taking numeric strings now emit E_NOTICEs or E_WARNINGs + when given malformed numeric strings. (Andrea) + . (int), intval() where $base is 10 or unspecified, settype(), decbin(), + decoct(), dechex(), integer operators and other conversions now always + respect scientific notation in numeric strings. (Andrea) + . Raise a compile-time warning on octal escape sequence overflow. (Sara) + +- Apache2handler: + . Enable per-module logging in Apache 2.4+. (Martin Vobruba) + +- BCmath: + . Fix bug #73190 (memcpy negative parameter _bc_new_num_ex). (Stas) + +- Bz2: + . Fixed bug #72837 (integer overflow in bzdecompress caused heap + corruption). (Stas) + . Fixed bug #72613 (Inadequate error handling in bzread()). (Stas) + +- Calendar: + . Fix integer overflows (Joshua Rogers) + . Fixed bug #67976 (cal_days_month() fails for final month of the French + calendar). (cmb) + . Fixed bug #71894 (AddressSanitizer: global-buffer-overflow in + zif_cal_from_jd). (cmb) + +- CLI Server: + . Fixed bug #73360 (Unable to work in root with unicode chars). (Anatol) + . Fixed bug #71276 (Built-in webserver does not send Date header). + (see at seos fr) + +- COM: + . Fixed bug #73126 (Cannot pass parameter 1 by reference). (Anatol) + . Fixed bug #69579 (Invalid free in extension trait). (John Boehr) + . Fixed bug #72922 (COM called from PHP does not return out parameters). + (Anatol) + . Fixed bug #72569 (DOTNET/COM array parameters broke in PHP7). (Anatol) + . Fixed bug #72498 (variant_date_from_timestamp null dereference). (Anatol) + +- Curl + . Implement support for handling HTTP/2 Server Push. (Davey) + . Add curl_multi_errno(), curl_share_errno() and curl_share_strerror() + functions. (Pierrick) + . Fixed bug #72674 (Heap overflow in curl_escape). (Stas) + . Fixed bug #72541 (size_t overflow lead to heap corruption). (Stas). + . Fixed bug #71709 (curl_setopt segfault with empty CURLOPT_HTTPHEADER). + (Pierrick) + . Fixed bug #71929 (CURLINFO_CERTINFO data parsing error). (Pierrick) + +- Date: + . Fixed bug #69587 (DateInterval properties and isset). (jhdxr) + . Fixed bug #73426 (createFromFormat with 'z' format char results in + incorrect time). (Derick) + . Fixed bug #45554 (Inconsistent behavior of the u format char). (Derick) + . Fixed bug #48225 (DateTime parser doesn't set microseconds for "now"). + (Derick) + . Fixed bug #52514 (microseconds are missing in DateTime class). (Derick) + . Fixed bug #52519 (microseconds in DateInterval are missing). (Derick) + . Fixed bug #60089 (DateTime::createFromFormat() U after u nukes microtime). + (Derick) + . Fixed bug #64887 (Allow DateTime modification with subsecond items). + (Derick) + . Fixed bug #68506 (General DateTime improvments needed for microseconds to + become useful). (Derick) + . Fixed bug #73109 (timelib_meridian doesn't parse dots correctly). (Derick) + . Fixed bug #73247 (DateTime constructor does not initialise microseconds + property). (Derick) + . Fixed bug #73147 (Use After Free in PHP7 unserialize()). (Stas) + . Fixed bug #73189 (Memcpy negative size parameter php_resolve_path). (Stas) + . Fixed bug #66836 (DateTime::createFromFormat 'U' with pre 1970 dates fails + parsing). (derick) + . Invalid serialization data for a DateTime or DatePeriod object will now + throw an instance of Error from __wakeup() or __set_state() instead of + resulting in a fatal error. (Aaron Piotrowski) + . Timezone initialization failure from serialized data will now throw an + instance of Error from __wakeup() or __set_state() instead of resulting in + a fatal error. (Aaron Piotrowski) + . Export date_get_interface_ce() for extension use. (Jeremy Mikola) + . Fixed bug #63740 (strtotime seems to use both sunday and monday as start of + week). (Derick) + +- Dba: + . Fixed bug #70825 (Cannot fetch multiple values with group in ini file). + (cmb) + . Data modification functions (e.g.: dba_insert()) now throw an instance of + Error instead of triggering a catchable fatal error if the key is does not + contain exactly two elements. (Aaron Piotrowski) + +- DOM: + . Fixed bug #73150 (missing NULL check in dom_document_save_html). (Stas) + . Fixed bug #66502 (DOM document dangling reference). (Sean Heelan, cmb) + . Invalid schema or RelaxNG validation contexts will throw an instance of + Error instead of resulting in a fatal error. (Aaron Piotrowski) + . Attempting to register a node class that does not extend the appropriate + base class will now throw an instance of Error instead of resulting in a + fatal error. (Aaron Piotrowski) + . Attempting to read an invalid or write to a readonly property will throw + an instance of Error instead of resulting in a fatal error. (Aaron + Piotrowski) + +- DTrace: + . Disabled PHP call tracing by default (it makes significant overhead). + This may be enabled again using envirionment variable USE_ZEND_DTRACE=1. + (Dmitry) + +- EXIF: + . Fixed bug #72735 (Samsung picture thumb not read (zero size)). (Kalle, Remi) + . Fixed bug #72627 (Memory Leakage In exif_process_IFD_in_TIFF). (Stas) + . Fixed bug #72603 (Out of bound read in exif_process_IFD_in_MAKERNOTE). + (Stas) + . Fixed bug #72618 (NULL Pointer Dereference in exif_process_user_comment). + (Stas) + +- Filter: + . Fixed bug #72972 (Bad filter for the flags FILTER_FLAG_NO_RES_RANGE and + FILTER_FLAG_NO_PRIV_RANGE). (julien) + . Fixed bug #73054 (default option ignored when object passed to int filter). + (cmb) + . Fixed bug #71745 (FILTER_FLAG_NO_RES_RANGE does not cover whole 127.0.0.0/8 + range). (bugs dot php dot net at majkl578 dot cz) + +- FPM: + . Fixed bug #72575 (using --allow-to-run-as-root should ignore missing user). + (gooh) + +- FTP: + . Fixed bug #70195 (Cannot upload file using ftp_put to FTPES with + require_ssl_reuse). (Benedict Singer) + . Implemented FR #55651 (Option to ignore the returned FTP PASV address). + (abrender at elitehosts dot com) + +- GD: + . Fixed bug #73213 (Integer overflow in imageline() with antialiasing). (cmb) + . Fixed bug #73272 (imagescale() is not affected by, but affects + imagesetinterpolation()). (cmb) + . Fixed bug #73279 (Integer overflow in gdImageScaleBilinearPalette()). (cmb) + . Fixed bug #73280 (Stack Buffer Overflow in GD dynamicGetbuf). (cmb) + . Fixed bug #50194 (imagettftext broken on transparent background w/o + alphablending). (cmb) + . Fixed bug #73003 (Integer Overflow in gdImageWebpCtx of gd_webp.c). (trylab, + cmb) + . Fixed bug #53504 (imagettfbbox gives incorrect values for bounding box). + (Mark Plomer, cmb) + . Fixed bug #73157 (imagegd2() ignores 3rd param if 4 are given). (cmb) + . Fixed bug #73155 (imagegd2() writes wrong chunk sizes on boundaries). (cmb) + . Fixed bug #73159 (imagegd2(): unrecognized formats may result in corrupted + files). (cmb) + . Fixed bug #73161 (imagecreatefromgd2() may leak memory). (cmb) + . Fixed bug #67325 (imagetruecolortopalette: white is duplicated in palette). + (cmb) + . Fixed bug #66005 (imagecopy does not support 1bit transparency on truecolor + images). (cmb) + . Fixed bug #72913 (imagecopy() loses single-color transparency on palette + images). (cmb) + . Fixed bug #68716 (possible resource leaks in _php_image_convert()). (cmb) + . Fixed bug #72709 (imagesetstyle() causes OOB read for empty $styles). (cmb) + . Fixed bug #72697 (select_colors write out-of-bounds). (Stas) + . Fixed bug #72730 (imagegammacorrect allows arbitrary write access). (Stas) + . Fixed bug #72596 (imagetypes function won't advertise WEBP support). (cmb) + . Fixed bug #72604 (imagearc() ignores thickness for full arcs). (cmb) + . Fixed bug #70315 (500 Server Error but page is fully rendered). (cmb) + . Fixed bug #43828 (broken transparency of imagearc for truecolor in + blendingmode). (cmb) + . Fixed bug #72512 (gdImageTrueColorToPaletteBody allows arbitrary write/read + access). (Pierre) + . Fixed bug #72519 (imagegif/output out-of-bounds access). (Pierre) + . Fixed bug #72558 (Integer overflow error within _gdContributionsAlloc()). + (Pierre) + . Fixed bug #72482 (Ilegal write/read access caused by gdImageAALine + overflow). (Pierre) + . Fixed bug #72494 (imagecropauto out-of-bounds access). (Fernando, Pierre, + cmb) + . Fixed bug #72404 (imagecreatefromjpeg fails on selfie). (cmb) + . Fixed bug #43475 (Thick styled lines have scrambled patterns). (cmb) + . Fixed bug #53640 (XBM images require width to be multiple of 8). (cmb) + . Fixed bug #64641 (imagefilledpolygon doesn't draw horizontal line). (cmb) + +- Hash: + . Added SHA3 fixed mode algorithms (224, 256, 384, and 512 bit). (Sara) + . Added SHA512/256 and SHA512/224 algorithms. (Sara) + +- iconv: + . Fixed bug #72320 (iconv_substr returns false for empty strings). (cmb) + +- IMAP: + . Fixed bug #73418 (Integer Overflow in "_php_imap_mail" leads to crash). + (Anatol) + . An email address longer than 16385 bytes will throw an instance of Error + instead of resulting in a fatal error. (Aaron Piotrowski) + +- Interbase: + . Fixed bug #73512 (Fails to find firebird headers as don't use fb_config + output). (Remi) + +- Intl: + . Fixed bug #73007 (add locale length check). (Stas) + . Fixed bug #73218 (add mitigation for ICU int overflow). (Stas) + . Fixed bug #65732 (grapheme_*() is not Unicode compliant on CR LF + sequence). (cmb) + . Fixed bug #73007 (add locale length check). (Stas) + . Fixed bug #72639 (Segfault when instantiating class that extends + IntlCalendar and adds a property). (Laruence) + . Fixed bug #72658 (Locale::lookup() / locale_lookup() hangs if no match + found). (Anatol) + . Partially fixed #72506 (idn_to_ascii for UTS #46 incorrect for long domain + names). (cmb) + . Fixed bug #72533 (locale_accept_from_http out-of-bounds access). (Stas) + . Failure to call the parent constructor in a class extending Collator + before invoking the parent methods will throw an instance of Error + instead of resulting in a recoverable fatal error. (Aaron Piotrowski) + . Cloning a Transliterator object may will now throw an instance of Error + instead of resulting in a fatal error if cloning the internal + transliterator fails. (Aaron Piotrowski) + . Added IntlTimeZone::getWindowsID() and + IntlTimeZone::getIDForWindowsID(). (Sara) + . Fixed bug #69374 (IntlDateFormatter formatObject returns wrong utf8 value). + (lenhatanh86 at gmail com) + . Fixed bug #69398 (IntlDateFormatter formatObject returns wrong value when + time style is NONE). (lenhatanh86 at gmail com) + +- JSON: + . Introduced encoder struct instead of global which fixes bugs #66025 and + #73254 related to pretty print indentation. (Jakub Zelenka) + . Fixed bug #73113 (Segfault with throwing JsonSerializable). (julien) + . Implemented earlier return when json_encode fails, fixes bugs #68992 + (Stacking exceptions thrown by JsonSerializable) and #70275 (On recursion + error, json_encode can eat up all system memory). (Jakub Zelenka) + . Implemented FR #46600 ("_empty_" key in objects). (Jakub Zelenka) + . Exported JSON parser API including json_parser_method that can be used + for implementing custom logic when parsing JSON. (Jakub Zelenka) + . Escaped U+2028 and U+2029 when JSON_UNESCAPED_UNICODE is supplied as + json_encode options and added JSON_UNESCAPED_LINE_TERMINATORS to restore + the previous behaviour. (Eddie Kohler) + +- LDAP: + . Providing an unknown modification type to ldap_batch_modify() will now + throw an instance of Error instead of resulting in a fatal error. + (Aaron Piotrowski) + +- Mbstring: + . Fixed bug #73532 (Null pointer dereference in mb_eregi). (Laruence) + . Fixed bug #66964 (mb_convert_variables() cannot detect recursion) (Yasuo) + . Fixed bug #72992 (mbstring.internal_encoding doesn't inherit default_charset). + (Yasuo) + . Fixed bug #66797 (mb_substr only takes 32-bit signed integer). (cmb) + . Fixed bug #72711 (`mb_ereg` does not clear the `$regs` parameter on + failure). (ju1ius) + . Fixed bug #72691 (mb_ereg_search raises a warning if a match zero-width). + (cmb) + . Fixed bug #72693 (mb_ereg_search increments search position when a match + zero-width). (cmb) + . Fixed bug #72694 (mb_ereg_search_setpos does not accept a string's last + position). (cmb) + . Fixed bug #72710 (`mb_ereg` causes buffer overflow on regexp compile error). + (ju1ius) + . Deprecated mb_ereg_replace() eval option. (Rouven Weßling, cmb) + . Fixed bug #69151 (mb_ereg should reject ill-formed byte sequence). + (Masaki Kagaya) + . Fixed bug #72405 (mb_ereg_replace - mbc_to_code (oniguruma) - + oob read access). (Laruence) + . Fixed bug #72399 (Use-After-Free in MBString (search_re)). (Laruence) + . mb_ereg() and mb_eregi() will now throw an instance of ParseError if an + invalid PHP expression is provided and the 'e' option is used. (Aaron + Piotrowski) + +- Mcrypt: + . Deprecated ext/mcrypt. (Scott Arciszewski, cmb) + . Fixed bug #72782 (Heap Overflow due to integer overflows). (Stas) + . Fixed bug #72551, bug #72552 (In correct casting from size_t to int lead to + heap overflow in mdecrypt_generic). (Stas) + . mcrypt_encrypt() and mcrypt_decrypt() will throw an instance of Error + instead of resulting in a fatal error if mcrypt cannot be initialized. + (Aaron Piotrowski) + +- Mysqli: + . Attempting to read an invalid or write to a readonly property will throw + an instance of Error instead of resulting in a fatal error. (Aaron + Piotrowski) + +- Mysqlnd: + . Fixed bug #64526 (Add missing mysqlnd.* parameters to php.ini-*). (cmb) + . Fixed bug #71863 (Segfault when EXPLAIN with "Unknown column" error when + using MariaDB). (Andrey) + . Fixed bug #72701 (mysqli_get_host_info() wrong output). (Anatol) + +- OCI8 + . Fixed bug #71148 (Bind reference overwritten on PHP 7). (Oracle Corp.) + . Fixed invalid handle error with Implicit Result Sets. (Chris Jones) + . Fixed bug #72524 (Binding null values triggers ORA-24816 error). (Chris Jones) + +- ODBC: + . Fixed bug #73448 (odbc_errormsg returns trash, always 513 bytes). + (Anatol) + +- Opcache: + . Fixed bug #73583 (Segfaults when conditionally declared class and function + have the same name). (Laruence) + . Fixed bug #69090 (check cached files permissions) + . Fixed bug #72982 (Memory leak in zend_accel_blacklist_update_regexp() + function). (Laruence) + . Fixed bug #72949 (Typo in opcache error message). (cmb) + . Fixed bug #72762 (Infinite loop while parsing a file with opcache enabled). + (Nikita) + . Fixed bug #72590 (Opcache restart with kill_all_lockers does not work). + (Keyur) + +- OpenSSL: + . Fixed bug #73478 (openssl_pkey_new() generates wrong pub/priv keys with + Diffie Hellman). (Jakub Zelenka) + . Fixed bug #73276 (crash in openssl_random_pseudo_bytes function). (Stas) + . Fixed bug #73072 (Invalid path SNI_server_certs causes segfault). + (Jakub Zelenka) + . Fixed bug #72360 (ext/openssl build failure with OpenSSL 1.1.0). + (Jakub Zelenka) + . Bumped a minimal version to 1.0.1. (Jakub Zelenka) + . Dropped support for SSL2. (Remi) + . Implemented FR #61204 (Add elliptic curve support for OpenSSL). + (Dominic Luechinger) + . Implemented FR #67304 (Added AEAD support [CCM and GCM modes] to + openssl_encrypt and openssl_decrypt). (Jakub Zelenka) + . Implemented error storing to the global queue and cleaning up the OpenSSL + error queue (resolves bugs #68276 and #69882). (Jakub Zelenka) + +- Pcntl + . Implemented asynchronous signal handling without TICKS. (Dmitry) + . Added pcntl_signal_get_handler() that returns the current signal handler + for a particular signal. Addresses FR #72409. (David Walker) + . Add signinfo to pcntl_signal() handler args (Bishop Bettini, David Walker) + +- PCRE: + . Fixed bug #73483 (Segmentation fault on pcre_replace_callback). (Laruence) + . Fixed bug #73612 (preg_*() may leak memory). (cmb) + . Fixed bug #73392 (A use-after-free in zend allocator management). + (Laruence) + . Fixed bug #73121 (Bundled PCRE doesn't compile because JIT isn't supported + on s390). (Anatol) + . Fixed bug #72688 (preg_match missing group names in matches). (cmb) + . Downgraded to PCRE 8.38. (Anatol) + . Fixed bug #72476 (Memleak in jit_stack). (Laruence) + . Fixed bug #72463 (mail fails with invalid argument). (Anatol) + . Upgraded to PCRE 8.39. (Anatol) + +- PDO: + . Fixed bug #72788 (Invalid memory access when using persistent PDO + connection). (Keyur) + . Fixed bug #72791 (Memory leak in PDO persistent connection handling). (Keyur) + . Fixed bug #60665 (call to empty() on NULL result using PDO::FETCH_LAZY + returns false). (cmb) + +- PDO_DBlib: + . Fixed bug #72414 (Never quote values as raw binary data). (Adam Baratz) + . Allow \PDO::setAttribute() to set query timeouts. (Adam Baratz) + . Handle SQLDECIMAL/SQLNUMERIC types, which are used by later TDS versions. + (Adam Baratz) + . Add common PDO test suite. (Adam Baratz) + . Free error and message strings when cleaning up PDO instances. + (Adam Baratz) + . Fixed bug #67130 (\PDOStatement::nextRowset() should succeed when all rows + in current rowset haven't been fetched). (Peter LeBrun) + . Ignore potentially misleading dberr values. (Chris Kings-Lynne) + . Implemented stringify 'uniqueidentifier' fields. + (Alexander Zhuravlev, Adam Baratz) + +- PDO_Firebird: + . Fixed bug #73087, #61183, #71494 (Memory corruption in bindParam). + (Dorin Marcoci) + . Fixed bug #60052 (Integer returned as a 64bit integer on X86_64). (Mariuz) + +- PDO_pgsql: + . Fixed bug #70313 (PDO statement fails to throw exception). (Matteo) + . Fixed bug #72570 (Segmentation fault when binding parameters on a query + without placeholders). (Matteo) + . Implemented FR #72633 (Postgres PDO lastInsertId() should work without + specifying a sequence). (Pablo Santiago Sánchez, Matteo) + +- Phar: + . Fixed bug #72928 (Out of bound when verify signature of zip phar in + phar_parse_zipfile). (Stas) + . Fixed bug #73035 (Out of bound when verify signature of tar phar in + phar_parse_tarfile). (Stas) + +- phpdbg: + . Added generator command for inspection of currently alive generators. (Bob) + +- Postgres: + . Fixed bug #73498 (Incorrect SQL generated for pg_copy_to()). (Craig Duncan) + . Implemented FR #31021 (pg_last_notice() is needed to get all notice + messages). (Yasuo) + . Implemented FR #48532 (Allow pg_fetch_all() to index numerically). (Yasuo) + +- Readline: + . Fixed bug #72538 (readline_redisplay crashes php). (Laruence) + +- Reflection + . Undo backwards compatiblity break in ReflectionType->__toString() and + deprecate via documentation instead. (Nikita) + . Reverted prepending \ for class names. (Trowski) + . Implemented request #38992 (invoke() and invokeArgs() static method calls + should match). (cmb). + . Add ReflectionNamedType::getName(). This method should be used instead of + ReflectionType::__toString() + . Prepend \ for class names and ? for nullable types returned from + ReflectionType::__toString(). (Trowski) + . Fixed bug #72661 (ReflectionType::__toString crashes with iterable). + (Laruence) + . Fixed bug #72222 (ReflectionClass::export doesn't handle array constants). + (Nikita Nefedov) + . Failure to retrieve a reflection object or retrieve an object property + will now throw an instance of Error instead of resulting in a fatal error. + (Aaron Piotrowski) + . Fix #72209 (ReflectionProperty::getValue() doesn't fail if object doesn't match type). (Joe) + +- Session: + . Fixed bug #73273 (session_unset() empties values from all variables in which + is $_session stored). (Nikita) + . Fixed bug #73100 (session_destroy null dereference in ps_files_path_create). + (cmb) + . Fixed bug #68015 (Session does not report invalid uid for files save handler). + (Yasuo) + . Fixed bug #72940 (SID always return "name=ID", even if session + cookie exist). (Yasuo) + . Implemented session_gc() (Yasuo) + https://wiki.php.net/rfc/session-create-id + . Implemented session_create_id() (Yasuo) + https://wiki.php.net/rfc/session-gc + . Implemented RFC: Session ID without hashing. (Yasuo) + https://wiki.php.net/rfc/session-id-without-hashing + . Fixed bug #72531 (ps_files_cleanup_dir Buffer overflow). (Laruence) + . Custom session handlers that do not return strings for session IDs will + now throw an instance of Error instead of resulting in a fatal error + when a function is called that must generate a session ID. + (Aaron Piotrowski) + . An invalid setting for session.hash_function will throw an instance of + Error instead of resulting in a fatal error when a session ID is created. + (Aaron Piotrowski) + . Fixed bug #72562 (Use After Free in unserialize() with Unexpected Session + Deserialization). (Stas) + . Improved fix for bug #68063 (Empty session IDs do still start sessions). + (Yasuo) + . Fixed bug #71038 (session_start() returns TRUE on failure). + Session save handlers must return 'string' always for successful read. + i.e. Non-existing session read must return empty string. PHP 7.0 is made + not to tolerate buggy return value. (Yasuo) + . Fixed bug #71394 (session_regenerate_id() must close opened session on + errors). (Yasuo) + +- SimpleXML: + . Fixed bug #73293 (NULL pointer dereference in SimpleXMLElement::asXML()). + (Stas) + . Fixed bug #72971 (SimpleXML isset/unset do not respect namespace). (Nikita) + . Fixed bug #72957 (Null coalescing operator doesn't behave as expected with + SimpleXMLElement). (Nikita) + . Fixed bug #72588 (Using global var doesn't work while accessing SimpleXML + element). (Laruence) + . Creating an unnamed or duplicate attribute will throw an instance of Error + instead of resulting in a fatal error. (Aaron Piotrowski) + +- SNMP: + . Fixed bug #72708 (php_snmp_parse_oid integer overflow in memory + allocation). (djodjo at gmail dot com) + . Fixed bug #72479 (Use After Free Vulnerability in SNMP with GC and + unserialize()). (Stas) + +- Soap: + . Fixed bug #73538 (SoapClient::__setSoapHeaders doesn't overwrite SOAP + headers). (duncan3dc) + . Fixed bug #73452 (Segfault (Regression for #69152)). (Dmitry) + . Fixed bug #73037 (SoapServer reports Bad Request when gzipped). (Anatol) + . Fixed bug #73237 (Nested object in "any" element overwrites other fields). + (Keith Smiley) + . Fixed bug #69137 (Peer verification fails when using a proxy with SoapClient) + (Keith Smiley) + . Fixed bug #71711 (Soap Server Member variables reference bug). (Nikita) + . Fixed bug #71996 (Using references in arrays doesn't work like expected). + (Nikita) + +- SPL: + . Fixed bug #73423 (Reproducible crash with GDB backtrace). (Laruence) + . Fixed bug #72888 (Segfault on clone on splFileObject). (Laruence) + . Fixed bug #73029 (Missing type check when unserializing SplArray). (Stas) + . Fixed bug #72646 (SplFileObject::getCsvControl does not return the escape + character). (cmb) + . Fixed bug #72684 (AppendIterator segfault with closed generator). (Pierrick) + . Attempting to clone an SplDirectory object will throw an instance of Error + instead of resulting in a fatal error. (Aaron Piotrowski) + . Calling ArrayIterator::append() when iterating over an object will throw an + instance of Error instead of resulting in a fatal error. (Aaron Piotrowski) + . Fixed bug #55701 (GlobIterator throws LogicException). (Valentin VĂLCIU) + +- SQLite3: + . Update to SQLite 3.15.1. (cmb) + . Fixed bug #73530 (Unsetting result set may reset other result set). (cmb) + . Fixed bug #73333 (2147483647 is fetched as string). (cmb) + . Fixed bug #72668 (Spurious warning when exception is thrown in user defined + function). (Laruence) + . Implemented FR #72653 (SQLite should allow opening with empty filename). + (cmb) + . Fixed bug #70628 (Clearing bindings on an SQLite3 statement doesn't work). + (cmb) + . Implemented FR #71159 (Upgraded bundled SQLite lib to 3.9.2). (Laruence) + +- Standard: + . Fixed bug #73297 (HTTP stream wrapper should ignore HTTP 100 Continue). + (rowan dot collins at gmail dot com) + . Fixed bug #73303 (Scope not inherited by eval in assert()). (nikic) + . Fixed bug #73192 (parse_url return wrong hostname). (Nikita) + . Fixed bug #73203 (passing additional_parameters causes mail to fail). (cmb) + . Fixed bug #73203 (passing additional_parameters causes mail to fail). (cmb) + . Fixed bug #72920 (Accessing a private constant using constant() creates + an exception AND warning). (Laruence) + . Fixed bug #65550 (get_browser() incorrectly parses entries with "+" sign). + (cmb) + . Fixed bug #71882 (Negative ftruncate() on php://memory exhausts memory). + (cmb) + . Fixed bug #55451 (substr_compare NULL length interpreted as 0). (Lauri + Kenttä) + . Fixed bug #72278 (getimagesize returning FALSE on valid jpg). (cmb) + . Fixed bug #61967 (unset array item in array_walk_recursive cause + inconsistent array). (Nikita) + . Fixed bug #62607 (array_walk_recursive move internal pointer). (Nikita) + . Fixed bug #69068 (Exchanging array during array_walk -> memory errors). + (Nikita) + . Fixed bug #70713 (Use After Free Vulnerability in array_walk()/ + array_walk_recursive()). (Nikita) + . Fixed bug #72622 (array_walk + array_replace_recursive create references + from nothing). (Laruence) + . Fixed bug #72330 (CSV fields incorrectly split if escape char followed by + UTF chars). (cmb) + . Implemented RFC: More precise float values. (Jakub Zelenka, Yasuo) + . array_multisort now uses zend_sort instead zend_qsort. (Laruence) + . Fixed bug #72505 (readfile() mangles files larger than 2G). (Cschneid) + . assert() will throw a ParseError when evaluating a string given as the first + argument if the PHP code is invalid instead of resulting in a catchable + fatal error. (Aaron Piotrowski) + . Calling forward_static_call() outside of a class scope will now throw an + instance of Error instead of resulting in a fatal error. (Aaron Piotrowski) + . Added is_iterable() function. (Aaron Piotrowski) + . Fixed bug #72306 (Heap overflow through proc_open and $env parameter). + (Laruence) + . Fixed bug #71100 (long2ip() doesn't accept integers in strict mode). + (Laruence) + . Implemented FR #55716 (Add an option to pass a custom stream context to + get_headers()). (Ferenc) + . Additional validation for parse_url() for login/pass components). + (Ilia) (Julien) + . Implemented FR #69359 (Provide a way to fetch the current environment + variables). (Ferenc) + . unpack() function accepts an additional optional argument $offset. (Dmitry) + . Implemented #51879 stream context socket option tcp_nodelay (Joe) + +- Streams: + . Fixed bug #73586 (php_user_filter::$stream is not set to the stream the + filter is working on). (Dmitry) + . Fixed bug #72853 (stream_set_blocking doesn't work). (Laruence) + . Fixed bug #72743 (Out-of-bound read in php_stream_filter_create). + (Loianhtuan) + . Implemented FR #27814 (Multiple small packets send for HTTP request). + (vhuk) + . Fixed bug #72764 (ftps:// opendir wrapper data channel encryption fails + with IIS FTP 7.5, 8.5). (vhuk) + . Fixed bug #72810 (Missing SKIP_ONLINE_TESTS checks). (vhuk) + . Fixed bug #41021 (Problems with the ftps wrapper). (vhuk) + . Fixed bug #54431 (opendir() does not work with ftps:// wrapper). (vhuk) + . Fixed bug #72667 (opendir() with ftp:// attempts to open data stream for + non-existent directories). (vhuk) + . Fixed bug #72771 (ftps:// wrapper is vulnerable to protocol downgrade + attack). (Stas) + . Fixed bug #72534 (stream_socket_get_name crashes). (Anatol) + . Fixed bug #72439 (Stream socket with remote address leads to a segmentation + fault). (Laruence) + +- sysvshm: + . Fixed bug #72858 (shm_attach null dereference). (Anatol) + +- Tidy: + . Implemented support for libtidy 5.0.0 and above. (Michael Orlitzky, Anatol) + . Creating a tidyNode manually will now throw an instance of Error instead of + resulting in a fatal error. (Aaron Piotrowski) + +- Wddx: + . Fixed bug #73331 (NULL Pointer Dereference in WDDX Packet Deserialization + with PDORow). (Stas) + . Fixed bug #72142 (WDDX Packet Injection Vulnerability in + wddx_serialize_value()). (Taoguang Chen) + . Fixed bug #72749 (wddx_deserialize allows illegal memory access) (Stas) + . Fixed bug #72750 (wddx_deserialize null dereference). (Stas) + . Fixed bug #72790 (wddx_deserialize null dereference with invalid xml). + (Stas) + . Fixed bug #72799 (wddx_deserialize null dereference in + php_wddx_pop_element). (Stas) + . Fixed bug #72860 (wddx_deserialize use-after-free). (Stas) + . Fixed bug #73065 (Out-Of-Bounds Read in php_wddx_push_element). (Stas) + . Fixed bug #72564 (boolean always deserialized as "true") (Remi) + . A circular reference when serializing will now throw an instance of Error + instead of resulting in a fatal error. (Aaron Piotrowski) + +- XML: + . Fixed bug #72135 (malformed XML causes fault) (edgarsandi) + . Fixed bug #72714 (_xml_startElementHandler() segmentation fault). (cmb) + . Fixed bug #72085 (SEGV on unknown address zif_xml_parse). (cmb) + +- XMLRPC: + . Fixed bug #72647 (xmlrpc_encode() unexpected output after referencing + array elements). (Laruence) + . Fixed bug #72606 (heap-buffer-overflow (write) simplestring_addn + simplestring.c). (Stas) + . A circular reference when serializing will now throw an instance of Error + instead of resulting in a fatal error. (Aaron Piotrowski) + +- Zip: + . Fixed bug #68302 (impossible to compile php with zip support). (cmb) + . Fixed bug #72660 (NULL Pointer dereference in zend_virtual_cwd). + (Laruence) + . Fixed bug #72520 (Stack-based buffer overflow vulnerability in + php_stream_zip_opener). (Stas) + . ZipArchive::addGlob() will throw an instance of Error instead of resulting + in a fatal error if glob support is not available. (Aaron Piotrowski) + +10 Nov 2016 PHP 7.0.13 + +- Core: + . Fixed bug #73350 (Exception::__toString() cause circular references). + (Laruence) + . Fixed bug #73181 (parse_str() without a second argument leads to crash). + (Nikita) + . Fixed bug #66773 (Autoload with Opcache allows importing conflicting class + name to namespace). (Nikita) + . Fixed bug #66862 ((Sub-)Namespaces unexpected behaviour). (Nikita) + . Fix pthreads detection when cross-compiling (ffontaine) + . Fixed bug #73337 (try/catch not working with two exceptions inside a same + operation). (Dmitry) + . Fixed bug #73338 (Exception thrown from error handler causes valgrind + warnings (and crashes)). (Bob, Dmitry) + . Fixed bug #73329 ((Float)"Nano" == NAN). (Anatol) + +- GD: + . Fixed bug #73213 (Integer overflow in imageline() with antialiasing). (cmb) + . Fixed bug #73272 (imagescale() is not affected by, but affects + imagesetinterpolation()). (cmb) + . Fixed bug #73279 (Integer overflow in gdImageScaleBilinearPalette()). (cmb) + . Fixed bug #73280 (Stack Buffer Overflow in GD dynamicGetbuf). (cmb) + . Fixed bug #72482 (Ilegal write/read access caused by gdImageAALine + overflow). (cmb) + . Fixed bug #72696 (imagefilltoborder stackoverflow on truecolor images). + (cmb) + +- IMAP: + . Fixed bug #73418 (Integer Overflow in "_php_imap_mail" leads to crash). + (Anatol) + +- OCI8 + . Fixed bug #71148 (Bind reference overwritten on PHP 7). (Oracle Corp.) + +- phpdbg: + . Properly allow for stdin input from a file. (Bob) + . Add -s command line option / stdin command for reading script from stdin. + (Bob) + . Ignore non-executable opcodes in line mode of phpdbg_end_oplog(). (Bob) + . Fixed bug #70776 (Simple SIGINT does not have any effect with -rr). (Bob) + . Fixed bug #71234 (INI files are loaded even invoked as -n --version). (Bob) + +- Session: + . Fixed bug #73273 (session_unset() empties values from all variables in which + is $_session stored). (Nikita) + +- SOAP: + . Fixed bug #73037 (SoapServer reports Bad Request when gzipped). (Anatol) + . Fixed bug #73237 (Nested object in "any" element overwrites other fields). + (Keith Smiley) + . Fixed bug #69137 (Peer verification fails when using a proxy with SoapClient) + (Keith Smiley) + +- SQLite3: + . Fixed bug #73333 (2147483647 is fetched as string). (cmb) + +- Standard: + . Fixed bug #73203 (passing additional_parameters causes mail to fail). (cmb) + . Fixed bug #71241 (array_replace_recursive sometimes mutates its parameters). + (adsr) + +- Wddx: + . Fixed bug #73331 (NULL Pointer Dereference in WDDX Packet Deserialization + with PDORow). (Stas) + +13 Oct 2016 PHP 7.0.12 + +- Core: + . Fixed bug #73025 (Heap Buffer Overflow in virtual_popen of + zend_virtual_cwd.c). (cmb) + . Fixed bug #72703 (Out of bounds global memory read in BF_crypt triggered by + password_verify). (Anatol) + . Fixed bug #73058 (crypt broken when salt is 'too' long). (Anatol) + . Fixed bug #69579 (Invalid free in extension trait). (John Boehr) + . Fixed bug #73156 (segfault on undefined function). (Dmitry) + . Fixed bug #73163 (PHP hangs if error handler throws while accessing undef + const in default value). (Nikita) + . Fixed bug #73172 (parse error: Invalid numeric literal). (Nikita, Anatol) + . Fixed for #73240 (Write out of bounds at number_format). (Stas) + . Fixed bug #73147 (Use After Free in PHP7 unserialize()). (Stas) + . Fixed bug #73189 (Memcpy negative size parameter php_resolve_path). (Stas) + +- BCmath: + . Fix bug #73190 (memcpy negative parameter _bc_new_num_ex). (Stas) + +- COM: + . Fixed bug #73126 (Cannot pass parameter 1 by reference). (Anatol) + +- Date: + . Fixed bug #73091 (Unserializing DateInterval object may lead to __toString + invocation). (Stas) + +- DOM: + . Fixed bug #73150 (missing NULL check in dom_document_save_html). (Stas) + +- Filter: + . Fixed bug #72972 (Bad filter for the flags FILTER_FLAG_NO_RES_RANGE and + FILTER_FLAG_NO_PRIV_RANGE). (julien) + . Fixed bug #73054 (default option ignored when object passed to int filter). + (cmb) + +- GD: + . Fixed bug #67325 (imagetruecolortopalette: white is duplicated in palette). + (cmb) + . Fixed bug #50194 (imagettftext broken on transparent background w/o + alphablending). (cmb) + . Fixed bug #73003 (Integer Overflow in gdImageWebpCtx of gd_webp.c). (trylab, + cmb) + . Fixed bug #53504 (imagettfbbox gives incorrect values for bounding box). + (Mark Plomer, cmb) + . Fixed bug #73157 (imagegd2() ignores 3rd param if 4 are given). (cmb) + . Fixed bug #73155 (imagegd2() writes wrong chunk sizes on boundaries). (cmb) + . Fixed bug #73159 (imagegd2(): unrecognized formats may result in corrupted + files). (cmb) + . Fixed bug #73161 (imagecreatefromgd2() may leak memory). (cmb) + +- Intl: + . Fixed bug #73218 (add mitigation for ICU int overflow). (Stas) + +- Mbstring: + . Fixed bug #66797 (mb_substr only takes 32-bit signed integer). (cmb) + . Fixed bug #66964 (mb_convert_variables() cannot detect recursion) (Yasuo) + . Fixed bug #72992 (mbstring.internal_encoding doesn't inherit default_charset). + (Yasuo) + +- Mysqlnd: + . Fixed bug #72489 (PHP Crashes When Modifying Array Containing MySQLi Result + Data). (Nikita) + +- Opcache: + . Fixed bug #72982 (Memory leak in zend_accel_blacklist_update_regexp() + function). (Laruence) + +- OpenSSL: + . Fixed bug #73072 (Invalid path SNI_server_certs causes segfault). + (Jakub Zelenka) + . Fixed bug #73276 (crash in openssl_random_pseudo_bytes function). (Stas) + . Fixed bug #73275 (crash in openssl_encrypt function). (Stas) + +- PCRE: + . Fixed bug #73121 (Bundled PCRE doesn't compile because JIT isn't supported + on s390). (Anatol) + . Fixed bug #73174 (heap overflow in php_pcre_replace_impl). (Stas) + +- PDO_DBlib: + . Fixed bug #72414 (Never quote values as raw binary data). (Adam Baratz) + . Allow \PDO::setAttribute() to set query timeouts. (Adam Baratz) + . Handle SQLDECIMAL/SQLNUMERIC types, which are used by later TDS versions. + (Adam Baratz) + . Add common PDO test suite. (Adam Baratz) + . Free error and message strings when cleaning up PDO instances. + (Adam Baratz) + . Fixed bug #67130 (\PDOStatement::nextRowset() should succeed when all rows + in current rowset haven't been fetched). (Peter LeBrun) + . Ignore potentially misleading dberr values. (Chris Kings-Lynne) + +- phpdbg: + . Fixed bug #72996 (phpdbg_prompt.c undefined reference to DL_LOAD). (Nikita) + . Fixed next command not stopping when leaving function. (Bob) + +- Session: + . Fixed bug #68015 (Session does not report invalid uid for files save handler). + (Yasuo) + . Fixed bug #73100 (session_destroy null dereference in ps_files_path_create). + (cmb) + +- SimpleXML: + . Fixed bug #73293 (NULL pointer dereference in SimpleXMLElement::asXML()). + (Stas) + +- SOAP: + . Fixed bug #71711 (Soap Server Member variables reference bug). (Nikita) + . Fixed bug #71996 (Using references in arrays doesn't work like expected). + (Nikita) + +- SPL: + . Fixed bug #73257, #73258 (SplObjectStorage unserialize allows use of + non-object as key). (Stas) + +- SQLite3: + . Updated bundled SQLite3 to 3.14.2. (cmb) + +- Zip: + . Fixed bug #70752 (Depacking with wrong password leaves 0 length files). + (cmb) + +15 Sep 2016 PHP 7.0.11 + +- Core: + . Fixed bug #72944 (Null pointer deref in zval_delref_p). (Dmitry) + . Fixed bug #72943 (assign_dim on string doesn't reset hval). (Laruence) + . Fixed bug #72911 (Memleak in zend_binary_assign_op_obj_helper). (Laruence) + . Fixed bug #72813 (Segfault with __get returned by ref). (Laruence) + . Fixed bug #72767 (PHP Segfaults when trying to expand an infinite operator). + (Nikita) + . Fixed bug #72854 (PHP Crashes on duplicate destructor call). (Nikita) + . Fixed bug #72857 (stream_socket_recvfrom read access violation). (Anatol) + +- COM: + . Fixed bug #72922 (COM called from PHP does not return out parameters). + (Anatol) + +- Dba: + . Fixed bug #70825 (Cannot fetch multiple values with group in ini file). + (cmb) + +- FTP: + . Fixed bug #70195 (Cannot upload file using ftp_put to FTPES with + require_ssl_reuse). (Benedict Singer) + +- GD: + . Fixed bug #72709 (imagesetstyle() causes OOB read for empty $styles). (cmb) + . Fixed bug #66005 (imagecopy does not support 1bit transparency on truecolor + images). (cmb) + . Fixed bug #72913 (imagecopy() loses single-color transparency on palette + images). (cmb) + . Fixed bug #68716 (possible resource leaks in _php_image_convert()). (cmb) + +- iconv: + . Fixed bug #72320 (iconv_substr returns false for empty strings). (cmb) + +- IMAP: + . Fixed bug #72852 (imap_mail null dereference). (Anatol) + +- Intl: + . Fixed bug #65732 (grapheme_*() is not Unicode compliant on CR LF + sequence). (cmb) + . Fixed bug #73007 (add locale length check). (Stas) + +- Mysqlnd: + . Fixed bug #72293 (Heap overflow in mysqlnd related to BIT fields). (Stas) + +- OCI8 + . Fixed invalid handle error with Implicit Result Sets. (Chris Jones) + . Fixed bug #72524 (Binding null values triggers ORA-24816 error). (Chris Jones) + +- Opcache: + . Fixed bug #72949 (Typo in opcache error message). (cmb) + +- PDO: + . Fixed bug #72788 (Invalid memory access when using persistent PDO + connection). (Keyur) + . Fixed bug #72791 (Memory leak in PDO persistent connection handling). (Keyur) + . Fixed bug #60665 (call to empty() on NULL result using PDO::FETCH_LAZY + returns false). (cmb) + +- PDO_DBlib: + . Implemented stringify 'uniqueidentifier' fields. + (Alexander Zhuravlev, Adam Baratz) + +- PDO_pgsql: + . Implemented FR #72633 (Postgres PDO lastInsertId() should work without + specifying a sequence). (Pablo Santiago Sánchez, Matteo) + . Fixed bug #72759 (Regression in pgo_pgsql). (Anatol) + +- Phar: + . Fixed bug #72928 (Out of bound when verify signature of zip phar in + phar_parse_zipfile). (Stas) + . Fixed bug #73035 (Out of bound when verify signature of tar phar in + phar_parse_tarfile). (Stas) + +- Reflection: + . Fixed bug #72846 (getConstant for a array constant with constant values + returns NULL/NFC/UKNOWN). (Laruence) + +- Session: + . Fixed bug #72724 (PHP7: session-uploadprogress kills httpd). (Nikita) + . Fixed bug #72940 (SID always return "name=ID", even if session + cookie exist). (Yasuo) + +- SimpleXML: + . Fixed bug #72971 (SimpleXML isset/unset do not respect namespace). (Nikita) + . Fixed bug #72957 (Null coalescing operator doesn't behave as expected with + SimpleXMLElement). (Nikita) + +- SPL: + . Fixed bug #73029 (Missing type check when unserializing SplArray). (Stas) + +- Standard: + . Fixed bug #55451 (substr_compare NULL length interpreted as 0). (Lauri + Kenttä) + . Fixed bug #72278 (getimagesize returning FALSE on valid jpg). (cmb) + . Fixed bug #65550 (get_browser() incorrectly parses entries with "+" sign). + (cmb) + +- Streams: + . Fixed bug #72853 (stream_set_blocking doesn't work). (Laruence) + . Fixed bug #72764 (ftps:// opendir wrapper data channel encryption fails + with IIS FTP 7.5, 8.5). (vhuk) + . Fixed bug #71882 (Negative ftruncate() on php://memory exhausts memory). + (cmb) + +- SQLite3: + . Downgraded bundled SQLite to 3.8.10.2. (Anatol); + +- Sysvshm: + . Fixed bug #72858 (shm_attach null dereference). (Anatol) + +- XML: + . Fixed bug #72085 (SEGV on unknown address zif_xml_parse). (cmb) + . Fixed bug #72714 (_xml_startElementHandler() segmentation fault). (cmb) + +- Wddx: + . Fixed bug #72860 (wddx_deserialize use-after-free). (Stas) + . Fixed bug #73065 (Out-Of-Bounds Read in php_wddx_push_element). (Stas) + +- ZIP: + . Fixed bug #68302 (impossible to compile php with zip support). (cmb) + +18 Aug 2016 PHP 7.0.10 + +- Core: + . Fixed bug #72629 (Caught exception assignment to variables ignores + references). (Laruence) + . Fixed bug #72594 (Calling an earlier instance of an included anonymous + class fatals). (Laruence) + . Fixed bug #72581 (previous property undefined in Exception after + deserialization). (Laruence) + . Fixed bug #72496 (Cannot declare public method with signature incompatible + with parent private method). (Pedro Magalhães) + . Fixed bug #72024 (microtime() leaks memory). (maroszek at gmx dot net) + . Fixed bug #71911 (Unable to set --enable-debug on building extensions by + phpize on Windows). (Yuji Uchiyama) + . Fixed bug causing ClosedGeneratorException being thrown into the calling + code instead of the Generator yielding from. (Bob) + . Implemented FR #72614 (Support "nmake test" on building extensions by + phpize). (Yuji Uchiyama) + . Fixed bug #72641 (phpize (on Windows) ignores PHP_PREFIX). + (Yuji Uchiyama) + . Fixed potential segfault in object storage freeing in shutdown sequence. + (Bob) + . Fixed bug #72663 (Create an Unexpected Object and Don't Invoke + __wakeup() in Deserialization). (Stas) + . Fixed bug #72681 (PHP Session Data Injection Vulnerability). (Stas) + . Fixed bug #72683 (getmxrr broken). (Anatol) + . Fixed bug #72742 (memory allocator fails to realloc small block to large + one). (Stas) + . Fixed URL rewriter partially. It would not rewrite '//example.com/' URL + unconditionally. Only requested host(HTTP_HOST) is rewritten. (Yasuo) + +- Bz2: + . Fixed bug #72837 (integer overflow in bzdecompress caused heap + corruption). (Stas) + +- Calendar: + . Fixed bug #67976 (cal_days_month() fails for final month of the French + calendar). (cmb) + . Fixed bug #71894 (AddressSanitizer: global-buffer-overflow in + zif_cal_from_jd). (cmb) + +- COM: + . Fixed bug #72569 (DOTNET/COM array parameters broke in PHP7). (Anatol) + +- CURL: + . Fixed bug #71709 (curl_setopt segfault with empty CURLOPT_HTTPHEADER). + (Pierrick) + . Fixed bug #71929 (CURLINFO_CERTINFO data parsing error). (Pierrick) + . Fixed bug #72674 (Heap overflow in curl_escape). (Stas) + +- DOM: + . Fixed bug #66502 (DOM document dangling reference). (Sean Heelan, cmb) + +- EXIF: + . Fixed bug #72735 (Samsung picture thumb not read (zero size)). (Kalle, Remi) + . Fixed bug #72627 (Memory Leakage In exif_process_IFD_in_TIFF). (Stas) + +- Filter: + . Fixed bug #71745 (FILTER_FLAG_NO_RES_RANGE does not cover whole 127.0.0.0/8 + range). (bugs dot php dot net at majkl578 dot cz) + +- FPM: + . Fixed bug #72575 (using --allow-to-run-as-root should ignore missing user). + (gooh) + +- GD: + . Fixed bug #72596 (imagetypes function won't advertise WEBP support). (cmb) + . Fixed bug #72604 (imagearc() ignores thickness for full arcs). (cmb) + . Fixed bug #70315 (500 Server Error but page is fully rendered). (cmb) + . Fixed bug #43828 (broken transparency of imagearc for truecolor in + blendingmode). (cmb) + . Fixed bug #66555 (Always false condition in ext/gd/libgd/gdkanji.c). (cmb) + . Fixed bug #68712 (suspicious if-else statements). (cmb) + . Fixed bug #72697 (select_colors write out-of-bounds). (Stas) + . Fixed bug #72730 (imagegammacorrect allows arbitrary write access). (Stas) + +- Intl: + . Fixed bug #72639 (Segfault when instantiating class that extends + IntlCalendar and adds a property). (Laruence) + . Partially fixed #72506 (idn_to_ascii for UTS #46 incorrect for long domain + names). (cmb) + +- mbstring: + . Fixed bug #72691 (mb_ereg_search raises a warning if a match zero-width). + (cmb) + . Fixed bug #72693 (mb_ereg_search increments search position when a match + zero-width). (cmb) + . Fixed bug #72694 (mb_ereg_search_setpos does not accept a string's last + position). (cmb) + . Fixed bug #72710 (`mb_ereg` causes buffer overflow on regexp compile error). + (ju1ius) + +- Mcrypt: + . Fixed bug #72782 (Heap Overflow due to integer overflows). (Stas) + +- Opcache: + . Fixed bug #72590 (Opcache restart with kill_all_lockers does not work). + (Keyur) + +- PCRE: + . Fixed bug #72688 (preg_match missing group names in matches). (cmb) + +- PDO_pgsql: + . Fixed bug #70313 (PDO statement fails to throw exception). (Matteo) + +- Reflection: + . Fixed bug #72222 (ReflectionClass::export doesn't handle array constants). + (Nikita Nefedov) + +- SimpleXML: + . Fixed bug #72588 (Using global var doesn't work while accessing SimpleXML + element). (Laruence) + +- SNMP: + . Fixed bug #72708 (php_snmp_parse_oid integer overflow in memory + allocation). (djodjo at gmail dot com) + +- SPL: + . Fixed bug #55701 (GlobIterator throws LogicException). (Valentin VĂLCIU) + . Fixed bug #72646 (SplFileObject::getCsvControl does not return the escape + character). (cmb) + . Fixed bug #72684 (AppendIterator segfault with closed generator). (Pierrick) + +- SQLite3: + . Fixed bug #72668 (Spurious warning when exception is thrown in user defined + function). (Laruence) + . Fixed bug #72571 (SQLite3::bindValue, SQLite3::bindParam crash). (Laruence) + . Implemented FR #72653 (SQLite should allow opening with empty filename). + (cmb) + . Updated to SQLite3 3.13.0. (cmb) + +- Standard: + . Fixed bug #72622 (array_walk + array_replace_recursive create references + from nothing). (Laruence) + . Fixed bug #72152 (base64_decode $strict fails to detect null byte). + (Lauri Kenttä) + . Fixed bug #72263 (base64_decode skips a character after padding in strict + mode). (Lauri Kenttä) + . Fixed bug #72264 (base64_decode $strict fails with whitespace between + padding). (Lauri Kenttä) + . Fixed bug #72330 (CSV fields incorrectly split if escape char followed by + UTF chars). (cmb) + +- Streams: + . Fixed bug #41021 (Problems with the ftps wrapper). (vhuk) + . Fixed bug #54431 (opendir() does not work with ftps:// wrapper). (vhuk) + . Fixed bug #72667 (opendir() with ftp:// attempts to open data stream for + non-existent directories). (vhuk) + . Fixed bug #72771 (ftps:// wrapper is vulnerable to protocol downgrade + attack). (Stas) + +- XMLRPC: + . Fixed bug #72647 (xmlrpc_encode() unexpected output after referencing + array elements). (Laruence) + +- Wddx: + . Fixed bug #72564 (boolean always deserialized as "true") (Remi) + . Fixed bug #72142 (WDDX Packet Injection Vulnerability in + wddx_serialize_value()). (Taoguang Chen) + . Fixed bug #72749 (wddx_deserialize allows illegal memory access) (Stas) + . Fixed bug #72750 (wddx_deserialize null dereference). (Stas) + . Fixed bug #72790 (wddx_deserialize null dereference with invalid xml). + (Stas) + . Fixed bug #72799 (wddx_deserialize null dereference in + php_wddx_pop_element). (Stas) + +- Zip: + . Fixed bug #72660 (NULL Pointer dereference in zend_virtual_cwd). + (Laruence) + +21 Jul 2016 PHP 7.0.9 + +- Core: + . Fixed bug #72508 (strange references after recursive function call and + "switch" statement). (Laruence) + . Fixed bug #72513 (Stack-based buffer overflow vulnerability in + virtual_file_ex). (Stas) + . Fixed bug #72573 (HTTP_PROXY is improperly trusted by some PHP libraries + and applications). (Stas) + +- bz2: + . Fixed bug #72613 (Inadequate error handling in bzread()). (Stas) + +- CLI: + . Fixed bug #72484 (SCRIPT_FILENAME shows wrong path if the user specify + router.php). (Laruence) + +- COM: + . Fixed bug #72498 (variant_date_from_timestamp null dereference). (Anatol) + +- Curl: + . Fixed bug #72541 (size_t overflow lead to heap corruption). (Stas) + +- Date: + . Fixed bug #66836 (DateTime::createFromFormat 'U' with pre 1970 dates fails + parsing). (derick) + +- Exif: + . Fixed bug #72603 (Out of bound read in exif_process_IFD_in_MAKERNOTE). + (Stas) + . Fixed bug #72618 (NULL Pointer Dereference in exif_process_user_comment). + (Stas) + +- GD: + . Fixed bug #43475 (Thick styled lines have scrambled patterns). (cmb) + . Fixed bug #53640 (XBM images require width to be multiple of 8). (cmb) + . Fixed bug #64641 (imagefilledpolygon doesn't draw horizontal line). (cmb) + . Fixed bug #72512 (gdImageTrueColorToPaletteBody allows arbitrary write/read + access). (Pierre) + . Fixed bug #72519 (imagegif/output out-of-bounds access). (Pierre) + . Fixed bug #72558 (Integer overflow error within _gdContributionsAlloc()). + (Pierre) + . Fixed bug #72482 (Ilegal write/read access caused by gdImageAALine + overflow). (Pierre) + . Fixed bug #72494 (imagecropauto out-of-bounds access). (Pierre) + +- Intl: + . Fixed bug #72533 (locale_accept_from_http out-of-bounds access). (Stas) + +- Mbstring: + . Fixed bug #72405 (mb_ereg_replace - mbc_to_code (oniguruma) - + oob read access). (Laruence) + . Fixed bug #72399 (Use-After-Free in MBString (search_re)). (Laruence) + +- mcrypt: + . Fixed bug #72551, bug #72552 (In correct casting from size_t to int lead to + heap overflow in mdecrypt_generic). (Stas) + +- PDO_pgsql: + . Fixed bug #72570 (Segmentation fault when binding parameters on a query + without placeholders). (Matteo) + +- PCRE: + . Fixed bug #72476 (Memleak in jit_stack). (Laruence) + . Fixed bug #72463 (mail fails with invalid argument). (Anatol) + +- Readline: + . Fixed bug #72538 (readline_redisplay crashes php). (Laruence) + +- Standard: + . Fixed bug #72505 (readfile() mangles files larger than 2G). (Cschneid) + . Fixed bug #72306 (Heap overflow through proc_open and $env parameter). + (Laruence) + +- Session: + . Fixed bug #72531 (ps_files_cleanup_dir Buffer overflow). (Laruence) + . Fixed bug #72562 (Use After Free in unserialize() with Unexpected Session + Deserialization). (Stas) + +- SNMP: + . Fixed bug #72479 (Use After Free Vulnerability in SNMP with GC and + unserialize()). (Stas) + +- Streams: + . Fixed bug #72439 (Stream socket with remote address leads to a segmentation + fault). (Laruence) + +- XMLRPC: + . Fixed bug #72606 (heap-buffer-overflow (write) simplestring_addn + simplestring.c). (Stas) + +- Zip: + . Fixed bug #72520 (Stack-based buffer overflow vulnerability in + php_stream_zip_opener). (Stas) + +23 Jun 2016 PHP 7.0.8 + +- Core: + . Fixed bug #72218 (If host name cannot be resolved then PHP 7 crashes). + (Esminis at esminis dot lt) + . Fixed bug #72221 (segfault, past-the-end access). (Lauri Kenttä) + . Fixed bug #72268 (Integer Overflow in nl2br()). (Stas) + . Fixed bug #72275 (Integer Overflow in json_encode()/json_decode()/ + json_utf8_to_utf16()). (Stas) + . Fixed bug #72400 (Integer Overflow in addcslashes/addslashes). (Stas) + . Fixed bug #72403 (Integer Overflow in Length of String-typed ZVAL). (Stas) + +- Date: + . Fixed bug #63740 (strtotime seems to use both sunday and monday as start of + week). (Derick) + +- FPM: + . Fixed bug #72308 (fastcgi_finish_request and logging environment + variables). (Laruence) + +- GD: + . Fixed bug #66387 (Stack overflow with imagefilltoborder). (CVE-2015-8874) + (cmb) + . Fixed bug #72298 (pass2_no_dither out-of-bounds access). (Stas) + . Fixed bug #72337 (invalid dimensions can lead to crash). (Pierre) + . Fixed bug #72339 (Integer Overflow in _gd2GetHeader() resulting in heap + overflow). (CVE-2016-5766) (Pierre) + . Fixed bug #72407 (NULL Pointer Dereference at _gdScaleVert). (Stas) + . Fixed bug #72446 (Integer Overflow in gdImagePaletteToTrueColor() resulting + in heap overflow). (CVE-2016-5767) (Pierre) + +- Intl: + . Fixed bug #70484 (selectordinal doesn't work with named parameters). + (Anatol) + +- mbstring: + . Fixed bug #72402 (_php_mb_regex_ereg_replace_exec - double free). + (CVE-2016-5768) (Stas) + +- mcrypt: + . Fixed bug #72455 (Heap Overflow due to integer overflows). (CVE-2016-5769) + (Stas) + +- OpenSSL: + . Fixed bug #72140 (segfault after calling ERR_free_strings()). + (Jakub Zelenka) + +- PCRE: + . Fixed bug #72143 (preg_replace uses int instead of size_t). (Joe) + +- PDO_pgsql: + . Fixed bug #71573 (Segfault (core dumped) if paramno beyond bound). + (Laruence) + . Fixed bug #72294 (Segmentation fault/invalid pointer in connection + with pgsql_stmt_dtor). (Anatol) + +- Phar: + . Fixed bug #72321 (invalid free in phar_extract_file()). + (hji at dyntopia dot com) + +- Phpdbg: + . Fixed bug #72284 (phpdbg fatal errors with coverage). (Bob) + +- Postgres: + . Fixed bug #72195 (pg_pconnect/pg_connect cause use-after-free). (Laruence) + . Fixed bug #72197 (pg_lo_create arbitrary read). (Anatol) + +- Standard: + . Fixed bug #72369 (array_merge() produces references in PHP7). (Dmitry) + . Fixed bug #72300 (ignore_user_abort(false) has no effect). (Laruence) + . Fixed bug #72229 (Wrong reference when serialize/unserialize an object). + (Laruence) + . Fixed bug #72193 (dns_get_record returns array containing elements of + type 'unknown'). (Laruence) + . Fixed bug #72017 (range() with float step produces unexpected result). + (Thomas Punt) + +- WDDX: + . Fixed bug #72340 (Double Free Courruption in wddx_deserialize). + (CVE-2016-5772) (Stas) + +- XML: + . Fixed bug #72206 (xml_parser_create/xml_parser_free leaks mem). (Joe) + +- XMLRPC: + . Fixed bug #72155 (use-after-free caused by get_zval_xmlrpc_type). + (Joe, Laruence) + +- Zip: + . Fixed ug #72258 (ZipArchive converts filenames to unrecoverable form). + (Anatol) + . Fixed bug #72434 (ZipArchive class Use After Free Vulnerability in PHP's GC + algorithm and unserialize). (CVE-2016-5773) (Dmitry) + +26 May 2016 PHP 7.0.7 + +- Core: + . Fixed bug #72162 (use-after-free - error_reporting). (Laruence) + . Add compiler option to disable special case function calls. (Joe) + . Fixed bug #72101 (crash on complex code). (Dmitry) + . Fixed bug #72100 (implode() inserts garbage into resulting string when + joins very big integer). (Mikhail Galanin) + . Fixed bug #72057 (PHP Hangs when using custom error handler and typehint). + (Nikita Nefedov) + . Fixed bug #72038 (Function calls with values to a by-ref parameter don't + always throw a notice). (Bob) + . Fixed bug #71737 (Memory leak in closure with parameter named $this). + (Nikita) + . Fixed bug #72059 (?? is not allowed on constant expressions). (Bob, Marcio) + . Fixed bug #72159 (Imported Class Overrides Local Class Name). (Nikita) + +- Curl: + . Fixed bug #68658 (Define CURLE_SSL_CACERT_BADFILE). (Pierrick) + +- DBA: + . Fixed bug #72157 (use-after-free caused by dba_open). (Shm, Laruence) + +- GD: + . Fixed bug #72227 (imagescale out-of-bounds read). (Stas) + +- Intl: + . Fixed bug #64524 (Add intl.use_exceptions to php.ini-*). (Anatol) + . Fixed bug #72241 (get_icu_value_internal out-of-bounds read). (Stas) + +- JSON: + . Fixed bug #72069 (Behavior \JsonSerializable different from json_encode). + (Laruence) + +- Mbstring: + . Fixed bug #72164 (Null Pointer Dereference - mb_ereg_replace). (Laruence) + +- OCI8: + . Fixed bug #71600 (oci_fetch_all segfaults when selecting more than eight + columns). (Tian Yang) + +- Opcache: + . Fixed bug #72014 (Including a file with anonymous classes multiple times + leads to fatal error). (Laruence) + +- OpenSSL: + . Fixed bug #72165 (Null pointer dereference - openssl_csr_new). (Anatol) + +- PCNTL: + . Fixed bug #72154 (pcntl_wait/pcntl_waitpid array internal structure + overwrite). (Laruence) + +- POSIX: + . Fixed bug #72133 (php_posix_group_to_array crashes if gr_passwd is NULL). + (esminis at esminis dot lt) + +- Postgres: + . Fixed bug #72028 (pg_query_params(): NULL converts to empty string). + (Laruence) + . Fixed bug #71062 (pg_convert() doesn't accept ISO 8601 for datatype + timestamp). (denver at timothy dot io) + . Fixed bug #72151 (mysqli_fetch_object changed behaviour). (Anatol) + +- Reflection: + . Fixed bug #72174 (ReflectionProperty#getValue() causes __isset call). + (Nikita) + +- Session: + . Fixed bug #71972 (Cyclic references causing session_start(): Failed to + decode session object). (Laruence) + +- Sockets: + . Added socket_export_stream() function for getting a stream compatible + resource from a socket resource. (Chris Wright, Bob) + +- SPL: + . Fixed bug #72051 (The reference in CallbackFilterIterator doesn't work as + expected). (Laruence) + +- SQLite3: + . Fixed bug #68849 (bindValue is not using the right data type). (Anatol) + +- Standard: + . Fixed bug #72075 (Referencing socket resources breaks stream_select). + (Laruence) + . Fixed bug #72031 (array_column() against an array of objects discards all + values matching null). (Nikita) + +28 Apr 2016 PHP 7.0.6 + +- Core: + . Fixed bug #71930 (_zval_dtor_func: Assertion `(arr)->gc.refcount <= 1' + failed). (Laruence) + . Fixed bug #71922 (Crash on assert(new class{})). (Nikita) + . Fixed bug #71914 (Reference is lost in "switch"). (Laruence) + . Fixed bug #71871 (Interfaces allow final and abstract functions). (Nikita) + . Fixed Bug #71859 (zend_objects_store_call_destructors operates on realloced + memory, crashing). (Laruence) + . Fixed bug #71841 (EG(error_zval) is not handled well). (Laruence) + . Fixed bug #71750 (Multiple Heap Overflows in php_raw_url_encode/ + php_url_encode). (Stas) + . Fixed bug #71731 (Null coalescing operator and ArrayAccess). (Nikita) + . Fixed bug #71609 (Segmentation fault on ZTS with gethostbyname). (krakjoe) + . Fixed bug #71414 (Inheritance, traits and interfaces). (krakjoe) + . Fixed bug #71359 (Null coalescing operator and magic). (krakjoe) + . Fixed bug #71334 (Cannot access array keys while uksort()). (Nikita) + . Fixed bug #69659 (ArrayAccess, isset() and the offsetExists method). + (Nikita) + . Fixed bug #69537 (__debugInfo with empty string for key gives error). + (krakjoe) + . Fixed bug #62059 (ArrayObject and isset are not friends). (Nikita) + . Fixed bug #71980 (Decorated/Nested Generator is Uncloseable in Finally). + (Nikita) + +- BCmath: + . Fixed bug #72093 (bcpowmod accepts negative scale and corrupts + _one_ definition). (Stas) + +- Curl: + . Fixed bug #71831 (CURLOPT_NOPROXY applied as long instead of string). + (Michael Sierks) + +- Date: + . Fixed bug #71889 (DateInterval::format Segmentation fault). (Thomas Punt) + +- EXIF: + . Fixed bug #72094 (Out of bounds heap read access in exif header processing). (Stas) + +- GD: + . Fixed bug #71912 (libgd: signedness vulnerability). (CVE-2016-3074) (Stas) + +- Intl: + . Fixed bug #71516 (IntlDateFormatter looses locale if pattern is set via + constructor). (Anatol) + . Fixed bug #70455 (Missing constant: IntlChar::NO_NUMERIC_VALUE). (Anatol) + . Fixed bug #70451, #70452 (Inconsistencies in return values of IntlChar + methods). (Daniel Persson) + . Fixed bug #68893 (Stackoverflow in datefmt_create). (Anatol) + . Fixed bug #66289 (Locale::lookup incorrectly returns en or en_US if locale + is empty). (Anatol) + . Fixed bug #70484 (selectordinal doesn't work with named parameters). + (Anatol) + . Fixed bug #72061 (Out-of-bounds reads in zif_grapheme_stripos with negative + offset). (Stas) + +- ODBC: + . Fixed bug #63171 (Script hangs after max_execution_time). (Remi) + +- Opcache: + . Fixed bug #71843 (null ptr deref ZEND_RETURN_SPEC_CONST_HANDLER). + (Laruence) + +- PDO: + . Fixed bug #52098 (Own PDOStatement implementation ignore __call()). + (Daniel kalaspuffar, Julien) + . Fixed bug #71447 (Quotes inside comments not properly handled). (Matteo) + +- PDO_DBlib: + . Fixed bug #71943 (dblib_handle_quoter needs to allocate an extra byte). + (Adam Baratz) + . Add DBLIB-specific attributes for controlling timeouts. (Adam Baratz) + +- PDO_pgsql: + . Fixed bug #62498 (pdo_pgsql inefficient when getColumnMeta() is used). + (Joseph Bylund) + +- Postgres: + . Fixed bug #71820 (pg_fetch_object binds parameters before call + constructor). (Anatol) + . Fixed bug #71998 (Function pg_insert does not insert when column + type = inet). (Anatol) + +- SOAP: + . Fixed bug #71986 (Nested foreach assign-by-reference creates broken + variables). (Laruence) + +- SPL: + . Fixed bug #71838 (Deserializing serialized SPLObjectStorage-Object can't + access properties in PHP). (Nikita) + . Fixed bug #71735 (Double-free in SplDoublyLinkedList::offsetSet). (Stas) + . Fixed bug #67582 (Cloned SplObjectStorage with overwritten getHash fails + offsetExists()). (Nikita) + . Fixed bug #52339 (SPL autoloader breaks class_exists()). (Nikita) + +- Standard: + . Fixed bug #71995 (Returning the same var twice from __sleep() produces + broken serialized data). (Laruence) + . Fixed bug #71940 (Unserialize crushes on restore object reference). + (Laruence) + . Fixed bug #71969 (str_replace returns an incorrect resulting array after + a foreach by reference). (Laruence) + . Fixed bug #71891 (header_register_callback() and + register_shutdown_function()). (Laruence) + . Fixed bug #71884 (Null pointer deref (segfault) in + stream_context_get_default). (Laruence) + . Fixed bug #71840 (Unserialize accepts wrongly data). (Ryat, Laruence) + . Fixed bug #71837 (Wrong arrays behaviour). (Laruence) + . Fixed bug #71827 (substr_replace bug, string length). (krakjoe) + . Fixed bug #67512 (php_crypt() crashes if crypt_r() does not exist or + _REENTRANT is not defined). (Nikita) + . Fixed bug #72116 (array_fill optimization breaks implementation). (Bob) + +- XML: + . Fixed bug #72099 (xml_parse_into_struct segmentation fault). (Stas) + +- Zip: + . Fixed bug #71923 (integer overflow in ZipArchive::getFrom*). + (CVE-2016-3078) (Stas) + +31 Mar 2016 PHP 7.0.5 + +- Core: + . Huge pages disabled by default. (Rasmus) + . Added ability to enable huge pages in Zend Memory Manager through + the environment variable USE_ZEND_ALLOC_HUGE_PAGES=1. (Dmitry) + . Fixed bug #71756 (Call-by-reference widens scope to uninvolved functions + when used in switch). (Laruence) + . Fixed bug #71729 (Possible crash in zend_bin_strtod, zend_oct_strtod, + zend_hex_strtod). (Laruence) + . Fixed bug #71695 (Global variables are reserved before execution). + (Laruence) + . Fixed bug #71629 (Out-of-bounds access in php_url_decode in context + php_stream_url_wrap_rfc2397). (mt at debian dot org) + . Fixed bug #71622 (Strings used in pass-as-reference cannot be used to + invoke C::$callable()). (Bob) + . Fixed bug #71596 (Segmentation fault on ZTS with date function + (setlocale)). (Anatol) + . Fixed bug #71535 (Integer overflow in zend_mm_alloc_heap()). (Dmitry) + . Fixed bug #71470 (Leaked 1 hashtable iterators). (Nikita) + . Fixed bug #71575 (ISO C does not allow extra ‘;’ outside of a function). + (asgrim) + . Fixed bug #71724 (yield from does not count EOLs). (Nikita) + . Fixed bug #71767 (ReflectionMethod::getDocComment returns the wrong + comment). (Grigorii Sokolik) + . Fixed bug #71806 (php_strip_whitespace() fails on some numerical values). + (Nikita) + . Fixed bug #71624 (`php -R` (PHP_MODE_PROCESS_STDIN) is broken). + (Sean DuBois) + +- CLI Server: + . Fixed bug #69953 (Support MKCALENDAR request method). (Christoph) + +- Curl: + . Fixed bug #71694 (Support constant CURLM_ADDED_ALREADY). (mpyw) + +- Date: + . Fixed bug #71635 (DatePeriod::getEndDate segfault). (Thomas Punt) + +- Fileinfo: + . Fixed bug #71527 (Buffer over-write in finfo_open with malformed magic + file). (CVE-2015-8865) (Anatol) + +- libxml: + . Fixed bug #71536 (Access Violation crashes php-cgi.exe). (Anatol) + +- mbstring: + . Fixed bug #71906 (AddressSanitizer: negative-size-param (-1) in + mbfl_strcut). (CVE-2016-4073) (Stas) + +- ODBC: + . Fixed bug #47803, #69526 (Executing prepared statements is succesfull only + for the first two statements). (einavitamar at gmail dot com, Anatol) + +- PCRE: + . Fixed bug #71659 (segmentation fault in pcre running twig tests). + (nish dot aravamudan at canonical dot com) + +- PDO_DBlib: + . Fixed bug #54648 (PDO::MSSQL forces format of datetime fields). + (steven dot lambeth at gmx dot de, Anatol) + +- Phar: + . Fixed bug #71625 (Crash in php7.dll with bad phar filename). (Anatol) + . Fixed bug #71317 (PharData fails to open specific file). (Jos Elstgeest) + . Fixed bug #71860 (Invalid memory write in phar on filename with \0 in + name). (CVE-2016-4072) (Stas) + +- phpdbg: + . Fixed crash when advancing (except step) inside an internal function. (Bob) + +- Session: + . Fixed bug #71683 (Null pointer dereference in zend_hash_str_find_bucket). + (Yasuo) + +- SNMP: + . Fixed bug #71704 (php_snmp_error() Format String Vulnerability). + (CVE-2016-4071) (andrew at jmpesp dot org) + +- SPL: + . Fixed bug #71617 (private properties lost when unserializing ArrayObject). + (Nikita) + +- Standard: + . Fixed bug #71660 (array_column behaves incorrectly after foreach by + reference). (Laruence) + . Fixed bug #71798 (Integer Overflow in php_raw_url_encode). (CVE-2016-4070) + (taoguangchen at icloud dot com, Stas) + +- Zip: + . Update bundled libzip to 1.1.2. (Remi, Anatol) + +03 Mar 2016 PHP 7.0.4 + +- Core: + . Fixed bug (Low probability segfault in zend_arena). (Laruence) + . Fixed bug #71441 (Typehinted Generator with return in try/finally crashes). + (Bob) + . Fixed bug #71442 (forward_static_call crash). (Laruence) + . Fixed bug #71443 (Segfault using built-in webserver with intl using + symfony). (Laruence) + . Fixed bug #71449 (An integer overflow bug in php_implode()). (Stas) + . Fixed bug #71450 (An integer overflow bug in php_str_to_str_ex()). (Stas) + . Fixed bug #71474 (Crash because of VM stack corruption on Magento2). + (Dmitry) + . Fixed bug #71485 (Return typehint on internal func causes Fatal error + when it throws exception). (Laruence) + . Fixed bug #71529 (Variable references on array elements don't work when + using count). (Nikita) + . Fixed bug #71601 (finally block not executed after yield from). (Bob) + . Fixed bug #71637 (Multiple Heap Overflow due to integer overflows in + xml/filter_url/addcslashes). (CVE-2016-4344, CVE-2016-4345, CVE-2016-4346) + (Stas) + +- CLI server: + . Fixed bug #71559 (Built-in HTTP server, we can download file in web by bug). + (Johannes, Anatol) + +- CURL: + . Fixed bug #71523 (Copied handle with new option CURLOPT_HTTPHEADER crashes + while curl_multi_exec). (Laruence) + . Fixed memory leak in curl_getinfo(). (Leigh) + +- Date: + . Fixed bug #71525 (Calls to date_modify will mutate timelib_rel_time, + causing date_date_set issues). (Sean DuBois) + +- Fileinfo: + . Fixed bug #71434 (finfo throws notice for specific python file). (Laruence) + +- FPM: + . Fixed bug #62172 (FPM not working with Apache httpd 2.4 balancer/fcgi + setup). (Matt Haught, Remi) + . Fixed bug #71269 (php-fpm dumped core). (Mickaël) + +- Opcache: + . Fixed bug #71584 (Possible use-after-free of ZCG(cwd) in Zend Opcache). + (Yussuf Khalil) + +- PCRE: + . Fixed bug #71537 (PCRE segfault from Opcache). (Laruence) + +- phpdbg: + . Fixed inherited functions from unspecified files being included in + phpdbg_get_executable(). (Bob) + +- SOAP: + . Fixed bug #71610 (Type Confusion Vulnerability - SOAP / + make_http_soap_request()). (CVE-2016-3185) (Stas) + +- Standard: + . Fixed bug #71603 (compact() maintains references in php7). (Laruence) + . Fixed bug #70720 (strip_tags improper php code parsing). (Julien) + +- XMLRPC: + . Fixed bug #71501 (xmlrpc_encode_request ignores encoding option). (Hieu Le) + +- Zip: + . Fixed bug #71561 (NULL pointer dereference in Zip::ExtractTo). (Laruence) + +04 Feb 2016 PHP 7.0.3 + +- Core: + . Added support for new HTTP 451 code. (Julien) + . Fixed bug #71039 (exec functions ignore length but look for NULL + termination). (Anatol) + . Fixed bug #71089 (No check to duplicate zend_extension). (Remi) + . Fixed bug #71201 (round() segfault on 64-bit builds). (Anatol) + . Fixed bug #71221 (Null pointer deref (segfault) in get_defined_vars via + ob_start). (hugh at allthethings dot co dot nz) + . Fixed bug #71248 (Wrong interface is enforced). (Dmitry) + . Fixed bug #71273 (A wrong ext directory setup in php.ini leads to crash). + (Anatol) + . Fixed Bug #71275 (Bad method called on cloning an object having a trait). + (Bob) + . Fixed bug #71297 (Memory leak with consecutive yield from). (Bob) + . Fixed bug #71300 (Segfault in zend_fetch_string_offset). (Laruence) + . Fixed bug #71314 (var_export(INF) prints INF.0). (Andrea) + . Fixed bug #71323 (Output of stream_get_meta_data can be falsified by its + input). (Leo Gaspard) + . Fixed bug #71336 (Wrong is_ref on properties as exposed via + get_object_vars()). (Laruence) + . Fixed bug #71459 (Integer overflow in iptcembed()). (Stas) + +- Apache2handler: + . Fix >2G Content-Length headers in apache2handler. (Adam Harvey) + +- CURL: + . Fixed bug #71227 (Can't compile php_curl statically). (Anatol) + . Fixed bug #71225 (curl_setopt() fails to set CURLOPT_POSTFIELDS with + reference to CURLFile). (Laruence) + +- GD: + . Improved fix for bug #70976. (Remi) + +- Interbase: + . Fixed Bug #71305 (Crash when optional resource is omitted). + (Laruence, Anatol) + +- LDAP: + . Fixed bug #71249 (ldap_mod_replace/ldap_mod_add store value as string + "Array"). (Laruence) + +- mbstring: + . Fixed bug #71397 (mb_send_mail segmentation fault). (Andrea, Yasuo) + +- OpenSSL: + . Fixed bug #71475 (openssl_seal() uninitialized memory usage). (Stas) + +- PCRE: + . Upgraded pcrelib to 8.38. (CVE-2015-8383, CVE-2015-8386, CVE-2015-8387, + CVE-2015-8389, CVE-2015-8390, CVE-2015-8391, CVE-2015-8393, CVE-2015-8394) + +- Phar: + . Fixed bug #71354 (Heap corruption in tar/zip/phar parser). (CVE-2016-4342) + (Stas) + . Fixed bug #71331 (Uninitialized pointer in phar_make_dirstream()). + (CVE-2016-4343) (Stas) + . Fixed bug #71391 (NULL Pointer Dereference in phar_tar_setupmetadata()). + (Stas) + . Fixed bug #71488 (Stack overflow when decompressing tar archives). + (CVE-2016-2554) (Stas) + +- SOAP: + . Fixed bug #70979 (crash with bad soap request). (Anatol) + +- SPL: + . Fixed bug #71204 (segfault if clean spl_autoload_funcs while autoloading). + (Laruence) + . Fixed bug #71202 (Autoload function registered by another not activated + immediately). (Laruence) + . Fixed bug #71311 (Use-after-free vulnerability in SPL(ArrayObject, + unserialize)). (Sean Heelan) + . Fixed bug #71313 (Use-after-free vulnerability in SPL(SplObjectStorage, + unserialize)). (Sean Heelan) + +- Standard: + . Fixed bug #71287 (Error message contains hexadecimal instead of decimal + number). (Laruence) + . Fixed bug #71264 (file_put_contents() returns unexpected value when + filesystem runs full). (Laruence) + . Fixed bug #71245 (file_get_contents() ignores "header" context option if + it's a reference). (Laruence) + . Fixed bug #71220 (Null pointer deref (segfault) in compact via ob_start). + (hugh at allthethings dot co dot nz) + . Fixed bug #71190 (substr_replace converts integers in original $search + array to strings). (Laruence) + . Fixed bug #71188 (str_replace converts integers in original $search array + to strings). (Laruence) + . Fixed bug #71132, #71197 (range() segfaults). (Thomas Punt) + +- WDDX: + . Fixed bug #71335 (Type Confusion in WDDX Packet Deserialization). (Stas) + +07 Jan 2016 PHP 7.0.2 + +- Core: + . Fixed bug #71165 (-DGC_BENCH=1 doesn't work on PHP7). + (y dot uchiyama dot 1015 at gmail dot com) + . Fixed bug #71163 (Segmentation Fault: cleanup_unfinished_calls). (Laruence) + . Fixed bug #71109 (ZEND_MOD_CONFLICTS("xdebug") doesn't work). (Laruence) + . Fixed bug #71092 (Segmentation fault with return type hinting). (Laruence) + . Fixed bug memleak in header_register_callback. (Laruence) + . Fixed bug #71067 (Local object in class method stays in memory for each + call). (Laruence) + . Fixed bug #66909 (configure fails utf8_to_mutf7 test). (Michael Orlitzky) + . Fixed bug #70781 (Extension tests fail on dynamic ext dependency). + (Francois Laupretre) + . Fixed bug #71089 (No check to duplicate zend_extension). (Remi) + . Fixed bug #71086 (Invalid numeric literal parse error within + highlight_string() function). (Nikita) + . Fixed bug #71154 (Incorrect HT iterator invalidation causes iterator reuse). + (Nikita) + . Fixed bug #52355 (Negating zero does not produce negative zero). (Andrea) + . Fixed bug #66179 (var_export() exports float as integer). (Andrea) + . Fixed bug #70804 (Unary add on negative zero produces positive zero). + (Andrea) + +- CURL: + . Fixed bug #71144 (Sementation fault when using cURL with ZTS). + (Michael Maroszek, Laruence) + +- DBA: + . Fixed key leak with invalid resource. (Laruence) + +- Filter: + . Fixed bug #71063 (filter_input(INPUT_ENV, ..) does not work). (Reeze Xia) + +- FPM: + . Fixed bug #70755 (fpm_log.c memory leak and buffer overflow). (Stas) + +- FTP: + . Implemented FR #55651 (Option to ignore the returned FTP PASV address). + (abrender at elitehosts dot com) + +- GD: + . Fixed bug #70976 (Memory Read via gdImageRotateInterpolated Array Index + Out of Bounds). (CVE-2016-1903) (emmanuel dot law at gmail dot com) + +- Mbstring: + . Fixed bug #71066 (mb_send_mail: Program terminated with signal SIGSEGV, + Segmentation fault). (Laruence) + +- Opcache: + . Fixed bug #71127 (Define in auto_prepend_file is overwrite). (Laruence) + +- PCRE: + . Fixed bug #71178 (preg_replace with arrays creates [0] in replace array + if not already set). (Laruence) + +- Readline: + . Fixed bug #71094 (readline_completion_function corrupts static array on + second TAB). (Nikita) + +- Session: + . Fixed bug #71122 (Session GC may not remove obsolete session data). (Yasuo) + +- SPL: + . Fixed bug #71077 (ReflectionMethod for ArrayObject constructor returns + wrong number of parameters). (Laruence) + . Fixed bug #71153 (Performance Degradation in ArrayIterator with large + arrays). (Nikita) + +- Standard: + . Fixed bug #71270 (Heap BufferOver Flow in escapeshell functions). + (CVE-2016-1904) (emmanuel dot law at gmail dot com) + +- WDDX: + . Fixed bug #70661 (Use After Free Vulnerability in WDDX Packet + Deserialization). (taoguangchen at icloud dot com) + . Fixed bug #70741 (Session WDDX Packet Deserialization Type Confusion + Vulnerability). (taoguangchen at icloud dot com) + +- XMLRPC: + . Fixed bug #70728 (Type Confusion Vulnerability in PHP_to_XMLRPC_worker). + (Julien) diff --git a/data/releases/7.1/7.1.0/release.json b/data/releases/7.1/7.1.0/release.json new file mode 100644 index 0000000000..e0a4a22b5a --- /dev/null +++ b/data/releases/7.1/7.1.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.0", + "date": "01 Dec 2016", + "tags": [], + "source": [ + { + "filename": "php-7.1.0.tar.bz2", + "name": "PHP 7.1.0 (tar.bz2)", + "sha256": "68bcfd7deed5b3474d81dec9f74d122058327e2bed0ac25bbc9ec70995228e61" + }, + { + "filename": "php-7.1.0.tar.gz", + "name": "PHP 7.1.0 (tar.gz)", + "sha256": "9e84c5b13005c56374730edf534fe216f6a2e63792a9703d4b894e770bbccbae" + }, + { + "filename": "php-7.1.0.tar.xz", + "name": "PHP 7.1.0 (tar.xz)", + "sha256": "a810b3f29c21407c24caa88f50649320d20ba6892ae1923132598b8a0ca145b6" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.1/announcement.html b/data/releases/7.1/7.1.1/announcement.html new file mode 100644 index 0000000000..9af18e4a9e --- /dev/null +++ b/data/releases/7.1/7.1.1/announcement.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/7.1.1/changes.txt b/data/releases/7.1/7.1.1/changes.txt new file mode 100644 index 0000000000..1cac0fac53 --- /dev/null +++ b/data/releases/7.1/7.1.1/changes.txt @@ -0,0 +1,75 @@ +- Core: + . Fixed bug #73792 (invalid foreach loop hangs script). (Dmitry) + . Fixed bug #73686 (Adding settype()ed values to ArrayObject results in + references). (Nikita, Laruence) + . Fixed bug #73663 ("Invalid opcode 65/16/8" occurs with a variable created + with list()). (Laruence) + . Fixed bug #73727 (ZEND_MM_BITSET_LEN is "undefined symbol" in + zend_bitset.h). (Nikita) + . Fixed bug #73753 (unserialized array pointer not advancing). (David Walker) + . Fixed bug #73783 (SIG_IGN doesn't work when Zend Signals is enabled). + (David Walker) + +- CLI: + . Fixed bug #72555 (CLI output(japanese) on Windows). (Anatol) + +- COM: + . Fixed bug #73679 (DOTNET read access violation using invalid codepage). + (Anatol) + +- DOM: + . Fixed bug #67474 (getElementsByTagNameNS filter on default ns). (aboks) + +- Mbstring: + . Fixed bug #73646 (mb_ereg_search_init null pointer dereference). + (Laruence) + +- Mysqli: + . Fixed bug #73462 (Persistent connections don't set $connect_errno). + (darkain) + +- Mysqlnd: + . Optimized handling of BIT fields - less memory copies and lower memory + usage. (Andrey) + . Fixed bug #73800 (sporadic segfault with MYSQLI_OPT_INT_AND_FLOAT_NATIVE). + (vanviegen) + +- Opcache: + . Fixed bug #73789 (Strange behavior of class constants in switch/case block). + (Laruence) + . Fixed bug #73746 (Method that returns string returns UNKNOWN:0 instead). + (Laruence) + . Fixed bug #73654 (Segmentation fault in zend_call_function). (Nikita) + . Fixed bug #73668 ("SIGFPE Arithmetic exception" in opcache when divide by + minus 1). (Nikita) + . Fixed bug #73847 (Recursion when a variable is redefined as array). (Nikita) + +- PDO_Firebird: + . Fixed bug #72931 (PDO_FIREBIRD with Firebird 3.0 not work on returning + statement). (Dorin Marcoci) + +- phpdbg: + . Fixed bug #73794 (Crash (out of memory) when using run and # command + separator). (Bob) + . Fixed bug #73704 (phpdbg shows the wrong line in files with shebang). (Bob) + +- SQLite3: + . Reverted fix for bug #73530 (Unsetting result set may reset other result + set). (cmb) + +- Standard: + . Fixed bug #73594 (dns_get_record does not populate $additional out + parameter). (Bruce Weirdan) + . Fixed bug #70213 (Unserialize context shared on double class lookup). + (Taoguang Chen) + . Fixed bug #73154 (serialize object with __sleep function crash). (Nikita) + . Fixed bug #70490 (get_browser function is very slow). (Nikita) + . Fixed bug #73265 (Loading browscap.ini at startup causes high memory usage). + (Nikita) + . Add subject to mail log. (tomsommer) + . Fixed bug #31875 (get_defined_functions additional param to exclude + disabled functions). (willianveiga) + +- Zlib + . Fixed bug #73373 (deflate_add does not verify that output was not truncated). + (Matt Bonneau) diff --git a/data/releases/7.1/7.1.1/release.json b/data/releases/7.1/7.1.1/release.json new file mode 100644 index 0000000000..15df1a3432 --- /dev/null +++ b/data/releases/7.1/7.1.1/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.1", + "date": "19 Jan 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.1.tar.bz2", + "name": "PHP 7.1.1 (tar.bz2)", + "sha256": "d791d39d7b54ec42441a05a5f06d68a495647d843210e3ae4f2c6adb99c675bc" + }, + { + "filename": "php-7.1.1.tar.gz", + "name": "PHP 7.1.1 (tar.gz)", + "sha256": "c136279d539c3c2c25176bf149c14913670e79bb27ee6b73e1cd69003985a70d" + }, + { + "filename": "php-7.1.1.tar.xz", + "name": "PHP 7.1.1 (tar.xz)", + "sha256": "b3565b0c1441064eba204821608df1ec7367abff881286898d900c2c2a5ffe70" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.10/announcement.html b/data/releases/7.1/7.1.10/announcement.html new file mode 100644 index 0000000000..4738041eef --- /dev/null +++ b/data/releases/7.1/7.1.10/announcement.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/7.1.10/changes.txt b/data/releases/7.1/7.1.10/changes.txt new file mode 100644 index 0000000000..96d2e6fe79 --- /dev/null +++ b/data/releases/7.1/7.1.10/changes.txt @@ -0,0 +1,41 @@ +- Core: + . Fixed bug #75042 (run-tests.php issues with EXTENSION block). (John Boehr) + +- BCMath: + . Fixed bug #44995 (bcpowmod() fails if scale != 0). (cmb) + . Fixed bug #46781 (BC math handles minus zero incorrectly). (cmb) + . Fixed bug #54598 (bcpowmod() may return 1 if modulus is 1). (okano1220, cmb) + . Fixed bug #75178 (bcpowmod() misbehaves for non-integer base or modulus). (cmb) + +- CLI server: + . Fixed bug #70470 (Built-in server truncates headers spanning over TCP + packets). (bouk) + +- CURL: + . Fixed bug #75093 (OpenSSL support not detected). (Remi) + +- GD: + . Fixed bug #75124 (gdImageGrayScale() may produce colors). (cmb) + . Fixed bug #75139 (libgd/gd_interpolation.c:1786: suspicious if ?). (cmb) + +- Gettext: + . Fixed bug #73730 (textdomain(null) throws in strict mode). (cmb) + +- Intl: + . Fixed bug #75090 (IntlGregorianCalendar doesn't have constants from parent + class). (tpunt) + . Fixed bug #75193 (segfault in collator_convert_object_to_string). (Remi) + +- PDO_OCI: + . Fixed bug #74631 (PDO_PCO with PHP-FPM: OCI environment initialized + before PHP-FPM sets it up). (Ingmar Runge) + +- SPL: + . Fixed bug #75155 (AppendIterator::append() is broken when appending another + AppendIterator). (Nikita) + . Fixed bug #75173 (incorrect behavior of AppendIterator::append in foreach loop). + (jhdxr) + +- Standard: + . Fixed bug #75152 (signed integer overflow in parse_iv). (Laruence) + . Fixed bug #75097 (gethostname fails if your host name is 64 chars long). (Andrea) diff --git a/data/releases/7.1/7.1.10/release.json b/data/releases/7.1/7.1.10/release.json new file mode 100644 index 0000000000..8fab925a7d --- /dev/null +++ b/data/releases/7.1/7.1.10/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.10", + "date": "28 Sep 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.10.tar.bz2", + "name": "PHP 7.1.10 (tar.bz2)", + "sha256": "0ee51b9b1ae7eca3e9558f772ce20cbacd1f76420009b3af630c87027f9a41af" + }, + { + "filename": "php-7.1.10.tar.gz", + "name": "PHP 7.1.10 (tar.gz)", + "sha256": "edc6a7c3fe89419525ce51969c5f48610e53613235bbef255c3a4db33b458083" + }, + { + "filename": "php-7.1.10.tar.xz", + "name": "PHP 7.1.10 (tar.xz)", + "sha256": "2b8efa771a2ead0bb3ae67b530ca505b5b286adc873cca9ce97a6e1d6815c50b" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.11/announcement.html b/data/releases/7.1/7.1.11/announcement.html new file mode 100644 index 0000000000..35e9bbeca0 --- /dev/null +++ b/data/releases/7.1/7.1.11/announcement.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/7.1.11/changes.txt b/data/releases/7.1/7.1.11/changes.txt new file mode 100644 index 0000000000..59356ac09e --- /dev/null +++ b/data/releases/7.1/7.1.11/changes.txt @@ -0,0 +1,51 @@ +- Core: + . Fixed bug #75241 (Null pointer dereference in zend_mm_alloc_small()). + (Laruence) + . Fixed bug #75236 (infinite loop when printing an error-message). (Andrea) + . Fixed bug #75252 (Incorrect token formatting on two parse errors in one + request). (Nikita) + . Fixed bug #75220 (Segfault when calling is_callable on parent). + (andrewnester) + . Fixed bug #75290 (debug info of Closures of internal functions contain + garbage argument names). (Andrea) + +- Apache2Handler: + . Fixed bug #75311 (error: 'zend_hash_key' has no member named 'arKey' in + apache2handler). (mcarbonneaux) + +- Date: + . Fixed bug #75055 (Out-Of-Bounds Read in timelib_meridian()). (Derick) + +- Hash: + . Fixed bug #75303 (sha3 hangs on bigendian). (Remi) + +- Intl: + . Fixed bug #75318 (The parameter of UConverter::getAliases() is not + optional). (cmb) + +- litespeed: + . Fixed bug #75248 (Binary directory doesn't get created when building + only litespeed SAPI). (petk) + . Fixed bug #75251 (Missing program prefix and suffix). (petk) + +- mcrypt: + . Fixed bug #72535 (arcfour encryption stream filter crashes php). (Leigh) + +- MySQLi: + . Fixed bug #75018 (Data corruption when reading fields of bit type). (Anatol) + +- OCI8: + . Fixed incorrect reference counting. (Dmitry, Tianfang Yang) + +- Opcache + . Fixed bug #75255 (Request hangs and not finish). (Dmitry) + +- PCRE: + . Fixed bug #75207 (applied upstream patch for CVE-2016-1283). (Anatol) + +- PDO_mysql: + . Fixed bug #75177 (Type 'bit' is fetched as unexpected string). (Anatol) + +- SPL: + . Fixed bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags). + (J. Jeising, cmb) diff --git a/data/releases/7.1/7.1.11/release.json b/data/releases/7.1/7.1.11/release.json new file mode 100644 index 0000000000..85eff42df9 --- /dev/null +++ b/data/releases/7.1/7.1.11/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.11", + "date": "26 Oct 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.11.tar.bz2", + "name": "PHP 7.1.11 (tar.bz2)", + "sha256": "7646d7de701fc969e3305eeeb2eddda3d46af6a88ee20ef4a47270c447228573" + }, + { + "filename": "php-7.1.11.tar.gz", + "name": "PHP 7.1.11 (tar.gz)", + "sha256": "de41b2c166bc5ec8ea96a337d4dd675c794f7b115a8a47bb04595c03dbbdf425" + }, + { + "filename": "php-7.1.11.tar.xz", + "name": "PHP 7.1.11 (tar.xz)", + "sha256": "074093e9d7d21afedc5106904218a80a47b854abe368d2728ed22184c884893e" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.12/announcement.html b/data/releases/7.1/7.1.12/announcement.html new file mode 100644 index 0000000000..18407571b5 --- /dev/null +++ b/data/releases/7.1/7.1.12/announcement.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/7.1.12/changes.txt b/data/releases/7.1/7.1.12/changes.txt new file mode 100644 index 0000000000..5f3497a0fc --- /dev/null +++ b/data/releases/7.1/7.1.12/changes.txt @@ -0,0 +1,53 @@ +- Core: + . Fixed bug #75420 (Crash when modifing property name in __isset for + BP_VAR_IS). (Laruence) + . Fixed bug #75368 (mmap/munmap trashing on unlucky allocations). (Nikita, + Dmitry) + +- CLI: + . Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown + function). (Laruence) + +- Enchant: + . Fixed bug #53070 (enchant_broker_get_path crashes if no path is set). (jelle + van der Waa, cmb) + . Fixed bug #75365 (Enchant still reports version 1.1.0). (cmb) + +- Exif: + . Fixed bug #75301 (Exif extension has built in revision version). (Peter + Kokot) + +- GD: + . Fixed bug #65148 (imagerotate may alter image dimensions). (cmb) + . Fixed bug #75437 (Wrong reflection on imagewebp). (Fabien Villepinte) + +- intl: + . Fixed bug #75317 (UConverter::setDestinationEncoding changes source instead + of destination). (andrewnester) + +- interbase: + . Fixed bug #75453 (Incorrect reflection for ibase_[p]connect). (villfa) + +- Mysqli: + . Fixed bug #75434 (Wrong reflection for mysqli_fetch_all function). (Fabien + Villepinte) + +- OCI8: + . Fixed valgrind issue. (Tianfang Yang) + +- OpenSSL: + . Fixed bug #75363 (openssl_x509_parse leaks memory). (Bob, Jakub Zelenka) + . Fixed bug #75307 (Wrong reflection for openssl_open function). (villfa) + +- Opcache: + . Fixed bug #75373 (Warning Internal error: wrong size calculation). (Laruence, Dmitry) + +- PGSQL: + . Fixed bug #75419 (Default link incorrectly cleared/linked by pg_close()). (Sara) + +- SOAP: + . Fixed bug #75464 (Wrong reflection on SoapClient::__setSoapHeaders). (villfa) + +- Zlib: + . Fixed bug #75299 (Wrong reflection on inflate_init and inflate_add). (Fabien + Villepinte) diff --git a/data/releases/7.1/7.1.12/release.json b/data/releases/7.1/7.1.12/release.json new file mode 100644 index 0000000000..9ea43f73a3 --- /dev/null +++ b/data/releases/7.1/7.1.12/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.12", + "date": "23 Nov 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.12.tar.bz2", + "name": "PHP 7.1.12 (tar.bz2)", + "sha256": "f9ce3361ab99dce8f3f2fba663695ac9b18a3579bc8014dc280368d1577d87c4" + }, + { + "filename": "php-7.1.12.tar.gz", + "name": "PHP 7.1.12 (tar.gz)", + "sha256": "188c67d8e424ce7a6fe93475aa64f53182c1d80ca3ac99439651ca91569d969c" + }, + { + "filename": "php-7.1.12.tar.xz", + "name": "PHP 7.1.12 (tar.xz)", + "sha256": "a0118850774571b1f2d4e30b4fe7a4b958ca66f07d07d65ebdc789c54ba6eeb3" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.13/announcement.html b/data/releases/7.1/7.1.13/announcement.html new file mode 100644 index 0000000000..6e9bf8d9d0 --- /dev/null +++ b/data/releases/7.1/7.1.13/announcement.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/7.1.13/changes.txt b/data/releases/7.1/7.1.13/changes.txt new file mode 100644 index 0000000000..3f1b40785d --- /dev/null +++ b/data/releases/7.1/7.1.13/changes.txt @@ -0,0 +1,54 @@ +- Core: + . Fixed bug #75573 (Segmentation fault in 7.1.12 and 7.0.26). (Laruence) + . Fixed bug #75384 (PHP seems incompatible with OneDrive files on demand). + (Anatol) + . Fixed bug #74862 (Unable to clone instance when private __clone defined). + (Daniel Ciochiu) + . Fixed bug #75074 (php-process crash when is_file() is used with strings + longer 260 chars). (Anatol) + . Fixed bug #69727 (Remove timestamps from build to make it reproducible). + (jelle van der Waa) + +- CLI Server: + . Fixed bug #60471 (Random "Invalid request (unexpected EOF)" using a router + script). (SammyK) + . Fixed bug #73830 (Directory does not exist). (Anatol) + +- FPM: + . Fixed bug #64938 (libxml_disable_entity_loader setting is shared between + requests). (Remi) + +- GD: + . Fixed bug #75571 (Potential infinite loop in gdImageCreateFromGifCtx). + (Christoph) + +- Opcache: + . Fixed bug #75608 ("Narrowing occurred during type inference" error). + (Laruence, Dmitry) + . Fixed bug #75570 ("Narrowing occurred during type inference" error). + (Dmitry) + . Fixed bug #75579 (Interned strings buffer overflow may cause crash). + (Dmitry) + +- PCRE: + . Fixed bug #74183 (preg_last_error not returning error code after error). + (Andrew Nester) + +- Phar: + . Fixed bug #74782 (remove file name from output to avoid XSS). (stas) + +- Standard: + . Fixed bug #75511 (fread not free unused buffer). (Laruence) + . Fixed bug #75514 (mt_rand returns value outside [$min,$max]+ on 32-bit) + (Remi) + . Fixed bug #75535 (Inappropriately parsing HTTP response leads to PHP + segment fault). (Nikita) + . Fixed bug #75409 (accept EFAULT in addition to ENOSYS as indicator + that getrandom() is missing). (sarciszewski) + . Fixed bug #73124 (php_ini_scanned_files() not reporting correctly). + (John Stevenson) + . Fixed bug #75574 (putenv does not work properly if parameter contains + non-ASCII unicode character). (Anatol) + +- Zip: + . Fixed bug #75540 (Segfault with libzip 1.3.1). (Remi) diff --git a/data/releases/7.1/7.1.13/release.json b/data/releases/7.1/7.1.13/release.json new file mode 100644 index 0000000000..363982cc53 --- /dev/null +++ b/data/releases/7.1/7.1.13/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.13", + "date": "4 Jan 2018", + "tags": [], + "source": [ + { + "filename": "php-7.1.13.tar.bz2", + "name": "PHP 7.1.13 (tar.bz2)", + "sha256": "35fda51d2d44600940185fd5818d336a79e77ab3c98e2bd075091f2f91cf98a1" + }, + { + "filename": "php-7.1.13.tar.gz", + "name": "PHP 7.1.13 (tar.gz)", + "sha256": "12fcbf59c9eb9af215ef38815d5da39b9d74549092c34b0dfc31442699740ce9" + }, + { + "filename": "php-7.1.13.tar.xz", + "name": "PHP 7.1.13 (tar.xz)", + "sha256": "1a0b3f2fb61959b57a3ee01793a77ed3f19bde5aa90c43dcacc85ea32f64fc10" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.14/announcement.html b/data/releases/7.1/7.1.14/announcement.html new file mode 100644 index 0000000000..1a6802b403 --- /dev/null +++ b/data/releases/7.1/7.1.14/announcement.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/7.1.14/changes.txt b/data/releases/7.1/7.1.14/changes.txt new file mode 100644 index 0000000000..bd7106000a --- /dev/null +++ b/data/releases/7.1/7.1.14/changes.txt @@ -0,0 +1,52 @@ +- Core: + . Fixed bug #75679 (Path 260 character problem). (Anatol) + . Fixed bug #75786 (segfault when using spread operator on generator passed + by reference). (Nikita) + . Fixed bug #75799 (arg of get_defined_functions is optional). (carusogabriel) + . Fixed bug #75396 (Exit inside generator finally results in fatal error). + (Nikita) + . Fixed bug #75079 (self keyword leads to incorrectly generated TypeError when + in closure in trait). (Nikita) + +- FCGI: + . Fixed bug #75794 (getenv() crashes on Windows 7.2.1 when second parameter is + false). (Anatol) + +- IMAP: + . Fixed bug #75774 (imap_append HeapCorruction). (Anatol) + +- Mbstring: + . Fixed bug #62545 (wrong unicode mapping in some charsets). (cmb) + +- Opcache: + . Fixed bug #75720 (File cache not populated after SHM runs full). (Dmitry) + . Fixed bug #75579 (Interned strings buffer overflow may cause crash). + (Dmitry) + +- PGSQL: + . Fixed bug #75671 (pg_version() crashes when called on a connection to + cockroach). (magicaltux at gmail dot com) + +- Readline: + . Fixed bug #75775 (readline_read_history segfaults with empty file). + (Anatol) + +- SAPI: + . Fixed bug #75735 ([embed SAPI] Segmentation fault in + sapi_register_post_entry). (Laruence) + +- SOAP: + . Fixed bug #70469 (SoapClient generates E_ERROR even if exceptions=1 is + used). (Anton Artamonov) + . Fixed bug #75502 (Segmentation fault in zend_string_release). (Nikita) + +- SPL: + . Fixed bug #75717 (RecursiveArrayIterator does not traverse arrays by + reference). (Nikita) + . Fixed bug #75242 (RecursiveArrayIterator doesn't have constants from parent + class). (Nikita) + . Fixed bug #73209 (RecursiveArrayIterator does not iterate object + properties). (Nikita) + +- Standard: + . Fixed bug #75781 (substr_count incorrect result). (Laruence) diff --git a/data/releases/7.1/7.1.14/release.json b/data/releases/7.1/7.1.14/release.json new file mode 100644 index 0000000000..b70da4d23d --- /dev/null +++ b/data/releases/7.1/7.1.14/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.14", + "date": "1 Feb 2018", + "tags": [], + "source": [ + { + "filename": "php-7.1.14.tar.bz2", + "name": "PHP 7.1.14 (tar.bz2)", + "sha256": "63b2fd139ed7656756b0fa290bc42f8fff854723c3d2710a700e646370c581f4" + }, + { + "filename": "php-7.1.14.tar.gz", + "name": "PHP 7.1.14 (tar.gz)", + "sha256": "8c7360209d255ee46d388bdcd43ef1a2d14b370c331be30ea628ece18a1e7683" + }, + { + "filename": "php-7.1.14.tar.xz", + "name": "PHP 7.1.14 (tar.xz)", + "sha256": "c09f0c1074f5689b492d79034adb84e6a6c6d08c6763c02282e6318d41156779" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.15/announcement.html b/data/releases/7.1/7.1.15/announcement.html new file mode 100644 index 0000000000..b206300f65 --- /dev/null +++ b/data/releases/7.1/7.1.15/announcement.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/7.1.15/changes.txt b/data/releases/7.1/7.1.15/changes.txt new file mode 100644 index 0000000000..1c0cd8764f --- /dev/null +++ b/data/releases/7.1/7.1.15/changes.txt @@ -0,0 +1,60 @@ +- Apache2Handler: + . Fixed bug #75882 (a simple way for segfaults in threadsafe php just with + configuration). (Anatol) + +- Date: + . Fixed bug #75857 (Timezone gets truncated when formatted). (carusogabriel) + . Fixed bug #75928 (Argument 2 for `DateTimeZone::listIdentifiers()` should + accept `null`). (Pedro Lacerda) + . Fixed bug #68406 (calling var_dump on a DateTimeZone object modifies it). + (jhdxr) + +- FTP: + . Fixed ftp_pasv arginfo. (carusogabriel) + +-GD: + . Fixed imagesetinterpolation arginfo. (Gabriel Caruso) + +- iconv: + . Fixed bug #75867 (Freeing uninitialized pointer). (Philip Prindeville) + +- LDAP: + . Fixed bug #49876 (Fix LDAP path lookup on 64-bit distros). (dzuelke) + +- libxml2: + . Fixed bug #75871 (use pkg-config where available). (pmmaga) + +- mysqlnd + . Fixed negotiation of MySQL authenticaton plugin. (Johannes) + . Fixed a memleak with SSL connections. (Johannes) + +- ODBC: + . Fixed bug #73725 (Unable to retrieve value of varchar(max) type). (Anatol) + +- Opcache: + . Fixed bug #75969 (Assertion failure in live range DCE due to block pass + misoptimization). (Nikita) + +- OpenSSL: + . Fixed openssl_* arginfos. (carusogabriel) + +- PCNTL: + . Fixed bug #75873 (pcntl_wexitstatus returns incorrect on Big_Endian platform + (s390x)). (Sam Ding) + +- PGSQL: + . Fixed #75838 (Memory leak in pg_escape_bytea()). (ard_1 at mail dot ru) + +- Phar: + . Fixed bug #65414 (deal with leading slash when adding files correctly). + (bishopb) + +- SPL: + . Fixed bug #74519 (strange behavior of AppendIterator). (jhdxr) + +- Standard: + . Fixed bug #75961 (Strange references behavior). (Laruence) + . Fixed bug #75916 (DNS_CAA record results contain garbage). (Mike, + Philip Sharp) + . Fixed some arginfos. (carusogabriel) + . Fixed bug #75981 (stack-buffer-overflow while parsing HTTP response). (Stas) diff --git a/data/releases/7.1/7.1.15/release.json b/data/releases/7.1/7.1.15/release.json new file mode 100644 index 0000000000..4d6ad17599 --- /dev/null +++ b/data/releases/7.1/7.1.15/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.15", + "date": "1 Mar 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.15.tar.bz2", + "name": "PHP 7.1.15 (tar.bz2)", + "sha256": "e117a54738e9485de5fc75673d39dbe937dd87f0f9cc9e281960ef9b961adcbd" + }, + { + "filename": "php-7.1.15.tar.gz", + "name": "PHP 7.1.15 (tar.gz)", + "sha256": "0669c68a52cbd2f1cfa83354918ed03b0bcaa34ed9bafaee7dfd343461b881d4" + }, + { + "filename": "php-7.1.15.tar.xz", + "name": "PHP 7.1.15 (tar.xz)", + "sha256": "0e17192fb43532e4ebaa190ecec9c7e59deea7dadb7dab67b19c2081a68bd817" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.16/announcement.html b/data/releases/7.1/7.1.16/announcement.html new file mode 100644 index 0000000000..df065c49a9 --- /dev/null +++ b/data/releases/7.1/7.1.16/announcement.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/7.1.16/changes.txt b/data/releases/7.1/7.1.16/changes.txt new file mode 100644 index 0000000000..fee8e9c305 --- /dev/null +++ b/data/releases/7.1/7.1.16/changes.txt @@ -0,0 +1,28 @@ +- Core: + . Fixed bug #76025 (Segfault while throwing exception in error_handler). + (Dmitry, Laruence) + . Fixed bug #76044 ('date: illegal option -- -' in ./configure on FreeBSD). + (Anatol) + +- FPM: + . Fixed bug #75605 (Dumpable FPM child processes allow bypassing opcache + access controls). (Jakub Zelenka) + +- GD: + . Fixed bug #73957 (signed integer conversion in imagescale()). (cmb) + +- ODBC: + . Fixed bug #76088 (ODBC functions are not available by default on Windows). + (cmb) + +- Opcache: + . Fixed bug #76074 (opcache corrupts variable in for-loop). (Bob) + +- Phar: + . Fixed bug #76085 (Segmentation fault in buildFromIterator when directory + name contains a \n). (Laruence) + +- Standard: + . Fixed bug #74139 (mail.add_x_header default inconsistent with docs). (cmb) + . Fixed bug #76068 (parse_ini_string fails to parse "[foo]\nbar=1|>baz" with + segfault). (Anatol) diff --git a/data/releases/7.1/7.1.16/release.json b/data/releases/7.1/7.1.16/release.json new file mode 100644 index 0000000000..92e6ea729c --- /dev/null +++ b/data/releases/7.1/7.1.16/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.16", + "date": "29 Mar 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.16.tar.bz2", + "name": "PHP 7.1.16 (tar.bz2)", + "sha256": "348e2af9c7c0f327a57a972674078777dfde189e2598acbcb8618b9645b0e7e5" + }, + { + "filename": "php-7.1.16.tar.gz", + "name": "PHP 7.1.16 (tar.gz)", + "sha256": "c8e6fed5b350b29a5b9eaa9fce7c5e8618629346e9a58212f3dc380046065442" + }, + { + "filename": "php-7.1.16.tar.xz", + "name": "PHP 7.1.16 (tar.xz)", + "sha256": "a5d67e477248a3911af7ef85c8400c1ba8cd632184186fd31070b96714e669f1" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.17/announcement.html b/data/releases/7.1/7.1.17/announcement.html new file mode 100644 index 0000000000..0ffd6d14e0 --- /dev/null +++ b/data/releases/7.1/7.1.17/announcement.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/7.1.17/changes.txt b/data/releases/7.1/7.1.17/changes.txt new file mode 100644 index 0000000000..b16d782236 --- /dev/null +++ b/data/releases/7.1/7.1.17/changes.txt @@ -0,0 +1,29 @@ +- Date: + . Fixed bug #76131 (mismatch arginfo for date_create). (carusogabriel) + +- FPM: + . Fixed bug #68440 (ERROR: failed to reload: execvp() failed: Argument list + too long). (Jacob Hipps) + . Fixed incorrect write to getenv result in FPM reload. (Jakub Zelenka) + +- GD: + . Fixed bug #52070 (imagedashedline() - dashed line sometimes is not visible). + (cmb) + +- intl: + . Fixed bug #76153 (Intl compilation fails with icu4c 61.1). (Anatol) + +- mbstring: + . Fixed bug #75944 (Wrong cp1251 detection). (dmk001) + . Fixed bug #76113 (mbstring does not build with Oniguruma 6.8.1). + (chrullrich, cmb) + +- phpdbg: + . Fixed bug #76143 (Memory corruption: arbitrary NUL overwrite). (Laruence) + +- SPL: + . Fixed bug #76131 (mismatch arginfo for splarray constructor). + (carusogabriel) + +- standard: + . Fixed bug #75996 (incorrect url in header for mt_rand). (tatarbj) diff --git a/data/releases/7.1/7.1.17/release.json b/data/releases/7.1/7.1.17/release.json new file mode 100644 index 0000000000..0174c37ac3 --- /dev/null +++ b/data/releases/7.1/7.1.17/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.17", + "date": "26 Apr 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.17.tar.bz2", + "name": "PHP 7.1.17 (tar.bz2)", + "sha256": "e124e3ac552c50f3890ed981d07b2ee473cac961885e75186ded0bbb5b78dbcf" + }, + { + "filename": "php-7.1.17.tar.gz", + "name": "PHP 7.1.17 (tar.gz)", + "sha256": "aba44265bf814a020282afa63321323e1f81da61bd7318ab2b941857a15cb144" + }, + { + "filename": "php-7.1.17.tar.xz", + "name": "PHP 7.1.17 (tar.xz)", + "sha256": "1a784806866e06367f7a5c88775d239d6f30041c7ce65a8232d03a3d4de56d56" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.18/announcement.html b/data/releases/7.1/7.1.18/announcement.html new file mode 100644 index 0000000000..a8f1f37741 --- /dev/null +++ b/data/releases/7.1/7.1.18/announcement.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/7.1.18/changes.txt b/data/releases/7.1/7.1.18/changes.txt new file mode 100644 index 0000000000..fbfbde7a5f --- /dev/null +++ b/data/releases/7.1/7.1.18/changes.txt @@ -0,0 +1,19 @@ +- FPM: + . Fixed bug #76075 --with-fpm-acl wrongly tries to find libacl on FreeBSD. + (mgorny) + +- intl: + . Fixed bug #74385 (Locale::parseLocale() broken with some arguments). + (Anatol) + +- Opcache: + . Fixed bug #76205 (PHP-FPM sporadic crash when running Infinitewp). (Dmitry) + . Fixed bug #76275 (Assertion failure in file cache when unserializing empty + try_catch_array). (Nikita) + . Fixed bug #76281 (Opcache causes incorrect "undefined variable" errors). + (Nikita) + +- Reflection: + . Fixed arginfo for array_replace(_recursive) and array_merge(_recursive). + (carusogabriel) + diff --git a/data/releases/7.1/7.1.18/release.json b/data/releases/7.1/7.1.18/release.json new file mode 100644 index 0000000000..0d940d1404 --- /dev/null +++ b/data/releases/7.1/7.1.18/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.18", + "date": "24 May 2018", + "tags": [], + "source": [ + { + "filename": "php-7.1.18.tar.bz2", + "name": "PHP 7.1.18 (tar.bz2)", + "sha256": "580e375515ede831a6d82e13c0ec25dd08b225c6d87dfc24d7cd5f3bd542bf8e" + }, + { + "filename": "php-7.1.18.tar.gz", + "name": "PHP 7.1.18 (tar.gz)", + "sha256": "07c24ae4dd59d81d3dc0ce89025ae667979150e2ee0e9e30dd89e04e31d510fb" + }, + { + "filename": "php-7.1.18.tar.xz", + "name": "PHP 7.1.18 (tar.xz)", + "sha256": "8bd91cea072ea5b368cc9b4533a1a683eb426abdacbf024bb6ffa9b799cd3b01" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.19/announcement.html b/data/releases/7.1/7.1.19/announcement.html new file mode 100644 index 0000000000..a8fbe91733 --- /dev/null +++ b/data/releases/7.1/7.1.19/announcement.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/7.1.19/changes.txt b/data/releases/7.1/7.1.19/changes.txt new file mode 100644 index 0000000000..84fdf94ce2 --- /dev/null +++ b/data/releases/7.1/7.1.19/changes.txt @@ -0,0 +1,17 @@ +- CLI Server: + . Fixed bug #76333 (PHP built-in server does not find files if root path + contains special characters). (Anatol) + +- OpenSSL: + . Fixed bug #76296 (openssl_pkey_get_public does not respect open_basedir). + (Erik Lax, Jakub Zelenka) + . Fixed bug #76174 (openssl extension fails to build with LibreSSL 2.7). + (Jakub Zelenka) + +- SPL: + . Fixed bug #76367 (NoRewindIterator segfault 11). (Laruence) + +- Standard: + . Fixed bug #76335 ("link(): Bad file descriptor" with non-ASCII path). + (Anatol) + . Fixed bug #76383 (array_map on $GLOBALS returns IS_INDIRECT). (Bob) diff --git a/data/releases/7.1/7.1.19/release.json b/data/releases/7.1/7.1.19/release.json new file mode 100644 index 0000000000..e1d8f7decf --- /dev/null +++ b/data/releases/7.1/7.1.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.19", + "date": "21 Jun 2018", + "tags": [], + "source": [ + { + "filename": "php-7.1.19.tar.bz2", + "name": "PHP 7.1.19 (tar.bz2)", + "sha256": "13c43e7be3040ad53f192b0770c7ed99e5b3e348dfc6674666179d557fd770f3" + }, + { + "filename": "php-7.1.19.tar.gz", + "name": "PHP 7.1.19 (tar.gz)", + "sha256": "e1ae477b72bed02cdcb04f0157b8f8767bd4f6030416ae06408b4f6d85ee66a1" + }, + { + "filename": "php-7.1.19.tar.xz", + "name": "PHP 7.1.19 (tar.xz)", + "sha256": "7cab88f269b90a8a38dbcccf3ec0d5c6eba86122431a53eaa94405bbb60370a8" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.2/announcement.html b/data/releases/7.1/7.1.2/announcement.html new file mode 100644 index 0000000000..5244f0b2e7 --- /dev/null +++ b/data/releases/7.1/7.1.2/announcement.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/7.1.2/changes.txt b/data/releases/7.1/7.1.2/changes.txt new file mode 100644 index 0000000000..9c6ad5f625 --- /dev/null +++ b/data/releases/7.1/7.1.2/changes.txt @@ -0,0 +1,92 @@ +- Core: + . Improved GENERATOR_CREATE opcode handler. (Bob, Dmitry) + . Fixed bug #73877 (readlink() returns garbage for UTF-8 paths). (Anatol) + . Fixed bug #73876 (Crash when exporting **= in expansion of assign op). + (Sara) + . Fixed bug #73962 (bug with symlink related to cyrillic directory). (Anatol) + . Fixed bug #73969 (segfault in debug_print_backtrace). (andrewnester) + . Fixed bug #73994 (arginfo incorrect for unpack). (krakjoe) + . Fixed bug #73973 (assertion error in debug_zval_dump). (andrewnester) + +- DOM: + . Fixed bug #54382 (getAttributeNodeNS doesn't get xmlns* attributes). + (aboks) + +- DTrace: + . Fixed bug #73965 (DTrace reported as enabled when disabled). (Remi) + +- FCGI: + . Fixed bug #73904 (php-cgi fails to load -c specified php.ini file). (Anatol) + . Fixed bug #72898 (PHP_FCGI_CHILDREN is not included in phpinfo()). (Anatol) + +- FPM: + . Fixed bug #69865 (php-fpm does not close stderr when using syslog). + (m6w6) + +- GD: + . Fixed bug #73968 (Premature failing of XBM reading). (cmb) + +- GMP: + . Fixed bug #69993 (test for gmp.h needs to test machine includes). + (Jordan Gigov) + +- Hash: + . Added hash_hkdf() function. (Andrey Andreev) + . Fixed bug #73961 (environmental build dependency in hash sha3 source). + (krakjoe) + +- Intl: + . Fix bug #73956 (Link use CC instead of CXX). (Remi) + +- LDAP: + . Fixed bug #73933 (error/segfault with ldap_mod_replace and opcache). + (Laruence) + +- MySQLi: + . Fixed bug #73949 (leak in mysqli_fetch_object). (krakjoe) + +- Mysqlnd: + . Fixed bug #69899 (segfault on close() after free_result() with mysqlnd). + (Richard Fussenegger) + +- Opcache: + . Fixed bug #73983 (crash on finish work with phar in cli + opcache). + (Anatol) + +- OpenSSL: + . Fixed bug #71519 (add serial hex to return value array). (xrobau) + . Fixed bug #73692 (Compile ext/openssl with openssl 1.1.0 on Win). (Anatol) + . Fixed bug #73978 (openssl_decrypt triggers bug in PDO). (Jakub Zelenka) + +- PDO_Firebird: + . Implemented FR #72583 (All data are fetched as strings). (Dorin Marcoci) + +- PDO_PgSQL: + . Fixed bug #73959 (lastInsertId fails to throw an exception for wrong + sequence name). (andrewnester) + +- Phar: + . Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb) + +- posix: + . Fixed bug #71219 (configure script incorrectly checks for ttyname_r). (atoh) + +- Session: + . Fixed bug #69582 (session not readable by root in CLI). (EvgeniySpinov) + +- SPL: + . Fixed bug #73896 (spl_autoload() crashes when calls magic _call()). (Dmitry) + +- Standard: + . Fixed bug #69442 (closing of fd incorrect when PTS enabled). (jaytaph) + . Fixed bug #47021 (SoapClient stumbles over WSDL delivered with + "Transfer-Encoding: chunked"). (Rowan Collins) + . Fixed bug #72974 (imap is undefined service on AIX). (matthieu.sarter) + . Fixed bug #72979 (money_format stores wrong length AIX). (matthieu.sarter) + . Fixed bug #73374 (intval() with base 0 should detect binary). (Leigh) + . Fixed bug #69061 (mail.log = syslog contains double information). + (Tom Sommer) + +- ZIP: + . Fixed bug #70103 (ZipArchive::addGlob ignores remove_all_path option). (cmb, + Mitch Hagstrand) diff --git a/data/releases/7.1/7.1.2/release.json b/data/releases/7.1/7.1.2/release.json new file mode 100644 index 0000000000..e083894658 --- /dev/null +++ b/data/releases/7.1/7.1.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.2", + "date": "16 Feb 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.2.tar.bz2", + "name": "PHP 7.1.2 (tar.bz2)", + "sha256": "e0f2214e2366434ee231156ba70cfefd0c59790f050d8727a3f1dc2affa67004" + }, + { + "filename": "php-7.1.2.tar.gz", + "name": "PHP 7.1.2 (tar.gz)", + "sha256": "e6773217c9c719ca22abb104ae3d437d53daceaf31faf2e5eeb1f9f5028005d8" + }, + { + "filename": "php-7.1.2.tar.xz", + "name": "PHP 7.1.2 (tar.xz)", + "sha256": "d815a0c39fd57bab1434a77ff0610fb507c22f790c66cd6f26e27030c4b3e971" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.20/announcement.html b/data/releases/7.1/7.1.20/announcement.html new file mode 100644 index 0000000000..1047746cbe --- /dev/null +++ b/data/releases/7.1/7.1.20/announcement.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/7.1.20/changes.txt b/data/releases/7.1/7.1.20/changes.txt new file mode 100644 index 0000000000..73231c9d60 --- /dev/null +++ b/data/releases/7.1/7.1.20/changes.txt @@ -0,0 +1,41 @@ +- Core: + . Fixed bug #76534 (PHP hangs on 'illegal string offset on string references + with an error handler). (Laruence) + . Fixed bug #76502 (Chain of mixed exceptions and errors does not serialize + properly). (Nikita) + +- Date: + . Fixed bug #76462 (Undefined property: DateInterval::$f). (Anatol) + +- FPM: + . Fixed bug #73342 (Vulnerability in php-fpm by changing stdin to + non-blocking). (Nikita) + +- GMP: + . Fixed bug #74670 (Integer Underflow when unserializing GMP and possible + other classes). (Nikita) + +- intl: + . Fixed bug #76556 (get_debug_info handler for BreakIterator shows wrong + type). (cmb) + +- mbstring: + . Fixed bug #76532 (Integer overflow and excessive memory usage + in mb_strimwidth). (MarcusSchwarz) + +- PGSQL: + . Fixed bug #76548 (pg_fetch_result did not fetch the next row). (Anatol) + +- phpdbg: + . Fix arginfo wrt. optional/required parameters. (cmb) + +- Reflection: + . Fixed bug #76536 (PHP crashes with core dump when throwing exception in + error handler). (Laruence) + . Fixed bug #75231 (ReflectionProperty#getValue() incorrectly works with + inherited classes). (Nikita) + +- Standard: + . Fixed bug #76505 (array_merge_recursive() is duplicating sub-array keys). + (Laruence) + . Fixed bug #71848 (getimagesize with $imageinfo returns false). (cmb) diff --git a/data/releases/7.1/7.1.20/release.json b/data/releases/7.1/7.1.20/release.json new file mode 100644 index 0000000000..ba570b58ee --- /dev/null +++ b/data/releases/7.1/7.1.20/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.20", + "date": "16 Aug 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.20.tar.bz2", + "name": "PHP 7.1.20 (tar.bz2)", + "sha256": "3a1b476c88fb81254ea572e891a1d65053ab54068348e00c75e8b54fae691d45" + }, + { + "filename": "php-7.1.20.tar.gz", + "name": "PHP 7.1.20 (tar.gz)", + "sha256": "77a2091f4ab50367a6c68274a0d92e0da9ecdbf428b280c9836c5c6d512da450" + }, + { + "filename": "php-7.1.20.tar.xz", + "name": "PHP 7.1.20 (tar.xz)", + "sha256": "cd7d1006201459d43fae0790cce4eb3451add5c87f4cadb13b228d4c179b850c" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.21/announcement.html b/data/releases/7.1/7.1.21/announcement.html new file mode 100644 index 0000000000..7c96ba14e1 --- /dev/null +++ b/data/releases/7.1/7.1.21/announcement.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/7.1.21/changes.txt b/data/releases/7.1/7.1.21/changes.txt new file mode 100644 index 0000000000..77d7ed7710 --- /dev/null +++ b/data/releases/7.1/7.1.21/changes.txt @@ -0,0 +1,29 @@ +- Calendar: + . Fixed bug #52974 (jewish.c: compile error under Windows with GBK charset). + (cmb) + +- Filter: + . Fixed bug #76366 (References in sub-array for filtering breaks the filter). + (ZiHang Gao) + +- PDO_Firebird: + . Fixed bug #76488 (Memory leak when fetching a BLOB field). (Simonov Denis) + +- PDO_PgSQL: + . Fixed bug #75402 (Possible Memory Leak using PDO::CURSOR_SCROLL option). + (Anatol) + +- SQLite3: + . Fixed #76665 (SQLite3Stmt::bindValue() with SQLITE3_FLOAT doesn't juggle). + (cmb) + +- Standard: + . Fixed bug #68553 (array_column: null values in $index_key become incrementing + keys in result). (Laruence) + . Fixed bug #73817 (Incorrect entries in get_html_translation_table). (cmb) + . Fixed bug #76643 (Segmentation fault when using `output_add_rewrite_var`). + (cmb) + +- Zip: + . Fixed bug #76524 (ZipArchive memory leak (OVERWRITE flag and empty archive)). + (Timur Ibragimov) diff --git a/data/releases/7.1/7.1.21/release.json b/data/releases/7.1/7.1.21/release.json new file mode 100644 index 0000000000..71c8ba002b --- /dev/null +++ b/data/releases/7.1/7.1.21/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.21", + "date": "13 Sep 2018", + "tags": [], + "source": [ + { + "filename": "php-7.1.21.tar.bz2", + "name": "PHP 7.1.21 (tar.bz2)", + "sha256": "c2409c574bde23763b48a96b93922f530156df044585ff60108bce7b27b19580" + }, + { + "filename": "php-7.1.21.tar.gz", + "name": "PHP 7.1.21 (tar.gz)", + "sha256": "4b448ba9b3c81b88543c1e1fbef465391fecd64d7f19a744df26e9923295dd00" + }, + { + "filename": "php-7.1.21.tar.xz", + "name": "PHP 7.1.21 (tar.xz)", + "sha256": "d4da6dc69d3fe1e6b2b80f16b262f391037bfeb21213c966e026bd45d7ca2813" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.22/announcement.html b/data/releases/7.1/7.1.22/announcement.html new file mode 100644 index 0000000000..26629105bd --- /dev/null +++ b/data/releases/7.1/7.1.22/announcement.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/7.1.22/changes.txt b/data/releases/7.1/7.1.22/changes.txt new file mode 100644 index 0000000000..9796c2463d --- /dev/null +++ b/data/releases/7.1/7.1.22/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Fixed bug #76754 (parent private constant in extends class memory leak). + (Laruence) + . Fixed bug #72443 (Generate enabled extension). (petk) + +- Bz2: + . Fixed arginfo for bzcompress. (Tyson Andre) + +- gettext: + . Fixed bug #76517 (incorrect restoring of LDFLAGS). (sji) + +- iconv: + . Fixed bug #68180 (iconv_mime_decode can return extra characters in a + header). (cmb) + . Fixed bug #63839 (iconv_mime_decode_headers function is skipping headers). + (cmb) + . Fixed bug #60494 (iconv_mime_decode does ignore special characters). (cmb) + . Fixed bug #55146 (iconv_mime_decode_headers() skips some headers). (cmb) + +- intl: + . Fixed bug #74484 (MessageFormatter::formatMessage memory corruption with + 11+ named placeholders). (Anatol) + +- libxml: + . Fixed bug #76777 ("public id" parameter of libxml_set_external_entity_loader + callback undefined). (Ville Hukkamäki) + +- mbstring: + . Fixed bug #76704 (mb_detect_order return value varies based on argument + type). (cmb) + +- Opcache: + . Fixed bug #76747 (Opcache treats path containing "test.pharma.tld" as a phar + file). (Laruence) + +- OpenSSL: + . Fixed bug #76705 (unusable ssl => peer_fingerprint in + stream_context_create()). (Jakub Zelenka) + +- phpdbg: + . Fixed bug #76595 (phpdbg man page contains outdated information). + (Kevin Abel) + +- SPL: + . Fixed bug #68825 (Exception in DirectoryIterator::getLinkTarget()). (cmb) + . Fixed bug #68175 (RegexIterator pregFlags are NULL instead of 0). (Tim + Siebels) + +- Standard: + . Fixed bug #76778 (array_reduce leaks memory if callback throws exception). + (cmb) + +- zlib: + . Fixed bug #65988 (Zlib version check fails when an include/zlib/ style dir + is passed to the --with-zlib configure option). (Jay Bonci) + . Fixed bug #76709 (Minimal required zlib library is 1.2.0.4). (petk) diff --git a/data/releases/7.1/7.1.22/release.json b/data/releases/7.1/7.1.22/release.json new file mode 100644 index 0000000000..8c419f8a7e --- /dev/null +++ b/data/releases/7.1/7.1.22/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.22", + "date": "13 Sep 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.22.tar.bz2", + "name": "PHP 7.1.22 (tar.bz2)", + "sha256": "c8e91f19c8aa810ae95f228ff31cf0e4805cb89f4c10870ee12c85491b26e763" + }, + { + "filename": "php-7.1.22.tar.gz", + "name": "PHP 7.1.22 (tar.gz)", + "sha256": "1d275115593a33315647094a5a4ee9bd73c7960c08686cee35dc2e683a68b157" + }, + { + "filename": "php-7.1.22.tar.xz", + "name": "PHP 7.1.22 (tar.xz)", + "sha256": "9194c9b3a592d8376fde837dde711ec01ee26f8607fc2884047ef6f7c089b15d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.23/announcement.html b/data/releases/7.1/7.1.23/announcement.html new file mode 100644 index 0000000000..b97e3f3898 --- /dev/null +++ b/data/releases/7.1/7.1.23/announcement.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/7.1.23/changes.txt b/data/releases/7.1/7.1.23/changes.txt new file mode 100644 index 0000000000..6d4a029896 --- /dev/null +++ b/data/releases/7.1/7.1.23/changes.txt @@ -0,0 +1,36 @@ +- Core: + . Fixed bug #76901 (method_exists on SPL iterator passthrough method corrupts + memory). (Nikita) + . Fixed bug #76846 (Segfault in shutdown function after memory limit error). + (Nikita) + +- CURL: + . Fixed bug #76480 (Use curl_multi_wait() so that timeouts are respected). + (Pierrick) + +- iconv: + . Fixed bug #66828 (iconv_mime_encode Q-encoding longer than it should be). + (cmb) + +- Opcache: + . Fixed bug #76832 (ZendOPcache.MemoryBase periodically deleted by the OS). + (Anatol) + +- POSIX: + . Fixed bug #75696 (posix_getgrnam fails to print details of group). (cmb) + +- Reflection: + . Fixed bug #74454 (Wrong exception being thrown when using ReflectionMethod). + (cmb) + +- Standard: + . Fixed bug #73457 (Wrong error message when fopen FTP wrapped fails to open + data connection). (Ville Hukkamäki) + . Fixed bug #74764 (Bindto IPv6 works with file_get_contents but fails with + stream_socket_client). (Ville Hukkamäki) + . Fixed bug #75533 (array_reduce is slow when $carry is large array). + (Manabu Matsui) + +- Zlib: + . Fixed bug #75273 (php_zlib_inflate_filter() may not update bytes_consumed). + (Martin Burke, cmb) diff --git a/data/releases/7.1/7.1.23/release.json b/data/releases/7.1/7.1.23/release.json new file mode 100644 index 0000000000..6f328c411b --- /dev/null +++ b/data/releases/7.1/7.1.23/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.23", + "date": "11 Oct 2018", + "tags": [], + "source": [ + { + "filename": "php-7.1.23.tar.bz2", + "name": "PHP 7.1.23 (tar.bz2)", + "sha256": "2d79aa86d8f0faa760a712a1d7be50b57838a9770c1dff34020876630c2ecc4b" + }, + { + "filename": "php-7.1.23.tar.gz", + "name": "PHP 7.1.23 (tar.gz)", + "sha256": "b839a4de32e6770d10b87c2495c070d09277fe61008804b2992466f0dcc5f0fa" + }, + { + "filename": "php-7.1.23.tar.xz", + "name": "PHP 7.1.23 (tar.xz)", + "sha256": "227a3c76133c3dc1cec937989456cbd89ed00e68e7260c651900dbe1f5b798bc" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.24/announcement.html b/data/releases/7.1/7.1.24/announcement.html new file mode 100644 index 0000000000..8e601268bc --- /dev/null +++ b/data/releases/7.1/7.1.24/announcement.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/7.1.24/changes.txt b/data/releases/7.1/7.1.24/changes.txt new file mode 100644 index 0000000000..d306896fe4 --- /dev/null +++ b/data/releases/7.1/7.1.24/changes.txt @@ -0,0 +1,34 @@ +- Core: + . Fixed bug #76946 (Cyclic reference in generator not detected). (Nikita) + . Fixed bug #77035 (The phpize and ./configure create redundant .deps file). + (Peter Kokot) + . Fixed bug #77041 (buildconf should output error messages to stderr) + (Mizunashi Mana) + +- Date: + . Fixed bug #75851 (Year component overflow with date formats "c", "o", "r" + and "y"). (Adam Saponara) + +- FCGI: + . Fixed bug #76948 (Failed shutdown/reboot or end session in Windows). + (Anatol) + . Fixed bug #76954 (apache_response_headers removes last character from header + name). (stodorovic) + +- FTP: + . Fixed bug #76972 (Data truncation due to forceful ssl socket shutdown). + (Manuel Mausz) + +- intl: + . Fixed bug #76942 (U_ARGUMENT_TYPE_MISMATCH). (anthrax at unixuser dot org) + +- Standard: + . Fixed bug #76965 (INI_SCANNER_RAW doesn't strip trailing whitespace). + (Pierrick) + +- Tidy: + . Fixed bug #77027 (tidy::getOptDoc() not available on Windows). (cmb) + +- XML: + . Fixed bug #30875 (xml_parse_into_struct() does not resolve entities). (cmb) + . Add support for getting SKIP_TAGSTART and SKIP_WHITE options. (cmb) diff --git a/data/releases/7.1/7.1.24/release.json b/data/releases/7.1/7.1.24/release.json new file mode 100644 index 0000000000..5a0ed33ba5 --- /dev/null +++ b/data/releases/7.1/7.1.24/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.24", + "date": "08 Nov 2018", + "tags": [], + "source": [ + { + "filename": "php-7.1.24.tar.bz2", + "name": "PHP 7.1.24 (tar.bz2)", + "sha256": "66de24e73c7f6006f090c1b187d6b218c8fa6a513acca4ff5c14b695a7391e0b" + }, + { + "filename": "php-7.1.24.tar.gz", + "name": "PHP 7.1.24 (tar.gz)", + "sha256": "1e780b1af3eeb8fba9e5af6205c960184a0c3a0ef091aaa192e7b7d6b67405d0" + }, + { + "filename": "php-7.1.24.tar.xz", + "name": "PHP 7.1.24 (tar.xz)", + "sha256": "e70dcec0ae28b6bc308b78972ec15aa850808819cc765f505aa51e5a7e2fa5d7" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.25/announcement.html b/data/releases/7.1/7.1.25/announcement.html new file mode 100644 index 0000000000..a0b542bd75 --- /dev/null +++ b/data/releases/7.1/7.1.25/announcement.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/7.1.25/changes.txt b/data/releases/7.1/7.1.25/changes.txt new file mode 100644 index 0000000000..590e1ac11a --- /dev/null +++ b/data/releases/7.1/7.1.25/changes.txt @@ -0,0 +1,32 @@ +- Core: + . Fixed bug #71041 (zend_signal_startup() needs ZEND_API). + (Valentin V. Bartenev) + +- ftp: + . Fixed bug #77151 (ftp_close(): SSL_read on shutdown). (Remi) + +- iconv: + . Fixed bug #77147 (Fixing 60494 ignored ICONV_MIME_DECODE_CONTINUE_ON_ERROR). + (cmb) + +- IMAP: + . Fixed bug #77153 (imap_open allows to run arbitrary shell commands via + mailbox parameter). (Stas) + +- ODBC: + . Fixed bug #77079 (odbc_fetch_object has incorrect type signature). + (Jon Allen) + +- Opcache: + . Fixed bug #77058 (Type inference in opcache causes side effects). (Nikita) + +- PGSQL: + . Fixed bug #77047 (pg_convert has a broken regex for the 'TIME WITHOUT + TIMEZONE' data type). (Andy Gajetzki) + +- SOAP: + . Fixed bug #76348 (WSDL_CACHE_MEMORY causes Segmentation fault). (cmb) + . Fixed bug #77141 (Signedness issue in SOAP when precision=-1). (cmb) + +- Sockets: + . Fixed bug #67619 (Validate length on socket_write). (thiagooak) diff --git a/data/releases/7.1/7.1.25/release.json b/data/releases/7.1/7.1.25/release.json new file mode 100644 index 0000000000..3ae4872f83 --- /dev/null +++ b/data/releases/7.1/7.1.25/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.25", + "date": "06 Dec 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.25.tar.bz2", + "name": "PHP 7.1.25 (tar.bz2)", + "sha256": "002cdc880ac7cfaede2c389204d366108847db0f3ac72edf1ba95c0577f9aaac" + }, + { + "filename": "php-7.1.25.tar.gz", + "name": "PHP 7.1.25 (tar.gz)", + "sha256": "7dc40e202140e8b4fb3d992c15a68d98dc06b805e6b218497d260abbe51f5958" + }, + { + "filename": "php-7.1.25.tar.xz", + "name": "PHP 7.1.25 (tar.xz)", + "sha256": "0fd8dad1903cd0b2d615a1fe4209f99e53b7292403c8ffa1919c0f4dd1eada88" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.26/announcement.html b/data/releases/7.1/7.1.26/announcement.html new file mode 100644 index 0000000000..48638f70aa --- /dev/null +++ b/data/releases/7.1/7.1.26/announcement.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/7.1.26/changes.txt b/data/releases/7.1/7.1.26/changes.txt new file mode 100644 index 0000000000..47fd9f6412 --- /dev/null +++ b/data/releases/7.1/7.1.26/changes.txt @@ -0,0 +1,28 @@ +- Core: + . Fixed bug #77369 (memcpy with negative length via crafted DNS response). (Stas) + +- GD: + . Fixed bug #77269 (efree() on uninitialized Heap data in imagescale leads to + use-after-free). (cmb) + . Fixed bug #77270 (imagecolormatch Out Of Bounds Write on Heap). (cmb) + +- IMAP: + . Fixed bug #77020 (null pointer dereference in imap_mail). (cmb) + +- Mbstring: + . Fixed bug #77370 (Buffer overflow on mb regex functions - fetch_token). (Stas) + . Fixed bug #77371 (heap buffer overflow in mb regex functions + - compile_string_node). (Stas) + . Fixed bug #77381 (heap buffer overflow in multibyte match_at). (Stas) + . Fixed bug #77382 (heap buffer overflow due to incorrect length in + expand_case_fold_string). (Stas) + . Fixed bug #77385 (buffer overflow in fetch_token). (Stas) + . Fixed bug #77394 (Buffer overflow in multibyte case folding - unicode). (Stas) + . Fixed bug #77418 (Heap overflow in utf32be_mbc_to_code). (Stas) + +- Phar: + . Fixed bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext). (Stas) + +- Xmlrpc: + . Fixed bug #77242 (heap out of bounds read in xmlrpc_decode()). (cmb) + . Fixed bug #77380 (Global out of bounds read in xmlrpc base64 code). (Stas) diff --git a/data/releases/7.1/7.1.26/release.json b/data/releases/7.1/7.1.26/release.json new file mode 100644 index 0000000000..fbba049a5d --- /dev/null +++ b/data/releases/7.1/7.1.26/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.26", + "date": "10 Jan 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.26.tar.bz2", + "name": "PHP 7.1.26 (tar.bz2)", + "sha256": "5b351ca86bc7e4600778aaf1d61ab9e4e38864efa86ab4cc4d5b02ea7f542ae6" + }, + { + "filename": "php-7.1.26.tar.gz", + "name": "PHP 7.1.26 (tar.gz)", + "sha256": "069315d3c3f964fd165bbbb3c2fc56005813e2cf97bed05055318dcc4e775328" + }, + { + "filename": "php-7.1.26.tar.xz", + "name": "PHP 7.1.26 (tar.xz)", + "sha256": "10b7ae634c12852fae52a22dc2262e5f12418ad59fd20da2d00d71a212235d31" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.27/announcement.html b/data/releases/7.1/7.1.27/announcement.html new file mode 100644 index 0000000000..6b5cc47292 --- /dev/null +++ b/data/releases/7.1/7.1.27/announcement.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/7.1.27/changes.txt b/data/releases/7.1/7.1.27/changes.txt new file mode 100644 index 0000000000..6b8b178cda --- /dev/null +++ b/data/releases/7.1/7.1.27/changes.txt @@ -0,0 +1,17 @@ +- Core: + . Fixed bug #77630 (rename() across the device may allow unwanted access during + processing). (Stas) + +- EXIF: + . Fixed bug #77509 (Uninitialized read in exif_process_IFD_in_TIFF). (Stas) + . Fixed bug #77540 (Invalid Read on exif_process_SOFn). (Stas) + . Fixed bug #77563 (Uninitialized read in exif_process_IFD_in_MAKERNOTE). (Stas) + . Fixed bug #77659 (Uninitialized read in exif_process_IFD_in_MAKERNOTE). (Stas) + +- PHAR: + . Fixed bug #77396 (Null Pointer Dereference in phar_create_or_parse_filename). + (bishop) + . Fixed bug #77586 (phar_tar_writeheaders_int() buffer overflow). (bishop) + +- SPL: + . Fixed bug #77431 (openFile() silently truncates after a null byte). (cmb) diff --git a/data/releases/7.1/7.1.27/release.json b/data/releases/7.1/7.1.27/release.json new file mode 100644 index 0000000000..d1e46ebeff --- /dev/null +++ b/data/releases/7.1/7.1.27/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.27", + "date": "07 Mar 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.27.tar.bz2", + "name": "PHP 7.1.27 (tar.bz2)", + "sha256": "dad7ecd30941911528e471c555a01911a68aa9219696bfc1e005f8b669f4ec4b" + }, + { + "filename": "php-7.1.27.tar.gz", + "name": "PHP 7.1.27 (tar.gz)", + "sha256": "353b9ed341048388cc95e6fa6dab587eee44a3d4d297989aa297936090864357" + }, + { + "filename": "php-7.1.27.tar.xz", + "name": "PHP 7.1.27 (tar.xz)", + "sha256": "25672a3a6060eff37c865a0c84e284da50b7ee8cd57174c78f0ae244b90a96a8" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.28/announcement.html b/data/releases/7.1/7.1.28/announcement.html new file mode 100644 index 0000000000..564f47b7bc --- /dev/null +++ b/data/releases/7.1/7.1.28/announcement.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/7.1.28/changes.txt b/data/releases/7.1/7.1.28/changes.txt new file mode 100644 index 0000000000..fd30687c0b --- /dev/null +++ b/data/releases/7.1/7.1.28/changes.txt @@ -0,0 +1,8 @@ +- EXIF: + . Fixed bug #77753 (Heap-buffer-overflow in php_ifd_get32s). (CVE-2019-11034) + (Stas) + . Fixed bug #77831 (Heap-buffer-overflow in exif_iif_add_value). + (CVE-2019-11035) (Stas) + +- SQLite3: + . Added sqlite3.defensive INI directive. (BohwaZ) diff --git a/data/releases/7.1/7.1.28/release.json b/data/releases/7.1/7.1.28/release.json new file mode 100644 index 0000000000..2eb10961c7 --- /dev/null +++ b/data/releases/7.1/7.1.28/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.28", + "date": "02 May 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.28.tar.bz2", + "name": "PHP 7.1.28 (tar.bz2)", + "sha256": "739e8733fe1fc5e69e6226da6dba7a31bacfd2e3871ad2c97a792638f22c54c9" + }, + { + "filename": "php-7.1.28.tar.gz", + "name": "PHP 7.1.28 (tar.gz)", + "sha256": "4df587338d4c5dfe27050c7ac72a6b7583ecaee9d3fbfc03427667a86e081999" + }, + { + "filename": "php-7.1.28.tar.xz", + "name": "PHP 7.1.28 (tar.xz)", + "sha256": "45131497ec0a947e3f9145c000e8fcc1f86b46518ee3f6810d80efa2d39521e2" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.29/announcement.html b/data/releases/7.1/7.1.29/announcement.html new file mode 100644 index 0000000000..3a3c29d8b3 --- /dev/null +++ b/data/releases/7.1/7.1.29/announcement.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/7.1.29/changes.txt b/data/releases/7.1/7.1.29/changes.txt new file mode 100644 index 0000000000..acac036963 --- /dev/null +++ b/data/releases/7.1/7.1.29/changes.txt @@ -0,0 +1,6 @@ +- EXIF: + . Fixed bug #77950 (Heap-buffer-overflow in _estrndup via exif_process_IFD_TAG). + (CVE-2019-11036) (Stas) + +- Mail: + . Fixed bug #77821 (Potential heap corruption in TSendMail()). (cmb) diff --git a/data/releases/7.1/7.1.29/release.json b/data/releases/7.1/7.1.29/release.json new file mode 100644 index 0000000000..6127a08c60 --- /dev/null +++ b/data/releases/7.1/7.1.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.29", + "date": "02 May 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.29.tar.bz2", + "name": "PHP 7.1.29 (tar.bz2)", + "sha256": "8528d17efe82662dc740d96ddb32217f4e161a597d709f19571b0c82fbb88335" + }, + { + "filename": "php-7.1.29.tar.gz", + "name": "PHP 7.1.29 (tar.gz)", + "sha256": "bdd0e1707100c8b87f1be516f5b95a26e3eb4114d4316eaf0663bf292ead35bb" + }, + { + "filename": "php-7.1.29.tar.xz", + "name": "PHP 7.1.29 (tar.xz)", + "sha256": "b9a9b094687edc2d9c9553d5531e38e249b569127cf3b32fe1c84280509746fb" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.3/announcement.html b/data/releases/7.1/7.1.3/announcement.html new file mode 100644 index 0000000000..bae45c7e97 --- /dev/null +++ b/data/releases/7.1/7.1.3/announcement.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/7.1.3/changes.txt b/data/releases/7.1/7.1.3/changes.txt new file mode 100644 index 0000000000..64887e6644 --- /dev/null +++ b/data/releases/7.1/7.1.3/changes.txt @@ -0,0 +1,75 @@ +- Core: + . Fixed bug #74157 (Segfault with nested generators). (Laruence) + . Fixed bug #74164 (PHP hangs when an invalid value is dynamically passed to + typehinted by-ref arg). (Laruence) + . Fixed bug #74093 (Maximum execution time of n+2 seconds exceed not written + in error_log). (Laruence) + . Fixed bug #73989 (PHP 7.1 Segfaults within Symfony test suite). + (Dmitry, Laruence) + . Fixed bug #74084 (Out of bound read - zend_mm_alloc_small). (Laruence) + . Fixed bug #73807 (Performance problem with processing large post request). + (Nikita) + . Fixed bug #73998 (array_key_exists fails on arrays created by + get_object_vars). (mhagstrand) + . Fixed bug #73954 (NAN check fails on Alpine Linux with musl). (Andrea) + . Fixed bug #73677 (Generating phar.phar core dump with gcc ASAN enabled + build). (ondrej) + +- Apache: + . Fixed bug #61471 (Incomplete POST does not timeout but is passed to PHP). + (Zheng Shao) + +- Date: + . Fixed bug #73837 ("new DateTime()" sometimes returns 1 second ago value). + (Derick) + +- FPM: + . Fixed bug #69860 (php-fpm process accounting is broken with keepalive). + (Denis Yeldandi) + +- Hash: + . Fixed bug #73127 (gost-crypto hash incorrect if input data contains long + 0xFF sequence). (Grundik) + +- GD: + . Fixed bug #74031 (ReflectionFunction for imagepng is missing last two + parameters). (finwe) + +- Mysqlnd: + . Fixed bug #74021 (fetch_array broken data. Data more then MEDIUMBLOB). + (Andrew Nester, Nikita) + +- Opcache: + . Fixed bug #74152 (if statement says true to a null variable). (Laruence) + . Fixed bug #74019 (Segfault with list). (Laruence) + +- OpenSSL: + . Fixed bug #74022 (PHP Fast CGI crashes when reading from a pfx file). + (Anatol) + . Fixed bug #74099 (Memory leak with openssl_encrypt()). (Andrew Nester) + . Fixed bug #74159 (Writing a large buffer to a non-blocking encrypted stream + fails with "bad write retry"). (trowski) + +- PDO_OCI: + . Fixed bug #54379 (PDO_OCI: UTF-8 output gets truncated). (gureedo / Oracle) + +- SQLite3: + . Fixed bug #74413 (incorrect reflection for SQLite3::enableExceptions). + (krakjoe) + +- Standard: + . Fixed bug #74005 (mail.add_x_header causes RFC-breaking lone line feed). + (Anatol) + . Fixed bug #74041 (substr_count with length=0 broken). (Nikita) + . Fixed bug #73118 (is_callable callable name reports misleading value for + anonymous classes). (Adam Saponara) + . Fixed bug #74105 (PHP on Linux should use /dev/urandom when getrandom is + not available). (Benjamin Robin) + . Fixed bug #74708 (Invalid Reflection signatures for random_bytes and + random_int). (Tyson Andre, Remi) + +- Streams: + . Fixed bug #73496 (Invalid memory access in zend_inline_hash_func). + (Laruence) + . Fixed bug #74090 (stream_get_contents maxlength>-1 returns empty string). + (Anatol) diff --git a/data/releases/7.1/7.1.3/release.json b/data/releases/7.1/7.1.3/release.json new file mode 100644 index 0000000000..d19b797afc --- /dev/null +++ b/data/releases/7.1/7.1.3/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.3", + "date": "16 Mar 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.3.tar.bz2", + "name": "PHP 7.1.3 (tar.bz2)", + "sha256": "c145924d91b7a253eccc31f8d22f15b61589cd24d78105e56240c1bb6413b94f" + }, + { + "filename": "php-7.1.3.tar.gz", + "name": "PHP 7.1.3 (tar.gz)", + "sha256": "4bfadd0012b966eced448497272150ffeede13136a961aacb9e71553b8e929ec" + }, + { + "filename": "php-7.1.3.tar.xz", + "name": "PHP 7.1.3 (tar.xz)", + "sha256": "e4887c2634778e37fd962fbdf5c4a7d32cd708482fe07b448804625570cb0bb0" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.30/announcement.html b/data/releases/7.1/7.1.30/announcement.html new file mode 100644 index 0000000000..135ea2e38a --- /dev/null +++ b/data/releases/7.1/7.1.30/announcement.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/7.1.30/changes.txt b/data/releases/7.1/7.1.30/changes.txt new file mode 100644 index 0000000000..3d7aff8a89 --- /dev/null +++ b/data/releases/7.1/7.1.30/changes.txt @@ -0,0 +1,14 @@ +- EXIF: + . Fixed bug #77988 (heap-buffer-overflow on php_jpg_get16). + (CVE-2019-11040) (Stas) + +- GD: + . Fixed bug #77973 (Uninitialized read in gdImageCreateFromXbm). + (CVE-2019-11038) (cmb) + +- Iconv: + . Fixed bug #78069 (Out-of-bounds read in iconv.c:_php_iconv_mime_decode() + due to integer overflow). (CVE-2019-11039). (maris dot adam) + +- SQLite: + . Fixed bug #77967 (Bypassing open_basedir restrictions via file uris). (Stas) diff --git a/data/releases/7.1/7.1.30/release.json b/data/releases/7.1/7.1.30/release.json new file mode 100644 index 0000000000..50bbe6d047 --- /dev/null +++ b/data/releases/7.1/7.1.30/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.30", + "date": "30 May 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.30.tar.bz2", + "name": "PHP 7.1.30 (tar.bz2)", + "sha256": "664850774fca19d2710b9aa35e9ae91214babbde9cd8d27fd3479cc97171ecb3" + }, + { + "filename": "php-7.1.30.tar.gz", + "name": "PHP 7.1.30 (tar.gz)", + "sha256": "a604edf85d5dfc28e6ff3016dad3954c50b93db69afc42295178b4fdf42e026c" + }, + { + "filename": "php-7.1.30.tar.xz", + "name": "PHP 7.1.30 (tar.xz)", + "sha256": "6310599811536dbe87e4bcf212bf93196bdfaff519d0c821e4c0068efd096a7c" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.31/announcement.html b/data/releases/7.1/7.1.31/announcement.html new file mode 100644 index 0000000000..f7b9f07963 --- /dev/null +++ b/data/releases/7.1/7.1.31/announcement.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/7.1.31/changes.txt b/data/releases/7.1/7.1.31/changes.txt new file mode 100644 index 0000000000..9144131999 --- /dev/null +++ b/data/releases/7.1/7.1.31/changes.txt @@ -0,0 +1,11 @@ +- SQLite: + . Upgraded to SQLite 3.28.0. (cmb) + +- EXIF: + . Fixed bug #78256 (heap-buffer-overflow on exif_process_user_comment). + (CVE-2019-11042) (Stas) + . Fixed bug #78222 (heap-buffer-overflow on exif_scan_thumbnail). + (CVE-2019-11041) (Stas) + +- Phar: + . Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). (cmb) diff --git a/data/releases/7.1/7.1.31/release.json b/data/releases/7.1/7.1.31/release.json new file mode 100644 index 0000000000..0ff6a36ca0 --- /dev/null +++ b/data/releases/7.1/7.1.31/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.31", + "date": "01 Aug 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.31.tar.bz2", + "name": "PHP 7.1.31 (tar.bz2)", + "sha256": "767573c2b732e78cc647602ec61fc948941a941a4071db59b522cf5e076825dd" + }, + { + "filename": "php-7.1.31.tar.gz", + "name": "PHP 7.1.31 (tar.gz)", + "sha256": "ea0558735653b9ce63e9cea41dd8f0d0b90dba6c39d39dd9a6aad5cc58b0bdfc" + }, + { + "filename": "php-7.1.31.tar.xz", + "name": "PHP 7.1.31 (tar.xz)", + "sha256": "5cb53b63592ec4361f0ab12c684b10430344821a024881a387ead4299df78fa5" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.32/announcement.html b/data/releases/7.1/7.1.32/announcement.html new file mode 100644 index 0000000000..d7604aef2b --- /dev/null +++ b/data/releases/7.1/7.1.32/announcement.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/7.1.32/changes.txt b/data/releases/7.1/7.1.32/changes.txt new file mode 100644 index 0000000000..0e846ed4d5 --- /dev/null +++ b/data/releases/7.1/7.1.32/changes.txt @@ -0,0 +1,5 @@ +- mbstring: + . Fixed CVE-2019-13224 (don't allow different encodings for onig_new_deluxe) (stas) + +- pcre: + . Fixed bug #75457 (heap use-after-free in pcrelib) (cmb) diff --git a/data/releases/7.1/7.1.32/release.json b/data/releases/7.1/7.1.32/release.json new file mode 100644 index 0000000000..6bd0669e93 --- /dev/null +++ b/data/releases/7.1/7.1.32/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.32", + "date": "29 Aug 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.32.tar.bz2", + "name": "PHP 7.1.32 (tar.bz2)", + "sha256": "d7c7a1adddc75ac17f63349e966db25930b6b3ce736640349bea9e10909cab7a" + }, + { + "filename": "php-7.1.32.tar.gz", + "name": "PHP 7.1.32 (tar.gz)", + "sha256": "6e51a2fc610352438b2a1c40310468a1e2b5baf2fff43be77f9f408a9111590c" + }, + { + "filename": "php-7.1.32.tar.xz", + "name": "PHP 7.1.32 (tar.xz)", + "sha256": "7f38b5bdaae3184d325a8c70e86c010afcc33651d15faafe277a0db6d2ea2741" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.33/announcement.html b/data/releases/7.1/7.1.33/announcement.html new file mode 100644 index 0000000000..2f42775166 --- /dev/null +++ b/data/releases/7.1/7.1.33/announcement.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/7.1.33/changes.txt b/data/releases/7.1/7.1.33/changes.txt new file mode 100644 index 0000000000..187cba8522 --- /dev/null +++ b/data/releases/7.1/7.1.33/changes.txt @@ -0,0 +1,3 @@ +- FPM: + . Fixed bug #78599 (env_path_info underflow in fpm_main.c can lead to RCE). + (CVE-2019-11043) (Jakub Zelenka) diff --git a/data/releases/7.1/7.1.33/release.json b/data/releases/7.1/7.1.33/release.json new file mode 100644 index 0000000000..a58f927720 --- /dev/null +++ b/data/releases/7.1/7.1.33/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.33", + "date": "24 Oct 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.33.tar.bz2", + "name": "PHP 7.1.33 (tar.bz2)", + "sha256": "95a5e5f2e2b79b376b737a82d9682c91891e60289fa24183463a2aca158f4f4b" + }, + { + "filename": "php-7.1.33.tar.gz", + "name": "PHP 7.1.33 (tar.gz)", + "sha256": "0055f368ffefe51d5a4483755bd17475e88e74302c08b727952831c5b2682ea2" + }, + { + "filename": "php-7.1.33.tar.xz", + "name": "PHP 7.1.33 (tar.xz)", + "sha256": "bd7c0a9bd5433289ee01fd440af3715309faf583f75832b64fe169c100d52968" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.4/announcement.html b/data/releases/7.1/7.1.4/announcement.html new file mode 100644 index 0000000000..8e910779f8 --- /dev/null +++ b/data/releases/7.1/7.1.4/announcement.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/7.1.4/changes.txt b/data/releases/7.1/7.1.4/changes.txt new file mode 100644 index 0000000000..9b7f0474c7 --- /dev/null +++ b/data/releases/7.1/7.1.4/changes.txt @@ -0,0 +1,52 @@ +- Core: + . Fixed bug #74149 (static embed SAPI linkage error). (krakjoe) + . Fixed bug #73370 (falsely exits with "Out of Memory" when using + USE_ZEND_ALLOC=0). (Nikita) + . Fixed bug #73960 (Leak with instance method calling static method with + referenced return). (Nikita) + . Fixed bug #69676 (Resolution of self::FOO in class constants not correct). + (Nikita) + . Fixed bug #74265 (Build problems after 7.0.17 release: undefined reference + to `isfinite'). (Nikita) + . Fixed bug #74302 (yield fromLABEL is over-greedy). (Sara) + +- Apache: + . Reverted patch for bug #61471, fixes bug #74318. (Anatol) + +- Date: + . Fixed bug #72096 (Swatch time value incorrect for dates before 1970). (mcq8) + +- DOM: + . Fixed bug #74004 (LIBXML_NOWARNING flag ingnored on loadHTML*). + (somedaysummer) + +- iconv: + . Fixed bug #74230 (iconv fails to fail on surrogates). (Anatol) + +- OCI8: + . Fixed uninitialized data causing random crash. (Dmitry) + +- Opcache: + . Fixed bug #74250 (OPcache compilation performance regression in PHP 5.6/7 + with huge classes). (Nikita) + +- OpenSSL: + . Fixed bug #72333 (fwrite() on non-blocking SSL sockets doesn't work). + (Jakub Zelenka) + +- PDO MySQL: + . Fixed bug #71003 (Expose MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT to PDO + interface). (Thomas Orozco) + +- SPL: + . Fixed bug #74058 (ArrayObject can not notice changes). (Andrew Nester) + +- Sqlite: + . Implemented FR #74217 (Allow creation of deterministic sqlite functions). + (Andrew Nester) + +- Streams: + . Fixed bug #74216 (Correctly fail on invalid IP address ports). (Sara) + +- Zlib: + . Fixed bug #74240 (deflate_add can allocate too much memory). (Matt Bonneau) diff --git a/data/releases/7.1/7.1.4/release.json b/data/releases/7.1/7.1.4/release.json new file mode 100644 index 0000000000..51ff5c302a --- /dev/null +++ b/data/releases/7.1/7.1.4/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.4", + "date": "13 Apr 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.4.tar.bz2", + "name": "PHP 7.1.4 (tar.bz2)", + "sha256": "39bf697836e2760b3a44ea322e9e5f1f5b1f07abeb0111f6495eff7538e25805" + }, + { + "filename": "php-7.1.4.tar.gz", + "name": "PHP 7.1.4 (tar.gz)", + "sha256": "ed0006c86de503684dde04c6dd811ea2354a3b6d10ebd9f0cb103dcd28f0e70f" + }, + { + "filename": "php-7.1.4.tar.xz", + "name": "PHP 7.1.4 (tar.xz)", + "sha256": "71514386adf3e963df087c2044a0b3747900b8b1fc8da3a99f0a0ae9180d300b" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.5/announcement.html b/data/releases/7.1/7.1.5/announcement.html new file mode 100644 index 0000000000..6b24ae9128 --- /dev/null +++ b/data/releases/7.1/7.1.5/announcement.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/7.1.5/changes.txt b/data/releases/7.1/7.1.5/changes.txt new file mode 100644 index 0000000000..18eb34f804 --- /dev/null +++ b/data/releases/7.1/7.1.5/changes.txt @@ -0,0 +1,78 @@ +- Core: + . Fixed bug #74408 (Endless loop bypassing execution time limit). (Laruence) + . Fixed bug #74353 (Segfault when killing within bash script trap code). + (Laruence) + . Fixed bug #74340 (Magic function __get has different behavior in php 7.1.x). + (Nikita) + . Fixed bug #74188 (Null coalescing operator fails for undeclared static + class properties). (tpunt) + . Fixed bug #74444 (multiple catch freezes in some cases). (David Matějka) + . Fixed bug #74410 (stream_select() is broken on Windows Nanoserver). + (Matt Ficken) + . Fixed bug #74337 (php-cgi.exe crash on facebook callback). + (Anton Serbulov) + . Patch for bug #74216 was reverted. (Anatol) + +- Date: + . Fixed bug #74404 (Wrong reflection on DateTimeZone::getTransitions). + (krakjoe) + . Fixed bug #74080 (add constant for RFC7231 format datetime). (duncan3dc) + +- DOM: + . Fixed bug #74416 (Wrong reflection on DOMNode::cloneNode). + (Remi, Fabien Villepinte) + +- Fileinfo: + . Fixed bug #74379 (syntax error compile error in libmagic/apprentice.c). + (Laruence) + +- GD: + . Fixed bug #74343 (compile fails on solaris 11 with system gd2 library). + (krakjoe) + +- MySQLi: + . Fixed bug #74432 (mysqli_connect adding ":3306" to $host if $port parameter + not given). (Anatol) + +- MySQLnd: + . Fixed bug #74376 (Invalid free of persistent results on error/connection + loss). (Yussuf Khalil) + +- Intl: + . Fixed bug #65683 (Intl does not support DateTimeImmutable). (Ben Scholzen) + . Fixed bug #74298 (IntlDateFormatter->format() doesn't return + microseconds/fractions). (Andrew Nester) + . Fixed bug #74433 (wrong reflection for Normalizer methods). (villfa) + . Fixed bug #74439 (wrong reflection for Locale methods). (villfa) + +- Opcache: + . Fixed bug #74456 (Segmentation error while running a script in CLI mode). + (Laruence) + . Fixed bug #74431 (foreach infinite loop). (Nikita) + . Fixed bug #74442 (Opcached version produces a nested array). (Nikita) + +- OpenSSL: + . Fixed bug #73833 (null character not allowed in openssl_pkey_get_private). + (Jakub Zelenka) + . Fixed bug #73711 (Segfault in openssl_pkey_new when generating DSA or DH + key). (Jakub Zelenka) + . Fixed bug #74341 (openssl_x509_parse fails to parse ASN.1 UTCTime without + seconds). (Moritz Fain) + . Fixed bug #73808 (iv length warning too restrictive for aes-128-ccm). + (Jakub Zelenka) + +- phar: + . Fixed bug #74383 (phar method parameters reflection correction). + (mhagstrand) + +- Readline: + . Fixed bug #74489 (readline() immediately returns false in interactive + console mode). (Anatol) + +- Standard: + . Fixed bug #72071 (setcookie allows max-age to be negative). (Craig Duncan) + . Fixed bug #74361 (Compaction in array_rand() violates COW). (Nikita) + +- Streams: + . Fixed bug #74429 (Remote socket URI with unique persistence identifier + broken). (Sara) diff --git a/data/releases/7.1/7.1.5/release.json b/data/releases/7.1/7.1.5/release.json new file mode 100644 index 0000000000..bd11378410 --- /dev/null +++ b/data/releases/7.1/7.1.5/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.5", + "date": "11 May 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.5.tar.bz2", + "name": "PHP 7.1.5 (tar.bz2)", + "sha256": "28eaa4784f1bd8b7dc71206dc8c4375510199432dc17af6906b14d16b3058697" + }, + { + "filename": "php-7.1.5.tar.gz", + "name": "PHP 7.1.5 (tar.gz)", + "sha256": "f7ff8039f5c3a7da4d62a3cce6378280224acfa27ab5a5bee25b7439bce01c17" + }, + { + "filename": "php-7.1.5.tar.xz", + "name": "PHP 7.1.5 (tar.xz)", + "sha256": "d149a3c396c45611f5dc6bf14be190f464897145a76a8e5851cf18ff7094f6ac" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.6/announcement.html b/data/releases/7.1/7.1.6/announcement.html new file mode 100644 index 0000000000..a2116d01ba --- /dev/null +++ b/data/releases/7.1/7.1.6/announcement.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/7.1.6/changes.txt b/data/releases/7.1/7.1.6/changes.txt new file mode 100644 index 0000000000..4be6e22568 --- /dev/null +++ b/data/releases/7.1/7.1.6/changes.txt @@ -0,0 +1,31 @@ +- Core: + . Fixed bug #74600 (crash (SIGSEGV) in _zend_hash_add_or_update_i). + (Laruence) + . Fixed bug #74546 (SIGILL in ZEND_FETCH_CLASS_CONSTANT_SPEC_CONST_CONST). + (Laruence) + . Fixed bug #74589 (__DIR__ wrong for unicode character). (Anatol) + +- intl: + . Fixed bug #74468 (wrong reflection on Collator::sortWithSortKeys). (villfa) + +- MySQLi: + . Fixed bug #74547 (mysqli::change_user() doesn't accept null as $database + argument w/strict_types). (Anatol) + +- Opcache: + . Fixed bug #74596 (SIGSEGV with opcache.revalidate_path enabled). (Laruence) + +- phar: + . Fixed bug #51918 (Phar::webPhar() does not handle requests sent through PUT + and DELETE method). (Christian Weiske) + +- Readline: + . Fixed bug #74490 (readline() moves the cursor to the beginning of the line). + (Anatol) + +- Standard: + . Fixed bug #74510 (win32/sendmail.c anchors CC header but not BCC). + (Damian Wadley, Anatol) + +- xmlreader: + . Fixed bug #74457 (Wrong reflection on XMLReader::expand). (villfa) diff --git a/data/releases/7.1/7.1.6/release.json b/data/releases/7.1/7.1.6/release.json new file mode 100644 index 0000000000..1539920289 --- /dev/null +++ b/data/releases/7.1/7.1.6/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.6", + "date": "08 Jun 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.6.tar.bz2", + "name": "PHP 7.1.6 (tar.bz2)", + "sha256": "6e3576ca77672a18461a4b089c5790647f1b2c19f82e4f5e94c962609aabffcf" + }, + { + "filename": "php-7.1.6.tar.gz", + "name": "PHP 7.1.6 (tar.gz)", + "sha256": "7ff8c01af791c7e499ee77e1b82e4b1d56e379efe1f706b1203d48751481fd9f" + }, + { + "filename": "php-7.1.6.tar.xz", + "name": "PHP 7.1.6 (tar.xz)", + "sha256": "01584dc521ab7ec84b502b61952f573652fe6aa00c18d6d844fb9209f14b245b" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.7/announcement.html b/data/releases/7.1/7.1.7/announcement.html new file mode 100644 index 0000000000..8d713189f8 --- /dev/null +++ b/data/releases/7.1/7.1.7/announcement.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/7.1.7/changes.txt b/data/releases/7.1/7.1.7/changes.txt new file mode 100644 index 0000000000..f7bbdecc74 --- /dev/null +++ b/data/releases/7.1/7.1.7/changes.txt @@ -0,0 +1,72 @@ +- Core: + . Fixed bug #74738 (Multiple [PATH=] and [HOST=] sections not properly + parsed). (Manuel Mausz) + . Fixed bug #74658 (Undefined constants in array properties result in broken + properties). (Laruence) + . Fixed misparsing of abstract unix domain socket names. (Sara) + . Fixed bug #74603 (PHP INI Parsing Stack Buffer Overflow Vulnerability). + (Stas) + . Fixed bug #74101, bug #74614 (Unserialize Heap Use-After-Free (READ: 1) in + zval_get_type). (Nikita) + . Fixed bug #74111 (Heap buffer overread (READ: 1) finish_nested_data from + unserialize). (Nikita) + . Fixed bug #74819 (wddx_deserialize() heap out-of-bound read via + php_parse_date()). (Derick) + +- Date: + . Fixed bug #74639 (implement clone for DatePeriod and DateInterval). + (andrewnester) + +- DOM: + . Fixed bug #69373 (References to deleted XPath query results). (ttoohey) + +- GD: + . Fixed bug #74435 (Buffer over-read into uninitialized memory). (cmb) + +- Intl: + . Fixed bug #73473 (Stack Buffer Overflow in msgfmt_parse_message). (libnex) + . Fixed bug #74705 (Wrong reflection on Collator::getSortKey and + collator_get_sort_key). (Tyson Andre, Remi) + +- Mbstring: + . Add oniguruma upstream fix (CVE-2017-9224, CVE-2017-9226, CVE-2017-9227, + CVE-2017-9228, CVE-2017-9229) (Remi, Mamoru TASAKA) + +- OCI8: + . Add TAF callback (PR #2459). (KoenigsKind) + +- Opcache: + . Fixed bug #74663 (Segfault with opcache.memory_protect and + validate_timestamp). (Laruence) + . Revert opcache.enable_cli to default disabled. (Nikita) + +- OpenSSL: + . Fixed bug #74720 (pkcs7_en/decrypt does not work if \x1a is used in + content). (Anatol) + . Fixed bug #74651 (negative-size-param (-1) in memcpy in zif_openssl_seal()). + (Stas) + +- PDO_OCI: + . Support Instant Client 12.2 in --with-pdo-oci configure option. + (Tianfang Yang) + +- Reflection: + . Fixed bug #74673 (Segfault when cast Reflection object to string with + undefined constant). (Laruence) + +- SPL: + . Fixed bug #74478 (null coalescing operator failing with SplFixedArray). + (jhdxr) + +- FTP: + . Fixed bug #74598 (ftp:// wrapper ignores context arg). (Sara) + +- PHAR: + . Fixed bug #74386 (Phar::__construct reflection incorrect). (villfa) + +- SOAP + . Fixed bug #74679 (Incorrect conversion array with WSDL_CACHE_MEMORY). + (Dmitry) + +- Streams: + . Fixed bug #74556 (stream_socket_get_name() returns '\0'). (Sara) diff --git a/data/releases/7.1/7.1.7/release.json b/data/releases/7.1/7.1.7/release.json new file mode 100644 index 0000000000..49fba98b5f --- /dev/null +++ b/data/releases/7.1/7.1.7/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.1.7", + "date": "06 Jul 2017", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.1.7.tar.bz2", + "name": "PHP 7.1.7 (tar.bz2)", + "sha256": "079b6792987f38dc485f92258c04f9e02dedd593f9d260ebe725343f812d1ff8" + }, + { + "filename": "php-7.1.7.tar.gz", + "name": "PHP 7.1.7 (tar.gz)", + "sha256": "e0dbab8da601ee5119368d6f93dc1a86ad53b799d2f8c1209d6b827a2b259f92" + }, + { + "filename": "php-7.1.7.tar.xz", + "name": "PHP 7.1.7 (tar.xz)", + "sha256": "0d42089729be7b2bb0308cbe189c2782f9cb4b07078c8a235495be5874fff729" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.8/announcement.html b/data/releases/7.1/7.1.8/announcement.html new file mode 100644 index 0000000000..c4aae8d3a6 --- /dev/null +++ b/data/releases/7.1/7.1.8/announcement.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/7.1.8/changes.txt b/data/releases/7.1/7.1.8/changes.txt new file mode 100644 index 0000000000..2eab412c30 --- /dev/null +++ b/data/releases/7.1/7.1.8/changes.txt @@ -0,0 +1,47 @@ +- Core: + . Fixed bug #74832 (Loading PHP extension with already registered function + name leads to a crash). (jpauli) + . Fixed bug #74780 (parse_url() broken when query string contains colon). + (jhdxr) + . Fixed bug #74761 (Unary operator expected error on some systems). (petk) + . Fixed bug #73900 (Use After Free in unserialize() SplFixedArray). (nikic) + . Fixed bug #74923 (Crash when crawling through network share). (Anatol) + . Fixed bug #74913 (fixed incorrect poll.h include). (petk) + . Fixed bug #74906 (fixed incorrect errno.h include). (petk) + +- Date: + . Fixed bug #74852 (property_exists returns true on unknown DateInterval + property). (jhdxr) + +- OCI8: + . Fixed bug #74625 (Integer overflow in oci_bind_array_by_name). (Ingmar Runge) + +- Opcache: + . Fixed bug #74623 (Infinite loop in type inference when using HTMLPurifier). + (nikic) + +- OpenSSL: + . Fixed bug #74798 (pkcs7_en/decrypt does not work if \x0a is used in content). + (Anatol) + . Added OPENSSL_DONT_ZERO_PAD_KEY constant to prevent key padding and fix bug + #71917 (openssl_open() returns junk on envelope < 16 bytes) and bug #72362 + (OpenSSL Blowfish encryption is incorrect for short keys). (Jakub Zelenka) + +- PDO: + . Fixed bug #69356 (PDOStatement::debugDumpParams() truncates query). (Adam + Baratz) + +- SPL: + . Fixed bug #73471 (PHP freezes with AppendIterator). (jhdxr) + +- SQLite3: + . Fixed bug #74883 (SQLite3::__construct() produces "out of memory" exception + with invalid flags). (Anatol) + +- Wddx: + . Fixed bug #73173 (huge memleak when wddx_unserialize). + (tloi at fortinet dot com) + +- zlib: + . Fixed bug #73944 (dictionary option of inflate_init() does not work). + (wapmorgan) diff --git a/data/releases/7.1/7.1.8/release.json b/data/releases/7.1/7.1.8/release.json new file mode 100644 index 0000000000..ce4a11744f --- /dev/null +++ b/data/releases/7.1/7.1.8/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.8", + "date": "03 Aug 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.8.tar.bz2", + "name": "PHP 7.1.8 (tar.bz2)", + "sha256": "7064a00a9450565190890c7a4be04e646e0be73b2e0f8c46ae34419f343ca2f8" + }, + { + "filename": "php-7.1.8.tar.gz", + "name": "PHP 7.1.8 (tar.gz)", + "sha256": "63517b3264f7cb17fb58e1ce60a6cd8903160239b7cf568d52024e9cf4d6cb04" + }, + { + "filename": "php-7.1.8.tar.xz", + "name": "PHP 7.1.8 (tar.xz)", + "sha256": "8943858738604acb33ecedb865d6c4051eeffe4e2d06f3a3c8f794daccaa2aab" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.1/7.1.9/announcement.html b/data/releases/7.1/7.1.9/announcement.html new file mode 100644 index 0000000000..cc2fef9b4f --- /dev/null +++ b/data/releases/7.1/7.1.9/announcement.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.1/7.1.9/changes.txt b/data/releases/7.1/7.1.9/changes.txt new file mode 100644 index 0000000000..22987959d0 --- /dev/null +++ b/data/releases/7.1/7.1.9/changes.txt @@ -0,0 +1,72 @@ +- Core: + . Fixed bug #74947 (Segfault in scanner on INF number). (Laruence) + . Fixed bug #74954 (null deref and segfault in zend_generator_resume()). (Bob) + . Fixed bug #74725 (html_errors=1 breaks unhandled exceptions). (Andrea) + . Fixed bug #75063 (Main CWD initialized with wrong codepage). (Anatol) + . Fixed bug #75349 (NAN comparison). (Sara) + +- cURL: + . Fixed bug #74125 (Fixed finding CURL on systems with multiarch support). + (cebe) + +- Date: + . Fixed bug #75002 (Null Pointer Dereference in timelib_time_clone). (Derick) + +- Intl: + . Fixed bug #74993 (Wrong reflection on some locale_* functions). (Sara) + +- Mbstring: + . Fixed bug #71606 (Segmentation fault mb_strcut with HTML-ENTITIES encoding). + (cmb) + . Fixed bug #62934 (mb_convert_kana() does not convert iteration marks). + (Nikita) + . Fixed bug #75001 (Wrong reflection on mb_eregi_replace). (Fabien + Villepinte) + +- MySQLi: + . Fixed bug #74968 (PHP crashes when calling mysqli_result::fetch_object with + an abstract class). (Anatol) + +- OCI8: + . Expose oci_unregister_taf_callback() (Tianfang Yang) + +- Opcache: + . Fixed bug #74980 (Narrowing occurred during type inference). (Laruence) + +- phar: + . Fixed bug #74991 (include_path has a 4096 char limit in some cases). + (bwbroersma) + +- Reflection: + . Fixed bug #74949 (null pointer dereference in _function_string). (Laruence) + +- Session: + . Fixed bug #74892 (Url Rewriting (trans_sid) not working on urls that start + with "#"). (Andrew Nester) + . Fixed bug #74833 (SID constant created with wrong module number). (Anatol) + +- SimpleXML: + . Fixed bug #74950 (nullpointer deref in simplexml_element_getDocNamespaces). + (Laruence) + +- SPL: + . Fixed bug #75049 (spl_autoload_unregister can't handle + spl_autoload_functions results). (Laruence) + . Fixed bug #74669 (Unserialize ArrayIterator broken). (Andrew Nester) + . Fixed bug #74977 (Appending AppendIterator leads to segfault). + (Andrew Nester) + . Fixed bug #75015 (Crash in recursive iterator destructors). (Julien) + +- Standard: + . Fixed bug #75075 (unpack with X* causes infinity loop). (Laruence) + . Fixed bug #74103 (heap-use-after-free when unserializing invalid array + size). (Nikita) + . Fixed bug #75054 (A Denial of Service Vulnerability was found when + performing deserialization). (Nikita) + +- WDDX: + . Fixed bug #73793 (WDDX uses wrong decimal seperator). (cmb) + +- XMLRPC: + . Fixed bug #74975 (Incorrect xmlrpc serialization for classes with declared + properties). (blar) diff --git a/data/releases/7.1/7.1.9/release.json b/data/releases/7.1/7.1.9/release.json new file mode 100644 index 0000000000..990e72ff28 --- /dev/null +++ b/data/releases/7.1/7.1.9/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.1.9", + "date": "31 Aug 2017", + "tags": [], + "source": [ + { + "filename": "php-7.1.9.tar.bz2", + "name": "PHP 7.1.9 (tar.bz2)", + "sha256": "314dcc10dfdd7c4443edb4fe1e133a44f2b2a8351be8c9eb6ab9222d45fd9bae" + }, + { + "filename": "php-7.1.9.tar.gz", + "name": "PHP 7.1.9 (tar.gz)", + "sha256": "499c31ad19b2ff553ae686ebf53749aa2351af7d955ee9f1986f144089561a4b" + }, + { + "filename": "php-7.1.9.tar.xz", + "name": "PHP 7.1.9 (tar.xz)", + "sha256": "ec9ca348dd51f19a84dc5d33acfff1fba1f977300604bdac08ed46ae2c281e8c" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.0/announcement.html b/data/releases/7.2/7.2.0/announcement.html new file mode 100644 index 0000000000..dbf13fa6a7 --- /dev/null +++ b/data/releases/7.2/7.2.0/announcement.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/7.2.0/changes.txt b/data/releases/7.2/7.2.0/changes.txt new file mode 100644 index 0000000000..30711f796d --- /dev/null +++ b/data/releases/7.2/7.2.0/changes.txt @@ -0,0 +1,317 @@ +- BCMath: + . Fixed bug #46564 (bcmod truncates fractionals). (liborm85) + +- CLI: + . Fixed bug #74849 (Process is started as interactive shell in PhpStorm). + (Anatol) + . Fixed bug #74979 (Interactive shell opening instead of script execution + with -f flag). (Anatol) + +- CLI server: + . Fixed bug #60471 (Random "Invalid request (unexpected EOF)" using a router + script). (SammyK) + +- Core: + . Added ZEND_COUNT, ZEND_GET_CLASS, ZEND_GET_CALLED_CLASS, ZEND_GET_TYPE, + ZEND_FUNC_NUM_ARGS, ZEND_FUNC_GET_ARGS instructions, to implement + corresponding builtin functions. (Dmitry) + . "Countable" interface is moved from SPL to Core. (Dmitry) + . Added ZEND_IN_ARRAY instruction, implementing optimized in_array() builtin + function, through hash lookup in flipped array. (Dmitry) + . Removed IS_TYPE_IMMUTABLE (it's the same as COPYABLE & !REFCOUNTED). (Dmitry) + . Removed the sql.safe_mode directive. (Kalle) + . Removed support for Netware. (Kalle) + . Renamed ReflectionClass::isIterateable() to ReflectionClass::isIterable() + (alias original name for BC). (Sara) + . Fixed bug #54535 (WSA cleanup executes before MSHUTDOWN). (Kalle) + . Implemented FR #69791 (Disallow mail header injections by extra headers) + (Yasuo) + . Implemented FR #49806 (proc_nice() for Windows). (Kalle) + . Fix pthreads detection when cross-compiling (ffontaine) + . Fixed memory leaks caused by exceptions thrown from destructors. (Bob, + Dmitry). + . Fixed bug #73215 (uniqid() should use better random source). (Yasuo) + . Implemented FR #72768 (Add ENABLE_VIRTUAL_TERMINAL_PROCESSING flag for + php.exe). (Michele Locati) + . Implemented "Convert numeric keys in object/array casts" RFC, fixes + bugs #53838, #61655, #66173, #70925, #72254, etc. (Andrea) + . Implemented "Deprecate and Remove Bareword (Unquoted) Strings" RFC. + (Rowan Collins) + . Raised minimum supported Windows versions to Windows 7/Server 2008 R2. + (Anatol) + . Implemented minor optimization in array_keys/array_values(). (Sara) + . Added PHP_OS_FAMILY constant to determine on which OS we are. (Jan Altensen) + . Fixed bug #73987 (Method compatibility check looks to original + definition and not parent). (pmmaga) + . Fixed bug #73991 (JSON_OBJECT_AS_ARRAY not respected). (Sara) + . Fixed bug #74053 (Corrupted class entries on shutdown when a destructor + spawns another object). (jim at commercebyte dot com) + . Fixed bug #73971 (Filename got limited to MAX_PATH on Win32 when scan + directory). (Anatol) + . Fixed bug #72359, bug #72451, bug #73706, bug #71115 and others related + to interned strings handling in TS builds. (Anatol, Dmitry) + . Implemented "Trailing Commas In List Syntax" RFC for group use lists only. + (Sammy Kaye Powers) + . Fixed bug #74269 (It's possible to override trait property with different + loosely-equal value). (pmmaga) + . Fixed bug #61970 (Restraining __construct() access level in subclass gives + a fatal error). (pmmaga) + . Fixed bug #63384 (Cannot override an abstract method with an abstract + method). (pmmaga, wes) + . Fixed bug #74607 (Traits enforce different inheritance rules). (pmmaga) + . Fixed misparsing of abstract unix domain socket names. (Sara) + . Change PHP_OS_FAMILY value from "OSX" to "Darwin". (Sebastian, Kalle) + . Allow loading PHP/Zend extensions by name in ini files (extension=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/7.2.1/changes.txt b/data/releases/7.2/7.2.1/changes.txt new file mode 100644 index 0000000000..a1699f9156 --- /dev/null +++ b/data/releases/7.2/7.2.1/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Fixed bug #75573 (Segmentation fault in 7.1.12 and 7.0.26). (Laruence) + . Fixed bug #75384 (PHP seems incompatible with OneDrive files on demand). + (Anatol) + . Fixed bug #75525 (Access Violation in vcruntime140.dll). (Anatol) + . Fixed bug #74862 (Unable to clone instance when private __clone defined). + (Daniel Ciochiu) + . Fixed bug #75074 (php-process crash when is_file() is used with strings + longer 260 chars). (Anatol) + . Fixed bug #69727 (Remove timestamps from build to make it reproducible). + (jelle van der Waa) + +- CLI server: + . Fixed bug #73830 (Directory does not exist). (Anatol) + +- FPM: + . Fixed bug #64938 (libxml_disable_entity_loader setting is shared between + requests). (Remi) + +- GD: + . Fixed bug #75571 (Potential infinite loop in gdImageCreateFromGifCtx). + (Christoph) + +- Opcache: + . Fixed bug #75608 ("Narrowing occurred during type inference" error). + (Laruence, Dmitry) + . Fixed bug #75579 (Interned strings buffer overflow may cause crash). + (Dmitry) + . Fixed bug #75570 ("Narrowing occurred during type inference" error). + (Dmitry) + . Fixed bug #75681 (Warning: Narrowing occurred during type inference, + specific case). (Nikita) + . Fixed bug #75556 (Invalid opcode 138/1/1). (Laruence) + +- PCRE: + . Fixed bug #74183 (preg_last_error not returning error code after error). + (Andrew Nester) + +- Phar: + . Fixed bug #74782 (remove file name from output to avoid XSS). (stas) + +- Standard: + . Fixed bug #75511 (fread not free unused buffer). (Laruence) + . Fixed bug #75514 (mt_rand returns value outside [$min,$max]+ on 32-bit) + (Remi) + . Fixed bug #75535 (Inappropriately parsing HTTP response leads to PHP + segment fault). (Nikita) + . Fixed bug #75409 (accept EFAULT in addition to ENOSYS as indicator + that getrandom() is missing). (sarciszewski) + . Fixed bug #73124 (php_ini_scanned_files() not reporting correctly). + (John Stevenson) + . Fixed bug #75574 (putenv does not work properly if parameter contains + non-ASCII unicode character). (Anatol) + +- Zip: + . Fixed bug #75540 (Segfault with libzip 1.3.1). (Remi) diff --git a/data/releases/7.2/7.2.1/release.json b/data/releases/7.2/7.2.1/release.json new file mode 100644 index 0000000000..2fdb7b7a32 --- /dev/null +++ b/data/releases/7.2/7.2.1/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.1", + "date": "4 Jan 2018", + "tags": [], + "source": [ + { + "filename": "php-7.2.1.tar.bz2", + "name": "PHP 7.2.1 (tar.bz2)", + "sha256": "fe06793f268a4dd29cbc5f4ef415f01e786877152b02221ad7d18dbb6864eb79" + }, + { + "filename": "php-7.2.1.tar.gz", + "name": "PHP 7.2.1 (tar.gz)", + "sha256": "8ecb2950571054a00687ccbd023874a4a075ccd1e2ec3dc00fc25ef589a77dba" + }, + { + "filename": "php-7.2.1.tar.xz", + "name": "PHP 7.2.1 (tar.xz)", + "sha256": "6c6cf82fda6660ed963821eb0525214bb3547e8e29f447b9c15b2d8e6efd8822" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.10/announcement.html b/data/releases/7.2/7.2.10/announcement.html new file mode 100644 index 0000000000..df4a4c7e4d --- /dev/null +++ b/data/releases/7.2/7.2.10/announcement.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/7.2.10/changes.txt b/data/releases/7.2/7.2.10/changes.txt new file mode 100644 index 0000000000..9a5466a0c6 --- /dev/null +++ b/data/releases/7.2/7.2.10/changes.txt @@ -0,0 +1,61 @@ +- Core: + . Fixed bug #76754 (parent private constant in extends class memory leak). + (Laruence) + . Fixed bug #72443 (Generate enabled extension). (petk) + . Fixed bug #75797 (Memory leak when using class_alias() in non-debug mode). + (Massimiliano Braglia) + +- Apache2: + . Fixed bug #76582 (Apache bucket brigade sometimes becomes invalid). (stas) + +- Bz2: + . Fixed arginfo for bzcompress. (Tyson Andre) + +- gettext: + . Fixed bug #76517 (incorrect restoring of LDFLAGS). (sji) + +- iconv: + . Fixed bug #68180 (iconv_mime_decode can return extra characters in a + header). (cmb) + . Fixed bug #63839 (iconv_mime_decode_headers function is skipping headers). + (cmb) + . Fixed bug #60494 (iconv_mime_decode does ignore special characters). (cmb) + . Fixed bug #55146 (iconv_mime_decode_headers() skips some headers). (cmb) + +- intl: + . Fixed bug #74484 (MessageFormatter::formatMessage memory corruption with + 11+ named placeholders). (Anatol) + +- libxml: + . Fixed bug #76777 ("public id" parameter of libxml_set_external_entity_loader + callback undefined). (Ville Hukkamäki) + +- mbstring: + . Fixed bug #76704 (mb_detect_order return value varies based on argument + type). (cmb) + +- Opcache: + . Fixed bug #76747 (Opcache treats path containing "test.pharma.tld" as a phar + file). (Laruence) + +- OpenSSL: + . Fixed bug #76705 (unusable ssl => peer_fingerprint in + stream_context_create()). (Jakub Zelenka) + +- phpdbg: + . Fixed bug #76595 (phpdbg man page contains outdated information). + (Kevin Abel) + +- SPL: + . Fixed bug #68825 (Exception in DirectoryIterator::getLinkTarget()). (cmb) + . Fixed bug #68175 (RegexIterator pregFlags are NULL instead of 0). (Tim + Siebels) + +- Standard: + . Fixed bug #76778 (array_reduce leaks memory if callback throws exception). + (cmb) + +- zlib: + . Fixed bug #65988 (Zlib version check fails when an include/zlib/ style dir + is passed to the --with-zlib configure option). (Jay Bonci) + . Fixed bug #76709 (Minimal required zlib library is 1.2.0.4). (petk) diff --git a/data/releases/7.2/7.2.10/release.json b/data/releases/7.2/7.2.10/release.json new file mode 100644 index 0000000000..0dae6f05ae --- /dev/null +++ b/data/releases/7.2/7.2.10/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.10", + "date": "13 Sep 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.10.tar.bz2", + "name": "PHP 7.2.10 (tar.bz2)", + "sha256": "01b6129a0921a1636b07da9bc598a876669e45a462cef4b5844fc26862dbda9d" + }, + { + "filename": "php-7.2.10.tar.gz", + "name": "PHP 7.2.10 (tar.gz)", + "sha256": "d2d908b49b6005e65dcc46cdc986603a19b7ff103119fce8ddd4648586d430a4" + }, + { + "filename": "php-7.2.10.tar.xz", + "name": "PHP 7.2.10 (tar.xz)", + "sha256": "01c2154a3a8e3c0818acbdbc1a956832c828a0380ce6d1d14fea495ea21804f0" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.11/announcement.html b/data/releases/7.2/7.2.11/announcement.html new file mode 100644 index 0000000000..5632157719 --- /dev/null +++ b/data/releases/7.2/7.2.11/announcement.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/7.2.11/changes.txt b/data/releases/7.2/7.2.11/changes.txt new file mode 100644 index 0000000000..3866fea119 --- /dev/null +++ b/data/releases/7.2/7.2.11/changes.txt @@ -0,0 +1,41 @@ +- Core: + . Fixed bug #76800 (foreach inconsistent if array modified during loop). + (Dmitry) + . Fixed bug #76901 (method_exists on SPL iterator passthrough method corrupts + memory). (Nikita) + +- CURL: + . Fixed bug #76480 (Use curl_multi_wait() so that timeouts are respected). + (Pierrick) + +- iconv: + . Fixed bug #66828 (iconv_mime_encode Q-encoding longer than it should be). + (cmb) + +- Opcache: + . Fixed bug #76832 (ZendOPcache.MemoryBase periodically deleted by the OS). + (Anatol) + . Fixed bug #76796 (Compile-time evaluation of disabled function in opcache + causes segfault). (Nikita) + +- POSIX: + . Fixed bug #75696 (posix_getgrnam fails to print details of group). (cmb) + +- Reflection: + . Fixed bug #74454 (Wrong exception being thrown when using ReflectionMethod). + (cmb) + +- Standard: + . Fixed bug #73457 (Wrong error message when fopen FTP wrapped fails to open + data connection). (Ville Hukkamäki) + . Fixed bug #74764 (Bindto IPv6 works with file_get_contents but fails with + stream_socket_client). (Ville Hukkamäki) + . Fixed bug #75533 (array_reduce is slow when $carry is large array). + (Manabu Matsui) + +- XMLRPC: + . Fixed bug #76886 (Can't build xmlrpc with expat). (Thomas Petazzoni, cmb) + +- Zlib: + . Fixed bug #75273 (php_zlib_inflate_filter() may not update bytes_consumed). + (Martin Burke, cmb) diff --git a/data/releases/7.2/7.2.11/release.json b/data/releases/7.2/7.2.11/release.json new file mode 100644 index 0000000000..720fcd619f --- /dev/null +++ b/data/releases/7.2/7.2.11/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.11", + "date": "11 Oct 2018", + "tags": [], + "source": [ + { + "filename": "php-7.2.11.tar.bz2", + "name": "PHP 7.2.11 (tar.bz2)", + "sha256": "4a0d7f402d07966b37a600796283f4ca4079d955d96d5bec024dd02009d8b4c5" + }, + { + "filename": "php-7.2.11.tar.gz", + "name": "PHP 7.2.11 (tar.gz)", + "sha256": "180c63a9647c0a50d438b6bd5c7a8e7a11bceee8ad613a59d3ef15151fc158d4" + }, + { + "filename": "php-7.2.11.tar.xz", + "name": "PHP 7.2.11 (tar.xz)", + "sha256": "da1a705c0bc46410e330fc6baa967666c8cd2985378fb9707c01a8e33b01d985" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.12/announcement.html b/data/releases/7.2/7.2.12/announcement.html new file mode 100644 index 0000000000..63135a44f5 --- /dev/null +++ b/data/releases/7.2/7.2.12/announcement.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/7.2.12/changes.txt b/data/releases/7.2/7.2.12/changes.txt new file mode 100644 index 0000000000..9dd44b6093 --- /dev/null +++ b/data/releases/7.2/7.2.12/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed bug #76846 (Segfault in shutdown function after memory limit error). + (Nikita) + . Fixed bug #76946 (Cyclic reference in generator not detected). (Nikita) + . Fixed bug #77035 (The phpize and ./configure create redundant .deps file). + (Peter Kokot) + . Fixed bug #77041 (buildconf should output error messages to stderr) + (Mizunashi Mana) + +- Date: + . Upgraded timelib to 2017.08. (Derick) + . Fixed bug #75851 (Year component overflow with date formats "c", "o", "r" + and "y"). (Adam Saponara) + . Fixed bug #77007 (fractions in `diff()` are not correctly normalized). + (Derick) + +- FCGI: + . Fixed #76948 (Failed shutdown/reboot or end session in Windows). (Anatol) + . Fixed bug #76954 (apache_response_headers removes last character from header + name). (stodorovic) + +- FTP: + . Fixed bug #76972 (Data truncation due to forceful ssl socket shutdown). + (Manuel Mausz) + +- intl: + . Fixed bug #76942 (U_ARGUMENT_TYPE_MISMATCH). (anthrax at unixuser dot org) + +- Reflection: + . Fixed bug #76936 (Objects cannot access their private attributes while + handling reflection errors). (Nikita) + . Fixed bug #66430 (ReflectionFunction::invoke does not invoke closure with + object scope). (Nikita) + +- Sodium: + . Some base64 outputs were truncated; this is not the case any more. + (jedisct1) + . block sizes >= 256 bytes are now supposed by sodium_pad() even + when an old version of libsodium has been installed. (jedisct1) + . Fixed bug #77008 (sodium_pad() could read (but not return nor write) + uninitialized memory when trying to pad an empty input). (jedisct1) + +- Standard: + . Fixed bug #76965 (INI_SCANNER_RAW doesn't strip trailing whitespace). + (Pierrick) + +- Tidy: + . Fixed bug #77027 (tidy::getOptDoc() not available on Windows). (cmb) + +- XML: + . Fixed bug #30875 (xml_parse_into_struct() does not resolve entities). (cmb) + . Add support for getting SKIP_TAGSTART and SKIP_WHITE options. (cmb) + +- XMLRPC: + . Fixed bug #75282 (xmlrpc_encode_request() crashes). (cmb) diff --git a/data/releases/7.2/7.2.12/release.json b/data/releases/7.2/7.2.12/release.json new file mode 100644 index 0000000000..47b6b95821 --- /dev/null +++ b/data/releases/7.2/7.2.12/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.12", + "date": "08 Nov 2018", + "tags": [], + "source": [ + { + "filename": "php-7.2.12.tar.bz2", + "name": "PHP 7.2.12 (tar.bz2)", + "sha256": "b724c4c20347b6105be109d98cc395a610174e8aadb506c82e8cb645b65ef6b6" + }, + { + "filename": "php-7.2.12.tar.gz", + "name": "PHP 7.2.12 (tar.gz)", + "sha256": "d7cabdf4e51db38121daf0d494dc074743b24b6c79e592037eeedd731f1719dd" + }, + { + "filename": "php-7.2.12.tar.xz", + "name": "PHP 7.2.12 (tar.xz)", + "sha256": "989c04cc879ee71a5e1131db867f3c5102f1f7565f805e2bb8bde33f93147fe1" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.13/announcement.html b/data/releases/7.2/7.2.13/announcement.html new file mode 100644 index 0000000000..2f5f7594f3 --- /dev/null +++ b/data/releases/7.2/7.2.13/announcement.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/7.2.13/changes.txt b/data/releases/7.2/7.2.13/changes.txt new file mode 100644 index 0000000000..e1eb032538 --- /dev/null +++ b/data/releases/7.2/7.2.13/changes.txt @@ -0,0 +1,39 @@ +- ftp: + . Fixed bug #77151 (ftp_close(): SSL_read on shutdown). (Remi) + +- CLI: + . Fixed bug #77111 (php-win.exe corrupts unicode symbols from cli + parameters). (Anatol) + +- Fileinfo: + . Fixed bug #77095 (slowness regression in 7.2/7.3 (compared to 7.1)). + (Anatol) + +- iconv: + . Fixed bug #77147 (Fixing 60494 ignored ICONV_MIME_DECODE_CONTINUE_ON_ERROR). + (cmb) + +- IMAP: + . Fixed bug #77153 (imap_open allows to run arbitrary shell commands via + mailbox parameter). (Stas) + +- ODBC: + . Fixed bug #77079 (odbc_fetch_object has incorrect type signature). + (Jon Allen) + +- Opcache: + . Fixed bug #77058 (Type inference in opcache causes side effects). (Nikita) + . Fixed bug #77092 (array_diff_key() - segmentation fault). (Nikita) + +- PGSQL: + . Fixed bug #77047 (pg_convert has a broken regex for the 'TIME WITHOUT + TIMEZONE' data type). (Andy Gajetzki) + +- SOAP: + . Fixed bug #50675 (SoapClient can't handle object references correctly). + (Cameron Porter) + . Fixed bug #76348 (WSDL_CACHE_MEMORY causes Segmentation fault). (cmb) + . Fixed bug #77141 (Signedness issue in SOAP when precision=-1). (cmb) + +- Sockets: + . Fixed bug #67619 (Validate length on socket_write). (thiagooak) diff --git a/data/releases/7.2/7.2.13/release.json b/data/releases/7.2/7.2.13/release.json new file mode 100644 index 0000000000..d05817d63e --- /dev/null +++ b/data/releases/7.2/7.2.13/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.13", + "date": "06 Dec 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.13.tar.bz2", + "name": "PHP 7.2.13 (tar.bz2)", + "sha256": "5b4a46fb76491bcd3eee1213773382e570f6ecf9b22d623b24e2822298b3e92d" + }, + { + "filename": "php-7.2.13.tar.gz", + "name": "PHP 7.2.13 (tar.gz)", + "sha256": "e563cee406b1ec96649c22ed2b35796cfe4e9aa9afa6eab6be4cf2fe5d724744" + }, + { + "filename": "php-7.2.13.tar.xz", + "name": "PHP 7.2.13 (tar.xz)", + "sha256": "14b0429abdb46b65c843e5882c9a8c46b31dfbf279c747293b8ab950c2644a4b" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.14/announcement.html b/data/releases/7.2/7.2.14/announcement.html new file mode 100644 index 0000000000..30abb7bd0a --- /dev/null +++ b/data/releases/7.2/7.2.14/announcement.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/7.2.14/changes.txt b/data/releases/7.2/7.2.14/changes.txt new file mode 100644 index 0000000000..9cc3b13570 --- /dev/null +++ b/data/releases/7.2/7.2.14/changes.txt @@ -0,0 +1,67 @@ +- Core: + . Fixed bug #77369 (memcpy with negative length via crafted DNS response). (Stas) + . Fixed bug #71041 (zend_signal_startup() needs ZEND_API). + (Valentin V. Bartenev) + . Fixed bug #76046 (PHP generates "FE_FREE" opcode on the wrong line). + (Nikita) + +- COM: + . Fixed bug #77177 (Serializing or unserializing COM objects crashes). (cmb) + +- Date: + . Fixed bug #77097 (DateTime::diff gives wrong diff when the actual diff is + less than 1 second). (Derick) + +- Exif: + . Fixed bug #77184 (Unsigned rational numbers are written out as signed + rationals). (Colin Basnett) + +- GD: + . Fixed bug #77269 (efree() on uninitialized Heap data in imagescale leads to + use-after-free). (cmb) + . Fixed bug #77270 (imagecolormatch Out Of Bounds Write on Heap). (cmb) + . Fixed bug #77195 (Incorrect error handling of imagecreatefromjpeg()). (cmb) + . Fixed bug #77198 (auto cropping has insufficient precision). (cmb) + . Fixed bug #77200 (imagecropauto(…, GD_CROP_SIDES) crops left but not right). + (cmb) + +- IMAP: + . Fixed bug #77020 (null pointer dereference in imap_mail). (cmb) + +- Mbstring: + . Fixed bug #77370 (Buffer overflow on mb regex functions - fetch_token). (Stas) + . Fixed bug #77371 (heap buffer overflow in mb regex functions + - compile_string_node). (Stas) + . Fixed bug #77381 (heap buffer overflow in multibyte match_at). (Stas) + . Fixed bug #77382 (heap buffer overflow due to incorrect length in + expand_case_fold_string). (Stas) + . Fixed bug #77385 (buffer overflow in fetch_token). (Stas) + . Fixed bug #77394 (Buffer overflow in multibyte case folding - unicode). (Stas) + . Fixed bug #77418 (Heap overflow in utf32be_mbc_to_code). (Stas) + +- OCI8: + . Fixed bug #76804 (oci_pconnect with OCI_CRED_EXT not working). (KoenigsKind) + . Added oci_set_call_timeout() for call timeouts. + . Added oci_set_db_operation() for the DBOP end-to-end-tracing attribute. + +- Opcache: + . Fixed bug #77215 (CFG assertion failure on multiple finalizing switch + frees in one block). (Nikita) + +- PDO: + . Handle invalid index passed to PDOStatement::fetchColumn() as error. (Sergei + Morozov) + +- Phar: + . Fixed bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext). (Stas) + +- Sockets: + . Fixed bug #77136 (Unsupported IPV6_RECVPKTINFO constants on macOS). + (Mizunashi Mana) + +- SQLite3: + . Fixed bug #77051 (Issue with re-binding on SQLite3). (BohwaZ) + +- Xmlrpc: + . Fixed bug #77242 (heap out of bounds read in xmlrpc_decode()). (cmb) + . Fixed bug #77380 (Global out of bounds read in xmlrpc base64 code). (Stas) diff --git a/data/releases/7.2/7.2.14/release.json b/data/releases/7.2/7.2.14/release.json new file mode 100644 index 0000000000..bf88646391 --- /dev/null +++ b/data/releases/7.2/7.2.14/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.14", + "date": "07 Feb 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.14.tar.bz2", + "name": "PHP 7.2.14 (tar.bz2)", + "sha256": "f56132d248c7bf1e0efc8a680a4b598d6ff73fc6b9c84b5d7b539ad8db7a6597" + }, + { + "filename": "php-7.2.14.tar.gz", + "name": "PHP 7.2.14 (tar.gz)", + "sha256": "87e13d80b0c3a66bd463d1cb47dc101335884a0d192ab924f547f8aed7f70c08" + }, + { + "filename": "php-7.2.14.tar.xz", + "name": "PHP 7.2.14 (tar.xz)", + "sha256": "ee3f1cc102b073578a3c53ba4420a76da3d9f0c981c02b1664ae741ca65af84f" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.15/announcement.html b/data/releases/7.2/7.2.15/announcement.html new file mode 100644 index 0000000000..645f1e3675 --- /dev/null +++ b/data/releases/7.2/7.2.15/announcement.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/7.2.15/changes.txt b/data/releases/7.2/7.2.15/changes.txt new file mode 100644 index 0000000000..4c178d6207 --- /dev/null +++ b/data/releases/7.2/7.2.15/changes.txt @@ -0,0 +1,52 @@ +- Core: + . Fixed bug #77339 (__callStatic may get incorrect arguments). (Dmitry) + . Fixed bug #77494 (Disabling class causes segfault on member access). + (Dmitry) + . Fixed bug #77530 (PHP crashes when parsing `(2)::class`). (Ekin) + +- Curl: + . Fixed bug #76675 (Segfault with H2 server push). (Pedro Magalhães) + +- GD: + . Fixed bug #73281 (imagescale(…, IMG_BILINEAR_FIXED) can cause black border). + (cmb) + . Fixed bug #73614 (gdImageFilledArc() doesn't properly draw pies). (cmb) + . Fixed bug #77272 (imagescale() may return image resource on failure). (cmb) + . Fixed bug #77391 (1bpp BMPs may fail to be loaded). (Romain Déoux, cmb) + . Fixed bug #77479 (imagewbmp() segfaults with very large images). (cmb) + +- ldap: + . Fixed bug #77440 (ldap_bind using ldaps or ldap_start_tls()=exception in + libcrypto-1_1-x64.dll). (Anatol) + +- Mbstring: + . Fixed bug #77454 (mb_scrub() silently truncates after a null byte). + (64796c6e69 at gmail dot com) + +- MySQLnd: + . Fixed bug #75684 (In mysqlnd_ext_plugin.h the plugin methods family has + no external visibility). (Anatol) + +- Opcache: + . Fixed bug #77361 (configure fails on 64-bit AIX when opcache enabled). + (Kevin Adler) + +- OpenSSL: + . Fixed bug #77390 (feof might hang on TLS streams in case of fragmented TLS + records). (Abyl Valg, Jakub Zelenka) + +- PDO: + . Fixed bug #77273 (array_walk_recursive corrupts value types leading to PDO + failure). (Nikita) + +- phpdbg: + . Fixed bug #76596 (phpdbg support for display_errors=stderr). (kabel) + +- Sockets: + . Fixed bug #76839 (socket_recvfrom may return an invalid 'from' address + on MacOS). (Michael Meyer) + +- Standard: + . Fixed bug #77395 (segfault about array_multisort). (Laruence) + . Fixed bug #77439 (parse_str segfaults when inserting item into existing + array). (Nikita) diff --git a/data/releases/7.2/7.2.15/release.json b/data/releases/7.2/7.2.15/release.json new file mode 100644 index 0000000000..2ccc98c083 --- /dev/null +++ b/data/releases/7.2/7.2.15/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.15", + "date": "07 Mar 2019", + "tags": [], + "source": [ + { + "filename": "php-7.2.15.tar.bz2", + "name": "PHP 7.2.15 (tar.bz2)", + "sha256": "c93e7616946a463911818c7e9f9e21276c7793fb8c7cb15877188dd0546d0554" + }, + { + "filename": "php-7.2.15.tar.gz", + "name": "PHP 7.2.15 (tar.gz)", + "sha256": "9b13bde9f5a32d6f6bdb8b911bb55bb818d0c4073538f8dc48aa2deb560f55a3" + }, + { + "filename": "php-7.2.15.tar.xz", + "name": "PHP 7.2.15 (tar.xz)", + "sha256": "75e90012faef700dffb29311f3d24fa25f1a5e0f70254a9b8d5c794e25e938ce" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.16/announcement.html b/data/releases/7.2/7.2.16/announcement.html new file mode 100644 index 0000000000..0576a0cbb0 --- /dev/null +++ b/data/releases/7.2/7.2.16/announcement.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/7.2.16/changes.txt b/data/releases/7.2/7.2.16/changes.txt new file mode 100644 index 0000000000..be6e16c79b --- /dev/null +++ b/data/releases/7.2/7.2.16/changes.txt @@ -0,0 +1,37 @@ +- Core: + . Fixed bug #77589 (Core dump using parse_ini_string with numeric sections). + (Laruence) + . Fixed bug #77630 (rename() across the device may allow unwanted access + during processing). (Stas) + +- COM: + . Fixed bug #77621 (Already defined constants are not properly reported). + (cmb) + +- EXIF: + . Fixed bug #77509 (Uninitialized read in exif_process_IFD_in_TIFF). (Stas) + . Fixed bug #77540 (Invalid Read on exif_process_SOFn). (Stas) + . Fixed bug #77563 (Uninitialized read in exif_process_IFD_in_MAKERNOTE). (Stas) + . Fixed bug #77659 (Uninitialized read in exif_process_IFD_in_MAKERNOTE). (Stas) + +- PDO_OCI: + . Support Oracle Database tracing attributes ACTION, MODULE, + CLIENT_INFO, and CLIENT_IDENTIFIER. (Cameron Porter) + +- PHAR: + . Fixed bug #77396 (Null Pointer Dereference in phar_create_or_parse_filename). + (bishop) + +- SPL: + . Fixed bug #51068 (DirectoryIterator glob:// don't support current path + relative queries). (Ahmed Abdou) + . Fixed bug #77431 (openFile() silently truncates after a null byte). (cmb) + +- Standard: + . Fixed bug #77552 (Unintialized php_stream_statbuf in stat functions). + (John Stevenson) + +- MySQL + . Disabled LOCAL INFILE by default, can be enabled using php.ini directive + mysqli.allow_local_infile for mysqli, or PDO::MYSQL_ATTR_LOCAL_INFILE + attribute for pdo_mysql. (Darek Slusarczyk) diff --git a/data/releases/7.2/7.2.16/release.json b/data/releases/7.2/7.2.16/release.json new file mode 100644 index 0000000000..effa8c85b9 --- /dev/null +++ b/data/releases/7.2/7.2.16/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.16", + "date": "04 Apr 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.16.tar.bz2", + "name": "PHP 7.2.16 (tar.bz2)", + "sha256": "2c0ad10053d58694cd14323248ecd6d9ba71d2733d160973c356ad01d09e7f38" + }, + { + "filename": "php-7.2.16.tar.gz", + "name": "PHP 7.2.16 (tar.gz)", + "sha256": "fb95e0bb69caba1dfd3bbac4eeef7a0485e5ea3d6191d35ad5657e18243aa02d" + }, + { + "filename": "php-7.2.16.tar.xz", + "name": "PHP 7.2.16 (tar.xz)", + "sha256": "7d91ed3c1447c6358a3d53f84599ef854aca4c3622de7435e2df115bf196e482" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.17/announcement.html b/data/releases/7.2/7.2.17/announcement.html new file mode 100644 index 0000000000..e1aab8453f --- /dev/null +++ b/data/releases/7.2/7.2.17/announcement.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/7.2.17/changes.txt b/data/releases/7.2/7.2.17/changes.txt new file mode 100644 index 0000000000..b782b0251f --- /dev/null +++ b/data/releases/7.2/7.2.17/changes.txt @@ -0,0 +1,63 @@ +- Core: + . Fixed bug #77738 (Nullptr deref in zend_compile_expr). (Laruence) + . Fixed bug #77660 (Segmentation fault on break 2147483648). (Laruence) + . Fixed bug #77652 (Anonymous classes can lose their interface information). + (Nikita) + . Fixed bug #77676 (Unable to run tests when building shared extension on + AIX). (Kevin Adler) + +- Bcmath: + . Fixed bug #77742 (bcpow() implementation related to gcc compiler + optimization). (Nikita) + +- COM: + . Fixed bug #77578 (Crash when php unload). (cmb) + +- Date: + . Fixed bug #50020 (DateInterval:createDateFromString() silently fails). + (Derick) + . Fixed bug #75113 (Added DatePeriod::getRecurrences() method). (Ignace + Nyamagana Butera) + +- EXIF: + . Fixed bug #77753 (Heap-buffer-overflow in php_ifd_get32s). (CVE-2019-11034) + (Stas) + . Fixed bug #77831 (Heap-buffer-overflow in exif_iif_add_value). + (CVE-2019-11035) (Stas) + +- FPM: + . Fixed bug #77677 (FPM fails to build on AIX due to missing WCOREDUMP). + (Kevin Adler) + +- GD: + . Fixed bug #77700 (Writing truecolor images as GIF ignores interlace flag). + (cmb) + +- MySQLi: + . Fixed bug #77597 (mysqli_fetch_field hangs scripts). (Nikita) + +- Opcache: + . Fixed bug #77691 (Opcache passes wrong value for inline array push + assignments). (Nikita) + . Fixed bug #77743 (Incorrect pi node insertion for jmpznz with identical + successors). (Nikita) + +- phpdbg: + . Fixed bug #77767 (phpdbg break cmd aliases listed in help do not match + actual aliases). (Miriam Lauter) + +- sodium: + . Fixed bug #77646 (sign_detached() strings not terminated). (Frank) + +- SQLite3: + . Added sqlite3.defensive INI directive. (BohwaZ) + +- Standard: + . Fixed bug #77664 (Segmentation fault when using undefined constant in + custom wrapper). (Laruence) + . Fixed bug #77669 (Crash in extract() when overwriting extracted array). + (Nikita) + . Fixed bug #76717 (var_export() does not create a parsable value for + PHP_INT_MIN). (Nikita) + . Fixed bug #77765 (FTP stream wrapper should set the directory as + executable). (Vlad Temian) diff --git a/data/releases/7.2/7.2.17/release.json b/data/releases/7.2/7.2.17/release.json new file mode 100644 index 0000000000..f242797910 --- /dev/null +++ b/data/releases/7.2/7.2.17/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.17", + "date": "02 May 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.17.tar.bz2", + "name": "PHP 7.2.17 (tar.bz2)", + "sha256": "91a811ab6f6d7acb312159cf6b0a3cffe968676fdebf042e9253245cc6094f75" + }, + { + "filename": "php-7.2.17.tar.gz", + "name": "PHP 7.2.17 (tar.gz)", + "sha256": "e1c6c2553cdb7edbfa65b89e259690ed01b31b12d57349c90b6ed00a410f62b5" + }, + { + "filename": "php-7.2.17.tar.xz", + "name": "PHP 7.2.17 (tar.xz)", + "sha256": "a3e5f51a9ae08813b3925bea3a4de02cd4906fcccf75646e267a213bb63bcf84" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.18/announcement.html b/data/releases/7.2/7.2.18/announcement.html new file mode 100644 index 0000000000..2b24af637d --- /dev/null +++ b/data/releases/7.2/7.2.18/announcement.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/7.2.18/changes.txt b/data/releases/7.2/7.2.18/changes.txt new file mode 100644 index 0000000000..7b7f836f22 --- /dev/null +++ b/data/releases/7.2/7.2.18/changes.txt @@ -0,0 +1,52 @@ +- CLI: + . Fixed bug #77794 (Incorrect Date header format in built-in server). + (kelunik) + +- EXIF + . Fixed bug #77950 (Heap-buffer-overflow in _estrndup via exif_process_IFD_TAG). + (CVE-2019-11036) (Stas) + +- Interbase: + . Fixed bug #72175 (Impossibility of creating multiple connections to + Interbase with php 7.x). (Nikita) + +- Intl: + . Fixed bug #77895 (IntlDateFormatter::create fails in strict mode if $locale + = null). (Nikita) + +- litespeed: + . LiteSpeed SAPI 7.3.1, better process management, new API function + litespeed_finish_request(). (George Wang) + +- Mail + . Fixed bug #77821 (Potential heap corruption in TSendMail()). (cmb) + +- PCRE: + . Fixed bug #77827 (preg_match does not ignore \r in regex flags). (requinix, + cmb) + +- PDO: + . Fixed bug #77849 (Disable cloning of PDO handle/connection objects). + (camporter) + +- phpdbg: + . Fixed bug #76801 (too many open files). (alekitto) + . Fixed bug #77800 (phpdbg segfaults on listing some conditional breakpoints). + (krakjoe) + . Fixed bug #77805 (phpdbg build fails when readline is shared). (krakjoe) + +- Reflection: + . Fixed bug #77772 (ReflectionClass::getMethods(null) doesn't work). (Nikita) + . Fixed bug #77882 (Different behavior: always calls destructor). (Nikita) + +- SOAP: + . Fixed bug #77945 (Segmentation fault when constructing SoapClient with + WSDL_CACHE_BOTH). (Nikita) + +- Standard: + . Fixed bug #77680 (recursive mkdir on ftp stream wrapper is incorrect). + (Vlad Temian) + . Fixed bug #77844 (Crash due to null pointer in parse_ini_string with + INI_SCANNER_TYPED). (Nikita) + . Fixed bug #77853 (Inconsistent substr_compare behaviour with empty + haystack). (Nikita) diff --git a/data/releases/7.2/7.2.18/release.json b/data/releases/7.2/7.2.18/release.json new file mode 100644 index 0000000000..29ad5d4769 --- /dev/null +++ b/data/releases/7.2/7.2.18/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.18", + "date": "30 May 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.18.tar.bz2", + "name": "PHP 7.2.18 (tar.bz2)", + "sha256": "fa1a27b12d1173207e81e798a48d4a7f77ba897f5c5200ac0b5d62aa8b4c4b72" + }, + { + "filename": "php-7.2.18.tar.gz", + "name": "PHP 7.2.18 (tar.gz)", + "sha256": "48aeb291814f3cd3ba03c52e79e8e61896d0271fd4c228198f80a072e568f84b" + }, + { + "filename": "php-7.2.18.tar.xz", + "name": "PHP 7.2.18 (tar.xz)", + "sha256": "9970dbb3ab1298c9e6aac54bebfa841c8ad14b18eead65594a68fa841364cb8d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.19/announcement.html b/data/releases/7.2/7.2.19/announcement.html new file mode 100644 index 0000000000..b0899aa907 --- /dev/null +++ b/data/releases/7.2/7.2.19/announcement.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/7.2.19/changes.txt b/data/releases/7.2/7.2.19/changes.txt new file mode 100644 index 0000000000..5b9d9e5607 --- /dev/null +++ b/data/releases/7.2/7.2.19/changes.txt @@ -0,0 +1,43 @@ +- Date: + . Fixed bug #77909 (DatePeriod::__construct() with invalid recurrence count + value). (Ignace Nyamagana Butera) + +- EXIF: + . Fixed bug #77988 (heap-buffer-overflow on php_jpg_get16). + (CVE-2019-11040) (Stas) + +- FPM: + . Fixed bug #77934 (php-fpm kill -USR2 not working). (Jakub Zelenka) + . Fixed bug #77921 (static.php.net doesn't work anymore). (Peter Kokot) + +- GD: + . Fixed bug #77943 (imageantialias($image, false); does not work). (cmb) + . Fixed bug #77973 (Uninitialized read in gdImageCreateFromXbm). + (CVE-2019-11038) (cmb) + +- Iconv: + . Fixed bug #78069 (Out-of-bounds read in iconv.c:_php_iconv_mime_decode() + due to integer overflow). (CVE-2019-11039). (maris dot adam) + +- JSON: + . Fixed bug #77843 (Use after free with json serializer). (Nikita) + +- Opcache: + . Fixed possible crashes, because of inconsistent PCRE cache and opcache + SHM reset. (Alexey Kalinin, Dmitry) + +- PDO_MySQL: + . Fixed bug #77944 (Wrong meta pdo_type for bigint on LLP64). (cmb) + +- Reflection: + . Fixed bug #75186 (Inconsistent reflection of Closure:::__invoke()). (Nikita) + +- Session: + . Fixed bug #77911 (Wrong warning for session.sid_bits_per_character). (cmb) + +- SPL: + . Fixed bug #77024 (SplFileObject::__toString() may return array). (Craig + Duncan) + +- SQLite: + . Fixed bug #77967 (Bypassing open_basedir restrictions via file uris). (Stas) diff --git a/data/releases/7.2/7.2.19/release.json b/data/releases/7.2/7.2.19/release.json new file mode 100644 index 0000000000..bd15abf42f --- /dev/null +++ b/data/releases/7.2/7.2.19/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.19", + "date": "30 May 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.19.tar.bz2", + "name": "PHP 7.2.19 (tar.bz2)", + "sha256": "ebd0b1f375fe07ed4925acc213d2f5ef76a61bd5de174e7b666b98421a90a099" + }, + { + "filename": "php-7.2.19.tar.gz", + "name": "PHP 7.2.19 (tar.gz)", + "sha256": "1cd2266a058f3224d3cba594540045542606996f026eeef96747f27f6b3d22b6" + }, + { + "filename": "php-7.2.19.tar.xz", + "name": "PHP 7.2.19 (tar.xz)", + "sha256": "4ffa2404a88d60e993a9fe69f829ebec3eb1e006de41b6048ce5e91bbeaa9282" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.2/announcement.html b/data/releases/7.2/7.2.2/announcement.html new file mode 100644 index 0000000000..8990ffc15c --- /dev/null +++ b/data/releases/7.2/7.2.2/announcement.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/7.2.2/changes.txt b/data/releases/7.2/7.2.2/changes.txt new file mode 100644 index 0000000000..57066ec867 --- /dev/null +++ b/data/releases/7.2/7.2.2/changes.txt @@ -0,0 +1,65 @@ +- Core: + . Fixed bug #75742 (potential memleak in internal classes's static members). + (Laruence) + . Fixed bug #75679 (Path 260 character problem). (Anatol) + . Fixed bug #75614 (Some non-portable == in shell scripts). (jdolecek) + . Fixed bug #75786 (segfault when using spread operator on generator passed + by reference). (Nikita) + . Fixed bug #75799 (arg of get_defined_functions is optional). (carusogabriel) + . Fixed bug #75396 (Exit inside generator finally results in fatal error). + (Nikita) + +- FCGI: + . Fixed bug #75794 (getenv() crashes on Windows 7.2.1 when second parameter is + false). (Anatol) + +- IMAP: + . Fixed bug #75774 (imap_append HeapCorruction). (Anatol) + +- Opcache: + . Fixed bug #75720 (File cache not populated after SHM runs full). (Dmitry) + . Fixed bug #75687 (var 8 (TMP) has array key type but not value type). + (Nikita, Laruence) + . Fixed bug #75698 (Using @ crashes php7.2-fpm). (Nikita) + . Fixed bug #75579 (Interned strings buffer overflow may cause crash). + (Dmitry) + +- PDO: + . Fixed bug #75616 (PDO extension doesn't allow to be built shared on Darwin). + (jdolecek) + +- PDO MySQL: + . Fixed bug #75615 (PDO Mysql module can't be built as module). (jdolecek) + +- PGSQL: + . Fixed bug #75671 (pg_version() crashes when called on a connection to + cockroach). (magicaltux at gmail dot com) + +- Readline: + . Fixed bug #75775 (readline_read_history segfaults with empty file). + (Anatol) + +- SAPI: + . Fixed bug #75735 ([embed SAPI] Segmentation fault in + sapi_register_post_entry). (Laruence) + +- SOAP: + . Fixed bug #70469 (SoapClient generates E_ERROR even if exceptions=1 is + used). (Anton Artamonov) + . Fixed bug #75502 (Segmentation fault in zend_string_release). (Nikita) + +- SPL: + . Fixed bug #75717 (RecursiveArrayIterator does not traverse arrays by + reference). (Nikita) + . Fixed bug #75242 (RecursiveArrayIterator doesn't have constants from parent + class). (Nikita) + . Fixed bug #73209 (RecursiveArrayIterator does not iterate object + properties). (Nikita) + +- Standard: + . Fixed bug #75781 (substr_count incorrect result). (Laruence) + . Fixed bug #75653 (array_values don't work on empty array). (Nikita) + +- Zip: + . Display headers (buildtime) and library (runtime) versions in phpinfo + (with libzip >= 1.3.1). (Remi) diff --git a/data/releases/7.2/7.2.2/release.json b/data/releases/7.2/7.2.2/release.json new file mode 100644 index 0000000000..a5a364384f --- /dev/null +++ b/data/releases/7.2/7.2.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.2", + "date": "1 Feb 2018", + "tags": [], + "source": [ + { + "filename": "php-7.2.2.tar.bz2", + "name": "PHP 7.2.2 (tar.bz2)", + "sha256": "f841ac58e17471f2241ea892b34edb01dc9b93ad9f661ffe4e3f1f476a8f4aee" + }, + { + "filename": "php-7.2.2.tar.gz", + "name": "PHP 7.2.2 (tar.gz)", + "sha256": "5963df05fec21927c03fe9f7bf379be2d1eacde6c0f9dcde6143c7133e55abd4" + }, + { + "filename": "php-7.2.2.tar.xz", + "name": "PHP 7.2.2 (tar.xz)", + "sha256": "47d7607d38a1d565fc43ea942c92229a7cd165f156737f210937e375b243cb11" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.20/announcement.html b/data/releases/7.2/7.2.20/announcement.html new file mode 100644 index 0000000000..0bc3582187 --- /dev/null +++ b/data/releases/7.2/7.2.20/announcement.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/7.2.20/changes.txt b/data/releases/7.2/7.2.20/changes.txt new file mode 100644 index 0000000000..b254789cf3 --- /dev/null +++ b/data/releases/7.2/7.2.20/changes.txt @@ -0,0 +1,34 @@ +- Core: + . Fixed bug #76980 (Interface gets skipped if autoloader throws an exception). + (Nikita) + +- DOM: + . Fixed bug #78025 (segfault when accessing properties of DOMDocumentType). + (cmb) + +- MySQLi: + . Fixed bug #77956 (When mysqli.allow_local_infile = Off, use a meaningful + error message). (Sjon Hortensius) + . Fixed bug #38546 (bindParam incorrect processing of bool types). + (camporter) + +- Opcache: + . Fixed bug #78106 (Path resolution fails if opcache disabled during request). + (Nikita) + . Fixed bug #78185 (File cache no longer works). (Dmitry) + +- OpenSSL: + . Fixed bug #78079 (openssl_encrypt_ccm.phpt fails with OpenSSL 1.1.1c). + (Jakub Zelenka) + +- Sockets: + . Fixed bug #78038 (Socket_select fails when resource array contains + references). (Nikita) + +- Standard: + . Fixed bug #77135 (Extract with EXTR_SKIP should skip $this). + (Craig Duncan, Dmitry) + . Fixed bug ##77937 (preg_match failed). (cmb, Anatol) + +- Zip: + . Fixed bug #76345 (zip.h not found). (Michael Maroszek) diff --git a/data/releases/7.2/7.2.20/release.json b/data/releases/7.2/7.2.20/release.json new file mode 100644 index 0000000000..45126a8972 --- /dev/null +++ b/data/releases/7.2/7.2.20/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.20", + "date": "04 Jul 2019", + "tags": [], + "source": [ + { + "filename": "php-7.2.20.tar.bz2", + "name": "PHP 7.2.20 (tar.bz2)", + "sha256": "9fb829e54e54c483ae8892d1db0f7d79115cc698f2f3591a8a5e58d9410dca84" + }, + { + "filename": "php-7.2.20.tar.gz", + "name": "PHP 7.2.20 (tar.gz)", + "sha256": "d1dbf6f299514c9aa55b2995928b798b27c21811a0447f0688993cdf36be0749" + }, + { + "filename": "php-7.2.20.tar.xz", + "name": "PHP 7.2.20 (tar.xz)", + "sha256": "eff09da83e235c2ba25c85deea1d4f663bd71d50fd51ad11e1acebe26d733494" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.21/announcement.html b/data/releases/7.2/7.2.21/announcement.html new file mode 100644 index 0000000000..3fe611ba3d --- /dev/null +++ b/data/releases/7.2/7.2.21/announcement.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/7.2.21/changes.txt b/data/releases/7.2/7.2.21/changes.txt new file mode 100644 index 0000000000..a7f28585a8 --- /dev/null +++ b/data/releases/7.2/7.2.21/changes.txt @@ -0,0 +1,59 @@ +- Date: + . Fixed bug #69044 (discrepency between time and microtime). (krakjoe) + +- EXIF: + . Fixed bug #78256 (heap-buffer-overflow on exif_process_user_comment). + (CVE-2019-11042) (Stas) + . Fixed bug #78222 (heap-buffer-overflow on exif_scan_thumbnail). + (CVE-2019-11041) (Stas) + +- Fileinfo: + . Fixed bug #78183 (finfo_file shows wrong mime-type for .tga file). + (Joshua Westerheide) + +- FTP: + . Fixed bug #77124 (FTP with SSL memory leak). (Nikita) + +- Libxml: + . Fixed bug #78279 (libxml_disable_entity_loader settings is shared between + requests (cgi-fcgi)). (Nikita) + +- LiteSpeed: + . Updated to LiteSpeed SAPI V7.4.3 (increased response header count limit from + 100 to 1000, added crash handler to cleanly shutdown PHP request, added + CloudLinux mod_lsapi mode). (George Wang) + . Fixed bug #76058 (After "POST data can't be buffered", using php://input + makes huge tmp files). (George Wang) + +- Openssl: + . Fixed bug #78231 (Segmentation fault upon stream_socket_accept of exported + socket-to-stream). (Nikita) + +- OPcache: + . Fixed bug #78189 (file cache strips last character of uname hash). (cmb) + . Fixed bug #78202 (Opcache stats for cache hits are capped at 32bit NUM). + (cmb) + . Fixed bug #78291 (opcache_get_configuration doesn't list all directives). + (Andrew Collington) + +- Phar: + . Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). (cmb) + +- Phpdbg: + . Fixed bug #78297 (Include unexistent file memory leak). (Nikita) + +- PDO_Sqlite: + . Fixed bug #78192 (SegFault when reuse statement after schema has changed). + (Vincent Quatrevieux) + +- SQLite: + . Upgraded to SQLite 3.28.0. (cmb) + +- Standard: + . Fixed bug #78241 (touch() does not handle dates after 2038 in PHP 64-bit). + (cmb) + . Fixed bug #78269 (password_hash uses weak options for argon2). (Remi) + +- XMLRPC: + . Fixed bug #78173 (XML-RPC mutates immutable objects during encoding). + (Asher Baker) diff --git a/data/releases/7.2/7.2.21/release.json b/data/releases/7.2/7.2.21/release.json new file mode 100644 index 0000000000..bcac881a94 --- /dev/null +++ b/data/releases/7.2/7.2.21/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.21", + "date": "01 Aug 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.21.tar.bz2", + "name": "PHP 7.2.21 (tar.bz2)", + "sha256": "343183a1be8336670171885c761d57ffcae99cbbcf1db43da7cb5565056b14ef" + }, + { + "filename": "php-7.2.21.tar.gz", + "name": "PHP 7.2.21 (tar.gz)", + "sha256": "8327682bee4a8fd2edf5bbfcc393d986b945bec433fc74458d05e766701b313c" + }, + { + "filename": "php-7.2.21.tar.xz", + "name": "PHP 7.2.21 (tar.xz)", + "sha256": "de06aff019d8f5079115795bd7d8eedd4cd03daecb62d58abb18f492dd995c95" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.22/announcement.html b/data/releases/7.2/7.2.22/announcement.html new file mode 100644 index 0000000000..7259b06b28 --- /dev/null +++ b/data/releases/7.2/7.2.22/announcement.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/7.2.22/changes.txt b/data/releases/7.2/7.2.22/changes.txt new file mode 100644 index 0000000000..8e8e883412 --- /dev/null +++ b/data/releases/7.2/7.2.22/changes.txt @@ -0,0 +1,32 @@ +- Core: + . Fixed bug #78363 (Buffer overflow in zendparse). (Nikita) + . Fixed bug #78379 (Cast to object confuses GC, causes crash). (Dmitry) + +- Curl: + . Fixed bug #77946 (Bad cURL resources returned by curl_multi_info_read()). + (Abyr Valg) + +- Exif: + . Fixed bug #78333 (Exif crash (bus error) due to wrong alignment and + invalid cast). (Nikita) + +- Iconv: + . Fixed bug #78342 (Bus error in configure test for iconv //IGNORE). (Rainer + Jung) + +- LiteSpeed: + . Updated to LiteSpeed SAPI V7.5 (Fixed clean shutdown). (George Wang) + +- MySQLnd: + . Fixed bug #78179 (MariaDB server version incorrectly detected). (cmb) + +- Opcache: + . Fixed bug #77191 (Assertion failure in dce_live_ranges() when silencing is + used). (Nikita) + +- Standard: + . Fixed bug #69100 (Bus error from stream_copy_to_stream (file -> SSL stream) + with invalid length). (Nikita) + . Fixed bug #78282 (atime and mtime mismatch). (cmb) + . Fixed bug #78326 (improper memory deallocation on stream_get_contents() + with fixed length buffer). (Albert Casademont) diff --git a/data/releases/7.2/7.2.22/release.json b/data/releases/7.2/7.2.22/release.json new file mode 100644 index 0000000000..58cda2cc6b --- /dev/null +++ b/data/releases/7.2/7.2.22/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.22", + "date": "29 Aug 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.22.tar.bz2", + "name": "PHP 7.2.22 (tar.bz2)", + "sha256": "c10a9883b586ada5ef1149f2571625b27efdcc3e70a04fbb9121979633b0f08a" + }, + { + "filename": "php-7.2.22.tar.gz", + "name": "PHP 7.2.22 (tar.gz)", + "sha256": "6e2ccc77484c27971d4550b7071a57b79bc910bfb2d4a74a57ae2c18b78c3dc7" + }, + { + "filename": "php-7.2.22.tar.xz", + "name": "PHP 7.2.22 (tar.xz)", + "sha256": "eb597fcf8dc0a6211a42a6346de4f63ee166829a6df6d8ed767fe14be8d1c3a3" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.23/announcement.html b/data/releases/7.2/7.2.23/announcement.html new file mode 100644 index 0000000000..cb4ba421e4 --- /dev/null +++ b/data/releases/7.2/7.2.23/announcement.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/7.2.23/changes.txt b/data/releases/7.2/7.2.23/changes.txt new file mode 100644 index 0000000000..222d41e40c --- /dev/null +++ b/data/releases/7.2/7.2.23/changes.txt @@ -0,0 +1,26 @@ +- Core: + . Fixed bug #78220 (Can't access OneDrive folder). (cmb, ab) + . Fixed bug #78412 (Generator incorrectly reports non-releasable $this as GC + child). (Nikita) + +- FastCGI: + . Fixed bug #78469 (FastCGI on_accept hook is not called when using named + pipes on Windows). (Sergei Turchanov) + +- MySQLnd: + . Fixed connect_attr issues and added the _server_host connection attribute. + (Qianqian Bu) + +- ODBC: + . Fixed bug #78473 (odbc_close() closes arbitrary resources). (cmb) + +- PDO_MySQL: + . Fixed bug #41997 (SP call yields additional empty result set). (cmb) + +- sodium: + . Fixed bug #78510 (Partially uninitialized buffer returned by + sodium_crypto_generichash_init()). (Frank Denis, cmb) + +- SPL: + . Fixed bug #72884 (SplObject isCloneable() returns true but errs on clone). + (Chu Zhaowei) diff --git a/data/releases/7.2/7.2.23/release.json b/data/releases/7.2/7.2.23/release.json new file mode 100644 index 0000000000..8786f53ddd --- /dev/null +++ b/data/releases/7.2/7.2.23/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.23", + "date": "26 Sep 2019", + "tags": [], + "source": [ + { + "filename": "php-7.2.23.tar.bz2", + "name": "PHP 7.2.23 (tar.bz2)", + "sha256": "a17af3643d29d7e730f977e3776dc3e325d5ca00b361e41dbfc2368ebad5430d" + }, + { + "filename": "php-7.2.23.tar.gz", + "name": "PHP 7.2.23 (tar.gz)", + "sha256": "b32b426c84ff45154d6c11f00aff433bcac831a5c0a09bf0297075eefaea8fcc" + }, + { + "filename": "php-7.2.23.tar.xz", + "name": "PHP 7.2.23 (tar.xz)", + "sha256": "74e045ec8ff26290db6a3688826dcdf43b87bc509e508e9cb76dab742804ca14" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.24/announcement.html b/data/releases/7.2/7.2.24/announcement.html new file mode 100644 index 0000000000..1b13003c13 --- /dev/null +++ b/data/releases/7.2/7.2.24/announcement.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/7.2.24/changes.txt b/data/releases/7.2/7.2.24/changes.txt new file mode 100644 index 0000000000..e624f2dc79 --- /dev/null +++ b/data/releases/7.2/7.2.24/changes.txt @@ -0,0 +1,41 @@ +- Core: + . Fixed bug #78535 (auto_detect_line_endings value not parsed as bool). + (bugreportuser) + . Fixed bug #78620 (Out of memory error). (cmb, Nikita) + +- Exif: + . Fixed bug #78442 ('Illegal component' on exif_read_data since PHP7) + (Kalle) + +- FPM: + . Fixed bug #78599 (env_path_info underflow in fpm_main.c can lead to RCE). + (CVE-2019-11043) (Jakub Zelenka) + +- MBString: + . Fixed bug #78579 (mb_decode_numericentity: args number inconsistency). + (cmb) + . Fixed bug #78609 (mb_check_encoding() no longer supports stringable + objects). (cmb) + +- MySQLi: + . Fixed bug #76809 (SSL settings aren't respected when persistent connections + are used). (fabiomsouto) + +- PDO_MySQL: + . Fixed bug #78623 (Regression caused by "SP call yields additional empty + result set"). (cmb) + +- Session: + . Fixed bug #78624 (session_gc return value for user defined session + handlers). (bshaffer) + +- Standard: + . Fixed bug #76342 (file_get_contents waits twice specified timeout). + (Thomas Calvet) + . Fixed bug #78612 (strtr leaks memory when integer keys are used and the + subject string shorter). (Nikita) + . Fixed bug #76859 (stream_get_line skips data if used with data-generating + filter). (kkopachev) + +- Zip: + . Fixed bug #78641 (addGlob can modify given remove_path value). (cmb) diff --git a/data/releases/7.2/7.2.24/release.json b/data/releases/7.2/7.2.24/release.json new file mode 100644 index 0000000000..5e71799986 --- /dev/null +++ b/data/releases/7.2/7.2.24/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.24", + "date": "24 Oct 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.24.tar.bz2", + "name": "PHP 7.2.24 (tar.bz2)", + "sha256": "a079934db63068bbcc9bbd2e7b916b9891fc97719862697e5f954c639984f603" + }, + { + "filename": "php-7.2.24.tar.gz", + "name": "PHP 7.2.24 (tar.gz)", + "sha256": "01baf7a34c856d2c552121fbad7296a8cde18389ce83db32f18252bc1cee4dd6" + }, + { + "filename": "php-7.2.24.tar.xz", + "name": "PHP 7.2.24 (tar.xz)", + "sha256": "a6a6cc03388060aa5f8f9e45799b72bce1c7ed7b9d7b3f1187787202aad91d25" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.25/announcement.html b/data/releases/7.2/7.2.25/announcement.html new file mode 100644 index 0000000000..10af2db847 --- /dev/null +++ b/data/releases/7.2/7.2.25/announcement.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/7.2.25/changes.txt b/data/releases/7.2/7.2.25/changes.txt new file mode 100644 index 0000000000..deaa8fc6ff --- /dev/null +++ b/data/releases/7.2/7.2.25/changes.txt @@ -0,0 +1,34 @@ +- Core: + . Fixed bug #78656 (Parse errors classified as highest log-level). (Erik + Lundin) + . Fixed bug #78752 (Segfault if GC triggered while generator stack frame is + being destroyed). (Nikita) + . Fixed bug #78689 (Closure::fromCallable() doesn't handle + [Closure, '__invoke']). (Nikita) + +- COM: + . Fixed bug #78694 (Appending to a variant array causes segfault). (cmb) + +- Date: + . Fixed bug #70153 (\DateInterval incorrectly unserialized). (Maksim Iakunin) + . Fixed bug #78751 (Serialising DatePeriod converts DateTimeImmutable). (cmb) + +- Iconv: + . Fixed bug #78642 (Wrong libiconv version displayed). (gedas at martynas, + cmb). + +- OpCache: + . Fixed bug #78654 (Incorrectly computed opcache checksum on files with + non-ascii characters). (mhagstrand) + . Fixed bug #78747 (OpCache corrupts custom extension result). (Nikita) + +- OpenSSL: + . Fixed bug #78775 (TLS issues from HTTP request affecting other encrypted + connections). (Nikita) + +- Reflection: + . Fixed bug #78697 (ReflectionClass::ImplementsInterface - inaccurate error + message with traits). (villfa) + +- Sockets: + . Fixed bug #78665 (Multicasting may leak memory). (cmb) diff --git a/data/releases/7.2/7.2.25/release.json b/data/releases/7.2/7.2.25/release.json new file mode 100644 index 0000000000..038d39a866 --- /dev/null +++ b/data/releases/7.2/7.2.25/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.25", + "date": "21 Nov 2019", + "tags": [], + "source": [ + { + "filename": "php-7.2.25.tar.bz2", + "name": "PHP 7.2.25 (tar.bz2)", + "sha256": "7cb336b1ed0f9d87f46bbcb7b3437ee252d0d5060c0fb1a985adb6cbc73a6b9e" + }, + { + "filename": "php-7.2.25.tar.gz", + "name": "PHP 7.2.25 (tar.gz)", + "sha256": "b2cb1bd46454d33b2c65c2fd559f464cd14e57dd47b953adf5caa77fdf0de52b" + }, + { + "filename": "php-7.2.25.tar.xz", + "name": "PHP 7.2.25 (tar.xz)", + "sha256": "746efeedc38e6ff7b1ec1432440f5fa801537adf6cd21e4afb3f040e5b0760a9" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.26/announcement.html b/data/releases/7.2/7.2.26/announcement.html new file mode 100644 index 0000000000..545f6c7a6e --- /dev/null +++ b/data/releases/7.2/7.2.26/announcement.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/7.2.26/changes.txt b/data/releases/7.2/7.2.26/changes.txt new file mode 100644 index 0000000000..0be684a83c --- /dev/null +++ b/data/releases/7.2/7.2.26/changes.txt @@ -0,0 +1,32 @@ +- Bcmath: + . Fixed bug #78878 (Buffer underflow in bc_shift_addsub). (CVE-2019-11046). + (cmb) + +- Core: + . Fixed bug #78862 (link() silently truncates after a null byte on Windows). + (CVE-2019-11044). (cmb) + . Fixed bug #78863 (DirectoryIterator class silently truncates after a null + byte). (CVE-2019-11045). (cmb) + +- EXIF: + . Fixed bug #78793 (Use-after-free in exif parsing under memory sanitizer). + (CVE-2019-11050). (Nikita) + . Fixed bug #78910 (Heap-buffer-overflow READ in exif). (CVE-2019-11047). + (Nikita) + +- GD: + . Fixed bug #78849 (GD build broken with -D SIGNED_COMPARE_SLOW). (cmb) + +- Intl: + . Fixed bug #78804 (Segmentation fault in Locale::filterMatches). (Stas) + +- OPcache: + . Fixed $x = (bool)$x; with opcache (should emit undeclared variable notice). + (Tyson Andre) + +- Standard: + . Fixed bug #78759 (array_search in $GLOBALS). (Nikita) + . Fixed bug #78833 (Integer overflow in pack causes out-of-bound access). + (cmb) + . Fixed bug #78814 (strip_tags allows / in tag name => whitelist bypass). + (cmb) diff --git a/data/releases/7.2/7.2.26/release.json b/data/releases/7.2/7.2.26/release.json new file mode 100644 index 0000000000..b6ad46752c --- /dev/null +++ b/data/releases/7.2/7.2.26/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.26", + "date": "18 Dec 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.26.tar.bz2", + "name": "PHP 7.2.26 (tar.bz2)", + "sha256": "f36d86eecf57ff919d6f67b064e1f41993f62e3991ea4796038d8d99c74e847b" + }, + { + "filename": "php-7.2.26.tar.gz", + "name": "PHP 7.2.26 (tar.gz)", + "sha256": "e97d0636478bb519cd955a0c17b7970cf173063a840a83fc4afb75c22bc1bf08" + }, + { + "filename": "php-7.2.26.tar.xz", + "name": "PHP 7.2.26 (tar.xz)", + "sha256": "1dd3bc875e105f5c9d21fb4dc240670bd2c22037820ff03890f5ab883c88b78d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.27/announcement.html b/data/releases/7.2/7.2.27/announcement.html new file mode 100644 index 0000000000..4066ad227b --- /dev/null +++ b/data/releases/7.2/7.2.27/announcement.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/7.2.27/changes.txt b/data/releases/7.2/7.2.27/changes.txt new file mode 100644 index 0000000000..e537fbb223 --- /dev/null +++ b/data/releases/7.2/7.2.27/changes.txt @@ -0,0 +1,9 @@ +- Mbstring: + . Fixed bug #79037 (global buffer-overflow in `mbfl_filt_conv_big5_wchar`). + (CVE-2020-7060) (Nikita) + +- Session: + . Fixed bug #79091 (heap use-after-free in session_create_id()). (cmb, Nikita) + +- Standard: + . Fixed bug #79099 (OOB read in php_strip_tags_ex). (CVE-2020-7059). (cmb) diff --git a/data/releases/7.2/7.2.27/release.json b/data/releases/7.2/7.2.27/release.json new file mode 100644 index 0000000000..07f5bb5393 --- /dev/null +++ b/data/releases/7.2/7.2.27/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.27", + "date": "23 Jan 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.27.tar.bz2", + "name": "PHP 7.2.27 (tar.bz2)", + "sha256": "5bc0695b171b870ceb083c5432c6a758d3dbd3830a0cf6cf35bd9b283a627049" + }, + { + "filename": "php-7.2.27.tar.gz", + "name": "PHP 7.2.27 (tar.gz)", + "sha256": "e00ace5e89cb162cba0aebd17144541e1c4d965589155a44ca706d9f9c5a8981" + }, + { + "filename": "php-7.2.27.tar.xz", + "name": "PHP 7.2.27 (tar.xz)", + "sha256": "7bd0fb9e3b63cfe53176d1f3565cd686f90b3926217158de5ba57091f49e4c32" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.28/announcement.html b/data/releases/7.2/7.2.28/announcement.html new file mode 100644 index 0000000000..09ba1dd1e5 --- /dev/null +++ b/data/releases/7.2/7.2.28/announcement.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/7.2.28/changes.txt b/data/releases/7.2/7.2.28/changes.txt new file mode 100644 index 0000000000..e54b6f44cf --- /dev/null +++ b/data/releases/7.2/7.2.28/changes.txt @@ -0,0 +1,11 @@ +- DOM: + . Fixed bug #77569: (Write Access Violation in DomImplementation). (Nikita, + cmb) + +- Phar: + . Fixed bug #79082 (Files added to tar with Phar::buildFromIterator have + all-access permissions). (CVE-2020-7063) (stas) + +- Session: + . Fixed bug #79221 (Null Pointer Dereference in PHP Session Upload Progress). + (CVE-2020-7062) (stas) diff --git a/data/releases/7.2/7.2.28/release.json b/data/releases/7.2/7.2.28/release.json new file mode 100644 index 0000000000..fd51ac46c9 --- /dev/null +++ b/data/releases/7.2/7.2.28/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.28", + "date": "20 Feb 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.28.tar.bz2", + "name": "PHP 7.2.28 (tar.bz2)", + "sha256": "7c953a5b79db3d8d45c65014aef382a48e1c3435cf0c2574e942957f0cdd52a3" + }, + { + "filename": "php-7.2.28.tar.gz", + "name": "PHP 7.2.28 (tar.gz)", + "sha256": "ed5fede7602ccd8d1294b4e4aef7f92f4e3af58ab040bd349264b3f5dbef3261" + }, + { + "filename": "php-7.2.28.tar.xz", + "name": "PHP 7.2.28 (tar.xz)", + "sha256": "afe1863301da572dee2e0bad8014813bcced162f980ddc8ec8e41fd72263eb2d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.29/announcement.html b/data/releases/7.2/7.2.29/announcement.html new file mode 100644 index 0000000000..c9ed65dbc2 --- /dev/null +++ b/data/releases/7.2/7.2.29/announcement.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/7.2.29/changes.txt b/data/releases/7.2/7.2.29/changes.txt new file mode 100644 index 0000000000..c8b292e8ce --- /dev/null +++ b/data/releases/7.2/7.2.29/changes.txt @@ -0,0 +1,7 @@ +- EXIF: + . Fixed bug #79282 (Use-of-uninitialized-value in exif). (CVE-2020-7064) + (Nikita) + +- Standard: + . Fixed bug #79329 (get_headers() silently truncates after a null byte) + (CVE-2020-7066). (cmb) diff --git a/data/releases/7.2/7.2.29/release.json b/data/releases/7.2/7.2.29/release.json new file mode 100644 index 0000000000..db339b4124 --- /dev/null +++ b/data/releases/7.2/7.2.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.29", + "date": "19 Mar 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.29.tar.bz2", + "name": "PHP 7.2.29 (tar.bz2)", + "sha256": "eaa1f5503f2bf0c8569ec4ae80ffd8ca8cbc260f01c2503dd0e83dfc9cf0b923" + }, + { + "filename": "php-7.2.29.tar.gz", + "name": "PHP 7.2.29 (tar.gz)", + "sha256": "ea5c96309394a03a38828cc182058be0c09dde1f00f35809622c2d05c50ee890" + }, + { + "filename": "php-7.2.29.tar.xz", + "name": "PHP 7.2.29 (tar.xz)", + "sha256": "b117de74136bf4b439d663be9cf0c8e06a260c1f340f6b75ccadb609153a7fe8" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.3/announcement.html b/data/releases/7.2/7.2.3/announcement.html new file mode 100644 index 0000000000..e959bfe1bc --- /dev/null +++ b/data/releases/7.2/7.2.3/announcement.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/7.2.3/changes.txt b/data/releases/7.2/7.2.3/changes.txt new file mode 100644 index 0000000000..52f5a1bb7b --- /dev/null +++ b/data/releases/7.2/7.2.3/changes.txt @@ -0,0 +1,48 @@ +- Core: + . Fixed bug #75864 ("stream_isatty" returns wrong value on s390x). (Sam Ding) + +- Apache2Handler: + . Fixed bug #75882 (a simple way for segfaults in threadsafe php just with + configuration). (Anatol) + +- Date: + . Fixed bug #75857 (Timezone gets truncated when formatted). (carusogabriel) + . Fixed bug #75928 (Argument 2 for `DateTimeZone::listIdentifiers()` should + accept `null`). (Pedro Lacerda) + . Fixed bug #68406 (calling var_dump on a DateTimeZone object modifies it). + (jhdxr) + +- LDAP: + . Fixed bug #49876 (Fix LDAP path lookup on 64-bit distros). (dzuelke) + +- libxml2: + . Fixed bug #75871 (use pkg-config where available). (pmmaga) + +- PGSQL: + . Fixed bug #75838 (Memory leak in pg_escape_bytea()). (ard_1 at mail dot ru) + +- Phar: + . Fixed bug #54289 (Phar::extractTo() does not accept specific directories to + be extracted). (bishop) + . Fixed bug #65414 (deal with leading slash while adding files correctly). + (bishopb) + . Fixed bug #65414 (deal with leading slash when adding files correctly). + (bishopb) + +- ODBC: + . Fixed bug #73725 (Unable to retrieve value of varchar(max) type). (Anatol) + +- Opcache: + . Fixed bug #75729 (opcache segfault when installing Bitrix). (Nikita) + . Fixed bug #75893 (file_get_contents $http_response_header variable bugged + with opcache). (Nikita) + . Fixed bug #75938 (Modulus value not stored in variable). (Nikita) + +- SPL: + . Fixed bug #74519 (strange behavior of AppendIterator). (jhdxr) + +- Standard: + . Fixed bug #75916 (DNS_CAA record results contain garbage). (Mike, + Philip Sharp) + . Fixed bug #75981 (Prevent reading beyond buffer start in http wrapper). + (Stas) diff --git a/data/releases/7.2/7.2.3/release.json b/data/releases/7.2/7.2.3/release.json new file mode 100644 index 0000000000..f7651d3e9b --- /dev/null +++ b/data/releases/7.2/7.2.3/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.3", + "date": "1 Mar 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.3.tar.bz2", + "name": "PHP 7.2.3 (tar.bz2)", + "sha256": "4a735aac0ba764dd8208ea29007d3916396c5292e003ba8d3bec49edcdd5bf92" + }, + { + "filename": "php-7.2.3.tar.gz", + "name": "PHP 7.2.3 (tar.gz)", + "sha256": "5dc98f2266db40c5e4d9b5edf5e29e2449e819fff8321a07eb3830cf0b104bbb" + }, + { + "filename": "php-7.2.3.tar.xz", + "name": "PHP 7.2.3 (tar.xz)", + "sha256": "b3a94f1b562f413c0b96f54bc309706d83b29ac65d9b172bc7ed9fb40a5e651f" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.30/announcement.html b/data/releases/7.2/7.2.30/announcement.html new file mode 100644 index 0000000000..21329e4fa8 --- /dev/null +++ b/data/releases/7.2/7.2.30/announcement.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/7.2.30/changes.txt b/data/releases/7.2/7.2.30/changes.txt new file mode 100644 index 0000000000..c6f487420a --- /dev/null +++ b/data/releases/7.2/7.2.30/changes.txt @@ -0,0 +1,5 @@ +- Standard: + . Fixed bug #79468 (SIGSEGV when closing stream handle with a stream filter + appended). (dinosaur) + . Fixed bug #79330 (shell_exec() silently truncates after a null byte). (stas) + . Fixed bug #79465 (OOB Read in urldecode()). (stas) diff --git a/data/releases/7.2/7.2.30/release.json b/data/releases/7.2/7.2.30/release.json new file mode 100644 index 0000000000..8c681446cf --- /dev/null +++ b/data/releases/7.2/7.2.30/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.30", + "date": "16 Apr 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.30.tar.bz2", + "name": "PHP 7.2.30 (tar.bz2)", + "sha256": "c4cf5c9debe8fd8def0a933231cf2fa3a8bdd22555ae57e825bfac6a87a712bf" + }, + { + "filename": "php-7.2.30.tar.gz", + "name": "PHP 7.2.30 (tar.gz)", + "sha256": "daa53d22510b0fd433904d1c3de460746860a974b776f727ac8acecb44e16e2f" + }, + { + "filename": "php-7.2.30.tar.xz", + "name": "PHP 7.2.30 (tar.xz)", + "sha256": "aa93df27b58a45d6c9800ac813245dfdca03490a918ebe515b3a70189b1bf8c3" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.31/announcement.html b/data/releases/7.2/7.2.31/announcement.html new file mode 100644 index 0000000000..932e1a2e71 --- /dev/null +++ b/data/releases/7.2/7.2.31/announcement.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/7.2.31/changes.txt b/data/releases/7.2/7.2.31/changes.txt new file mode 100644 index 0000000000..a2e5ee4f59 --- /dev/null +++ b/data/releases/7.2/7.2.31/changes.txt @@ -0,0 +1,5 @@ +- Core: + . Fixed bug #78875 (Long filenames cause OOM and temp files are not cleaned). + (CVE-2019-11048) (cmb) + . Fixed bug #78876 (Long variables in multipart/form-data cause OOM and temp + files are not cleaned). (CVE-2019-11048) (cmb) diff --git a/data/releases/7.2/7.2.31/release.json b/data/releases/7.2/7.2.31/release.json new file mode 100644 index 0000000000..bfc1d2d291 --- /dev/null +++ b/data/releases/7.2/7.2.31/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.31", + "date": "14 May 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.31.tar.bz2", + "name": "PHP 7.2.31 (tar.bz2)", + "sha256": "1ba7559745d704f39764a5deb002eb94f5cb8d9aaa219a6b8b32b94174e8a700" + }, + { + "filename": "php-7.2.31.tar.gz", + "name": "PHP 7.2.31 (tar.gz)", + "sha256": "796837831ccebf00dc15921ed327cfbac59177da41b33044d9a6c7134cdd250c" + }, + { + "filename": "php-7.2.31.tar.xz", + "name": "PHP 7.2.31 (tar.xz)", + "sha256": "8beaa634bb878a96af9bc8643811ea46973f5f41ad2bfb6ab4cfd290e5a39806" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.32/announcement.html b/data/releases/7.2/7.2.32/announcement.html new file mode 100644 index 0000000000..40319113e8 --- /dev/null +++ b/data/releases/7.2/7.2.32/announcement.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/7.2.32/changes.txt b/data/releases/7.2/7.2.32/changes.txt new file mode 100644 index 0000000000..f5d18e5d55 --- /dev/null +++ b/data/releases/7.2/7.2.32/changes.txt @@ -0,0 +1,3 @@ +- Core: + . No source changes to this release. + Vesion number added for reproduction of Windows builds. (cmb) diff --git a/data/releases/7.2/7.2.32/release.json b/data/releases/7.2/7.2.32/release.json new file mode 100644 index 0000000000..423643b612 --- /dev/null +++ b/data/releases/7.2/7.2.32/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.32", + "date": "09 Jul 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.32.tar.bz2", + "name": "PHP 7.2.32 (tar.bz2)", + "sha256": "715c0a4274ad17ce449cd0f16b8a7428936e3ba80002d0948a8699a6f75d98a7" + }, + { + "filename": "php-7.2.32.tar.gz", + "name": "PHP 7.2.32 (tar.gz)", + "sha256": "b3aabb99e574c407dd58ad071fc52e27c489608fe06f1330d688d0fb7349089c" + }, + { + "filename": "php-7.2.32.tar.xz", + "name": "PHP 7.2.32 (tar.xz)", + "sha256": "050fc16ca56d8d2365d980998220a4eb06439da71dfd38de49b42fea72310ef1" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.33/announcement.html b/data/releases/7.2/7.2.33/announcement.html new file mode 100644 index 0000000000..15ba7b4705 --- /dev/null +++ b/data/releases/7.2/7.2.33/announcement.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/7.2.33/changes.txt b/data/releases/7.2/7.2.33/changes.txt new file mode 100644 index 0000000000..d9fb398c37 --- /dev/null +++ b/data/releases/7.2/7.2.33/changes.txt @@ -0,0 +1,7 @@ +- Core: + . Fixed bug #79877 (getimagesize function silently truncates after a null + byte) (cmb) + +- Phar: + . Fixed bug #79797 (Use of freed hash key in the phar_parse_zipfile + function). (CVE-2020-7068) (cmb) diff --git a/data/releases/7.2/7.2.33/release.json b/data/releases/7.2/7.2.33/release.json new file mode 100644 index 0000000000..4e01724fb3 --- /dev/null +++ b/data/releases/7.2/7.2.33/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.33", + "date": "06 Aug 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.33.tar.bz2", + "name": "PHP 7.2.33 (tar.bz2)", + "sha256": "03dda3a3a0c8befc9b381bc9cf4638d13862783fc7b8aef43fdd4431ab85854d" + }, + { + "filename": "php-7.2.33.tar.gz", + "name": "PHP 7.2.33 (tar.gz)", + "sha256": "97bb6b88ddfa44f36c4fc84a1a718faef476f61b532d26ea29e3e9f6cd79d839" + }, + { + "filename": "php-7.2.33.tar.xz", + "name": "PHP 7.2.33 (tar.xz)", + "sha256": "0f160a3483ffce36be5962fab7bcf09d605ee66c5707df83e4195cb796bbb03a" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.34/announcement.html b/data/releases/7.2/7.2.34/announcement.html new file mode 100644 index 0000000000..b33c431ae5 --- /dev/null +++ b/data/releases/7.2/7.2.34/announcement.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/7.2.34/changes.txt b/data/releases/7.2/7.2.34/changes.txt new file mode 100644 index 0000000000..e6386da585 --- /dev/null +++ b/data/releases/7.2/7.2.34/changes.txt @@ -0,0 +1,7 @@ +- Core: + . Fixed bug #79699 (PHP parses encoded cookie names so malicious `__Host-` + cookies can be sent). (CVE-2020-7070) (Stas) + +- OpenSSL: + . Fixed bug #79601 (Wrong ciphertext/tag in AES-CCM encryption for a 12 + bytes IV). (CVE-2020-7069) (Jakub Zelenka) diff --git a/data/releases/7.2/7.2.34/release.json b/data/releases/7.2/7.2.34/release.json new file mode 100644 index 0000000000..a6b5542ce7 --- /dev/null +++ b/data/releases/7.2/7.2.34/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.34", + "date": "01 Oct 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.34.tar.gz", + "name": "PHP 7.2.34 (tar.gz)", + "sha256": "8b2777c741e83f188d3ca6d8e98ece7264acafee86787298fae57e05d0dddc78" + }, + { + "filename": "php-7.2.34.tar.bz2", + "name": "PHP 7.2.34 (tar.bz2)", + "sha256": "0e5816d668a2bb14aca68cef8c430430bd86c3c5233f6c427d1a54aac127abcf" + }, + { + "filename": "php-7.2.34.tar.xz", + "name": "PHP 7.2.34 (tar.xz)", + "sha256": "409e11bc6a2c18707dfc44bc61c820ddfd81e17481470f3405ee7822d8379903" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.4/announcement.html b/data/releases/7.2/7.2.4/announcement.html new file mode 100644 index 0000000000..2fa69c0054 --- /dev/null +++ b/data/releases/7.2/7.2.4/announcement.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/7.2.4/changes.txt b/data/releases/7.2/7.2.4/changes.txt new file mode 100644 index 0000000000..ef884e8f64 --- /dev/null +++ b/data/releases/7.2/7.2.4/changes.txt @@ -0,0 +1,44 @@ +- Core: + . Fixed bug #76025 (Segfault while throwing exception in error_handler). + (Dmitry, Laruence) + . Fixed bug #76044 ('date: illegal option -- -' in ./configure on FreeBSD). + (Anatol) + +- FPM: + . Fixed bug #75605 (Dumpable FPM child processes allow bypassing opcache + access controls). (Jakub Zelenka) + +- FTP: + . Fixed ftp_pasv arginfo. (carusogabriel) + +-GD: + . Fixed bug #73957 (signed integer conversion in imagescale()). (cmb) + . Fixed bug #76041 (null pointer access crashed php). (cmb) + . Fixed imagesetinterpolation arginfo. (Gabriel Caruso) + +- iconv: + . Fixed bug #75867 (Freeing uninitialized pointer). (Philip Prindeville) + +- Mbstring: + . Fixed bug #62545 (wrong unicode mapping in some charsets). (cmb) + +- Opcache: + . Fixed bug #75969 (Assertion failure in live range DCE due to block pass + misoptimization). (Nikita) + +- OpenSSL: + . Fixed openssl_* arginfos. (carusogabriel) + +- PCNTL: + . Fixed bug #75873 (pcntl_wexitstatus returns incorrect on Big_Endian platform + (s390x)). (Sam Ding) + +- Phar: + . Fixed bug #76085 (Segmentation fault in buildFromIterator when directory + name contains a \n). (Laruence) + +- Standard: + . Fixed bug #75961 (Strange references behavior). (Laruence) + . Fixed some arginfos. (carusogabriel) + . Fixed bug #76068 (parse_ini_string fails to parse "[foo]\nbar=1|>baz" with + segfault). (Anatol) diff --git a/data/releases/7.2/7.2.4/release.json b/data/releases/7.2/7.2.4/release.json new file mode 100644 index 0000000000..1819bac69e --- /dev/null +++ b/data/releases/7.2/7.2.4/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.4", + "date": "29 Mar 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.4.tar.bz2", + "name": "PHP 7.2.4 (tar.bz2)", + "sha256": "11658a0d764dc94023b9fb60d4b5eb75d438ad17981efe70abb0d0d09a447ef3" + }, + { + "filename": "php-7.2.4.tar.gz", + "name": "PHP 7.2.4 (tar.gz)", + "sha256": "58e28e978baea0fe9009432bcb436934eaacccfdcb5f5409c7526431a595857b" + }, + { + "filename": "php-7.2.4.tar.xz", + "name": "PHP 7.2.4 (tar.xz)", + "sha256": "7916b1bd148ddfd46d7f8f9a517d4b09cd8a8ad9248734e7c8dd91ef17057a88" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.5/announcement.html b/data/releases/7.2/7.2.5/announcement.html new file mode 100644 index 0000000000..26bc2224cc --- /dev/null +++ b/data/releases/7.2/7.2.5/announcement.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/7.2.5/changes.txt b/data/releases/7.2/7.2.5/changes.txt new file mode 100644 index 0000000000..2e9a5544f1 --- /dev/null +++ b/data/releases/7.2/7.2.5/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed bug #75722 (Convert valgrind detection to configure option). + (Michael Heimpold) + +- Date: + . Fixed bug #76131 (mismatch arginfo for date_create). (carusogabriel) + +- Exif: + . Fixed bug #76130 (Heap Buffer Overflow (READ: 1786) in exif_iif_add_value). + (Stas) + +- FPM: + . Fixed bug #68440 (ERROR: failed to reload: execvp() failed: Argument list + too long). (Jacob Hipps) + . Fixed incorrect write to getenv result in FPM reload. (Jakub Zelenka) + +- GD: + . Fixed bug #52070 (imagedashedline() - dashed line sometimes is not visible). + (cmb) + +- iconv: + . Fixed bug #76249 (stream filter convert.iconv leads to infinite loop on + invalid sequence). (Stas) + +- intl: + . Fixed bug #76153 (Intl compilation fails with icu4c 61.1). (Anatol) + +- ldap: + . Fixed bug #76248 (Malicious LDAP-Server Response causes Crash). (Stas) + +- mbstring: + . Fixed bug #75944 (Wrong cp1251 detection). (dmk001) + . Fixed bug #76113 (mbstring does not build with Oniguruma 6.8.1). + (chrullrich, cmb) + +- ODBC: + . Fixed bug #76088 (ODBC functions are not available by default on Windows). + (cmb) + +- Opcache: + . Fixed bug #76094 (Access violation when using opcache). (Laruence) + +- Phar: + . Fixed bug #76129 (fix for CVE-2018-5712 may not be complete). (Stas) + +- phpdbg: + . Fixed bug #76143 (Memory corruption: arbitrary NUL overwrite). (Laruence) + +- SPL: + . Fixed bug #76131 (mismatch arginfo for splarray constructor). + (carusogabriel) + +- standard: + . Fixed bug #74139 (mail.add_x_header default inconsistent with docs). (cmb) + . Fixed bug #75996 (incorrect url in header for mt_rand). (tatarbj) diff --git a/data/releases/7.2/7.2.5/release.json b/data/releases/7.2/7.2.5/release.json new file mode 100644 index 0000000000..9424fcf421 --- /dev/null +++ b/data/releases/7.2/7.2.5/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.5", + "date": "26 Apr 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.5.tar.bz2", + "name": "PHP 7.2.5 (tar.bz2)", + "sha256": "f3820efa8efa79628b6e1b5b2f8c1b04c08d32e6721fa1654039ce5f89796031" + }, + { + "filename": "php-7.2.5.tar.gz", + "name": "PHP 7.2.5 (tar.gz)", + "sha256": "c198aedd4cd16db0803e0ef955036722a1f4ce9ad3827546709fac05f1567ba5" + }, + { + "filename": "php-7.2.5.tar.xz", + "name": "PHP 7.2.5 (tar.xz)", + "sha256": "af70a33b3f7a51510467199b39af151333fbbe4cc21923bad9c7cf64268cddb2" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.6/announcement.html b/data/releases/7.2/7.2.6/announcement.html new file mode 100644 index 0000000000..d608bce543 --- /dev/null +++ b/data/releases/7.2/7.2.6/announcement.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/7.2.6/changes.txt b/data/releases/7.2/7.2.6/changes.txt new file mode 100644 index 0000000000..b1be1d9c62 --- /dev/null +++ b/data/releases/7.2/7.2.6/changes.txt @@ -0,0 +1,25 @@ +- EXIF: + . Fixed bug #76164 (exif_read_data zend_mm_heap corrupted). (cmb) + +- FPM: + . Fixed bug #76075 --with-fpm-acl wrongly tries to find libacl on FreeBSD. + (mgorny) + +- intl: + . Fixed bug #74385 (Locale::parseLocale() broken with some arguments). + (Anatol) + +- Opcache: + . Fixed bug #76205 (PHP-FPM sporadic crash when running Infinitewp). (Dmitry) + . Fixed bug #76275 (Assertion failure in file cache when unserializing empty + try_catch_array). (Nikita) + . Fixed bug #76281 (Opcache causes incorrect "undefined variable" errors). + (Nikita) + +- Reflection: + . Fixed arginfo of array_replace(_recursive) and array_merge(_recursive). + (carusogabriel) + +- Session: + . Fixed bug #74892 (Url Rewriting (trans_sid) not working on urls that start + with "#"). (Andrew Nester) diff --git a/data/releases/7.2/7.2.6/release.json b/data/releases/7.2/7.2.6/release.json new file mode 100644 index 0000000000..ab7048f2eb --- /dev/null +++ b/data/releases/7.2/7.2.6/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.6", + "date": "24 May 2018", + "tags": [], + "source": [ + { + "filename": "php-7.2.6.tar.bz2", + "name": "PHP 7.2.6 (tar.bz2)", + "sha256": "ae5d3e8ada80b9d293d0c8bd643d07c2d988538ff1052a3f7144c6b0cd0ff2c3" + }, + { + "filename": "php-7.2.6.tar.gz", + "name": "PHP 7.2.6 (tar.gz)", + "sha256": "a9f30daf6af82ac02e692465cfd65b04a60d56106c961926e264d2621d313f0e" + }, + { + "filename": "php-7.2.6.tar.xz", + "name": "PHP 7.2.6 (tar.xz)", + "sha256": "1f004e049788a3effc89ef417f06a6cf704c95ae2a718b2175185f2983381ae7" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.7/announcement.html b/data/releases/7.2/7.2.7/announcement.html new file mode 100644 index 0000000000..451e98675b --- /dev/null +++ b/data/releases/7.2/7.2.7/announcement.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/7.2.7/changes.txt b/data/releases/7.2/7.2.7/changes.txt new file mode 100644 index 0000000000..aa6bf99da6 --- /dev/null +++ b/data/releases/7.2/7.2.7/changes.txt @@ -0,0 +1,21 @@ +- Core: + . Fixed bug #76337 (segfault when opcache enabled + extension use + zend_register_class_alias). (xKhorasan) + +- CLI Server: + . Fixed bug #76333 (PHP built-in server does not find files if root path + contains special characters). (Anatol) + +- OpenSSL: + . Fixed bug #76296 (openssl_pkey_get_public does not respect open_basedir). + (Erik Lax, Jakub Zelenka) + . Fixed bug #76174 (openssl extension fails to build with LibreSSL 2.7). + (Jakub Zelenka) + +- SPL: + . Fixed bug #76367 (NoRewindIterator segfault 11). (Laruence) + +- Standard: + . Fixed bug #76410 (SIGV in zend_mm_alloc_small). (Laruence) + . Fixed bug #76335 ("link(): Bad file descriptor" with non-ASCII path). + (Anatol) diff --git a/data/releases/7.2/7.2.7/release.json b/data/releases/7.2/7.2.7/release.json new file mode 100644 index 0000000000..569e3fc2c2 --- /dev/null +++ b/data/releases/7.2/7.2.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.7", + "date": "21 Jun 2018", + "tags": [], + "source": [ + { + "filename": "php-7.2.7.tar.bz2", + "name": "PHP 7.2.7 (tar.bz2)", + "sha256": "cc81675a96af4dd18d8ffc02f26a36c622abadf86af7ecfea7bcde8d3c96d5a3" + }, + { + "filename": "php-7.2.7.tar.gz", + "name": "PHP 7.2.7 (tar.gz)", + "sha256": "014f0560cfa22e6301b0024a6fd888c3612a0dc102ff355fa2b49544d16d43b1" + }, + { + "filename": "php-7.2.7.tar.xz", + "name": "PHP 7.2.7 (tar.xz)", + "sha256": "eb01c0153b3baf1f64b8b044013ce414b52fede222df3f509e8ff209478f31f0" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.8/announcement.html b/data/releases/7.2/7.2.8/announcement.html new file mode 100644 index 0000000000..9318838e91 --- /dev/null +++ b/data/releases/7.2/7.2.8/announcement.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/7.2.8/changes.txt b/data/releases/7.2/7.2.8/changes.txt new file mode 100644 index 0000000000..18d5b82e76 --- /dev/null +++ b/data/releases/7.2/7.2.8/changes.txt @@ -0,0 +1,61 @@ +- Core: + . Fixed bug #76534 (PHP hangs on 'illegal string offset on string references + with an error handler). (Laruence) + . Fixed bug #76520 (Object creation leaks memory when executed over HTTP). + (Nikita) + . Fixed bug #76502 (Chain of mixed exceptions and errors does not serialize + properly). (Nikita) + +- Date: + . Fixed bug #76462 (Undefined property: DateInterval::$f). (Anatol) + +- EXIF: + . Fixed bug #76409 (heap use after free in _php_stream_free). (cmb) + . Fixed bug #76423 (Int Overflow lead to Heap OverFlow in + exif_thumbnail_extract of exif.c). (Stas) + . Fixed bug #76557 (heap-buffer-overflow (READ of size 48) while reading exif + data). (Stas) + +- FPM: + . Fixed bug #73342 (Vulnerability in php-fpm by changing stdin to + non-blocking). (Nikita) + +- GMP: + . Fixed bug #74670 (Integer Underflow when unserializing GMP and possible + other classes). (Nikita) + +- intl: + . Fixed bug #76556 (get_debug_info handler for BreakIterator shows wrong + type). (cmb) + +- mbstring: + . Fixed bug #76532 (Integer overflow and excessive memory usage + in mb_strimwidth). (MarcusSchwarz) + +- Opcache: + . Fixed bug #76477 (Opcache causes empty return value). + (Nikita, Laruence) + +- PGSQL: + . Fixed bug #76548 (pg_fetch_result did not fetch the next row). (Anatol) + +- phpdbg: + . Fix arginfo wrt. optional/required parameters. (cmb) + +- Reflection: + . Fixed bug #76536 (PHP crashes with core dump when throwing exception in + error handler). (Laruence) + . Fixed bug #75231 (ReflectionProperty#getValue() incorrectly works with + inherited classes). (Nikita) + +- Standard: + . Fixed bug #76505 (array_merge_recursive() is duplicating sub-array keys). + (Laruence) + . Fixed bug #71848 (getimagesize with $imageinfo returns false). (cmb) + +- Win32: + . Fixed bug #76459 (windows linkinfo lacks openbasedir check). (Anatol) + +- ZIP: + . Fixed bug #76461 (OPSYS_Z_CPM defined instead of OPSYS_CPM). + (Dennis Birkholz, Remi) diff --git a/data/releases/7.2/7.2.8/release.json b/data/releases/7.2/7.2.8/release.json new file mode 100644 index 0000000000..50e5c67c9a --- /dev/null +++ b/data/releases/7.2/7.2.8/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.2.8", + "date": "19 Jul 2018", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.2.8.tar.bz2", + "name": "PHP 7.2.8 (tar.bz2)", + "sha256": "1f8068f520a60fff3db19be1b849f0c02a33a0fd8b34b7ae05556ef682187ee6" + }, + { + "filename": "php-7.2.8.tar.gz", + "name": "PHP 7.2.8 (tar.gz)", + "sha256": "a0cb9bf2f78498fc090eb553df03cdacc198785dec0818efa7a1804c2b7a8722" + }, + { + "filename": "php-7.2.8.tar.xz", + "name": "PHP 7.2.8 (tar.xz)", + "sha256": "53ba0708be8a7db44256e3ae9fcecc91b811e5b5119e6080c951ffe7910ffb0f" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.9/announcement.html b/data/releases/7.2/7.2.9/announcement.html new file mode 100644 index 0000000000..338411c0c4 --- /dev/null +++ b/data/releases/7.2/7.2.9/announcement.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.2/7.2.9/changes.txt b/data/releases/7.2/7.2.9/changes.txt new file mode 100644 index 0000000000..3c48f7270f --- /dev/null +++ b/data/releases/7.2/7.2.9/changes.txt @@ -0,0 +1,29 @@ +- Calendar: + . Fixed bug #52974 (jewish.c: compile error under Windows with GBK charset). + (cmb) + +- Filter: + . Fixed bug #76366 (References in sub-array for filtering breaks the filter). + (ZiHang Gao) + +- PDO_Firebird: + . Fixed bug #76488 (Memory leak when fetching a BLOB field). (Simonov Denis) + +- PDO_PgSQL: + . Fixed bug #75402 (Possible Memory Leak using PDO::CURSOR_SCROLL option). + (Anatol) + +- SQLite3: + . Fixed #76665 (SQLite3Stmt::bindValue() with SQLITE3_FLOAT doesn't juggle). + (cmb) + +- Standard: + . Fixed bug #73817 (Incorrect entries in get_html_translation_table). (cmb) + . Fixed bug #68553 (array_column: null values in $index_key become incrementing + keys in result). (Laruence) + . Fixed bug #76643 (Segmentation fault when using `output_add_rewrite_var`). + (cmb) + +- Zip: + . Fixed bug #76524 (ZipArchive memory leak (OVERWRITE flag and empty archive)). + (Timur Ibragimov) diff --git a/data/releases/7.2/7.2.9/release.json b/data/releases/7.2/7.2.9/release.json new file mode 100644 index 0000000000..e18fa7bc24 --- /dev/null +++ b/data/releases/7.2/7.2.9/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.9", + "date": "16 Aug 2018", + "tags": [], + "source": [ + { + "filename": "php-7.2.9.tar.bz2", + "name": "PHP 7.2.9 (tar.bz2)", + "sha256": "e9e3aaa6c317b7fea78246a758b017544366049d2789ad5a44fe9398464c53a8" + }, + { + "filename": "php-7.2.9.tar.gz", + "name": "PHP 7.2.9 (tar.gz)", + "sha256": "23fcc1e4d10e06ddfdbc1163a8f0d147a7813467273f7946eb0de1b825d1d3e6" + }, + { + "filename": "php-7.2.9.tar.xz", + "name": "PHP 7.2.9 (tar.xz)", + "sha256": "3585c1222e00494efee4f5a65a8e03a1e6eca3dfb834814236ee7f02c5248ae0" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.0/announcement.html b/data/releases/7.3/7.3.0/announcement.html new file mode 100644 index 0000000000..246d2fc390 --- /dev/null +++ b/data/releases/7.3/7.3.0/announcement.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/7.3.0/changes.txt b/data/releases/7.3/7.3.0/changes.txt new file mode 100644 index 0000000000..e43e22f5f2 --- /dev/null +++ b/data/releases/7.3/7.3.0/changes.txt @@ -0,0 +1,372 @@ +- Core: + . Improved PHP GC. (Dmitry, Nikita) + . Redesigned the old ext_skel program written in PHP, run: + 'php ext_skel.php' for all options. This means there are no dependencies, + thus making it work on Windows out of the box. (Kalle) + . Removed support for BeOS. (Kalle) + . Add PHP_VERSION to phpinfo()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/7.3.1/changes.txt b/data/releases/7.3/7.3.1/changes.txt new file mode 100644 index 0000000000..2fc5302cc1 --- /dev/null +++ b/data/releases/7.3/7.3.1/changes.txt @@ -0,0 +1,85 @@ +- Core: + . Fixed bug #76654 (Build failure on Mac OS X on 32-bit Intel). (Ryandesign) + . Fixed bug #71041 (zend_signal_startup() needs ZEND_API). + (Valentin V. Bartenev) + . Fixed bug #76046 (PHP generates "FE_FREE" opcode on the wrong line). + (Nikita) + . Fixed bug #77291 (magic methods inherited from a trait may be ignored). + (cmb) + +- CURL: + . Fixed bug #77264 (curl_getinfo returning microseconds, not seconds). + (Pierrick) + +- COM: + . Fixed bug #77177 (Serializing or unserializing COM objects crashes). (cmb) + +- Exif: + . Fixed bug #77184 (Unsigned rational numbers are written out as signed + rationals). (Colin Basnett) + +- GD: + . Fixed bug #77195 (Incorrect error handling of imagecreatefromjpeg()). (cmb) + . Fixed bug #77198 (auto cropping has insufficient precision). (cmb) + . Fixed bug #77200 (imagecropauto(…, GD_CROP_SIDES) crops left but not right). + (cmb) + . Fixed bug #77269 (efree() on uninitialized Heap data in imagescale leads to + use-after-free). (cmb) + . Fixed bug #77270 (imagecolormatch Out Of Bounds Write on Heap). (cmb) + +- MBString: + . Fixed bug #77367 (Negative size parameter in mb_split). (Stas) + . Fixed bug #77370 (Buffer overflow on mb regex functions - fetch_token). + (Stas) + . Fixed bug #77371 (heap buffer overflow in mb regex functions + - compile_string_node). (Stas) + . Fixed bug #77381 (heap buffer overflow in multibyte match_at). (Stas) + . Fixed bug #77382 (heap buffer overflow due to incorrect length in + expand_case_fold_string). (Stas) + . Fixed bug #77385 (buffer overflow in fetch_token). (Stas) + . Fixed bug #77394 (Buffer overflow in multibyte case folding - unicode). + (Stas) + . Fixed bug #77418 (Heap overflow in utf32be_mbc_to_code). (Stas) + +- OCI8: + . Fixed bug #76804 (oci_pconnect with OCI_CRED_EXT not working). (KoenigsKind) + . Added oci_set_call_timeout() for call timeouts. + . Added oci_set_db_operation() for the DBOP end-to-end-tracing attribute. + +- Opcache: + . Fixed bug #77215 (CFG assertion failure on multiple finalizing switch + frees in one block). (Nikita) + . Fixed bug #77275 (OPcache optimization problem for ArrayAccess->offsetGet). + (Nikita) + +- PCRE: + . Fixed bug #77193 (Infinite loop in preg_replace_callback). (Anatol) + +- PDO: + . Handle invalid index passed to PDOStatement::fetchColumn() as error. (Sergei + Morozov) + +- Phar: + . Fixed bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext). (Stas) + +- Soap: + . Fixed bug #77088 (Segfault when using SoapClient with null options). + (Laruence) + +- Sockets: + . Fixed bug #77136 (Unsupported IPV6_RECVPKTINFO constants on macOS). + (Mizunashi Mana) + +- Sodium: + . Fixed bug #77297 (SodiumException segfaults on PHP 7.3). (Nikita, Scott) + +- SPL: + . Fixed bug #77359 (spl_autoload causes segfault). (Lauri Kenttä) + . Fixed bug #77360 (class_uses causes segfault). (Lauri Kenttä) + +- SQLite3: + . Fixed bug #77051 (Issue with re-binding on SQLite3). (BohwaZ) + +- Xmlrpc: + . Fixed bug #77242 (heap out of bounds read in xmlrpc_decode()). (cmb) + . Fixed bug #77380 (Global out of bounds read in xmlrpc base64 code). (Stas) diff --git a/data/releases/7.3/7.3.1/release.json b/data/releases/7.3/7.3.1/release.json new file mode 100644 index 0000000000..315eefdb60 --- /dev/null +++ b/data/releases/7.3/7.3.1/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.1", + "date": "10 Jan 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.1.tar.bz2", + "name": "PHP 7.3.1 (tar.bz2)", + "sha256": "afef2b0cd7f2641274a1a0aabe67e30f2334970d7c530382dfa9d79cfe74388e" + }, + { + "filename": "php-7.3.1.tar.gz", + "name": "PHP 7.3.1 (tar.gz)", + "sha256": "8006211f7a041dde22fffedc416d142e0ebf22066014077ca936d7e6f655ead5" + }, + { + "filename": "php-7.3.1.tar.xz", + "name": "PHP 7.3.1 (tar.xz)", + "sha256": "cfe93e40be0350cd53c4a579f52fe5d8faf9c6db047f650a4566a2276bf33362" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.10/announcement.html b/data/releases/7.3/7.3.10/announcement.html new file mode 100644 index 0000000000..ebffd6949d --- /dev/null +++ b/data/releases/7.3/7.3.10/announcement.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/7.3.10/changes.txt b/data/releases/7.3/7.3.10/changes.txt new file mode 100644 index 0000000000..e3f4da0fc5 --- /dev/null +++ b/data/releases/7.3/7.3.10/changes.txt @@ -0,0 +1,37 @@ +- Core: + . Fixed bug #78220 (Can't access OneDrive folder). (cmb, ab) + . Fixed bug #77922 (Double release of doc comment on inherited shadow + property). (Nikita) + . Fixed bug #78441 (Parse error due to heredoc identifier followed by digit). + (cmb) + . Fixed bug #77812 (Interactive mode does not support PHP 7.3-style heredoc). + (cmb, Nikita) + +- FastCGI: + . Fixed bug #78469 (FastCGI on_accept hook is not called when using named + pipes on Windows). (Sergei Turchanov) + +- FPM: + . Fixed bug #78334 (fpm log prefix message includes wrong stdout/stderr + notation). (Tsuyoshi Sadakata) + +- Intl: + . Ensure IDNA2003 rules are used with idn_to_ascii() and idn_to_utf8() + when requested. (Sara) + +- MBString: + . Fixed bug #78559 (Heap buffer overflow in mb_eregi). (cmb) + +- MySQLnd: + . Fixed connect_attr issues and added the _server_host connection attribute. + (Qianqian Bu) + +- ODBC: + . Fixed bug #78473 (odbc_close() closes arbitrary resources). (cmb) + +- PDO_MySQL: + . Fixed bug #41997 (SP call yields additional empty result set). (cmb) + +- sodium: + . Fixed bug #78510 (Partially uninitialized buffer returned by + sodium_crypto_generichash_init()). (Frank Denis, cmb) diff --git a/data/releases/7.3/7.3.10/release.json b/data/releases/7.3/7.3.10/release.json new file mode 100644 index 0000000000..9d54a5cbd8 --- /dev/null +++ b/data/releases/7.3/7.3.10/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.10", + "date": "26 Sep 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.10.tar.bz2", + "name": "PHP 7.3.10 (tar.bz2)", + "sha256": "506dd871c0fb8f00f872f53dd3b1dfa5f23a9edb4dfc521e5669c78a78c45448" + }, + { + "filename": "php-7.3.10.tar.gz", + "name": "PHP 7.3.10 (tar.gz)", + "sha256": "fb670723a9b8fda31c89529f27e0dda289d8af4b6ce9f152c8010876639c0fb4" + }, + { + "filename": "php-7.3.10.tar.xz", + "name": "PHP 7.3.10 (tar.xz)", + "sha256": "42f00a15419e05771734b7159c8d39d639b8a5a6770413adfa2615f6f923d906" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.11/announcement.html b/data/releases/7.3/7.3.11/announcement.html new file mode 100644 index 0000000000..565ff42aa9 --- /dev/null +++ b/data/releases/7.3/7.3.11/announcement.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/7.3.11/changes.txt b/data/releases/7.3/7.3.11/changes.txt new file mode 100644 index 0000000000..706f4049bd --- /dev/null +++ b/data/releases/7.3/7.3.11/changes.txt @@ -0,0 +1,52 @@ +- Core: + . Fixed bug #78535 (auto_detect_line_endings value not parsed as bool). + (bugreportuser) + . Fixed bug #78620 (Out of memory error). (cmb, Nikita) + +- Exif : + . Fixed bug #78442 ('Illegal component' on exif_read_data since PHP7) + (Kalle) + +- FPM: + . Fixed bug #78599 (env_path_info underflow in fpm_main.c can lead to RCE). + (CVE-2019-11043) (Jakub Zelenka) + . Fixed bug #78413 (request_terminate_timeout does not take effect after + fastcgi_finish_request). (Sergei Turchanov) + +- MBString: + . Fixed bug #78633 (Heap buffer overflow (read) in mb_eregi). (cmb) + . Fixed bug #78579 (mb_decode_numericentity: args number inconsistency). + (cmb) + . Fixed bug #78609 (mb_check_encoding() no longer supports stringable + objects). (cmb) + +- MySQLi: + . Fixed bug #76809 (SSL settings aren't respected when persistent connections + are used). (fabiomsouto) + +- Mysqlnd: + . Fixed bug #78525 (Memory leak in pdo when reusing native prepared + statements). (Nikita) + +- PCRE: + . Fixed bug #78272 (calling preg_match() before pcntl_fork() will freeze + child process). (Nikita) + +- PDO_MySQL: + . Fixed bug #78623 (Regression caused by "SP call yields additional empty + result set"). (cmb) + +- Session: + . Fixed bug #78624 (session_gc return value for user defined session + handlers). (bshaffer) + +- Standard: + . Fixed bug #76342 (file_get_contents waits twice specified timeout). + (Thomas Calvet) + . Fixed bug #78612 (strtr leaks memory when integer keys are used and the + subject string shorter). (Nikita) + . Fixed bug #76859 (stream_get_line skips data if used with data-generating + filter). (kkopachev) + +- Zip: + . Fixed bug #78641 (addGlob can modify given remove_path value). (cmb) diff --git a/data/releases/7.3/7.3.11/release.json b/data/releases/7.3/7.3.11/release.json new file mode 100644 index 0000000000..ceec9f3fee --- /dev/null +++ b/data/releases/7.3/7.3.11/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.11", + "date": "24 Oct 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.11.tar.bz2", + "name": "PHP 7.3.11 (tar.bz2)", + "sha256": "92d1ff4b13c7093635f1ec338a5e6891ca99b10e65fbcadd527e5bb84d11b5e7" + }, + { + "filename": "php-7.3.11.tar.gz", + "name": "PHP 7.3.11 (tar.gz)", + "sha256": "8f385f5bdf9193791f6c0f6303f518f3c324b6655ac108fdb3c426da7f3cf4d4" + }, + { + "filename": "php-7.3.11.tar.xz", + "name": "PHP 7.3.11 (tar.xz)", + "sha256": "657cf6464bac28e9490c59c07a2cf7bb76c200f09cfadf6e44ea64e95fa01021" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.12/announcement.html b/data/releases/7.3/7.3.12/announcement.html new file mode 100644 index 0000000000..32512dc3c7 --- /dev/null +++ b/data/releases/7.3/7.3.12/announcement.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/7.3.12/changes.txt b/data/releases/7.3/7.3.12/changes.txt new file mode 100644 index 0000000000..251c478934 --- /dev/null +++ b/data/releases/7.3/7.3.12/changes.txt @@ -0,0 +1,35 @@ +- Core: + . Fixed bug #78658 (Memory corruption using Closure::bindTo). (Nikita) + . Fixed bug #78656 (Parse errors classified as highest log-level). (Erik + Lundin) + . Fixed bug #78752 (Segfault if GC triggered while generator stack frame is + being destroyed). (Nikita) + . Fixed bug #78689 (Closure::fromCallable() doesn't handle + [Closure, '__invoke']). (Nikita) + +- COM: + . Fixed bug #78694 (Appending to a variant array causes segfault). (cmb) + +- Date: + . Fixed bug #70153 (\DateInterval incorrectly unserialized). (Maksim Iakunin) + . Fixed bug #78751 (Serialising DatePeriod converts DateTimeImmutable). (cmb) + +- Iconv: + . Fixed bug #78642 (Wrong libiconv version displayed). (gedas at martynas, + cmb). + +- OpCache: + . Fixed bug #78654 (Incorrectly computed opcache checksum on files with + non-ascii characters). (mhagstrand) + . Fixed bug #78747 (OpCache corrupts custom extension result). (Nikita) + +- OpenSSL: + . Fixed bug #78775 (TLS issues from HTTP request affecting other encrypted + connections). (Nikita) + +- Reflection: + . Fixed bug #78697 (ReflectionClass::ImplementsInterface - inaccurate error + message with traits). (villfa) + +- Sockets: + . Fixed bug #78665 (Multicasting may leak memory). (cmb) diff --git a/data/releases/7.3/7.3.12/release.json b/data/releases/7.3/7.3.12/release.json new file mode 100644 index 0000000000..d2269850c1 --- /dev/null +++ b/data/releases/7.3/7.3.12/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.3.12", + "date": "21 Nov 2019", + "tags": [], + "source": [ + { + "filename": "php-7.3.12.tar.bz2", + "name": "PHP 7.3.12 (tar.bz2)", + "sha256": "d317b029f991410578cc38ba4b76c9f764ec29c67e7124e1fec57bceb3ad8c39" + }, + { + "filename": "php-7.3.12.tar.gz", + "name": "PHP 7.3.12 (tar.gz)", + "sha256": "d617e5116f8472a628083f448ebe4afdbc4ac013c9a890b08946649dcbe61b34" + }, + { + "filename": "php-7.3.12.tar.xz", + "name": "PHP 7.3.12 (tar.xz)", + "sha256": "aafe5e9861ad828860c6af8c88cdc1488314785962328eb1783607c1fdd855df" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.13/announcement.html b/data/releases/7.3/7.3.13/announcement.html new file mode 100644 index 0000000000..d1e84c6027 --- /dev/null +++ b/data/releases/7.3/7.3.13/announcement.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/7.3.13/changes.txt b/data/releases/7.3/7.3.13/changes.txt new file mode 100644 index 0000000000..89dd0d6456 --- /dev/null +++ b/data/releases/7.3/7.3.13/changes.txt @@ -0,0 +1,45 @@ +- Bcmath: + . Fixed bug #78878 (Buffer underflow in bc_shift_addsub). (CVE-2019-11046). + (cmb) + +- Core: + . Fixed bug #78862 (link() silently truncates after a null byte on Windows). + (CVE-2019-11044). (cmb) + . Fixed bug #78863 (DirectoryIterator class silently truncates after a null + byte). (CVE-2019-11045). (cmb) + . Fixed bug #78943 (mail() may release string with refcount==1 twice). + (CVE-2019-11049). (cmb) + . Fixed bug #78787 (Segfault with trait overriding inherited private shadow + property). (Nikita) + . Fixed bug #78868 (Calling __autoload() with incorrect EG(fake_scope) value). + (Antony Dovgal, Dmitry) + . Fixed bug #78296 (is_file fails to detect file). (cmb) + +- EXIF: + . Fixed bug #78793 (Use-after-free in exif parsing under memory sanitizer). + (CVE-2019-11050). (Nikita) + . Fixed bug #78910 (Heap-buffer-overflow READ in exif). (CVE-2019-11047). + (Nikita) + +- GD: + . Fixed bug #78849 (GD build broken with -D SIGNED_COMPARE_SLOW). (cmb) + +- MBString: + . Upgraded bundled Oniguruma to 6.9.4. (cmb) + +- OPcache: + . Fixed potential ASLR related invalid opline handler issues. (cmb) + . Fixed $x = (bool)$x; with opcache (should emit undeclared variable notice). + (Tyson Andre) + +- PCRE: + . Fixed bug #78853 (preg_match() may return integer > 1). (cmb) + +- Standard: + . Fixed bug #78759 (array_search in $GLOBALS). (Nikita) + . Fixed bug #77638 (var_export'ing certain class instances segfaults). (cmb) + . Fixed bug #78840 (imploding $GLOBALS crashes). (cmb) + . Fixed bug #78833 (Integer overflow in pack causes out-of-bound access). + (cmb) + . Fixed bug #78814 (strip_tags allows / in tag name => whitelist bypass). + (cmb) diff --git a/data/releases/7.3/7.3.13/release.json b/data/releases/7.3/7.3.13/release.json new file mode 100644 index 0000000000..4dbe4abd38 --- /dev/null +++ b/data/releases/7.3/7.3.13/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.13", + "date": "18 Dec 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.13.tar.bz2", + "name": "PHP 7.3.13 (tar.bz2)", + "sha256": "5c7b89062814f3c3953d1518f63ed463fd452929e3a37110af4170c5d23267bc" + }, + { + "filename": "php-7.3.13.tar.gz", + "name": "PHP 7.3.13 (tar.gz)", + "sha256": "9cf835416a3471d7e6615e9288e76813d55ffaf60e0aa9ce74884a7c228cb6dd" + }, + { + "filename": "php-7.3.13.tar.xz", + "name": "PHP 7.3.13 (tar.xz)", + "sha256": "57ac55fe442d2da650abeb9e6fa161bd3a98ba6528c029f076f8bba43dd5c228" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.14/announcement.html b/data/releases/7.3/7.3.14/announcement.html new file mode 100644 index 0000000000..33938a8bba --- /dev/null +++ b/data/releases/7.3/7.3.14/announcement.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/7.3.14/changes.txt b/data/releases/7.3/7.3.14/changes.txt new file mode 100644 index 0000000000..c68e9d188d --- /dev/null +++ b/data/releases/7.3/7.3.14/changes.txt @@ -0,0 +1,57 @@ +- Core + . Fixed bug #78999 (Cycle leak when using function result as temporary). + (Dmitry) + +- CURL: + . Fixed bug #79033 (Curl timeout error with specific url and post). (cmb) + +- Date: + . Fixed bug #79015 (undefined-behavior in php_date.c). (cmb) + +- DBA: + . Fixed bug #78808 ([LMDB] MDB_MAP_FULL: Environment mapsize limit reached). + (cmb) + +- Fileinfo: + . Fixed bug #74170 (locale information change after mime_content_type). + (Sergei Turchanov) + +- GD: + . Fixed bug #78923 (Artifacts when convoluting image with transparency). + (wilson chen) + . Fixed bug #79067 (gdTransformAffineCopy() may use unitialized values). (cmb) + . Fixed bug #79068 (gdTransformAffineCopy() changes interpolation method). + (cmb) + +- Libxml: + . Fixed bug #79029 (Use After Free's in XMLReader / XMLWriter). (Laruence) + +- Mbstring: + . Fixed bug #79037 (global buffer-overflow in `mbfl_filt_conv_big5_wchar`). + (CVE-2020-7060) (Nikita) + +- OPcache: + . Fixed bug #79040 (Warning Opcode handlers are unusable due to ASLR). (cmb) + +- Pcntl: + . Fixed bug #78402 (Converting null to string in error message is bad DX). + (SATŌ Kentarō) + +- PDO_PgSQL: + . Fixed bug #78983 (pdo_pgsql config.w32 cannot find libpq-fe.h). (SATŌ + Kentarō) + . Fixed bug #78980 (pgsqlGetNotify() overlooks dead connection). (SATŌ + Kentarō) + . Fixed bug #78982 (pdo_pgsql returns dead persistent connection). (SATŌ + Kentarō) + +- Session: + . Fixed bug #79091 (heap use-after-free in session_create_id()). (cmb, Nikita) + +- Shmop: + . Fixed bug #78538 (shmop memory leak). (cmb) + +- Standard: + . Fixed bug #79099 (OOB read in php_strip_tags_ex). (CVE-2020-7059). (cmb) + . Fixed bug #54298 (Using empty additional_headers adding extraneous CRLF). + (cmb) diff --git a/data/releases/7.3/7.3.14/release.json b/data/releases/7.3/7.3.14/release.json new file mode 100644 index 0000000000..222e5ea1f4 --- /dev/null +++ b/data/releases/7.3/7.3.14/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.14", + "date": "23 Jan 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.14.tar.bz2", + "name": "PHP 7.3.14 (tar.bz2)", + "sha256": "b9dfcbbbc929ce67995f976de8636c5f46804593ecae6e110509329b9dc6c272" + }, + { + "filename": "php-7.3.14.tar.gz", + "name": "PHP 7.3.14 (tar.gz)", + "sha256": "6aff532a380b0f30c9e295b67dc91d023fee3b0ae14b4771468bf5dda4cbf108" + }, + { + "filename": "php-7.3.14.tar.xz", + "name": "PHP 7.3.14 (tar.xz)", + "sha256": "cc05dd373ca5d36652800762f65c10e828a17de35aaf246262e3efa99d00cdb0" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.15/announcement.html b/data/releases/7.3/7.3.15/announcement.html new file mode 100644 index 0000000000..5b12b769a0 --- /dev/null +++ b/data/releases/7.3/7.3.15/announcement.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/7.3.15/changes.txt b/data/releases/7.3/7.3.15/changes.txt new file mode 100644 index 0000000000..d73064c482 --- /dev/null +++ b/data/releases/7.3/7.3.15/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Fixed bug #71876 (Memory corruption htmlspecialchars(): charset `*' not + supported). (Nikita) + . Fixed bug #79146 (cscript can fail to run on some systems). (clarodeus) + . Fixed bug #78323 (Code 0 is returned on invalid options). (Ivan Mikheykin) + . Fixed bug #76047 (Use-after-free when accessing already destructed + backtrace arguments). (Nikita) + +- CURL: + . Fixed bug #79078 (Hypothetical use-after-free in curl_multi_add_handle()). + (cmb) + +- Intl: + . Fixed bug #79212 (NumberFormatter::format() may detect wrong type). (cmb) + +- Libxml: + . Fixed bug #79191 (Error in SoapClient ctor disables DOMDocument::save()). + (Nikita, cmb) + +- MBString: + . Fixed bug #79154 (mb_convert_encoding() can modify $from_encoding). (cmb) + +- MySQLnd: + . Fixed bug #79084 (mysqlnd may fetch wrong column indexes with MYSQLI_BOTH). + (cmb) + +- OpenSSL: + . Fixed bug #79145 (openssl memory leak). (cmb, Nikita) + +- Phar: + . Fixed bug #79082 (Files added to tar with Phar::buildFromIterator have + all-access permissions). (CVE-2020-7063) (stas) + . Fixed bug #79171 (heap-buffer-overflow in phar_extract_file). + (CVE-2020-7061) (cmb) + . Fixed bug #76584 (PharFileInfo::decompress not working). (cmb) + +- Reflection: + . Fixed bug #79115 (ReflectionClass::isCloneable call reflected class + __destruct). (Nikita) + +- Session: + . Fixed bug #79221 (Null Pointer Dereference in PHP Session Upload Progress). + (CVE-2020-7062) (stas) + +- SPL: + . Fixed bug #79151 (heap use after free caused by + spl_dllist_it_helper_move_forward). (Nikita) + +- Standard: + . Fixed bug #78902 (Memory leak when using stream_filter_append). (liudaixiao) + +- Testing: + . Fixed bug #78090 (bug45161.phpt takes forever to finish). (cmb) + +- XSL: + . Fixed bug #70078 (XSL callbacks with nodes as parameter leak memory). (cmb) diff --git a/data/releases/7.3/7.3.15/release.json b/data/releases/7.3/7.3.15/release.json new file mode 100644 index 0000000000..c757f9423e --- /dev/null +++ b/data/releases/7.3/7.3.15/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.15", + "date": "20 Feb 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.15.tar.bz2", + "name": "PHP 7.3.15 (tar.bz2)", + "sha256": "8dbe1507ea0035f4211faa0db80fe95f39df0e39d8408223820fe9123487043d" + }, + { + "filename": "php-7.3.15.tar.gz", + "name": "PHP 7.3.15 (tar.gz)", + "sha256": "c606dd09de2edff1e6b6c5b9f0076214a59f6f1a3272e15d681ed16257737ef6" + }, + { + "filename": "php-7.3.15.tar.xz", + "name": "PHP 7.3.15 (tar.xz)", + "sha256": "de7ae7cf3d1dbb2824975b26b32991dac2b732886ec22075b8c53b261b018166" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.16/announcement.html b/data/releases/7.3/7.3.16/announcement.html new file mode 100644 index 0000000000..1d475a016c --- /dev/null +++ b/data/releases/7.3/7.3.16/announcement.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/7.3.16/changes.txt b/data/releases/7.3/7.3.16/changes.txt new file mode 100644 index 0000000000..93372f9b06 --- /dev/null +++ b/data/releases/7.3/7.3.16/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed bug #63206 (restore_error_handler does not restore previous errors + mask). (Mark Plomer) + +- COM: + . Fixed bug #66322 (COMPersistHelper::SaveToFile can save to wrong location). + (cmb) + . Fixed bug #79242 (COM error constants don't match com_exception codes on + x86). (cmb) + . Fixed bug #79248 (Traversing empty VT_ARRAY throws com_exception). (cmb) + . Fixed bug #79299 (com_print_typeinfo prints duplicate variables). (Litiano + Moura) + . Fixed bug #79332 (php_istreams are never freed). (cmb) + . Fixed bug #79333 (com_print_typeinfo() leaks memory). (cmb) + +- DOM: + . Fixed bug #77569: (Write Access Violation in DomImplementation). (Nikita, + cmb) + . Fixed bug #79271 (DOMDocumentType::$childNodes is NULL). (cmb) + +- Enchant: + . Fixed bug #79311 (enchant_dict_suggest() fails on big endian architecture). + (cmb) + +- EXIF: + . Fixed bug #79282 (Use-of-uninitialized-value in exif). (CVE-2020-7064) + (Nikita) + +- MBstring: + . Fixed bug #79371 (mb_strtolower (UTF-32LE): stack-buffer-overflow at + php_unicode_tolower_full). (CVE-2020-7065) (cmb) + +- MySQLi: + . Fixed bug #64032 (mysqli reports different client_version). (cmb) + +- PCRE: + . Fixed bug #79188 (Memory corruption in preg_replace/preg_replace_callback + and unicode). (Nikita) + +- PDO_ODBC: + . Fixed bug #79038 (PDOStatement::nextRowset() leaks column values). (cmb) + +- Reflection: + . Fixed bug #79062 (Property with heredoc default value returns false for + getDocComment). (Nikita) + +- SQLite3: + . Fixed bug #79294 (::columnType() may fail after SQLite3Stmt::reset()). (cmb) + +- Standard: + . Fixed bug #79329 (get_headers() silently truncates after a null byte). + (CVE-2020-7066) (cmb) + . Fixed bug #79254 (getenv() w/o arguments not showing changes). (cmb) + . Fixed bug #79265 (Improper injection of Host header when using fopen for + http requests). (Miguel Xavier Penha Neto) diff --git a/data/releases/7.3/7.3.16/release.json b/data/releases/7.3/7.3.16/release.json new file mode 100644 index 0000000000..ce1007a4c7 --- /dev/null +++ b/data/releases/7.3/7.3.16/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.16", + "date": "19 Mar 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.16.tar.bz2", + "name": "PHP 7.3.16 (tar.bz2)", + "sha256": "b8072d526a283182963b03960b7982392daa43cb31131eca4cf0b996764a042e" + }, + { + "filename": "php-7.3.16.tar.gz", + "name": "PHP 7.3.16 (tar.gz)", + "sha256": "a01ae4f6baf427413c28f8cfddbae86aeff61cdb88658e75404f2d93d98e3255" + }, + { + "filename": "php-7.3.16.tar.xz", + "name": "PHP 7.3.16 (tar.xz)", + "sha256": "91aaee3dbdc71b69b4f3292f9d99211172a2fa926c3f3bbdb0e85dab03dd2bcb" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.17/announcement.html b/data/releases/7.3/7.3.17/announcement.html new file mode 100644 index 0000000000..b9f9dc4376 --- /dev/null +++ b/data/releases/7.3/7.3.17/announcement.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/7.3.17/changes.txt b/data/releases/7.3/7.3.17/changes.txt new file mode 100644 index 0000000000..29a58616fa --- /dev/null +++ b/data/releases/7.3/7.3.17/changes.txt @@ -0,0 +1,42 @@ +- Core: + . Fixed bug #79364 (When copy empty array, next key is unspecified). (cmb) + . Fixed bug #78210 (Invalid pointer address). (cmb, Nikita) + +- CURL: + . Fixed bug #79199 (curl_copy_handle() memory leak). (cmb) + +- Date: + . Fixed bug #79396 (DateTime hour incorrect during DST jump forward). (Nate + Brunette) + +- Iconv: + . Fixed bug #79200 (Some iconv functions cut Windows-1258). (cmb) + +- OPcache: + . Fixed bug #79412 (Opcache chokes and uses 100% CPU on specific script). + (Dmitry) + +- Session: + . Fixed bug #79413 (session_create_id() fails for active sessions). (cmb) + +- Shmop: + . Fixed bug #79427 (Integer Overflow in shmop_open()). (cmb) + +- SimpleXML: + . Fixed bug #61597 (SXE properties may lack attributes and content). (cmb) + +- Spl: + . Fixed bug #75673 (SplStack::unserialize() behavior). (cmb) + . Fixed bug #79393 (Null coalescing operator failing with SplFixedArray). + (cmb) + +- Standard: + . Fixed bug #79330 (shell_exec() silently truncates after a null byte). (stas) + . Fixed bug #79465 (OOB Read in urldecode()). (CVE-2020-7067) (stas) + . Fixed bug #79410 (system() swallows last chunk if it is exactly 4095 bytes + without newline). (Christian Schneider) + +- Zip: + . Fixed Bug #79296 (ZipArchive::open fails on empty file). (Remi) + . Fixed bug #79424 (php_zip_glob uses gl_pathc after call to globfree). + (Max Rees) diff --git a/data/releases/7.3/7.3.17/release.json b/data/releases/7.3/7.3.17/release.json new file mode 100644 index 0000000000..abdb65f83f --- /dev/null +++ b/data/releases/7.3/7.3.17/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.17", + "date": "16 Apr 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.17.tar.bz2", + "name": "PHP 7.3.17 (tar.bz2)", + "sha256": "d83e90d9024c999f209933732ed4e1d0e7295a67c66ab79490898ea0a4a29709" + }, + { + "filename": "php-7.3.17.tar.gz", + "name": "PHP 7.3.17 (tar.gz)", + "sha256": "0dd484382b8f17dfa8afd44236a5ccf374e1f03de06ef826ebcbda98eadc7bda" + }, + { + "filename": "php-7.3.17.tar.xz", + "name": "PHP 7.3.17 (tar.xz)", + "sha256": "6a30304c27f7e7a94538f5ffec599f600ee93aedbbecad8aa4f8bec539b10ad8" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.18/announcement.html b/data/releases/7.3/7.3.18/announcement.html new file mode 100644 index 0000000000..c46a03395c --- /dev/null +++ b/data/releases/7.3/7.3.18/announcement.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/7.3.18/changes.txt b/data/releases/7.3/7.3.18/changes.txt new file mode 100644 index 0000000000..e711dbd1cb --- /dev/null +++ b/data/releases/7.3/7.3.18/changes.txt @@ -0,0 +1,38 @@ +- Core: + . Fixed bug #78875 (Long filenames cause OOM and temp files are not cleaned). + (CVE-2019-11048) (cmb) + . Fixed bug #78876 (Long variables in multipart/form-data cause OOM and temp + files are not cleaned). (CVE-2019-11048) (cmb) + . Fixed bug #79434 (PHP 7.3 and PHP-7.4 crash with NULL-pointer dereference + on !CS constant). (Nikita) + . Fixed bug #79477 (casting object into array creates references). (Nikita) + . Fixed bug #79470 (PHP incompatible with 3rd party file system on demand). + (cmb) + . Fixed bug #78784 (Unable to interact with files inside a VFS for Git + repository). (cmb) + +- DOM: + . Fixed bug #78221 (DOMNode::normalize() doesn't remove empty text nodes). + (cmb) + +- FCGI: + . Fixed bug #79491 (Search for .user.ini extends up to root dir). (cmb) + +- MBString: + . Fixed bug #79441 (Segfault in mb_chr() if internal encoding is unsupported). + (Girgias) + +- OpenSSL: + . Fixed bug #79497 (stream_socket_client() throws an unknown error sometimes + with <1s timeout). (Joe Cai) + +- Phar: + . Fix bug #79503 (Memory leak on duplicate metadata). (cmb) + +- SimpleXML: + . Fixed bug #79528 (Different object of the same xml between 7.4.5 and + 7.4.4). (cmb) + +- Standard: + . Fixed bug #79468 (SIGSEGV when closing stream handle with a stream filter + appended). (dinosaur) diff --git a/data/releases/7.3/7.3.18/release.json b/data/releases/7.3/7.3.18/release.json new file mode 100644 index 0000000000..c4b9efc956 --- /dev/null +++ b/data/releases/7.3/7.3.18/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.18", + "date": "14 May 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.18.tar.bz2", + "name": "PHP 7.3.18 (tar.bz2)", + "sha256": "749d21f65deb57153b575f846705f5db54732c6b672e80612b29dcf1a53be8a4" + }, + { + "filename": "php-7.3.18.tar.gz", + "name": "PHP 7.3.18 (tar.gz)", + "sha256": "3211d5d6ea8a27c2794498a551bf26e334bc2b986741971809c9bb650eaa47a3" + }, + { + "filename": "php-7.3.18.tar.xz", + "name": "PHP 7.3.18 (tar.xz)", + "sha256": "7b3e2479a8d6fd7666dcdef8aec50d49c4599cc6ee86e48d41724cfd99cc9e58" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.19/announcement.html b/data/releases/7.3/7.3.19/announcement.html new file mode 100644 index 0000000000..2ffb2d4ed0 --- /dev/null +++ b/data/releases/7.3/7.3.19/announcement.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/7.3.19/changes.txt b/data/releases/7.3/7.3.19/changes.txt new file mode 100644 index 0000000000..c61f236ccf --- /dev/null +++ b/data/releases/7.3/7.3.19/changes.txt @@ -0,0 +1,17 @@ +- Core: + . Fixed bug #79566 (Private SHM is not private on Windows). (cmb) + . Fixed bug #79489 (.user.ini does not inherit). (cmb) + +- GD: + . Fixed bug #79615 (Wrong GIF header written in GD GIFEncode). (sageptr, cmb) + +- MySQLnd: + . Fixed bug #79596 (MySQL FLOAT truncates to int some locales). (cmb) + +- Opcache: + . Fixed bug #79535 (PHP crashes with specific opcache.optimization_level). + (Nikita) + . Fixed bug #79588 (Boolean opcache settings ignore on/off values). (cmb) + +- Standard: + . Fixed bug #79561 (dns_get_record() fails with DNS_ALL). (cmb) diff --git a/data/releases/7.3/7.3.19/release.json b/data/releases/7.3/7.3.19/release.json new file mode 100644 index 0000000000..abd7736fff --- /dev/null +++ b/data/releases/7.3/7.3.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.3.19", + "date": "11 Jun 2020", + "tags": [], + "source": [ + { + "filename": "php-7.3.19.tar.bz2", + "name": "PHP 7.3.19 (tar.bz2)", + "sha256": "0d9c1e31e29fb46ff660b48051d169d50cb0285e611d16591449d578320d34a5" + }, + { + "filename": "php-7.3.19.tar.gz", + "name": "PHP 7.3.19 (tar.gz)", + "sha256": "809126b46d62a1a06c2d5a0f9d7ba61aba40e165f24d2d185396d0f9646d3280" + }, + { + "filename": "php-7.3.19.tar.xz", + "name": "PHP 7.3.19 (tar.xz)", + "sha256": "6402faa19b1a8c4317c7612632bce985684a5bbae0980a5779a4019439882422" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.2/announcement.html b/data/releases/7.3/7.3.2/announcement.html new file mode 100644 index 0000000000..851213745f --- /dev/null +++ b/data/releases/7.3/7.3.2/announcement.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/7.3.2/changes.txt b/data/releases/7.3/7.3.2/changes.txt new file mode 100644 index 0000000000..bf0257ec40 --- /dev/null +++ b/data/releases/7.3/7.3.2/changes.txt @@ -0,0 +1,89 @@ +- Core: + . Fixed bug #77369 (memcpy with negative length via crafted DNS response). (Stas) + . Fixed bug #77387 (Recursion detection broken when printing GLOBALS). + (Laruence) + . Fixed bug #77376 ("undefined function" message no longer includes + namespace). (Laruence) + . Fixed bug #77357 (base64_encode / base64_decode doest not work on nested + VM). (Nikita) + . Fixed bug #77339 (__callStatic may get incorrect arguments). (Dmitry) + . Fixed bug #77317 (__DIR__, __FILE__, realpath() reveal physical path for + subst virtual drive). (Anatol) + . Fixed bug #77263 (Segfault when using 2 RecursiveFilterIterator). (Dmitry) + . Fixed bug #77447 (PHP 7.3 built with ASAN crashes in + zend_cpu_supports_avx2). (Nikita) + . Fixed bug #77484 (Zend engine crashes when calling realpath in invalid + working dir). (Anatol) + +- Curl: + . Fixed bug #76675 (Segfault with H2 server push). (Pedro Magalhães) + +- Fileinfo: + . Fixed bug #77346 (webm files incorrectly detected as + application/octet-stream). (Anatol) + +- FPM: + . Fixed bug #77430 (php-fpm crashes with Main process exited, code=dumped, + status=11/SEGV). (Jakub Zelenka) + +- GD: + . Fixed bug #73281 (imagescale(…, IMG_BILINEAR_FIXED) can cause black border). + (cmb) + . Fixed bug #73614 (gdImageFilledArc() doesn't properly draw pies). (cmb) + . Fixed bug #77272 (imagescale() may return image resource on failure). (cmb) + . Fixed bug #77391 (1bpp BMPs may fail to be loaded). (Romain Déoux, cmb) + . Fixed bug #77479 (imagewbmp() segfaults with very large images). (cmb) + +- ldap: + . Fixed bug #77440 (ldap_bind using ldaps or ldap_start_tls()=exception in + libcrypto-1_1-x64.dll). (Anatol) + +- Mbstring: + . Fixed bug #77428 (mb_ereg_replace() doesn't replace a substitution + variable). (Nikita) + . Fixed bug #77454 (mb_scrub() silently truncates after a null byte). + (64796c6e69 at gmail dot com) + +- MySQLnd: + . Fixed bug #77308 (Unbuffered queries memory leak). (Dmitry) + . Fixed bug #75684 (In mysqlnd_ext_plugin.h the plugin methods family has + no external visibility). (Anatol) + +- Opcache: + . Fixed bug #77266 (Assertion failed in dce_live_ranges). (Laruence) + . Fixed bug #77257 (value of variable assigned in a switch() construct gets + lost). (Nikita) + . Fixed bug #77434 (php-fpm workers are segfaulting in zend_gc_addre). + (Nikita) + . Fixed bug #77361 (configure fails on 64-bit AIX when opcache enabled). + (Kevin Adler) + . Fixed bug #77287 (Opcache literal compaction is incompatible with EXT + opcodes). (Nikita) + +- PCRE: + . Fixed bug #77338 (get_browser with empty string). (Nikita) + +- PDO: + . Fixed bug #77273 (array_walk_recursive corrupts value types leading to PDO + failure). (Nikita) + +- PDO MySQL: + . Fixed bug #77289 (PDO MySQL segfaults with persistent connection). + (Lauri Kenttä) + +- SOAP: + . Fixed bug #77410 (Segmentation Fault when executing method with an empty + parameter). (Nikita) + +- Sockets: + . Fixed bug #76839 (socket_recvfrom may return an invalid 'from' address + on MacOS). (Michael Meyer) + +- SPL: + . Fixed bug #77298 (segfault occurs when add property to unserialized empty + ArrayObject). (jhdxr) + +- Standard: + . Fixed bug #77395 (segfault about array_multisort). (Laruence) + . Fixed bug #77439 (parse_str segfaults when inserting item into existing + array). (Nikita) diff --git a/data/releases/7.3/7.3.2/release.json b/data/releases/7.3/7.3.2/release.json new file mode 100644 index 0000000000..56402f6fb4 --- /dev/null +++ b/data/releases/7.3/7.3.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.3.2", + "date": "07 Feb 2019", + "tags": [], + "source": [ + { + "filename": "php-7.3.2.tar.bz2", + "name": "PHP 7.3.2 (tar.bz2)", + "sha256": "946f50dacbd2f61e643bb737021cbe8b1816e780ee7ad3e0cd999a1892ab0add" + }, + { + "filename": "php-7.3.2.tar.gz", + "name": "PHP 7.3.2 (tar.gz)", + "sha256": "4597294b00edc1c63a021b6c7838eb43384f62eeb9e392f0b91c38a3c090f499" + }, + { + "filename": "php-7.3.2.tar.xz", + "name": "PHP 7.3.2 (tar.xz)", + "sha256": "010b868b4456644ae227d05ad236c8b0a1f57dc6320e7e5ad75e86c5baf0a9a8" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.20/announcement.html b/data/releases/7.3/7.3.20/announcement.html new file mode 100644 index 0000000000..6124f155ad --- /dev/null +++ b/data/releases/7.3/7.3.20/announcement.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/7.3.20/changes.txt b/data/releases/7.3/7.3.20/changes.txt new file mode 100644 index 0000000000..ec8bb04a81 --- /dev/null +++ b/data/releases/7.3/7.3.20/changes.txt @@ -0,0 +1,32 @@ +- Core: + . Fixed bug #79650 (php-win.exe 100% cpu lockup). (cmb) + . Fixed bug #79668 (get_defined_functions(true) may miss functions). (cmb, + Nikita) + . Fixed possibly unsupported timercmp() usage. (cmb) + +- Exif: + . Fixed bug #79687 (Sony picture - PHP Warning - Make, Model, MakerNotes). + (cmb) + +- Filter: + . Fixed bug #73527 (Invalid memory access in php_filter_strip). (cmb) + +- GD: + . Fixed bug #79676 (imagescale adds black border with IMG_BICUBIC). (cmb) + +- OpenSSL: + . Fixed bug #62890 (default_socket_timeout=-1 causes connection to timeout). + (cmb) + +- PDO SQLite: + . Fixed bug #79664 (PDOStatement::getColumnMeta fails on empty result set). + (cmb) + +- SPL: + . Fixed bug #79710 (Reproducible segfault in error_handler during GC + involved an SplFileObject). (Nikita) + +- Standard: + . Fixed bug #74267 (segfault with streams and invalid data). (cmb) + . Fixed bug #79579 (ZTS build of PHP 7.3.17 doesn't handle ERANGE for + posix_getgrgid and others). (Böszörményi Zoltán) diff --git a/data/releases/7.3/7.3.20/release.json b/data/releases/7.3/7.3.20/release.json new file mode 100644 index 0000000000..533caef743 --- /dev/null +++ b/data/releases/7.3/7.3.20/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.20", + "date": "09 Jul 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.20.tar.bz2", + "name": "PHP 7.3.20 (tar.bz2)", + "sha256": "c6ed7894911acfe075381c01b07745d92e9259fac510a849f742edb6b95c89de" + }, + { + "filename": "php-7.3.20.tar.gz", + "name": "PHP 7.3.20 (tar.gz)", + "sha256": "d0579b8a6bcdd5e1ae334d83261f2389b0d3d4fd54cc808e20a5031121f97d87" + }, + { + "filename": "php-7.3.20.tar.xz", + "name": "PHP 7.3.20 (tar.xz)", + "sha256": "43292046f6684eb13acb637276d4aa1dd9f66b0b7045e6f1493bc90db389b888" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.21/announcement.html b/data/releases/7.3/7.3.21/announcement.html new file mode 100644 index 0000000000..8b1180f35b --- /dev/null +++ b/data/releases/7.3/7.3.21/announcement.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/7.3.21/changes.txt b/data/releases/7.3/7.3.21/changes.txt new file mode 100644 index 0000000000..7b2fb66702 --- /dev/null +++ b/data/releases/7.3/7.3.21/changes.txt @@ -0,0 +1,39 @@ +- Apache: + . Fixed bug #79030 (Upgrade apache2handler's php_apache_sapi_get_request_time + to return usec). (Herbert256) + +- Core: + . Fixed bug #79877 (getimagesize function silently truncates after a null + byte) (cmb) + . Fixed bug #79778 (Assertion failure if dumping closure with unresolved + static variable). (Nikita) + . Fixed bug #79792 (HT iterators not removed if empty array is destroyed). + (Nikita) + +- COM: + . Fixed bug #63208 (BSTR to PHP string conversion not binary safe). (cmb) + . Fixed bug #63527 (DCOM does not work with Username, Password parameter). + (cmb) + +- Curl: + . Fixed bug #79741 (curl_setopt CURLOPT_POSTFIELDS asserts on object with + declared properties). (Nikita) + +- Fileinfo: + . Fixed bug #79756 (finfo_file crash (FILEINFO_MIME)). (cmb) + +- FTP: + . Fixed bug #55857 (ftp_size on large files). (cmb) + +- Mbstring: + . Fixed bug #79787 (mb_strimwidth does not trim string). (XXiang) + +- Phar: + . Fixed bug #79797 (Use of freed hash key in the phar_parse_zipfile + function). (CVE-2020-7068) (cmb) + +- Standard: + . Fixed bug #70362 (Can't copy() large 'data://' with open_basedir). (cmb) + . Fixed bug #79817 (str_replace() does not handle INDIRECT elements). (Nikita) + . Fixed bug #78008 (dns_check_record() always return true on Alpine). + (Andy Postnikov) diff --git a/data/releases/7.3/7.3.21/release.json b/data/releases/7.3/7.3.21/release.json new file mode 100644 index 0000000000..9213bd8b8a --- /dev/null +++ b/data/releases/7.3/7.3.21/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.21", + "date": "06 Aug 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.21.tar.bz2", + "name": "PHP 7.3.21 (tar.bz2)", + "sha256": "dbb0ea39e7e4b3814d6d1dd3ac5983aed6c38cdf55464645da11a8b134a9f7a7" + }, + { + "filename": "php-7.3.21.tar.gz", + "name": "PHP 7.3.21 (tar.gz)", + "sha256": "f5d6e136768522edd025c4a97b9b6a98a2fda20b68445cbc5ca2efce1e73c7d0" + }, + { + "filename": "php-7.3.21.tar.xz", + "name": "PHP 7.3.21 (tar.xz)", + "sha256": "4c8b065746ef776d84b7ae47908c21a79e3d4704b86b60d816716b8697c58ce9" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.22/announcement.html b/data/releases/7.3/7.3.22/announcement.html new file mode 100644 index 0000000000..c1c46d11da --- /dev/null +++ b/data/releases/7.3/7.3.22/announcement.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/7.3.22/changes.txt b/data/releases/7.3/7.3.22/changes.txt new file mode 100644 index 0000000000..1cf243386d --- /dev/null +++ b/data/releases/7.3/7.3.22/changes.txt @@ -0,0 +1,41 @@ +- Core: + . Fixed bug #79884 (PHP_CONFIG_FILE_PATH is meaningless). (cmb) + . Fixed bug #77932 (File extensions are case-sensitive). (cmb) + . Fixed bug #79806 (realpath() erroneously resolves link to link). (cmb) + . Fixed bug #79895 (PHP_CHECK_GCC_ARG does not allow flags with equal sign). + (Santiago M. Mola) + . Fixed bug #79919 (Stack use-after-scope in define()). (cmb) + . Fixed bug #79934 (CRLF-only line in heredoc causes parsing error). + (Pieter van den Ham) + +- COM: + . Fixed bug #48585 (com_load_typelib holds reference, fails on second call). + (cmb) + +- Exif: + . Fixed bug #75785 (Many errors from exif_read_data). + (Níckolas Daniel da Silva) + +- Gettext: + . Fixed bug #70574 (Tests fail due to relying on Linux fallback behavior for + gettext()). (Florian Engelhardt) + +- LDAP: + . Fixed memory leaks. (ptomulik) + +- OPcache: + . Fixed bug #73060 (php failed with error after temp folder cleaned up). + (cmb) + +- PDO: + . Fixed bug #64705 (errorInfo property of PDOException is null when + PDO::__construct() fails). (Ahmed Abdou) + +- Standard: + . Fixed bug #79930 (array_merge_recursive() crashes when called with array + with single reference). (Nikita) + . Fixed bug #79944 (getmxrr always returns true on Alpine linux). (Nikita) + . Fixed bug #79951 (Memory leak in str_replace of empty string). (Nikita) + +- XML: + . Fixed bug #79922 (Crash after multiple calls to xml_parser_free()). (cmb) diff --git a/data/releases/7.3/7.3.22/release.json b/data/releases/7.3/7.3.22/release.json new file mode 100644 index 0000000000..819e541998 --- /dev/null +++ b/data/releases/7.3/7.3.22/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.22", + "date": "03 Sep 2020", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-7.3.22.tar.bz2", + "name": "PHP 7.3.22 (tar.bz2)", + "sha256": "c790b8172520b2ff773d6cf80774ea0a678a2f16e8ee6b11d68802094448689e" + }, + { + "filename": "php-7.3.22.tar.gz", + "name": "PHP 7.3.22 (tar.gz)", + "sha256": "759426cb4054e3f23316c39710faff0bb8063fd0ea50fc2c5efa590429af1a22" + }, + { + "filename": "php-7.3.22.tar.xz", + "name": "PHP 7.3.22 (tar.xz)", + "sha256": "0e66606d3bdab5c2ae3f778136bfe8788e574913a3d8138695e54d98562f1fb5" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.23/announcement.html b/data/releases/7.3/7.3.23/announcement.html new file mode 100644 index 0000000000..00fec3558d --- /dev/null +++ b/data/releases/7.3/7.3.23/announcement.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/7.3.23/changes.txt b/data/releases/7.3/7.3.23/changes.txt new file mode 100644 index 0000000000..74569d6d75 --- /dev/null +++ b/data/releases/7.3/7.3.23/changes.txt @@ -0,0 +1,39 @@ +- Core: + . Fixed bug #80048 (Bug #69100 has not been fixed for Windows). (cmb) + . Fixed bug #80049 (Memleak when coercing integers to string via variadic + argument). (Nikita) + . Fixed bug #79699 (PHP parses encoded cookie names so malicious `__Host-` + cookies can be sent). (CVE-2020-7070) (Stas) + +- Calendar: + . Fixed bug #80007 (Potential type confusion in unixtojd() parameter parsing). + (Andy Postnikov) + +- COM: + . Fixed bug #64130 (COM obj parameters passed by reference are not updated). + (cmb) + +- OPcache: + . Fixed bug #80002 (calc free space for new interned string is wrong). + (t-matsuno) + . Fixed bug #79825 (opcache.file_cache causes SIGSEGV when custom opcode + handlers changed). (SammyK) + +- OpenSSL: + . Fixed bug #79601 (Wrong ciphertext/tag in AES-CCM encryption for a 12 + bytes IV). (CVE-2020-7069) (Jakub Zelenka) + +- PDO: + . Fixed bug #80027 (Terrible performance using $query->fetch on queries with + many bind parameters). (Matteo) + +- SOAP: + . Fixed bug #47021 (SoapClient stumbles over WSDL delivered with + "Transfer-Encoding: chunked"). (Matteo) + +- Standard: + . Fixed bug #79986 (str_ireplace bug with diacritics characters). (cmb) + . Fixed bug #80077 (getmxrr test bug). (Rainer Jung) + . Fixed bug #72941 (Modifying bucket->data by-ref has no effect any longer). + (cmb) + . Fixed bug #80067 (Omitting the port in bindto setting errors). (cmb) diff --git a/data/releases/7.3/7.3.23/release.json b/data/releases/7.3/7.3.23/release.json new file mode 100644 index 0000000000..2ec3c9b686 --- /dev/null +++ b/data/releases/7.3/7.3.23/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.23", + "date": "01 Oct 2020", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-7.3.23.tar.bz2", + "name": "PHP 7.3.23 (tar.bz2)", + "sha256": "fd6666ad4605508042c6964151379475daea36c43e03b11b1e79d4ae6b04c04c" + }, + { + "filename": "php-7.3.23.tar.gz", + "name": "PHP 7.3.23 (tar.gz)", + "sha256": "a21094b9ba2d8fe7fa5838e6566e30cf4bfaf2c8a6dce90ff707c45d0d8d494d" + }, + { + "filename": "php-7.3.23.tar.xz", + "name": "PHP 7.3.23 (tar.xz)", + "sha256": "2bdd36176f318f451fb3942bf1e935aabb3c2786cac41a9080f084ad6390e034" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.24/announcement.html b/data/releases/7.3/7.3.24/announcement.html new file mode 100644 index 0000000000..bcd5870dab --- /dev/null +++ b/data/releases/7.3/7.3.24/announcement.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/7.3.24/changes.txt b/data/releases/7.3/7.3.24/changes.txt new file mode 100644 index 0000000000..b15e67119a --- /dev/null +++ b/data/releases/7.3/7.3.24/changes.txt @@ -0,0 +1,45 @@ +- Core: + . Fixed bug #79423 (copy command is limited to size of file it can copy). + (cmb) + +- Calendar: + . Fixed bug #80185 (jdtounix() fails after 2037). (cmb) + +- IMAP: + . Fixed bug #80213 (imap_mail_compose() segfaults on certain $bodies). (cmb) + . Fixed bug #80215 (imap_mail_compose() may modify by-val parameters). (cmb) + . Fixed bug #80220 (imap_mail_compose() may leak memory). (cmb) + . Fixed bug #80223 (imap_mail_compose() leaks envelope on malformed bodies). + (cmb) + . Fixed bug #80216 (imap_mail_compose() does not validate types/encodings). + (cmb) + . Fixed bug #80226 (imap_sort() leaks sortpgm memory). (cmb) + +- MySQLnd: + . Fixed bug #80115 (mysqlnd.debug doesn't recognize absolute paths with + slashes). (cmb) + . Fixed bug #80107 (mysqli_query() fails for ~16 MB long query when + compression is enabled). (Nikita) + +- ODBC: + . Fixed bug #78470 (odbc_specialcolumns() no longer accepts $nullable). (cmb) + . Fixed bug #80147 (BINARY strings may not be properly zero-terminated). + (cmb) + . Fixed bug #80150 (Failure to fetch error message). (cmb) + . Fixed bug #80152 (odbc_execute() moves internal pointer of $params). (cmb) + . Fixed bug #46050 (odbc_next_result corrupts prepared resource). (cmb) + +- OPcache: + . Fixed bug #80083 (Optimizer pass 6 removes variables used for ibm_db2 data + binding). (Nikita) + +- PDO_ODBC: + . Fixed bug #67465 (NULL Pointer dereference in odbc_handle_preparer). (cmb) + +- Standard: + . Fixed bug #80114 (parse_url does not accept URLs with port 0). (cmb, twosee) + . Fixed bug #76943 (Inconsistent stream_wrapper_restore() errors). (cmb) + . Fixed bug #76735 (Incorrect message in fopen on invalid mode). (cmb) + +- Tidy: + . Fixed bug #77040 (tidyNode::isHtml() is completely broken). (cmb) diff --git a/data/releases/7.3/7.3.24/release.json b/data/releases/7.3/7.3.24/release.json new file mode 100644 index 0000000000..614e0034cc --- /dev/null +++ b/data/releases/7.3/7.3.24/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.24", + "date": "29 Oct 2020", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-7.3.24.tar.bz2", + "name": "PHP 7.3.24 (tar.bz2)", + "sha256": "55b7afbb2037b0f8fefc481a85f8df4f7a278b4b7f0ed9f674c50ec389cca598" + }, + { + "filename": "php-7.3.24.tar.gz", + "name": "PHP 7.3.24 (tar.gz)", + "sha256": "ac06577e2aeb69d4bed3c1532ed84a548f01399e5481c144c3e61d146be8ced6" + }, + { + "filename": "php-7.3.24.tar.xz", + "name": "PHP 7.3.24 (tar.xz)", + "sha256": "78b0b417a147ab7572c874334d11654e3c61ec5b3f2170098e5db02fb0c89888" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.25/announcement.html b/data/releases/7.3/7.3.25/announcement.html new file mode 100644 index 0000000000..90f7c7db37 --- /dev/null +++ b/data/releases/7.3/7.3.25/announcement.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/7.3.25/changes.txt b/data/releases/7.3/7.3.25/changes.txt new file mode 100644 index 0000000000..aac9e0bbed --- /dev/null +++ b/data/releases/7.3/7.3.25/changes.txt @@ -0,0 +1,33 @@ +- Core: + . Fixed bug #80280 (ADD_EXTENSION_DEP() fails for ext/standard and ext/date). + (cmb) + . Fixed bug #80258 (Windows Deduplication Enabled, randon permission errors). + (cmb) + +- COM: + . Fixed bug #62474 (com_event_sink crashes on certain arguments). (cmb) + +- DOM: + . Fixed bug #80268 (loadHTML() truncates at NUL bytes). (cmb) + +- IMAP: + . Fixed bug #64076 (imap_sort() does not return FALSE on failure). (cmb) + . Fixed bug #76618 (segfault on imap_reopen). (girgias) + . Fixed bug #80239 (imap_rfc822_write_address() leaks memory). (cmb) + . Fixed minor regression caused by fixing bug #80220. (cmb) + . Fixed bug #80242 (imap_mail_compose() segfaults for multipart with rfc822). + (cmb) + +- Intl: + . Fixed bug #80310 (ext-intl with icu4c 68.1: use of undeclared identifier + 'TRUE'). (Alexander M. Turek) + +- ODBC: + . Fixed bug #44618 (Fetching may rely on uninitialized data). (cmb) + +- SNMP: + . Fixed bug #70461 (disable md5 code when it is not supported in net-snmp). + (Alexander Bergmann, cmb) + +- Standard: + . Fixed bug #80266 (parse_url silently drops port number 0). (cmb, Nikita) diff --git a/data/releases/7.3/7.3.25/release.json b/data/releases/7.3/7.3.25/release.json new file mode 100644 index 0000000000..65aca669d2 --- /dev/null +++ b/data/releases/7.3/7.3.25/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.3.25", + "date": "26 Nov 2020", + "tags": [], + "source": [ + { + "filename": "php-7.3.25.tar.gz", + "name": "PHP 7.3.25 (tar.gz)", + "sha256": "097c7a2a2f9189b33799d79ee5a8aac68a4d72696c1cd69c66ef5d0941ce28ad" + }, + { + "filename": "php-7.3.25.tar.bz2", + "name": "PHP 7.3.25 (tar.bz2)", + "sha256": "69315a4daa91e3b07c90eef86fe205c8812c4ac5ce119c9953ecc9f42e7702fb" + }, + { + "filename": "php-7.3.25.tar.xz", + "name": "PHP 7.3.25 (tar.xz)", + "sha256": "c71c00ad03079efb78d1a6b8623ca4f725be697dbd9a46debacbcc9a2475f329" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.26/announcement.html b/data/releases/7.3/7.3.26/announcement.html new file mode 100644 index 0000000000..e3fb7ea9ab --- /dev/null +++ b/data/releases/7.3/7.3.26/announcement.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/7.3.26/changes.txt b/data/releases/7.3/7.3.26/changes.txt new file mode 100644 index 0000000000..cb2345f206 --- /dev/null +++ b/data/releases/7.3/7.3.26/changes.txt @@ -0,0 +1,5 @@ +- Standard: + . Fixed bug #77423 (FILTER_VALIDATE_URL accepts URLs with invalid userinfo). + (CVE-2020-7071) (cmb) + . Fixed bug #80457 (stream_get_contents() fails with maxlength=-1 or default). + (bruno dot premont at restena dot lu) diff --git a/data/releases/7.3/7.3.26/release.json b/data/releases/7.3/7.3.26/release.json new file mode 100644 index 0000000000..312615ef5a --- /dev/null +++ b/data/releases/7.3/7.3.26/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.26", + "date": "07 Jan 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.26.tar.gz", + "name": "PHP 7.3.26 (tar.gz)", + "sha256": "2b55c2a54d1825e7c3feaf44cf42cdf782b8d5c611314172fbf8e234960b6a99" + }, + { + "filename": "php-7.3.26.tar.bz2", + "name": "PHP 7.3.26 (tar.bz2)", + "sha256": "371e5a7c8154fd3c52b14baace5f7d04c4bbb8e841d356c54a2b6a688db39d4e" + }, + { + "filename": "php-7.3.26.tar.xz", + "name": "PHP 7.3.26 (tar.xz)", + "sha256": "d93052f4cb2882090b6a37fd1e0c764be1605a2461152b7f6b8f04fa48875208" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.27/announcement.html b/data/releases/7.3/7.3.27/announcement.html new file mode 100644 index 0000000000..15c7ce8b21 --- /dev/null +++ b/data/releases/7.3/7.3.27/announcement.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/7.3.27/changes.txt b/data/releases/7.3/7.3.27/changes.txt new file mode 100644 index 0000000000..c30409a5a8 --- /dev/null +++ b/data/releases/7.3/7.3.27/changes.txt @@ -0,0 +1,2 @@ +- SOAP: + . Fixed bug #80672 (Null Dereference in SoapClient). (CVE-2021-21702) (cmb, Stas) diff --git a/data/releases/7.3/7.3.27/release.json b/data/releases/7.3/7.3.27/release.json new file mode 100644 index 0000000000..a7fe11f8dc --- /dev/null +++ b/data/releases/7.3/7.3.27/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.27", + "date": "04 Feb 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.27.tar.gz", + "name": "PHP 7.3.27 (tar.gz)", + "sha256": "4b7b9bd0526ad3f2c8d6fd950ea7b0ab2478b5b09755c6a620a4f3bcfbf59154" + }, + { + "filename": "php-7.3.27.tar.bz2", + "name": "PHP 7.3.27 (tar.bz2)", + "sha256": "9d2006f5e835acf5e408e34d8050a4935f2121ab18bda42775a27ed59bdae003" + }, + { + "filename": "php-7.3.27.tar.xz", + "name": "PHP 7.3.27 (tar.xz)", + "sha256": "65f616e2d5b6faacedf62830fa047951b0136d5da34ae59e6744cbaf5dca148d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.28/announcement.html b/data/releases/7.3/7.3.28/announcement.html new file mode 100644 index 0000000000..3500487b7e --- /dev/null +++ b/data/releases/7.3/7.3.28/announcement.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/7.3.28/changes.txt b/data/releases/7.3/7.3.28/changes.txt new file mode 100644 index 0000000000..9d1746ad70 --- /dev/null +++ b/data/releases/7.3/7.3.28/changes.txt @@ -0,0 +1,5 @@ +- Core: + . Fixed ./makedist wrt. to GH move. (cmb, Remi) + +- Imap: + . Fixed bug #80710 (imap_mail_compose() header injection). (cmb, Stas) diff --git a/data/releases/7.3/7.3.28/release.json b/data/releases/7.3/7.3.28/release.json new file mode 100644 index 0000000000..d6c70585c0 --- /dev/null +++ b/data/releases/7.3/7.3.28/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.28", + "date": "29 Apr 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.28.tar.gz", + "name": "PHP 7.3.28 (tar.gz)", + "sha256": "1f0d9b94e1b11518ffabd19b646c2fee95ea42ca9cd8d337f8d07986fdceede1" + }, + { + "filename": "php-7.3.28.tar.bz2", + "name": "PHP 7.3.28 (tar.bz2)", + "sha256": "8f636e644594388436ea05ff34c9eb135e6dc119c1130199e9488d5795439964" + }, + { + "filename": "php-7.3.28.tar.xz", + "name": "PHP 7.3.28 (tar.xz)", + "sha256": "a2a84dbec8c1eee3f46c5f249eaaa2ecb3f9e7a6f5d0604d2df44ff8d4904dbe" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.29/announcement.html b/data/releases/7.3/7.3.29/announcement.html new file mode 100644 index 0000000000..7acab937bd --- /dev/null +++ b/data/releases/7.3/7.3.29/announcement.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/7.3.29/changes.txt b/data/releases/7.3/7.3.29/changes.txt new file mode 100644 index 0000000000..ff94bd9600 --- /dev/null +++ b/data/releases/7.3/7.3.29/changes.txt @@ -0,0 +1,10 @@ +- Core: + . Fixed bug #81122: SSRF bypass in FILTER_VALIDATE_URL. (CVE-2021-21705) (cmb) + +- PDO_Firebird: + . Fixed bug #76448: Stack buffer overflow in firebird_info_cb. + (CVE-2021-21704) (cmb) + . Fixed bug #76449: SIGSEGV in firebird_handle_doer. (CVE-2021-21704) (cmb) + . Fixed bug #76450: SIGSEGV in firebird_stmt_execute. (CVE-2021-21704) (cmb) + . Fixed bug #76452: Crash while parsing blob data in firebird_fetch_blob. + (CVE-2021-21704) (cmb) diff --git a/data/releases/7.3/7.3.29/release.json b/data/releases/7.3/7.3.29/release.json new file mode 100644 index 0000000000..e41f7b1de8 --- /dev/null +++ b/data/releases/7.3/7.3.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.29", + "date": "01 Jul 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.29.tar.gz", + "name": "PHP 7.3.29 (tar.gz)", + "sha256": "ba4de3955b0cbd33baee55a83568acc4347605e210a54b5654e4c1e09b544659" + }, + { + "filename": "php-7.3.29.tar.bz2", + "name": "PHP 7.3.29 (tar.bz2)", + "sha256": "a83a2878140bd86935f0046bbfe92672c8ab688fbe4ccf9704add6b9605ee4d0" + }, + { + "filename": "php-7.3.29.tar.xz", + "name": "PHP 7.3.29 (tar.xz)", + "sha256": "7db2834511f3d86272dca3daee3f395a5a4afce359b8342aa6edad80e12eb4d0" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.3/announcement.html b/data/releases/7.3/7.3.3/announcement.html new file mode 100644 index 0000000000..b15fc1a7e2 --- /dev/null +++ b/data/releases/7.3/7.3.3/announcement.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/7.3.3/changes.txt b/data/releases/7.3/7.3.3/changes.txt new file mode 100644 index 0000000000..c63e8dca4b --- /dev/null +++ b/data/releases/7.3/7.3.3/changes.txt @@ -0,0 +1,60 @@ +- Core: + . Fixed bug #77589 (Core dump using parse_ini_string with numeric sections). + (Laruence) + . Fixed bug #77329 (Buffer Overflow via overly long Error Messages). + (Dmitry) + . Fixed bug #77494 (Disabling class causes segfault on member access). + (Dmitry) + . Fixed bug #77498 (Custom extension Segmentation fault when declare static + property). (Nikita) + . Fixed bug #77530 (PHP crashes when parsing `(2)::class`). (Ekin) + . Fixed bug #77546 (iptcembed broken function). (gdegoulet) + . Fixed bug #77630 (rename() across the device may allow unwanted access + during processing). (Stas) + +- COM: + . Fixed bug #77621 (Already defined constants are not properly reported). + (cmb) + . Fixed bug #77626 (Persistence confusion in php_com_import_typelib()). (cmb) + +- EXIF: + . Fixed bug #77509 (Uninitialized read in exif_process_IFD_in_TIFF). (Stas) + . Fixed bug #77540 (Invalid Read on exif_process_SOFn). (Stas) + . Fixed bug #77563 (Uninitialized read in exif_process_IFD_in_MAKERNOTE). (Stas) + . Fixed bug #77659 (Uninitialized read in exif_process_IFD_in_MAKERNOTE). (Stas) + +- Mbstring: + . Fixed bug #77514 (mb_ereg_replace() with trailing backslash adds null byte). + (Nikita) + +- MySQL + . Disabled LOCAL INFILE by default, can be enabled using php.ini directive + mysqli.allow_local_infile for mysqli, or PDO::MYSQL_ATTR_LOCAL_INFILE + attribute for pdo_mysql. (Darek Slusarczyk) + +- OpenSSL: + . Fixed bug #77390 (feof might hang on TLS streams in case of fragmented TLS + records). (Abyl Valg, Jakub Zelenka) + +- PDO_OCI: + . Support Oracle Database tracing attributes ACTION, MODULE, + CLIENT_INFO, and CLIENT_IDENTIFIER. (Cameron Porter) + +- PHAR: + . Fixed bug #77396 (Null Pointer Dereference in phar_create_or_parse_filename). + (bishop) + . Fixed bug #77586 (phar_tar_writeheaders_int() buffer overflow). (bishop) + +- phpdbg: + . Fixed bug #76596 (phpdbg support for display_errors=stderr). (kabel) + +- SPL: + . Fixed bug #51068 (DirectoryIterator glob:// don't support current path + relative queries). (Ahmed Abdou) + . Fixed bug #77431 (openFile() silently truncates after a null byte). (cmb) + +- Standard: + . Fixed bug #77552 (Unintialized php_stream_statbuf in stat functions). + (John Stevenson) + . Fixed bug #77612 (setcookie() sets incorrect SameSite header if all of its + options filled). (Nikita) diff --git a/data/releases/7.3/7.3.3/release.json b/data/releases/7.3/7.3.3/release.json new file mode 100644 index 0000000000..3b6153b588 --- /dev/null +++ b/data/releases/7.3/7.3.3/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.3", + "date": "07 Mar 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.3.tar.bz2", + "name": "PHP 7.3.3 (tar.bz2)", + "sha256": "61969e943adfea79701a34b8e701edd3f95be829d16601a4aabeb05f83023ce6" + }, + { + "filename": "php-7.3.3.tar.gz", + "name": "PHP 7.3.3 (tar.gz)", + "sha256": "9bde40cbf8608ae9c595a6643a02cf0c692c131e2b3619af3fd2af8425d8e677" + }, + { + "filename": "php-7.3.3.tar.xz", + "name": "PHP 7.3.3 (tar.xz)", + "sha256": "6bb03e79a183d0cb059a6d117bbb2e0679cab667fb713a13c6a16f56bebab9b3" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.30/announcement.html b/data/releases/7.3/7.3.30/announcement.html new file mode 100644 index 0000000000..4a2d659113 --- /dev/null +++ b/data/releases/7.3/7.3.30/announcement.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/7.3.30/changes.txt b/data/releases/7.3/7.3.30/changes.txt new file mode 100644 index 0000000000..fe5fe6fb4f --- /dev/null +++ b/data/releases/7.3/7.3.30/changes.txt @@ -0,0 +1,2 @@ +- Phar: + . Fixed bug #81211: Symlinks are followed when creating PHAR archive (cmb) diff --git a/data/releases/7.3/7.3.30/release.json b/data/releases/7.3/7.3.30/release.json new file mode 100644 index 0000000000..f74515568e --- /dev/null +++ b/data/releases/7.3/7.3.30/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.30", + "date": "26 Aug 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.30.tar.gz", + "name": "PHP 7.3.30 (tar.gz)", + "sha256": "3810a9b631eb7f236ecf02b9a78bab8d957b6cfdb1646a29e3b34e01d36c0510" + }, + { + "filename": "php-7.3.30.tar.bz2", + "name": "PHP 7.3.30 (tar.bz2)", + "sha256": "ccc532e660761df9b5509b9b913d2dc049b0a9954108fe212aeeb8bc2556b502" + }, + { + "filename": "php-7.3.30.tar.xz", + "name": "PHP 7.3.30 (tar.xz)", + "sha256": "0ebfd656df0f3b1ea37ff2887f8f2d1a71cd160fb0292547c0ee0a99e58ffd1b" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.31/announcement.html b/data/releases/7.3/7.3.31/announcement.html new file mode 100644 index 0000000000..5b5a4bff8e --- /dev/null +++ b/data/releases/7.3/7.3.31/announcement.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/7.3.31/changes.txt b/data/releases/7.3/7.3.31/changes.txt new file mode 100644 index 0000000000..08fcb34a27 --- /dev/null +++ b/data/releases/7.3/7.3.31/changes.txt @@ -0,0 +1,3 @@ +- Zip: + . Fixed bug #81420 (ZipArchive::extractTo extracts outside of destination). + (CVE-2021-21706) (cmb) diff --git a/data/releases/7.3/7.3.31/release.json b/data/releases/7.3/7.3.31/release.json new file mode 100644 index 0000000000..a513cfe333 --- /dev/null +++ b/data/releases/7.3/7.3.31/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.31", + "date": "23 Sep 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.31.tar.gz", + "name": "PHP 7.3.31 (tar.gz)", + "sha256": "57ca37b08d3eed4cadc3976e78b0f51d0305bb6e60333f6e8c76e8aee07c3f0f" + }, + { + "filename": "php-7.3.31.tar.bz2", + "name": "PHP 7.3.31 (tar.bz2)", + "sha256": "6951f78524684f439186fe039ab14fb2459cea8f47ac829a159724a283f7f32b" + }, + { + "filename": "php-7.3.31.tar.xz", + "name": "PHP 7.3.31 (tar.xz)", + "sha256": "d1aa8f44595d01ac061ff340354d95e146d6152f70e799b44d6b8654fb45cbcc" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.32/announcement.html b/data/releases/7.3/7.3.32/announcement.html new file mode 100644 index 0000000000..4706145751 --- /dev/null +++ b/data/releases/7.3/7.3.32/announcement.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/7.3.32/changes.txt b/data/releases/7.3/7.3.32/changes.txt new file mode 100644 index 0000000000..1b27649f6c --- /dev/null +++ b/data/releases/7.3/7.3.32/changes.txt @@ -0,0 +1,3 @@ +- FPM: + . Fixed bug #81026 (PHP-FPM oob R/W in root process leading to privilege + escalation). (CVE-2021-21703) (Jakub Zelenka) diff --git a/data/releases/7.3/7.3.32/release.json b/data/releases/7.3/7.3.32/release.json new file mode 100644 index 0000000000..603084c094 --- /dev/null +++ b/data/releases/7.3/7.3.32/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.32", + "date": "28 Oct 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.32.tar.gz", + "name": "PHP 7.3.32 (tar.gz)", + "sha256": "4739160cbd8f5d4529429ac01e181cba9705a515666002e76e4e34891c034fcb" + }, + { + "filename": "php-7.3.32.tar.bz2", + "name": "PHP 7.3.32 (tar.bz2)", + "sha256": "7c158b306e53434f1e0a88647aa561814308aaff8713ed7d237ed8f1399c216f" + }, + { + "filename": "php-7.3.32.tar.xz", + "name": "PHP 7.3.32 (tar.xz)", + "sha256": "94effa250b80f031e77fbd98b6950c441157a2a8f9e076ee68e02f5b0b7a3fd9" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.33/announcement.html b/data/releases/7.3/7.3.33/announcement.html new file mode 100644 index 0000000000..e9b2ce0dbd --- /dev/null +++ b/data/releases/7.3/7.3.33/announcement.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/7.3.33/changes.txt b/data/releases/7.3/7.3.33/changes.txt new file mode 100644 index 0000000000..afb7fc9375 --- /dev/null +++ b/data/releases/7.3/7.3.33/changes.txt @@ -0,0 +1,3 @@ +- XML: + . Fix #79971: special character is breaking the path in xml function. + (CVE-2021-21707) (cmb) diff --git a/data/releases/7.3/7.3.33/release.json b/data/releases/7.3/7.3.33/release.json new file mode 100644 index 0000000000..c5015785f6 --- /dev/null +++ b/data/releases/7.3/7.3.33/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.33", + "date": "18 Nov 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.33.tar.gz", + "name": "PHP 7.3.33 (tar.gz)", + "sha256": "9a369c32c6f52036b0a890f290327f148a1904ee66aa56e2c9a7546da6525ec8" + }, + { + "filename": "php-7.3.33.tar.bz2", + "name": "PHP 7.3.33 (tar.bz2)", + "sha256": "f412487d7d953437e7978a0d7b6ec99bf4a85cf3378014438a8577b89535451a" + }, + { + "filename": "php-7.3.33.tar.xz", + "name": "PHP 7.3.33 (tar.xz)", + "sha256": "166eaccde933381da9516a2b70ad0f447d7cec4b603d07b9a916032b215b90cc" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.4/announcement.html b/data/releases/7.3/7.3.4/announcement.html new file mode 100644 index 0000000000..7628460d18 --- /dev/null +++ b/data/releases/7.3/7.3.4/announcement.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/7.3.4/changes.txt b/data/releases/7.3/7.3.4/changes.txt new file mode 100644 index 0000000000..c4b96b55cc --- /dev/null +++ b/data/releases/7.3/7.3.4/changes.txt @@ -0,0 +1,71 @@ +- Core: + . Fixed bug #77738 (Nullptr deref in zend_compile_expr). (Laruence) + . Fixed bug #77660 (Segmentation fault on break 2147483648). (Laruence) + . Fixed bug #77652 (Anonymous classes can lose their interface information). + (Nikita) + . Fixed bug #77345 (Stack Overflow caused by circular reference in garbage + collection). (Alexandru Patranescu, Nikita, Dmitry) + . Fixed bug #76956 (Wrong value for 'syslog.filter' documented in php.ini). + (cmb) + +- Apache2Handler: + . Fixed bug #77648 (BOM in sapi/apache2handler/php_functions.c). (cmb) + +- Bcmath: + . Fixed bug #77742 (bcpow() implementation related to gcc compiler + optimization). (Nikita) + +- CLI Server: + . Fixed bug #77722 (Incorrect IP set to $_SERVER['REMOTE_ADDR'] on the + localhost). (Nikita) + +- COM: + . Fixed bug #77578 (Crash when php unload). (cmb) + +- EXIF: + . Fixed bug #77753 (Heap-buffer-overflow in php_ifd_get32s). (CVE-2019-11034) + (Stas) + . Fixed bug #77831 (Heap-buffer-overflow in exif_iif_add_value). + (CVE-2019-11035) (Stas) + +- FPM: + . Fixed bug #77677 (FPM fails to build on AIX due to missing WCOREDUMP). + (Kevin Adler) + +- GD: + . Fixed bug #77700 (Writing truecolor images as GIF ignores interlace flag). + (cmb) + +- MySQLi: + . Fixed bug #77597 (mysqli_fetch_field hangs scripts). (Nikita) + +- Opcache: + . Fixed bug #77743 (Incorrect pi node insertion for jmpznz with identical + successors). (Nikita) + +- PCRE: + . Fixed bug #76127 (preg_split does not raise an error on invalid UTF-8). + (Nikita) + +- Phar: + . Fixed bug #77697 (Crash on Big_Endian platform). (Laruence) + +- phpdbg: + . Fixed bug #77767 (phpdbg break cmd aliases listed in help do not match + actual aliases). (Miriam Lauter) + +- sodium: + . Fixed bug #77646 (sign_detached() strings not terminated). (Frank) + +- SQLite3: + . Added sqlite3.defensive INI directive. (BohwaZ) + +- Standard: + . Fixed bug #77664 (Segmentation fault when using undefined constant in + custom wrapper). (Laruence) + . Fixed bug #77669 (Crash in extract() when overwriting extracted array). + (Nikita) + . Fixed bug #76717 (var_export() does not create a parsable value for + PHP_INT_MIN). (Nikita) + . Fixed bug #77765 (FTP stream wrapper should set the directory as + executable). (Vlad Temian) diff --git a/data/releases/7.3/7.3.4/release.json b/data/releases/7.3/7.3.4/release.json new file mode 100644 index 0000000000..a0ec0e4fe8 --- /dev/null +++ b/data/releases/7.3/7.3.4/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.4", + "date": "04 Apr 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.4.tar.bz2", + "name": "PHP 7.3.4 (tar.bz2)", + "sha256": "2e2c3d8212c83649e443b61efffbd03df4b9edd0f9c7a679081fe4cb2da12b78" + }, + { + "filename": "php-7.3.4.tar.gz", + "name": "PHP 7.3.4 (tar.gz)", + "sha256": "dd41ecf43fe1172030f41d2581909457a0af7bd137a057c3874e0b0f3c2e8761" + }, + { + "filename": "php-7.3.4.tar.xz", + "name": "PHP 7.3.4 (tar.xz)", + "sha256": "6fe79fa1f8655f98ef6708cde8751299796d6c1e225081011f4104625b923b83" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.5/announcement.html b/data/releases/7.3/7.3.5/announcement.html new file mode 100644 index 0000000000..d53b39eb7c --- /dev/null +++ b/data/releases/7.3/7.3.5/announcement.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/7.3.5/changes.txt b/data/releases/7.3/7.3.5/changes.txt new file mode 100644 index 0000000000..2d6247603a --- /dev/null +++ b/data/releases/7.3/7.3.5/changes.txt @@ -0,0 +1,59 @@ +- Core: + . Fixed bug #77903 (ArrayIterator stops iterating after offsetSet call). + (Nikita) + +- CLI: + . Fixed bug #77794 (Incorrect Date header format in built-in server). + (kelunik) + +- EXIF + . Fixed bug #77950 (Heap-buffer-overflow in _estrndup via exif_process_IFD_TAG). + (CVE-2019-11036) (Stas) + +- Interbase: + . Fixed bug #72175 (Impossibility of creating multiple connections to + Interbase with php 7.x). (Nikita) + +- Intl: + . Fixed bug #77895 (IntlDateFormatter::create fails in strict mode if $locale + = null). (Nikita) + +- LDAP: + . Fixed bug #77869 (Core dump when using server controls) (mcmic) + +- Mail + . Fixed bug #77821 (Potential heap corruption in TSendMail()). (cmb) + +- mbstring: + . Implemented FR #72777 (Implement regex stack limits for mbregex functions). + (Yasuo Ohgaki, Stas) + +- MySQLi: + . Fixed bug #77773 (Unbuffered queries leak memory - MySQLi / mysqlnd). + (Nikita) + +- PCRE: + . Fixed bug #77827 (preg_match does not ignore \r in regex flags). (requinix, + cmb) + +- PDO: + . Fixed bug #77849 (Disable cloning of PDO handle/connection objects). + (camporter) + +- phpdbg: + . Fixed bug #76801 (too many open files). (alekitto) + . Fixed bug #77800 (phpdbg segfaults on listing some conditional breakpoints). + (krakjoe) + . Fixed bug #77805 (phpdbg build fails when readline is shared). (krakjoe) + +- Reflection: + . Fixed bug #77772 (ReflectionClass::getMethods(null) doesn't work). (Nikita) + . Fixed bug #77882 (Different behavior: always calls destructor). (Nikita) + +- Standard: + . Fixed bug #77793 (Segmentation fault in extract() when overwriting + reference with itself). (Nikita) + . Fixed bug #77844 (Crash due to null pointer in parse_ini_string with + INI_SCANNER_TYPED). (Nikita) + . Fixed bug #77853 (Inconsistent substr_compare behaviour with empty + haystack). (Nikita) diff --git a/data/releases/7.3/7.3.5/release.json b/data/releases/7.3/7.3.5/release.json new file mode 100644 index 0000000000..59ecb6e0bf --- /dev/null +++ b/data/releases/7.3/7.3.5/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.5", + "date": "02 May 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.5.tar.bz2", + "name": "PHP 7.3.5 (tar.bz2)", + "sha256": "4380b80ef98267c3823c3416eb05f7729ba7a33de6b3d14ec96013215d62c35e" + }, + { + "filename": "php-7.3.5.tar.gz", + "name": "PHP 7.3.5 (tar.gz)", + "sha256": "c953749b7f3310a3a74f920ef698f6d1c04636d11656ac9ffb3ab10d34e30e1e" + }, + { + "filename": "php-7.3.5.tar.xz", + "name": "PHP 7.3.5 (tar.xz)", + "sha256": "e1011838a46fd4a195c8453b333916622d7ff5bce4aca2d9d99afac142db2472" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.6/announcement.html b/data/releases/7.3/7.3.6/announcement.html new file mode 100644 index 0000000000..cda30160a4 --- /dev/null +++ b/data/releases/7.3/7.3.6/announcement.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/7.3.6/changes.txt b/data/releases/7.3/7.3.6/changes.txt new file mode 100644 index 0000000000..95a08a74c3 --- /dev/null +++ b/data/releases/7.3/7.3.6/changes.txt @@ -0,0 +1,55 @@ +- cURL: + . Implemented FR #72189 (Add missing CURL_VERSION_* constants). (Javier + Spagnoletti) + +- Date: + . Fixed bug #77909 (DatePeriod::__construct() with invalid recurrence count + value). (Ignace Nyamagana Butera) + +- EXIF: + . Fixed bug #77988 (heap-buffer-overflow on php_jpg_get16). + (CVE-2019-11040) (Stas) + +- FPM: + . Fixed bug #77934 (php-fpm kill -USR2 not working). (Jakub Zelenka) + . Fixed bug #77921 (static.php.net doesn't work anymore). (Peter Kokot) + +- GD: + . Fixed bug #77943 (imageantialias($image, false); does not work). (cmb) + . Fixed bug #77973 (Uninitialized read in gdImageCreateFromXbm). + (CVE-2019-11038) (cmb) + +- Iconv: + . Fixed bug #78069 (Out-of-bounds read in iconv.c:_php_iconv_mime_decode() + due to integer overflow). (CVE-2019-11039). (maris dot adam) + +- JSON: + . Fixed bug #77843 (Use after free with json serializer). (Nikita) + +- Opcache: + . Fixed possible crashes, because of inconsistent PCRE cache and opcache + SHM reset. (Alexey Kalinin, Dmitry) + +- PDO_MySQL: + . Fixed bug #77944 (Wrong meta pdo_type for bigint on LLP64). (cmb) + +- Reflection: + . Fixed bug #75186 (Inconsistent reflection of Closure:::__invoke()). (Nikita) + +- Session: + . Fixed bug #77911 (Wrong warning for session.sid_bits_per_character). (cmb) + +- SOAP: + . Fixed bug #77945 (Segmentation fault when constructing SoapClient with + WSDL_CACHE_BOTH). (Nikita) + +- SPL: + . Fixed bug #77024 (SplFileObject::__toString() may return array). (Craig + Duncan) + +- SQLite: + . Fixed bug #77967 (Bypassing open_basedir restrictions via file uris). (Stas) + +- Standard: + . Fixed bug #77931 (Warning for array_map mentions wrong type). (Nikita) + . Fixed bug #78003 (strip_tags output change since PHP 7.3). (cmb) diff --git a/data/releases/7.3/7.3.6/release.json b/data/releases/7.3/7.3.6/release.json new file mode 100644 index 0000000000..f91b21d111 --- /dev/null +++ b/data/releases/7.3/7.3.6/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.6", + "date": "30 May 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.6.tar.bz2", + "name": "PHP 7.3.6 (tar.bz2)", + "sha256": "1e5ac8700154835c0910e3a814517da9b87bb4a82cc7011fea1a82096b6f6f77" + }, + { + "filename": "php-7.3.6.tar.gz", + "name": "PHP 7.3.6 (tar.gz)", + "sha256": "72fbf223ff8659a61eed08eebffb4ede0256e7a69d2151ae24affa5377b70bb8" + }, + { + "filename": "php-7.3.6.tar.xz", + "name": "PHP 7.3.6 (tar.xz)", + "sha256": "fefc8967daa30ebc375b2ab2857f97da94ca81921b722ddac86b29e15c54a164" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.7/announcement.html b/data/releases/7.3/7.3.7/announcement.html new file mode 100644 index 0000000000..dba9a594e0 --- /dev/null +++ b/data/releases/7.3/7.3.7/announcement.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/7.3.7/changes.txt b/data/releases/7.3/7.3.7/changes.txt new file mode 100644 index 0000000000..6dd4b4acfe --- /dev/null +++ b/data/releases/7.3/7.3.7/changes.txt @@ -0,0 +1,46 @@ +- Core: + . Fixed bug #76980 (Interface gets skipped if autoloader throws an exception). + (Nikita) + +- DOM: + . Fixed bug #78025 (segfault when accessing properties of DOMDocumentType). + (cmb) + +- MySQLi: + . Fixed bug #77956 (When mysqli.allow_local_infile = Off, use a meaningful + error message). (Sjon Hortensius) + . Fixed bug #38546 (bindParam incorrect processing of bool types). + (camporter) + +- MySQLnd: + . Fixed bug #77955 (Random segmentation fault in mysqlnd from php-fpm). + (Nikita) + +- Opcache: + . Fixed bug #78015 (Incorrect evaluation of expressions involving partials + arrays in SCCP). (Nikita) + . Fixed bug #78106 (Path resolution fails if opcache disabled during request). + (Nikita) + +- OpenSSL: + . Fixed bug #78079 (openssl_encrypt_ccm.phpt fails with OpenSSL 1.1.1c). + (Jakub Zelenka) + +- phpdbg: + . Fixed bug #78050 (SegFault phpdbg + opcache on include file twice). + (Nikita) + +- Sockets: + . Fixed bug #78038 (Socket_select fails when resource array contains + references). (Nikita) + +- Sodium: + . Fixed bug #78114 (segfault when calling sodium_* functions from eval). (cmb) + +- Standard: + . Fixed bug #77135 (Extract with EXTR_SKIP should skip $this). + (Craig Duncan, Dmitry) + . Fixed bug #77937 (preg_match failed). (cmb, Anatol) + +- Zip: + . Fixed bug #76345 (zip.h not found). (Michael Maroszek) diff --git a/data/releases/7.3/7.3.7/release.json b/data/releases/7.3/7.3.7/release.json new file mode 100644 index 0000000000..e577ad1006 --- /dev/null +++ b/data/releases/7.3/7.3.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.3.7", + "date": "04 Jul 2019", + "tags": [], + "source": [ + { + "filename": "php-7.3.7.tar.bz2", + "name": "PHP 7.3.7 (tar.bz2)", + "sha256": "c3608fa7114642725854119ccffe722f42fc7c31e5e4c00d5cb4cb1a0d16bf18" + }, + { + "filename": "php-7.3.7.tar.gz", + "name": "PHP 7.3.7 (tar.gz)", + "sha256": "4230bbc862df712b013369de94b131eddea1e5e946a8c5e286b82d441c313328" + }, + { + "filename": "php-7.3.7.tar.xz", + "name": "PHP 7.3.7 (tar.xz)", + "sha256": "ba067200ba649956b3a92ec8b71a6ed8ce8a099921212443c1bcf3260a29274c" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.8/announcement.html b/data/releases/7.3/7.3.8/announcement.html new file mode 100644 index 0000000000..a5e29843b1 --- /dev/null +++ b/data/releases/7.3/7.3.8/announcement.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/7.3.8/changes.txt b/data/releases/7.3/7.3.8/changes.txt new file mode 100644 index 0000000000..9ac9ada895 --- /dev/null +++ b/data/releases/7.3/7.3.8/changes.txt @@ -0,0 +1,62 @@ +- Core: + . Added syslog.filter=raw option. (Erik Lundin) + . Fixed bug #78212 (Segfault in built-in webserver). (cmb) + +- Date: + . Fixed bug #69044 (discrepency between time and microtime). (krakjoe) + . Updated timelib to 2018.02. (Derick) + +- EXIF: + . Fixed bug #78256 (heap-buffer-overflow on exif_process_user_comment). + (CVE-2019-11042) (Stas) + . Fixed bug #78222 (heap-buffer-overflow on exif_scan_thumbnail). + (CVE-2019-11041) (Stas) + +- FTP: + . Fixed bug #78039 (FTP with SSL memory leak). (Nikita) + +- Libxml: + . Fixed bug #78279 (libxml_disable_entity_loader settings is shared between + requests (cgi-fcgi)). (Nikita) + +- LiteSpeed: + . Updated to LiteSpeed SAPI V7.4.3 (increased response header count limit from + 100 to 1000, added crash handler to cleanly shutdown PHP request, added + CloudLinux mod_lsapi mode). (George Wang) + . Fixed bug #76058 (After "POST data can't be buffered", using php://input + makes huge tmp files). (George Wang) + +- Openssl: + . Fixed bug #78231 (Segmentation fault upon stream_socket_accept of exported + socket-to-stream). (Nikita) + +- Opcache: + . Fixed bug #78189 (file cache strips last character of uname hash). (cmb) + . Fixed bug #78202 (Opcache stats for cache hits are capped at 32bit NUM). + (cmb) + . Fixed bug #78271 (Invalid result of if-else). (Nikita) + . Fixed bug #78291 (opcache_get_configuration doesn't list all directives). + (Andrew Collington) + . Fixed bug #78341 (Failure to detect smart branch in DFA pass). (Nikita) + +- PCRE: + . Fixed bug #78197 (PCRE2 version check in configure fails for "##.##-xxx" + version strings). (pgnet, Peter Kokot) + . Fixed bug #78338 (Array cross-border reading in PCRE). (cmb) + +- PDO_Sqlite: + . Fixed bug #78192 (SegFault when reuse statement after schema has changed). + (Vincent Quatrevieux) + +- Phar: + . Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). (cmb) + +- Phpdbg: + . Fixed bug #78297 (Include unexistent file memory leak). (Nikita) + +- SQLite: + . Upgraded to SQLite 3.28.0. (cmb) + +- Standard: + . Fixed bug #78241 (touch() does not handle dates after 2038 in PHP 64-bit). (cmb) + . Fixed bug #78269 (password_hash uses weak options for argon2). (Remi) diff --git a/data/releases/7.3/7.3.8/release.json b/data/releases/7.3/7.3.8/release.json new file mode 100644 index 0000000000..88226587f1 --- /dev/null +++ b/data/releases/7.3/7.3.8/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.8", + "date": "01 Aug 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.8.tar.bz2", + "name": "PHP 7.3.8 (tar.bz2)", + "sha256": "d566c630175d9fa84a98d3c9170ec033069e9e20c8d23dea49ae2a976b6c76f5" + }, + { + "filename": "php-7.3.8.tar.gz", + "name": "PHP 7.3.8 (tar.gz)", + "sha256": "31af3eff3337fb70733c9b02a3444c3dae662ecab20aeec7fdc3c42e22071490" + }, + { + "filename": "php-7.3.8.tar.xz", + "name": "PHP 7.3.8 (tar.xz)", + "sha256": "f6046b2ae625d8c04310bda0737ac660dc5563a8e04e8a46c1ee24ea414ad5a5" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.9/announcement.html b/data/releases/7.3/7.3.9/announcement.html new file mode 100644 index 0000000000..2dcd8818fa --- /dev/null +++ b/data/releases/7.3/7.3.9/announcement.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.3/7.3.9/changes.txt b/data/releases/7.3/7.3.9/changes.txt new file mode 100644 index 0000000000..122ce9bb0a --- /dev/null +++ b/data/releases/7.3/7.3.9/changes.txt @@ -0,0 +1,43 @@ +- Core: + . Fixed bug #78363 (Buffer overflow in zendparse). (Nikita) + . Fixed bug #78379 (Cast to object confuses GC, causes crash). (Dmitry) + . Fixed bug #78412 (Generator incorrectly reports non-releasable $this as GC + child). (Nikita) + +- Curl: + . Fixed bug #77946 (Bad cURL resources returned by curl_multi_info_read()). + (Abyr Valg) + +- Exif: + . Fixed bug #78333 (Exif crash (bus error) due to wrong alignment and + invalid cast). (Nikita) + +- FPM: + . Fixed bug #77185 (Use-after-free in FPM master event handling). + (Maksim Nikulin) + +- Iconv: + . Fixed bug #78342 (Bus error in configure test for iconv //IGNORE). (Rainer + Jung) + +- LiteSpeed: + . Updated to LiteSpeed SAPI V7.5 (Fixed clean shutdown). (George Wang) + +- MBString: + . Fixed bug #78380 (Oniguruma 6.9.3 fixes CVEs). (CVE-2019-13224) (Stas) + +- MySQLnd: + . Fixed bug #78179 (MariaDB server version incorrectly detected). (cmb) + . Fixed bug #78213 (Empty row pocket). (cmb) + +- Opcache: + . Fixed bug #77191 (Assertion failure in dce_live_ranges() when silencing is + used). (Nikita) + +- Standard: + . Fixed bug #69100 (Bus error from stream_copy_to_stream (file -> SSL stream) + with invalid length). (Nikita) + . Fixed bug #78282 (atime and mtime mismatch). (cmb) + . Fixed bug #78326 (improper memory deallocation on stream_get_contents() + with fixed length buffer). (Albert Casademont) + . Fixed bug #78346 (strip_tags no longer handling nested php tags). (cmb) diff --git a/data/releases/7.3/7.3.9/release.json b/data/releases/7.3/7.3.9/release.json new file mode 100644 index 0000000000..c442e599fb --- /dev/null +++ b/data/releases/7.3/7.3.9/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.3.9", + "date": "29 Aug 2019", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.3.9.tar.bz2", + "name": "PHP 7.3.9 (tar.bz2)", + "sha256": "a39c9709a8c9eb7ea8ac4933ef7a78b92f7e5735a405c8b8e42ee39541d963c4" + }, + { + "filename": "php-7.3.9.tar.gz", + "name": "PHP 7.3.9 (tar.gz)", + "sha256": "5ecc1b1ad7228ed2e99a970c45358871644fcab1d9fd079a7b129326a7bde42d" + }, + { + "filename": "php-7.3.9.tar.xz", + "name": "PHP 7.3.9 (tar.xz)", + "sha256": "4007f24a39822bef2805b75c625551d30be9eeed329d52eb0838fa5c1b91c1fd" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.0/announcement.html b/data/releases/7.4/7.4.0/announcement.html new file mode 100644 index 0000000000..c2ffc3142e --- /dev/null +++ b/data/releases/7.4/7.4.0/announcement.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/7.4.0/changes.txt b/data/releases/7.4/7.4.0/changes.txt new file mode 100644 index 0000000000..1d52ed5678 --- /dev/null +++ b/data/releases/7.4/7.4.0/changes.txt @@ -0,0 +1,408 @@ +- Core: + . Implemented RFC: Deprecate curly brace syntax for accessing array elements + and string offsets. + https://wiki.php.net/rfc/deprecate_curly_braces_array_access (Andrey Gromov) + . Implemented RFC: Deprecations for PHP 7.4. + https://wiki.php.net/rfc/deprecations_php_7_4 (Kalle, Nikita) + . Fixed bug #52752 (Crash when lexing). (Nikita) + . Fixed bug #60677 (CGI doesn't properly validate shebang line contains #!). + (Nikita) + . Fixed bug #71030 (Self-assignment in list() may have inconsistent behavior). + (Nikita) + . Fixed bug #72530 (Use After Free in GC with Certain Destructors). (Nikita) + . Fixed bug #75921 (Inconsistent: No warning in some cases when stdObj is + created on the fly). (David Walker) + . Implemented FR #76148 (Add array_key_exists() to the list of specially + compiled functions). (Majkl578) + . Fixed bug #76430 (__METHOD__ inconsistent outside of method). + (Ryan McCullagh, Nikita) + . Fixed bug #76451 (Aliases during inheritance type checks affected by + opcache). (Nikita) + . Implemented FR #77230 (Support custom CFLAGS and LDFLAGS from environment). + (cmb) + . Fixed bug #77345 (Stack Overflow caused by circular reference in garbage + collection). (Alexandru Patranescu, Nikita, Dmitry) + . Fixed bug #77812 (Interactive mode does not support PHP 7.3-style heredoc). + (cmb, Nikita) + . Fixed bug #77877 (call_user_func() passes $this to static methods). + (Dmitry) + . Fixed bug #78066 (PHP eats the first byte of a program that comes from + process substitution). (Nikita) + . Fixed bug #78151 (Segfault caused by indirect expressions in PHP 7.4a1). + (Nikita) + . Fixed bug #78154 (SEND_VAR_NO_REF does not always send reference). (Nikita) + . Fixed bug #78182 (Segmentation fault during by-reference property + assignment). (Nikita) + . Fixed bug #78212 (Segfault in built-in webserver). (cmb) + . Fixed bug #78220 (Can't access OneDrive folder). (cmb, ab) + . Fixed bug #78226 (Unexpected __set behavior with typed properties). (Nikita) + . Fixed bug #78239 (Deprecation notice during string conversion converted to + exception hangs). (Nikita) + . Fixed bug #78335 (Static properties/variables containing cycles report as + leak). (Nikita) + . Fixed bug #78340 (Include of stream wrapper not reading whole file). + (Nikita) + . Fixed bug #78344 (Segmentation fault on zend_check_protected). (Nikita) + . Fixed bug #78356 (Array returned from ArrayAccess is incorrectly unpacked + as argument). (Nikita) + . Fixed bug #78379 (Cast to object confuses GC, causes crash). (Dmitry) + . Fixed bug #78386 (fstat mode has unexpected value on PHP 7.4). (cmb) + . Fixed bug #78396 (Second file_put_contents in Shutdown hangs script). + (Nikita) + . Fixed bug #78406 (Broken file includes with user-defined stream filters). + (Nikita) + . Fixed bug #78438 (Corruption when __unserializing deeply nested structures). + (cmb, Nikita) + . Fixed bug #78441 (Parse error due to heredoc identifier followed by digit). + (cmb) + . Fixed bug #78454 (Consecutive numeric separators cause OOM error). + (Theodore Brown) + . Fixed bug #78460 (PEAR installation failure). (Peter Kokot, L. Declercq) + . Fixed bug #78531 (Crash when using undefined variable as object). (Dmitry) + . Fixed bug #78535 (auto_detect_line_endings value not parsed as bool). + (bugreportuser) + . Fixed bug #78604 (token_get_all() does not properly tokenize FOOstat modifies $dbc->affected_rows). + (Derick) + . Fixed bug #76809 (SSL settings aren't respected when persistent connections + are used). (fabiomsouto) + . Fixed bug #78179 (MariaDB server version incorrectly detected). (cmb) + . Fixed bug #78213 (Empty row pocket). (cmb) + +- MySQLnd: + . Fixed connect_attr issues and added the _server_host connection attribute. + (Qianqian Bu) + . Fixed bug #60594 (mysqlnd exposes 160 lines of stats in phpinfo). (PeeHaa) + +- ODBC: + . Fixed bug #78473 (odbc_close() closes arbitrary resources). (cmb) + +- Opcache: + . Implemented preloading RFC: https://wiki.php.net/rfc/preload. (Dmitry) + . Add opcache.preload_user INI directive. (Dmitry) + . Added new INI directive opcache.cache_id (Windows only). (cmb) + . Fixed bug #78106 (Path resolution fails if opcache disabled during request). + (Nikita) + . Fixed bug #78175 (Preloading segfaults at preload time and at runtime). + (Dmitry) + . Fixed bug #78202 (Opcache stats for cache hits are capped at 32bit NUM). + (cmb) + . Fixed bug #78271 (Invalid result of if-else). (Nikita) + . Fixed bug #78341 (Failure to detect smart branch in DFA pass). (Nikita) + . Fixed bug #78376 (Incorrect preloading of constant static properties). + (Dmitry) + . Fixed bug #78429 (opcache_compile_file(__FILE__); segfaults). (cmb) + . Fixed bug #78512 (Cannot make preload work). (Dmitry) + . Fixed bug #78514 (Preloading segfaults with inherited typed property). + (Nikita) + . Fixed bug #78654 (Incorrectly computed opcache checksum on files with + non-ascii characters). (mhagstrand) + +- OpenSSL: + . Added TLS 1.3 support to streams including new tlsv1.3 stream. + (Codarren Velvindron, Jakub Zelenka) + . Added openssl_x509_verify function. (Ben Scholzen) + . openssl_random_pseudo_bytes() now throws in error conditions. + (Sammy Kaye Powers) + . Changed the default config path (Windows only). (cmb) + . Fixed bug #78231 (Segmentation fault upon stream_socket_accept of exported + socket-to-stream). (Nikita) + . Fixed bug #78391 (Assertion failure in openssl_random_pseudo_bytes). + (Nikita) + . Fixed bug #78775 (TLS issues from HTTP request affecting other encrypted + connections). (Nikita) + +- Pcntl: + . Fixed bug #77335 (PHP is preventing SIGALRM from specifying SA_RESTART). + (Nikita) + +- PCRE: + . Implemented FR #77094 (Support flags in preg_replace_callback). (Nikita) + . Fixed bug #72685 (Repeated UTF-8 validation of same string in UTF-8 mode). + (Nikita) + . Fixed bug #73948 (Preg_match_all should return NULLs on trailing optional + capture groups). + . Fixed bug #78338 (Array cross-border reading in PCRE). (cmb) + . Fixed bug #78349 (Bundled pcre2 library missing LICENCE file). (Peter Kokot) + +- PDO: + . Implemented FR #71885 (Allow escaping question mark placeholders). + https://wiki.php.net/rfc/pdo_escape_placeholders (Matteo) + . Fixed bug #77849 (Disable cloning of PDO handle/connection objects). + (camporter) + . Implemented FR #78033 (PDO - support username & password specified in + DSN). (sjon) + +- PDO_Firebird: + . Implemented FR #65690 (PDO_Firebird should also support dialect 1). + (Simonov Denis) + . Implemented FR #77863 (PDO firebird support type Boolean in input + parameters). (Simonov Denis) + +- PDO_MySQL: + . Fixed bug #41997 (SP call yields additional empty result set). (cmb) + . Fixed bug #78623 (Regression caused by "SP call yields additional empty + result set"). (cmb) + +- PDO_OCI: + . Support Oracle Database tracing attributes ACTION, MODULE, + CLIENT_INFO, and CLIENT_IDENTIFIER. (Cameron Porter) + . Implemented FR #76908 (PDO_OCI getColumnMeta() not implemented). + (Valentin Collet, Chris Jones, Remi) + +- PDO_SQLite: + . Implemented sqlite_stmt_readonly in PDO_SQLite. (BohwaZ) + . Raised requirements to SQLite 3.5.0. (cmb) + . Fixed bug #78192 (SegFault when reuse statement after schema has changed). + (Vincent Quatrevieux) + . Fixed bug #78348 (Remove -lrt from pdo_sqlite.so). (Peter Kokot) + +- Phar: + . Fixed bug #77919 (Potential UAF in Phar RSHUTDOWN). (cmb) + +- phpdbg: + . Fixed bug #76596 (phpdbg support for display_errors=stderr). (kabel) + . Fixed bug #76801 (too many open files). (alekitto) + . Fixed bug #77800 (phpdbg segfaults on listing some conditional breakpoints). + (krakjoe) + . Fixed bug #77805 (phpdbg build fails when readline is shared). (krakjoe) + +- Recode: + . Unbundled the recode extension. (cmb) + +- Reflection: + . Fixed bug #76737 (Unserialized reflection objects are broken, they + shouldn't be serializable). (Nikita) + . Fixed bug #78263 (\ReflectionReference::fromArrayElement() returns null + while item is a reference). (Nikita) + . Fixed bug #78410 (Cannot "manually" unserialize class that is final and + extends an internal one). (Nikita) + . Fixed bug #78697 (ReflectionClass::implementsInterface - inaccurate error + message with traits). (villfa) + . Fixed bug #78774 (ReflectionNamedType on Typed Properties Crash). (Nikita) + +- Session: + . Fixed bug #78624 (session_gc return value for user defined session + handlers). (bshaffer) + +- SimpleXML: + . Implemented FR #65215 (SimpleXMLElement could register as implementing + Countable). (LeSuisse) + . Fixed bug #75245 (Don't set content of elements with only whitespaces). + (eriklundin) + +- Sockets: + . Fixed bug #67619 (Validate length on socket_write). (thiagooak) + . Fixed bug #78665 (Multicasting may leak memory). (cmb) + +- sodium: + . Fixed bug #77646 (sign_detached() strings not terminated). (Frank) + . Fixed bug #78510 (Partially uninitialized buffer returned by + sodium_crypto_generichash_init()). (Frank Denis, cmb) + . Fixed bug #78516 (password_hash(): Memory cost is not in allowed range). + (cmb, Nikita) + +- SPL: + . Fixed bug #77518 (SeekableIterator::seek() should accept 'int' typehint as + documented). (Nikita) + . Fixed bug #78409 (Segfault when creating instance of ArrayIterator without + constructor). (Nikita) + . Fixed bug #78436 (Missing addref in SplPriorityQueue EXTR_BOTH mode). + (Nikita) + . Fixed bug #78456 (Segfault when serializing SplDoublyLinkedList). (Nikita) + +- SQLite3: + . Unbundled libsqlite. (cmb) + . Raised requirements to SQLite 3.7.4. (cmb) + . Forbid (un)serialization of SQLite3, SQLite3Stmt and SQLite3Result. (cmb) + . Added support for the SQLite @name notation. (cmb, BohwaZ) + . Added SQLite3Stmt::getSQL() to retrieve the SQL of the statement. (Bohwaz) + . Implement FR ##70950 (Make SQLite3 Online Backup API available). (BohwaZ) + +- Standard: + . Implemented password hashing registry RFC: + https://wiki.php.net/rfc/password_registry. (Sara) + . Implemented RFC where password_hash() has argon2i(d) implementations from + ext/sodium when PHP is built without libargon: + https://wiki.php.net/rfc/sodium.argon.hash (Sara) + . Implemented FR #38301 (field enclosure behavior in fputcsv). (cmb) + . Implemented FR #51496 (fgetcsv should take empty string as an escape). (cmb) + . Fixed bug #73535 (php_sockop_write() returns 0 on error, can be used to + trigger Denial of Service). (Nikita) + . Fixed bug #74764 (Bindto IPv6 works with file_get_contents but fails with + stream_socket_client). (Ville Hukkamäki) + . Fixed bug #76859 (stream_get_line skips data if used with data-generating + filter). (kkopachev) + . Implemented FR #77377 (No way to handle CTRL+C in Windows). (Anatol) + . Fixed bug #77930 (stream_copy_to_stream should use mmap more often). + (Nikita) + . Implemented FR #78177 (Make proc_open accept command array). (Nikita) + . Fixed bug #78208 (password_needs_rehash() with an unknown algo should always + return true). (Sara) + . Fixed bug #78241 (touch() does not handle dates after 2038 in PHP 64-bit). (cmb) + . Fixed bug #78282 (atime and mtime mismatch). (cmb) + . Fixed bug #78326 (improper memory deallocation on stream_get_contents() + with fixed length buffer). (Albert Casademont) + . Fixed bug #78346 (strip_tags no longer handling nested php tags). (cmb) + . Fixed bug #78506 (Error in a php_user_filter::filter() is not reported). + (Nikita) + . Fixed bug #78549 (Stack overflow due to nested serialized input). (Nikita) + . Fixed bug #78759 (array_search in $GLOBALS). (Nikita) + +- Testing: + . Fixed bug #78684 (PCRE bug72463_2 test is sending emails on Linux). (cmb) + +- Tidy: + . Added TIDY_TAG_* constants for HTML5 elements. (cmb) + . Fixed bug #76736 (wrong reflection for tidy_get_head, tidy_get_html, + tidy_get_root, and tidy_getopt) (tandre) + +- WDDX: + . Deprecated and unbundled the WDDX extension. (cmb) + +- Zip: + . Fixed bug #78641 (addGlob can modify given remove_path value). (cmb) diff --git a/data/releases/7.4/7.4.0/release.json b/data/releases/7.4/7.4.0/release.json new file mode 100644 index 0000000000..e3a1a99a11 --- /dev/null +++ b/data/releases/7.4/7.4.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.0", + "date": "28 Nov 2019", + "tags": [], + "source": [ + { + "filename": "php-7.4.0.tar.bz2", + "name": "PHP 7.4.0 (tar.bz2)", + "sha256": "bf206be96a39e643180013df39ddcd0493966692a2422c4b7d3355b6a15a01c0" + }, + { + "filename": "php-7.4.0.tar.gz", + "name": "PHP 7.4.0 (tar.gz)", + "sha256": "004a1a8176176ee1b5c112e73d705977507803f425f9e48cb4a84f42b22abf22" + }, + { + "filename": "php-7.4.0.tar.xz", + "name": "PHP 7.4.0 (tar.xz)", + "sha256": "9bb751b20e5d6cc1ea9b1ebf23ef2d5f07f99b2d9cc417bf1d70c04f8b20ec42" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.1/announcement.html b/data/releases/7.4/7.4.1/announcement.html new file mode 100644 index 0000000000..f35cdfcead --- /dev/null +++ b/data/releases/7.4/7.4.1/announcement.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/7.4.1/changes.txt b/data/releases/7.4/7.4.1/changes.txt new file mode 100644 index 0000000000..a89d8a161d --- /dev/null +++ b/data/releases/7.4/7.4.1/changes.txt @@ -0,0 +1,50 @@ +- Core: + . Fixed bug #78810 (RW fetches do not throw "uninitialized property" + exception). (Nikita) + . Fixed bug #78868 (Calling __autoload() with incorrect EG(fake_scope) value). + (Antony Dovgal, Dmitry) + . Fixed bug #78296 (is_file fails to detect file). (cmb) + . Fixed bug #78883 (fgets(STDIN) fails on Windows). (cmb) + . Fixed bug #78898 (call_user_func(['parent', ...]) fails while other + succeed). (Nikita) + . Fixed bug #78904 (Uninitialized property triggers __get()). (Nikita) + . Fixed bug #78926 (Segmentation fault on Symfony cache:clear). (Nikita) + +- GD: + . Fixed bug #78849 (GD build broken with -D SIGNED_COMPARE_SLOW). (cmb) + . Fixed bug #78923 (Artifacts when convoluting image with transparency). + (wilson chen) + +- FPM: + . Fixed bug #76601 (Partially working php-fpm ater incomplete reload). + (Maksim Nikulin) + . Fixed bug #78889 (php-fpm service fails to start). (Jakub Zelenka) + . Fixed bug #78916 (php-fpm 7.4.0 don't send mail via mail()). + (Jakub Zelenka) + +- Intl: + . Implemented FR #78912 (INTL Support for accounting format). (cmb) + +- Mysqlnd: + . Fixed bug #78823 (ZLIB_LIBS not added to EXTRA_LIBS). (Arjen de Korte) + +- OPcache: + . Fixed $x = (bool)$x; with opcache (should emit undeclared variable notice). + (Tyson Andre) + . Fixed bug #78935 (Preloading removes classes that have dependencies). + (Nikita, Dmitry) + +- PCRE: + . Fixed bug #78853 (preg_match() may return integer > 1). (cmb) + +- Reflection: + . Fixed bug #78895 (Reflection detects abstract non-static class as abstract + static. IS_IMPLICIT_ABSTRACT is not longer used). (Dmitry) + +- Standard: + . Fixed bug #77638 (var_export'ing certain class instances segfaults). (cmb) + . Fixed bug #78840 (imploding $GLOBALS crashes). (cmb) + . Fixed bug #78833 (Integer overflow in pack causes out-of-bound access). + (cmb) + . Fixed bug #78814 (strip_tags allows / in tag name => whitelist bypass). + (cmb) diff --git a/data/releases/7.4/7.4.1/release.json b/data/releases/7.4/7.4.1/release.json new file mode 100644 index 0000000000..a885f7e340 --- /dev/null +++ b/data/releases/7.4/7.4.1/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.1", + "date": "18 Dec 2019", + "tags": [], + "source": [ + { + "filename": "php-7.4.1.tar.bz2", + "name": "PHP 7.4.1 (tar.bz2)", + "sha256": "6b1ca0f0b83aa2103f1e454739665e1b2802b90b3137fc79ccaa8c242ae48e4e" + }, + { + "filename": "php-7.4.1.tar.gz", + "name": "PHP 7.4.1 (tar.gz)", + "sha256": "67265d6bd48d828f4725964f71ca5c76c3da63b0d07bec5ec4e5acfdd3708073" + }, + { + "filename": "php-7.4.1.tar.xz", + "name": "PHP 7.4.1 (tar.xz)", + "sha256": "561bb866bdd509094be00f4ece7c3543ec971c4d878645ee81437e291cffc762" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.10/announcement.html b/data/releases/7.4/7.4.10/announcement.html new file mode 100644 index 0000000000..13584bf2da --- /dev/null +++ b/data/releases/7.4/7.4.10/announcement.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/7.4.10/changes.txt b/data/releases/7.4/7.4.10/changes.txt new file mode 100644 index 0000000000..48670006ec --- /dev/null +++ b/data/releases/7.4/7.4.10/changes.txt @@ -0,0 +1,49 @@ +- Core: + . Fixed bug #79884 (PHP_CONFIG_FILE_PATH is meaningless). (cmb) + . Fixed bug #77932 (File extensions are case-sensitive). (cmb) + . Fixed bug #79806 (realpath() erroneously resolves link to link). (cmb) + . Fixed bug #79895 (PHP_CHECK_GCC_ARG does not allow flags with equal sign). + (Santiago M. Mola) + . Fixed bug #79919 (Stack use-after-scope in define()). (cmb) + . Fixed bug #79934 (CRLF-only line in heredoc causes parsing error). + (Pieter van den Ham) + . Fixed bug #79947 (Memory leak on invalid offset type in compound + assignment). (Nikita) + +- COM: + . Fixed bug #48585 (com_load_typelib holds reference, fails on second call). + (cmb) + +- Exif: + . Fixed bug #75785 (Many errors from exif_read_data). + (Níckolas Daniel da Silva) + +- Gettext: + . Fixed bug #70574 (Tests fail due to relying on Linux fallback behavior for + gettext()). (Florian Engelhardt) + +- LDAP: + . Fixed memory leaks. (ptomulik) + +- OPcache: + . Fixed bug #73060 (php failed with error after temp folder cleaned up). + (cmb) + . Fixed bug #79917 (File cache segfault with a static variable in inherited + method). (Nikita) + +- PDO: + . Fixed bug #64705 (errorInfo property of PDOException is null when + PDO::__construct() fails). (Ahmed Abdou) + +- Session: + . Fixed bug #79724 (Return type does not match in ext/session/mod_mm.c). + (Nikita) + +- Standard: + . Fixed bug #79930 (array_merge_recursive() crashes when called with array + with single reference). (Nikita) + . Fixed bug #79944 (getmxrr always returns true on Alpine linux). (Nikita) + . Fixed bug #79951 (Memory leak in str_replace of empty string). (Nikita) + +- XML: + . Fixed bug #79922 (Crash after multiple calls to xml_parser_free()). (cmb) diff --git a/data/releases/7.4/7.4.10/release.json b/data/releases/7.4/7.4.10/release.json new file mode 100644 index 0000000000..8cc06fcc3a --- /dev/null +++ b/data/releases/7.4/7.4.10/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.10", + "date": "03 Sep 2020", + "tags": [], + "source": [ + { + "filename": "php-7.4.10.tar.bz2", + "name": "PHP 7.4.10 (tar.bz2)", + "sha256": "e90bfc9ed98d24e53b51ffd4eb636cf5cd9d71ed7c6f8e4b6e9981e9882174e7" + }, + { + "filename": "php-7.4.10.tar.gz", + "name": "PHP 7.4.10 (tar.gz)", + "sha256": "e720f1286f895ca37f1c75a2ca338ad2f2456664d7097298167181b25b212feb" + }, + { + "filename": "php-7.4.10.tar.xz", + "name": "PHP 7.4.10 (tar.xz)", + "sha256": "c2d90b00b14284588a787b100dee54c2400e7db995b457864d66f00ad64fb010" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.11/announcement.html b/data/releases/7.4/7.4.11/announcement.html new file mode 100644 index 0000000000..d2c1e5e661 --- /dev/null +++ b/data/releases/7.4/7.4.11/announcement.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/7.4.11/changes.txt b/data/releases/7.4/7.4.11/changes.txt new file mode 100644 index 0000000000..545de87b77 --- /dev/null +++ b/data/releases/7.4/7.4.11/changes.txt @@ -0,0 +1,44 @@ +- Core: + . Fixed bug #79979 (passing value to by-ref param via CUFA crashes). (cmb, + Nikita) + . Fixed bug #80037 (Typed property must not be accessed before initialization + when __get() declared). (Nikita) + . Fixed bug #80048 (Bug #69100 has not been fixed for Windows). (cmb) + . Fixed bug #80049 (Memleak when coercing integers to string via variadic + argument). (Nikita) + . Fixed bug #79699 (PHP parses encoded cookie names so malicious `__Host-` + cookies can be sent). (CVE-2020-7070) (Stas) + +- Calendar: + . Fixed bug #80007 (Potential type confusion in unixtojd() parameter parsing). + (Andy Postnikov) + +- COM: + . Fixed bug #64130 (COM obj parameters passed by reference are not updated). + (cmb) + +- OPcache: + . Fixed bug #80002 (calc free space for new interned string is wrong). + (t-matsuno) + . Fixed bug #80046 (FREE for SWITCH_STRING optimized away). (Nikita) + . Fixed bug #79825 (opcache.file_cache causes SIGSEGV when custom opcode + handlers changed). (SammyK) + +- OpenSSL: + . Fixed bug #79601 (Wrong ciphertext/tag in AES-CCM encryption for a 12 + bytes IV). (CVE-2020-7069) (Jakub Zelenka) + +- PDO: + . Fixed bug #80027 (Terrible performance using $query->fetch on queries with + many bind parameters). (Matteo) + +- SOAP: + . Fixed bug #47021 (SoapClient stumbles over WSDL delivered with + "Transfer-Encoding: chunked"). (Matteo) + +- Standard: + . Fixed bug #79986 (str_ireplace bug with diacritics characters). (cmb) + . Fixed bug #80077 (getmxrr test bug). (Rainer Jung) + . Fixed bug #72941 (Modifying bucket->data by-ref has no effect any longer). + (cmb) + . Fixed bug #80067 (Omitting the port in bindto setting errors). (cmb) diff --git a/data/releases/7.4/7.4.11/release.json b/data/releases/7.4/7.4.11/release.json new file mode 100644 index 0000000000..6afec77faa --- /dev/null +++ b/data/releases/7.4/7.4.11/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.11", + "date": "01 Oct 2020", + "tags": [], + "source": [ + { + "filename": "php-7.4.11.tar.bz2", + "name": "PHP 7.4.11 (tar.bz2)", + "sha256": "5408f255243bd2292f3fbc2fafc27a2ec083fcd852902728f2ba9a3ea616b8c5" + }, + { + "filename": "php-7.4.11.tar.gz", + "name": "PHP 7.4.11 (tar.gz)", + "sha256": "b4fae5c39ca1eedf5597071996d9c85d0674b83f5003126c39b7b44bbfbcd821" + }, + { + "filename": "php-7.4.11.tar.xz", + "name": "PHP 7.4.11 (tar.xz)", + "sha256": "5d31675a9b9c21b5bd03389418218c30b26558246870caba8eb54f5856e2d6ce" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.12/announcement.html b/data/releases/7.4/7.4.12/announcement.html new file mode 100644 index 0000000000..7e9e327e29 --- /dev/null +++ b/data/releases/7.4/7.4.12/announcement.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/7.4.12/changes.txt b/data/releases/7.4/7.4.12/changes.txt new file mode 100644 index 0000000000..a1efca2d0b --- /dev/null +++ b/data/releases/7.4/7.4.12/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed bug #80061 (Copying large files may have suboptimal performance). + (cmb) + . Fixed bug #79423 (copy command is limited to size of file it can copy). + (cmb) + . Fixed bug #80126 (Covariant return types failing compilation). (Nikita) + . Fixed bug #80186 (Segfault when iterating over FFI object). (Nikita) + +- Calendar: + . Fixed bug #80185 (jdtounix() fails after 2037). (cmb) + +- IMAP: + . Fixed bug #80213 (imap_mail_compose() segfaults on certain $bodies). (cmb) + . Fixed bug #80215 (imap_mail_compose() may modify by-val parameters). (cmb) + . Fixed bug #80220 (imap_mail_compose() may leak memory). (cmb) + . Fixed bug #80223 (imap_mail_compose() leaks envelope on malformed bodies). + (cmb) + . Fixed bug #80216 (imap_mail_compose() does not validate types/encodings). + (cmb) + . Fixed bug #80226 (imap_sort() leaks sortpgm memory). (cmb) + +- MySQLnd: + . Fixed bug #80115 (mysqlnd.debug doesn't recognize absolute paths with + slashes). (cmb) + . Fixed bug #80107 (mysqli_query() fails for ~16 MB long query when + compression is enabled). (Nikita) + +- ODBC: + . Fixed bug #78470 (odbc_specialcolumns() no longer accepts $nullable). (cmb) + . Fixed bug #80147 (BINARY strings may not be properly zero-terminated). + (cmb) + . Fixed bug #80150 (Failure to fetch error message). (cmb) + . Fixed bug #80152 (odbc_execute() moves internal pointer of $params). (cmb) + . Fixed bug #46050 (odbc_next_result corrupts prepared resource). (cmb) + +- OPcache: + . Fixed bug #80083 (Optimizer pass 6 removes variables used for ibm_db2 data + binding). (Nikita) + . Fixed bug #80194 (Assertion failure during block assembly of unreachable + free with leading nop). (Nikita) + +- PCRE: + . Updated to PCRE 10.35. (cmb) + . Fixed bug #80118 (Erroneous whitespace match with JIT only). (cmb) + +- PDO_ODBC: + . Fixed bug #67465 (NULL Pointer dereference in odbc_handle_preparer). (cmb) + +- Standard: + . Fixed bug #80114 (parse_url does not accept URLs with port 0). (cmb, twosee) + . Fixed bug #76943 (Inconsistent stream_wrapper_restore() errors). (cmb) + . Fixed bug #76735 (Incorrect message in fopen on invalid mode). (cmb) + +- Tidy: + . Fixed bug #77040 (tidyNode::isHtml() is completely broken). (cmb) diff --git a/data/releases/7.4/7.4.12/release.json b/data/releases/7.4/7.4.12/release.json new file mode 100644 index 0000000000..b91455b0f9 --- /dev/null +++ b/data/releases/7.4/7.4.12/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.12", + "date": "29 Oct 2020", + "tags": [], + "source": [ + { + "filename": "php-7.4.12.tar.bz2", + "name": "PHP 7.4.12 (tar.bz2)", + "sha256": "6e6f73cc239edfc462b56a45724019691f85b57b7492e1eb5b4b60f7faa19967" + }, + { + "filename": "php-7.4.12.tar.gz", + "name": "PHP 7.4.12 (tar.gz)", + "sha256": "f056d74409a71f17218f76538c6a2d7b59ee99db9db7685fa0ab9cd0d4c0f286" + }, + { + "filename": "php-7.4.12.tar.xz", + "name": "PHP 7.4.12 (tar.xz)", + "sha256": "e82d2bcead05255f6b7d2ff4e2561bc334204955820cabc2457b5239fde96b76" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.13/announcement.html b/data/releases/7.4/7.4.13/announcement.html new file mode 100644 index 0000000000..1d001af7fc --- /dev/null +++ b/data/releases/7.4/7.4.13/announcement.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/7.4.13/changes.txt b/data/releases/7.4/7.4.13/changes.txt new file mode 100644 index 0000000000..0a30ac9e95 --- /dev/null +++ b/data/releases/7.4/7.4.13/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Fixed bug #80280 (ADD_EXTENSION_DEP() fails for ext/standard and ext/date). + (cmb) + . Fixed bug #80258 (Windows Deduplication Enabled, randon permission errors). + (cmb) + +- COM: + . Fixed bug #62474 (com_event_sink crashes on certain arguments). (cmb) + +- DOM: + . Fixed bug #80268 (loadHTML() truncates at NUL bytes). (cmb) + +- FFI: + . Fixed bug #79177 (FFI doesn't handle well PHP exceptions within callback). + (cmb, Dmitry, Nikita) + +- IMAP: + . Fixed bug #64076 (imap_sort() does not return FALSE on failure). (cmb) + . Fixed bug #76618 (segfault on imap_reopen). (girgias) + . Fixed bug #80239 (imap_rfc822_write_address() leaks memory). (cmb) + . Fixed minor regression caused by fixing bug #80220. (cmb) + . Fixed bug #80242 (imap_mail_compose() segfaults for multipart with rfc822). + (cmb) + +- MySQLi: + . Fixed bug #79375 (mysqli_store_result does not report error from lock wait + timeout). (Kamil Tekiela, Nikita) + . Fixed bug #76525 (mysqli::commit does not throw if MYSQLI_REPORT_ERROR + enabled and mysqlnd used). (Kamil Tekiela) + . Fixed bug #72413 (mysqlnd segfault (fetch_row second parameter + typemismatch)). (Kamil Tekiela) + +- ODBC: + . Fixed bug #44618 (Fetching may rely on uninitialized data). (cmb) + +- Opcache: + . Fixed bug #79643 (PHP with Opcache crashes when a file with specific name + is included). (twosee) + . Fixed run-time binding of preloaded dynamically declared function. (Dmitry) + +- OpenSSL: + . Fixed bug #79983 (openssl_encrypt / openssl_decrypt fail with OCB mode). + (Nikita) + +- PDO MySQL: + . Fixed bug #66528 (No PDOException or errorCode if database becomes + unavailable before PDO::commit). (Nikita) + . Fixed bug #65825 (PDOStatement::fetch() does not throw exception on broken + server connection). (Nikita) + +- SNMP: + . Fixed bug #70461 (disable md5 code when it is not supported in net-snmp). + (Alexander Bergmann, cmb) + +- Standard: + . Fixed bug #80266 (parse_url silently drops port number 0). (cmb, Nikita) diff --git a/data/releases/7.4/7.4.13/release.json b/data/releases/7.4/7.4.13/release.json new file mode 100644 index 0000000000..75ab0c22d2 --- /dev/null +++ b/data/releases/7.4/7.4.13/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.13", + "date": "26 Nov 2020", + "tags": [], + "source": [ + { + "filename": "php-7.4.13.tar.gz", + "name": "PHP 7.4.13 (tar.gz)", + "sha256": "0865cff41e7210de2537bcd5750377cfe09a9312b9b44c1a166cf372d5204b8f" + }, + { + "filename": "php-7.4.13.tar.bz2", + "name": "PHP 7.4.13 (tar.bz2)", + "sha256": "15a339857e11c92eb47fddcd0dfe8aaa951a9be7c57ab7230ccd497465a31fda" + }, + { + "filename": "php-7.4.13.tar.xz", + "name": "PHP 7.4.13 (tar.xz)", + "sha256": "aead303e3abac23106529560547baebbedba0bb2943b91d5aa08fff1f41680f4" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.14/announcement.html b/data/releases/7.4/7.4.14/announcement.html new file mode 100644 index 0000000000..5b202e6359 --- /dev/null +++ b/data/releases/7.4/7.4.14/announcement.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/7.4.14/changes.txt b/data/releases/7.4/7.4.14/changes.txt new file mode 100644 index 0000000000..4c5e2f8765 --- /dev/null +++ b/data/releases/7.4/7.4.14/changes.txt @@ -0,0 +1,59 @@ +- Core: + . Fixed bug #74558 (Can't rebind closure returned by Closure::fromCallable()). + (cmb) + . Fixed bug #80345 (PHPIZE configuration has outdated PHP_RELEASE_VERSION). + (cmb) + . Fixed bug #72964 (White space not unfolded for CC/Bcc headers). (cmb) + . Fixed bug #80362 (Running dtrace scripts can cause php to crash). + (al at coralnet dot name) + . Fixed bug #80393 (Build of PHP extension fails due to configuration gap + with libtool). (kir dot morozov at gmail dot com) + . Fixed bug #80402 (configure filtering out -lpthread). (Nikita) + . Fixed bug #77069 (stream filter loses final block of data). (cmb) + +- Fileinfo: + . Fixed bug #77961 (finfo_open crafted magic parsing SIGABRT). (cmb) + +- FPM: + . Fixed bug #69625 (FPM returns 200 status on request without + SCRIPT_FILENAME env). (Jakub Zelenka) + +- Intl: + . Fixed bug #80425 (MessageFormatAdapter::getArgTypeList redefined). (Nikita) + +- OpenSSL: + . Fixed bug #80368 (OpenSSL extension fails to build against LibreSSL due to + lack of OCB support). (Nikita) + +- Phar: + . Fixed bug #73809 (Phar Zip parse crash - mmap fail). (cmb) + . Fixed bug #75102 (`PharData` says invalid checksum for valid tar). (cmb) + . Fixed bug #77322 (PharData::addEmptyDir('/') Possible integer overflow). + (cmb) + +- PDO MySQL: + . Fixed bug #80458 (PDOStatement::fetchAll() throws for upsert queries). + (Kamil Tekiela) + . Fixed bug #63185 (nextRowset() ignores MySQL errors with native prepared + statements). (Nikita) + . Fixed bug #78152 (PDO::exec() - Bad error handling with multiple commands). + (Nikita) + . Fixed bug #70066 (Unexpected "Cannot execute queries while other unbuffered + queries"). (Nikita) + . Fixed bug #71145 (Multiple statements in init command triggers unbuffered + query error). (Nikita) + . Fixed bug #76815 (PDOStatement cannot be GCed/closeCursor-ed when a + PROCEDURE resultset SIGNAL). (Nikita) + +- Standard: + . Fixed bug #77423 (FILTER_VALIDATE_URL accepts URLs with invalid userinfo). + (CVE-2020-7071) (cmb) + . Fixed bug #80366 (Return Value of zend_fstat() not Checked). (sagpant, cmb) + . Fixed bug #80411 (References to null-serialized object break serialize()). + (Nikita) + +- Tidy: + . Fixed bug #77594 (ob_tidyhandler is never reset). (cmb) + +- Zlib: + . Fixed #48725 (Support for flushing in zlib stream). (cmb) diff --git a/data/releases/7.4/7.4.14/release.json b/data/releases/7.4/7.4.14/release.json new file mode 100644 index 0000000000..feec2d1a21 --- /dev/null +++ b/data/releases/7.4/7.4.14/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.14", + "date": "07 Jan 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.14.tar.gz", + "name": "PHP 7.4.14 (tar.gz)", + "sha256": "d359183e2436f4ab30b70d4fbd881b5705a46b2e68cc6069fe91cd63d6e98e13" + }, + { + "filename": "php-7.4.14.tar.bz2", + "name": "PHP 7.4.14 (tar.bz2)", + "sha256": "6889ca0605adee3aa7077508cd79fcef1dbd88461cdf25e7c1a86997b8d0a1f6" + }, + { + "filename": "php-7.4.14.tar.xz", + "name": "PHP 7.4.14 (tar.xz)", + "sha256": "f9f3c37969fcd9006c1dbb1dd76ab53f28c698a1646fa2dde8547c3f45e02886" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.15/announcement.html b/data/releases/7.4/7.4.15/announcement.html new file mode 100644 index 0000000000..481912ea72 --- /dev/null +++ b/data/releases/7.4/7.4.15/announcement.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/7.4.15/changes.txt b/data/releases/7.4/7.4.15/changes.txt new file mode 100644 index 0000000000..21994470f6 --- /dev/null +++ b/data/releases/7.4/7.4.15/changes.txt @@ -0,0 +1,25 @@ +- Core: + . Fixed bug #80523 (bogus parse error on >4GB source code). (Nikita) + . Fixed bug #80384 (filter buffers entire read until file closed). (Adam + Seitz, cmb) + +- Curl: + . Fixed bug #80595 (Resetting POSTFIELDS to empty array breaks request). (cmb) + +- Date: + . Fixed bug #80376 (last day of the month causes runway cpu usage. (Derick) + +- MySQLi: + . Fixed bug #67983 (mysqlnd with MYSQLI_OPT_INT_AND_FLOAT_NATIVE fails to + interpret bit columns). (Nikita) + . Fixed bug #64638 (Fetching resultsets from stored procedure with cursor + fails). (Nikita) + . Fixed bug #72862 (segfault using prepared statements on stored procedures + that use a cursor). (Nikita) + . Fixed bug #77935 (Crash in mysqlnd_fetch_stmt_row_cursor when calling an SP + with a cursor). (Nikita) + +- Phar: + . Fixed bug #77565 (Incorrect locator detection in ZIP-based phars). (cmb) + . Fixed bug #69279 (Compressed ZIP Phar extractTo() creates garbage files). + (cmb) diff --git a/data/releases/7.4/7.4.15/release.json b/data/releases/7.4/7.4.15/release.json new file mode 100644 index 0000000000..bcb3ad7783 --- /dev/null +++ b/data/releases/7.4/7.4.15/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.15", + "date": "04 Feb 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.15.tar.gz", + "name": "PHP 7.4.15 (tar.gz)", + "sha256": "c7403988b69212335dec79e869abe9dbb23d60ea7f6eb16fd6ff99ed6b5f1c87" + }, + { + "filename": "php-7.4.15.tar.bz2", + "name": "PHP 7.4.15 (tar.bz2)", + "sha256": "1bd7be0293446c3d3cbe3c9fae6045119af0798fb0869db61932796dc23a7757" + }, + { + "filename": "php-7.4.15.tar.xz", + "name": "PHP 7.4.15 (tar.xz)", + "sha256": "9b859c65f0cf7b3eff9d4a28cfab719fb3d36a1db3c20d874a79b5ec44d43cb8" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.16/announcement.html b/data/releases/7.4/7.4.16/announcement.html new file mode 100644 index 0000000000..4dd0620569 --- /dev/null +++ b/data/releases/7.4/7.4.16/announcement.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/7.4.16/release.json b/data/releases/7.4/7.4.16/release.json new file mode 100644 index 0000000000..b8a72bf357 --- /dev/null +++ b/data/releases/7.4/7.4.16/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.16", + "date": "04 Mar 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.16.tar.gz", + "name": "PHP 7.4.16 (tar.gz)", + "sha256": "ef2d2b463fc3444895ec599337b663a8832c6ade148d9832417e59aa2b9e93da" + }, + { + "filename": "php-7.4.16.tar.bz2", + "name": "PHP 7.4.16 (tar.bz2)", + "sha256": "85710f007cfd0fae94e13a02a3a036f4e81ef43693260cae8a2e1ca93659ce3e" + }, + { + "filename": "php-7.4.16.tar.xz", + "name": "PHP 7.4.16 (tar.xz)", + "sha256": "1c16cefaf88ded4c92eed6a8a41eb682bb2ef42429deb55f1c4ba159053fb98b" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.18/announcement.html b/data/releases/7.4/7.4.18/announcement.html new file mode 100644 index 0000000000..fb06483f13 --- /dev/null +++ b/data/releases/7.4/7.4.18/announcement.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/7.4.18/changes.txt b/data/releases/7.4/7.4.18/changes.txt new file mode 100644 index 0000000000..efbae6d144 --- /dev/null +++ b/data/releases/7.4/7.4.18/changes.txt @@ -0,0 +1,112 @@ +- Core: + . Fixed bug #80781 (Error handler that throws ErrorException infinite loop). + (Nikita) + . Fixed bug #75776 (Flushing streams with compression filter is broken). (cmb) + +- Dba: + . Fixed bug #80817 (dba_popen() may cause segfault during RSHUTDOWN). (cmb) + +- DOM: + . Fixed bug #66783 (UAF when appending DOMDocument to element). (cmb) + +- FPM: + . Fixed bug #80024 (Duplication of info about inherited socket after pool + removing). (Jakub Zelenka) + +- FTP: + . Fixed bug #80880 (SSL_read on shutdown, ftp/proc_open). (cmb, Jakub + Zelenka) + +- Imap: + . Fixed bug #80710 (imap_mail_compose() header injection). (cmb, Stas) + +- Intl: + . Fixed bug #80763 (msgfmt_format() does not accept DateTime references). + (cmb) + +- LibXML: + . Fixed bug #51903 (simplexml_load_file() doesn't use HTTP headers). (cmb) + . Fixed bug #73533 (Invalid memory access in php_libxml_xmlCheckUTF8). (cmb) + +- MySQLnd: + . Fixed bug #80713 (SegFault when disabling ATTR_EMULATE_PREPARES and + MySQL 8.0). (Nikita) + . Fixed bug #80837 (Calling stmt_store_result after fetch doesn't throw an + error). (Kamil Tekiela) + +- Opcache: + . Fixed bug #80805 (create simple class and get error in opcache.so). (Nikita) + . Fixed bug #80950 (Variables become null in if statements). (Nikita) + +- Pcntl: + . Fixed bug #79812 (Potential integer overflow in pcntl_exec()). (cmb) + +- PCRE: + . Fixed bug #80866 (preg_split ignores limit flag when pattern with \K has + 0-width fullstring match). (Kamil Tekiela) + +- PDO_ODBC: + . Fixed bug #80783 (PDO ODBC truncates BLOB records at every 256th byte). + (cmb) + +- PDO_pgsql: + . Fixed bug #80892 (PDO::PARAM_INT is treated the same as PDO::PARAM_STR). + (Matteo) + +- phpdbg: + . Fixed bug #80757 (Exit code is 0 when could not open file). (Felipe) + +- Session: + . Fixed bug #80774 (session_name() problem with backslash). (cmb) + . Fixed bug #80889 (Cannot set save handler when save_handler is invalid). + (cmb) + +- SOAP: + . Fixed bug #69668 (SOAP special XML characters in namespace URIs not + encoded). (cmb) + +- Standard: + . Fixed bug #78719 (http wrapper silently ignores long Location headers). + (cmb) + . Fixed bug #80771 (phpinfo(INFO_CREDITS) displays nothing in CLI). (cmb) + . Fixed bug #80838 (HTTP wrapper waits for HTTP 1 response after HTTP 101). + (manuelm) + . Fixed bug #80915 (Taking a reference to $_SERVER hides its values from + phpinfo()). (Rowan Tommins) + +04 Mar 2021, php 7.4.16 + +- Core: + . Fixed #80706 (mail(): Headers after Bcc headers may be ignored). (cmb) + +- MySQLnd: + . Fixed bug #78680 (mysqlnd's mysql_clear_password does not transmit + null-terminated password). (Daniel Black) + +- MySQLi: + . Fixed bug #74779 (x() and y() truncating floats to integers). (cmb) + +- OPcache: + . Fixed bug #80682 (opcache doesn't honour pcre.jit option). (Remi) + +- OpenSSL: + . Fixed bug #80747 (Providing RSA key size < 512 generates key that crash + PHP). (Nikita) + +- Phar: + . Fixed bug #75850 (Unclear error message wrt. __halt_compiler() w/o + semicolon) (cmb) + . Fixed bug #70091 (Phar does not mark UTF-8 filenames in ZIP archives). (cmb) + . Fixed bug #53467 (Phar cannot compress large archives). (cmb, lserni) + +- SPL: + . Fixed bug#80719 (Iterating after failed ArrayObject::setIteratorClass() + causes Segmentation fault). (Nikita) + +- Standard: + . Fixed bug #80654 (file_get_contents() maxlen fails above (2**31)-1 bytes). + (cmb) + +- Zip: + . Fixed bug #80648 (Fix for bug 79296 should be based on runtime version). + (cmb, Remi) diff --git a/data/releases/7.4/7.4.18/release.json b/data/releases/7.4/7.4.18/release.json new file mode 100644 index 0000000000..7236ebd69d --- /dev/null +++ b/data/releases/7.4/7.4.18/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.18", + "date": "29 Apr 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.18.tar.gz", + "name": "PHP 7.4.18 (tar.gz)", + "sha256": "31a8a4a6e7d641f014749cef21421a6d1c9aaba6dce884e181a3370a8e69a04d" + }, + { + "filename": "php-7.4.18.tar.bz2", + "name": "PHP 7.4.18 (tar.bz2)", + "sha256": "2e455932e9c6f5889b1dc879f36fdd5744eaf1ff572b1b778958cbb8f5c1842f" + }, + { + "filename": "php-7.4.18.tar.xz", + "name": "PHP 7.4.18 (tar.xz)", + "sha256": "ab97f22b128d21dcbc009b50a37aaea0051b2721cbcd122d9e00e6ffc3c4b7e1" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.19/announcement.html b/data/releases/7.4/7.4.19/announcement.html new file mode 100644 index 0000000000..a5d2fd5cdd --- /dev/null +++ b/data/releases/7.4/7.4.19/announcement.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/7.4.19/changes.txt b/data/releases/7.4/7.4.19/changes.txt new file mode 100644 index 0000000000..e586522e2b --- /dev/null +++ b/data/releases/7.4/7.4.19/changes.txt @@ -0,0 +1,4 @@ +- PDO_pgsql: + . Reverted bug fix for #80892 (PDO::PARAM_INT is treated the same as + PDO::PARAM_STR). (Matteo) + diff --git a/data/releases/7.4/7.4.19/release.json b/data/releases/7.4/7.4.19/release.json new file mode 100644 index 0000000000..7545dc1a79 --- /dev/null +++ b/data/releases/7.4/7.4.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.19", + "date": "06 May 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.19.tar.gz", + "name": "PHP 7.4.19 (tar.gz)", + "sha256": "d7062457ba9f8334ab8ae7e4fea8efe27e2506763551b25db9e6ab9beea8ed6f" + }, + { + "filename": "php-7.4.19.tar.bz2", + "name": "PHP 7.4.19 (tar.bz2)", + "sha256": "25d09b8145b284d870431c1b40aba7944e4bf1836278538f8e29780e7f85ddea" + }, + { + "filename": "php-7.4.19.tar.xz", + "name": "PHP 7.4.19 (tar.xz)", + "sha256": "6c17172c4a411ccb694d9752de899bb63c72a0a3ebe5089116bc13658a1467b2" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.2/announcement.html b/data/releases/7.4/7.4.2/announcement.html new file mode 100644 index 0000000000..10dac7f231 --- /dev/null +++ b/data/releases/7.4/7.4.2/announcement.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/7.4.2/changes.txt b/data/releases/7.4/7.4.2/changes.txt new file mode 100644 index 0000000000..ce0fe93c7f --- /dev/null +++ b/data/releases/7.4/7.4.2/changes.txt @@ -0,0 +1,84 @@ +- Core: + . Preloading support on Windows has been disabled. (Nikita) + . Fixed bug #79022 (class_exists returns True for classes that are not ready + to be used). (Laruence) + . Fixed bug #78929 (plus signs in cookie values are converted to spaces). + (Alexey Kachalin) + . Fixed bug #78973 (Destructor during CV freeing causes segfault if opline + never saved). (Nikita) + . Fixed bug #78776 (Abstract method implementation from trait does not check + "static"). (Nikita) + . Fixed bug #78999 (Cycle leak when using function result as temporary). + (Dmitry) + . Fixed bug #79008 (General performance regression with PHP 7.4 on Windows). + (cmb) + . Fixed bug #79002 (Serializing uninitialized typed properties with __sleep + makes unserialize throw). (Nikita) + +- CURL: + . Fixed bug #79033 (Curl timeout error with specific url and post). (cmb) + . Fixed bug #79063 (curl openssl does not respect PKG_CONFIG_PATH). (Nikita) + +- Date: + . Fixed bug #79015 (undefined-behavior in php_date.c). (cmb) + +- DBA: + . Fixed bug #78808 ([LMDB] MDB_MAP_FULL: Environment mapsize limit reached). + (cmb) + +- Exif: + . Fixed bug #79046 (NaN to int cast undefined behavior in exif). (Nikita) + +- Fileinfo: + . Fixed bug #74170 (locale information change after mime_content_type). + (Sergei Turchanov) + +- GD: + . Fixed bug #79067 (gdTransformAffineCopy() may use unitialized values). (cmb) + . Fixed bug #79068 (gdTransformAffineCopy() changes interpolation method). + (cmb) + +- Libxml: + . Fixed bug #79029 (Use After Free's in XMLReader / XMLWriter). (Laruence) + +- OPcache: + . Fixed bug #78961 (erroneous optimization of re-assigned $GLOBALS). (Dmitry) + . Fixed bug #78950 (Preloading trait method with static variables). (Nikita) + . Fixed bug #78903 (Conflict in RTD key for closures results in crash). + (Nikita) + . Fixed bug #78986 (Opcache segfaults when inheriting ctor from immutable + into mutable class). (Nikita) + . Fixed bug #79040 (Warning Opcode handlers are unusable due to ASLR). (cmb) + . Fixed bug #79055 (Typed property become unknown with OPcache file cache). + (Nikita) + +- Pcntl: + . Fixed bug #78402 (Converting null to string in error message is bad DX). + (SATŌ Kentarō) + +- PDO_PgSQL: + . Fixed bug #78983 (pdo_pgsql config.w32 cannot find libpq-fe.h). (SATŌ + Kentarō) + . Fixed bug #78980 (pgsqlGetNotify() overlooks dead connection). (SATŌ + Kentarō) + . Fixed bug #78982 (pdo_pgsql returns dead persistent connection). (SATŌ + Kentarō) + +- Session: + . Fixed bug #79031 (Session unserialization problem). (Nikita) + +- Shmop: + . Fixed bug #78538 (shmop memory leak). (cmb) + +- Sqlite3: + . Fixed bug #79056 (sqlite does not respect PKG_CONFIG_PATH during + compilation). (Nikita) + +- Spl: + . Fixed bug #78976 (SplFileObject::fputcsv returns -1 on failure). (cmb) + +- Standard: + . Fixed bug #79000 (Non-blocking socket stream reports EAGAIN as error). + (Nikita) + . Fixed bug #54298 (Using empty additional_headers adding extraneous CRLF). + (cmb) diff --git a/data/releases/7.4/7.4.2/release.json b/data/releases/7.4/7.4.2/release.json new file mode 100644 index 0000000000..24c6e0da23 --- /dev/null +++ b/data/releases/7.4/7.4.2/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.2", + "date": "23 Jan 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.2.tar.bz2", + "name": "PHP 7.4.2 (tar.bz2)", + "sha256": "02909974be9c70814ed5652a6bdae9c74220d41c1e5ed5ad921e15d028f8e816" + }, + { + "filename": "php-7.4.2.tar.gz", + "name": "PHP 7.4.2 (tar.gz)", + "sha256": "e1b8dbf561ac1d871362054ff4cd62dca5e19c8c896567996525dda7c4b320f9" + }, + { + "filename": "php-7.4.2.tar.xz", + "name": "PHP 7.4.2 (tar.xz)", + "sha256": "98284deac017da0d426117ecae7599a1f1bf62ae3911e8bc16c4403a8f4bdf13" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.20/announcement.html b/data/releases/7.4/7.4.20/announcement.html new file mode 100644 index 0000000000..542d7330f9 --- /dev/null +++ b/data/releases/7.4/7.4.20/announcement.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/7.4.20/changes.txt b/data/releases/7.4/7.4.20/changes.txt new file mode 100644 index 0000000000..49056714d2 --- /dev/null +++ b/data/releases/7.4/7.4.20/changes.txt @@ -0,0 +1,50 @@ +- Core: + . Fixed bug #80929 (Method name corruption related to repeated calls to + call_user_func_array). (twosee) + . Fixed bug #80960 (opendir() warning wrong info when failed on Windows). + (cmb) + . Fixed bug #67792 (HTTP Authorization schemes are treated as case-sensitive). + (cmb) + . Fixed bug #80972 (Memory exhaustion on invalid string offset). (girgias) + +- FPM: + . Fixed bug #65800 (Events port mechanism). (psumbera) + +- FTP: + . Fixed bug #80901 (Info leak in ftp extension). (cmb) + . Fixed bug #79100 (Wrong FTP error messages). (cmb) + +- GD: + . Fixed bug #81032 (GD install is affected by external libgd installation). + (Flavio Heleno, cmb) + +- MBString: + . Fixed bug #81011 (mb_convert_encoding removes references from arrays). (cmb) + +- ODBC: + . Fixed bug #80460 (ODBC doesn't account for SQL_NO_TOTAL indicator). (cmb) + +- PDO_MySQL: + . Fixed bug #81037 (PDO discards error message text from prepared + statement). (Kamil Tekiela) + +- PDO_ODBC: + . Fixed bug #44643 (bound parameters ignore explicit type definitions). (cmb) + +- pgsql: + . Fixed php_pgsql_fd_cast() wrt. php_stream_can_cast(). (cmb) + +- SPL: + . Fixed bug #80933 (SplFileObject::DROP_NEW_LINE is broken for NUL and CR). + (cmb, Nikita) + +- Opcache: + . Fixed bug #80900 (switch statement behavior inside function). (twosee) + . Fixed bug #81015 (Opcache optimization assumes wrong part of ternary + operator in if-condition). (Nikita) + +- XMLReader: + . Fixed bug #73246 (XMLReader: encoding length not checked). (cmb) + +- Zip: + . Fixed bug #80863 (ZipArchive::extractTo() ignores references). (cmb) diff --git a/data/releases/7.4/7.4.20/release.json b/data/releases/7.4/7.4.20/release.json new file mode 100644 index 0000000000..7c0fd03e83 --- /dev/null +++ b/data/releases/7.4/7.4.20/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.20", + "date": "03 Jun 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.20.tar.gz", + "name": "PHP 7.4.20 (tar.gz)", + "sha256": "84b09e4617e960b36dfa15fdbf2e3cd7141a2e877216ea29391b12ae86963cf4" + }, + { + "filename": "php-7.4.20.tar.bz2", + "name": "PHP 7.4.20 (tar.bz2)", + "sha256": "0ada6bc635e530fa7a4eb55e639dc070077108e5c9885f750b47007fd267b634" + }, + { + "filename": "php-7.4.20.tar.xz", + "name": "PHP 7.4.20 (tar.xz)", + "sha256": "1fa46ca6790d780bf2cb48961df65f0ca3640c4533f0bca743cd61b71cb66335" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.21/announcement.html b/data/releases/7.4/7.4.21/announcement.html new file mode 100644 index 0000000000..4638708dc9 --- /dev/null +++ b/data/releases/7.4/7.4.21/announcement.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/7.4.21/changes.txt b/data/releases/7.4/7.4.21/changes.txt new file mode 100644 index 0000000000..0b489018c5 --- /dev/null +++ b/data/releases/7.4/7.4.21/changes.txt @@ -0,0 +1,28 @@ +- Core: + . Fixed bug #76359 (open_basedir bypass through adding ".."). (cmb) + . Fixed bug #81068 (Double free in realpath_cache_clean()). (Dimitry Andric) + . Fixed bug #81070 (Integer underflow in memory limit comparison). + (Peter van Dommelen) + . Fixed bug #81090 (Typed property performance degradation with .= operator). + (Nikita) + . Fixed bug #81122: SSRF bypass in FILTER_VALIDATE_URL. (CVE-2021-21705) (cmb) + +- Bzip2: + . Fixed bug #81092 (fflush before stream_filter_remove corrupts stream). + (cmb) + +- OpenSSL: + . Fixed bug #76694 (native Windows cert verification uses CN as sever name). + (cmb) + +- PDO_Firebird: + . Fixed bug #76448: Stack buffer overflow in firebird_info_cb. + (CVE-2021-21704) (cmb) + . Fixed bug #76449: SIGSEGV in firebird_handle_doer. (CVE-2021-21704) (cmb) + . Fixed bug #76450: SIGSEGV in firebird_stmt_execute. (CVE-2021-21704) (cmb) + . Fixed bug #76452: Crash while parsing blob data in firebird_fetch_blob. + (CVE-2021-21704) (cmb) + +- Standard: + . Fixed bug #81048 (phpinfo(INFO_VARIABLES) "Array to string conversion"). + (cmb) diff --git a/data/releases/7.4/7.4.21/release.json b/data/releases/7.4/7.4.21/release.json new file mode 100644 index 0000000000..45d6a7d110 --- /dev/null +++ b/data/releases/7.4/7.4.21/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.21", + "date": "01 Jul 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.21.tar.gz", + "name": "PHP 7.4.21 (tar.gz)", + "sha256": "4b9623accbe4b8923a801212f371f784069535009185e7bf7e4dec66bbea61db" + }, + { + "filename": "php-7.4.21.tar.bz2", + "name": "PHP 7.4.21 (tar.bz2)", + "sha256": "36ec6102e757e2c2b7742057a700bbff77c76fa0ccbe9c860398c3d24e32822a" + }, + { + "filename": "php-7.4.21.tar.xz", + "name": "PHP 7.4.21 (tar.xz)", + "sha256": "cf43384a7806241bc2ff22022619baa4abb9710f12ec1656d0173de992e32a90" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.22/announcement.html b/data/releases/7.4/7.4.22/announcement.html new file mode 100644 index 0000000000..5309c41730 --- /dev/null +++ b/data/releases/7.4/7.4.22/announcement.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/7.4.22/changes.txt b/data/releases/7.4/7.4.22/changes.txt new file mode 100644 index 0000000000..722588e55e --- /dev/null +++ b/data/releases/7.4/7.4.22/changes.txt @@ -0,0 +1,28 @@ +- Core: + . Fixed bug #81145 (copy() and stream_copy_to_stream() fail for +4GB files). + (cmb, Nikita) + . Fixed bug #81163 (incorrect handling of indirect vars in __sleep). + (krakjoe) + . Fixed bug #80728 (PHP built-in web server resets timeout when it can kill + the process). (Calvin Buckley) + . Fixed bug #73630 (Built-in Weberver - overwrite $_SERVER['request_uri']). + (cmb) + . Fixed bug #80173 (Using return value of zend_assign_to_variable() is not + safe). (Nikita) + . Fixed bug #73226 (--r[fcez] always return zero exit code). (cmb) + +- Intl: + . Fixed bug #72809 (Locale::lookup() wrong result with canonicalize option). + (cmb) + . Fixed bug #68471 (IntlDateFormatter fails for "GMT+00:00" timezone). (cmb) + . Fixed bug #74264 (grapheme_strrpos() broken for negative offsets). (cmb) + +- OpenSSL: + . Fixed bug #52093 (openssl_csr_sign truncates $serial). (cmb) + +- PCRE: + . Fixed bug #81101 (PCRE2 10.37 shows unexpected result). (Anatol) + . Fixed bug #81243 (Too much memory is allocated for preg_replace()). (cmb) + +- Standard: + . Fixed bug #81223 (flock() only locks first byte of file). (cmb) diff --git a/data/releases/7.4/7.4.22/release.json b/data/releases/7.4/7.4.22/release.json new file mode 100644 index 0000000000..74f8b60848 --- /dev/null +++ b/data/releases/7.4/7.4.22/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.22", + "date": "29 Jul 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.22.tar.gz", + "name": "PHP 7.4.22 (tar.gz)", + "sha256": "4ca2642b99a822237d7f84dc19682be702ad0e2d5d282f7646d84b746d454e34" + }, + { + "filename": "php-7.4.22.tar.bz2", + "name": "PHP 7.4.22 (tar.bz2)", + "sha256": "5022bbca661bc1ab5dfaee72873bcd0f0980d9dd34f980a682029496f51caae1" + }, + { + "filename": "php-7.4.22.tar.xz", + "name": "PHP 7.4.22 (tar.xz)", + "sha256": "8e078cd7d2f49ac3fcff902490a5bb1addc885e7e3b0d8dd068f42c68297bde8" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.23/announcement.html b/data/releases/7.4/7.4.23/announcement.html new file mode 100644 index 0000000000..eb519f7ab8 --- /dev/null +++ b/data/releases/7.4/7.4.23/announcement.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/7.4.23/changes.txt b/data/releases/7.4/7.4.23/changes.txt new file mode 100644 index 0000000000..e92c185777 --- /dev/null +++ b/data/releases/7.4/7.4.23/changes.txt @@ -0,0 +1,37 @@ +- Core: + . Fixed bug #72595 (php_output_handler_append illegal write access). (cmb) + . Fixed bug #66719 (Weird behaviour when using get_called_class() with + call_user_func()). (Nikita) + . Fixed bug #81305 (Built-in Webserver Drops Requests With "Upgrade" Header). + (cmb) + +- BCMath: + . Fixed bug #78238 (BCMath returns "-0"). (cmb) + +- CGI: + . Fixed bug #80849 (HTTP Status header truncation). (cmb) + +- GD: + . Fixed bug #51498 (imagefilledellipse does not work for large circles). (cmb) + +- MySQLi: + . Fixed bug #74544 (Integer overflow in mysqli_real_escape_string()). (cmb, + johannes) + +- OpenSSL: + . Fixed bug #81327 (Error build openssl extension on php 7.4.22). (cmb) + +- PDO_ODBC: + . Fixed bug #81252 (PDO_ODBC doesn't account for SQL_NO_TOTAL). (cmb) + +- Shmop: + . Fixed bug #81283 (shmop can't read beyond 2147483647 bytes). (cmb, Nikita) + +- Standard: + . Fixed bug #72146 (Integer overflow on substr_replace). (cmb) + . Fixed bug #81265 (getimagesize returns 0 for 256px ICO images). + (George Dietrich) + . Fixed bug #74960 (Heap buffer overflow via str_repeat). (cmb, Dmitry) + +- Streams: + . Fixed bug #81294 (Segfault when removing a filter). (cmb) diff --git a/data/releases/7.4/7.4.23/release.json b/data/releases/7.4/7.4.23/release.json new file mode 100644 index 0000000000..13b7d21048 --- /dev/null +++ b/data/releases/7.4/7.4.23/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.23", + "date": "26 Aug 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.23.tar.gz", + "name": "PHP 7.4.23 (tar.gz)", + "sha256": "2aaa481678ad4d2992e7bcf161e0e98c7268f4979f7ca8b3d97dd6de19c205d6" + }, + { + "filename": "php-7.4.23.tar.bz2", + "name": "PHP 7.4.23 (tar.bz2)", + "sha256": "d1e094fe6e4f832e0a64be9c69464ba5d593fb216f914efa8bbb084e0a7a5727" + }, + { + "filename": "php-7.4.23.tar.xz", + "name": "PHP 7.4.23 (tar.xz)", + "sha256": "cea52313fcffe56343bcd3c66dbb23cd5507dc559cc2e3547cf8f5452e88a05d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.24/announcement.html b/data/releases/7.4/7.4.24/announcement.html new file mode 100644 index 0000000000..aa9bd32195 --- /dev/null +++ b/data/releases/7.4/7.4.24/announcement.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/7.4.24/changes.txt b/data/releases/7.4/7.4.24/changes.txt new file mode 100644 index 0000000000..7512c78530 --- /dev/null +++ b/data/releases/7.4/7.4.24/changes.txt @@ -0,0 +1,30 @@ +- Core: + . Fixed bug #81302 (Stream position after stream filter removed). (cmb) + . Fixed bug #81346 (Non-seekable streams don't update position after write). + (cmb) + . Fixed bug #73122 (Integer Overflow when concatenating strings). (cmb) + +-GD: + . Fixed bug #53580 (During resize gdImageCopyResampled cause colors change). + (cmb) + +- Opcache: + . Fixed bug #81353 (segfault with preloading and statically bound closure). + (Nikita) + +- Shmop: + . Fixed bug #81407 (shmop_open won't attach and causes php to crash). (cmb) + +- Standard: + . Fixed bug #71542 (disk_total_space does not work with relative paths). (cmb) + . Fixed bug #81400 (Unterminated string in dns_get_record() results). (cmb) + +- SysVMsg: + . Fixed bug #78819 (Heap Overflow in msg_send). (cmb) + +- XML: + . Fixed bug #81351 (xml_parse may fail, but has no error code). (cmb, Nikita) + +- Zip: + . Fixed bug #81420 (ZipArchive::extractTo extracts outside of destination). + (CVE-2021-21706) (cmb) diff --git a/data/releases/7.4/7.4.24/release.json b/data/releases/7.4/7.4.24/release.json new file mode 100644 index 0000000000..acd61b44a2 --- /dev/null +++ b/data/releases/7.4/7.4.24/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.24", + "date": "23 Sep 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.24.tar.gz", + "name": "PHP 7.4.24 (tar.gz)", + "sha256": "8cc1758cf7ff45428c17641b1be84cd917a2909ba40c770f06a814d8b7f36333" + }, + { + "filename": "php-7.4.24.tar.bz2", + "name": "PHP 7.4.24 (tar.bz2)", + "sha256": "f50e32b788864349041f19e31dcc65b1fcc65bc19122918f607526432edf2f32" + }, + { + "filename": "php-7.4.24.tar.xz", + "name": "PHP 7.4.24 (tar.xz)", + "sha256": "ff7658ee2f6d8af05b48c21146af5f502e121def4e76e862df5ec9fa06e98734" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.25/announcement.html b/data/releases/7.4/7.4.25/announcement.html new file mode 100644 index 0000000000..f5f998af85 --- /dev/null +++ b/data/releases/7.4/7.4.25/announcement.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/7.4.25/changes.txt b/data/releases/7.4/7.4.25/changes.txt new file mode 100644 index 0000000000..67257c1231 --- /dev/null +++ b/data/releases/7.4/7.4.25/changes.txt @@ -0,0 +1,34 @@ +- DOM: + . Fixed bug #81433 (DOMElement::setIdAttribute() called twice may remove ID). + (Viktor Volkov) + +- FFI: + . Fixed bug #79576 ("TYPE *" shows unhelpful message when type is not + defined). (Dmitry) + +- Fileinfo: + . Fixed bug #78987 (High memory usage during encoding detection). (Anatol) + +- Filter: + . Fixed bug #61700 (FILTER_FLAG_IPV6/FILTER_FLAG_NO_PRIV|RES_RANGE failing). + (cmb, Nikita) + +- FPM: + . Fixed bug #81026 (PHP-FPM oob R/W in root process leading to privilege + escalation) (CVE-2021-21703). (Jakub Zelenka) + +- SPL: + . Fixed bug #80663 (Recursive SplFixedArray::setSize() may cause double-free). + (cmb, Nikita, Tyson Andre) + +- Streams: + . Fixed bug #81475 (stream_isatty emits warning with attached stream wrapper). + (cmb) + +- XML: + . Fixed bug #70962 (XML_OPTION_SKIP_WHITE strips embedded whitespace). + (Aliaksandr Bystry, cmb) + +- Zip: + . Fixed bug #81490 (ZipArchive::extractTo() may leak memory). (cmb, Remi) + . Fixed bug #77978 (Dirname ending in colon unzips to wrong dir). (cmb) diff --git a/data/releases/7.4/7.4.25/release.json b/data/releases/7.4/7.4.25/release.json new file mode 100644 index 0000000000..ebe4b18f08 --- /dev/null +++ b/data/releases/7.4/7.4.25/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.25", + "date": "21 Oct 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.25.tar.gz", + "name": "PHP 7.4.25 (tar.gz)", + "sha256": "3b2632252c933cac489a20f68b8f4ab769e5a0a3bf22b6ef47427aff6922e31f" + }, + { + "filename": "php-7.4.25.tar.bz2", + "name": "PHP 7.4.25 (tar.bz2)", + "sha256": "27992570caf3e2e5323ab7b37853c44c1529b1d31ea94d9776efa91d5a781313" + }, + { + "filename": "php-7.4.25.tar.xz", + "name": "PHP 7.4.25 (tar.xz)", + "sha256": "12a758f1d7fee544387a28d3cf73226f47e3a52fb3049f07fcc37d156d393c0a" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.26/announcement.html b/data/releases/7.4/7.4.26/announcement.html new file mode 100644 index 0000000000..de20d4914a --- /dev/null +++ b/data/releases/7.4/7.4.26/announcement.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/7.4.26/changes.txt b/data/releases/7.4/7.4.26/changes.txt new file mode 100644 index 0000000000..26930e1725 --- /dev/null +++ b/data/releases/7.4/7.4.26/changes.txt @@ -0,0 +1,27 @@ +- Core: + . Fixed bug #81518 (Header injection via default_mimetype / default_charset). + (cmb) + +- Date: + . Fixed bug #81500 (Interval serialization regression since 7.3.14 / 7.4.2). + (cmb) + +- DBA: + . Fixed bug #81588 (TokyoCabinet driver leaks memory). (girgias) + +- MBString: + . Fixed bug #76167 (mbstring may use pointer from some previous request). + (cmb, cataphract) + +- MySQLi: + . Fixed bug #81494 (Stopped unbuffered query does not throw error). (Nikita) + +- PCRE: + . Fixed bug #81424 (PCRE2 10.35 JIT performance regression). (cmb) + +- Streams: + . Fixed bug #54340 (Memory corruption with user_filter). (Nikita) + +- XML: + . Fixed bug #79971 (special character is breaking the path in xml function). + (CVE-2021-21707) (cmb) diff --git a/data/releases/7.4/7.4.26/release.json b/data/releases/7.4/7.4.26/release.json new file mode 100644 index 0000000000..0491ef6cf1 --- /dev/null +++ b/data/releases/7.4/7.4.26/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.26", + "date": "18 Nov 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.26.tar.gz", + "name": "PHP 7.4.26 (tar.gz)", + "sha256": "890a7e730f96708a68a77b19fd57fec33cc81573f7249111c870edac42b91a72" + }, + { + "filename": "php-7.4.26.tar.bz2", + "name": "PHP 7.4.26 (tar.bz2)", + "sha256": "d68b88a8f8a437648affcc7793e5e062fa0ec5171f7fd0af385b12c78b1c004d" + }, + { + "filename": "php-7.4.26.tar.xz", + "name": "PHP 7.4.26 (tar.xz)", + "sha256": "e305b3aafdc85fa73a81c53d3ce30578bc94d1633ec376add193a1e85e0f0ef8" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.27/announcement.html b/data/releases/7.4/7.4.27/announcement.html new file mode 100644 index 0000000000..d539be371a --- /dev/null +++ b/data/releases/7.4/7.4.27/announcement.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/7.4.27/changes.txt b/data/releases/7.4/7.4.27/changes.txt new file mode 100644 index 0000000000..ed80e184d6 --- /dev/null +++ b/data/releases/7.4/7.4.27/changes.txt @@ -0,0 +1,22 @@ +- Core: + . Fixed bug #81626 (Error on use static:: in __сallStatic() wrapped to + Closure::fromCallable()). (Nikita) + +- FPM: + . Fixed bug #81513 (Future possibility for heap overflow in FPM zlog). + (Jakub Zelenka) + +- GD: + . Fixed bug #71316 (libpng warning from imagecreatefromstring). (cmb) + +- OpenSSL: + . Fixed bug #75725 (./configure: detecting RAND_egd). (Dilyan Palauzov) + +- PCRE: + . Fixed bug #74604 (Out of bounds in php_pcre_replace_impl). (cmb, Dmitry) + +- Standard: + . Fixed bug #81618 (dns_get_record fails on FreeBSD for missing type). + (fsbruva) + . Fixed bug #81659 (stream_get_contents() may unnecessarily overallocate). + (cmb) diff --git a/data/releases/7.4/7.4.27/release.json b/data/releases/7.4/7.4.27/release.json new file mode 100644 index 0000000000..3bc3b5aebf --- /dev/null +++ b/data/releases/7.4/7.4.27/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.27", + "date": "16 Dec 2021", + "tags": [], + "source": [ + { + "filename": "php-7.4.27.tar.gz", + "name": "PHP 7.4.27 (tar.gz)", + "sha256": "564fd5bc9850370db0cb4058d9087f2f40177fa4921ce698a375416db9ab43ca" + }, + { + "filename": "php-7.4.27.tar.bz2", + "name": "PHP 7.4.27 (tar.bz2)", + "sha256": "184aaef313fbf28c9987f6aa07b655cd1b0eae9e7e17061775a3e7d880185563" + }, + { + "filename": "php-7.4.27.tar.xz", + "name": "PHP 7.4.27 (tar.xz)", + "sha256": "3f8b937310f155822752229c2c2feb8cc2621e25a728e7b94d0d74c128c43d0c" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.28/announcement.html b/data/releases/7.4/7.4.28/announcement.html new file mode 100644 index 0000000000..20c2722f71 --- /dev/null +++ b/data/releases/7.4/7.4.28/announcement.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/7.4.28/changes.txt b/data/releases/7.4/7.4.28/changes.txt new file mode 100644 index 0000000000..9df9008c5d --- /dev/null +++ b/data/releases/7.4/7.4.28/changes.txt @@ -0,0 +1,3 @@ +- Filter: + . Fix #81708: UAF due to php_filter_float() failing for ints + (CVE-2021-21708) (stas) diff --git a/data/releases/7.4/7.4.28/release.json b/data/releases/7.4/7.4.28/release.json new file mode 100644 index 0000000000..8eee4a22f1 --- /dev/null +++ b/data/releases/7.4/7.4.28/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.28", + "date": "17 Feb 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.28.tar.gz", + "name": "PHP 7.4.28 (tar.gz)", + "sha256": "a04014cd1646b90547907e2e0ac5371594533960de317b6c7ac70bcb42db92fb" + }, + { + "filename": "php-7.4.28.tar.bz2", + "name": "PHP 7.4.28 (tar.bz2)", + "sha256": "2085086a863444b0e39547de1a4969fd1c40a0c188eb58fab2938b649b0c4b58" + }, + { + "filename": "php-7.4.28.tar.xz", + "name": "PHP 7.4.28 (tar.xz)", + "sha256": "9cc3b6f6217b60582f78566b3814532c4b71d517876c25013ae51811e65d8fce" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.29/announcement.html b/data/releases/7.4/7.4.29/announcement.html new file mode 100644 index 0000000000..52ba219645 --- /dev/null +++ b/data/releases/7.4/7.4.29/announcement.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/7.4.29/changes.txt b/data/releases/7.4/7.4.29/changes.txt new file mode 100644 index 0000000000..f413f16d4d --- /dev/null +++ b/data/releases/7.4/7.4.29/changes.txt @@ -0,0 +1,6 @@ +- Core: + . No source changes to this release. + Version number added for reproduction of Windows builds. + +- Date: + . Updated to latest IANA timezone database (2022a). (Derick) diff --git a/data/releases/7.4/7.4.29/release.json b/data/releases/7.4/7.4.29/release.json new file mode 100644 index 0000000000..5a0a3eae84 --- /dev/null +++ b/data/releases/7.4/7.4.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.29", + "date": "14 Apr 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.29.tar.gz", + "name": "PHP 7.4.29 (tar.gz)", + "sha256": "f73f89873bb9447cb99eb4863cf0a0deab4481cb8acf7552c0e70647e6885854" + }, + { + "filename": "php-7.4.29.tar.bz2", + "name": "PHP 7.4.29 (tar.bz2)", + "sha256": "7dde58a02b225c25130c6e2ae2cbba7254bb0340f7fe17291478176d866f9482" + }, + { + "filename": "php-7.4.29.tar.xz", + "name": "PHP 7.4.29 (tar.xz)", + "sha256": "7d0f07869f33311ff3fe1138dc0d6c0d673c37fcb737eaed2c6c10a949f1aed6" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.3/announcement.html b/data/releases/7.4/7.4.3/announcement.html new file mode 100644 index 0000000000..dd93722f2c --- /dev/null +++ b/data/releases/7.4/7.4.3/announcement.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/7.4.3/changes.txt b/data/releases/7.4/7.4.3/changes.txt new file mode 100644 index 0000000000..67b1f4f43c --- /dev/null +++ b/data/releases/7.4/7.4.3/changes.txt @@ -0,0 +1,83 @@ +- Core: + . Fixed bug #79146 (cscript can fail to run on some systems). (clarodeus) + . Fixed bug #79155 (Property nullability lost when using multiple property + definition). (Nikita) + . Fixed bug #78323 (Code 0 is returned on invalid options). (Ivan Mikheykin) + . Fixed bug #78989 (Delayed variance check involving trait segfaults). + (Nikita) + . Fixed bug #79174 (cookie values with spaces fail to round-trip). (cmb) + . Fixed bug #76047 (Use-after-free when accessing already destructed + backtrace arguments). (Nikita) + +- CURL: + . Fixed bug #79078 (Hypothetical use-after-free in curl_multi_add_handle()). + (cmb) + +- FFI: + . Fixed bug #79096 (FFI Struct Segfault). (cmb) + +- IMAP: + . Fixed bug #79112 (IMAP extension can't find OpenSSL libraries at configure + time). (Nikita) + +- Intl: + . Fixed bug #79212 (NumberFormatter::format() may detect wrong type). (cmb) + +- Libxml: + . Fixed bug #79191 (Error in SoapClient ctor disables DOMDocument::save()). + (Nikita, cmb) + +- MBString: + . Fixed bug #79149 (SEGV in mb_convert_encoding with non-string encodings). + (cmb) + +- MySQLi: + . Fixed bug #78666 (Properties may emit a warning on var_dump()). (kocsismate) + +- MySQLnd: + . Fixed bug #79084 (mysqlnd may fetch wrong column indexes with MYSQLI_BOTH). + (cmb) + . Fixed bug #79011 (MySQL caching_sha2_password Access denied for password + with more than 20 chars). (Nikita) + +- Opcache: + . Fixed bug #79114 (Eval class during preload causes class to be only half + available). (Laruence) + . Fixed bug #79128 (Preloading segfaults if preload_user is used). (Nikita) + . Fixed bug #79193 (Incorrect type inference for self::$field =& $field). + (Nikita) + +- OpenSSL: + . Fixed bug #79145 (openssl memory leak). (cmb, Nikita) + +- Phar: + . Fixed bug #79082 (Files added to tar with Phar::buildFromIterator have + all-access permissions). (CVE-2020-7063) (stas) + . Fixed bug #79171 (heap-buffer-overflow in phar_extract_file). + (CVE-2020-7061) (cmb) + . Fixed bug #76584 (PharFileInfo::decompress not working). (cmb) + +- Reflection: + . Fixed bug #79115 (ReflectionClass::isCloneable call reflected class + __destruct). (Nikita) + +- Session: + . Fixed bug #79221 (Null Pointer Dereference in PHP Session Upload Progress). + (CVE-2020-7062) (stas) + +- Standard: + . Fixed bug #78902 (Memory leak when using stream_filter_append). (liudaixiao) + . Fixed bug #78969 (PASSWORD_DEFAULT should match PASSWORD_BCRYPT instead of being null). (kocsismate) + +- Testing: + . Fixed bug #78090 (bug45161.phpt takes forever to finish). (cmb) + +- XSL: + . Fixed bug #70078 (XSL callbacks with nodes as parameter leak memory). (cmb) + +- Zip: + . Add ZipArchive::CM_LZMA2 and ZipArchive::CM_XZ constants (since libzip 1.6.0). (Remi) + . Add ZipArchive::RDONLY (since libzip 1.0.0). (Remi) + . Add ZipArchive::ER_* missing constants. (Remi) + . Add ZipArchive::LIBZIP_VERSION constant. (Remi) + . Fixed bug #73119 (Wrong return for ZipArchive::addEmptyDir Method). (Remi) diff --git a/data/releases/7.4/7.4.3/release.json b/data/releases/7.4/7.4.3/release.json new file mode 100644 index 0000000000..dadcf75b83 --- /dev/null +++ b/data/releases/7.4/7.4.3/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.3", + "date": "20 Feb 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.3.tar.bz2", + "name": "PHP 7.4.3 (tar.bz2)", + "sha256": "c1517ba49578fb2dcc64c73a3edc76d4fc507c4a7ac639981584cc7d3b4c6d14" + }, + { + "filename": "php-7.4.3.tar.gz", + "name": "PHP 7.4.3 (tar.gz)", + "sha256": "58e421a1dba10da8542a014535cac77a78f0271afb901cc2bd363b881895a9ed" + }, + { + "filename": "php-7.4.3.tar.xz", + "name": "PHP 7.4.3 (tar.xz)", + "sha256": "cf1f856d877c268124ded1ede40c9fb6142b125fdaafdc54f855120b8bc6982a" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.30/announcement.html b/data/releases/7.4/7.4.30/announcement.html new file mode 100644 index 0000000000..b926f1de60 --- /dev/null +++ b/data/releases/7.4/7.4.30/announcement.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/7.4.30/changes.txt b/data/releases/7.4/7.4.30/changes.txt new file mode 100644 index 0000000000..d78baeb418 --- /dev/null +++ b/data/releases/7.4/7.4.30/changes.txt @@ -0,0 +1,7 @@ +- mysqlnd: + . Fixed bug #81719: mysqlnd/pdo password buffer overflow. (CVE-2022-31626) + (c dot fol at ambionics dot io) + +- pgsql + . Fixed bug #81720: Uninitialized array in pg_query_params(). + (CVE-2022-31625) (cmb) diff --git a/data/releases/7.4/7.4.30/release.json b/data/releases/7.4/7.4.30/release.json new file mode 100644 index 0000000000..3097d49111 --- /dev/null +++ b/data/releases/7.4/7.4.30/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.30", + "date": "09 Jun 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.30.tar.gz", + "name": "PHP 7.4.30 (tar.gz)", + "sha256": "e37ea37e0f79109351ac615da85eb7c2c336101fc5bc802ee79a124a4310dc10" + }, + { + "filename": "php-7.4.30.tar.bz2", + "name": "PHP 7.4.30 (tar.bz2)", + "sha256": "b601bb12e53720469b60ea816776cac1c0696b09888a11ad2379b2eee835386e" + }, + { + "filename": "php-7.4.30.tar.xz", + "name": "PHP 7.4.30 (tar.xz)", + "sha256": "ea72a34f32c67e79ac2da7dfe96177f3c451c3eefae5810ba13312ed398ba70d" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.32/announcement.html b/data/releases/7.4/7.4.32/announcement.html new file mode 100644 index 0000000000..e600f8c3ab --- /dev/null +++ b/data/releases/7.4/7.4.32/announcement.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/7.4.32/changes.txt b/data/releases/7.4/7.4.32/changes.txt new file mode 100644 index 0000000000..22d55447ef --- /dev/null +++ b/data/releases/7.4/7.4.32/changes.txt @@ -0,0 +1,5 @@ +- Core: + . Fixed bug #81726: phar wrapper: DOS when using quine gzip file. + (CVE-2022-31628). (cmb) + . Fixed bug #81727: Don't mangle HTTP variable names that clash with ones + that have a specific semantic meaning. (CVE-2022-31629). (Derick) diff --git a/data/releases/7.4/7.4.32/release.json b/data/releases/7.4/7.4.32/release.json new file mode 100644 index 0000000000..b522def11d --- /dev/null +++ b/data/releases/7.4/7.4.32/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.32", + "date": "29 Sep 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.32.tar.gz", + "name": "PHP 7.4.32 (tar.gz)", + "sha256": "197e3372afd69694eb6b230838305eb9e1cbe5db272e0fa3bbe0d38e329a95bc" + }, + { + "filename": "php-7.4.32.tar.bz2", + "name": "PHP 7.4.32 (tar.bz2)", + "sha256": "9b4c3c21ffbb4f35d7b865dbf88538bba1742335248ae1cc2afc303d456e3aa6" + }, + { + "filename": "php-7.4.32.tar.xz", + "name": "PHP 7.4.32 (tar.xz)", + "sha256": "323332c991e8ef30b1d219cb10f5e30f11b5f319ce4c6642a5470d75ade7864a" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.33/announcement.html b/data/releases/7.4/7.4.33/announcement.html new file mode 100644 index 0000000000..689be734e5 --- /dev/null +++ b/data/releases/7.4/7.4.33/announcement.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/7.4.33/changes.txt b/data/releases/7.4/7.4.33/changes.txt new file mode 100644 index 0000000000..528f429bfc --- /dev/null +++ b/data/releases/7.4/7.4.33/changes.txt @@ -0,0 +1,7 @@ +- GD: + . Fixed bug #81739: OOB read due to insufficient input validation in + imageloadfont(). (CVE-2022-31630) (cmb) + +- Hash: + . Fixed bug #81738: buffer overflow in hash_update() on long parameter. + (CVE-2022-37454) (nicky at mouha dot be) diff --git a/data/releases/7.4/7.4.33/release.json b/data/releases/7.4/7.4.33/release.json new file mode 100644 index 0000000000..7e4e3459d6 --- /dev/null +++ b/data/releases/7.4/7.4.33/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.33", + "date": "03 Nov 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.33.tar.gz", + "name": "PHP 7.4.33 (tar.gz)", + "sha256": "5a2337996f07c8a097e03d46263b5c98d2c8e355227756351421003bea8f463e" + }, + { + "filename": "php-7.4.33.tar.bz2", + "name": "PHP 7.4.33 (tar.bz2)", + "sha256": "4e8117458fe5a475bf203128726b71bcbba61c42ad463dffadee5667a198a98a" + }, + { + "filename": "php-7.4.33.tar.xz", + "name": "PHP 7.4.33 (tar.xz)", + "sha256": "924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.4/announcement.html b/data/releases/7.4/7.4.4/announcement.html new file mode 100644 index 0000000000..ec1bf564ac --- /dev/null +++ b/data/releases/7.4/7.4.4/announcement.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/7.4.4/changes.txt b/data/releases/7.4/7.4.4/changes.txt new file mode 100644 index 0000000000..97047c5748 --- /dev/null +++ b/data/releases/7.4/7.4.4/changes.txt @@ -0,0 +1,86 @@ +- Core: + . Fixed bug #79244 (php crashes during parsing INI file). (Laruence) + . Fixed bug #63206 (restore_error_handler does not restore previous errors + mask). (Mark Plomer) + +- COM: + . Fixed bug #66322 (COMPersistHelper::SaveToFile can save to wrong location). + (cmb) + . Fixed bug #79242 (COM error constants don't match com_exception codes on + x86). (cmb) + . Fixed bug #79247 (Garbage collecting variant objects segfaults). (cmb) + . Fixed bug #79248 (Traversing empty VT_ARRAY throws com_exception). (cmb) + . Fixed bug #79299 (com_print_typeinfo prints duplicate variables). (Litiano + Moura) + . Fixed bug #79332 (php_istreams are never freed). (cmb) + . Fixed bug #79333 (com_print_typeinfo() leaks memory). (cmb) + +- CURL: + . Fixed bug #79019 (Copied cURL handles upload empty file). (cmb) + . Fixed bug #79013 (Content-Length missing when posting a curlFile with + curl). (cmb) + +- DOM: + . Fixed bug #77569: (Write Access Violation in DomImplementation). (Nikita, + cmb) + . Fixed bug #79271 (DOMDocumentType::$childNodes is NULL). (cmb) + +- Enchant: + . Fixed bug #79311 (enchant_dict_suggest() fails on big endian architecture). + (cmb) + +- EXIF: + . Fixed bug #79282 (Use-of-uninitialized-value in exif). (CVE-2020-7064) + (Nikita) + +- Fileinfo: + . Fixed bug #79283 (Segfault in libmagic patch contains a buffer + overflow). (cmb) + +- FPM: + . Fixed bug #77653 (operator displayed instead of the real error message). + (Jakub Zelenka) + . Fixed bug #79014 (PHP-FPM & Primary script unknown). (Jakub Zelenka) + +- MBstring: + . Fixed bug #79371 (mb_strtolower (UTF-32LE): stack-buffer-overflow at + php_unicode_tolower_full). (CVE-2020-7065) (cmb) + +- MySQLi: + . Fixed bug #64032 (mysqli reports different client_version). (cmb) + +- MySQLnd: + . Implemented FR #79275 (Support auth_plugin_caching_sha2_password on + Windows). (cmb) + +- Opcache: + . Fixed bug #79252 (preloading causes php-fpm to segfault during exit). + (Nikita) + +- PCRE: + . Fixed bug #79188 (Memory corruption in preg_replace/preg_replace_callback + and unicode). (Nikita) + . Fixed bug #79241 (Segmentation fault on preg_match()). (Nikita) + . Fixed bug #79257 (Duplicate named groups (?J) prefer last alternative even + if not matched). (Nikita) + +- PDO_ODBC: + . Fixed bug #79038 (PDOStatement::nextRowset() leaks column values). (cmb) + +- Reflection: + . Fixed bug #79062 (Property with heredoc default value returns false for + getDocComment). (Nikita) + +- SQLite3: + . Fixed bug #79294 (::columnType() may fail after SQLite3Stmt::reset()). (cmb) + +- Standard: + . Fixed bug #79329 (get_headers() silently truncates after a null byte). + (CVE-2020-7066) (cmb) + . Fixed bug #79254 (getenv() w/o arguments not showing changes). (cmb) + . Fixed bug #79265 (Improper injection of Host header when using fopen for + http requests). (Miguel Xavier Penha Neto) + +- Zip: + . Fixed bug #79315 (ZipArchive::addFile doesn't honor start/length + parameters). (Remi) diff --git a/data/releases/7.4/7.4.4/release.json b/data/releases/7.4/7.4.4/release.json new file mode 100644 index 0000000000..32a687ed8e --- /dev/null +++ b/data/releases/7.4/7.4.4/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.4", + "date": "19 Mar 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.4.tar.bz2", + "name": "PHP 7.4.4 (tar.bz2)", + "sha256": "308e8f4182ec8a2767b0b1b8e1e7c69fb149b37cfb98ee4a37475e082fa9829f" + }, + { + "filename": "php-7.4.4.tar.gz", + "name": "PHP 7.4.4 (tar.gz)", + "sha256": "1581b3e10c7854597e1086937d5753cdf92d132865c06a50aed4f4f407138616" + }, + { + "filename": "php-7.4.4.tar.xz", + "name": "PHP 7.4.4 (tar.xz)", + "sha256": "1873c4cefdd3df9a78dcffb2198bba5c2f0464f55c9c960720c84df483fca74c" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.5/announcement.html b/data/releases/7.4/7.4.5/announcement.html new file mode 100644 index 0000000000..0ab01aef2f --- /dev/null +++ b/data/releases/7.4/7.4.5/announcement.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/7.4.5/changes.txt b/data/releases/7.4/7.4.5/changes.txt new file mode 100644 index 0000000000..d1452adfe9 --- /dev/null +++ b/data/releases/7.4/7.4.5/changes.txt @@ -0,0 +1,51 @@ +- Core: + . Fixed bug #79364 (When copy empty array, next key is unspecified). (cmb) + . Fixed bug #78210 (Invalid pointer address). (cmb, Nikita) + +- CURL: + . Fixed bug #79199 (curl_copy_handle() memory leak). (cmb) + +- Date: + . Fixed bug #79396 (DateTime hour incorrect during DST jump forward). (Nate + Brunette) + . Fixed bug #74940 (DateTimeZone loose comparison always true). (cmb) + +- FPM: + . Implement request #77062 (Allow numeric [UG]ID in FPM listen.{owner,group}) + (Andre Nathan) + +- Iconv: + . Fixed bug #79200 (Some iconv functions cut Windows-1258). (cmb) + +- OPcache: + . Fixed bug #79412 (Opcache chokes and uses 100% CPU on specific script). + (Dmitry) + +- Session: + . Fixed bug #79413 (session_create_id() fails for active sessions). (cmb) + +- Shmop: + . Fixed bug #79427 (Integer Overflow in shmop_open()). (cmb) + +- SimpleXML: + . Fixed bug #61597 (SXE properties may lack attributes and content). (cmb) + +- SOAP: + . Fixed bug #79357 (SOAP request segfaults when any request parameter is + missing). (Nikita) + +- Spl: + . Fixed bug #75673 (SplStack::unserialize() behavior). (cmb) + . Fixed bug #79393 (Null coalescing operator failing with SplFixedArray). + (cmb) + +- Standard: + . Fixed bug #79330 (shell_exec() silently truncates after a null byte). (stas) + . Fixed bug #79465 (OOB Read in urldecode()). (CVE-2020-7067) (stas) + . Fixed bug #79410 (system() swallows last chunk if it is exactly 4095 bytes + without newline). (Christian Schneider) + +- Zip: + . Fixed Bug #79296 (ZipArchive::open fails on empty file). (Remi) + . Fixed bug #79424 (php_zip_glob uses gl_pathc after call to globfree). + (Max Rees) diff --git a/data/releases/7.4/7.4.5/release.json b/data/releases/7.4/7.4.5/release.json new file mode 100644 index 0000000000..e82b2b0168 --- /dev/null +++ b/data/releases/7.4/7.4.5/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.5", + "date": "16 Apr 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.5.tar.bz2", + "name": "PHP 7.4.5 (tar.bz2)", + "sha256": "39daa533d5b63c3394da711dc12867dd76c2ec31c940bbba16f14e577df13d6f" + }, + { + "filename": "php-7.4.5.tar.gz", + "name": "PHP 7.4.5 (tar.gz)", + "sha256": "1ef619411b0bd68c0fbfd2a6c622ad6bc524d0bceb8476fb9807a23a0fe9a343" + }, + { + "filename": "php-7.4.5.tar.xz", + "name": "PHP 7.4.5 (tar.xz)", + "sha256": "d059fd7f55bdc4d2eada15a00a2976697010d3631ef6f83149cc5289e1f23c2c" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.6/announcement.html b/data/releases/7.4/7.4.6/announcement.html new file mode 100644 index 0000000000..6eedd1f5ea --- /dev/null +++ b/data/releases/7.4/7.4.6/announcement.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/7.4.6/changes.txt b/data/releases/7.4/7.4.6/changes.txt new file mode 100644 index 0000000000..25d8ba17f2 --- /dev/null +++ b/data/releases/7.4/7.4.6/changes.txt @@ -0,0 +1,47 @@ +- Core: + . Fixed bug #79536 (zend_clear_exception prevent exception's destructor to be + called). (Laruence) + . Fixed bug #78434 (Generator yields no items after valid() call). (Nikita) + . Fixed bug #79477 (casting object into array creates references). (Nikita) + . Fixed bug #79514 (Memory leaks while including unexistent file). (cmb, + Nikita) + +- DOM: + . Fixed bug #78221 (DOMNode::normalize() doesn't remove empty text nodes). + (cmb) + +- EXIF: + . Fixed bug #79336 (ext/exif/tests/bug79046.phpt fails on Big endian arch). + (Nikita) + +- FCGI: + . Fixed bug #79491 (Search for .user.ini extends up to root dir). (cmb) + +- MBString: + . Fixed bug #79441 (Segfault in mb_chr() if internal encoding is unsupported). + (Girgias) + +- OpenSSL: + . Fixed bug #79497 (stream_socket_client() throws an unknown error sometimes + with <1s timeout). (Joe Cai) + +- PCRE: + . Upgraded to PCRE2 10.34. (cmb) + +- Phar: + . Fixed bug #79503 (Memory leak on duplicate metadata). (cmb) + +- SimpleXML: + . Fixed bug #79528 (Different object of the same xml between 7.4.5 and + 7.4.4). (cmb) + +- SPL: + . Fixed bug #69264 (__debugInfo() ignored while extending SPL classes). (cmb) + . Fixed bug #67369 (ArrayObject serialization drops the iterator class). + (Alex Dowad) + +- Standard: + . Fixed bug #79468 (SIGSEGV when closing stream handle with a stream filter + appended). (dinosaur) + . Fixed bug #79447 (Serializing uninitialized typed properties with __sleep + should not throw). (nicolas-grekas) diff --git a/data/releases/7.4/7.4.6/release.json b/data/releases/7.4/7.4.6/release.json new file mode 100644 index 0000000000..09d6001ce0 --- /dev/null +++ b/data/releases/7.4/7.4.6/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.6", + "date": "14 May 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.6.tar.bz2", + "name": "PHP 7.4.6 (tar.bz2)", + "sha256": "a6ed9475695d2056322a3f2c00fee61a122a7fce138a0e25694320c5dd1d2348" + }, + { + "filename": "php-7.4.6.tar.gz", + "name": "PHP 7.4.6 (tar.gz)", + "sha256": "2a37bab4e308c4e3867083137b7cce4a3f1d996ae231b383c1a83609cec3fed0" + }, + { + "filename": "php-7.4.6.tar.xz", + "name": "PHP 7.4.6 (tar.xz)", + "sha256": "d740322f84f63019622b9f369d64ea5ab676547d2bdcf12be77a5a4cffd06832" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.7/announcement.html b/data/releases/7.4/7.4.7/announcement.html new file mode 100644 index 0000000000..0b9a300c6b --- /dev/null +++ b/data/releases/7.4/7.4.7/announcement.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/7.4.7/changes.txt b/data/releases/7.4/7.4.7/changes.txt new file mode 100644 index 0000000000..8f76e34b79 --- /dev/null +++ b/data/releases/7.4/7.4.7/changes.txt @@ -0,0 +1,26 @@ +- Core: + . Fixed bug #79599 (coredump in set_error_handler). (Laruence) + . Fixed bug #79566 (Private SHM is not private on Windows). (cmb) + . Fixed bug #79489 (.user.ini does not inherit). (cmb) + . Fixed bug #79600 (Regression in 7.4.6 when yielding an array based + generator). (Nikita) + . Fixed bug #79657 ("yield from" hangs when invalid value encountered). + (Nikita) + +- FFI: + . Fixed bug #79571 (FFI: var_dumping unions may segfault). (cmb) + +- GD: + . Fixed bug #79615 (Wrong GIF header written in GD GIFEncode). (sageptr, cmb) + +- MySQLnd: + . Fixed bug #79596 (MySQL FLOAT truncates to int some locales). (cmb) + +- Opcache: + . Fixed bug #79588 (Boolean opcache settings ignore on/off values). (cmb) + . Fixed bug #79548 (Preloading segfault with inherited method using static + variable). (Nikita) + . Fixed bug #79603 (RTD collision with opcache). (Nikita) + +- Standard: + . Fixed bug #79561 (dns_get_record() fails with DNS_ALL). (cmb) diff --git a/data/releases/7.4/7.4.7/release.json b/data/releases/7.4/7.4.7/release.json new file mode 100644 index 0000000000..56c4d27973 --- /dev/null +++ b/data/releases/7.4/7.4.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.4.7", + "date": "11 June 2020", + "tags": [], + "source": [ + { + "filename": "php-7.4.7.tar.bz2", + "name": "PHP 7.4.7 (tar.bz2)", + "sha256": "800e0d01f359c8ec41540925c0d4a24c34d5f21ef6addd6d82ff4a52be23d87a" + }, + { + "filename": "php-7.4.7.tar.gz", + "name": "PHP 7.4.7 (tar.gz)", + "sha256": "a554a510190e726ebe7157fb00b4aceabdb50c679430510a3b93cbf5d7546e44" + }, + { + "filename": "php-7.4.7.tar.xz", + "name": "PHP 7.4.7 (tar.xz)", + "sha256": "53558f8f24cd8ab6fa0ea252ca8198e2650160649681ce5230c1df1dc2b52faf" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.8/announcement.html b/data/releases/7.4/7.4.8/announcement.html new file mode 100644 index 0000000000..e11f649c3b --- /dev/null +++ b/data/releases/7.4/7.4.8/announcement.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/7.4.8/changes.txt b/data/releases/7.4/7.4.8/changes.txt new file mode 100644 index 0000000000..f19f227fb3 --- /dev/null +++ b/data/releases/7.4/7.4.8/changes.txt @@ -0,0 +1,44 @@ +- Core: + . Fixed bug #79595 (zend_init_fpu() alters FPU precision). (cmb, Nikita) + . Fixed bug #79650 (php-win.exe 100% cpu lockup). (cmb) + . Fixed bug #79668 (get_defined_functions(true) may miss functions). (cmb, + Nikita) + . Fixed bug #79683 (Fake reflection scope affects __toString()). (Nikita) + . Fixed possibly unsupported timercmp() usage. (cmb) + +- Exif: + . Fixed bug #79687 (Sony picture - PHP Warning - Make, Model, MakerNotes). + (cmb) + +- Fileinfo: + . Fixed bug #79681 (mime_content_type/finfo returning incorrect mimetype). + (cmb) + +- Filter: + . Fixed bug #73527 (Invalid memory access in php_filter_strip). (cmb) + +- GD: + . Fixed bug #79676 (imagescale adds black border with IMG_BICUBIC). (cmb) + +- OpenSSL: + . Fixed bug #62890 (default_socket_timeout=-1 causes connection to timeout). + (cmb) + +- PDO SQLite: + . Fixed bug #79664 (PDOStatement::getColumnMeta fails on empty result set). + (cmb) + +- phpdbg: + . Fixed bug #73926 (phpdbg will not accept input on restart execution). (cmb) + . Fixed bug #73927 (phpdbg fails with windows error prompt at "watch array"). + (cmb) + . Fixed several mostly Windows related phpdbg bugs. (cmb) + +- SPL: + . Fixed bug #79710 (Reproducible segfault in error_handler during GC + involved an SplFileObject). (Nikita) + +- Standard: + . Fixed bug #74267 (segfault with streams and invalid data). (cmb) + . Fixed bug #79579 (ZTS build of PHP 7.3.17 doesn't handle ERANGE for + posix_getgrgid and others). (Böszörményi Zoltán) diff --git a/data/releases/7.4/7.4.8/release.json b/data/releases/7.4/7.4.8/release.json new file mode 100644 index 0000000000..eb601ec072 --- /dev/null +++ b/data/releases/7.4/7.4.8/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.8", + "date": "09 Jul 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.8.tar.bz2", + "name": "PHP 7.4.8 (tar.bz2)", + "sha256": "6a48d3a605c003b088984ceb53be5df1e698b8b35ddacadd12fe50f49c0e8062" + }, + { + "filename": "php-7.4.8.tar.gz", + "name": "PHP 7.4.8 (tar.gz)", + "sha256": "649f6bcdb60dc38d5edd7f3a7b2905d15d88c1d13e40307e8972ede347cea6ba" + }, + { + "filename": "php-7.4.8.tar.xz", + "name": "PHP 7.4.8 (tar.xz)", + "sha256": "642843890b732e8af01cb661e823ae01472af1402f211c83009c9b3abd073245" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.4/7.4.9/announcement.html b/data/releases/7.4/7.4.9/announcement.html new file mode 100644 index 0000000000..cc2e9e9153 --- /dev/null +++ b/data/releases/7.4/7.4.9/announcement.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/7.4/7.4.9/changes.txt b/data/releases/7.4/7.4.9/changes.txt new file mode 100644 index 0000000000..b481960e87 --- /dev/null +++ b/data/releases/7.4/7.4.9/changes.txt @@ -0,0 +1,59 @@ +- Apache: + . Fixed bug #79030 (Upgrade apache2handler's php_apache_sapi_get_request_time + to return usec). (Herbert256) + +- COM: + . Fixed bug #63208 (BSTR to PHP string conversion not binary safe). (cmb) + . Fixed bug #63527 (DCOM does not work with Username, Password parameter). + (cmb) + +- Core: + . Fixed bug #79877 (getimagesize function silently truncates after a null + byte) (cmb) + . Fixed bug #79740 (serialize() and unserialize() methods can not be called + statically). (Nikita) + . Fixed bug #79783 (Segfault in php_str_replace_common). (Nikita) + . Fixed bug #79778 (Assertion failure if dumping closure with unresolved + static variable). (Nikita) + . Fixed bug #79779 (Assertion failure when assigning property of string + offset by reference). (Nikita) + . Fixed bug #79792 (HT iterators not removed if empty array is destroyed). + (Nikita) + . Fixed bug #78598 (Changing array during undef index RW error segfaults). + (Nikita) + . Fixed bug #79784 (Use after free if changing array during undef var during + array write fetch). (Nikita) + . Fixed bug #79793 (Use after free if string used in undefined index warning + is changed). (Nikita) + . Fixed bug #79862 (Public non-static property in child should take priority + over private static). (Nikita) + +- Fileinfo: + . Fixed bug #79756 (finfo_file crash (FILEINFO_MIME)). (cmb) + +- FTP: + . Fixed bug #55857 (ftp_size on large files). (cmb) + +- Mbstring: + . Fixed bug #79787 (mb_strimwidth does not trim string). (XXiang) + +- OpenSSL: + . Fixed bug #79881 (Memory leak in openssl_pkey_get_public()). (Nikita) + +- Phar: + . Fixed bug #79797 (Use of freed hash key in the phar_parse_zipfile + function). (CVE-2020-7068) (cmb) + +- Reflection: + . Fixed bug #79487 (::getStaticProperties() ignores property modifications). + (cmb, Nikita) + . Fixed bug #69804 (::getStaticPropertyValue() throws on protected props). + (cmb, Nikita) + . Fixed bug #79820 (Use after free when type duplicated into + ReflectionProperty gets resolved). (Christopher Broadbent) + +- Standard: + . Fixed bug #70362 (Can't copy() large 'data://' with open_basedir). (cmb) + . Fixed bug #78008 (dns_check_record() always return true on Alpine). + (Andy Postnikov) + . Fixed bug #79839 (array_walk() does not respect property types). (Nikita) diff --git a/data/releases/7.4/7.4.9/release.json b/data/releases/7.4/7.4.9/release.json new file mode 100644 index 0000000000..4b04b40daa --- /dev/null +++ b/data/releases/7.4/7.4.9/release.json @@ -0,0 +1,24 @@ +{ + "version": "7.4.9", + "date": "06 Aug 2020", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-7.4.9.tar.bz2", + "name": "PHP 7.4.9 (tar.bz2)", + "sha256": "2e270958a4216480da7886743438ccc92b6acf32ea96fefda88d07e0a5095deb" + }, + { + "filename": "php-7.4.9.tar.gz", + "name": "PHP 7.4.9 (tar.gz)", + "sha256": "c0c657b5769bc463f5f028b1f4fef8814d98ecf3459a402a9e30d41d68b2323e" + }, + { + "filename": "php-7.4.9.tar.xz", + "name": "PHP 7.4.9 (tar.xz)", + "sha256": "23733f4a608ad1bebdcecf0138ebc5fd57cf20d6e0915f98a9444c3f747dc57b" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.0/announcement.html b/data/releases/8.0/8.0.0/announcement.html new file mode 100644 index 0000000000..f887d042b7 --- /dev/null +++ b/data/releases/8.0/8.0.0/announcement.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/8.0.0/changes.txt b/data/releases/8.0/8.0.0/changes.txt new file mode 100644 index 0000000000..2eabc0389f --- /dev/null +++ b/data/releases/8.0/8.0.0/changes.txt @@ -0,0 +1,371 @@ +- BZ2: + . Fixed bug #71263 (fread() does not report bzip2.decompress errors). (cmb) + +- CLI: + . Allow debug server binding to an ephemeral port via `-S localhost:0`. (Sara) + +- COM: + . Fixed bug #55847 (DOTNET .NET 4.0 GAC new location). (cmb) + . Fixed bug #62474 (com_event_sink crashes on certain arguments). (cmb) + +- Calendar: + . Fixed bug #80007 (Potential type confusion in unixtojd() parameter parsing). + (Andy Postnikov) + +- Core: + . Fixed bug #36365 (scandir duplicates file name at every 65535th file). + (cmb) + . Fixed bug #49555 (Fatal error "Function must be a string" message should be + renamed). (Nikita) + . Fixed bug #62294 (register_shutdown_function() does not correctly handle + exit code). (Nikita) + . Fixed bug #62609 (Allow implementing Traversable on abstract classes). + (Nikita) + . Fixed bug #65274 (Enhance undefined class constant error with class name). + (Nikita) + . Fixed bug #65275 (Calling exit() in a shutdown function does not change the + exit value in CLI). (Nikita) + . Fixed bug #69084 (Unclear error message when not implementing a renamed + abstract trait function). (Nikita) + . Fixed bug #70839 (Converting optional argument to variadic forbidden by LSP + checks). (Nikita) + . Fixed bug #74558 (Can't rebind closure returned by Closure::fromCallable()). + (cmb) + . Fixed bug #77561 (Shebang line not stripped for non-primary script). + (Nikita) + . Fixed bug #77619 (Wrong reflection on MultipleIterator::__construct). + (Fabien Villepinte) + . Fixed bug #77966 (Cannot alias a method named "namespace"). (Nikita) + . Fixed bug #78236 (convert error on receiving variables when duplicate [). + (cmb) + . Fixed bug #78770 (Incorrect callability check inside internal methods). + (Nikita) + . Fixed bug #79108 (Referencing argument in a function makes it a reference + in the stack trace). (Nikita) + . Fixed bug #79368 ("Unexpected end of file" is not an acceptable error + message). (Alex Dowad) + . Fixed bug #79462 (method_exists and property_exists incoherent behavior). + (cmb) + . Fixed bug #79467 (data:// wrappers are writable). (cmb) + . Fixed bug #79521 (Check __set_state structure). (carusogabriel) + . Fixed bug #79790 ("Illegal offset type" exception during AST evaluation + not handled properly). (Nikita) + . Fixed bug #79791 (Assertion failure when unsetting variable during binary + op). (Nikita) + . Fixed bug #79828 (Segfault when trying to access non-existing variable). + (Nikita) + . Fixed bug #79841 (Syntax error in configure / unescaped "[]" in php.m4). + (Nikita) + . Fixed bug #79852 (count(DOMNodeList) doesn't match + count(IteratorIterator(DOMNodeList))). (Nikita) + . Fixed bug #79867 (Promoted untyped properties should get null default + value). (Nikita) + . Fixed bug #79897 (Promoted constructor params with attribs cause crash). + (Deus Kane) + . Fixed bug #79927 (Generator doesn't throw exception after multiple yield + from iterable). (Nikita) + . Fixed bug #79946 (Build fails due to undeclared UINT32_C). (Nikita) + . Fixed bug #79948 (Exit in auto-prepended file does not abort PHP execution). + (Nikita) + . Fixed bug #80045 (memleak after two set_exception_handler calls with + __call). (Nikita) + . Fixed bug #80096 (Segmentation fault with named arguments in nested call). + (Nikita) + . Fixed bug #80109 (Cannot skip arguments when extended debug is enabled). + (Nikita) + . Fixed bug #80225 (broken namespace usage in eval code). (Nikita) + . Fixed bug #80258 (Windows Deduplication Enabled, randon permission errors). + (cmb) + . Fixed bug #80280 (ADD_EXTENSION_DEP() fails for ext/standard and ext/date). + (cmb) + . Fixed bug #80334 (assert() vs named parameters - confusing error). (Nikita) + . Fixed bug #80055 (Abstract trait methods returning "self" cannot be + fulfilled by traits). (Nikita) + . Fixed faulty generator cleanup with yield from. (Bob) + . Implement #[Attr] Attribute syntax as per final vote in RFC + https://wiki.php.net/rfc/shorter_attribute_syntax_change + . Implemented FR #47074 (phpinfo() reports "On" as 1 for the some + extensions). (cmb) + . Implemented FR #72089 (require() throws fatal error instead of exception). + (Nikita) + . Removed the pdo_odbc.db2_instance_name php.ini directive. (Kalle) + . Use SSE2 instructions do locale independent strtolower. (Laruence) + +- Curl: + . Bumped required libcurl version to 7.29.0. (cmb) + . Fixed bug #80121 (Null pointer deref if CurlHandle directly instantiated). + (Nikita) + +- DOM: + . Add property DOMXPath::$registerNodeNamespaces and constructor argument + that allow global flag to configure query() or evaluate() calls. + . Fixed bug #79968 (DOMChildNode API crash on unattached nodes). (Benjamin) + . Fixed bug #80268 (loadHTML() truncates at NUL bytes). (cmb) + +- Date: + . Fixed bug #60302 (DateTime::createFromFormat should new static(), not new + self()). (Derick) + . Fixed bug #65547 (Default value for sunrise/sunset zenith still wrong). + (cmb) + . Fixed bug #69044 (discrepancy between time and microtime). (krakjoe) + . Fixed bug #80057 (DateTimeImmutable::createFromFormat() does not populate + time). (Derick) + . Implemented FR #79903 (datetime: new format "p", same as "P" but returning + "Z" for UTC). (gharlan) + +- Enchant: + . Add LIBENCHANT_VERSION macro. + . Add enchant_dict_add and enchant_dict_is_added functions. + . Deprecate enchant_broker_set_dict_path, enchant_broker_get_dict_path, + enchant_dict_add_to_personal and enchant_dict_is_in_session. + . Use libenchant-2 when available. + +- FFI: + . Added FFI\CType::getName() method. (chopins) + . Fixed bug #79177 (FFI doesn't handle well PHP exceptions within callback). + (cmb, Dmitry, Nikita) + . Fixed bug #79749 (Converting FFI instances to bool fails). (cmb) + +- FPM: + . Add pm.status_listen option. (Jakub Zelenka) + +- Fileinfo: + . Upgrade to libmagic 5.39. (Anatol) + +- GD: + . Added imagegetinterpolation(). (cmb) + . Fixed bug #55005 (imagepolygon num_points requirement). (cmb) + . Made the $num_points parameter of php_imagepolygon optional. (cmb) + . Removed deprecated image2wbmp(). (cmb) + . Removed deprecated png2wbmp() and jpeg2wbmp(). (cmb) + . Replaced gd resources with objects. (Mark Randall) + +- IMAP: + . Fixed bug #64076 (imap_sort() does not return FALSE on failure). (cmb) + . Fixed bug #76618 (segfault on imap_reopen). (girgias) + . Fixed bug #80213 (imap_mail_compose() segfaults on certain $bodies). (cmb) + . Fixed bug #80215 (imap_mail_compose() may modify by-val parameters). (cmb) + . Fixed bug #80216 (imap_mail_compose() does not validate types/encodings). + (cmb) + . Fixed bug #80220 (imap_mail_compose() may leak memory). (cmb) + . Fixed bug #80223 (imap_mail_compose() leaks envelope on malformed bodies). + (cmb) + . Fixed bug #80226 (imap_sort() leaks sortpgm memory). (cmb) + . Fixed bug #80239 (imap_rfc822_write_address() leaks memory). (cmb) + . Fixed bug #80242 (imap_mail_compose() segfaults for multipart with rfc822). + (cmb) + . Fixed minor regression caused by fixing bug #80220. (cmb) + +- Iconv: + . Dropped support for iconv without proper errno setting. (cmb) + +- Intl: + . Removed deprecated INTL_IDNA_VARIANT_2003. (cmb) + +- JIT: + . Fixed bug #77857 (Wrong result if executed with JIT). (Laruence) + . Fixed bug #79255 (PHP cannot be compiled with enable JIT). + (Laruence, Dmitry) + . Fixed bug #79582 (Crash seen when opcache.jit=1235 and + opcache.jit_debug=2). (Laruence) + . Fixed bug #79743 (Fatal error when assigning to array property + with JIT enabled). (Laruence) + . Fixed bug #79864 (JIT segfault in Symfony OptionsResolver). (Dmitry) + . Fixed bug #79888 (Incorrect execution with JIT enabled). (Dmitry) + +- JSON: + . The JSON extension is now an integral part of PHP and cannot be disabled + as per RFC: https://wiki.php.net/rfc/always_enable_json (tandre) + +- LDAP: + . Fixed memory leaks. (ptomulik) + . Removed deprecated ldap_sort. (mcmic) + +- MBString: + . Fixed bug #76999 (mb_regex_set_options() return current options). (cmb) + . Removed the unused $is_hex parameter from mb_decode_numericentity(). (cmb) + +- MySQLi: + . Fixed bug #76809 (SSL settings aren't respected when persistent connections + are used). (fabiomsouto) + +- Mysqlnd: + . Fixed #60594 (mysqlnd exposes 160 lines of stats in phpinfo). (PeeHaa) + +- OCI8: + . Deprecated old OCI8 function aliases. (Jens de Nies) + . Modernized oci_register_taf_callback() callable argument parsing + implementation. (girgias) + . Removed obsolete no-op function oci_internal_debug(). (Jens de Nies) + +- ODBC: + . Fixed bug #22986 (odbc_connect() may reuse persistent connection). (cmb) + . Fixed bug #44618 (Fetching may rely on uninitialized data). (cmb) + +- Opcache: + . Fixed bug #76535 (Opcache does not replay compile-time warnings). (Nikita) + . Fixed bug #78654 (Incorrectly computed opcache checksum on files with + non-ascii characters). (mhagstrand) + . Fixed bug #79665 (ini_get() and opcache_get_configuration() inconsistency). + (cmb) + . Fixed bug #80030 (Optimizer segfault with isset on static property with + undef dynamic class name). (Nikita) + . Fixed bug #80175 (PHP8 RC1 - JIT Buffer not working). (cmb) + . Fixed bug #80184 (Complex expression in while / if statements resolves to + false incorrectly). (Nikita) + . Fixed bug #80255 (Opcache bug (bad condition result) in 8.0.0rc1). (Nikita) + . Fixed run-time binding of preloaded dynamically declared function. (Dmitry) + +- OpenSSL: + . Added Cryptographic Message Syntax (CMS) support. (Eliot Lear) + +- PCRE: + . Don't ignore invalid escape sequences. (sjon) + . Updated to PCRE2 10.35. (cmb) + +- PDO: + . Changed default PDO error mode to exceptions. (AllenJB) + . Fixed bug #77849 (Disable cloning of PDO handle/connection objects). + (camporter) + +- PDO_Firebird: + . Fixed bug #64937 (Firebird PDO preprocessing sql). (Simonov Denis) + +- PDO_OCI: + . Added support for setting and getting the oracle OCI 18c call timeout. + (camporter) + +- PDO_PGSQL: + . Bumped required libpq version to 9.1. (cmb) + +- PGSQL: + . Bumped required libpq version to 9.1. (cmb) + +- Phpdbg: + . Fixed bug #76596 (phpdbg support for display_errors=stderr). (kabel) + . Fixed bug #76801 (too many open files). (alekitto) + . Fixed bug #77800 (phpdbg segfaults on listing some conditional breakpoints). + (krakjoe) + . Fixed bug #77805 (phpdbg build fails when readline is shared). (krakjoe) + +- Reflection: + . Fixed bug #64592 (ReflectionClass::getMethods() returns methods out of + scope). (Nikita) + . Fixed bug #69180 (Reflection does not honor trait conflict resolution / + method aliasing). (Nikita) + . Fixed bug #74939 (Nested traits' aliased methods are lowercased). (Nikita) + . Fixed bug #77325 (ReflectionClassConstant::$class returns wrong class when + extending). (Nikita) + . Fixed bug #78697 (ReflectionClass::implementsInterface - inaccurate error + message with traits). (villfa) + . Fixed bug #80190 (ReflectionMethod::getReturnType() does not handle static + as part of union type). (Nikita) + . Fixed bug #80299 (ReflectionFunction->invokeArgs confused in arguments). + (Nikita) + . Fixed bug #80370 (getAttributes segfault on dynamic properties). (Benjamin + Eberlei) + . Implement #79628 (Add $filter parameter for ReflectionClass::getConstants + and ReflectionClass::getReflectionConstants) (carusogabriel) + . Implement ReflectionProperty::hasDefaultValue and + Reflection::getDefaultValue (beberlei) + +- SNMP: + . Fixed bug #70461 (disable md5 code when it is not supported in net-snmp). + (Alexander Bergmann, cmb) + +- SPL: + . Fixed bug #65006 (spl_autoload_register fails with multiple callables using + self, same method). (Nikita) + . Fixed bug #65387 (Circular references in SPL iterators are not garbage + collected). (Nikita) + . Fixed bug #71236 (Second call of spl_autoload_register() does nothing if it + has no arguments). (Nikita) + . Fixed bug #79987 (Memory leak in SplFileInfo because of missing + zend_restore_error_handling()). (Dmitry) + . SplFixedArray is now IteratorAggregate rather than Iterator. (alexdowad) + +- SQLite3: + . Added SQLite3::setAuthorizer() and respective class constants. (bohwaz) + +- Session: + . Fixed bug #73529 (session_decode() silently fails on wrong input). (cmb) + . Fixed bug #78624 (session_gc return value for user defined session + handlers). (bshaffer) + +- Shmop: + . Converted shmop resources to objects. (cmb) + +- SimpleXML: + . Fixed bug #63575 (Root elements are not properly cloned). (cmb) + . Fixed bug #75245 (Don't set content of elements with only whitespaces). + (eriklundin) + +- Sodium: + . Fixed bug #77646 (sign_detached() strings not terminated). (Frank) + +- Standard: + . Don't force rebuild of symbol table, when populating $http_response_header + variable by the HTTP stream wrapper. (Dmitry) + . Fixed bug #47983 (mixed LF and CRLF line endings in mail()). (cmb) + . Fixed bug #64060 (lstat_stat_variation7.phpt fails on certain file systems). + (M. Voelker, cmb) + . Fixed bug #75902 (str_replace should warn when misused with nested arrays). + (Nikita) + . Fixed bug #76859 (stream_get_line skips data if used with data-generating + filter). (kkopachev) + . Fixed bug #77204 (getimagesize(): Read error! should mention file path). + (peter279k) + . Fixed bug #78385 (parse_url() does not include 'query' when question mark + is the last char). (Islam Israfilov) + . Fixed bug #79868 (Sorting with array_unique gives unwanted result). (Nikita) + . Fixed bug #80256 (file_get_contents strip first line with chunked encoding + redirect). (Nikita) + . Fixed bug #80266 (parse_url silently drops port number 0). (cmb, Nikita) + . Fixed bug #80290 (Double free when ASSERT_CALLBACK is used with a dynamic + message). (Nikita) + . Implemented FR #78638 (__PHP_Incomplete_Class should be final). (Laruence) + . Made quoting of cmd execution functions consistent. (cmb) + +- Tidy: + . Removed the unused $use_include_path parameter from tidy_repair_string(). + (cmb) + +- Tokenizer: + . Fixed bug #80328 (PhpToken::getAll() confusing name). (Nikita) + +- XML: + . Fixed bug #76874 (xml_parser_free() should never leak memory). (Nikita) + +- XMLWriter: + . Changed functions to accept/return XMLWriter objects instead of resources. + (cmb) + . Implemented FR #79344 (xmlwriter_write_attribute_ns: $prefix should be + nullable). (cmb) + . Removed return types from XMLWriter stubs. (cmb) + +- Zip: + . Add "flags" options to ZipArchive::addGlob and addPattern methods + keeping previous behavior having FL_OVERWRITE by default. (Remi) + . Add ZipArchive::EM_UNKNOWN and ZipArchive::EM_TRAD_PKWARE constants. (Remi) + . Add ZipArchive::isCompressionMethodSupported() and + ZipArchive::isEncryptionMethodSupported() method (libzip 1.7.0). (Remi) + . Add ZipArchive::replaceFile() method. (Remi) + . Add ZipArchive::setCancelCallback method (since libzip 1.6.0). (Remi) + . Add ZipArchive::setMtimeName and ZipArchive::setMtimeIndex methods. (Remi) + . Add ZipArchive::setProgressCallback method (since libzip 1.3.0). (Remi) + . Add lastId property to ZipArchive. (Remi) + . Add optional "flags" parameter to ZipArchive::addEmptyDir, addFile and + addFromString methods. (Remi) + . Fixed bug #50678 (files extracted by ZipArchive class lost their + original modified time). (Remi) + . Fixed bug #72374 (remove_path strips first char of filename). (tyage, Remi) + . Implemented FR #77960 (add compression / encryption options for + ZipArchive::addGlob and ZipArchive::addPattern). (Remi) + . ZipArchive::status and ZipArchive::statusSys properties and + ZipArchive::getStatusString() method stay valid after the archive + is closed. (Remi) + +- Zlib: + . Fixed bug #71417 (fread() does not report zlib.inflate errors). (cmb) + . Fixed bug #78792 (zlib.output_compression disabled by Content-Type: image/). + (cmb) diff --git a/data/releases/8.0/8.0.0/release.json b/data/releases/8.0/8.0.0/release.json new file mode 100644 index 0000000000..ccc696e942 --- /dev/null +++ b/data/releases/8.0/8.0.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.0", + "date": "26 Nov 2020", + "tags": [], + "source": [ + { + "filename": "php-8.0.0.tar.gz", + "name": "PHP 8.0.0 (tar.gz)", + "sha256": "3ed7b48d64357d3e8fa9e828dbe7416228f84105b8290c2f9779cd66be31ea71" + }, + { + "filename": "php-8.0.0.tar.bz2", + "name": "PHP 8.0.0 (tar.bz2)", + "sha256": "5e832dc37eabf444410b4ea6fb3d66b72e44e7407a3b49caa5746edcf71b9d09" + }, + { + "filename": "php-8.0.0.tar.xz", + "name": "PHP 8.0.0 (tar.xz)", + "sha256": "b5278b3eef584f0c075d15666da4e952fa3859ee509d6b0cc2ed13df13f65ebb" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.1/announcement.html b/data/releases/8.0/8.0.1/announcement.html new file mode 100644 index 0000000000..a456e3dfbd --- /dev/null +++ b/data/releases/8.0/8.0.1/announcement.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/8.0.1/changes.txt b/data/releases/8.0/8.0.1/changes.txt new file mode 100644 index 0000000000..e6b3671a14 --- /dev/null +++ b/data/releases/8.0/8.0.1/changes.txt @@ -0,0 +1,98 @@ +- Core: + . Fixed bug #80345 (PHPIZE configuration has outdated PHP_RELEASE_VERSION). + (cmb) + . Fixed bug #72964 (White space not unfolded for CC/Bcc headers). (cmb) + . Fixed bug #80391 (Iterable not covariant to mixed). (Nikita) + . Fixed bug #80393 (Build of PHP extension fails due to configuration gap + with libtool). (kir dot morozov at gmail dot com) + . Fixed bug #77069 (stream filter loses final block of data). (cmb) + +- Fileinfo: + . Fixed bug #77961 (finfo_open crafted magic parsing SIGABRT). (cmb) + +- FPM: + . Fixed bug #69625 (FPM returns 200 status on request without + SCRIPT_FILENAME env). (Jakub Zelenka) + +- IMAP + . Fixed bug #80438 (imap_msgno() incorrectly warns and return false on valid UIDs in PHP 8.0.0). (girgias) + . Fix a regression with valid UIDs in imap_savebody() (girgias) + . Make warnings for invalid message numbers/UIDs between functions consistent (girgias) + +- Intl: + . Fixed bug #80425 (MessageFormatAdapter::getArgTypeList redefined). (Nikita) + +- OCI8 + . Create Windows DLLs for Oracle Client 19c. (cmb) + +- Opcache: + . Fixed bug #80404 (Incorrect range inference result when division results + in float). (Nikita) + . Fixed bug #80377 (Opcache misses executor_globals). (Nikita) + . Fixed bug #80433 (Unable to disable the use of the AVX command when using + JIT). (Nikita) + . Fixed bug #80447 (Strange out of memory error when running with JIT). + (Dmitry) + . Fixed bug #80480 (Segmentation fault with JIT enabled). (Dmitry) + . Fixed bug #80506 (Immediate SIGSEGV upon ini_set("opcache.jit_debug", 1)). + (Dmitry) + +- OpenSSL: + . Fixed bug #80368 (OpenSSL extension fails to build against LibreSSL due to + lack of OCB support). (Nikita) + +- PDO MySQL: + . Fixed bug #80458 (PDOStatement::fetchAll() throws for upsert queries). + (Kamil Tekiela) + . Fixed bug #63185 (nextRowset() ignores MySQL errors with native prepared + statements). (Nikita) + . Fixed bug #78152 (PDO::exec() - Bad error handling with multiple commands). + (Nikita) + . Fixed bug #66878 (Multiple rowsets not returned unless PDO statement object + is unset()). (Nikita) + . Fixed bug #70066 (Unexpected "Cannot execute queries while other unbuffered + queries"). (Nikita) + . Fixed bug #71145 (Multiple statements in init command triggers unbuffered + query error). (Nikita) + . Fixed bug #76815 (PDOStatement cannot be GCed/closeCursor-ed when a + PROCEDURE resultset SIGNAL). (Nikita) + . Fixed bug #79872 (Can't execute query with pending result sets). (Nikita) + . Fixed bug #79131 (PDO does not throw an exception when parameter values are + missing). (Nikita) + . Fixed bug #72368 (PdoStatement->execute() fails but does not throw an + exception). (Nikita) + . Fixed bug #62889 (LOAD DATA INFILE broken). (Nikita) + . Fixed bug #67004 (Executing PDOStatement::fetch() more than once prevents + releasing resultset). (Nikita) + . Fixed bug #79132 (PDO re-uses parameter values from earlier calls to + execute()). (Nikita) + +- Phar: + . Fixed bug #73809 (Phar Zip parse crash - mmap fail). (cmb) + . Fixed bug #75102 (`PharData` says invalid checksum for valid tar). (cmb) + . Fixed bug #77322 (PharData::addEmptyDir('/') Possible integer overflow). + (cmb) + +- Phpdbg: + . Fixed bug #76813 (Access violation near NULL on source operand). (cmb) + +- SPL: + . Fixed #62004 (SplFileObject: fgets after seek returns wrong line). (cmb) + +- Standard: + . Fixed bug #77423 (FILTER_VALIDATE_URL accepts URLs with invalid userinfo). + (CVE-2020-7071) (cmb) + . Fixed bug #80366 (Return Value of zend_fstat() not Checked). (sagpant, cmb) + +- Tidy: + . Fixed bug #77594 (ob_tidyhandler is never reset). (cmb) + +- Tokenizer: + . Fixed bug #80462 (Nullsafe operator tokenize with TOKEN_PARSE flag fails). + (Nikita) + +- XML: + . XmlParser opaque object renamed to XMLParser for consistency with other XML objects. (girgias) + +- Zlib: + . Fixed #48725 (Support for flushing in zlib stream). (cmb) diff --git a/data/releases/8.0/8.0.1/release.json b/data/releases/8.0/8.0.1/release.json new file mode 100644 index 0000000000..d43eccb66d --- /dev/null +++ b/data/releases/8.0/8.0.1/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.1", + "date": "07 Jan 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.1.tar.gz", + "name": "PHP 8.0.1 (tar.gz)", + "sha256": "f1fee0429aa2cce6bc5df5d7e65386e266b0aab8a5fad7882d10eb833d2f5376" + }, + { + "filename": "php-8.0.1.tar.bz2", + "name": "PHP 8.0.1 (tar.bz2)", + "sha256": "c44e76af40d133de64564f9caf5daec52bbe84c1ccb4e4500a62233d614ebdee" + }, + { + "filename": "php-8.0.1.tar.xz", + "name": "PHP 8.0.1 (tar.xz)", + "sha256": "208b3330af881b44a6a8c6858d569c72db78dab97810332978cc65206b0ec2dc" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.10/announcement.html b/data/releases/8.0/8.0.10/announcement.html new file mode 100644 index 0000000000..c881bef792 --- /dev/null +++ b/data/releases/8.0/8.0.10/announcement.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/8.0.10/changes.txt b/data/releases/8.0/8.0.10/changes.txt new file mode 100644 index 0000000000..9901dbb33f --- /dev/null +++ b/data/releases/8.0/8.0.10/changes.txt @@ -0,0 +1,61 @@ +- Core: + . Fixed bug #72595 (php_output_handler_append illegal write access). (cmb) + . Fixed bug #66719 (Weird behaviour when using get_called_class() with + call_user_func()). (Nikita) + . Fixed bug #81305 (Built-in Webserver Drops Requests With "Upgrade" Header). + (cmb) + +- BCMath: + . Fixed bug #78238 (BCMath returns "-0"). (cmb) + +- CGI: + . Fixed bug #80849 (HTTP Status header truncation). (cmb) + +- Date: + . Fixed bug #64975 (Error parsing when AM/PM not at the end). (Derick) + . Fixed bug #78984 (DateTimeZone accepting invalid UTC timezones). (Derick) + . Fixed bug #79580 (date_create_from_format misses leap year). (Derick) + . Fixed bug #80409 (DateTime::modify() loses time with 'weekday' parameter). + (Derick) + +- GD: + . Fixed bug #51498 (imagefilledellipse does not work for large circles). (cmb) + +- MySQLi: + . Fixed bug #74544 (Integer overflow in mysqli_real_escape_string()). (cmb, + johannes) + +- Opcache: + . Fixed bug #81225 (Wrong result with pow operator with JIT enabled). + (Dmitry) + . Fixed bug #81249 (Intermittent property assignment failure with JIT + enabled). (Dmitry) + . Fixed bug #81206 (Multiple PHP processes crash with JIT enabled). (cmb, + Nikita) + . Fixed bug #81272 (Segfault in var[] after array_slice with JIT). (Nikita) + . Fixed Bug #81255 (Memory leak in PHPUnit with functional JIT). (Dmitry) + . Fixed Bug #80959 (infinite loop in building cfg during JIT compilation) + (Nikita, Dmitry) + . Fixed bug #81226 (Integer overflow behavior is different with JIT + enabled). (Dmitry) + +- OpenSSL: + . Fixed bug #81327 (Error build openssl extension on php 7.4.22). (cmb) + +- PDO_ODBC: + . Fixed bug #81252 (PDO_ODBC doesn't account for SQL_NO_TOTAL). (cmb) + +- Shmop: + . Fixed bug #81283 (shmop can't read beyond 2147483647 bytes). (cmb, Nikita) + +- SimpleXML: + . Fixed bug #81325 (Segfault in zif_simplexml_import_dom). (remi) + +- Standard: + . Fixed bug #72146 (Integer overflow on substr_replace). (cmb) + . Fixed bug #81265 (getimagesize returns 0 for 256px ICO images). + (George Dietrich) + . Fixed bug #74960 (Heap buffer overflow via str_repeat). (cmb, Dmitry) + +- Streams: + . Fixed bug #81294 (Segfault when removing a filter). (cmb) diff --git a/data/releases/8.0/8.0.10/release.json b/data/releases/8.0/8.0.10/release.json new file mode 100644 index 0000000000..56664d6904 --- /dev/null +++ b/data/releases/8.0/8.0.10/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.10", + "date": "26 Aug 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.10.tar.gz", + "name": "PHP 8.0.10 (tar.gz)", + "sha256": "4612dca9afe8148801648839175ab588097ace66658c6859e9f283ecdeaf84b3" + }, + { + "filename": "php-8.0.10.tar.bz2", + "name": "PHP 8.0.10 (tar.bz2)", + "sha256": "c94547271410900845b084ec2bcb3466af363eeca92cb24bd611dcbdc26f1587" + }, + { + "filename": "php-8.0.10.tar.xz", + "name": "PHP 8.0.10 (tar.xz)", + "sha256": "66dc4d1bc86d9c1bc255b51b79d337ed1a7a035cf71230daabbf9a4ca35795eb" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.11/announcement.html b/data/releases/8.0/8.0.11/announcement.html new file mode 100644 index 0000000000..30fcae43ac --- /dev/null +++ b/data/releases/8.0/8.0.11/announcement.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/8.0.11/changes.txt b/data/releases/8.0/8.0.11/changes.txt new file mode 100644 index 0000000000..c57d44f178 --- /dev/null +++ b/data/releases/8.0/8.0.11/changes.txt @@ -0,0 +1,31 @@ +- Core: + . Fixed bug #81302 (Stream position after stream filter removed). (cmb) + . Fixed bug #81346 (Non-seekable streams don't update position after write). + (cmb) + . Fixed bug #73122 (Integer Overflow when concatenating strings). (cmb) + +-GD: + . Fixed bug #53580 (During resize gdImageCopyResampled cause colors change). + (cmb) + +- Opcache: + . Fixed bug #81353 (segfault with preloading and statically bound closure). + (Nikita) + +- Shmop: + . Fixed bug #81407 (shmop_open won't attach and causes php to crash). (cmb) + +- Standard: + . Fixed bug #71542 (disk_total_space does not work with relative paths). (cmb) + . Fixed bug #81400 (Unterminated string in dns_get_record() results). (cmb) + +- SysVMsg: + . Fixed bug #78819 (Heap Overflow in msg_send). (cmb) + +- XML: + . Fixed bug #81351 (xml_parse may fail, but has no error code). (cmb, Nikita) + +- Zip: + . Fixed bug #80833 (ZipArchive::getStream doesn't use setPassword). (Remi) + . Fixed bug #81420 (ZipArchive::extractTo extracts outside of destination). + (CVE-2021-21706) (cmb) diff --git a/data/releases/8.0/8.0.11/release.json b/data/releases/8.0/8.0.11/release.json new file mode 100644 index 0000000000..bd216af8f3 --- /dev/null +++ b/data/releases/8.0/8.0.11/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.11", + "date": "23 Sep 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.11.tar.gz", + "name": "PHP 8.0.11 (tar.gz)", + "sha256": "c6a461f57b4bcb46cd4dec443253b1e2e8e981466f1280093322b7864afe8be7" + }, + { + "filename": "php-8.0.11.tar.bz2", + "name": "PHP 8.0.11 (tar.bz2)", + "sha256": "70ed874285e4010c1e2e8937bfb56b13b9ed1b3789dcaf274b793b00c1f4403a" + }, + { + "filename": "php-8.0.11.tar.xz", + "name": "PHP 8.0.11 (tar.xz)", + "sha256": "e3e5f764ae57b31eb65244a45512f0b22d7bef05f2052b23989c053901552e16" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.12/announcement.html b/data/releases/8.0/8.0.12/announcement.html new file mode 100644 index 0000000000..84f6754127 --- /dev/null +++ b/data/releases/8.0/8.0.12/announcement.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/8.0.12/changes.txt b/data/releases/8.0/8.0.12/changes.txt new file mode 100644 index 0000000000..5cc3b2b86b --- /dev/null +++ b/data/releases/8.0/8.0.12/changes.txt @@ -0,0 +1,54 @@ +- CLI: + . Fixed bug #81496 (Server logs incorrect request method). (lauri) + +- Core: + . Fixed bug #81435 (Observer current_observed_frame may point to an old + (overwritten) frame). (Bob) + . Fixed bug #81380 (Observer may not be initialized properly). (krakjoe) + +- DOM: + . Fixed bug #81433 (DOMElement::setIdAttribute() called twice may remove ID). + (Viktor Volkov) + +- FFI: + . Fixed bug #79576 ("TYPE *" shows unhelpful message when type is not + defined). (Dmitry) + +- Fileinfo: + . Fixed bug #78987 (High memory usage during encoding detection). (Anatol) + +- Filter: + . Fixed bug #61700 (FILTER_FLAG_IPV6/FILTER_FLAG_NO_PRIV|RES_RANGE failing). + (cmb, Nikita) + +- FPM: + . Fixed bug #81026 (PHP-FPM oob R/W in root process leading to privilege + escalation) (CVE-2021-21703). (Jakub Zelenka) + +- Opcache: + . Fixed bug #81472 (Cannot support large linux major/minor device number when + read /proc/self/maps). (Lin Yang) + +- Reflection: + . ReflectionAttribute is no longer final. (sasezaki) + +- SPL: + . Fixed bug #80663 (Recursive SplFixedArray::setSize() may cause double-free). + (cmb, Nikita, Tyson Andre) + . Fixed bug #81477 (LimitIterator + SplFileObject regression in 8.0.1). (cmb) + +- Standard: + . Fixed bug #69751 (Change Error message of sprintf/printf for missing/typo + position specifier). (Aliaksandr Bystry) + +- Streams: + . Fixed bug #81475 (stream_isatty emits warning with attached stream wrapper). + (cmb) + +- XML: + . Fixed bug #70962 (XML_OPTION_SKIP_WHITE strips embedded whitespace). + (Aliaksandr Bystry, cmb) + +- Zip: + . Fixed bug #81490 (ZipArchive::extractTo() may leak memory). (cmb, Remi) + . Fixed bug #77978 (Dirname ending in colon unzips to wrong dir). (cmb) diff --git a/data/releases/8.0/8.0.12/release.json b/data/releases/8.0/8.0.12/release.json new file mode 100644 index 0000000000..78f7f35707 --- /dev/null +++ b/data/releases/8.0/8.0.12/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.12", + "date": "21 Oct 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.12.tar.gz", + "name": "PHP 8.0.12 (tar.gz)", + "sha256": "a5b78f04a89d3b401465febf449c7ea9de48681f92803dd8dc2bf922812d572b" + }, + { + "filename": "php-8.0.12.tar.bz2", + "name": "PHP 8.0.12 (tar.bz2)", + "sha256": "b4886db1df322dc8fb128d8b34ae7e94f6fc682ecb29ff4f5a591d4de9feadbf" + }, + { + "filename": "php-8.0.12.tar.xz", + "name": "PHP 8.0.12 (tar.xz)", + "sha256": "a501017b3b0fd3023223ea25d98e87369b782f8a82310c4033d7ea6a989fea0a" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.13/announcement.html b/data/releases/8.0/8.0.13/announcement.html new file mode 100644 index 0000000000..6286951c1e --- /dev/null +++ b/data/releases/8.0/8.0.13/announcement.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/8.0.13/changes.txt b/data/releases/8.0/8.0.13/changes.txt new file mode 100644 index 0000000000..01a41455f3 --- /dev/null +++ b/data/releases/8.0/8.0.13/changes.txt @@ -0,0 +1,29 @@ +- Core: + . Fixed bug #81518 (Header injection via default_mimetype / default_charset). + (cmb) + +- Date: + . Fixed bug #81500 (Interval serialization regression since 7.3.14 / 7.4.2). + (cmb) + +- DBA: + . Fixed bug #81588 (TokyoCabinet driver leaks memory). (girgias) + +- MBString: + . Fixed bug #76167 (mbstring may use pointer from some previous request). + (cmb, cataphract) + +- Opcache: + . Fixed bug #81512 (Unexpected behavior with arrays and JIT). (Dmitry) + . Fixed bug #81652 (The value of error_reporting() gets overridden). (Nikita) + +- PCRE: + . Fixed bug #81424 (PCRE2 10.35 JIT performance regression). (cmb) + +- XML: + . Fixed bug #79971 (special character is breaking the path in xml function). + (CVE-2021-21707) (cmb) + +- XMLReader: + . Fixed bug #81521 (XMLReader::getParserProperty may throw with a valid + property). (Nikita) diff --git a/data/releases/8.0/8.0.13/release.json b/data/releases/8.0/8.0.13/release.json new file mode 100644 index 0000000000..57203a1b4e --- /dev/null +++ b/data/releases/8.0/8.0.13/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.13", + "date": "18 Nov 2021", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.13.tar.gz", + "name": "PHP 8.0.13 (tar.gz)", + "sha256": "b4c2d27c954e1b0d84fd4bfef4d252e154ba479e7db11abd89358f2164ee7cc8" + }, + { + "filename": "php-8.0.13.tar.bz2", + "name": "PHP 8.0.13 (tar.bz2)", + "sha256": "c2419d7ba4395f44747043f4e6f5b47fa08125705fb9f88377e453068a815836" + }, + { + "filename": "php-8.0.13.tar.xz", + "name": "PHP 8.0.13 (tar.xz)", + "sha256": "cd976805ec2e9198417651027dfe16854ba2c2c388151ab9d4d268513d52ed52" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.14/announcement.html b/data/releases/8.0/8.0.14/announcement.html new file mode 100644 index 0000000000..83932741d4 --- /dev/null +++ b/data/releases/8.0/8.0.14/announcement.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/8.0.14/changes.txt b/data/releases/8.0/8.0.14/changes.txt new file mode 100644 index 0000000000..045db837a1 --- /dev/null +++ b/data/releases/8.0/8.0.14/changes.txt @@ -0,0 +1,36 @@ +- Core: + . Fixed bug #81582 (Stringable not implicitly declared if __toString() came + from a trait). (Nikita) + . Fixed bug #81591 (Fatal Error not properly logged in particular cases). + (Nikita) + . Fixed bug #81626 (Error on use static:: in __сallStatic() wrapped to + Closure::fromCallable()). (Nikita) + . Fixed bug #81631 (::class with dynamic class name may yield wrong line + number). (Nikita) + +- FPM: + . Fixed bug #81513 (Future possibility for heap overflow in FPM zlog). + (Jakub Zelenka) + +- GD: + . Fixed bug #71316 (libpng warning from imagecreatefromstring). (cmb) + +- IMAP: + . Fixed bug #81649 (imap_(un)delete accept sequences, not single numbers). + (cmb) + +- OpenSSL: + . Fixed bug #75725 (./configure: detecting RAND_egd). (Dilyan Palauzov) + +- PCRE: + . Fixed bug #74604 (Out of bounds in php_pcre_replace_impl). (cmb, Dmitry) + +- SPL: + . Fixed bug #81587 (MultipleIterator Segmentation fault w/ SimpleXMLElement + attached). (Nikita) + +- Standard: + . Fixed bug #81618 (dns_get_record fails on FreeBSD for missing type). + (fsbruva) + . Fixed bug #81659 (stream_get_contents() may unnecessarily overallocate). + (cmb) diff --git a/data/releases/8.0/8.0.14/release.json b/data/releases/8.0/8.0.14/release.json new file mode 100644 index 0000000000..d348e89977 --- /dev/null +++ b/data/releases/8.0/8.0.14/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.14", + "date": "16 Dec 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.14.tar.gz", + "name": "PHP 8.0.14 (tar.gz)", + "sha256": "e67ebd8c4c77247ad1fa88829e5b95d51a19edf3d87814434de261e20a63ea20" + }, + { + "filename": "php-8.0.14.tar.bz2", + "name": "PHP 8.0.14 (tar.bz2)", + "sha256": "bb381fdf4817ad7c24c23ea7f77cad68dceb86eb3ac1a37acedadf8ad0a0cd4b" + }, + { + "filename": "php-8.0.14.tar.xz", + "name": "PHP 8.0.14 (tar.xz)", + "sha256": "fbde8247ac200e4de73449d9fefc8b495d323b5be9c10cdb645fb431c91156e3" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.15/announcement.html b/data/releases/8.0/8.0.15/announcement.html new file mode 100644 index 0000000000..981d1828aa --- /dev/null +++ b/data/releases/8.0/8.0.15/announcement.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/8.0.15/changes.txt b/data/releases/8.0/8.0.15/changes.txt new file mode 100644 index 0000000000..ca53a5da78 --- /dev/null +++ b/data/releases/8.0/8.0.15/changes.txt @@ -0,0 +1,33 @@ +- Core: + . Fixed bug #81656 (GCC-11 silently ignores -R). (Michael Wallner) + . Fixed bug #81585 (cached_chunks are not counted to real_size on shutdown). + (cmb) + +- Filter: + . Fixed FILTER_FLAG_NO_RES_RANGE flag. (Yifan Tong) + +- Hash: + . Fixed bug GH-7759 (Incorrect return types for hash() and hash_hmac()). + (cmb) + . Fixed bug GH-7826 (Inconsistent argument name in hash_hmac_file and + hash_file). (cmb) + +- MySQLnd: + . Fixed bug where large bigints may be truncated. (Nathan Freeman, cmb) + +- OCI8: + . Fixed bug GH-7765 (php_oci_cleanup_global_handles segfaults at second + call). (cmb) + +- OPcache: + . Fixed bug #81679 (Tracing JIT crashes on reattaching). (cmb) + +- PDO_PGSQL: + . Fixed error message allocation of PDO PgSQL. (SATO Kentaro) + +- Sockets: + . Avoid void* arithmetic in sockets/multicast.c on NetBSD. (David Carlier) + +- Spl: + . Fixed bug #75917 (SplFileObject::seek broken with CSV flags). (Aliaksandr + Bystry) diff --git a/data/releases/8.0/8.0.15/release.json b/data/releases/8.0/8.0.15/release.json new file mode 100644 index 0000000000..a518871d23 --- /dev/null +++ b/data/releases/8.0/8.0.15/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.15", + "date": "20 Jan 2022", + "tags": [], + "source": [ + { + "filename": "php-8.0.15.tar.gz", + "name": "PHP 8.0.15 (tar.gz)", + "sha256": "47f0be6188b05390bb457eb1968ea19463acada79650afc35ec763348d5c2370" + }, + { + "filename": "php-8.0.15.tar.bz2", + "name": "PHP 8.0.15 (tar.bz2)", + "sha256": "881171c90aba746d28df768f3d99fa3261999e506415be4c7352078a64fe59dc" + }, + { + "filename": "php-8.0.15.tar.xz", + "name": "PHP 8.0.15 (tar.xz)", + "sha256": "5f33544061d37d805a2a9ce791f081ef08a7155bd7ba2362e69bba2d06b0f8b2" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.16/announcement.html b/data/releases/8.0/8.0.16/announcement.html new file mode 100644 index 0000000000..ff27caa790 --- /dev/null +++ b/data/releases/8.0/8.0.16/announcement.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/8.0.16/changes.txt b/data/releases/8.0/8.0.16/changes.txt new file mode 100644 index 0000000000..c80295ddc1 --- /dev/null +++ b/data/releases/8.0/8.0.16/changes.txt @@ -0,0 +1,29 @@ +- Core: + . Fixed bug #81430 (Attribute instantiation leaves dangling pointer). + (beberlei) + . Fixed bug GH-7896 (Environment vars may be mangled on Windows). (cmb) + +- FFI: + . Fixed bug GH-7867 (FFI::cast() from pointer to array is broken). (cmb, + dmitry) + +- Filter: + . Fix #81708: UAF due to php_filter_float() failing for ints. + (CVE-2021-21708) (stas) + +- FPM: + . Fixed memory leak on invalid port. (David Carlier) + +- MBString: + . Fixed bug GH-7902 (mb_send_mail may delimit headers with LF only). (cmb) + +- MySQLnd: + . Fixed bug GH-7972 (MariaDB version prefix 5.5.5- is not stripped). (Kamil Tekiela) + +- Sockets: + . Fixed ext/sockets build on Haiku. (David Carlier) + . Fixed bug GH-7978 (sockets extension compilation errors). (David Carlier) + +- Standard: + . Fixed bug GH-7875 (mails are sent even if failure to log throws exception). + (cmb) diff --git a/data/releases/8.0/8.0.16/release.json b/data/releases/8.0/8.0.16/release.json new file mode 100644 index 0000000000..a988089ac2 --- /dev/null +++ b/data/releases/8.0/8.0.16/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.16", + "date": "17 Feb 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.16.tar.gz", + "name": "PHP 8.0.16 (tar.gz)", + "sha256": "ce0ea32ff9c5af18cfb70197b40caf55824400dc8d5b4258a783ec9168baa5b1" + }, + { + "filename": "php-8.0.16.tar.bz2", + "name": "PHP 8.0.16 (tar.bz2)", + "sha256": "f49f8181ee29463a0d23a0c65969e92d58fee8ac564df917cff58e48d65e1849" + }, + { + "filename": "php-8.0.16.tar.xz", + "name": "PHP 8.0.16 (tar.xz)", + "sha256": "f27a2f25259e8c51e42dfd74e24a546ee521438ad7d9f6c6e794aa91f38bab0a" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.17/announcement.html b/data/releases/8.0/8.0.17/announcement.html new file mode 100644 index 0000000000..c497857d80 --- /dev/null +++ b/data/releases/8.0/8.0.17/announcement.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/8.0.17/changes.txt b/data/releases/8.0/8.0.17/changes.txt new file mode 100644 index 0000000000..35134d318f --- /dev/null +++ b/data/releases/8.0/8.0.17/changes.txt @@ -0,0 +1,28 @@ +- Core: + . Fixed Haiku ZTS build. (David Carlier) + +- GD: + . Fixed libpng warning when loading interlaced images. (Brett) + +- FPM: + . Fixed bug #76109 (Unsafe access to fpm scoreboard). + (Till Backhaus, Jakub Zelenka) + +- Iconv: + . Fixed bug GH-7953 (ob_clean() only does not set Content-Encoding). (cmb) + . Fixed bug GH-7980 (Unexpected result for iconv_mime_decode). (cmb) + +- MySQLnd: + . Fixed bug GH-8058 (NULL pointer dereference in mysqlnd package). (Kamil Tekiela) + +- OPcache: + . Fixed bug GH-8074 (Wrong type inference of range() result). (cmb) + +- Reflection: + . Fixed bug GH-8080 (ReflectionClass::getConstants() depends on def. order). + (cmb) + . Fixed bug GH-8421 (Closures should accept attributes with + Attribute::TARGET_FUNCTION). (ollieread) + +- Zlib: + . Fixed bug GH-7953 (ob_clean() only does not set Content-Encoding). (cmb) diff --git a/data/releases/8.0/8.0.17/release.json b/data/releases/8.0/8.0.17/release.json new file mode 100644 index 0000000000..4baf63504d --- /dev/null +++ b/data/releases/8.0/8.0.17/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.17", + "date": "17 Mar 2022", + "tags": [], + "source": [ + { + "filename": "php-8.0.17.tar.gz", + "name": "PHP 8.0.17 (tar.gz)", + "sha256": "bdbd792901c156c4d1710c9d266732d3c17f6ff63850d6660b9d8d3411188424" + }, + { + "filename": "php-8.0.17.tar.bz2", + "name": "PHP 8.0.17 (tar.bz2)", + "sha256": "52811ee2dde71660ca32737a4ac696c24591eb22e846dd8e09ee77122660283f" + }, + { + "filename": "php-8.0.17.tar.xz", + "name": "PHP 8.0.17 (tar.xz)", + "sha256": "4e7d94bb3d144412cb8b2adeb599fb1c6c1d7b357b0d0d0478dc5ef53532ebc5" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.18/announcement.html b/data/releases/8.0/8.0.18/announcement.html new file mode 100644 index 0000000000..9e38c11833 --- /dev/null +++ b/data/releases/8.0/8.0.18/announcement.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/8.0.18/changes.txt b/data/releases/8.0/8.0.18/changes.txt new file mode 100644 index 0000000000..431f3667b7 --- /dev/null +++ b/data/releases/8.0/8.0.18/changes.txt @@ -0,0 +1,41 @@ +- Core: + . Fixed freeing of internal attribute arguments. (Bob) + . Fixed bug GH-8070 (memory leak of internal function attribute hash). + (Tim Düsterhus) + . Fixed bug GH-8160 (ZTS support on Alpine is broken). (Michael Voříšek) + . Fixed potential race condition during resource ID allocation. (ryancaicse) + +- Filter: + . Fixed signedness confusion in php_filter_validate_domain(). (cmb) + +- Hash: + . Fixed bug #81714 (segfault when serializing finalized HashContext). (cmb) + +- Intl: + . Fixed bug GH-8142 (Compilation error on cygwin). (David Carlier) + +- MBString: + . Fixed bug GH-8208 (mb_encode_mimeheader: $indent functionality broken). + (cmb) + +- MySQLi: + . Fixed bug GH-8068 (mysqli_fetch_object creates inaccessible properties). + (cmb) + +- Pcntl: + . Fixed bug GH-8142 (Compilation error on cygwin). (David Carlier) + +- PgSQL: + . Fixed result_type related stack corruption on LLP64 architectures. (cmb) + . Fixed bug GH-8253 (pg_insert() fails for references). (cmb) + +- Sockets: + . Fixed Solaris builds. (David Carlier) + . Fix undefined behavior in php_set_inet6_addr. (ilutov) + +- SPL: + . Fixed bug GH-8121 (SplFileObject - seek and key with csv file inconsistent). + (cmb) + +- Standard: + . Fixed bug GH-8048 (Force macOS to use statfs). (risner) diff --git a/data/releases/8.0/8.0.18/release.json b/data/releases/8.0/8.0.18/release.json new file mode 100644 index 0000000000..ef70b44575 --- /dev/null +++ b/data/releases/8.0/8.0.18/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.18", + "date": "14 Apr 2022", + "tags": [], + "source": [ + { + "filename": "php-8.0.18.tar.gz", + "name": "PHP 8.0.18 (tar.gz)", + "sha256": "cd980f5a2f422362f8c52d314ed25140c6f472877c5442c4f3304205f54e192a" + }, + { + "filename": "php-8.0.18.tar.bz2", + "name": "PHP 8.0.18 (tar.bz2)", + "sha256": "826ee34881a1c349678d4f7cc55ff9141fa1411344e4bb8f95d0f9223bceb55a" + }, + { + "filename": "php-8.0.18.tar.xz", + "name": "PHP 8.0.18 (tar.xz)", + "sha256": "db161652cacae4b31c347fbf2e17b80656473cb365f2bb3460c4552f5647e2e7" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.19/announcement.html b/data/releases/8.0/8.0.19/announcement.html new file mode 100644 index 0000000000..c9aaadccda --- /dev/null +++ b/data/releases/8.0/8.0.19/announcement.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/8.0.19/changes.txt b/data/releases/8.0/8.0.19/changes.txt new file mode 100644 index 0000000000..f7e739c8bf --- /dev/null +++ b/data/releases/8.0/8.0.19/changes.txt @@ -0,0 +1,41 @@ +- Core: + . Fixed bug GH-8289 (Exceptions thrown within a yielded from iterator are + not rethrown into the generator). (Bob) + +- Date: + . Fixed bug GH-7979 (DatePeriod iterator advances when checking if valid). + (Derick, Cody Mann) + +- FFI: + . Fixed bug GH-8433 (Assigning function pointers to structs in FFI leaks). + (Bob) + +- FPM: + . Fixed bug #76003 (FPM /status reports wrong number of active processe). + (Jakub Zelenka) + . Fixed bug #77023 (FPM cannot shutdown processes). (Jakub Zelenka) + . Fixed comment in kqueue remove callback log message. (David Carlier) + +- Iconv: + . Fixed bug GH-8218 (ob_end_clean does not reset Content-Encoding header). + (cmb) + +- Intl: + . Fixed bug GH-8364 (msgfmt_format $values may not support references). (cmb) + +- MySQLi: + . Fixed bug GH-8267 (MySQLi uses unsupported format specifier on Windows). + (cmb) + +- SPL: + . Fixed bug GH-8366 (ArrayIterator may leak when calling __construct()). + (cmb) + . Fixed bug GH-8273 (SplFileObject: key() returns wrong value). (Girgias) + +- Streams: + . Fixed php://temp does not preserve file-position when switched to temporary + file. (Bernd Holzmüller) + +- zlib: + . Fixed bug GH-8218 (ob_end_clean does not reset Content-Encoding header). + (cmb) diff --git a/data/releases/8.0/8.0.19/release.json b/data/releases/8.0/8.0.19/release.json new file mode 100644 index 0000000000..6c1522e4bc --- /dev/null +++ b/data/releases/8.0/8.0.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.19", + "date": "12 May 2022", + "tags": [], + "source": [ + { + "filename": "php-8.0.19.tar.gz", + "name": "PHP 8.0.19 (tar.gz)", + "sha256": "48e57634d350bcab4745d25d9d94ffa474649bf4f7e879fad163226c0d107bb5" + }, + { + "filename": "php-8.0.19.tar.bz2", + "name": "PHP 8.0.19 (tar.bz2)", + "sha256": "eba0e67fdaf6904b2e4b84e064be0a0d61b2cb64a23f81a0ca9b1a51bc3a8330" + }, + { + "filename": "php-8.0.19.tar.xz", + "name": "PHP 8.0.19 (tar.xz)", + "sha256": "ba62219c4b0486cbb2a04f0796749a46b0ee1f5a142ed454212b4e2460cb0fab" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.2/announcement.html b/data/releases/8.0/8.0.2/announcement.html new file mode 100644 index 0000000000..99378c7383 --- /dev/null +++ b/data/releases/8.0/8.0.2/announcement.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/8.0.2/changes.txt b/data/releases/8.0/8.0.2/changes.txt new file mode 100644 index 0000000000..663de15a6e --- /dev/null +++ b/data/releases/8.0/8.0.2/changes.txt @@ -0,0 +1,66 @@ +- Core: + . Fixed bug #80523 (bogus parse error on >4GB source code). (Nikita) + . Fixed bug #80384 (filter buffers entire read until file closed). (Adam + Seitz, cmb) + . Fixed bug #80596 (Invalid union type TypeError in anonymous classes). + (Daniil Gentili) + . Fixed bug #80617 (GCC throws warning about type narrowing in + ZEND_TYPE_INIT_CODE). (Nikita) + +- BCMath: + . Fixed bug #80545 (bcadd('a', 'a') doesn't throw an exception). + (Jens de Nies) + +- Curl: + . Fixed bug #80595 (Resetting POSTFIELDS to empty array breaks request). (cmb) + +- Date: + . Fixed bug #80376 (last day of the month causes runway cpu usage). (Derick) + +- DOM: + . Fixed bug #80537 (Wrong parameter type in DOMElement::removeAttributeNode + stub). (Nikita) + +- Filter: + . Fixed bug #80584 (0x and 0X are considered valid hex numbers by + filter_var()). (girgias) + +- GMP: + . Fixed bug #80560 (Strings containing only a base prefix return 0 object). + (girgias) + +- Intl: + . Fixed bug #80644 (Missing resource causes subsequent get() calls to fail). + (Nikita) + +- MySQLi: + . Fixed bug #67983 (mysqlnd with MYSQLI_OPT_INT_AND_FLOAT_NATIVE fails to + interpret bit columns). (Nikita) + . Fixed bug #64638 (Fetching resultsets from stored procedure with cursor + fails). (Nikita) + . Fixed bug #72862 (segfault using prepared statements on stored procedures + that use a cursor). (Nikita) + . Fixed bug #77935 (Crash in mysqlnd_fetch_stmt_row_cursor when calling an SP + with a cursor). (Nikita) + +- ODBC: + . Fixed bug #80592 (all floats are the same in ODBC parameters). (cmb) + +- Opcache: + . Fixed bug #80422 (php_opcache.dll crashes when using Apache 2.4 with JIT). + (Dmitry) + +- PDO_Firebird: + . Fixed bug #80521 (Parameters with underscores no longer recognized). (cmb, + Simonov Denis) + +- Phar: + . Fixed bug #76929 (zip-based phar does not respect phar.require_hash). + (david at bamsoftware, cmb) + . Fixed bug #77565 (Incorrect locator detection in ZIP-based phars). (cmb) + . Fixed bug #69279 (Compressed ZIP Phar extractTo() creates garbage files). + (cmb) + +- Phpdbg: + . Reverted fix for bug #76813 (Access violation near NULL on source operand). + (cmb) diff --git a/data/releases/8.0/8.0.2/release.json b/data/releases/8.0/8.0.2/release.json new file mode 100644 index 0000000000..abb327101f --- /dev/null +++ b/data/releases/8.0/8.0.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.2", + "date": "04 Feb 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.2.tar.gz", + "name": "PHP 8.0.2 (tar.gz)", + "sha256": "cc17a32f76beb5f405da39a548218b3b6736710884fcd761838098553df149da" + }, + { + "filename": "php-8.0.2.tar.bz2", + "name": "PHP 8.0.2 (tar.bz2)", + "sha256": "000fa89e3eae317c0b17ee048229cd68a38a3b0fef72c558681fd004057ba3e6" + }, + { + "filename": "php-8.0.2.tar.xz", + "name": "PHP 8.0.2 (tar.xz)", + "sha256": "84dd6e36f48c3a71ff5dceba375c1f6b34b71d4fa9e06b720780127176468ccc" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.20/announcement.html b/data/releases/8.0/8.0.20/announcement.html new file mode 100644 index 0000000000..103477e2b7 --- /dev/null +++ b/data/releases/8.0/8.0.20/announcement.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/8.0.20/changes.txt b/data/releases/8.0/8.0.20/changes.txt new file mode 100644 index 0000000000..a62950cd6c --- /dev/null +++ b/data/releases/8.0/8.0.20/changes.txt @@ -0,0 +1,43 @@ +- CLI: + . Fixed bug GH-8575 (CLI closes standard streams too early). (Levi Morrison) + +- Core: + . Fixed Haiku ZTS builds. (David Carlier) + +- Date: + . Fixed bug #72963 (Null-byte injection in CreateFromFormat and related + functions). (Derick) + . Fixed bug GH-8471 (Segmentation fault when converting immutable and mutable + DateTime instances created using reflection). (Derick) + +- FPM: + . Fixed ACL build check on MacOS. (David Carlier) + . Fixed bug #72185: php-fpm writes empty fcgi record causing nginx 502. + (Jakub Zelenka, loveharmful) + . Fixes use after free. (Heiko Weber). + +- Mysqlnd: + . Fixed bug #81719: mysqlnd/pdo password buffer overflow. (CVE-2022-31626) + (c dot fol at ambionics dot io) + +- OPcache: + . Fixed bug GH-8466 (ini_get() is optimized out when the option does not + exist). (Arnaud) + +- Pgsql: + . Fixed bug #81720: Uninitialized array in pg_query_params(). + (CVE-2022-31625) (cmb) + +- Pcntl: + . Fixed Haiku build. (David Carlier) + +- Soap: + . Fixed bug GH-8578 (Error on wrong parameter on SoapHeader constructor). + (robertnisipeanu) + . Fixed bug GH-8538 (SoapClient may strip parts of nmtokens). (cmb) + +- SPL: + . Fixed bug GH-8235 (iterator_count() may run indefinitely). (cmb) + +- Zip: + . Fixed type for index in ZipArchive::replaceFile. (Martin Rehberger) diff --git a/data/releases/8.0/8.0.20/release.json b/data/releases/8.0/8.0.20/release.json new file mode 100644 index 0000000000..3cc9ec7e87 --- /dev/null +++ b/data/releases/8.0/8.0.20/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.20", + "date": "09 Jun 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.20.tar.gz", + "name": "PHP 8.0.20 (tar.gz)", + "sha256": "7e21fd985966264194cde63503b57fd0f0170b32a39bd7af2384c1071b50f164" + }, + { + "filename": "php-8.0.20.tar.bz2", + "name": "PHP 8.0.20 (tar.bz2)", + "sha256": "cb7666bf67ed9f6c987d4836caf03d4b364537e6a75e56cd5c986760ecc2fdd8" + }, + { + "filename": "php-8.0.20.tar.xz", + "name": "PHP 8.0.20 (tar.xz)", + "sha256": "973fec765336ee01f47536a5db1c2eee98df9d34a41522b7b6c760159bf0a77b" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.21/announcement.html b/data/releases/8.0/8.0.21/announcement.html new file mode 100644 index 0000000000..22ae2fa38b --- /dev/null +++ b/data/releases/8.0/8.0.21/announcement.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/8.0.21/changes.txt b/data/releases/8.0/8.0.21/changes.txt new file mode 100644 index 0000000000..3ae55f36fd --- /dev/null +++ b/data/releases/8.0/8.0.21/changes.txt @@ -0,0 +1,42 @@ +- Core: + . Fixed potential use after free in php_binary_init(). (Heiko Weber) + +- CLI: + . Fixed GH-8827 (Intentionally closing std handles no longer possible). (cmb) + +- COM: + . Fixed bug GH-8778 (Integer arithmethic with large number variants fails). + (cmb) + +- Curl: + . Fixed CURLOPT_TLSAUTH_TYPE is not treated as a string option. (Pierrick) + +- Date: + . Fixed bug #74671 (DST timezone abbreviation has incorrect offset). (Derick) + . Fixed bug #77243 (Weekdays are calculated incorrectly for negative years). + (Derick) + . Fixed bug #78139 (timezone_open accepts invalid timezone string argument). + (Derick) + +- FPM: + . Fixed bug #67764 (fpm: syslog.ident don't work). (Jakub Zelenka) + +- MBString: + . Fixed bug GH-8685 (pcre not ready at mbstring startup). (Remi) + +- ODBC: + . Fixed handling of single-key connection strings. (Calvin Buckley) + +- OpenSSL: + . Fixed bug #50293 (Several openssl functions ignore the VCWD). + (Jakub Zelenka, cmb) + . Fixed bug #81713 (NULL byte injection in several OpenSSL functions working + with certificates). (Jakub Zelenka) + +- PDO_ODBC: + . Fixed errorInfo() result on successful PDOStatement->execute(). (Yurunsoft) + . Fixed handling of single-key connection strings. (Calvin Buckley) + +- Zip: + . Fixed bug GH-8781 (ZipArchive::close deletes zip file without updating stat + cache). (Remi) diff --git a/data/releases/8.0/8.0.21/release.json b/data/releases/8.0/8.0.21/release.json new file mode 100644 index 0000000000..0c9c4d1684 --- /dev/null +++ b/data/releases/8.0/8.0.21/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.21", + "date": "07 Jul 2022", + "tags": [], + "source": [ + { + "filename": "php-8.0.21.tar.gz", + "name": "PHP 8.0.21 (tar.gz)", + "sha256": "2f51f6e90e2e8efd3a20db08f0dd61d7f8d5a9362f8c7325f1ad28ccea5be0ac" + }, + { + "filename": "php-8.0.21.tar.bz2", + "name": "PHP 8.0.21 (tar.bz2)", + "sha256": "1cb7762d1ffecceaeebafb9f6e24132ca23fb1443cb5630d0fccf53f04cfa126" + }, + { + "filename": "php-8.0.21.tar.xz", + "name": "PHP 8.0.21 (tar.xz)", + "sha256": "e87a598f157e0cf0606e64382bb91c8b30c47d4a0fc96b2c17ad547a27869b3b" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.22/announcement.html b/data/releases/8.0/8.0.22/announcement.html new file mode 100644 index 0000000000..06c07bd98c --- /dev/null +++ b/data/releases/8.0/8.0.22/announcement.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/8.0.22/changes.txt b/data/releases/8.0/8.0.22/changes.txt new file mode 100644 index 0000000000..454ac7f424 --- /dev/null +++ b/data/releases/8.0/8.0.22/changes.txt @@ -0,0 +1,35 @@ +- CLI: + . Fixed potential overflow for the builtin server via the PHP_CLI_SERVER_WORKERS + environment variable. (yiyuaner) + +- Core: + . Fixed bug GH-8923 (error_log on Windows can hold the file write lock). (cmb) + . Fixed bug GH-8995 (WeakMap object reference offset causing TypeError). + (Tobias Bachert) + +- Date: + . Fixed bug #80047 (DatePeriod doesn't warn with custom DateTimeImmutable). + (Derick) + +- DBA: + . Fixed LMDB driver hanging when attempting to delete a non-existing key + (Girgias) + +- FPM: + . Fixed zlog message prepend, free on incorrect address. (Heiko Weber) + . Fixed possible double free on configuration loading failure. (Heiko Weber). + +- GD: + . Fixed bug GH-8848 (imagecopyresized() error refers to the wrong argument). + (cmb) + +- Intl: + . Fixed build for ICU 69.x and onwards. (David Carlier) + +- OPcache: + . Fixed bug GH-8847 (PHP hanging infinitly at 100% cpu when check php + syntaxe of a valid file). (Dmitry) + +- Standard: + . Fixed the crypt_sha256/512 api build with clang > 12. (David Carlier) + . Uses CCRandomGenerateBytes instead of arc4random_buf on macOs. (David Carlier). diff --git a/data/releases/8.0/8.0.22/release.json b/data/releases/8.0/8.0.22/release.json new file mode 100644 index 0000000000..e8cfadcd18 --- /dev/null +++ b/data/releases/8.0/8.0.22/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.22", + "date": "04 Aug 2022", + "tags": [], + "source": [ + { + "filename": "php-8.0.22.tar.gz", + "name": "PHP 8.0.22 (tar.gz)", + "sha256": "56fce7529a9798fd0895bca3539d2a65b9cac5d23ffbdf6338419c62ed083519" + }, + { + "filename": "php-8.0.22.tar.bz2", + "name": "PHP 8.0.22 (tar.bz2)", + "sha256": "e342918d3ecd422f10032df0ac3ffb0e17f568fad6cf8e232b6f7a6a1fdc3c9c" + }, + { + "filename": "php-8.0.22.tar.xz", + "name": "PHP 8.0.22 (tar.xz)", + "sha256": "130937c0fa3050cd33d6c415402f6ccbf0682ae83eb8d39c91164224ddfe57f1" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.23/announcement.html b/data/releases/8.0/8.0.23/announcement.html new file mode 100644 index 0000000000..712d37d11c --- /dev/null +++ b/data/releases/8.0/8.0.23/announcement.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/8.0.23/changes.txt b/data/releases/8.0/8.0.23/changes.txt new file mode 100644 index 0000000000..0333b93035 --- /dev/null +++ b/data/releases/8.0/8.0.23/changes.txt @@ -0,0 +1,34 @@ +- Core: + . Fixed incorrect double to long casting in latest clang. (zeriyoshi) + +- DBA: + . Fixed LMDB driver memory leak on DB creation failure (Girgias) + . Fixed bug GH-9155 (dba_open("non-existing", "c-", "flatfile") segfaults). + (cmb) + +- Intl: + . Fixed IntlDateFormatter::formatObject() parameter type. (Gert de Pagter) + +- OPcache: + . Fixed bug GH-9033 (Loading blacklist file can fail due to negative length). + (cmb) + +- OpenSSL: + . Fixed bug GH-9339 (OpenSSL oid_file path check warning contains + uninitialized path). (Jakub Zelenka) + +- PDO_SQLite: + . Fixed bug GH-9032 (SQLite3 authorizer crashes on NULL values). (cmb) + +- SQLite3: + . Fixed bug GH-9032 (SQLite3 authorizer crashes on NULL values). (cmb) + +- Standard: + . Fixed bug GH-9017 (php_stream_sock_open_from_socket could return NULL). + (Heiko Weber) + +- Streams: + . Fixed bug GH-8472 (The resource returned by stream_socket_accept may have + incorrect metadata). (Jakub Zelenka) + . Fixed bug GH-8409 (SSL handshake timeout leaves persistent connections + hanging). (Jakub Zelenka, Twosee) diff --git a/data/releases/8.0/8.0.23/release.json b/data/releases/8.0/8.0.23/release.json new file mode 100644 index 0000000000..d20a2fe7cf --- /dev/null +++ b/data/releases/8.0/8.0.23/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.23", + "date": "01 Sep 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.23.tar.gz", + "name": "PHP 8.0.23 (tar.gz)", + "sha256": "a2dd50e9c4a0328d921b6bc914e8b4e6572f94f09867318f88acca5ac4fa76c7" + }, + { + "filename": "php-8.0.23.tar.bz2", + "name": "PHP 8.0.23 (tar.bz2)", + "sha256": "1412db46800a45ced377c2892ec6261b3c412f13dc133bfc998cfb2f147b40cf" + }, + { + "filename": "php-8.0.23.tar.xz", + "name": "PHP 8.0.23 (tar.xz)", + "sha256": "65e474b6bd8cfc9d4a8a56268a755e2f9d3e7499e1687e6401a9f2b047600f87" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.24/announcement.html b/data/releases/8.0/8.0.24/announcement.html new file mode 100644 index 0000000000..12e0ebbbca --- /dev/null +++ b/data/releases/8.0/8.0.24/announcement.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/8.0.24/changes.txt b/data/releases/8.0/8.0.24/changes.txt new file mode 100644 index 0000000000..5f5ff2db10 --- /dev/null +++ b/data/releases/8.0/8.0.24/changes.txt @@ -0,0 +1,45 @@ +- Core: + . Fixed bug GH-9323 (Crash in ZEND_RETURN/GC/zend_call_function) + (Tim Starling) + . Fixed bug GH-9361 (Segmentation fault on script exit #9379). (cmb, + Christian Schneider) + . Fixed bug GH-9407 (LSP error in eval'd code refers to wrong class for static + type). (ilutov) + . Fixed bug #81727: Don't mangle HTTP variable names that clash with ones + that have a specific semantic meaning. (CVE-2022-31629). (Derick) + +- DOM: + . Fixed bug #79451 (DOMDocument->replaceChild on doctype causes double free). + (Nathan Freeman) + +- FPM: + . Fixed bug GH-8885 (FPM access.log with stderr begins to write logs to + error_log after daemon reload). (Dmitry Menshikov) + . Fixed bug #77780 ("Headers already sent..." when previous connection was + aborted). (Jakub Zelenka) + +- GMP + . Fixed bug GH-9308 (GMP throws the wrong error when a GMP object is passed + to gmp_init()). (Girgias) + +- Intl + . Fixed bug GH-9421 (Incorrect argument number for ValueError in NumberFormatter). + (Girgias) + +- PDO_PGSQL: + . Fixed bug GH-9411 (PgSQL large object resource is incorrectly closed). + (Yurunsoft) + +- Phar: + . Fixed bug #81726: phar wrapper: DOS when using quine gzip file. + (CVE-2022-31628). (cmb) + +- Reflection: + . Fixed bug GH-8932 (ReflectionFunction provides no way to get the called + class of a Closure). (cmb, Nicolas Grekas) + . Fixed bug GH-9409 (Private method is incorrectly dumped as "overwrites"). + (ilutov) + +- Streams: + . Fixed bug GH-9316 ($http_response_header is wrong for long status line). + (cmb, timwolla) diff --git a/data/releases/8.0/8.0.24/release.json b/data/releases/8.0/8.0.24/release.json new file mode 100644 index 0000000000..7531c3ad37 --- /dev/null +++ b/data/releases/8.0/8.0.24/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.24", + "date": "29 Sep 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.24.tar.gz", + "name": "PHP 8.0.24 (tar.gz)", + "sha256": "6020843a2f1ce36745d958b3ca17f3fdc42e78a43899f552ab5dbc509ff19232" + }, + { + "filename": "php-8.0.24.tar.bz2", + "name": "PHP 8.0.24 (tar.bz2)", + "sha256": "908e17cea331d5abb8506b4a89c6392b962e127c391327777c7485eb4b415d43" + }, + { + "filename": "php-8.0.24.tar.xz", + "name": "PHP 8.0.24 (tar.xz)", + "sha256": "8e6a63ac9cdabe4c345b32a54b18f348d9e50a1decda217faf2d61278d22f08b" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.25/announcement.html b/data/releases/8.0/8.0.25/announcement.html new file mode 100644 index 0000000000..dc81872c17 --- /dev/null +++ b/data/releases/8.0/8.0.25/announcement.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/8.0.25/changes.txt b/data/releases/8.0/8.0.25/changes.txt new file mode 100644 index 0000000000..65042a6fa7 --- /dev/null +++ b/data/releases/8.0/8.0.25/changes.txt @@ -0,0 +1,15 @@ +- GD: + . Fixed bug #81739: OOB read due to insufficient input validation in + imageloadfont(). (CVE-2022-31630) (cmb) + +- Hash: + . Fixed bug #81738: buffer overflow in hash_update() on long parameter. + (CVE-2022-37454) (nicky at mouha dot be) + +- Session: + . Fixed bug GH-9583 (session_create_id() fails with user defined save handler + that doesn't have a validateId() method). (Girgias) + +- Streams: + . Fixed bug GH-9590 (stream_select does not abort upon exception or empty + valid fd set). (Arnaud) diff --git a/data/releases/8.0/8.0.25/release.json b/data/releases/8.0/8.0.25/release.json new file mode 100644 index 0000000000..e91b719d4b --- /dev/null +++ b/data/releases/8.0/8.0.25/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.25", + "date": "27 Oct 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.25.tar.gz", + "name": "PHP 8.0.25 (tar.gz)", + "sha256": "349a2b5a01bfccbc9af8afdf183e57bed3349706a084f3c4694aa4c7ff7cb2e9" + }, + { + "filename": "php-8.0.25.tar.bz2", + "name": "PHP 8.0.25 (tar.bz2)", + "sha256": "09d716bceb5b3db76d9023b10c1681ebbe040e51f4c18dfd35f9ff8b73bbcf8c" + }, + { + "filename": "php-8.0.25.tar.xz", + "name": "PHP 8.0.25 (tar.xz)", + "sha256": "a291b71d0498707fc5514eb5b9513e88f0f1d4890bcdefd67282ded8a2bfb941" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.26/announcement.html b/data/releases/8.0/8.0.26/announcement.html new file mode 100644 index 0000000000..d33271da56 --- /dev/null +++ b/data/releases/8.0/8.0.26/announcement.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/8.0.26/changes.txt b/data/releases/8.0/8.0.26/changes.txt new file mode 100644 index 0000000000..77fe26df92 --- /dev/null +++ b/data/releases/8.0/8.0.26/changes.txt @@ -0,0 +1,33 @@ +- CLI: + . Fixed bug GH-9709 (Null pointer dereference with -w/-s options). (Adam Saponara) + +- Core: + . Fixed bug GH-9752 (Generator crashes when interrupted during argument + evaluation with extra named params). (Arnaud) + . Fixed bug GH-9801 (Generator crashes when memory limit is exceeded during + initialization). (Arnaud) + . Fixed potential NULL pointer dereference in Windows shm*() functions. (cmb) + . Fixed bug GH-9750 (Generator memory leak when interrupted during argument + evaluation. (Arnaud) + +- Date: + . Fixed bug GH-9763 (DateTimeZone ctr mishandles input and adds null byte if + the argument is an offset larger than 100*60 minutes). (Derick) + +- FPM: + . Fixed bug GH-9754 (SaltStack (using Python subprocess) hangs when running + php-fpm 8.1.11). (Jakub Zelenka) + . Fixed bug GH-9959 (Solaris port event mechanism is still broken after bug + #66694). (Petr Sumbera) + +- mysqli: + . Fixed bug GH-9841 (mysqli_query throws warning despite using + silenced error mode). (Kamil Tekiela) + +- OpenSSL: + . Fixed bug GH-8430 (OpenSSL compiled with no-md2, no-md4 or no-rmd160 does + not build). (Jakub Zelenka, fsbruva) + +- SOAP: + . Fixed GH-9720 (Null pointer dereference while serializing the response). + (cmb) diff --git a/data/releases/8.0/8.0.26/release.json b/data/releases/8.0/8.0.26/release.json new file mode 100644 index 0000000000..324e1b89d3 --- /dev/null +++ b/data/releases/8.0/8.0.26/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.26", + "date": "24 Nov 2022", + "tags": [], + "source": [ + { + "filename": "php-8.0.26.tar.gz", + "name": "PHP 8.0.26 (tar.gz)", + "sha256": "3c83a7355a640b2ba436b8202e8597df8f9daadee1ec9241729ece8e578d21cd" + }, + { + "filename": "php-8.0.26.tar.bz2", + "name": "PHP 8.0.26 (tar.bz2)", + "sha256": "6df87af96f275a75889ece6e3fe4a13abd93a767a9992863bdc0e90f1e887ee7" + }, + { + "filename": "php-8.0.26.tar.xz", + "name": "PHP 8.0.26 (tar.xz)", + "sha256": "0765bfbe640dba37ccc36d2bc7c7b7ba3d2c3381c9cd4305f66eca83e82a40b3" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.27/announcement.html b/data/releases/8.0/8.0.27/announcement.html new file mode 100644 index 0000000000..7fcae7f06e --- /dev/null +++ b/data/releases/8.0/8.0.27/announcement.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/8.0.27/changes.txt b/data/releases/8.0/8.0.27/changes.txt new file mode 100644 index 0000000000..ada23e2a18 --- /dev/null +++ b/data/releases/8.0/8.0.27/changes.txt @@ -0,0 +1,3 @@ +- PDO/SQLite: + . Fixed bug #81740 (PDO::quote() may return unquoted string). (CVE-2022-31631) + (cmb) diff --git a/data/releases/8.0/8.0.27/release.json b/data/releases/8.0/8.0.27/release.json new file mode 100644 index 0000000000..1801deb473 --- /dev/null +++ b/data/releases/8.0/8.0.27/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.27", + "date": "05 Jan 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.27.tar.gz", + "name": "PHP 8.0.27 (tar.gz)", + "sha256": "fe2376faaf91c28ead89a36e118c177f4a8c9a7280a189b97265da1af1f4d305" + }, + { + "filename": "php-8.0.27.tar.bz2", + "name": "PHP 8.0.27 (tar.bz2)", + "sha256": "5fd882b14377c158c1b55cc6ace91fb8c19b77c596d5831ad124fbbbc902dbc8" + }, + { + "filename": "php-8.0.27.tar.xz", + "name": "PHP 8.0.27 (tar.xz)", + "sha256": "f942cbfe2f7bacbb8039fb79bbec41c76ea779ac5c8157f21e1e0c1b28a5fc3a" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.28/announcement.html b/data/releases/8.0/8.0.28/announcement.html new file mode 100644 index 0000000000..868ead41f8 --- /dev/null +++ b/data/releases/8.0/8.0.28/announcement.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/8.0.28/changes.txt b/data/releases/8.0/8.0.28/changes.txt new file mode 100644 index 0000000000..729d8bc63b --- /dev/null +++ b/data/releases/8.0/8.0.28/changes.txt @@ -0,0 +1,9 @@ +- Core: + . Fixed bug #81744 (Password_verify() always return true with some hash). + (CVE-2023-0567). (Tim Düsterhus) + . Fixed bug #81746 (1-byte array overrun in common path resolve code). + (CVE-2023-0568). (Niels Dossche) + +- SAPI: + . Fixed bug GHSA-54hq-v5wp-fqgv (DOS vulnerability when parsing multipart + request body). (CVE-2023-0662) (Jakub Zelenka) diff --git a/data/releases/8.0/8.0.28/release.json b/data/releases/8.0/8.0.28/release.json new file mode 100644 index 0000000000..39e61658f3 --- /dev/null +++ b/data/releases/8.0/8.0.28/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.28", + "date": "14 Feb 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.28.tar.gz", + "name": "PHP 8.0.28 (tar.gz)", + "sha256": "7432184eae01e4e8e39f03f80e8ec0ca2c8bfebc56e9a7b983541ca8805df22f" + }, + { + "filename": "php-8.0.28.tar.bz2", + "name": "PHP 8.0.28 (tar.bz2)", + "sha256": "9d5e74935c900e3b9c7b6bc740596b71933630eb9f63717c0c4923d8c788c62e" + }, + { + "filename": "php-8.0.28.tar.xz", + "name": "PHP 8.0.28 (tar.xz)", + "sha256": "5e07278a1f315a67d36a676c01343ca2d4da5ec5bdb15d018e4248b3012bc0cd" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.29/announcement.html b/data/releases/8.0/8.0.29/announcement.html new file mode 100644 index 0000000000..3b2bd01b8f --- /dev/null +++ b/data/releases/8.0/8.0.29/announcement.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/8.0.29/changes.txt b/data/releases/8.0/8.0.29/changes.txt new file mode 100644 index 0000000000..7397441adf --- /dev/null +++ b/data/releases/8.0/8.0.29/changes.txt @@ -0,0 +1,4 @@ +- Soap: + . Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient random + bytes in HTTP Digest authentication for SOAP). + (CVE-2023-3247) (nielsdos, timwolla) diff --git a/data/releases/8.0/8.0.29/release.json b/data/releases/8.0/8.0.29/release.json new file mode 100644 index 0000000000..8e97ff2685 --- /dev/null +++ b/data/releases/8.0/8.0.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.29", + "date": "08 Jun 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.29.tar.gz", + "name": "PHP 8.0.29 (tar.gz)", + "sha256": "db6ee08df5706365f624cde1cffb20ad6de1effe59d7e886337213a09f2e2684" + }, + { + "filename": "php-8.0.29.tar.bz2", + "name": "PHP 8.0.29 (tar.bz2)", + "sha256": "4801a1f0e17170286723ab54acd045ac78a9656021d56f104a64543eec922e12" + }, + { + "filename": "php-8.0.29.tar.xz", + "name": "PHP 8.0.29 (tar.xz)", + "sha256": "14db2fbf26c07d0eb2c9fab25dbde7e27726a3e88452cca671f0896bbb683ca9" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.3/announcement.html b/data/releases/8.0/8.0.3/announcement.html new file mode 100644 index 0000000000..3e19e076a4 --- /dev/null +++ b/data/releases/8.0/8.0.3/announcement.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/8.0.3/changes.txt b/data/releases/8.0/8.0.3/changes.txt new file mode 100644 index 0000000000..95407cd8ad --- /dev/null +++ b/data/releases/8.0/8.0.3/changes.txt @@ -0,0 +1,52 @@ +- Core: + . Fixed #80706 (mail(): Headers after Bcc headers may be ignored). (cmb) + +- DOM: + . Fixed bug #80600 (DOMChildNode::remove() doesn't work on CharacterData + nodes). (beberlei) + +- Gettext: + . Fixed bug #53251 (bindtextdomain with null dir doesn't return old value). + (cmb) + +- MySQLnd: + . Fixed bug #78680 (mysqlnd's mysql_clear_password does not transmit + null-terminated password). (Daniel Black) + . Fixed bug #80713 (SegFault when disabling ATTR_EMULATE_PREPARES and + MySQL 8.0). (Nikita) + +- MySQLi: + . Fixed bug #74779 (x() and y() truncating floats to integers). (cmb) + +- Opcache: + . Fixed bug #80634 (write_property handler of internal classes is skipped on + preloaded JITted code). (Dmitry) + . Fixed bug #80682 (opcache doesn't honour pcre.jit option). (Remi) + . Fixed bug #80742 (Opcache JIT makes some boolean logic unexpectedly be + true). (Dmitry) + . Fixed bug #80745 (JIT produces Assert failure and UNKNOWN:0 var_dumps in + code involving bitshifts). (Dmitry) + +- OpenSSL: + . Fixed bug #80747 (Providing RSA key size < 512 generates key that crash + PHP). (Nikita) + +- Phar: + . Fixed bug #75850 (Unclear error message wrt. __halt_compiler() w/o + semicolon) (cmb) + . Fixed bug #70091 (Phar does not mark UTF-8 filenames in ZIP archives). (cmb) + . Fixed bug #53467 (Phar cannot compress large archives). (cmb, lserni) + +- Socket: + . Fixed bug #80723 (Different sockets compare as equal (regression in 8.0)). + (Nikita) + +- SPL: + . Fixed bug#80719 (Iterating after failed ArrayObject::setIteratorClass() + causes Segmentation fault). (Nikita) + +- Standard: + . Fixed bug #80654 (file_get_contents() maxlen fails above (2**31)-1 bytes). + (cmb) + . Fixed bug #80718 (ext/standard/dl.c fallback code path with syntax error). + (Nikita) diff --git a/data/releases/8.0/8.0.3/release.json b/data/releases/8.0/8.0.3/release.json new file mode 100644 index 0000000000..efccfec8b4 --- /dev/null +++ b/data/releases/8.0/8.0.3/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.3", + "date": "4 Mar 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.3.tar.gz", + "name": "PHP 8.0.3 (tar.gz)", + "sha256": "e7ecfee901e0843377b64b2d8124132eae75bdb71a2675ba7c5c038d6592383d" + }, + { + "filename": "php-8.0.3.tar.bz2", + "name": "PHP 8.0.3 (tar.bz2)", + "sha256": "95f8621d9e34f822d2583564c358598dff7346241f839bfa319bbf65bf2eb012" + }, + { + "filename": "php-8.0.3.tar.xz", + "name": "PHP 8.0.3 (tar.xz)", + "sha256": "c9816aa9745a9695672951eaff3a35ca5eddcb9cacf87a4f04b9fb1169010251" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.30/announcement.html b/data/releases/8.0/8.0.30/announcement.html new file mode 100644 index 0000000000..f4e0ac2682 --- /dev/null +++ b/data/releases/8.0/8.0.30/announcement.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/8.0.30/changes.txt b/data/releases/8.0/8.0.30/changes.txt new file mode 100644 index 0000000000..da90ddb5f8 --- /dev/null +++ b/data/releases/8.0/8.0.30/changes.txt @@ -0,0 +1,7 @@ +- Libxml: + . Fixed bug GHSA-3qrf-m4j2-pcrr (Security issue with external entity loading + in XML without enabling it). (CVE-2023-3823) (nielsdos, ilutov) + +- Phar: + . Fixed bug GHSA-jqcx-ccgc-xwhv (Buffer mismanagement in phar_dir_read()). + (CVE-2023-3824) (nielsdos) diff --git a/data/releases/8.0/8.0.30/release.json b/data/releases/8.0/8.0.30/release.json new file mode 100644 index 0000000000..513ab03237 --- /dev/null +++ b/data/releases/8.0/8.0.30/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.0.30", + "date": "03 Aug 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.0.30.tar.gz", + "name": "PHP 8.0.30 (tar.gz)", + "sha256": "449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c" + }, + { + "filename": "php-8.0.30.tar.bz2", + "name": "PHP 8.0.30 (tar.bz2)", + "sha256": "98a9cb6a0e27a6950cdf4b26dcac48f2be2d936d5224a502f066cf3d4cf19b92" + }, + { + "filename": "php-8.0.30.tar.xz", + "name": "PHP 8.0.30 (tar.xz)", + "sha256": "216ab305737a5d392107112d618a755dc5df42058226f1670e9db90e77d777d9" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.4/announcement.html b/data/releases/8.0/8.0.4/announcement.html new file mode 100644 index 0000000000..89f1efdf64 --- /dev/null +++ b/data/releases/8.0/8.0.4/announcement.html @@ -0,0 +1 @@ +This release was canceled due to security considerations. diff --git a/data/releases/8.0/8.0.4/changes.txt b/data/releases/8.0/8.0.4/changes.txt new file mode 100644 index 0000000000..d3a19993b9 --- /dev/null +++ b/data/releases/8.0/8.0.4/changes.txt @@ -0,0 +1,46 @@ +- Core: + . Fixed bug #75776 (Flushing streams with compression filter is broken). (cmb) + . Fixed bug #80811 (Function exec without $output but with $restult_code + parameter crashes). (Nikita) + . Fixed bug #80814 (threaded mod_php won't load on FreeBSD: No space + available for static Thread Local Storage). (Dmitry) + +- Dba: + . Fixed bug #80817 (dba_popen() may cause segfault during RSHUTDOWN). (cmb) + +- IMAP: + . Fixed bug #80800 (imap_open() fails when the flags parameter includes + CL_EXPUNGE). (girgias) + +- Intl: + . Fixed bug #80763 (msgfmt_format() does not accept DateTime references). + (cmb) + +- Libxml: + . Fixed bug #51903 (simplexml_load_file() doesn't use HTTP headers). (cmb) + +- MySQLnd: + . Fixed bug #80837 (Calling stmt_store_result after fetch doesn't throw an + error). (Kamil Tekiela) + +- Opcache: + . Fixed bug #80786 (PHP crash using JIT). (Nikita) + . Fixed bug #80782 (DASM_S_RANGE_VREG on PHP_INT_MIN-1). (Dmitry) + +- PCRE: + . Fixed bug #80866 (preg_split ignores limit flag when pattern with \K has + 0-width fullstring match). (Kamil Tekiela) + +- Session: + . Fixed bug #80774 (session_name() problem with backslash). (cmb) + +- Standard: + . Fixed bug #80771 (phpinfo(INFO_CREDITS) displays nothing in CLI). (cmb) + . Fixed bug #78719 (http wrapper silently ignores long Location headers). + (cmb) + . Fixed bug #80838 (HTTP wrapper waits for HTTP 1 response after HTTP 101). + (manuelm) + +- Zip: + . Fixed bug #80825 (ZipArchive::isCompressionMethodSupported does not exist). + (cmb) diff --git a/data/releases/8.0/8.0.4/release.json b/data/releases/8.0/8.0.4/release.json new file mode 100644 index 0000000000..4ee328ad97 --- /dev/null +++ b/data/releases/8.0/8.0.4/release.json @@ -0,0 +1,8 @@ +{ + "version": "8.0.5", + "date": "01 Apr 2021", + "tags": [], + "source": [ + + ] +} diff --git a/data/releases/8.0/8.0.5/announcement.html b/data/releases/8.0/8.0.5/announcement.html new file mode 100644 index 0000000000..0f1b3e9085 --- /dev/null +++ b/data/releases/8.0/8.0.5/announcement.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/8.0.5/changes.txt b/data/releases/8.0/8.0.5/changes.txt new file mode 100644 index 0000000000..2e8f01dc17 --- /dev/null +++ b/data/releases/8.0/8.0.5/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Changed PowerPC CPU registers used by Zend VM to work around GCC bug. + Old registers (r28/r29) might be clobbered by _restgpr routine used for + return from C function compiled with -Os. (Dmitry) + +- DOM: + . Fixed bug #66783 (UAF when appending DOMDocument to element). (cmb) + +- FFI: + . Fixed bug #80847 (CData structs with fields of type struct can't be passed + as C function argument). (Nickolas Daniel da Silva, Dmitry) + +- FPM: + . Fixed bug #80024 (Duplication of info about inherited socket after pool + removing). (Jakub Zelenka) + +- FTP: + . Fixed bug #80880 (SSL_read on shutdown, ftp/proc_open). (cmb, Jakub + Zelenka) + +- Imap: + . Fixed bug #80710 (imap_mail_compose() header injection). (cmb, Stas) + +- LibXML: + . Fixed bug #73533 (Invalid memory access in php_libxml_xmlCheckUTF8). (cmb) + +- Opcache: + . Fixed bug #80839 (PHP problem with JIT). (Dmitry) + . Fixed bug #80861 (erronous array key overflow in 2D array with JIT). + (Dmitry) + +- Pcntl: + . Fixed bug #79812 (Potential integer overflow in pcntl_exec()). (cmb) + +- PDO_ODBC: + . Fixed bug #80783 (PDO ODBC truncates BLOB records at every 256th byte). + (cmb) + +- PDO_pgsql: + . Fixed bug #80892 (PDO::PARAM_INT is treated the same as PDO::PARAM_STR). + (Matteo) + +- Session: + . Fixed bug #80889 (Cannot set save handler when save_handler is invalid). + (cmb) + +- SOAP: + . Fixed bug #69668 (SOAP special XML characters in namespace URIs not + encoded). (cmb) + +- Standard: + . Fixed bug #80915 (Taking a reference to $_SERVER hides its values from + phpinfo()). (Rowan Tommins) + . Fixed bug #80914 ('getdir' accidentally defined as an alias of 'dir'). + (Rowan Tommins) diff --git a/data/releases/8.0/8.0.5/release.json b/data/releases/8.0/8.0.5/release.json new file mode 100644 index 0000000000..378061ec3d --- /dev/null +++ b/data/releases/8.0/8.0.5/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.5", + "date": "29 Apr 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.5.tar.gz", + "name": "PHP 8.0.5 (tar.gz)", + "sha256": "50aeac6fe9c2b5577d534369392ebb89c3e7a342b20ef538832b1df996cccb2a" + }, + { + "filename": "php-8.0.5.tar.bz2", + "name": "PHP 8.0.5 (tar.bz2)", + "sha256": "195d934febefaac3b19ac586679149759324a434411ae8aca6f7d87553ef08e0" + }, + { + "filename": "php-8.0.5.tar.xz", + "name": "PHP 8.0.5 (tar.xz)", + "sha256": "5dd358b35ecd5890a4f09fb68035a72fe6b45d3ead6999ea95981a107fd1f2ab" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.6/announcement.html b/data/releases/8.0/8.0.6/announcement.html new file mode 100644 index 0000000000..6b320218cc --- /dev/null +++ b/data/releases/8.0/8.0.6/announcement.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/8.0.6/changes.txt b/data/releases/8.0/8.0.6/changes.txt new file mode 100644 index 0000000000..8c68214541 --- /dev/null +++ b/data/releases/8.0/8.0.6/changes.txt @@ -0,0 +1,3 @@ +- PDO_pgsql: + . Revert "Fixed bug #80892 (PDO::PARAM_INT is treated the same as PDO::PARAM_STR)" + from PHP 8.0.5. diff --git a/data/releases/8.0/8.0.6/release.json b/data/releases/8.0/8.0.6/release.json new file mode 100644 index 0000000000..9b3f522eae --- /dev/null +++ b/data/releases/8.0/8.0.6/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.6", + "date": "06 May 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.6.tar.gz", + "name": "PHP 8.0.6 (tar.gz)", + "sha256": "51a3dcea6deb8ab82ad035d15baa7f5398980f576ac1968313ef149f7cf20100" + }, + { + "filename": "php-8.0.6.tar.bz2", + "name": "PHP 8.0.6 (tar.bz2)", + "sha256": "26a8a9dad66012039deb0bcf151c6e22ab1e4b6a91508383ff705da41289526e" + }, + { + "filename": "php-8.0.6.tar.xz", + "name": "PHP 8.0.6 (tar.xz)", + "sha256": "e9871d3b6c391fe9e89f86f6334852dcc10eeaaa8d5565beb8436e7f0cf30e20" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.7/announcement.html b/data/releases/8.0/8.0.7/announcement.html new file mode 100644 index 0000000000..4d617d3075 --- /dev/null +++ b/data/releases/8.0/8.0.7/announcement.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/8.0.7/changes.txt b/data/releases/8.0/8.0.7/changes.txt new file mode 100644 index 0000000000..44cb3c688e --- /dev/null +++ b/data/releases/8.0/8.0.7/changes.txt @@ -0,0 +1,55 @@ +- Core: + . Fixed bug #80960 (opendir() warning wrong info when failed on Windows). + (cmb) + . Fixed bug #67792 (HTTP Authorization schemes are treated as case-sensitive). + (cmb) + . Fixed bug #80972 (Memory exhaustion on invalid string offset). (girgias) + +- FPM: + . Fixed bug #65800 (Events port mechanism). (psumbera) + +- FTP: + . Fixed bug #80901 (Info leak in ftp extension). (cmb) + . Fixed bug #79100 (Wrong FTP error messages). (cmb) + +- GD: + . Fixed bug #81032 (GD install is affected by external libgd installation). + (Flavio Heleno, cmb) + +- Intl: + . Fixed bug #81019 (Unable to clone NumberFormatter after failed parse()). + (Nikita) + +- MBString: + . Fixed bug #81011 (mb_convert_encoding removes references from arrays). (cmb) + +- ODBC: + . Fixed bug #80460 (ODBC doesn't account for SQL_NO_TOTAL indicator). (cmb) + +- Opcache: + . Fixed bug #81007 (JIT "not supported" on 32-bit x86 -- build problem?). + (Nikita) + . Fixed bug #81015 (Opcache optimization assumes wrong part of ternary + operator in if-condition). (Nikita) + . Fixed bug #81046 (Literal compaction merges non-equal related literals). + (Nikita) + +- PDO_MySQL: + . Fixed bug #81037 (PDO discards error message text from prepared + statement). (Kamil Tekiela) + +- PDO_ODBC: + . Fixed bug #44643 (bound parameters ignore explicit type definitions). (cmb) + +- pgsql: + . Fixed php_pgsql_fd_cast() wrt. php_stream_can_cast(). (cmb) + +- SPL: + . Fixed bug #80933 (SplFileObject::DROP_NEW_LINE is broken for NUL and CR). + (cmb, Nikita) + +- XMLReader: + . Fixed bug #73246 (XMLReader: encoding length not checked). (cmb) + +- Zip: + . Fixed bug #80863 (ZipArchive::extractTo() ignores references). (cmb) diff --git a/data/releases/8.0/8.0.7/release.json b/data/releases/8.0/8.0.7/release.json new file mode 100644 index 0000000000..0d86f667a9 --- /dev/null +++ b/data/releases/8.0/8.0.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.7", + "date": "03 Jun 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.7.tar.gz", + "name": "PHP 8.0.7 (tar.gz)", + "sha256": "1e7462455bec8062ef3fc7c74f1f496417cb80aa374ce11edb35015de248c3c1" + }, + { + "filename": "php-8.0.7.tar.bz2", + "name": "PHP 8.0.7 (tar.bz2)", + "sha256": "72b2f2c96f35748b1d6e8a71af4ead439b17129aefe611eb0baf1bd313635f79" + }, + { + "filename": "php-8.0.7.tar.xz", + "name": "PHP 8.0.7 (tar.xz)", + "sha256": "d5fc2e4fc780a32404d88c360e3e0009bc725d936459668e9c2ac992f2d83654" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.8/announcement.html b/data/releases/8.0/8.0.8/announcement.html new file mode 100644 index 0000000000..9486946b86 --- /dev/null +++ b/data/releases/8.0/8.0.8/announcement.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/8.0.8/changes.txt b/data/releases/8.0/8.0.8/changes.txt new file mode 100644 index 0000000000..66700f2dc7 --- /dev/null +++ b/data/releases/8.0/8.0.8/changes.txt @@ -0,0 +1,58 @@ +- Core: + . Fixed bug #81076 (incorrect debug info on Closures with implicit binds). + (krakjoe) + . Fixed bug #81068 (Double free in realpath_cache_clean()). (Dimitry Andric) + . Fixed bug #76359 (open_basedir bypass through adding ".."). (cmb) + . Fixed bug #81090 (Typed property performance degradation with .= operator). + (Nikita) + . Fixed bug #81070 (Integer underflow in memory limit comparison). + (Peter van Dommelen) + . Fixed bug #81122: SSRF bypass in FILTER_VALIDATE_URL. (CVE-2021-21705) (cmb) + +- Bzip2: + . Fixed bug #81092 (fflush before stream_filter_remove corrupts stream). + (cmb) + +- Fileinfo: + . Fixed bug #80197 (implicit declaration of function 'magic_stream' is + invalid). (Nikita) + +- GMP: + . Fixed bug #81119 (GMP operators throw errors with wrong parameter names). + (Nikita) + +- MySQLnd: + . Fixed bug #80761 (PDO uses too much memory). (Nikita) + +- OCI8: + . Fixed bug #81088 (error in regression test for oci_fetch_object() and + oci_fetch_array()). (Máté) + +- Opcache: + . Fixed bug #81051 (Broken property type handling after incrementing + reference). (Dmitry) + . Fixed bug #80968 (JIT segfault with return from required file). (Dmitry) + +- OpenSSL: + . Fixed bug #76694 (native Windows cert verification uses CN as sever name). + (cmb) + +- PDO_Firebird: + . Fixed bug #76448: Stack buffer overflow in firebird_info_cb. + (CVE-2021-21704) (cmb) + . Fixed bug #76449: SIGSEGV in firebird_handle_doer. (CVE-2021-21704) (cmb) + . Fixed bug #76450: SIGSEGV in firebird_stmt_execute. (CVE-2021-21704) (cmb) + . Fixed bug #76452: Crash while parsing blob data in firebird_fetch_blob. + (CVE-2021-21704) (cmb) + +- readline: + . Fixed bug #72998 (invalid read in readline completion). (krakjoe) + +- Standard: + . Fixed bug #81048 (phpinfo(INFO_VARIABLES) "Array to string conversion"). + (cmb) + . Fixed bug #77627 (method_exists on Closure::__invoke inconsistency). + (krakjoe) + +- Windows: + . Fixed bug #81120 (PGO data for main PHP DLL are not used). (cmb) diff --git a/data/releases/8.0/8.0.8/release.json b/data/releases/8.0/8.0.8/release.json new file mode 100644 index 0000000000..3dd3bfdcb4 --- /dev/null +++ b/data/releases/8.0/8.0.8/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.8", + "date": "01 Jul 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.8.tar.gz", + "name": "PHP 8.0.8 (tar.gz)", + "sha256": "084a1e8020e86fb99b663d195fd9ac98a9f37dfcb9ecb5c159054cdb8f388945" + }, + { + "filename": "php-8.0.8.tar.bz2", + "name": "PHP 8.0.8 (tar.bz2)", + "sha256": "14bd77d71a98943e14b324da83e31b572781df583cda9650a184fae3214cd16f" + }, + { + "filename": "php-8.0.8.tar.xz", + "name": "PHP 8.0.8 (tar.xz)", + "sha256": "dc1668d324232dec1d05175ec752dade92d29bb3004275118bc3f7fc7cbfbb1c" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.0/8.0.9/announcement.html b/data/releases/8.0/8.0.9/announcement.html new file mode 100644 index 0000000000..ceb53647c7 --- /dev/null +++ b/data/releases/8.0/8.0.9/announcement.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.0/8.0.9/changes.txt b/data/releases/8.0/8.0.9/changes.txt new file mode 100644 index 0000000000..5263bce86b --- /dev/null +++ b/data/releases/8.0/8.0.9/changes.txt @@ -0,0 +1,34 @@ +- Core: + . Fixed bug #81145 (copy() and stream_copy_to_stream() fail for +4GB files). + (cmb, Nikita) + . Fixed bug #81163 (incorrect handling of indirect vars in __sleep). + (krakjoe) + . Fixed bug #81159 (Object to int warning when using an object as a string + offset). (girgias) + . Fixed bug #80728 (PHP built-in web server resets timeout when it can kill + the process). (Calvin Buckley) + . Fixed bug #73630 (Built-in Weberver - overwrite $_SERVER['request_uri']). + (cmb) + . Fixed bug #80173 (Using return value of zend_assign_to_variable() is not + safe). (Nikita) + . Fixed bug #73226 (--r[fcez] always return zero exit code). (cmb) + +- Intl: + . Fixed bug #72809 (Locale::lookup() wrong result with canonicalize option). + (cmb) + . Fixed bug #68471 (IntlDateFormatter fails for "GMT+00:00" timezone). (cmb) + . Fixed bug #74264 (grapheme_strrpos() broken for negative offsets). (cmb) + +- OpenSSL: + . Fixed bug #52093 (openssl_csr_sign truncates $serial). (cmb) + +- PCRE: + . Fixed bug #81101 (PCRE2 10.37 shows unexpected result). (Anatol) + . Fixed bug #81243 (Too much memory is allocated for preg_replace()). (cmb) + +- Reflection: + . Fixed bug #81208 (Segmentation fault while create newInstance from + attribute). (Nikita) + +- Standard: + . Fixed bug #81223 (flock() only locks first byte of file). (cmb) diff --git a/data/releases/8.0/8.0.9/release.json b/data/releases/8.0/8.0.9/release.json new file mode 100644 index 0000000000..6587dcc052 --- /dev/null +++ b/data/releases/8.0/8.0.9/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.0.9", + "date": "29 Jul 2021", + "tags": [], + "source": [ + { + "filename": "php-8.0.9.tar.gz", + "name": "PHP 8.0.9 (tar.gz)", + "sha256": "1f0d72e90ab6ad0ae13329a96b281f71bc592563ce4e3a4c816b8da4b5854fb4" + }, + { + "filename": "php-8.0.9.tar.bz2", + "name": "PHP 8.0.9 (tar.bz2)", + "sha256": "6ac8edebd295ddc43fb010653c43ccf203cd7cdc40981b210ed5275994040806" + }, + { + "filename": "php-8.0.9.tar.xz", + "name": "PHP 8.0.9 (tar.xz)", + "sha256": "71a01b2b56544e20e28696ad5b366e431a0984eaa39aa5e35426a4843e172010" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.0/announcement.html b/data/releases/8.1/8.1.0/announcement.html new file mode 100644 index 0000000000..b7518fa72a --- /dev/null +++ b/data/releases/8.1/8.1.0/announcement.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/8.1.0/changes.txt b/data/releases/8.1/8.1.0/changes.txt new file mode 100644 index 0000000000..447dd1330f --- /dev/null +++ b/data/releases/8.1/8.1.0/changes.txt @@ -0,0 +1,314 @@ +- Core: + . Fixed inclusion order for phpize builds on Windows. (cmb) + . Added missing hashtable insertion APIs for arr/obj/ref. (Sara) + . Implemented FR #77372 (Relative file path is removed from uploaded file). + (Björn Tantau) + . Fixed bug #81607 (CE_CACHE allocation with concurrent access). (Nikita, + Dmitry) + . Fixed bug #81507 (Fiber does not compile on AIX). (Clément Chigot) + . Fixed bug #78647 (SEGFAULT in zend_do_perform_implementation_check). + (Nikita) + . Fixed bug #81518 (Header injection via default_mimetype / default_charset). + (cmb) + . Fixed bug #75941 (Fix compile failure on Solaris with clang). (Jaromír + Doleček) + . Fixed bug #81380 (Observer may not be initialized properly). (krakjoe) + . Fixed bug #81514 (Using Enum as key in WeakMap triggers GC + SegFault). + (Nikita) + . Fixed bug #81520 (TEST_PHP_CGI_EXECUTABLE badly set in run-tests.php). + (Remi) + . Fixed bug #81377 (unset() of $GLOBALS sub-key yields warning). (Nikita) + . Fixed bug #81342 (New ampersand token parsing depends on new line after it). + (Nikita) + . Fixed bug #81280 (Unicode characters in cli.prompt causes segfault). + (krakjoe) + . Fixed bug #81192 ("Declaration should be compatible with" gives incorrect + line number with traits). (Nikita) + . Fixed bug #78919 (CLI server: insufficient cleanup if request startup + fails). (cataphract, cmb) + . Fixed bug #81303 (match error message improvements). (krakjoe) + . Fixed bug #81238 (Fiber support missing for Solaris Sparc). (trowski) + . Fixed bug #81237 (Comparison of fake closures doesn't work). (krakjoe) + . Fixed bug #81202 (powerpc64 build fails on fibers). (krakjoe) + . Fixed bug #80072 (Cyclic unserialize in TMPVAR operand may leak). (Nikita) + . Fixed bug #81163 (__sleep allowed to return non-array). (krakjoe) + . Fixed bug #75474 (function scope static variables are not bound to a unique + function). (Nikita) + . Fixed bug #53826 (__callStatic fired in base class through a parent call if + the method is private). (Nikita) + . Fixed bug #81076 (incorrect debug info on Closures with implicit binds). + (krakjoe) + +- CLI: + . Fixed bug #81496 (Server logs incorrect request method). (lauri) + +- COM: + . Dispatch using LANG_NEUTRAL instead of LOCALE_SYSTEM_DEFAULT. (Dmitry + Maksimov) + +- Curl: + . Fixed bug #81085 (Support CURLOPT_SSLCERT_BLOB for cert strings). + (camporter) + +- Date: + . Fixed bug #81458 (Regression Incorrect difference after timezone change). + (Derick) + . Fixed bug #81500 (Interval serialization regression since 7.3.14 / 7.4.2). + (cmb) + . Fixed bug #81504 (Incorrect timezone transition details for POSIX data). + (Derick) + . Fixed bug #80998 (Missing second with inverted interval). (Derick) + . Speed up finding timezone offset information. (Derick) + . Fixed bug #79580 (date_create_from_format misses leap year). (Derick) + . Fixed bug #80963 (DateTimeZone::getTransitions() truncated). (Derick) + . Fixed bug #80974 (Wrong diff between 2 dates in different timezones). + (Derick) + . Fixed bug #80998 (Missing second with inverted interval). (Derick) + . Fixed bug #81097 (DateTimeZone silently falls back to UTC when providing an + offset with seconds). (Derick) + . Fixed bug #81106 (Regression in 8.1: add() now truncate ->f). (Derick) + . Fixed bug #81273 (Date interval calculation not correct). (Derick) + . Fixed bug #52480 (Incorrect difference using DateInterval). (Derick) + . Fixed bug #62326 (date_diff() function returns false result). (Derick) + . Fixed bug #64992 (dst not handled past 2038). (Derick) + . Fixed bug #65003 (Wrong date diff). (Derick) + . Fixed bug #66545 (DateTime. diff returns negative values). (Derick) + . Fixed bug #68503 (date_diff on two dates with timezone set localised + returns wrong results). (Derick) + . Fixed bug #69806 (Incorrect date from timestamp). (Derick) + . Fixed bug #71700 (Extra day on diff between begin and end of march 2016). + (Derick) + . Fixed bug #71826 (DateTime::diff confuse on timezone 'Asia/Tokyo'). (Derick) + . Fixed bug #73460 (Datetime add not realising it already applied DST + change). (Derick) + . Fixed bug #74173 (DateTimeImmutable::getTimestamp() triggers DST switch in + incorrect time). (Derick) + . Fixed bug #74274 (Handling DST transitions correctly). (Derick) + . Fixed bug #74524 (Date diff is bad calculated, in same time zone). (Derick) + . Fixed bug #75167 (DateTime::add does only care about backward DST + transition, not forward). (Derick) + . Fixed bug #76032 (DateTime->diff having issues with leap days for + timezones ahead of UTC). (Derick) + . Fixed bug #76374 (Date difference varies according day time). (Derick) + . Fixed bug #77571 (DateTime's diff DateInterval incorrect in timezones from + UTC+01:00 to UTC+12:00). (Derick) + . Fixed bug #78452 (diff makes wrong in hour for Asia/Tehran). (Derick) + . Fixed bug #79452 (DateTime::diff() generates months differently between + time zones). (Derick) + . Fixed bug #79698 (timelib mishandles future timestamps (triggered by 'zic + -b slim')). (Derick) + . Fixed bug #79716 (Invalid date time created (with day "00")). (Derick) + . Fixed bug #80610 (DateTime calculate wrong with DateInterval). (Derick) + . Fixed bug #80664 (DateTime objects behave incorrectly around DST + transition). (Derick) + . Fixed bug #80913 (DateTime(Immutable)::sub around DST yield incorrect + time). (Derick) + +- DBA: + . Fixed bug #81588 (TokyoCabinet driver leaks memory). (girgias) + +- DOM: + . Fixed bug #81433 (DOMElement::setIdAttribute() called twice may remove ID). + (Viktor Volkov) + +- FFI: + . Fixed bug #79576 ("TYPE *" shows unhelpful message when type is not + defined). (Dmitry) + +- Filter: + . Fixed bug #61700 (FILTER_FLAG_IPV6/FILTER_FLAG_NO_PRIV|RES_RANGE failing). + (cmb, Nikita) + +- FPM: + . Fixed bug #81513 (Future possibility for heap overflow in FPM zlog). + (Jakub Zelenka) + . Fixed bug #81026 (PHP-FPM oob R/W in root process leading to privilege + escalation) (CVE-2021-21703). (Jakub Zelenka) + . Added openmetrics status format. (Cees-Jan Kiewiet) + . Enable process renaming on macOS. (devnexen) + . Added pm.max_spawn_rate option to configure max spawn child processes rate. + (Paulius Sapragonas) + . Fixed bug #65800 (Events port mechanism). (psumbera) + +- FTP: + . Convert resourceThe 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/8.1.1/changes.txt b/data/releases/8.1/8.1.1/changes.txt new file mode 100644 index 0000000000..b24a178b5a --- /dev/null +++ b/data/releases/8.1/8.1.1/changes.txt @@ -0,0 +1,11 @@ +- IMAP: + . Fixed bug #81649 (imap_(un)delete accept sequences, not single numbers). + (cmb) + +- PCRE: + . Update bundled PCRE2 to 10.39. (cmb) + . Fixed bug #74604 (Out of bounds in php_pcre_replace_impl). (cmb, Dmitry) + +- Standard: + . Fixed bug #81659 (stream_get_contents() may unnecessarily overallocate). + (cmb) diff --git a/data/releases/8.1/8.1.1/release.json b/data/releases/8.1/8.1.1/release.json new file mode 100644 index 0000000000..186c551534 --- /dev/null +++ b/data/releases/8.1/8.1.1/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.1", + "date": "16 Dec 2021", + "tags": [], + "source": [ + { + "filename": "php-8.1.1.tar.gz", + "name": "PHP 8.1.1 (tar.gz)", + "sha256": "4e4cf3f843a5111f6c55cd21de8f26834ea3cd4a5be77c88357cbcec4a2d671d" + }, + { + "filename": "php-8.1.1.tar.bz2", + "name": "PHP 8.1.1 (tar.bz2)", + "sha256": "8f8bc9cad6cd124edc111f7db0a109745e2f638770a101b3c22a2953f7a9b40e" + }, + { + "filename": "php-8.1.1.tar.xz", + "name": "PHP 8.1.1 (tar.xz)", + "sha256": "33c09d76d0a8bbb5dd930d9dd32e6bfd44e9efcf867563759eb5492c3aff8856" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.10/announcement.html b/data/releases/8.1/8.1.10/announcement.html new file mode 100644 index 0000000000..85577c6616 --- /dev/null +++ b/data/releases/8.1/8.1.10/announcement.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/8.1.10/changes.txt b/data/releases/8.1/8.1.10/changes.txt new file mode 100644 index 0000000000..2bc20484a7 --- /dev/null +++ b/data/releases/8.1/8.1.10/changes.txt @@ -0,0 +1,52 @@ +- Core: + . Fixed --CGI-- support of run-tests.php. (cmb) + . Fixed incorrect double to long casting in latest clang. (zeriyoshi) + . Fixed bug GH-9266 (GC root buffer keeps growing when dtors are present). + (Michael Olšavský) + +- Date: + . Fixed bug GH-8730 (DateTime::diff miscalculation is same time zone of + different type). (Derick) + . Fixed bug GH-8964 (DateTime object comparison after applying delta less + than 1 second). (Derick) + . Fixed bug GH-9106: (DateInterval 1.5s added to DateTimeInterface is rounded + down since PHP 8.1.0). (Derick) + . Fixed bug #81263 (Wrong result from DateTimeImmutable::diff). (Derick) + +- DBA: + . Fixed LMDB driver memory leak on DB creation failure (Girgias) + . Fixed bug GH-9155 (dba_open("non-existing", "c-", "flatfile") segfaults) + (cmb) + +- IMAP: + . Fixed bug GH-9309 (Segfault when connection is used after imap_close()). + (cmb) + +- Intl: + . Fixed IntlDateFormatter::formatObject() parameter type. (Gert de Pagter) + +- MBString: + . Fixed bug GH-9008 (mb_detect_encoding(): wrong results with null $encodings). + (cmb) + +- OPcache: + . Fixed bug GH-9033 (Loading blacklist file can fail due to negative length). + (cmb) + . Fixed bug GH-9164 (Segfault in zend_accel_class_hash_copy). + (Arnaud, Sergei Turchanov) + +- OpenSSL: + . Fixed bug GH-9339 (OpenSSL oid_file path check warning contains + uninitialized path). (Jakub Zelenka) + +- PDO_SQLite: + . Fixed bug GH-9032 (SQLite3 authorizer crashes on NULL values). (cmb) + +- SQLite3: + . Fixed bug GH-9032 (SQLite3 authorizer crashes on NULL values). (cmb) + +- Streams: + . Fixed bug GH-8472 (The resource returned by stream_socket_accept may have + incorrect metadata). (Jakub Zelenka) + . Fixed bug GH-8409 (SSL handshake timeout leaves persistent connections + hanging). (Jakub Zelenka, Twosee) diff --git a/data/releases/8.1/8.1.10/release.json b/data/releases/8.1/8.1.10/release.json new file mode 100644 index 0000000000..626b8c3e37 --- /dev/null +++ b/data/releases/8.1/8.1.10/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.10", + "date": "01 Sep 2022", + "tags": [], + "source": [ + { + "filename": "php-8.1.10.tar.gz", + "name": "PHP 8.1.10 (tar.gz)", + "sha256": "3ea4f323109dfbc8d2631d08aa0e08602c1f713678e9dc6c750f081ef49eab0f" + }, + { + "filename": "php-8.1.10.tar.bz2", + "name": "PHP 8.1.10 (tar.bz2)", + "sha256": "2de8e0402285f7c56887defe651922308aded58ba60befcf3b77720209e31f10" + }, + { + "filename": "php-8.1.10.tar.xz", + "name": "PHP 8.1.10 (tar.xz)", + "sha256": "90e7120c77ee83630e6ac928d23bc6396603d62d83a3cf5df8a450d2e3070162" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.11/announcement.html b/data/releases/8.1/8.1.11/announcement.html new file mode 100644 index 0000000000..54154ae909 --- /dev/null +++ b/data/releases/8.1/8.1.11/announcement.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/8.1.11/changes.txt b/data/releases/8.1/8.1.11/changes.txt new file mode 100644 index 0000000000..0a3f011d04 --- /dev/null +++ b/data/releases/8.1/8.1.11/changes.txt @@ -0,0 +1,46 @@ +- Core: + . Fixed bug GH-9323 (Crash in ZEND_RETURN/GC/zend_call_function) + (Tim Starling) + . Fixed bug GH-9361 (Segmentation fault on script exit #9379). (cmb, + Christian Schneider) + . Fixed bug GH-9447 (Invalid class FQN emitted by AST dump for new and class + constants in constant expressions). (ilutov) + . Fixed bug #81727: Don't mangle HTTP variable names that clash with ones + that have a specific semantic meaning. (CVE-2022-31629). (Derick) + +- DOM: + . Fixed bug #79451 (DOMDocument->replaceChild on doctype causes double free). + (Nathan Freeman) + +- FPM: + . Fixed bug GH-8885 (FPM access.log with stderr begins to write logs to + error_log after daemon reload). (Dmitry Menshikov) + . Fixed bug #77780 ("Headers already sent..." when previous connection was + aborted). (Jakub Zelenka) + +- GMP + . Fixed bug GH-9308 (GMP throws the wrong error when a GMP object is passed + to gmp_init()). (Girgias) + +- Intl + . Fixed bug GH-9421 (Incorrect argument number for ValueError in NumberFormatter). + (Girgias) + +- PCRE: + . Fixed pcre.jit on Apple Silicon. (Niklas Keller) + +- PDO_PGSQL: + . Fixed bug GH-9411 (PgSQL large object resource is incorrectly closed). + (Yurunsoft) + +- Phar: + . Fixed bug #81726: phar wrapper: DOS when using quine gzip file. + (CVE-2022-31628). (cmb) + +- Reflection: + . Fixed bug GH-8932 (ReflectionFunction provides no way to get the called + class of a Closure). (cmb, Nicolas Grekas) + +- Streams: + . Fixed bug GH-9316 ($http_response_header is wrong for long status line). + (cmb, timwolla) diff --git a/data/releases/8.1/8.1.11/release.json b/data/releases/8.1/8.1.11/release.json new file mode 100644 index 0000000000..4a4bb52176 --- /dev/null +++ b/data/releases/8.1/8.1.11/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.11", + "date": "29 Sep 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.11.tar.gz", + "name": "PHP 8.1.11 (tar.gz)", + "sha256": "3660e8408321149f5d382bb8eeb9ea7b12ea8dd7ea66069da33f6f7383750ab2" + }, + { + "filename": "php-8.1.11.tar.bz2", + "name": "PHP 8.1.11 (tar.bz2)", + "sha256": "af6250b18b4403b6eeff9b4a02786ac86a12a208141f6f65478f79256f47f246" + }, + { + "filename": "php-8.1.11.tar.xz", + "name": "PHP 8.1.11 (tar.xz)", + "sha256": "3005198d7303f87ab31bc30695de76e8ad62783f806b6ab9744da59fe41cc5bd" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.12/announcement.html b/data/releases/8.1/8.1.12/announcement.html new file mode 100644 index 0000000000..85a2071975 --- /dev/null +++ b/data/releases/8.1/8.1.12/announcement.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/8.1.12/changes.txt b/data/releases/8.1/8.1.12/changes.txt new file mode 100644 index 0000000000..23728e333f --- /dev/null +++ b/data/releases/8.1/8.1.12/changes.txt @@ -0,0 +1,29 @@ +- Core: + . Fixes segfault with Fiber on FreeBSD i386 architecture. (David Carlier) + +- Fileinfo: + . Fixed bug GH-8805 (finfo returns wrong mime type for woff/woff2 files). + (Anatol) + +- GD: + . Fixed bug #81739: OOB read due to insufficient input validation in + imageloadfont(). (CVE-2022-31630) (cmb) + +- Hash: + . Fixed bug #81738: buffer overflow in hash_update() on long parameter. + (CVE-2022-37454) (nicky at mouha dot be) + +- MBString: + - Fixed bug GH-9683 (Problem when ISO-2022-JP-MS is specified in + mb_ encode_mimeheader). (Alex Dowad) + +- Opcache: + . Added indirect call reduction for jit on x86 architectures. (wxue1) + +- Session: + . Fixed bug GH-9583 (session_create_id() fails with user defined save handler + that doesn't have a validateId() method). (Girgias) + +- Streams: + . Fixed bug GH-9590 (stream_select does not abort upon exception or empty + valid fd set). (Arnaud) diff --git a/data/releases/8.1/8.1.12/release.json b/data/releases/8.1/8.1.12/release.json new file mode 100644 index 0000000000..e24146d1f8 --- /dev/null +++ b/data/releases/8.1/8.1.12/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.12", + "date": "27 Oct 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.12.tar.gz", + "name": "PHP 8.1.12 (tar.gz)", + "sha256": "e0e7c823c9f9aa4c021f5e34ae1a7acafc2a9f3056ca60eb70a8af8f33da3fdf" + }, + { + "filename": "php-8.1.12.tar.bz2", + "name": "PHP 8.1.12 (tar.bz2)", + "sha256": "f87d73e917facf78de7bcde53fc2faa4d4dbe0487a9406e1ab68c8ae8f33eb03" + }, + { + "filename": "php-8.1.12.tar.xz", + "name": "PHP 8.1.12 (tar.xz)", + "sha256": "08243359e2204d842082269eedc15f08d2eca726d0e65b93fb11f4bfc51bbbab" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.13/announcement.html b/data/releases/8.1/8.1.13/announcement.html new file mode 100644 index 0000000000..624dc56876 --- /dev/null +++ b/data/releases/8.1/8.1.13/announcement.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/8.1.13/changes.txt b/data/releases/8.1/8.1.13/changes.txt new file mode 100644 index 0000000000..de1c19ad42 --- /dev/null +++ b/data/releases/8.1/8.1.13/changes.txt @@ -0,0 +1,34 @@ +- CLI: + . Fixed bug GH-9709 (Null pointer dereference with -w/-s options). (Adam Saponara) + +- Core: + . Fixed bug GH-9752 (Generator crashes when interrupted during argument + evaluation with extra named params). (Arnaud) + . Fixed bug GH-9801 (Generator crashes when memory limit is exceeded during + initialization). (Arnaud) + . Fixed potential NULL pointer dereference Windows shm*() functions. (cmb) + . Fixed bug GH-9750 (Generator memory leak when interrupted during argument + evaluation. (Arnaud) + +- Date: + . Fixed bug GH-9763 (DateTimeZone ctr mishandles input and adds null byte if + the argument is an offset larger than 100*60 minutes). (Derick) + +- FPM: + . Fixed bug GH-9754 (SaltStack (using Python subprocess) hangs when running + php-fpm 8.1.11). (Jakub Zelenka) + +- mysqli: + . Fixed bug GH-9841 (mysqli_query throws warning despite using + silenced error mode). (Kamil Tekiela) + +- MySQLnd: + . Fixed potential heap corruption due to alignment mismatch. (cmb) + +- OpenSSL: + . Fixed bug GH-8430 (OpenSSL compiled with no-md2, no-md4 or no-rmd160 does + not build). (Jakub Zelenka, fsbruva) + +- SOAP: + . Fixed GH-9720 (Null pointer dereference while serializing the response). + (cmb) diff --git a/data/releases/8.1/8.1.13/release.json b/data/releases/8.1/8.1.13/release.json new file mode 100644 index 0000000000..a90f996c8a --- /dev/null +++ b/data/releases/8.1/8.1.13/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.13", + "date": "24 Nov 2022", + "tags": [], + "source": [ + { + "filename": "php-8.1.13.tar.gz", + "name": "PHP 8.1.13 (tar.gz)", + "sha256": "eed1981ce9999d807cb139a9d463ae54bbeda2a57a9a28ad513badf5b99b0073" + }, + { + "filename": "php-8.1.13.tar.bz2", + "name": "PHP 8.1.13 (tar.bz2)", + "sha256": "93fcfdfaaa3d094a0fdb18ce08d20f20d526ee3f07a146a8a8ec82ce00b237ca" + }, + { + "filename": "php-8.1.13.tar.xz", + "name": "PHP 8.1.13 (tar.xz)", + "sha256": "b15ef0ccdd6760825604b3c4e3e73558dcf87c75ef1d68ef4289d8fd261ac856" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.14/announcement.html b/data/releases/8.1/8.1.14/announcement.html new file mode 100644 index 0000000000..5ea92891e6 --- /dev/null +++ b/data/releases/8.1/8.1.14/announcement.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/8.1.14/changes.txt b/data/releases/8.1/8.1.14/changes.txt new file mode 100644 index 0000000000..ad31bd161a --- /dev/null +++ b/data/releases/8.1/8.1.14/changes.txt @@ -0,0 +1,61 @@ +- Core: + . Fixed bug GH-9905 (constant() behaves inconsistent when class is undefined). + (cmb) + . Fixed bug GH-9918 (License information for xxHash is not included in + README.REDIST.BINS file). (Akama Hitoshi) + . Fixed bug GH-9650 (Can't initialize heap: [0x000001e7]). (Michael Voříšek) + . Fixed potentially undefined behavior in Windows ftok(3) emulation. (cmb) + +- Date: + . Fixed bug GH-9699 (DateTimeImmutable::diff differences in 8.1.10 onwards - + timezone related). (Derick) + . Fixed bug GH-9700 (DateTime::createFromFormat: Parsing TZID string is too + greedy). (Derick) + . Fixed bug GH-9866 (Time zone bug with \DateTimeInterface::diff()). (Derick) + . Fixed bug GH-9880 (DateTime diff returns wrong sign on day count when using + a timezone). (Derick) + +- FPM: + . Fixed bug GH-9959 (Solaris port event mechanism is still broken after bug + #66694). (Petr Sumbera) + . Fixed bug #68207 (Setting fastcgi.error_header can result in a WARNING). + (Jakub Zelenka) + . Fixed bug GH-8517 (Random crash of FPM master process in + fpm_stdio_child_said). (Jakub Zelenka) + +- MBString: + . Fixed bug GH-9535 (The behavior of mb_strcut in mbstring has been changed in + PHP8.1). (Nathan Freeman) + +- Opcache: + . Fixed bug GH-9968 (Segmentation Fault during OPCache Preload). + (Arnaud, michdingpayc) + +- OpenSSL: + . Fixed bug GH-9064 (PHP fails to build if openssl was built with --no-ec). + (Jakub Zelenka) + . Fixed bug GH-10000 (OpenSSL test failures when OpenSSL compiled with + no-dsa). (Jakub Zelenka) + +- Pcntl: + . Fixed bug GH-9298 (Signal handler called after rshutdown leads to crash). + (Erki Aring) + +- PDO_Firebird: + . Fixed bug GH-9971 (Incorrect NUMERIC value returned from PDO_Firebird). + (cmb) + +- PDO/SQLite: + . Fixed bug #81740 (PDO::quote() may return unquoted string). (CVE-2022-31631) + (cmb) + +- Session: + . Fixed GH-9932 (session name silently fails with . and [). (David Carlier) + +- SPL: + . Fixed GH-9883 (SplFileObject::__toString() reads next line). (Girgias) + . Fixed GH-10011 (Trampoline autoloader will get reregistered and cannot be + unregistered). (Girgias) + +- SQLite3: + . Fixed bug #81742 (open_basedir bypass in SQLite3 by using file URI). (cmb) diff --git a/data/releases/8.1/8.1.14/release.json b/data/releases/8.1/8.1.14/release.json new file mode 100644 index 0000000000..05e1881efe --- /dev/null +++ b/data/releases/8.1/8.1.14/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.14", + "date": "05 Jan 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.14.tar.gz", + "name": "PHP 8.1.14 (tar.gz)", + "sha256": "4755af2563ad187ceaf4a3632359c55e3f3be4050e0299e0f713bbb5e0531965" + }, + { + "filename": "php-8.1.14.tar.bz2", + "name": "PHP 8.1.14 (tar.bz2)", + "sha256": "14ca99333dd604a504a2368946485ac35d379c4da96d28dc515d7eb502dffa32" + }, + { + "filename": "php-8.1.14.tar.xz", + "name": "PHP 8.1.14 (tar.xz)", + "sha256": "e16e47a872d58685913ac848ce92ec49f42c1828110c98c65fb6265a08724a1a" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.15/announcement.html b/data/releases/8.1/8.1.15/announcement.html new file mode 100644 index 0000000000..3d70e0ae0d --- /dev/null +++ b/data/releases/8.1/8.1.15/announcement.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/8.1.15/changes.txt b/data/releases/8.1/8.1.15/changes.txt new file mode 100644 index 0000000000..c591cf9aa6 --- /dev/null +++ b/data/releases/8.1/8.1.15/changes.txt @@ -0,0 +1,63 @@ +- Apache: + . Fixed bug GH-9949 (Partial content on incomplete POST request). (cmb) + +- Core: + . Fixed bug GH-10072 (PHP crashes when execute_ex is overridden and a __call + trampoline is used from internal code). (Derick) + . Fix GH-10251 (Assertion `(flag & (1<<3)) == 0' failed). (nielsdos) + . Fix wrong comparison in block optimisation pass after opcode update. (nieldsdos) + . Fix GH-10248 (Assertion `!(zval_get_type(&(*(property))) == 10)' failed). + (nielsdos) + +- Date: + . Fixed bug GH-9891 (DateTime modify with unixtimestamp (@) must work like + setTimestamp). (Derick) + . Fixed bug GH-10218 (DateTimeZone fails to parse time zones that contain the + "+" character). (Derick) + +- Fiber: + . Fix assertion on stack allocation size. (nielsdos) + +- FPM: + . Fixed bug GH-9981 (FPM does not reset fastcgi.error_header). + (Jakub Zelenka) + . Fixed bug #67244 (Wrong owner:group for listening unix socket). + (Jakub Zelenka) + +- Hash: + . Handle exceptions from __toString in XXH3's initialization (nielsdos) + +- LDAP: + . Fixed bug GH-10112 (LDAP\Connection::__construct() refers to ldap_create()). + (cmb) + +- MBString: + . Fixed: mb_strlen (and a couple of other mbstring functions) would wrongly treat 0x80, 0xFD, 0xFE, 0xFF, and certain other byte values as the first byte of a 2-byte SJIS character. (Alex Dowad) + +- Opcache: + . Fix inverted bailout value in zend_runtime_jit() (Max Kellermann). + . Fix access to uninitialized variable in accel_preload(). (nielsdos) + . Fix zend_jit_find_trace() crashes. (Max Kellermann) + . Added missing lock for EXIT_INVALIDATE in zend_jit_trace_exit. (Max Kellermann) + +- Phar: + . Fix wrong flags check for compression method in phar_object.c (nielsdos) + +- PHPDBG: + . Fix undefined behaviour in phpdbg_load_module_or_extension(). (nielsdos) + . Fix NULL pointer dereference in phpdbg_create_conditional_breal(). (nielsdos) + . Fix GH-9710: phpdbg memory leaks by option "-h" (nielsdos) + . Fix phpdbg segmentation fault in case of malformed input (nielsdos) + +- Posix: + . Fix memory leak in posix_ttyname() (girgias) + +- Standard: + . Fix GH-10187 (Segfault in stripslashes() with arm64). (nielsdos) + . Fix substr_replace with slots in repl_ht being UNDEF. (nielsdos) + +- TSRM: + . Fixed Windows shmget() wrt. IPC_PRIVATE. (Tyson Andre) + +- XMLWriter + . Fix missing check for xmlTextWriterEndElement (nielsdos) diff --git a/data/releases/8.1/8.1.15/release.json b/data/releases/8.1/8.1.15/release.json new file mode 100644 index 0000000000..fc36388566 --- /dev/null +++ b/data/releases/8.1/8.1.15/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.15", + "date": "02 Feb 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.15.tar.gz", + "name": "PHP 8.1.15 (tar.gz)", + "sha256": "4035236180efac535ff4f22db9ef3195672f31e3e0aa88f89c38ac0715beca3b" + }, + { + "filename": "php-8.1.15.tar.bz2", + "name": "PHP 8.1.15 (tar.bz2)", + "sha256": "18da0a94228f4207f8b9e3e23e881f2b74d0d6caefb908bdb5863d4a01035cc6" + }, + { + "filename": "php-8.1.15.tar.xz", + "name": "PHP 8.1.15 (tar.xz)", + "sha256": "cd450fb4ee50488c5bf5f08851f514e5a1cac18c9512234d9e16c3a1d35781a6" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.16/announcement.html b/data/releases/8.1/8.1.16/announcement.html new file mode 100644 index 0000000000..72bdc5fb24 --- /dev/null +++ b/data/releases/8.1/8.1.16/announcement.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/8.1.16/changes.txt b/data/releases/8.1/8.1.16/changes.txt new file mode 100644 index 0000000000..729d8bc63b --- /dev/null +++ b/data/releases/8.1/8.1.16/changes.txt @@ -0,0 +1,9 @@ +- Core: + . Fixed bug #81744 (Password_verify() always return true with some hash). + (CVE-2023-0567). (Tim Düsterhus) + . Fixed bug #81746 (1-byte array overrun in common path resolve code). + (CVE-2023-0568). (Niels Dossche) + +- SAPI: + . Fixed bug GHSA-54hq-v5wp-fqgv (DOS vulnerability when parsing multipart + request body). (CVE-2023-0662) (Jakub Zelenka) diff --git a/data/releases/8.1/8.1.16/release.json b/data/releases/8.1/8.1.16/release.json new file mode 100644 index 0000000000..273ff711c2 --- /dev/null +++ b/data/releases/8.1/8.1.16/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.16", + "date": "14 Feb 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.16.tar.gz", + "name": "PHP 8.1.16 (tar.gz)", + "sha256": "a929fb9ed3bc364a5dea4f64954e8aaaa3408b87df04d7c6f743a190f5594e84" + }, + { + "filename": "php-8.1.16.tar.bz2", + "name": "PHP 8.1.16 (tar.bz2)", + "sha256": "cd9f0ea14d82d9455587a49a0b6c802a7b8d8ff79703f9f48b17db010fb633ce" + }, + { + "filename": "php-8.1.16.tar.xz", + "name": "PHP 8.1.16 (tar.xz)", + "sha256": "d61f13d96a58b93c39672b58f25e1ee4ce88500f4acb1430cb01a514875c1258" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.17/announcement.html b/data/releases/8.1/8.1.17/announcement.html new file mode 100644 index 0000000000..734fa6f807 --- /dev/null +++ b/data/releases/8.1/8.1.17/announcement.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/8.1.17/changes.txt b/data/releases/8.1/8.1.17/changes.txt new file mode 100644 index 0000000000..cf69456f9d --- /dev/null +++ b/data/releases/8.1/8.1.17/changes.txt @@ -0,0 +1,96 @@ +- Core: + . Fixed incorrect check condition in ZEND_YIELD. (nielsdos) + . Fixed incorrect check condition in type inference. (nielsdos) + . Fixed overflow check in OnUpdateMemoryConsumption. (nielsdos) + . Fixed bug GH-9916 (Entering shutdown sequence with a fiber suspended in a + Generator emits an unavoidable fatal error or crashes). (Arnaud) + . Fixed bug GH-10437 (Segfault/assertion when using fibers in shutdown + function after bailout). (trowski) + . Fixed SSA object type update for compound assignment opcodes. (nielsdos) + . Fixed language scanner generation build. (Daniel Black) + . Fixed zend_update_static_property() calling zend_update_static_property_ex() + misleadingly with the wrong return type. (nielsdos) + . Fix bug GH-10570 (Fixed unknown string hash on property fetch with integer + constant name). (nielsdos) + . Fixed php_fopen_primary_script() call resulted on zend_destroy_file_handle() + freeing dangling pointers on the handle as it was uninitialized. (nielsdos) + +- Curl: + . Fixed deprecation warning at compile time. (Max Kellermann) + . Fixed bug GH-10270 (Unable to return CURL_READFUNC_PAUSE in readfunc + callback). (Pierrick Charron) + +- Date: + . Fix GH-10447 ('p' format specifier does not yield 'Z' for 00:00). (Derick) + +- FFI: + . Fixed incorrect bitshifting and masking in ffi bitfield. (nielsdos) + +- Fiber: + . Fixed assembly on alpine x86. (nielsdos) + . Fixed bug GH-10496 (segfault when garbage collector is invoked inside of + fiber). (Bob, Arnaud) + +- FPM: + . Fixed bug GH-10315 (FPM unknown child alert not valid). (Jakub Zelenka) + . Fixed bug GH-10385 (FPM successful config test early exit). (nielsdos) + +- Intl: + . Fixed bug GH-10647 (Spoolchecker isSuspicious/areConfusable methods + error code's argument always returning NULL0. (Nathan Freeman) + +- JSON: + . Fixed JSON scanner and parser generation build. + (Daniel Black, Jakub Zelenka) + +- MBString: + . ext/mbstring: fix new_value length check. (Max Kellermann) + . Fix bug GH-10627 (mb_convert_encoding crashes PHP on Windows). (nielsdos) + +- Opcache: + . Fix incorrect page_size check. (nielsdos) + . Fix readonly modification check when using inc/dec operators on readonly + property with JIT. (ilutov) + +- OpenSSL: + . Fixed php_openssl_set_server_dh_param() DH params errors handling. (nielsdos) + +- PDO OCI: + . Fixed bug #60994 (Reading a multibyte CLOB caps at 8192 chars). + (Michael Voříšek) + +- PHPDBG: + . Fixed bug GH-10715 (heap buffer overflow on --run option misuse). (nielsdos) + +- PGSQL: + . Fix GH-10672 (pg_lo_open segfaults in the strict_types mode). (girgias) + +- Phar: + . Fix incorrect check in phar tar parsing. (nielsdos) + +- Reflection: + . Fixed bug GH-10623 (Reflection::getClosureUsedVariables opcode fix with + variadic arguments). (nielsdos) + . Fix Segfault when using ReflectionFiber suspended by an internal function. + (danog) + +- Session: + . Fixed ps_files_cleanup_dir() on failure code paths with -1 instead of 0 as + the latter was considered success by callers. (nielsdos). + +- Standard: + . Fixed bug GH-10292 (Made the default value of the first param of srand() and + mt_srand() unknown). (kocsismate) + . Fix incorrect check in cs_8559_5 in map_from_unicode(). (nielsdos) + . Fix bug GH-9697 for reset/end/next/prev() attempting to move pointer of + properties table for certain internal classes such as FFI classes + . Fix incorrect error check in browsecap for pcre2_match(). (nielsdos) + +- Tidy: + . Fix memory leaks when attempting to open a non-existing file or a file over + 4GB. (Girgias) + . Add missing error check on tidyLoadConfig. (nielsdos) + +- Zlib: + . Fixed output_handler directive value's length which counted the string + terminator. (nieldos) diff --git a/data/releases/8.1/8.1.17/release.json b/data/releases/8.1/8.1.17/release.json new file mode 100644 index 0000000000..8af9c834cf --- /dev/null +++ b/data/releases/8.1/8.1.17/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.17", + "date": "16 Mar 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.17.tar.gz", + "name": "PHP 8.1.17 (tar.gz)", + "sha256": "ef270156291d90a80ce83d68eee812f301cf5e48836a0ff6fd2931913f8e25c5" + }, + { + "filename": "php-8.1.17.tar.bz2", + "name": "PHP 8.1.17 (tar.bz2)", + "sha256": "f4fb298a0eb091f944ecebac57b76daae768a970c2f51610a5ab24f34d8c0caf" + }, + { + "filename": "php-8.1.17.tar.xz", + "name": "PHP 8.1.17 (tar.xz)", + "sha256": "b5c48f95b8e1d8624dd05fc2eab7be13277f9a203ccba97bdca5a1a0fb4a1460" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.18/announcement.html b/data/releases/8.1/8.1.18/announcement.html new file mode 100644 index 0000000000..5d5cf05fb2 --- /dev/null +++ b/data/releases/8.1/8.1.18/announcement.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/8.1.18/changes.txt b/data/releases/8.1/8.1.18/changes.txt new file mode 100644 index 0000000000..58d589ef5b --- /dev/null +++ b/data/releases/8.1/8.1.18/changes.txt @@ -0,0 +1,74 @@ +- Core: + . Added optional support for max_execution_time in ZTS/Linux builds + (Kévin Dunglas) + . Fixed use-after-free in recursive AST evaluation. (ilutov) + . Fixed bug GH-8646 (Memory leak PHP FPM 8.1). (nielsdos) + . Fixed bug GH-10801 (Named arguments in CTE functions cause a segfault). + (nielsdos) + . Fixed bug GH-8789 (PHP 8.0.20 (ZTS) zend_signal_handler_defer crashes on + apache). (nielsdos) + . Fixed bug GH-10015 (zend_signal_handler_defer crashes on apache shutdown). + (nielsdos) + . Fixed bug GH-10810 (Fix NUL byte terminating Exception::__toString()). + (ilutov) + . Fix potential memory corruption when mixing __callStatic() and FFI. (ilutov) + +- Date: + . Fixed bug GH-10583 (DateTime modify with tz pattern should not update + linked timezone). (Derick) + +- FPM: + . Fixed bug GH-10611 (fpm_env_init_main leaks environ). (nielsdos) + . Destroy file_handle in fpm_main. (Jakub Zelenka, nielsdos) + . Fixed bug #74129 (Incorrect SCRIPT_NAME with apache ProxyPassMatch when + spaces are in path). (Jakub Zelenka) + +- FTP: + . Propagate success status of ftp_close(). (nielsdos) + . Fixed bug GH-10521 (ftp_get/ftp_nb_get resumepos offset is maximum 10GB). + (nielsdos) + +- IMAP: + . Fix build failure with Clang 16. (orlitzky) + +- MySQLnd: + . Fixed bug GH-8979 (Possible Memory Leak with SSL-enabled MySQL + connections). (nielsdos) + +- Opcache: + . Fixed build for macOS to cater with pkg-config settings. (David Carlier) + . Fixed bug GH-8065 (opcache.consistency_checks > 0 causes segfaults in + PHP >= 8.1.5 in fpm context). (nielsdos) + +- OpenSSL: + . Add missing error checks on file writing functions. (nielsdos) + +- PDO Firebird: + . Fixed bug GH-10908 (Bus error with PDO Firebird on RPI with 64 bit kernel + and 32 bit userland). (nielsdos) + +- PDO ODBC: + . Fixed missing and inconsistent error checks on SQLAllocHandle. (nielsdos) + +- Phar: + . Fixed bug GH-10766 (PharData archive created with Phar::Zip format does + not keep files metadata (datetime)). (nielsdos) + . Add missing error checks on EVP_MD_CTX_create() and EVP_VerifyInit(). + (nielsdos) + +- PGSQL: + . Fixed typo in the array returned from pg_meta_data (extended mode). + (David Carlier) + +- SPL: + . Fixed bug GH-10519 (Array Data Address Reference Issue). (Nathan Freeman) + . Fixed bug GH-10844 (ArrayIterator allows modification of readonly props). + (ilutov) + +- Standard: + . Fixed bug GH-10885 (stream_socket_server context leaks). (ilutov) + . Fixed bug GH-10052 (Browscap crashes PHP 8.1.12 on request shutdown + (apache2)). (nielsdos) + . Fixed oss-fuzz #57392 (Buffer-overflow in php_fgetcsv() with \0 delimiter + and enclosure). (ilutov) + . Fixed undefined behaviour in unpack(). (nielsdos) diff --git a/data/releases/8.1/8.1.18/release.json b/data/releases/8.1/8.1.18/release.json new file mode 100644 index 0000000000..d3c54a8d22 --- /dev/null +++ b/data/releases/8.1/8.1.18/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.18", + "date": "13 Apr 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.18.tar.gz", + "name": "PHP 8.1.18 (tar.gz)", + "sha256": "8b6b12902e7d6bdf68668acc067b4d75a3c504722f768098c5f80c7d7bfd2563" + }, + { + "filename": "php-8.1.18.tar.bz2", + "name": "PHP 8.1.18 (tar.bz2)", + "sha256": "d2ac30d6b574fca594fe0cc01c0693e23585b27443e342b0aab07274cde4416e" + }, + { + "filename": "php-8.1.18.tar.xz", + "name": "PHP 8.1.18 (tar.xz)", + "sha256": "f3553370f8ba42729a9ce75eed17a2111d32433a43b615694f6a571b8bad0e39" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.19/announcement.html b/data/releases/8.1/8.1.19/announcement.html new file mode 100644 index 0000000000..bf8a41c6c5 --- /dev/null +++ b/data/releases/8.1/8.1.19/announcement.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/8.1.19/changes.txt b/data/releases/8.1/8.1.19/changes.txt new file mode 100644 index 0000000000..2bcf7d7b7f --- /dev/null +++ b/data/releases/8.1/8.1.19/changes.txt @@ -0,0 +1,30 @@ +- Core: + . Fix inconsistent float negation in constant expressions. (ilutov) + . Fixed bug GH-8841 (php-cli core dump calling a badly formed function). + (nielsdos) + . Fixed bug GH-10737 (PHP 8.1.16 segfaults on line 597 of + sapi/apache2handler/sapi_apache2.c). (nielsdos, ElliotNB) + . Fixed bug GH-11028 (Heap Buffer Overflow in zval_undefined_cv.). (nielsdos) + . Fixed bug GH-11108 (Incorrect CG(memoize_mode) state after bailout in ??=). + (ilutov) + +- DOM: + . Fixed bug #80602 (Segfault when using DOMChildNode::before()). + (Nathan Freeman) + . Fixed incorrect error handling in dom_zvals_to_fragment(). (nielsdos) + +- Exif: + . Fixed bug GH-9397 (exif read : warnings and errors : Potentially invalid + endianess, Illegal IFD size and Undefined index). (nielsdos) + +- Intl: + . Fixed bug GH-11071 (TZData version not displayed anymore). (Remi) + +- PCRE: + . Fixed bug GH-10968 (Segfault in preg_replace_callback_array()). (ilutov) + +- Standard: + . Fixed bug GH-10990 (mail() throws TypeError after iterating over + $additional_headers array by reference). (nielsdos) + . Fixed bug GH-9775 (Duplicates returned by array_unique when using enums). + (ilutov) diff --git a/data/releases/8.1/8.1.19/release.json b/data/releases/8.1/8.1.19/release.json new file mode 100644 index 0000000000..ac131f2137 --- /dev/null +++ b/data/releases/8.1/8.1.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.19", + "date": "11 May 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.19.tar.gz", + "name": "PHP 8.1.19 (tar.gz)", + "sha256": "0ebb6b0ecf5d8e355c2f1362807f9b73c6e803d496c5ad3e4fb00be989988372" + }, + { + "filename": "php-8.1.19.tar.bz2", + "name": "PHP 8.1.19 (tar.bz2)", + "sha256": "64207207fda30be926a2ef1f66ff266bf1fdc7e03339bc99fbba0a1245e4279b" + }, + { + "filename": "php-8.1.19.tar.xz", + "name": "PHP 8.1.19 (tar.xz)", + "sha256": "f42f0e93467415b2d30aa5b7ac825f0079a74207e0033010383cdc1e13657379" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.2/announcement.html b/data/releases/8.1/8.1.2/announcement.html new file mode 100644 index 0000000000..17043bfd7f --- /dev/null +++ b/data/releases/8.1/8.1.2/announcement.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/8.1.2/changes.txt b/data/releases/8.1/8.1.2/changes.txt new file mode 100644 index 0000000000..e0e2449011 --- /dev/null +++ b/data/releases/8.1/8.1.2/changes.txt @@ -0,0 +1,65 @@ +- Core: + . Fixed bug #81216 (Nullsafe operator leaks dynamic property name). (Dmitry) + . Fixed bug #81684 (Using null coalesce assignment with $GLOBALS["x"] produces + opcode error). (ilutov) + . Fixed bug #81656 (GCC-11 silently ignores -R). (Michael Wallner) + . Fixed bug #81683 (Misleading "access type ... must be public" error message + on final or abstract interface methods). (ilutov) + . Fixed bug #81585 (cached_chunks are not counted to real_size on shutdown). + (cmb) + . Fixed bug GH-7757 (Multi-inherited final constant causes fatal error). + (cmb) + . Fixed zend_fibers.c build with ZEND_FIBER_UCONTEXT. (Petr Sumbera) + . Added riscv64 support for fibers. (Jeremie Courreges-Anglas) + +- Filter: + . Fixed FILTER_FLAG_NO_RES_RANGE flag. (Yifan Tong) + +- Hash: + . Fixed bug GH-7759 (Incorrect return types for hash() and hash_hmac()). + (cmb) + . Fixed bug GH-7826 (Inconsistent argument name in hash_hmac_file and + hash_file). (cmb) + +- MBString: + . Fixed bug #81693 (mb_check_encoding(7bit) segfaults). (cmb) + +- MySQLi: + . Fixed bug #81658 (MYSQL_OPT_LOAD_DATA_LOCAL_DIR not available in MariaDB). + (devnexen) + . Introduced MYSQLI_IS_MARIADB. (devnexen) + . Fixed bug GH-7746 (mysqli_sql_exception->getSqlState()). (Kamil Tekiela) + +- MySQLnd: + . Fixed bug where large bigints may be truncated. (Nathan Freeman, cmb) + +- OCI8: + . Fixed bug GH-7765 (php_oci_cleanup_global_handles segfaults at second + call). (cmb) + +- OPcache: + . Fixed bug #81679 (Tracing JIT crashes on reattaching). (cmb) + +- Readline: + . Fixed bug #81598 (Cannot input unicode characters in PHP 8 interactive + shell). (Nikita) + +- Reflection: + . Fixed bug #81681 (ReflectionEnum throwing exceptions). (cmb) + +- PDO_PGSQL: + . Fixed error message allocation of PDO PgSQL. (SATO Kentaro) + +- Sockets: + . Avoid void* arithmetic in sockets/multicast.c on NetBSD. (David Carlier) + . Fixed ext/sockets build on Haiku. (David Carlier) + +- Spl: + . Fixed bug #75917 (SplFileObject::seek broken with CSV flags). (Aliaksandr + Bystry) + . Fixed bug GH-7809 (Cloning a faked SplFileInfo object may segfault). (cmb) + +- Standard: + . Fixed bug GH-7748 (gethostbyaddr outputs binary string). (cmb) + . Fixed bug GH-7815 (php_uname doesn't recognise latest Windows versions). + (David Warner) diff --git a/data/releases/8.1/8.1.2/release.json b/data/releases/8.1/8.1.2/release.json new file mode 100644 index 0000000000..c2240d9530 --- /dev/null +++ b/data/releases/8.1/8.1.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.2", + "date": "20 Jan 2022", + "tags": [], + "source": [ + { + "filename": "php-8.1.2.tar.gz", + "name": "PHP 8.1.2 (tar.gz)", + "sha256": "9992409c0543e0c8e89914f7307e1485a08c057091146e4731565b59065f8bde" + }, + { + "filename": "php-8.1.2.tar.bz2", + "name": "PHP 8.1.2 (tar.bz2)", + "sha256": "913dc7dd4388427fa33ea4ac89834e856ff5394f4218eace260a3a279f5b53a9" + }, + { + "filename": "php-8.1.2.tar.xz", + "name": "PHP 8.1.2 (tar.xz)", + "sha256": "6b448242fd360c1a9f265b7263abf3da25d28f2b2b0f5465533b69be51a391dd" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.20/announcement.html b/data/releases/8.1/8.1.20/announcement.html new file mode 100644 index 0000000000..fd5a8d00c1 --- /dev/null +++ b/data/releases/8.1/8.1.20/announcement.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/8.1.20/changes.txt b/data/releases/8.1/8.1.20/changes.txt new file mode 100644 index 0000000000..30a2227fde --- /dev/null +++ b/data/releases/8.1/8.1.20/changes.txt @@ -0,0 +1,66 @@ +- Core: + . Fixed bug GH-9068 (Conditional jump or move depends on uninitialised + value(s)). (nielsdos) + . Fixed bug GH-11189 (Exceeding memory limit in zend_hash_do_resize leaves + the array in an invalid state). (Bob) + . Fixed bug GH-11222 (foreach by-ref may jump over keys during a rehash). + (Bob) + +- Date: + . Fixed bug GH-11281 (DateTimeZone::getName() does not include seconds in + offset). (nielsdos) + +- Exif: + . Fixed bug GH-10834 (exif_read_data() cannot read smaller stream wrapper + chunk sizes). (nielsdos) + +- FPM: + . Fixed bug GH-10461 (PHP-FPM segfault due to after free usage of + child->ev_std(out|err)). (Jakub Zelenka) + . Fixed bug #64539 (FPM status page: query_string not properly JSON encoded). + (Jakub Zelenka) + . Fixed memory leak for invalid primary script file handle. (Jakub Zelenka) + +- Hash: + . Fixed bug GH-11180 (hash_file() appears to be restricted to 3 arguments). + (nielsdos) + +- LibXML: + . Fixed bug GH-11160 (Few tests failed building with new libxml 2.11.0). + (nielsdos) + +- Opcache: + . Fixed bug GH-11134 (Incorrect match default branch optimization). (ilutov) + . Fixed too wide OR and AND range inference. (nielsdos) + . Fixed bug GH-11245 (In some specific cases SWITCH with one default + statement will cause segfault). (nielsdos) + +- PGSQL: + . Fixed parameter parsing of pg_lo_export(). (kocsismate) + +- Phar: + . Fixed bug GH-11099 (Generating phar.php during cross-compile can't be + done). (peter279k) + +- Soap: + . Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient random + bytes in HTTP Digest authentication for SOAP). + (CVE-2023-3247) (nielsdos, timwolla) + . Fixed bug GH-8426 (make test fail while soap extension build). (nielsdos) + +- SPL: + . Fixed bug GH-11178 (Segmentation fault in spl_array_it_get_current_data + (PHP 8.1.18)). (nielsdos) + +- Standard: + . Fixed bug GH-11138 (move_uploaded_file() emits open_basedir warning for + source file). (ilutov) + . Fixed bug GH-11274 (POST/PATCH request switches to GET after a HTTP 308 + redirect). (nielsdos) + +- Streams: + . Fixed bug GH-10031 ([Stream] STREAM_NOTIFY_PROGRESS over HTTP emitted + irregularly for last chunk of data). (nielsdos) + . Fixed bug GH-11175 (Stream Socket Timeout). (nielsdos) + . Fixed bug GH-11177 (ASAN UndefinedBehaviorSanitizer when timeout = -1 + passed to stream_socket_accept/stream_socket_client). (nielsdos) diff --git a/data/releases/8.1/8.1.20/release.json b/data/releases/8.1/8.1.20/release.json new file mode 100644 index 0000000000..90f8052f74 --- /dev/null +++ b/data/releases/8.1/8.1.20/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.20", + "date": "08 Jun 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.20.tar.gz", + "name": "PHP 8.1.20 (tar.gz)", + "sha256": "b7d3e2a0c5bed37bb39e4627550d0ee5a4a600042b83c63037b0f5f84793cbe6" + }, + { + "filename": "php-8.1.20.tar.bz2", + "name": "PHP 8.1.20 (tar.bz2)", + "sha256": "55578587514a2707500f85319e57c0d4df9b8803cdb26566595ac4bf459dc4dd" + }, + { + "filename": "php-8.1.20.tar.xz", + "name": "PHP 8.1.20 (tar.xz)", + "sha256": "4c9973f599e93ed5e8ce2b45ce1d41bb8fb54ce642824fd23e56b52fd75029a6" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.21/announcement.html b/data/releases/8.1/8.1.21/announcement.html new file mode 100644 index 0000000000..d11815e089 --- /dev/null +++ b/data/releases/8.1/8.1.21/announcement.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/8.1.21/changes.txt b/data/releases/8.1/8.1.21/changes.txt new file mode 100644 index 0000000000..ebea90178a --- /dev/null +++ b/data/releases/8.1/8.1.21/changes.txt @@ -0,0 +1,62 @@ +- CLI: + . Fixed bug GH-11246 (cli/get_set_process_title fails on MacOS). + (James Lucas) + +- Core: + . Fixed build for the riscv64 architecture/GCC 12. (Daniil Gentili) + +- Curl: + . Fixed bug GH-11433 (Unable to set CURLOPT_ACCEPT_ENCODING to NULL). + (nielsdos) + +- DOM: + . Fixed bugs GH-11288 and GH-11289 and GH-11290 and GH-9142 (DOMExceptions + and segfaults with replaceWith). (nielsdos) + . Fixed bug GH-10234 (Setting DOMAttr::textContent results in an empty + attribute value). (nielsdos) + . Fix return value in stub file for DOMNodeList::item. (divinity76) + . Fix spec compliance error with '*' namespace for + DOMDocument::getElementsByTagNameNS. (nielsdos) + . Fix DOMElement::append() and DOMElement::prepend() hierarchy checks. + (nielsdos) + . Fixed bug GH-11347 (Memory leak when calling a static method inside an + xpath query). (nielsdos) + . Fixed bug #67440 (append_node of a DOMDocumentFragment does not reconcile + namespaces). (nielsdos) + . Fixed bug #81642 (DOMChildNode::replaceWith() bug when replacing a node + with itself). (nielsdos) + . Fixed bug #77686 (Removed elements are still returned by getElementById). + (nielsdos) + . Fixed bug #70359 (print_r() on DOMAttr causes Segfault in + php_libxml_node_free_list()). (nielsdos) + . Fixed bug #78577 (Crash in DOMNameSpace debug info handlers). (nielsdos) + . Fix lifetime issue with getAttributeNodeNS(). (nielsdos) + . Fix "invalid state error" with cloned namespace declarations. (nielsdos) + . Fixed bug #55294 and #47530 and #47847 (various namespace reconciliation + issues). (nielsdos) + . Fixed bug #80332 (Completely broken array access functionality with + DOMNamedNodeMap). (nielsdos) + +- Opcache: + . Fix allocation loop in zend_shared_alloc_startup(). (nielsdos) + . Access violation on smm_shared_globals with ALLOC_FALLBACK. (KoudelkaB) + . Fixed bug GH-11336 (php still tries to unlock the shared memory ZendSem + with opcache.file_cache_only=1 but it was never locked). (nielsdos) + +- OpenSSL: + . Fixed bug GH-9356 Incomplete validation of IPv6 Address fields in + subjectAltNames (James Lucas, Jakub Zelenka). + +- PGSQL: + . Fixed intermittent segfault with pg_trace. (David Carlier) + +- Phar: + . Fix cross-compilation check in phar generation for FreeBSD. (peter279k) + +- SPL: + . Fixed bug GH-11338 (SplFileInfo empty getBasename with more than one + slash). (nielsdos) + +- Standard: + . Fix access on NULL pointer in array_merge_recursive(). (ilutov) + . Fix exception handling in array_multisort(). (ilutov) diff --git a/data/releases/8.1/8.1.21/release.json b/data/releases/8.1/8.1.21/release.json new file mode 100644 index 0000000000..b5b70d02a5 --- /dev/null +++ b/data/releases/8.1/8.1.21/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.21", + "date": "06 Jul 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.21.tar.gz", + "name": "PHP 8.1.21 (tar.gz)", + "sha256": "a95f8d35924aa5705ad07a70dc994bf41b5d45126ecdec7aaad6edfbe5e1c37f" + }, + { + "filename": "php-8.1.21.tar.bz2", + "name": "PHP 8.1.21 (tar.bz2)", + "sha256": "6ea49e8335d632177f56b507160aa151c7b020185789a9c14859fce5d4a0776d" + }, + { + "filename": "php-8.1.21.tar.xz", + "name": "PHP 8.1.21 (tar.xz)", + "sha256": "e634a00b0c6a8cd39e840e9fb30b5227b820b7a9ace95b7b001053c1411c4821" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.22/announcement.html b/data/releases/8.1/8.1.22/announcement.html new file mode 100644 index 0000000000..6c24d51b7f --- /dev/null +++ b/data/releases/8.1/8.1.22/announcement.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/8.1.22/changes.txt b/data/releases/8.1/8.1.22/changes.txt new file mode 100644 index 0000000000..beedf77ffe --- /dev/null +++ b/data/releases/8.1/8.1.22/changes.txt @@ -0,0 +1,89 @@ +- Build: + . Fixed bug GH-11522 (PHP version check fails with '-' separator). + (SVGAnimate) + +- CLI: + . Fix interrupted CLI output causing the process to exit. (nielsdos) + +- Core: + . Fixed oss-fuzz #60011 (Mis-compilation of by-reference nullsafe operator). + (ilutov) + . Fixed use-of-uninitialized-value with ??= on assert. (ilutov) + . Fixed build for FreeBSD before the 11.0 releases. (David Carlier) + +- Curl: + . Fix crash when an invalid callback function is passed to + CURLMOPT_PUSHFUNCTION. (nielsdos) + +- Date: + . Fixed bug GH-11368 (Date modify returns invalid datetime). (Derick) + +- DOM: + . Fixed bug GH-11625 (DOMElement::replaceWith() doesn't replace node with + DOMDocumentFragment but just deletes node or causes wrapping <>> + depending on libxml2 version). (nielsdos) + +- Fileinfo: + . Fixed bug GH-11298 (finfo returns wrong mime type for xz files). (Anatol) + +- FTP: + . Fix context option check for "overwrite". (JonasQuinten) + . Fixed bug GH-10562 (Memory leak and invalid state with consecutive + ftp_nb_fget). (nielsdos) + +- GD: + . Fix most of the external libgd test failures. (Michael Orlitzky) + +- Hash: + . Fix use-of-uninitialized-value in hash_pbkdf2(), fix missing $options + parameter in signature. (ilutov) + +- Intl: + . Fix memory leak in MessageFormatter::format() on failure. (Girgias) + +- Libxml: + . Fixed bug GHSA-3qrf-m4j2-pcrr (Security issue with external entity loading + in XML without enabling it). (CVE-2023-3823) (nielsdos, ilutov) + +- MBString: + . Fix GH-11300 (license issue: restricted unicode license headers). + (nielsdos) + +- Opcache: + . Fixed bug GH-10914 (OPCache with Enum and Callback functions results in + segmentation fault). (nielsdos) + . Prevent potential deadlock if accelerated globals cannot be allocated. + (nielsdos) + +- PCNTL: + . Fixed bug GH-11498 (SIGCHLD is not always returned from proc_open). + (nielsdos) + +- PCRE: + . Mangle PCRE regex cache key with JIT option. (mvorisek) + +- PDO: + . Fix GH-11587 (After php8.1, when PDO::ATTR_EMULATE_PREPARES is true + and PDO::ATTR_STRINGIFY_FETCHES is true, decimal zeros are no longer + filled). (SakiTakamachi) + +- PDO SQLite: + . Fix GH-11492 (Make test failure: ext/pdo_sqlite/tests/bug_42589.phpt). + (KapitanOczywisty, CViniciusSDias) + +- Phar: + . Add missing check on EVP_VerifyUpdate() in phar util. (nielsdos) + . Fixed bug GHSA-jqcx-ccgc-xwhv (Buffer mismanagement in phar_dir_read()). + (CVE-2023-3824) (nielsdos) + +- PHPDBG: + . Fixed bug GH-9669 (phpdbg -h options doesn't list the -z option). (adsr) + +- Session: + . Removed broken url support for transferring session ID. (ilutov) + +- Standard: + . Fix serialization of RC1 objects appearing in object graph twice. (ilutov) + +- SQLite3: + . Fix replaced error handling in SQLite3Stmt::__construct. (nielsdos) diff --git a/data/releases/8.1/8.1.22/release.json b/data/releases/8.1/8.1.22/release.json new file mode 100644 index 0000000000..ad80d42202 --- /dev/null +++ b/data/releases/8.1/8.1.22/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.22", + "date": "03 Aug 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.22.tar.gz", + "name": "PHP 8.1.22 (tar.gz)", + "sha256": "f5140e94b139b4adec4b29c337537b7b6f1ef023197eb32be909e724e3da157a" + }, + { + "filename": "php-8.1.22.tar.bz2", + "name": "PHP 8.1.22 (tar.bz2)", + "sha256": "992354e382c6c618d01ed4be06beea8dec3178b14153df64d3c8c48b85e9fbc2" + }, + { + "filename": "php-8.1.22.tar.xz", + "name": "PHP 8.1.22 (tar.xz)", + "sha256": "9ea4f4cfe775cb5866c057323d6b320f3a6e0adb1be41a068ff7bfec6f83e71d" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.23/announcement.html b/data/releases/8.1/8.1.23/announcement.html new file mode 100644 index 0000000000..766547a9a1 --- /dev/null +++ b/data/releases/8.1/8.1.23/announcement.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/8.1.23/changes.txt b/data/releases/8.1/8.1.23/changes.txt new file mode 100644 index 0000000000..7732eb71d7 --- /dev/null +++ b/data/releases/8.1/8.1.23/changes.txt @@ -0,0 +1,61 @@ +- CLI: + . Fixed bug GH-11716 (cli server crashes on SIGINT when compiled with + ZEND_RC_DEBUG=1). (nielsdos) + . Fixed bug GH-10964 (Improve man page about the built-in server). + (Alexandre Daubois) + +- Core: + . Fixed strerror_r detection at configuration time. (Kévin Dunglas) + +- Date: + . Fixed bug GH-11416: Crash with DatePeriod when uninitialised objects + are passed in. (Derick) + +- DOM: + . Fix DOMEntity field getter bugs. (nielsdos) + . Fix incorrect attribute existence check in DOMElement::setAttributeNodeNS. + (nielsdos) + . Fix DOMCharacterData::replaceWith() with itself. (nielsdos) + . Fix empty argument cases for DOMParentNode methods. (nielsdos) + . Fixed bug GH-11791 (Wrong default value of DOMDocument::xmlStandalone). + (nielsdos) + . Fix json_encode result on DOMDocument. (nielsdos) + . Fix manually calling __construct() on DOM classes. (nielsdos) + . Fixed bug GH-11830 (ParentNode methods should perform their checks + upfront). (nielsdos) + . Fix segfault when DOMParentNode::prepend() is called when the child + disappears. (nielsdos) + +- FFI: + . Fix leaking definitions when using FFI::cdef()->new(...). (ilutov) + +- MySQLnd: + . Fixed bug GH-11440 (authentication to a sha256_password account fails over + SSL). (nielsdos) + . Fixed bug GH-11438 (mysqlnd fails to authenticate with sha256_password + accounts using passwords longer than 19 characters). + (nielsdos, Kamil Tekiela) + . Fixed bug GH-11550 (MySQL Statement has a empty query result when + the response field has changed, also Segmentation fault). + (Yurunsoft) + . Fixed invalid error message "Malformed packet" when connection is dropped. + (Kamil Tekiela) + +- Opcache: + . Fixed bug GH-11715 (opcache.interned_strings_buffer either has no effect or + opcache_get_status() / phpinfo() is wrong). (nielsdos) + . Avoid adding an unnecessary read-lock when loading script from shm if + restart is in progress. (mikhainin) + +- PCNTL: + . Revert behaviour of receiving SIGCHLD signals back to the behaviour + before 8.1.22. (nielsdos) + +- SPL: + . Fixed bug #81992 (SplFixedArray::setSize() causes use-after-free). + (nielsdos) + +- Standard: + . Prevent int overflow on $decimals in number_format. (Marc Bennewitz) + . Fixed bug GH-11870 (Fix off-by-one bug when truncating tempnam prefix) + (athos-ribeiro) diff --git a/data/releases/8.1/8.1.23/release.json b/data/releases/8.1/8.1.23/release.json new file mode 100644 index 0000000000..e8f4a22577 --- /dev/null +++ b/data/releases/8.1/8.1.23/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.23", + "date": "31 Aug 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.23.tar.gz", + "name": "PHP 8.1.23 (tar.gz)", + "sha256": "ec5330b3978edc8fe2f78830720505bf69d12542622b5cddccee63ae3a0e5b58" + }, + { + "filename": "php-8.1.23.tar.bz2", + "name": "PHP 8.1.23 (tar.bz2)", + "sha256": "929a62785177da892ddffca074bab2f1ff578473a0d4adb915c12f5f3e34ec1b" + }, + { + "filename": "php-8.1.23.tar.xz", + "name": "PHP 8.1.23 (tar.xz)", + "sha256": "fc48422fa7e75bb45916fc192a9f9728cb38bb2b5858572c51ea15825326360c" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.24/announcement.html b/data/releases/8.1/8.1.24/announcement.html new file mode 100644 index 0000000000..0f60f281b7 --- /dev/null +++ b/data/releases/8.1/8.1.24/announcement.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/8.1.24/changes.txt b/data/releases/8.1/8.1.24/changes.txt new file mode 100644 index 0000000000..5f2e818aab --- /dev/null +++ b/data/releases/8.1/8.1.24/changes.txt @@ -0,0 +1,42 @@ +- Core: + . Fixed bug GH-11937 (Constant ASTs containing objects). (ilutov) + . Fixed bug GH-11790 (On riscv64 require libatomic if actually needed). + (Jeremie Courreges-Anglas) + . Fixed bug GH-12073 (Segfault when freeing incompletely initialized + closures). (ilutov) + . Fixed bug GH-12060 (Internal iterator rewind handler is called twice). + (ju1ius) + . Fixed bug GH-12102 (Incorrect compile error when using array access on TMP + value in function call). (ilutov) + +- DOM: + . Fix memory leak when setting an invalid DOMDocument encoding. (nielsdos) + +- Iconv: + . Fixed build for NetBSD which still uses the old iconv signature. + (David Carlier) + +- Intl: + . Fixed bug GH-12020 (intl_get_error_message() broken after + MessageFormatter::formatMessage() fails). (Girgias) + +- MySQLnd: + . Fixed bug GH-10270 (Invalid error message when connection via SSL fails: + "trying to connect via (null)"). (Kamil Tekiela) + +- ODBC: + . Fixed memory leak with failed SQLPrepare. (NattyNarwhal) + . Fixed persistent procedural ODBC connections not getting closed. + (NattyNarwhal) + +- SimpleXML: + . Fixed bug #52751 (XPath processing-instruction() function is not + supported). (nielsdos) + +- SPL: + . Fixed bug GH-11972 (RecursiveCallbackFilterIterator regression in 8.1.18). + (nielsdos) + +- SQLite3: + . Fixed bug GH-11878 (SQLite3 callback functions cause a memory leak with + a callable array). (nielsdos, arnaud-lb) diff --git a/data/releases/8.1/8.1.24/release.json b/data/releases/8.1/8.1.24/release.json new file mode 100644 index 0000000000..7220f37b3f --- /dev/null +++ b/data/releases/8.1/8.1.24/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.24", + "date": "28 Sep 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.24.tar.gz", + "name": "PHP 8.1.24 (tar.gz)", + "sha256": "d6001a5c16765cd1897609fc71ff083e35db9a28c8874a1ff191cdebe80a6460" + }, + { + "filename": "php-8.1.24.tar.bz2", + "name": "PHP 8.1.24 (tar.bz2)", + "sha256": "b0ae5804a9ad53a7e28d0a32629495f816f935b10830c71f4ec15827185a73c9" + }, + { + "filename": "php-8.1.24.tar.xz", + "name": "PHP 8.1.24 (tar.xz)", + "sha256": "ee61f6232bb29bd2e785daf325d2177f2272bf80d086c295a724594e710bce3d" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.25/announcement.html b/data/releases/8.1/8.1.25/announcement.html new file mode 100644 index 0000000000..6ca0844a7d --- /dev/null +++ b/data/releases/8.1/8.1.25/announcement.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/8.1.25/changes.txt b/data/releases/8.1/8.1.25/changes.txt new file mode 100644 index 0000000000..3137668ee4 --- /dev/null +++ b/data/releases/8.1/8.1.25/changes.txt @@ -0,0 +1,71 @@ +- Core: + . Fixed bug GH-12207 (memory leak when class using trait with doc block). + (rioderelfte) + . Fixed bug GH-12215 (Module entry being overwritten causes type errors in + ext/dom). (nielsdos) + . Fixed bug GH-12273 (__builtin_cpu_init check). (Freaky) + . Fixed bug #80092 (ZTS + preload = segfault on shutdown). (nielsdos) + +- CLI: + . Ensure a single Date header is present. (coppolafab) + +- CType: + . Fixed bug GH-11997 (ctype_alnum 5 times slower in PHP 8.1 or greater). + (nielsdos) + +- DOM: + . Restore old namespace reconciliation behaviour. (nielsdos) + . Fixed bug GH-8996 (DOMNode serialization on PHP ^8.1). (nielsdos) + +- Fileinfo: + . Fixed bug GH-11891 (fileinfo returns text/xml for some svg files). (usarise) + +- Filter: + . Fix explicit FILTER_REQUIRE_SCALAR with FILTER_CALLBACK (ilutov) + +- Hash: + . Fixed bug GH-12186 (segfault copying/cloning a finalized HashContext). + (MaxSem) + +- Intl: + . Fixed bug GH-12243 (segfault on IntlDateFormatter::construct). + (David Carlier) + . Fixed bug GH-12282 (IntlDateFormatter::construct should throw an exception + on an invalid locale). (David Carlier) + +- MySQLnd: + . Fixed bug GH-12297 (PHP Startup: Invalid library (maybe not a PHP library) + 'mysqlnd.so' in Unknown on line). (nielsdos) + +- Opcache: + . Fixed opcache_invalidate() on deleted file. (mikhainin) + . Fixed bug GH-12380 (JIT+private array property access inside closure + accesses private property in child class). (nielsdos) + +- PCRE: + . Fixed bug GH-11956 (Backport upstream fix, PCRE regular expressions with + JIT enabled gives different result). (nielsdos) + +- SimpleXML: + . Fixed bug GH-12170 (Can't use xpath with comments in SimpleXML). (nielsdos) + . Fixed bug GH-12223 (Entity reference produces infinite loop in + var_dump/print_r). (nielsdos) + . Fixed bug GH-12167 (Unable to get processing instruction contents in + SimpleXML). (nielsdos) + . Fixed bug GH-12169 (Unable to get comment contents in SimpleXML). + (nielsdos) + +- Streams: + . Fixed bug GH-12190 (binding ipv4 address with both address and port at 0). + (David Carlier) + +- XML: + . Fix return type of stub of xml_parse_into_struct(). (nielsdos) + . Fix memory leak when calling xml_parse_into_struct() twice. (nielsdos) + +- XSL: + . Fix type error on XSLTProcessor::transformToDoc return value with + SimpleXML. (nielsdos) + +- Sockets: + . Fix socket_export_stream() with wrong protocol (twosee) diff --git a/data/releases/8.1/8.1.25/release.json b/data/releases/8.1/8.1.25/release.json new file mode 100644 index 0000000000..7aeca4037c --- /dev/null +++ b/data/releases/8.1/8.1.25/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.25", + "date": "26 Oct 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.25.tar.gz", + "name": "PHP 8.1.25 (tar.gz)", + "sha256": "1a8c59d6b3eccb404c229e947558d2bf1220c3dec0b0036690fadc07f39934ab" + }, + { + "filename": "php-8.1.25.tar.bz2", + "name": "PHP 8.1.25 (tar.bz2)", + "sha256": "a86a88c1840c1bc832bcfd2fbec3b8a1942c8314da5dff53f09f9c98d0c12e8a" + }, + { + "filename": "php-8.1.25.tar.xz", + "name": "PHP 8.1.25 (tar.xz)", + "sha256": "66fdba064aa119b1463a7969571d42f4642690275d8605ab5149bcc5107e2484" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.26/announcement.html b/data/releases/8.1/8.1.26/announcement.html new file mode 100644 index 0000000000..697544a8dc --- /dev/null +++ b/data/releases/8.1/8.1.26/announcement.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/8.1.26/changes.txt b/data/releases/8.1/8.1.26/changes.txt new file mode 100644 index 0000000000..a66ded71ee --- /dev/null +++ b/data/releases/8.1/8.1.26/changes.txt @@ -0,0 +1,62 @@ +- Core: + . Fixed bug GH-12468 (Double-free of doc_comment when overriding static + property via trait). (ilutov) + . Fixed segfault caused by weak references to FFI objects. (sj-i) + . Fixed max_execution_time: don't delete an unitialized timer. (Kévin Dunglas) + +- DOM: + . Fix registerNodeClass with abstract class crashing. (nielsdos) + . Add missing NULL pointer error check. (icy17) + . Fix validation logic of php:function() callbacks. (nielsdos) + +- Fiber: + . Fixed bug GH-11121 (ReflectionFiber segfault). (danog, trowski, bwoebi) + +- FPM: + . Fixed bug GH-9921 (Loading ext in FPM config does not register module + handlers). (Jakub Zelenka) + . Fixed bug GH-12232 (FPM: segfault dynamically loading extension without + opcache). (Jakub Zelenka) + +- Intl: + . Removed the BC break on IntlDateFormatter::construct which threw an + exception with an invalid locale. (David Carlier) + +- Opcache: + . Added warning when JIT cannot be enabled. (danog) + . Fixed bug GH-8143 (Crashes in zend_accel_inheritance_cache_find since + upgrading to 8.1.3 due to corrupt on-disk file cache). (turchanov) + +- OpenSSL: + . Fixed bug GH-12489 (Missing sigbio creation checking in openssl_cms_verify). + (Jakub Zelenka) + +- PCRE: + . Fixed bug GH-11374 (Backport upstream fix, Different preg_match result + with -d pcre.jit=0). (mvorisek) + +- SOAP: + . Fixed bug GH-12392 (Segmentation fault on SoapClient::__getTypes). + (nielsdos) + . Fixed bug #66150 (SOAP WSDL cache race condition causes Segmentation + Fault). (nielsdos) + . Fixed bug #67617 (SOAP leaves incomplete cache file on ENOSPC). (nielsdos) + . Fix incorrect uri check in SOAP caching. (nielsdos) + . Fix segfault and assertion failure with refcounted props and arrays. + (nielsdos) + . Fix potential crash with an edge case of persistent encoders. (nielsdos) + . Fixed bug #75306 (Memleak in SoapClient). (nielsdos) + +- Streams: + . Fixed bug #75708 (getimagesize with "&$imageinfo" fails on StreamWrappers). + (Jakub Zelenka) + +- XMLReader: + . Add missing NULL pointer error check. (icy17) + +- XMLWriter: + . Add missing NULL pointer error check. (icy17) + +- XSL: + . Add missing module dependency. (nielsdos) + . Fix validation logic of php:function() callbacks. (nielsdos) diff --git a/data/releases/8.1/8.1.26/release.json b/data/releases/8.1/8.1.26/release.json new file mode 100644 index 0000000000..68cf67a9bc --- /dev/null +++ b/data/releases/8.1/8.1.26/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.26", + "date": "23 Nov 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.26.tar.gz", + "name": "PHP 8.1.26 (tar.gz)", + "sha256": "d954cecfc3d294c2fccbe2b1a6bef784ce0d6c5d44a9e28f8a527e092825f2cb" + }, + { + "filename": "php-8.1.26.tar.bz2", + "name": "PHP 8.1.26 (tar.bz2)", + "sha256": "83bde249c84aa1a043a8c8d0eea09345c2cae69b9784cdf02229fc916fbb9ea0" + }, + { + "filename": "php-8.1.26.tar.xz", + "name": "PHP 8.1.26 (tar.xz)", + "sha256": "17f87133596449327451ad4b8d9911bfaea59ff5109f3a6f2bb679f967a8ea0f" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.27/announcement.html b/data/releases/8.1/8.1.27/announcement.html new file mode 100644 index 0000000000..d927a1d7df --- /dev/null +++ b/data/releases/8.1/8.1.27/announcement.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/8.1.27/changes.txt b/data/releases/8.1/8.1.27/changes.txt new file mode 100644 index 0000000000..d1f505926d --- /dev/null +++ b/data/releases/8.1/8.1.27/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Fixed oss-fuzz #54325 (Use-after-free of name in var-var with malicious + error handler). (ilutov) + . Fixed oss-fuzz #64209 (In-place modification of filename in + php_message_handler_for_zend). (ilutov) + . Fixed bug GH-12758 / GH-12768 (Invalid opline in OOM handlers within + ZEND_FUNC_GET_ARGS and ZEND_BIND_STATIC). (Florian Engelhardt) + +- DOM: + . Fixed bug GH-12616 (DOM: Removing XMLNS namespace node results in invalid + default: prefix). (nielsdos) + +- FPM: + . Fixed bug GH-12705 (Segmentation fault in fpm_status_export_to_zval). + (Patrick Prasse) + +- Intl: + . Fixed bug GH-12635 (Test bug69398.phpt fails with ICU 74.1). (nielsdos) + +- LibXML: + . Fixed bug GH-12702 (libxml2 2.12.0 issue building from src). (nono303) + +- MySQLnd: + . Avoid using uninitialised struct. (mikhainin) + +- OpenSSL: + . Fixed bug #50713 (openssl_pkcs7_verify() may ignore untrusted CAs). + (Jakub Zelenka) + +- PCRE: + . Fixed bug GH-12628 (The gh11374 test fails on Alpinelinux). (nielsdos) + +- PGSQL: + . Fixed bug GH-12763 wrong argument type for pg_untrace. (degtyarov) + +- PHPDBG: + . Fixed bug GH-12675 (MEMORY_LEAK in phpdbg_prompt.c). (nielsdos) + +- SQLite3: + . Fixed bug GH-12633 (sqlite3_defensive.phpt fails with sqlite 3.44.0). + (SakiTakamachi) + +- Standard: + . Fix memory leak in syslog device handling. (danog) + . Fixed bug GH-12621 (browscap segmentation fault when configured in the + vhost). (nielsdos) + . Fixed bug GH-12655 (proc_open() does not take into account references + in the descriptor array). (nielsdos) + +- Streams: + . Fixed bug #79945 (Stream wrappers in imagecreatefrompng causes segfault). + (Jakub Zelenka) + +- Zip: + . Fixed bug GH-12661 (Inconsistency in ZipArchive::addGlob remove_path Option + Behavior). (Remi) diff --git a/data/releases/8.1/8.1.27/release.json b/data/releases/8.1/8.1.27/release.json new file mode 100644 index 0000000000..64f5c83c1a --- /dev/null +++ b/data/releases/8.1/8.1.27/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.27", + "date": "21 Dec 2023", + "tags": [], + "source": [ + { + "filename": "php-8.1.27.tar.gz", + "name": "PHP 8.1.27 (tar.gz)", + "sha256": "9aa5d7a29389d799885d90740932697006d5d0f55d1def67678e0c14f6ab7b2d" + }, + { + "filename": "php-8.1.27.tar.bz2", + "name": "PHP 8.1.27 (tar.bz2)", + "sha256": "a15fd73ea44f2df30b07d24786e07d1948b0ea3eed0b8b845735d500dc28bff1" + }, + { + "filename": "php-8.1.27.tar.xz", + "name": "PHP 8.1.27 (tar.xz)", + "sha256": "479e65c3f05714d4aace1370e617d78e49e996ec7a7579a5be47535be61f0658" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.28/announcement.html b/data/releases/8.1/8.1.28/announcement.html new file mode 100644 index 0000000000..e10ea92bc4 --- /dev/null +++ b/data/releases/8.1/8.1.28/announcement.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/8.1.28/changes.txt b/data/releases/8.1/8.1.28/changes.txt new file mode 100644 index 0000000000..f4666a6c51 --- /dev/null +++ b/data/releases/8.1/8.1.28/changes.txt @@ -0,0 +1,7 @@ +- Standard: + . Fixed bug GHSA-pc52-254m-w9w7 (Command injection via array-ish $command + parameter of proc_open). (CVE-2024-1874) (Jakub Zelenka) + . Fixed bug GHSA-wpj3-hf5j-x4v4 (__Host-/__Secure- cookie bypass due to + partial CVE-2022-31629 fix). (CVE-2024-2756) (nielsdos) + . Fixed bug GHSA-h746-cjrr-wfmr (password_verify can erroneously return true, + opening ATO risk). (CVE-2024-3096) (Jakub Zelenka) diff --git a/data/releases/8.1/8.1.28/release.json b/data/releases/8.1/8.1.28/release.json new file mode 100644 index 0000000000..e29b7be0e1 --- /dev/null +++ b/data/releases/8.1/8.1.28/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.28", + "date": "11 Apr 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.28.tar.gz", + "name": "PHP 8.1.28 (tar.gz)", + "sha256": "a2a9d853f4a4c9ff8631da5dc3a6cec5ab083ef37a214877b0240dcfcdfdefea" + }, + { + "filename": "php-8.1.28.tar.bz2", + "name": "PHP 8.1.28 (tar.bz2)", + "sha256": "8be450096e0153c47d75384e7dd595cc897f1d53ce0060708ce9589bcc3141ee" + }, + { + "filename": "php-8.1.28.tar.xz", + "name": "PHP 8.1.28 (tar.xz)", + "sha256": "95d0b2e9466108fd750dab5c30a09e5c67f5ad2cb3b1ffb3625a038a755ad080" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.29/announcement.html b/data/releases/8.1/8.1.29/announcement.html new file mode 100644 index 0000000000..bcb2e072a2 --- /dev/null +++ b/data/releases/8.1/8.1.29/announcement.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/8.1.29/changes.txt b/data/releases/8.1/8.1.29/changes.txt new file mode 100644 index 0000000000..70a91d0da5 --- /dev/null +++ b/data/releases/8.1/8.1.29/changes.txt @@ -0,0 +1,21 @@ +- CGI: + . Fixed bug GHSA-3qgc-jrrr-25jv (Bypass of CVE-2012-1823, Argument Injection + in PHP-CGI). (CVE-2024-4577) (nielsdos) + +- Filter: + . Fixed bug GHSA-w8qr-v226-r27w (Filter bypass in filter_var FILTER_VALIDATE_URL). + (CVE-2024-5458) (nielsdos) + +- OpenSSL: + . The openssl_private_decrypt function in PHP, when using PKCS1 padding + (OPENSSL_PKCS1_PADDING, which is the default), is vulnerable to the Marvin Attack + unless it is used with an OpenSSL version that includes the changes from this pull + request: https://github.com/openssl/openssl/pull/13817 (rsa_pkcs1_implicit_rejection). + These changes are part of OpenSSL 3.2 and have also been backported to stable + versions of various Linux distributions, as well as to the PHP builds provided for + Windows since the previous release. All distributors and builders should ensure that + this version is used to prevent PHP from being vulnerable. (CVE-2024-2408) + +- Standard: + . Fixed bug GHSA-9fcc-425m-g385 (Bypass of CVE-2024-1874). + (CVE-2024-5585) (nielsdos) diff --git a/data/releases/8.1/8.1.29/release.json b/data/releases/8.1/8.1.29/release.json new file mode 100644 index 0000000000..7d8df6db3d --- /dev/null +++ b/data/releases/8.1/8.1.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.29", + "date": "06 Jun 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.29.tar.gz", + "name": "PHP 8.1.29 (tar.gz)", + "sha256": "8b2609bf1d3173aa38269a9af21532c65f730aadd3051f9aae011eea9e246de5" + }, + { + "filename": "php-8.1.29.tar.bz2", + "name": "PHP 8.1.29 (tar.bz2)", + "sha256": "87a60313263f2f533f180e719272ca5e47cd9884d4ec3c93720198eaffae0827" + }, + { + "filename": "php-8.1.29.tar.xz", + "name": "PHP 8.1.29 (tar.xz)", + "sha256": "288884af60581d4284baba2ace9ca6d646f72facbd3e3c2dd2acc7fe6f903536" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.3/announcement.html b/data/releases/8.1/8.1.3/announcement.html new file mode 100644 index 0000000000..60d3778eaa --- /dev/null +++ b/data/releases/8.1/8.1.3/announcement.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/8.1.3/changes.txt b/data/releases/8.1/8.1.3/changes.txt new file mode 100644 index 0000000000..9e40f9371c --- /dev/null +++ b/data/releases/8.1/8.1.3/changes.txt @@ -0,0 +1,35 @@ +- Core: + . Fixed bug #81430 (Attribute instantiation leaves dangling pointer). + (beberlei) + . Fixed bug GH-7896 (Environment vars may be mangled on Windows). (cmb) + . Fixed bug GH-7883 (Segfault when INI file is not readable). (Remi) + +- FFI: + . Fixed bug GH-7867 (FFI::cast() from pointer to array is broken). (cmb, + dmitry) + +- Filter: + . Fix #81708: UAF due to php_filter_float() failing for ints. + (CVE-2021-21708) (cmb) + +- FPM: + . Fixed memory leak on invalid port. (David Carlier) + . Fixed bug GH-7842 (Invalid OpenMetrics response format returned by FPM + status page. (Stefano Arlandini) + +- MBString: + . Fixed bug GH-7902 (mb_send_mail may delimit headers with LF only). (cmb) + +- MySQLnd: + . Fixed bug GH-7972 (MariaDB version prefix 5.5.5- is not stripped). (Kamil Tekiela) + +- pcntl: + . Fixed pcntl_rfork build for DragonFlyBSD. (David Carlier) + +- Sockets: + . Fixed bug GH-7978 (sockets extension compilation errors). (David Carlier) + +- Standard: + . Fixed bug GH-7899 (Regression in unpack for negative int value). (Remi) + . Fixed bug GH-7875 (mails are sent even if failure to log throws exception). + (cmb) diff --git a/data/releases/8.1/8.1.3/release.json b/data/releases/8.1/8.1.3/release.json new file mode 100644 index 0000000000..137bbf71fe --- /dev/null +++ b/data/releases/8.1/8.1.3/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.3", + "date": "17 Feb 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.3.tar.gz", + "name": "PHP 8.1.3 (tar.gz)", + "sha256": "92d74f5a4af7de90cef6cda65bd0c341dc9a1027b32f70e7b8861f6f68a38bb2" + }, + { + "filename": "php-8.1.3.tar.bz2", + "name": "PHP 8.1.3 (tar.bz2)", + "sha256": "354c4e2c506046eca812d1fc2526884a2f54b5e3d20ef0ede919a69eb232d0be" + }, + { + "filename": "php-8.1.3.tar.xz", + "name": "PHP 8.1.3 (tar.xz)", + "sha256": "5d65a11071b47669c17452fb336c290b67c101efb745c1dbe7525b5caf546ec6" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.30/announcement.html b/data/releases/8.1/8.1.30/announcement.html new file mode 100644 index 0000000000..5c0b74e660 --- /dev/null +++ b/data/releases/8.1/8.1.30/announcement.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/8.1.30/changes.txt b/data/releases/8.1/8.1.30/changes.txt new file mode 100644 index 0000000000..c4184c11d0 --- /dev/null +++ b/data/releases/8.1/8.1.30/changes.txt @@ -0,0 +1,14 @@ +- CGI: + . Fixed bug GHSA-p99j-rfp4-xqvq (Bypass of CVE-2024-4577, Parameter Injection + Vulnerability). (CVE-2024-8926) (nielsdos) + . Fixed bug GHSA-94p6-54jq-9mwp (cgi.force_redirect configuration is + bypassable due to the environment variable collision). (CVE-2024-8927) + (nielsdos) + +- FPM: + . Fixed bug GHSA-865w-9rf3-2wh5 (Logs from childrens may be altered). + (CVE-2024-9026) (Jakub Zelenka) + +- SAPI: + . Fixed bug GHSA-9pqp-7h25-4f32 (Erroneous parsing of multipart form data). + (CVE-2024-8925) (Arnaud) diff --git a/data/releases/8.1/8.1.30/release.json b/data/releases/8.1/8.1.30/release.json new file mode 100644 index 0000000000..768fd5bd3d --- /dev/null +++ b/data/releases/8.1/8.1.30/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.30", + "date": "26 Sep 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.30.tar.gz", + "name": "PHP 8.1.30 (tar.gz)", + "sha256": "80addd302b7e9708e0d106779c3827520eccaf14af1149174b51da33d63e6af7" + }, + { + "filename": "php-8.1.30.tar.bz2", + "name": "PHP 8.1.30 (tar.bz2)", + "sha256": "cb1625e5ac49b91037477e3e7767bb0624343971aeb992f4791b618af571d23e" + }, + { + "filename": "php-8.1.30.tar.xz", + "name": "PHP 8.1.30 (tar.xz)", + "sha256": "f24a6007f0b25a53cb7fbaee69c85017e0345b62089c2425a0afb7e177192ed1" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.31/announcement.html b/data/releases/8.1/8.1.31/announcement.html new file mode 100644 index 0000000000..d180f5ec2b --- /dev/null +++ b/data/releases/8.1/8.1.31/announcement.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/8.1.31/changes.txt b/data/releases/8.1/8.1.31/changes.txt new file mode 100644 index 0000000000..09296d9bc9 --- /dev/null +++ b/data/releases/8.1/8.1.31/changes.txt @@ -0,0 +1,25 @@ +- CLI: + . Fixed bug GHSA-4w77-75f9-2c8w (Heap-Use-After-Free in sapi_read_post_data + Processing in CLI SAPI Interface). (nielsdos) + +- LDAP: + . Fixed bug GHSA-g665-fm4p-vhff (OOB access in ldap_escape). (CVE-2024-8932) + (nielsdos) + +- MySQLnd: + . Fixed bug GHSA-h35g-vwh6-m678 (Leak partial content of the heap through + heap buffer over-read). (CVE-2024-8929) (Jakub Zelenka) + +- PDO DBLIB: + . Fixed bug GHSA-5hqh-c84r-qjcv (Integer overflow in the dblib quoter causing + OOB writes). (CVE-2024-11236) (nielsdos) + +- PDO Firebird: + . Fixed bug GHSA-5hqh-c84r-qjcv (Integer overflow in the firebird quoter + causing OOB writes). (CVE-2024-11236) (nielsdos) + +- Streams: + . Fixed bug GHSA-c5f2-jwm7-mmq2 (Configuring a proxy in a stream context + might allow for CRLF injection in URIs). (CVE-2024-11234) (Jakub Zelenka) + . Fixed bug GHSA-r977-prxv-hc43 (Single byte overread with + convert.quoted-printable-decode filter). (CVE-2024-11233) (nielsdos) diff --git a/data/releases/8.1/8.1.31/release.json b/data/releases/8.1/8.1.31/release.json new file mode 100644 index 0000000000..a625624fbd --- /dev/null +++ b/data/releases/8.1/8.1.31/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.31", + "date": "21 Nov 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.31.tar.gz", + "name": "PHP 8.1.31 (tar.gz)", + "sha256": "618923b407c4575bfee085f00c4aaa16a5cc86d4b1eb893c0f352d61541bbfb1" + }, + { + "filename": "php-8.1.31.tar.bz2", + "name": "PHP 8.1.31 (tar.bz2)", + "sha256": "0b39828b345151caf1b795d9f4b923c9887231776c33076dfc9d90a44390d0dc" + }, + { + "filename": "php-8.1.31.tar.xz", + "name": "PHP 8.1.31 (tar.xz)", + "sha256": "c4f244d46ba51c72f7d13d4f66ce6a9e9a8d6b669c51be35e01765ba58e7afca" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.32/announcement.html b/data/releases/8.1/8.1.32/announcement.html new file mode 100644 index 0000000000..4dd20c87cc --- /dev/null +++ b/data/releases/8.1/8.1.32/announcement.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/8.1.32/changes.txt b/data/releases/8.1/8.1.32/changes.txt new file mode 100644 index 0000000000..4f0f0a21d8 --- /dev/null +++ b/data/releases/8.1/8.1.32/changes.txt @@ -0,0 +1,17 @@ +- LibXML: + . Fixed GHSA-wg4p-4hqh-c3g9 (Reocurrence of #72714). (nielsdos) + . Fixed GHSA-p3x9-6h7p-cgfc (libxml streams use wrong `content-type` header + when requesting a redirected resource). (CVE-2025-1219) (timwolla) + +- Streams: + . Fixed GHSA-hgf5-96fm-v528 (Stream HTTP wrapper header check might omit + basic auth header). (CVE-2025-1736) (Jakub Zelenka) + . Fixed GHSA-52jp-hrpf-2jff (Stream HTTP wrapper truncate redirect location + to 1024 bytes). (CVE-2025-1861) (Jakub Zelenka) + . Fixed GHSA-pcmh-g36c-qc44 (Streams HTTP wrapper does not fail for headers + without colon). (CVE-2025-1734) (Jakub Zelenka) + . Fixed GHSA-v8xr-gpvj-cx9g (Header parser of `http` stream wrapper does not + handle folded headers). (CVE-2025-1217) (Jakub Zelenka) + +- Windows: + . Fixed phpize for Windows 11 (24H2). (bwoebi) diff --git a/data/releases/8.1/8.1.32/release.json b/data/releases/8.1/8.1.32/release.json new file mode 100644 index 0000000000..165eed9349 --- /dev/null +++ b/data/releases/8.1/8.1.32/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.32", + "date": "13 Mar 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.32.tar.gz", + "name": "PHP 8.1.32 (tar.gz)", + "sha256": "4846836d1de27dbd28e89180f073531087029a77e98e8e019b7b2eddbdb1baff" + }, + { + "filename": "php-8.1.32.tar.bz2", + "name": "PHP 8.1.32 (tar.bz2)", + "sha256": "a04fdd3df05f948df8a8f2c5d27ab54c1f43822c525f31fd20c19a282452d07c" + }, + { + "filename": "php-8.1.32.tar.xz", + "name": "PHP 8.1.32 (tar.xz)", + "sha256": "c582ac682a280bbc69bc2186c21eb7e3313cc73099be61a6bc1d2cd337cbf383" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.33/announcement.html b/data/releases/8.1/8.1.33/announcement.html new file mode 100644 index 0000000000..3ab092e96b --- /dev/null +++ b/data/releases/8.1/8.1.33/announcement.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/8.1.33/changes.txt b/data/releases/8.1/8.1.33/changes.txt new file mode 100644 index 0000000000..cd0639d6a0 --- /dev/null +++ b/data/releases/8.1/8.1.33/changes.txt @@ -0,0 +1,11 @@ +- PGSQL: + . Fixed GHSA-hrwm-9436-5mv3 (pgsql extension does not check for errors during + escaping). (CVE-2025-1735) (Jakub Zelenka) + +- SOAP: + . Fixed GHSA-453j-q27h-5p8x (NULL Pointer Dereference in PHP SOAP Extension + via Large XML Namespace Prefix). (CVE-2025-6491) (Lekssays, nielsdos) + +- Standard: + . Fixed GHSA-3cr5-j632-f35r (Null byte termination in hostnames). + (CVE-2025-1220) (Jakub Zelenka) diff --git a/data/releases/8.1/8.1.33/release.json b/data/releases/8.1/8.1.33/release.json new file mode 100644 index 0000000000..11e49b9498 --- /dev/null +++ b/data/releases/8.1/8.1.33/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.33", + "date": "3 Jul 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.33.tar.gz", + "name": "PHP 8.1.33 (tar.gz)", + "sha256": "ee33568a0e2be0b722b3f9a88cecc578316b66b25c90cd0a4f3b1a5cdc3cd826" + }, + { + "filename": "php-8.1.33.tar.bz2", + "name": "PHP 8.1.33 (tar.bz2)", + "sha256": "b6553451841c1a569865d7fdc83024621ee4434cd8fbfeb0a31588ac9c70685f" + }, + { + "filename": "php-8.1.33.tar.xz", + "name": "PHP 8.1.33 (tar.xz)", + "sha256": "9db83bf4590375562bc1a10b353cccbcf9fcfc56c58b7c8fb814e6865bb928d1" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.34/announcement.html b/data/releases/8.1/8.1.34/announcement.html new file mode 100644 index 0000000000..d78a85aa8f --- /dev/null +++ b/data/releases/8.1/8.1.34/announcement.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/8.1.34/changes.txt b/data/releases/8.1/8.1.34/changes.txt new file mode 100644 index 0000000000..5236af4ca1 --- /dev/null +++ b/data/releases/8.1/8.1.34/changes.txt @@ -0,0 +1,19 @@ +- Curl: + . Fix curl build and test failures with version 8.16. + (nielsdos, ilutov, Jakub Zelenka) + +- Opcache: + . Reset global pointers to prevent use-after-free in zend_jit_status(). + (Florian Engelhardt) + +- PDO: + . Fixed GHSA-8xr5-qppj-gvwj (PDO quoting result null deref). (CVE-2025-14180) + (Jakub Zelenka) + +- Standard: + . Fixed GHSA-www2-q4fc-65wf (Null byte termination in dns_get_record()). + (ndossche) + . Fixed GHSA-h96m-rvf9-jgm2 (Heap buffer overflow in array_merge()). + (CVE-2025-14178) (ndossche) + . Fixed GHSA-3237-qqm7-mfv7 (Information Leak of Memory in getimagesize). + (CVE-2025-14177) (ndossche) diff --git a/data/releases/8.1/8.1.34/release.json b/data/releases/8.1/8.1.34/release.json new file mode 100644 index 0000000000..310f81b55f --- /dev/null +++ b/data/releases/8.1/8.1.34/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.34", + "date": "18 Dec 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.34.tar.gz", + "name": "PHP 8.1.34 (tar.gz)", + "sha256": "3c5b060ec8e0d5dd1d8237823f3161cc8bc5342aab3c46893eba9857759c4bfa" + }, + { + "filename": "php-8.1.34.tar.bz2", + "name": "PHP 8.1.34 (tar.bz2)", + "sha256": "98e0a08a0fae37d08dfcca2f5ff6664863097dde4b1d360af2acc8c3542f2a0f" + }, + { + "filename": "php-8.1.34.tar.xz", + "name": "PHP 8.1.34 (tar.xz)", + "sha256": "ffa9e0982e82eeaea848f57687b425ed173aa278fe563001310ae2638db5c251" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.4/announcement.html b/data/releases/8.1/8.1.4/announcement.html new file mode 100644 index 0000000000..acad9de863 --- /dev/null +++ b/data/releases/8.1/8.1.4/announcement.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/8.1.4/changes.txt b/data/releases/8.1/8.1.4/changes.txt new file mode 100644 index 0000000000..6f98519aaf --- /dev/null +++ b/data/releases/8.1/8.1.4/changes.txt @@ -0,0 +1,36 @@ +- Core: + . Fixed Haiku ZTS build. (David Carlier) + . Fixed bug GH-8059 arginfo not regenerated for extension. (Remi) + . Fixed bug GH-8083 Segfault when dumping uncalled fake closure with static + variables. (ilutov) + . Fixed bug GH-7958 (Nested CallbackFilterIterator is leaking memory). (cmb) + . Fixed bug GH-8074 (Wrong type inference of range() result). (cmb) + . Fixed bug GH-8140 (Wrong first class callable by name optimization). (cmb) + . Fixed bug GH-8082 (op_arrays with temporary run_time_cache leak memory + when observed). (Bob) + +- GD: + . Fixed libpng warning when loading interlaced images. (Brett) + +- FPM: + . Fixed bug #76109 (Unsafe access to fpm scoreboard). + (Till Backhaus, Jakub Zelenka) + +- Iconv: + . Fixed bug GH-7953 (ob_clean() only does not set Content-Encoding). (cmb) + . Fixed bug GH-7980 (Unexpected result for iconv_mime_decode). (cmb) + +- MBString: + . Fixed bug GH-8128 (mb_check_encoding wrong result for 7bit). (alexdowad) + +- MySQLnd: + . Fixed bug GH-8058 (NULL pointer dereference in mysqlnd package). (Kamil Tekiela) + +- Reflection: + . Fixed bug GH-8080 (ReflectionClass::getConstants() depends on def. order). + (cmb) + . Fixed bug GH-8444 (Fix ReflectionProperty::__toString() of properties + containing instantiated enums). (ilutov) + +- Zlib: + . Fixed bug GH-7953 (ob_clean() only does not set Content-Encoding). (cmb) diff --git a/data/releases/8.1/8.1.4/release.json b/data/releases/8.1/8.1.4/release.json new file mode 100644 index 0000000000..777d0d6eb0 --- /dev/null +++ b/data/releases/8.1/8.1.4/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.4", + "date": "17 Mar 2022", + "tags": [], + "source": [ + { + "filename": "php-8.1.4.tar.gz", + "name": "PHP 8.1.4 (tar.gz)", + "sha256": "a9951c1c8fd5d2eefde28de0f646c344eb61d751319d220713a6da26f986abde" + }, + { + "filename": "php-8.1.4.tar.bz2", + "name": "PHP 8.1.4 (tar.bz2)", + "sha256": "b3f688cb69758523838b8e7f509aaef0152133d9b84a84a0b7cf68eeafc1df76" + }, + { + "filename": "php-8.1.4.tar.xz", + "name": "PHP 8.1.4 (tar.xz)", + "sha256": "05a8c0ac30008154fb38a305560543fc172ba79fb957084a99b8d3b10d5bdb4b" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.5/announcement.html b/data/releases/8.1/8.1.5/announcement.html new file mode 100644 index 0000000000..566826d1a9 --- /dev/null +++ b/data/releases/8.1/8.1.5/announcement.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/8.1.5/changes.txt b/data/releases/8.1/8.1.5/changes.txt new file mode 100644 index 0000000000..026a3bc140 --- /dev/null +++ b/data/releases/8.1/8.1.5/changes.txt @@ -0,0 +1,44 @@ +- Core: + . Fixed bug GH-8176 (Enum values in property initializers leak). (Bob) + . Fixed freeing of internal attribute arguments. (Bob) + . Fixed bug GH-8070 (memory leak of internal function attribute hash). + (Tim Düsterhus) + . Fixed bug GH-8160 (ZTS support on Alpine is broken). (Michael Voříšek) + +- Filter: + . Fixed signedness confusion in php_filter_validate_domain(). (cmb) + +- Intl: + . Fixed bug GH-8115 (Can't catch arg type deprecation when instantiating Intl + classes). (ilutov) + . Fixed bug GH-8142 (Compilation error on cygwin). (David Carlier) + . Fixed bug GH-7734 (Fix IntlPartsIterator key off-by-one error and first + key). (ilutov) + +- MBString: + . Fixed bug GH-8208 (mb_encode_mimeheader: $indent functionality broken). + (cmb) + +- MySQLi: + . Fixed bug GH-8068 (mysqli_fetch_object creates inaccessible properties). + (cmb) + +- Pcntl: + . Fixed bug GH-8142 (Compilation error on cygwin). (David Carlier) + +- PgSQL: + . Fixed result_type related stack corruption on LLP64 architectures. (cmb) + . Fixed bug GH-8253 (pg_insert() fails for references). (cmb) + +- Sockets: + . Fixed Solaris builds. (David Carlier) + . Fix undefined behavior in php_set_inet6_addr. (ilutov) + +- SPL: + . Fixed bug GH-8121 (SplFileObject - seek and key with csv file inconsistent). + (cmb) + . Fixed bug GH-8192 (Cannot override DirectoryIterator::current() without + return typehint in 8.1). (Nikita) + +- Standard: + . Fixed bug GH-8048 (Force macOS to use statfs). (risner) diff --git a/data/releases/8.1/8.1.5/release.json b/data/releases/8.1/8.1.5/release.json new file mode 100644 index 0000000000..8b8425d205 --- /dev/null +++ b/data/releases/8.1/8.1.5/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.5", + "date": "14 Apr 2022", + "tags": [], + "source": [ + { + "filename": "php-8.1.5.tar.gz", + "name": "PHP 8.1.5 (tar.gz)", + "sha256": "44d637627746082395d5d3d3d6ae7d71e780b82a8d55a0228887158c4316bf11" + }, + { + "filename": "php-8.1.5.tar.bz2", + "name": "PHP 8.1.5 (tar.bz2)", + "sha256": "827de56771c3ab8313a069812f15f6ec49989d510aebd0dce180839c6d8d6ff3" + }, + { + "filename": "php-8.1.5.tar.xz", + "name": "PHP 8.1.5 (tar.xz)", + "sha256": "7647734b4dcecd56b7e4bd0bc55e54322fa3518299abcdc68eb557a7464a2e8a" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.6/announcement.html b/data/releases/8.1/8.1.6/announcement.html new file mode 100644 index 0000000000..86698a6cac --- /dev/null +++ b/data/releases/8.1/8.1.6/announcement.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/8.1.6/changes.txt b/data/releases/8.1/8.1.6/changes.txt new file mode 100644 index 0000000000..0a799cbab8 --- /dev/null +++ b/data/releases/8.1/8.1.6/changes.txt @@ -0,0 +1,60 @@ +- Core: + . Fixed bug GH-8310 (Registry settings are no longer recognized). (cmb) + . Fixed potential race condition during resource ID allocation. (ryancaicse) + . Fixed bug GH-8133 (Preloading of constants containing arrays with enums + segfaults). (ilutov) + . Fixed Haiku ZTS builds. (David Carlier) + +- Date: + . Fixed bug GH-7752 (DateTimeZone::getTransitions() returns insufficient + data). (Derick) + . Fixed bug GH-8108 (Timezone doesn't work as intended). (Derick) + . Fixed bug #81660 (DateTimeZone::getTransitions() returns invalid data). + (Derick) + . Fixed bug GH-8289 (Exceptions thrown within a yielded from iterator are + not rethrown into the generator). (Bob) + +- FFI: + . Fixed bug GH-8433 (Assigning function pointers to structs in FFI leaks). + (Bob) + +- FPM: + . Fixed bug #76003 (FPM /status reports wrong number of active processe). + (Jakub Zelenka) + . Fixed bug #77023 (FPM cannot shutdown processes). (Jakub Zelenka) + . Fixed comment in kqueue remove callback log message. (David Carlier) + +- Hash: + . Fixed bug #81714 (segfault when serializing finalized HashContext). (cmb) + +- Iconv: + . Fixed bug GH-8218 (ob_end_clean does not reset Content-Encoding header). + (cmb) + +- Intl: + . Fixed bug GH-8364 (msgfmt_format $values may not support references). (cmb) + +- MBString: + . Number of error markers emitted for invalid UTF-8 text matches WHATWG specification. + This is a return to the behavior of PHP 8.0 and earlier. (alexdowad) + +- MySQLi: + . Fixed bug GH-8267 (MySQLi uses unsupported format specifier on Windows). + (cmb) + +- OPcache: + . Fixed bug GH-8063 (OPcache breaks autoloading after E_COMPILE_ERROR). + (Arnaud) + +- SPL: + . Fixed bug GH-8366 (ArrayIterator may leak when calling __construct()). + (cmb) + . Fixed bug GH-8273 (SplFileObject: key() returns wrong value). (Girgias) + +- Streams: + . Fixed php://temp does not preserve file-position when switched to temporary + file. (Bernd Holzmüller) + +- zlib: + . Fixed bug GH-8218 (ob_end_clean does not reset Content-Encoding header). + (cmb) diff --git a/data/releases/8.1/8.1.6/release.json b/data/releases/8.1/8.1.6/release.json new file mode 100644 index 0000000000..c90be12e67 --- /dev/null +++ b/data/releases/8.1/8.1.6/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.6", + "date": "12 May 2022", + "tags": [], + "source": [ + { + "filename": "php-8.1.6.tar.gz", + "name": "PHP 8.1.6 (tar.gz)", + "sha256": "e847745fd66fc8c57fac993a609fefcded93fddccd225f0620a26bb5ae5753c3" + }, + { + "filename": "php-8.1.6.tar.bz2", + "name": "PHP 8.1.6 (tar.bz2)", + "sha256": "7b353304b7407554f70d3e101a226a1fc22decae5c4c42ed270c4e389bfa1b66" + }, + { + "filename": "php-8.1.6.tar.xz", + "name": "PHP 8.1.6 (tar.xz)", + "sha256": "da38d65bb0d5dd56f711cd478204f2b62a74a2c2b0d2d523a78d6eb865b2364c" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.7/announcement.html b/data/releases/8.1/8.1.7/announcement.html new file mode 100644 index 0000000000..e2ff8f8c48 --- /dev/null +++ b/data/releases/8.1/8.1.7/announcement.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/8.1.7/changes.txt b/data/releases/8.1/8.1.7/changes.txt new file mode 100644 index 0000000000..fc7f56cb70 --- /dev/null +++ b/data/releases/8.1/8.1.7/changes.txt @@ -0,0 +1,55 @@ +- CLI: + . Fixed bug GH-8575 (CLI closes standard streams too early). (Levi Morrison) + +- Date: + . Fixed bug #51934 (strtotime plurals / incorrect time). (Derick) + . Fixed bug #51987 (Datetime fails to parse an ISO 8601 ordinal date + (extended format)). (Derick) + . Fixed bug #66019 (DateTime object does not support short ISO 8601 time + format - YYYY-MM-DDTHH) (cmb, Derick) + . Fixed bug #68549 (Timezones and offsets are not properly used when working + with dates) (Derick, Roel Harbers) + . Fixed bug #81565 (date parsing fails when provided with timezones including + seconds). (Derick) + . Fixed bug GH-7758 (Problems with negative timestamps and fractions). + (Derick, Ilija) + +- FPM: + . Fixed ACL build check on MacOS. (David Carlier) + . Fixed bug #72185: php-fpm writes empty fcgi record causing nginx 502. + (Jakub Zelenka, loveharmful) + . Fixes use after free. (Heiko Weber). + +- mysqlnd: + . Fixed bug #81719: mysqlnd/pdo password buffer overflow. (CVE-2022-31626) + (c dot fol at ambionics dot io) + +- OPcache: + . Fixed bug GH-8461 (tracing JIT crash after function/method change). + (Arnaud, Dmitry) + +- OpenSSL: + . Fixed bug #79589 (error:14095126:SSL routines:ssl3_read_n:unexpected eof + while reading). (Jakub Zelenka) + +- Pcntl: + . Fixed Haiku build. (David Carlier) + +- pgsql + . Fixed bug #81720: Uninitialized array in pg_query_params(). + (CVE-2022-31625) (cmb) + +- Soap: + . Fixed bug GH-8578 (Error on wrong parameter on SoapHeader constructor). + (robertnisipeanu) + . Fixed bug GH-8538 (SoapClient may strip parts of nmtokens). (cmb) + +- SPL: + . Fixed bug GH-8235 (iterator_count() may run indefinitely). (cmb) + +- Standard: + . Fixed bug GH-8185 (Crash during unloading of extension after dl() in ZTS). + (Arnaud) + +- Zip: + . Fixed type for index in ZipArchive::replaceFile. (Martin Rehberger) diff --git a/data/releases/8.1/8.1.7/release.json b/data/releases/8.1/8.1.7/release.json new file mode 100644 index 0000000000..38bf14c0f8 --- /dev/null +++ b/data/releases/8.1/8.1.7/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.7", + "date": "09 Jun 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.7.tar.gz", + "name": "PHP 8.1.7 (tar.gz)", + "sha256": "5f0b422a117633c86d48d028934b8dc078309d4247e7565ea34b2686189abdd8" + }, + { + "filename": "php-8.1.7.tar.bz2", + "name": "PHP 8.1.7 (tar.bz2)", + "sha256": "b816753eb005511e695d90945c27093c3236cc73db1262656d9fadd73ead7e9d" + }, + { + "filename": "php-8.1.7.tar.xz", + "name": "PHP 8.1.7 (tar.xz)", + "sha256": "f042322f1b5a9f7c2decb84b7086ef676896c2f7178739b9672afafa964ed0e5" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.8/announcement.html b/data/releases/8.1/8.1.8/announcement.html new file mode 100644 index 0000000000..d1c0d99d36 --- /dev/null +++ b/data/releases/8.1/8.1.8/announcement.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/8.1.8/changes.txt b/data/releases/8.1/8.1.8/changes.txt new file mode 100644 index 0000000000..aeecb35f56 --- /dev/null +++ b/data/releases/8.1/8.1.8/changes.txt @@ -0,0 +1,66 @@ +- Core: + . Fixed bug GH-8338 (Intel CET is disabled unintentionally). (Chen, Hu) + . Fixed leak in Enum::from/tryFrom for internal enums when using JIT (ilutov) + . Fixed calling internal methods with a static return type from + extension code. (Sara) + . Fixed bug GH-8655 (Casting an object to array does not unwrap refcount=1 + references). (Nicolas Grekas) + . Fixed potential use after free in php_binary_init(). (Heiko Weber) + . Fixed bug GH-7942 (Indirect mutation of readonly properties through + references). (ilutov) + +- CLI: + . Fixed GH-8827 (Intentionally closing std handles no longer possible). (cmb) + +- COM: + . Fixed bug GH-8778 (Integer arithmethic with large number variants fails). + (cmb) + +- Curl: + . Fixed CURLOPT_TLSAUTH_TYPE is not treated as a string option. (Pierrick) + +- Date: + . Fixed bug #72963 (Null-byte injection in CreateFromFormat and related + functions). (Derick) + . Fixed bug #74671 (DST timezone abbreviation has incorrect offset). (Derick) + . Fixed bug #77243 (Weekdays are calculated incorrectly for negative years). + (Derick) + . Fixed bug #78139 (timezone_open accepts invalid timezone string argument). + (Derick) + +- Fileinfo: + . Fixed bug #81723 (Heap buffer overflow in finfo_buffer). (CVE-2022-31627) + (cmb) + +- FPM: + . Fixed bug #67764 (fpm: syslog.ident don't work). (Jakub Zelenka) + +- GD: + . Fixed imagecreatefromavif() memory leak. (cmb) + +- MBString: + . mb_detect_encoding recognizes all letters in Czech alphabet (alexdowad) + . mb_detect_encoding recognizes all letters in Hungarian alphabet (alexdowad) + . Fixed bug GH-8685 (pcre not ready at mbstring startup). (Remi) + . Backwards-compatible mappings for 0x5C/0x7E in Shift-JIS are restored, + after they had been changed in 8.1.0. (Alex Dowad) + +- ODBC: + . Fixed handling of single-key connection strings. (Calvin Buckley) + +- OPcache: + . Fixed bug GH-8591 (tracing JIT crash after private instance method change). + (Arnaud, Dmitry, Oleg Stepanischev) + +- OpenSSL: + . Fixed bug #50293 (Several openssl functions ignore the VCWD). + (Jakub Zelenka, cmb) + . Fixed bug #81713 (NULL byte injection in several OpenSSL functions working + with certificates). (Jakub Zelenka) + +- PDO_ODBC: + . Fixed handling of single-key connection strings. (Calvin Buckley) + +- Zip: + . Fixed bug GH-8781 (ZipArchive::close deletes zip file without updating stat + cache). (Remi) diff --git a/data/releases/8.1/8.1.8/release.json b/data/releases/8.1/8.1.8/release.json new file mode 100644 index 0000000000..6f135bc9c5 --- /dev/null +++ b/data/releases/8.1/8.1.8/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.1.8", + "date": "07 Jul 2022", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.1.8.tar.gz", + "name": "PHP 8.1.8 (tar.gz)", + "sha256": "889d910558d2492f7f2236921b9bcde620674c8b684ec02d126060f8ca45dc8d" + }, + { + "filename": "php-8.1.8.tar.bz2", + "name": "PHP 8.1.8 (tar.bz2)", + "sha256": "b8815a5a02431453d4261e3598bd1f28516e4c0354f328c12890f257870e4c01" + }, + { + "filename": "php-8.1.8.tar.xz", + "name": "PHP 8.1.8 (tar.xz)", + "sha256": "04c065515bc347bc68e0bb1ac7182669a98a731e4a17727e5731650ad3d8de4c" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.9/announcement.html b/data/releases/8.1/8.1.9/announcement.html new file mode 100644 index 0000000000..660a5573f2 --- /dev/null +++ b/data/releases/8.1/8.1.9/announcement.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.1/8.1.9/changes.txt b/data/releases/8.1/8.1.9/changes.txt new file mode 100644 index 0000000000..25e2e47e94 --- /dev/null +++ b/data/releases/8.1/8.1.9/changes.txt @@ -0,0 +1,45 @@ +- CLI: + . Fixed potential overflow for the builtin server via the PHP_CLI_SERVER_WORKERS + environment variable. (yiyuaner) + +- Core: + . Fixed bug GH-8923 (error_log on Windows can hold the file write lock). (cmb) + . Fixed bug GH-8995 (WeakMap object reference offset causing TypeError). + (Tobias Bachert) + +- CLI: + . Fixed GH-8952 (Intentionally closing std handles no longer possible). + (Arnaud, cmb) + +- Date: + . Fixed bug #80047 (DatePeriod doesn't warn with custom DateTimeImmutable). + (Derick) + +- FPM: + . Fixed zlog message prepend, free on incorrect address. (Heiko Weber) + . Fixed possible double free on configuration loading failure. (Heiko Weber). + +- GD: + . Fixed bug GH-8848 (imagecopyresized() error refers to the wrong argument). + (cmb) + +- Intl: + . Fixed build for ICU 69.x and onwards. (David Carlier) + +- OPcache: + . Fixed bug GH-8847 (PHP hanging infinitly at 100% cpu when check php + syntaxe of a valid file). (Dmitry) + . Fixed bug GH-8030 (Segfault with JIT and large match/switch statements). + (Arnaud) + +- Reflection: + . Fixed bug GH-8943 (Fixed Reflection::getModifiersNames() with readonly + modifier). (Pierrick) + . Fixed bug GH-8982 (Attribute with TARGET_METHOD is rejected on fake + closure of method). (ilutov) + +- Standard: + . Fixed the crypt_sha256/512 api build with clang > 12. (David Carlier) + . Uses CCRandomGenerateBytes instead of arc4random_buf on macOs. (David Carlier). + . Fixed bug GH-9017 (php_stream_sock_open_from_socket could return NULL). + (Heiko Weber) diff --git a/data/releases/8.1/8.1.9/release.json b/data/releases/8.1/8.1.9/release.json new file mode 100644 index 0000000000..ff667ad146 --- /dev/null +++ b/data/releases/8.1/8.1.9/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.9", + "date": "04 Aug 2022", + "tags": [], + "source": [ + { + "filename": "php-8.1.9.tar.gz", + "name": "PHP 8.1.9 (tar.gz)", + "sha256": "954cf77f7e0a70dc765e7639acdfdccd164be5cd1bce3dbe9d10c58dca631e76" + }, + { + "filename": "php-8.1.9.tar.bz2", + "name": "PHP 8.1.9 (tar.bz2)", + "sha256": "9ebb0e2e571db6fd5930428dcb2d19ed3e050338ec1f1347c282cae92fc086ff" + }, + { + "filename": "php-8.1.9.tar.xz", + "name": "PHP 8.1.9 (tar.xz)", + "sha256": "53477e73e6254dc942b68913a58d815ffdbf6946baf61a1f8ef854de524c27bf" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.0/announcement.html b/data/releases/8.2/8.2.0/announcement.html new file mode 100644 index 0000000000..15f1c68951 --- /dev/null +++ b/data/releases/8.2/8.2.0/announcement.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/8.2.0/changes.txt b/data/releases/8.2/8.2.0/changes.txt new file mode 100644 index 0000000000..0e33bb8377 --- /dev/null +++ b/data/releases/8.2/8.2.0/changes.txt @@ -0,0 +1,391 @@ +- CLI: + . Fixed bug #81496 (Server logs incorrect request method). (lauri) + . Updated the mime-type table for the builtin-server. (Ayesh Karunaratne) + . Fixed potential overflow for the builtin server via the + PHP_CLI_SERVER_WORKERS environment variable. (yiyuaner) + . Fixed GH-8575 by changing STDOUT, STDERR and STDIN to not close on resource + destruction. (Jakub Zelenka) + . Implement built-in web server responding without body to HEAD request on + a static resource. (Vedran Miletic, Marin Martuslovic) + . Implement built-in web server responding with HTTP status 405 to + DELETE/PUT/PATCH request on a static resource. + (Vedran Miletic, Marin Martuslovic) + . Fixed bug GH-9709 (Null pointer dereference with -w/-s options). + (Adam Saponara) + +- COM: + . Fixed bug GH-8750 (Can not create VT_ERROR variant type). (cmb) + +- Core: + . Fixed bug #81380 (Observer may not be initialized properly). (krakjoe) + . Fixed bug GH-7771 (Fix filename/lineno of constant expressions). (ilutov) + . Fixed bug GH-7792 (Improve class type in error messages). (ilutov) + . Support huge pages on MacOS. (David CARLIER) + . Fixed bug GH-8655 (Casting an object to array does not unwrap refcount=1 + references). (Nicolas Grekas) + . Fixed bug GH-8661 (Nullsafe in coalesce triggers undefined variable + warning). (ilutov) + . Fixed bug GH-7821 and GH-8418 (Allow arbitrary const expressions in backed + enums). (ilutov) + . Fixed bug GH-8810 (Incorrect lineno in backtrace of multi-line function + calls). (ilutov) + . Optimised code path for newly created file with the stream plain wrapper. (Max Kellermann) + . Uses safe_perealloc instead of perealloc for the + ZEND_PTR_STACK_RESIZE_IF_NEEDED to avoid possible overflows. (David Carlier) + . Reduced the memory footprint of strings returned by var_export(), + json_encode(), serialize(), iconv_*(), mb_ereg*(), session_create_id(), + http_build_query(), strstr(), Reflection*::__toString(). (Arnaud) + . Fixed bug GH-8995 (WeakMap object reference offset causing TypeError). + (Tobias Bachert) + . Added error_log_mode ini setting. (Mikhail Galanin) + . Updated request startup messages. (Eric Norris) + . Fixed bug GH-7900 (Arrow function with never return type compile-time + errors). (ilutov) + . Fixed incorrect double to long casting in latest clang. (zeriyoshi) + . Added support for defining constants in traits. (sj-i) + . Stop incorrectly emitting false positive deprecation notice alongside + unsupported syntax fatal error for `"{$g{'h'}}"`. (TysonAndre) + . Fix unexpected deprecated dynamic property warning, which occurred when + exit() in finally block after an exception was thrown without catching. + (Twosee) + . Fixed bug GH-9323 (Crash in ZEND_RETURN/GC/zend_call_function) + (Tim Starling) + . Fixed bug GH-9227 (Trailing dots and spaces in filenames are ignored). + (cmb) + . Fixed bug GH-9285 (Traits cannot be used in readonly classes). + (kocsismate) + . Fixed bug GH-9186 (@strict-properties can be bypassed using + unserialization). (kocsismate) + . Fixed bug GH-9500 (Using dnf type with parentheses after readonly keyword + results in a parse error). (ilutov) + . Fixed bug GH-9516 ((A&B)|D as a param should allow AB or D. Not just A). + (Girgias) + . Fixed observer class notify with Opcache file_cache_only=1. (ilutov) + . Fixes segfault with Fiber on FreeBSD i386 architecture. (David Carlier) + . Fixed bug GH-9655 (Pure intersection types cannot be implicitly nullable) + (Girgias) + . Fixed bug GH-9589 (dl() segfaults when module is already loaded). (cmb, + Arnaud) + . Fixed bug GH-9752 (Generator crashes when interrupted during argument + evaluation with extra named params). (Arnaud) + . Fixed bug GH-9801 (Generator crashes when memory limit is exceeded during + initialization). (Arnaud) + . Fixed a bug with preloaded enums possibly segfaulting. (Bob) + . Fixed bug GH-9823 (Don’t reset func in zend_closure_internal_handler). + (Florian Sowade) + . Fixed potential NULL pointer dereference Windows shm*() functions. (cmb) + . Fix target validation for internal attributes with constructor property + promotion. (kooldev) + . Fixed bug GH-9750 (Generator memory leak when interrupted during argument + evaluation. (Arnaud) + +- Curl: + . Added support for CURLOPT_XFERINFOFUNCTION. (David Carlier) + . Added support for CURLOPT_MAXFILESIZE_LARGE. (David Carlier) + . Added new constants from cURL 7.62 to 7.80. (Pierrick) + . New function curl_upkeep(). (Pierrick) + +- Date: + . Fixed GH-8458 (DateInterval::createFromDateString does not throw if + non-relative items are present). (Derick) + . Fixed bug #52015 (Allow including end date in DatePeriod iterations) + (Daniel Egeberg, Derick) + . idate() now accepts format specifiers "N" (ISO Day-of-Week) and "o" (ISO + Year). (Pavel Djundik) + . Fixed bug GH-8730 (DateTime::diff miscalculation is same time zone of + different type). (Derick) + . Fixed bug GH-8964 (DateTime object comparison after applying delta less + than 1 second). (Derick) + . Fixed bug GH-9106: (DateInterval 1.5s added to DateTimeInterface is rounded + down since PHP 8.1.0). (Derick) + . Fixed bug #75035 (Datetime fails to unserialize "extreme" dates). + (Derick) + . Fixed bug #80483 (DateTime Object with 5-digit year can't unserialized). + (Derick) + . Fixed bug #81263 (Wrong result from DateTimeImmutable::diff). (Derick) + . Fixed bug GH-9431 (DateTime::getLastErrors() not returning false when no + errors/warnings). (Derick) + . Fixed bug with parsing large negative numbers with the @ notation. (Derick) + +- DBA: + . Fixed LMDB driver hanging when attempting to delete a non-existing key + (Girgias) + . Fixed LMDB driver memory leak on DB creation failure (Girgias) + . Fixed GH-8856 (dba: lmdb: allow to override the MDB_NOSUBDIR flag). (Girgias) + +- FFI: + . Fixed bug GH-9090 (Support assigning function pointers in FFI). (Adam + Saponara) + +- Fileinfo: + . Fixed bug GH-8805 (finfo returns wrong mime type for woff/woff2 files). + (Anatol) + +- Filter: + . Added FILTER_FLAG_GLOBAL_RANGE to filter Global IPs. (vnsavage) + +- FPM: + . Emit error for invalid port setting. (David Carlier) + . Added extra check for FPM proc dumpable on SELinux based systems. + (David Carlier) + . Added support for listening queue on macOS. (David Carlier) + . Changed default for listen.backlog on Linux to -1. (Cristian Rodríguez) + . Added listen.setfib pool option to set route FIB on FreeBSD. (David Carlier) + . Added access.suppress_path pool option to filter access log entries. + (Mark Gallagher) + . Fixed on fpm scoreboard occasional warning on acquisition failure. + (Felix Wiedemann) + . Fixed bug GH-9754 (SaltStack (using Python subprocess) hangs when running + php-fpm 8.1.11). (Jakub Zelenka) + +- FTP: + . Fix datetime format string to follow POSIX spec in ftp_mdtm(). (Jihwan Kim) + +- GD: + . Fixed bug #81739: OOB read due to insufficient input validation in + imageloadfont(). (CVE-2022-31630) (cmb) + +- GMP: + . Fixed bug GH-9308 (GMP throws the wrong error when a GMP object is passed + to gmp_init()). (Girgias) + +- Hash: + . Fixed bug #81738: buffer overflow in hash_update() on long parameter. + (CVE-2022-37454) (nicky at mouha dot be) + . Fixed bug GH-10077: Fix compilation on RHEL 7 ppc64le. (Mattias Ellert) + +- Intl: + . Update all grandfathered language tags with preferred values + . Fixed GH-7939 (Cannot unserialize IntlTimeZone objects). (cmb) + . Fixed build for ICU 69.x and onwards. (David Carlier) + . Declared Transliterator::$id as readonly to unlock subclassing it. (Nicolas + Grekas) + . Fixed bug GH-9421 (Incorrect argument number for ValueError in NumberFormatter). + (Girgias) + +- MBString: + . Fixed bug GH-9248 (Segmentation fault in mb_strimwidth()). (cmb) + +- mysqli: + . Fixed bug GH-9841 (mysqli_query throws warning despite using + silenced error mode). (Kamil Tekiela) + +- MySQLnd: + . Fixed potential heap corruption due to alignment mismatch. (cmb) + +- OCI8: + . Added oci8.prefetch_lob_size directive to tune LOB query performance + . Support for building against Oracle Client libraries 10.1 and 10.2 has been + dropped. Oracle Client libraries 11.2 or newer are now required. + +- ODBC: + . Fixed bug GH-8300 (User input not escaped when building connection string). + (Calvin Buckley) + . Fixed bug GH-9347 (Current ODBC liveness checks may be inadequate). (Calvin + Buckley) + +- Opcache: + . Allocate JIT buffer close to PHP .text segemnt to allow using direct + IP-relative calls and jumps. + (Su Tao, Wang Xue, Chen Hu, Lizhen Lizhen, Dmitry) + . Added initial support for JIT performance profiling generation + for macOs Instrument. (David Carlier) + . Fixed bug GH-8030 (Segfault with JIT and large match/switch statements). + (Arnaud) + . Added JIT support improvement for macOs for segments and executable permission + bit handling. (David Carlier) + . Added JIT buffer allocation near the .text section on FreeNSD. (David Carlier) + . Fixed bug GH-9371 (Crash with JIT on mac arm64) + (jdp1024/David Carlier) + . Fixed bug GH-9259 (opcache.interned_strings_buffer setting integer + overflow). (Arnaud) + . Added indirect call reduction for jit on x86 architectures. (wxue1) + +- OPcache: + . Fixed bug GH-9164 (Segfault in zend_accel_class_hash_copy). + (Arnaud, Sergei Turchanov) + +- OpenSSL: + . Discard poll calls on socket when no timeout/non blocking/MSG_DONTWAIT. (Max Kellermann) + . Fixed bug GH-9310 (SSL local_cert and local_pk do not respect + open_basedir). (Jakub Zelenka) + . Implement FR #76935 ("chacha20-poly1305" is an AEAD but does not work like + AEAD). (Jakub Zelenka) + . Added openssl_cipher_key_length function. (Jakub Zelenka) + . Fixed bug GH-9517 (Compilation error openssl extension related to PR + GH-9366). (Jakub Zelenka) + . Fixed missing clean up of OpenSSL engine list - attempt to fix GH-8620. + (Jakub Zelenka) + . Fixed bug GH-8430 (OpenSSL compiled with no-md2, no-md4 or no-rmd160 does + not build). (Jakub Zelenka, fsbruva) + +- PCNTL: + . Fixed pcntl_(get|set)priority error handling for MacOS. (Juan Morales) + +- PCRE: + . Implemented FR #77726 (Allow null character in regex patterns). (tobil4sk) + . Updated bundled libpcre to 10.40. (cmb) + +- PDO: + . Fixed bug GH-9818 (Initialize run time cache in PDO methods). + (Florian Sowade) + +- PDO_Firebird: + . Fixed bug GH-8576 (Bad interpretation of length when char is UTF-8). (cmb) + +- PDO_ODBC: + . Fixed bug #80909 (crash with persistent connections in PDO_ODBC). (Calvin + Buckley) + . Fixed bug GH-8300 (User input not escaped when building connection string). + (Calvin Buckley) + . Fixed bug GH-9347 (Current ODBC liveness checks may be inadequate). (Calvin + Buckley) + . Fixed bug GH-9372 (HY010 when binding overlong parameter). (cmb) + +- PDO_PGSQL: + . Fixed bug GH-9411 (PgSQL large object resource is incorrectly closed). + (Yurunsoft) + +- Random: + . Added new random extension. (Go Kudo) + . Fixed bug GH-9067 (random extension is not thread safe). (cmb) + . Fixed bug GH-9055 (segmentation fault if user engine throws). (timwolla) + . Fixed bug GH-9066 (signed integer overflow). (zeriyoshi) + . Fixed bug GH-9083 (undefined behavior during shifting). (timwolla) + . Fixed bug GH-9088, GH-9056 (incorrect expansion of bytes when + generating uniform integers within a given range). (timwolla) + . Fixed bug GH-9089 (Fix memory leak on Randomizer::__construct() + call twice). (zeriyoshi) + . Fixed bug GH-9212 (PcgOneseq128XslRr64::jump() should not allow negative + $advance). (Anton Smirnov) + . Changed Mt19937 to throw a ValueError instead of InvalidArgumentException + for invalid $mode. (timwolla) + . Splitted Random\Randomizer::getInt() (without arguments) to + Random\Randomizer::nextInt(). (zeriyoshi) + . Fixed bug GH-9235 (non-existant $sequence parameter in stub for + PcgOneseq128XslRr64::__construct()). (timwolla) + . Fixed bug GH-9190, GH-9191 (undefined behavior for MT_RAND_PHP when + handling large ranges). (timwolla) + . Fixed bug GH-9249 (Xoshiro256StarStar does not reject the invalid + all-zero state). (timwolla) + . Removed redundant RuntimeExceptions from Randomizer methods. The + exceptions thrown by the engines will be exposed directly. (timwolla) + . Added extension specific Exceptions/Errors (RandomException, RandomError, + BrokenRandomEngineError). (timwolla) + . Fixed bug GH-9415 (Randomizer::getInt(0, 2**32 - 1) with Mt19937 + always returns 1). (timwolla) + . Fixed Randomizer::getInt() consistency for 32-bit engines. (timwolla) + . Fixed bug GH-9464 (build on older macOs releases). (David Bohman) + . Fixed bug GH-9839 (Pre-PHP 8.2 output compatibility for non-mt_rand() + functions for MT_RAND_PHP). (timwolla) + +- Reflection: + . Added ReflectionFunction::isAnonymous(). (Nicolas Grekas) + . Added ReflectionMethod::hasPrototype(). (Ollie Read) + . Narrow ReflectionEnum::getBackingType() return type to ReflectionNamedType. + (SamMousa) + . Fixed bug GH-8932 (ReflectionFunction provides no way to get the called + class of a Closure). (cmb, Nicolas Grekas) + +- Session: + . Fixed bug GH-7787 (Improve session write failure message for user error + handlers). (ilutov) + . Fixed GH-9200 (setcookie has an obsolete expires date format). (timwolla) + . Fixed GH-9584 (Avoid memory corruption when not unregistering custom session + handler). (ilutov) + . Fixed bug GH-9583 (session_create_id() fails with user defined save handler + that doesn't have a validateId() method). (Girgias) + +- SOAP: + . Fixed bug GH-9720 (Null pointer dereference while serializing the response). + (cmb) + +- Sockets: + . Added TCP_NOTSENT_LOWAT socket option. (David Carlier) + . Added SO_MEMINFO socket option. (David Carlier) + . Added SO_RTABLE socket option (OpenBSD), equivalent of SO_MARK (Linux). + (David Carlier) + . Added TCP_KEEPALIVE, TCP_KEEPIDLE, TCP_KEEPINTVL, TCP_KEEPCNT socket + options. (David Carlier) + . Added ancillary data support for FreeBSD. (David Carlier) + . Added ancillary data support for NetBSD. (David Carlier) + . Added SO_BPF_EXTENSIONS socket option. (David Carlier) + . Added SO_SETFIB socket option. (David Carlier) + . Added TCP_CONGESTION socket option. (David Carlier) + . Added SO_ZEROCOPY/MSG_ZEROCOPY options. (David Carlier) + . Added SOL_FILTER socket option for Solaris. (David Carlier) + . Fixed socket constants regression as of PHP 8.2.0beta3. (Bruce Dou) + +- Sodium: + . Added sodium_crypto_stream_xchacha20_xor_ic(). (Scott) + +- SPL: + . Uses safe_erealloc instead of erealloc to handle heap growth + for the SplHeap::insert method to avoid possible overflows. (David Carlier) + . Widen iterator_to_array() and iterator_count()'s $iterator parameter to + iterable. (timwolla) + . Fixed bug #69181 (READ_CSV|DROP_NEW_LINE drops newlines within fields). + (cmb) + . Fixed bug #65069 (GlobIterator incorrect handling of open_basedir check). + (Jakub Zelenka) + +- SQLite3: + . Changed sqlite3.defensive from PHP_INI_SYSTEM to PHP_INI_USER. (bohwaz) + +- Standard: + . net_get_interfaces() also reports wireless network interfaces on Windows. + (Yurun) + . Finished AVIF support in getimagesize(). (Yannis Guyon) + . Fixed bug GH-7847 (stripos with large haystack has bad performance). + (ilutov) + . New function memory_reset_peak_usage(). (Patrick Allaert) + . Fixed parse_url(): can not recognize port without scheme. (pandaLIU) + . Deprecated utf8_encode() and utf8_decode(). (Rowan Tommins) + . Fixed the crypt_sha256/512 api build with clang > 12. (David Carlier) + . Uses safe_erealloc instead of erealloc to handle options in getopt + to avoid possible overflows. (David Carlier) + . Implemented FR GH-8924 (str_split should return empty array for empty + string). (Michael Vorisek) + . Added ini_parse_quantity function to convert ini quantities shorthand + notation to int. (Dennis Snell) + . Enable arc4random_buf for Linux glibc 2.36 and onwards + for the random_bytes. (Cristian Rodriguez) + . Uses CCRandomGenerateBytes instead of arc4random_buf on macOs. (David Carlier). + . Fixed bug #65489 (glob() basedir check is inconsistent). (Jakub Zelenka) + . Fixed GH-9200 (setcookie has an obsolete expires date format). (Derick) + . Fixed GH-9244 (Segfault with array_multisort + array_shift). (cmb) + . Fixed bug GH-9296 (`ksort` behaves incorrectly on arrays with mixed keys). + (Denis Vaksman) + . Marked crypt()'s $string parameter as #[\SensitiveParameter]. (timwolla) + . Fixed bug GH-9464 (build on older macOs releases). (David Bohman) + . Fixed bug GH-9518 (Disabling IPv6 support disables unrelated constants). + (cmb) + . Revert "Fixed parse_url(): can not recognize port without scheme." + (andypost) + +- Streams: + . Set IP_BIND_ADDRESS_NO_PORT if available when connecting to remote host. + (Cristian Rodríguez) + . Fixed bug GH-8548 (stream_wrapper_unregister() leaks memory). (ilutov) + . Discard poll calls on socket when no timeout/non blocking/MSG_DONTWAIT. (Max Kellermann) + . Fixed bug GH-9316 ($http_response_header is wrong for long status line). + (cmb, timwolla) + . Fixed bug GH-9590 (stream_select does not abort upon exception or empty + valid fd set). (Arnaud) + . Fixed bug GH-9653 (file copy between different filesystems). (David Carlier) + . Fixed bug GH-9779 (stream_copy_to_stream fails if dest in append mode). + (Jakub Zelenka) + +- Windows: + . Added preliminary support for (cross-)building for ARM64. (Yun Dou) + +- XML: + . Added libxml_get_external_entity_loader() function. (Tim Starling) + +- Zip: + . add ZipArchive::clearError() method + . add ZipArchive::getStreamName() method + . add ZipArchive::getStreamIndex() method + . On Windows, the Zip extension is now built as shared library (DLL) by + default. (cmb) + . Implement fseek for zip stream when possible with libzip 1.9.1. (Remi) diff --git a/data/releases/8.2/8.2.0/release.json b/data/releases/8.2/8.2.0/release.json new file mode 100644 index 0000000000..de27b095a7 --- /dev/null +++ b/data/releases/8.2/8.2.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.0", + "date": "08 Dec 2022", + "tags": [], + "source": [ + { + "filename": "php-8.2.0.tar.gz", + "name": "PHP 8.2.0 (tar.gz)", + "sha256": "435c4c2439db648cdf34236f7cd459f93f943fb788b66723a033610d4a059fc6" + }, + { + "filename": "php-8.2.0.tar.bz2", + "name": "PHP 8.2.0 (tar.bz2)", + "sha256": "1bf4fca663f93d9e0b4909bd6eae0583a1ce383e7f05df126f28f272fa1fd51a" + }, + { + "filename": "php-8.2.0.tar.xz", + "name": "PHP 8.2.0 (tar.xz)", + "sha256": "6ea4c2dfb532950fd712aa2a08c1412a6a81cd1334dd0b0bf88a8e44c2b3a943" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.1/announcement.html b/data/releases/8.2/8.2.1/announcement.html new file mode 100644 index 0000000000..48372375d8 --- /dev/null +++ b/data/releases/8.2/8.2.1/announcement.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/8.2.1/changes.txt b/data/releases/8.2/8.2.1/changes.txt new file mode 100644 index 0000000000..52daad6763 --- /dev/null +++ b/data/releases/8.2/8.2.1/changes.txt @@ -0,0 +1,66 @@ +- Core: + . Fixed bug GH-9905 (constant() behaves inconsistent when class is undefined). + (cmb) + . Fixed bug GH-9918 (License information for xxHash is not included in + README.REDIST.BINS file). (Akama Hitoshi) + . Fixed bug GH-9890 (OpenSSL legacy providers not available on Windows). (cmb) + . Fixed bug GH-9650 (Can't initialize heap: [0x000001e7]). (Michael Voříšek) + . Fixed potentially undefined behavior in Windows ftok(3) emulation. (cmb) + . Fixed GH-9769 (Misleading error message for unpacking of objects). (jhdxr) + +- Apache: + . Fixed bug GH-9949 (Partial content on incomplete POST request). (cmb) + +- FPM: + . Fixed bug GH-9959 (Solaris port event mechanism is still broken after bug + #66694). (Petr Sumbera) + . Fixed bug #68207 (Setting fastcgi.error_header can result in a WARNING). + (Jakub Zelenka) + . Fixed bug #80669 (FPM numeric user fails to set groups). (Jakub Zelenka) + . Fixed bug GH-8517 (Random crash of FPM master process in + fpm_stdio_child_said). (Jakub Zelenka) + +- Imap: + . Fixed bug GH-10051 (IMAP: there's no way to check if a IMAP\Connection is + still open). (Girgias) + +- MBString: + . Fixed bug GH-9535 (The behavior of mb_strcut in mbstring has been changed in + PHP8.1). (Nathan Freeman) + +- Opcache: + . Fixed bug GH-9968 (Segmentation Fault during OPCache Preload). + (Arnaud, michdingpayc) + +- OpenSSL: + . Fixed bug GH-9997 (OpenSSL engine clean up segfault). (Jakub Zelenka) + . Fixed bug GH-9064 (PHP fails to build if openssl was built with --no-ec). + (Jakub Zelenka) + . Fixed bug GH-10000 (OpenSSL test failures when OpenSSL compiled with + no-dsa). (Jakub Zelenka) + +- Pcntl: + . Fixed bug GH-9298 (Signal handler called after rshutdown leads to crash). + (Erki Aring) + +- PDO_Firebird: + . Fixed bug GH-9971 (Incorrect NUMERIC value returned from PDO_Firebird). + (cmb) + +- PDO/SQLite: + . Fixed bug #81740 (PDO::quote() may return unquoted string). (CVE-2022-31631) + (cmb) + +- Session: + . Fixed GH-9932 (session name silently fails with . and [). (David Carlier) + +- SPL: + . Fixed GH-9883 (SplFileObject::__toString() reads next line). (Girgias) + . Fixed GH-10011 (Trampoline autoloader will get reregistered and cannot be + unregistered). (Girgias) + +- SQLite3: + . Fixed bug #81742 (open_basedir bypass in SQLite3 by using file URI). (cmb) + +- TSRM: + . Fixed Windows shmget() wrt. IPC_PRIVATE. (Tyson Andre) diff --git a/data/releases/8.2/8.2.1/release.json b/data/releases/8.2/8.2.1/release.json new file mode 100644 index 0000000000..ad4ab2af8f --- /dev/null +++ b/data/releases/8.2/8.2.1/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.1", + "date": "05 Jan 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.1.tar.gz", + "name": "PHP 8.2.1 (tar.gz)", + "sha256": "6d7b1b8feb14fd1c65a2bc9d0f72c75589a61a946566cf9c3bf9536a5530b635" + }, + { + "filename": "php-8.2.1.tar.bz2", + "name": "PHP 8.2.1 (tar.bz2)", + "sha256": "75d6f8f365993ec0d1d9c6281d4557e6feec5a26194a468b8b01459d177efb29" + }, + { + "filename": "php-8.2.1.tar.xz", + "name": "PHP 8.2.1 (tar.xz)", + "sha256": "650d3bd7a056cabf07f6a0f6f1dd8ba45cd369574bbeaa36de7d1ece212c17af" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.10/announcement.html b/data/releases/8.2/8.2.10/announcement.html new file mode 100644 index 0000000000..3f705f7396 --- /dev/null +++ b/data/releases/8.2/8.2.10/announcement.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/8.2.10/changes.txt b/data/releases/8.2/8.2.10/changes.txt new file mode 100644 index 0000000000..3de1e0b238 --- /dev/null +++ b/data/releases/8.2/8.2.10/changes.txt @@ -0,0 +1,74 @@ +- CLI: + . Fixed bug GH-11716 (cli server crashes on SIGINT when compiled with + ZEND_RC_DEBUG=1). (nielsdos) + . Fixed bug GH-10964 (Improve man page about the built-in server). + (Alexandre Daubois) + +- Date: + . Fixed bug GH-11416 (Crash with DatePeriod when uninitialised objects are + passed in). (Derick) + +- Core: + . Fixed strerror_r detection at configuration time. (Kévin Dunglas) + . Fixed trait typed properties using a DNF type not being correctly bound. + (Girgias) + . Fixed trait property types not being arena allocated if copied from + an internal trait. (Girgias) + . Fixed deep copy of property DNF type during lazy class load. + (Girgias, ilutov) + . Fixed memory freeing of DNF types for non arena allocated types. + (Girgias, ju1ius) + +- DOM: + . Fix DOMEntity field getter bugs. (nielsdos) + . Fix incorrect attribute existence check in DOMElement::setAttributeNodeNS. + (nielsdos) + . Fix DOMCharacterData::replaceWith() with itself. (nielsdos) + . Fix empty argument cases for DOMParentNode methods. (nielsdos) + . Fixed bug GH-11791 (Wrong default value of DOMDocument::xmlStandalone). + (nielsdos) + . Fix json_encode result on DOMDocument. (nielsdos) + . Fix manually calling __construct() on DOM classes. (nielsdos) + . Fixed bug GH-11830 (ParentNode methods should perform their checks + upfront). (nielsdos) + . Fix viable next sibling search for replaceWith. (nielsdos) + . Fix segfault when DOMParentNode::prepend() is called when the child + disappears. (nielsdos) + +- FFI: + . Fix leaking definitions when using FFI::cdef()->new(...). (ilutov) + +- Hash: + . Fix use-of-uninitialized-value in hash_pbkdf2(), fix missing $options + parameter in signature. (ilutov) + +- MySQLnd: + . Fixed bug GH-11440 (authentication to a sha256_password account fails over + SSL). (nielsdos) + . Fixed bug GH-11438 (mysqlnd fails to authenticate with sha256_password + accounts using passwords longer than 19 characters). + (nielsdos, Kamil Tekiela) + . Fixed bug GH-11550 (MySQL Statement has a empty query result when + the response field has changed, also Segmentation fault). + (Yurunsoft) + . Fixed invalid error message "Malformed packet" when connection is dropped. + (Kamil Tekiela) + +- Opcache: + . Fixed bug GH-11715 (opcache.interned_strings_buffer either has no effect or + opcache_get_status() / phpinfo() is wrong). (nielsdos) + . Avoid adding an unnecessary read-lock when loading script from shm if + restart is in progress. (mikhainin) + +- PCNTL: + . Revert behaviour of receiving SIGCHLD signals back to the behaviour + before 8.1.22. (nielsdos) + +- SPL: + . Fixed bug #81992 (SplFixedArray::setSize() causes use-after-free). + (nielsdos) + +- Standard: + . Prevent int overflow on $decimals in number_format. (Marc Bennewitz) + . Fixed bug GH-11870 (Fix off-by-one bug when truncating tempnam prefix) + (athos-ribeiro) diff --git a/data/releases/8.2/8.2.10/release.json b/data/releases/8.2/8.2.10/release.json new file mode 100644 index 0000000000..2a1e76d294 --- /dev/null +++ b/data/releases/8.2/8.2.10/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.10", + "date": "31 Aug 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.10.tar.gz", + "name": "PHP 8.2.10 (tar.gz)", + "sha256": "7e3e277d6eab652616f90bc7c75991179c0512953933ceba27496fb5514f7e78" + }, + { + "filename": "php-8.2.10.tar.bz2", + "name": "PHP 8.2.10 (tar.bz2)", + "sha256": "cc9834e8f1b613d7677af8843c3651e9829abca8ebfe9079251d0d85d9a0aa3e" + }, + { + "filename": "php-8.2.10.tar.xz", + "name": "PHP 8.2.10 (tar.xz)", + "sha256": "561dc4acd5386e47f25be76f2c8df6ae854756469159248313bcf276e282fbb3" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.11/announcement.html b/data/releases/8.2/8.2.11/announcement.html new file mode 100644 index 0000000000..ee9053f3a8 --- /dev/null +++ b/data/releases/8.2/8.2.11/announcement.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/8.2.11/changes.txt b/data/releases/8.2/8.2.11/changes.txt new file mode 100644 index 0000000000..19610d931b --- /dev/null +++ b/data/releases/8.2/8.2.11/changes.txt @@ -0,0 +1,44 @@ +- Core: + . Fixed bug GH-11937 (Constant ASTs containing objects). (ilutov) + . Fixed bug GH-11790 (On riscv64 require libatomic if actually needed). + (Jeremie Courreges-Anglas) + . Fixed bug GH-11876: ini_parse_quantity() accepts invalid quantities. + (Girgias) + . Fixed bug GH-12073 (Segfault when freeing incompletely initialized + closures). (ilutov) + . Fixed bug GH-12060 (Internal iterator rewind handler is called twice). + (ju1ius) + . Fixed bug GH-12102 (Incorrect compile error when using array access on TMP + value in function call). (ilutov) + +- DOM: + . Fix memory leak when setting an invalid DOMDocument encoding. (nielsdos) + +- Iconv: + . Fixed build for NetBSD which still uses the old iconv signature. + (David Carlier) + +- Intl: + . Fixed bug GH-12020 (intl_get_error_message() broken after + MessageFormatter::formatMessage() fails). (Girgias) + +- MySQLnd: + . Fixed bug GH-10270 (Invalid error message when connection via SSL fails: + "trying to connect via (null)"). (Kamil Tekiela) + +- ODBC: + . Fixed memory leak with failed SQLPrepare. (NattyNarwhal) + . Fixed persistent procedural ODBC connections not getting closed. + (NattyNarwhal) + +- SimpleXML: + . Fixed bug #52751 (XPath processing-instruction() function is not + supported). (nielsdos) + +- SPL: + . Fixed bug GH-11972 (RecursiveCallbackFilterIterator regression in 8.1.18). + (nielsdos) + +- SQLite3: + . Fixed bug GH-11878 (SQLite3 callback functions cause a memory leak with + a callable array). (nielsdos, arnaud-lb) diff --git a/data/releases/8.2/8.2.11/release.json b/data/releases/8.2/8.2.11/release.json new file mode 100644 index 0000000000..856c202909 --- /dev/null +++ b/data/releases/8.2/8.2.11/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.11", + "date": "28 Sep 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.11.tar.gz", + "name": "PHP 8.2.11 (tar.gz)", + "sha256": "48b1b41279a678a4d4afcd0b256ed921ebf2a91febb0634fdc4449b91c75799f" + }, + { + "filename": "php-8.2.11.tar.bz2", + "name": "PHP 8.2.11 (tar.bz2)", + "sha256": "38192daeffabf4af6c427bf17ac1f82565d9c7522e0dbd32215162944434b28b" + }, + { + "filename": "php-8.2.11.tar.xz", + "name": "PHP 8.2.11 (tar.xz)", + "sha256": "29af82e4f7509831490552918aad502697453f0869a579ee1b80b08f9112c5b8" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.12/announcement.html b/data/releases/8.2/8.2.12/announcement.html new file mode 100644 index 0000000000..f789e49565 --- /dev/null +++ b/data/releases/8.2/8.2.12/announcement.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/8.2.12/changes.txt b/data/releases/8.2/8.2.12/changes.txt new file mode 100644 index 0000000000..77bacf17eb --- /dev/null +++ b/data/releases/8.2/8.2.12/changes.txt @@ -0,0 +1,68 @@ +- Core: + . Fixed bug GH-12207 (memory leak when class using trait with doc block). + (rioderelfte) + . Fixed bug GH-12215 (Module entry being overwritten causes type errors in + ext/dom). (nielsdos) + . Fixed bug GH-12273 (__builtin_cpu_init check). (Freaky) + . Fixed bug #80092 (ZTS + preload = segfault on shutdown). (nielsdos) + +- CLI: + . Ensure a single Date header is present. (coppolafab) + +- CType: + . Fixed bug GH-11997 (ctype_alnum 5 times slower in PHP 8.1 or greater). + (nielsdos) + +- DOM: + . Restore old namespace reconciliation behaviour. (nielsdos) + . Fixed bug GH-8996 (DOMNode serialization on PHP ^8.1). (nielsdos) + +- Fileinfo: + . Fixed bug GH-11891 (fileinfo returns text/xml for some svg files). (usarise) + +- Filter: + . Fix explicit FILTER_REQUIRE_SCALAR with FILTER_CALLBACK (ilutov) + +- Hash: + . Fixed bug GH-12186 (segfault copying/cloning a finalized HashContext). + (MaxSem) + +- Intl: + . Fixed bug GH-12243 (segfault on IntlDateFormatter::construct). + (David Carlier) + . Fixed bug GH-12282 (IntlDateFormatter::construct should throw an exception + on an invalid locale). (David Carlier) + +- MySQLnd: + . Fixed bug GH-12297 (PHP Startup: Invalid library (maybe not a PHP library) + 'mysqlnd.so' in Unknown on line). (nielsdos) + +- Opcache: + . Fixed opcache_invalidate() on deleted file. (mikhainin) + . Fixed bug GH-12380 (JIT+private array property access inside closure + accesses private property in child class). (nielsdos) + +- PCRE: + . Fixed bug GH-11956 (Backport upstream fix, PCRE regular expressions with + JIT enabled gives different result). (nielsdos) + +- SimpleXML: + . Fixed bug GH-12170 (Can't use xpath with comments in SimpleXML). (nielsdos) + . Fixed bug GH-12223 (Entity reference produces infinite loop in + var_dump/print_r). (nielsdos) + . Fixed bug GH-12167 (Unable to get processing instruction contents in + SimpleXML). (nielsdos) + . Fixed bug GH-12169 (Unable to get comment contents in SimpleXML). + (nielsdos) + +- Streams: + . Fixed bug GH-12190 (binding ipv4 address with both address and port at 0). + (David Carlier) + +- XML: + . Fix return type of stub of xml_parse_into_struct(). (nielsdos) + . Fix memory leak when calling xml_parse_into_struct() twice. (nielsdos) + +- XSL: + . Fix type error on XSLTProcessor::transformToDoc return value with + SimpleXML. (nielsdos) diff --git a/data/releases/8.2/8.2.12/release.json b/data/releases/8.2/8.2.12/release.json new file mode 100644 index 0000000000..7cb6182e52 --- /dev/null +++ b/data/releases/8.2/8.2.12/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.12", + "date": "26 Oct 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.12.tar.gz", + "name": "PHP 8.2.12 (tar.gz)", + "sha256": "b2b74a91f5fac14ce10ece0ac210f6f5d72f4367a3cb638e80d117d183750a21" + }, + { + "filename": "php-8.2.12.tar.bz2", + "name": "PHP 8.2.12 (tar.bz2)", + "sha256": "704325f56b1b4c17f9f951e1ffef5c64e148896053f34e2626152cbaa2f05893" + }, + { + "filename": "php-8.2.12.tar.xz", + "name": "PHP 8.2.12 (tar.xz)", + "sha256": "e1526e400bce9f9f9f774603cfac6b72b5e8f89fa66971ebc3cc4e5964083132" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.13/announcement.html b/data/releases/8.2/8.2.13/announcement.html new file mode 100644 index 0000000000..62dba21e34 --- /dev/null +++ b/data/releases/8.2/8.2.13/announcement.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/8.2.13/changes.txt b/data/releases/8.2/8.2.13/changes.txt new file mode 100644 index 0000000000..928bcb079c --- /dev/null +++ b/data/releases/8.2/8.2.13/changes.txt @@ -0,0 +1,69 @@ +- Core: + . Fixed double-free of non-interned enum case name. (ilutov) + . Fixed bug GH-12457 (Incorrect result of stripos with single character + needle). (SakiTakamachi) + . Fixed bug GH-12468 (Double-free of doc_comment when overriding static + property via trait). (ilutov) + . Fixed segfault caused by weak references to FFI objects. (sj-i) + . Fixed max_execution_time: don't delete an unitialized timer. (Kévin Dunglas) + . Fixed bug GH-12558 (Arginfo soft-breaks with namespaced class return type + if the class name starts with N). (kocsismate) + +- DOM: + . Fix registerNodeClass with abstract class crashing. (nielsdos) + . Add missing NULL pointer error check. (icy17) + . Fix validation logic of php:function() callbacks. (nielsdos) + +- Fiber: + . Fixed bug GH-11121 (ReflectionFiber segfault). (danog, trowski, bwoebi) + +- FPM: + . Fixed bug GH-9921 (Loading ext in FPM config does not register module + handlers). (Jakub Zelenka) + . Fixed bug GH-12232 (FPM: segfault dynamically loading extension without + opcache). (Jakub Zelenka) + . Fixed bug #76922 (FastCGI terminates conn after FCGI_GET_VALUES). + (Jakub Zelenka) + +- Intl: + . Removed the BC break on IntlDateFormatter::construct which threw an + exception with an invalid locale. (David Carlier) + +- Opcache: + . Added warning when JIT cannot be enabled. (danog) + . Fixed bug GH-8143 (Crashes in zend_accel_inheritance_cache_find since + upgrading to 8.1.3 due to corrupt on-disk file cache). (turchanov) + +- OpenSSL: + . Fixed bug GH-12489 (Missing sigbio creation checking in openssl_cms_verify). + (Jakub Zelenka) + +- PCRE: + . Fixed bug GH-11374 (Backport upstream fix, Different preg_match result + with -d pcre.jit=0). (mvorisek) + +- SOAP: + . Fixed bug GH-12392 (Segmentation fault on SoapClient::__getTypes). + (nielsdos) + . Fixed bug #66150 (SOAP WSDL cache race condition causes Segmentation + Fault). (nielsdos) + . Fixed bug #67617 (SOAP leaves incomplete cache file on ENOSPC). (nielsdos) + . Fix incorrect uri check in SOAP caching. (nielsdos) + . Fix segfault and assertion failure with refcounted props and arrays. + (nielsdos) + . Fix potential crash with an edge case of persistent encoders. (nielsdos) + . Fixed bug #75306 (Memleak in SoapClient). (nielsdos) + +- Streams: + . Fixed bug #75708 (getimagesize with "&$imageinfo" fails on StreamWrappers). + (Jakub Zelenka) + +- XMLReader: + . Add missing NULL pointer error check. (icy17) + +- XMLWriter: + . Add missing NULL pointer error check. (icy17) + +- XSL: + . Add missing module dependency. (nielsdos) + . Fix validation logic of php:function() callbacks. (nielsdos) diff --git a/data/releases/8.2/8.2.13/release.json b/data/releases/8.2/8.2.13/release.json new file mode 100644 index 0000000000..d8c635a412 --- /dev/null +++ b/data/releases/8.2/8.2.13/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.13", + "date": "23 Nov 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.13.tar.gz", + "name": "PHP 8.2.13 (tar.gz)", + "sha256": "6a194038f5a9e46d8f70a9d59c072c3b08d6edbdd8e304096e24ccf2225bcf1b" + }, + { + "filename": "php-8.2.13.tar.bz2", + "name": "PHP 8.2.13 (tar.bz2)", + "sha256": "66529f43b213131e6b253c5602bef05f049458d21292730fccd63b48a06d67ba" + }, + { + "filename": "php-8.2.13.tar.xz", + "name": "PHP 8.2.13 (tar.xz)", + "sha256": "2629bba10117bf78912068a230c68a8fd09b7740267bd8ebd3cfce91515d454b" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.14/announcement.html b/data/releases/8.2/8.2.14/announcement.html new file mode 100644 index 0000000000..c0a3796af7 --- /dev/null +++ b/data/releases/8.2/8.2.14/announcement.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/8.2.14/changes.txt b/data/releases/8.2/8.2.14/changes.txt new file mode 100644 index 0000000000..357457924d --- /dev/null +++ b/data/releases/8.2/8.2.14/changes.txt @@ -0,0 +1,86 @@ +- Core: + . Fixed oss-fuzz #54325 (Use-after-free of name in var-var with malicious + error handler). (ilutov) + . Fixed oss-fuzz #64209 (In-place modification of filename in + php_message_handler_for_zend). (ilutov) + . Fixed bug GH-12758 / GH-12768 (Invalid opline in OOM handlers within + ZEND_FUNC_GET_ARGS and ZEND_BIND_STATIC). (Florian Engelhardt) + . Fix various missing NULL checks. (nielsdos, dstogov) + . Fixed bug GH-12835 (Leak of call->extra_named_params on internal __call). + (ilutov) + +- Date: + . Fixed improbably integer overflow while parsing really large (or small) + Unix timestamps. (Derick) + +- DOM: + . Fixed bug GH-12616 (DOM: Removing XMLNS namespace node results in invalid + default: prefix). (nielsdos) + +- FPM: + . Fixed bug GH-12705 (Segmentation fault in fpm_status_export_to_zval). + (Patrick Prasse) + +- FTP: + . Fixed bug GH-9348 (FTP & SSL session reuse). (nielsdos) + +- Intl: + . Fixed bug GH-12635 (Test bug69398.phpt fails with ICU 74.1). (nielsdos) + +- LibXML: + . Fixed bug GH-12702 (libxml2 2.12.0 issue building from src). (nono303) + . Fixed test failures for libxml2 2.12.0. (nielsdos) + +- MySQLnd: + . Avoid using uninitialised struct. (mikhainin) + . Fixed bug GH-12791 (Possible dereference of NULL in MySQLnd debug code). + (nielsdos) + +- Opcache: + . Fixed JIT bug (Function JIT emits "Uninitialized string offset" warning + at the same time as invalid offset Error). (Girgias) + . Fixed JIT bug (JIT emits "Attempt to assign property of non-object" + warning at the same time as Error is being thrown). (Girgias) + +- OpenSSL: + . Fixed bug #50713 (openssl_pkcs7_verify() may ignore untrusted CAs). + (Jakub Zelenka) + +- PCRE: + . Fixed bug GH-12628 (The gh11374 test fails on Alpinelinux). (nielsdos) + +- PDO PGSQL: + . Fixed the default value of $fetchMode in PDO::pgsqlGetNotify() (kocsismate) + +- PGSQL: + . Fixed bug GH-12763 wrong argument type for pg_untrace. (degtyarov) + +- PHPDBG: + . Fixed bug GH-12675 (MEMORY_LEAK in phpdbg_prompt.c). (nielsdos) + +- SOAP: + . Fixed bug GH-12838 ([SOAP] Temporary WSDL cache files not being deleted). + (nielsdos) + +- SPL: + . Fixed bug GH-12721 (SplFileInfo::getFilename() segfault in combination + with GlobIterator and no directory separator). (nielsdos) + +- SQLite3: + . Fixed bug GH-12633 (sqlite3_defensive.phpt fails with sqlite 3.44.0). + (SakiTakamachi) + +- Standard: + . Fix memory leak in syslog device handling. (danog) + . Fixed bug GH-12621 (browscap segmentation fault when configured in the + vhost). (nielsdos) + . Fixed bug GH-12655 (proc_open() does not take into account references + in the descriptor array). (nielsdos) + +- Streams: + . Fixed bug #79945 (Stream wrappers in imagecreatefrompng causes segfault). + (Jakub Zelenka) + +- Zip: + . Fixed bug GH-12661 (Inconsistency in ZipArchive::addGlob remove_path Option + Behavior). (Remi) diff --git a/data/releases/8.2/8.2.14/release.json b/data/releases/8.2/8.2.14/release.json new file mode 100644 index 0000000000..072bca86ca --- /dev/null +++ b/data/releases/8.2/8.2.14/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.14", + "date": "21 Dec 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.14.tar.gz", + "name": "PHP 8.2.14 (tar.gz)", + "sha256": "4c1fbb55a10ece7f4532feba9f3f88b9b211c11320742977588738374c03255f" + }, + { + "filename": "php-8.2.14.tar.bz2", + "name": "PHP 8.2.14 (tar.bz2)", + "sha256": "f871e131333d60ae6c537b1adddbc2aea54c436c562af986fb8309c060040b9e" + }, + { + "filename": "php-8.2.14.tar.xz", + "name": "PHP 8.2.14 (tar.xz)", + "sha256": "763ecd39fcf51c3815af6ef6e43fa9aa0d0bd8e5a615009e5f4780c92705f583" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.15/announcement.html b/data/releases/8.2/8.2.15/announcement.html new file mode 100644 index 0000000000..4ea6427f8c --- /dev/null +++ b/data/releases/8.2/8.2.15/announcement.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/8.2.15/changes.txt b/data/releases/8.2/8.2.15/changes.txt new file mode 100644 index 0000000000..95f432db94 --- /dev/null +++ b/data/releases/8.2/8.2.15/changes.txt @@ -0,0 +1,68 @@ +- Core: + . Fixed bug GH-12953 (false positive SSA integrity verification failed when + loading composer classmaps with more than 11k elements). (nielsdos) + . Fixed bug GH-12966 (missing cross-compiling 3rd argument so Autoconf doesn't + emit warnings). (Peter Kokot) + . Fixed bug GH-13727 (missing void keyword for C generate code for feature test). + (Peter Kokot/David Carlier) + +- Cli: + . Fix incorrect timeout in built-in web server when using router script and + max_input_time. (ilutov) + +- FFI: + . Fixed bug GH-9698 (stream_wrapper_register crashes with FFI\CData). + (Jakub Zelenka) + . Fixed bug GH-12905 (FFI::new interacts badly with observers). (nielsdos) + +- GD: + . Fixed GH-13082 undefined behavior with GdFont instances handling with + imageload* and imagechar*. (David Carlier) + +- Intl: + . Fixed GH-12943 (IntlDateFormatter::__construct accepts 'C' as valid locale). + (David Carlier) + +- Hash: + . Fixed bug GH-12936 (hash() function hangs endlessly if using sha512 on + strings >= 4GiB). (nielsdos) + +- ODBC: + . Fix crash on Apache shutdown with persistent connections. (nielsdos) + +- Opcache: + . Fixed oss-fuzz #64727 (JIT undefined array key warning may overwrite DIM + with NULL when DIM is the same var as result). (ilutov) + . Added workaround for SELinux mprotect execheap issue. + See https://bugzilla.kernel.org/show_bug.cgi?id=218258. (ilutov) + +- OpenSSL: + . Fixed bug GH-12987 (openssl_csr_sign might leak new cert on error). + (Jakub Zelenka) + +- PDO: + . Fix GH-12969 (Fixed PDO::getAttribute() to get PDO::ATTR_STRINGIFY_FETCHES). + (SakiTakamachi) + +- PDO_ODBC: + . Fixed bug GH-12767 (Unable to turn on autocommit mode with setAttribute()). + (SakiTakamachi) + +- PGSQL: + . Fixed auto_reset_persistent handling and allow_persistent type. (David Carlier) + . Fixed bug GH-12974 (Apache crashes on shutdown when using pg_pconnect()). + (nielsdos) + +- Phar: + . Fixed bug #77432 (Segmentation fault on including phar file). (nielsdos) + +- PHPDBG: + . Fixed bug GH-12962 (Double free of init_file in phpdbg_prompt.c). (nielsdos) + +- SimpleXML: + . Fix getting the address of an uninitialized property of a SimpleXMLElement + resulting in a crash. (nielsdos) + +- Tidy: + . Fixed bug GH-12980 (tidynode.props.attribute is missing + "Boolean Attributes" and empty attributes). (nielsdos) diff --git a/data/releases/8.2/8.2.15/release.json b/data/releases/8.2/8.2.15/release.json new file mode 100644 index 0000000000..dbbc82ccb7 --- /dev/null +++ b/data/releases/8.2/8.2.15/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.15", + "date": "18 Jan 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.15.tar.gz", + "name": "PHP 8.2.15 (tar.gz)", + "sha256": "f9390d23708c65f428e868583dce7ab4a69e88ab6f377137a56643076f966b8f" + }, + { + "filename": "php-8.2.15.tar.bz2", + "name": "PHP 8.2.15 (tar.bz2)", + "sha256": "50c3e220b7aa63a85716233c902eb44cc0a4667ed0b8335722ae2391b1355e7a" + }, + { + "filename": "php-8.2.15.tar.xz", + "name": "PHP 8.2.15 (tar.xz)", + "sha256": "eca5deac02d77d806838275f8a3024b38b35ac0a5d9853dcc71c6cbe3f1f8765" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.16/announcement.html b/data/releases/8.2/8.2.16/announcement.html new file mode 100644 index 0000000000..31dd61d663 --- /dev/null +++ b/data/releases/8.2/8.2.16/announcement.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/8.2.16/changes.txt b/data/releases/8.2/8.2.16/changes.txt new file mode 100644 index 0000000000..893a0ce8fc --- /dev/null +++ b/data/releases/8.2/8.2.16/changes.txt @@ -0,0 +1,51 @@ +- Core: + . Fixed timer leak in zend-max-execution-timers builds. (withinboredom) + . Fixed bug GH-12349 (linking failure on ARM with mold). (Jan Palus) + . Fixed bug GH-13097 (Anonymous class reference in trigger_error / thrown + Exception). (nielsdos) + . Fixed bug GH-13215 (GCC 14 build failure). (Remi) + +- Curl: + . Fix missing error check in curl_multi_init(). (divinity76) + +- FPM: + . Fixed bug GH-12996 (Incorrect SCRIPT_NAME with Apache ProxyPassMatch when + plus in path). (Jakub Zelenka) + +- GD: + . Fixed bug GH-10344 (imagettfbbox(): Could not find/open font UNC path). + (nielsdos) + . Fixed bug GH-10614 (imagerotate will turn the picture all black, when + rotated 90). (nielsdos) + +- MySQLnd: + . Fixed bug GH-12107 (When running a stored procedure (that returns a result + set) twice, PHP crashes). (nielsdos) + +- Opcache: + . Fixed bug GH-13232 (Segmentation fault will be reported when JIT is off but + JIT_debug is still on). (nielsdos) + +- OpenSSL: + . Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set. + (David Carlier). + +- PDO_Firebird: + . Fix GH-13119 (Changed to convert float and double values into strings using + `H` format). (SakiTakamachi) + +- Phar: + . Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos) + . Fixed bug GH-13037 (PharData incorrectly extracts zip file). (nielsdos) + +- Random: + . Fixed bug GH-13138 (Randomizer::pickArrayKeys() does not detect broken + engines). (timwolla) + +- Session: + . Fixed bug GH-12504 (Corrupted session written when there's a fatal error + in autoloader). (nielsdos) + +- Streams: + . Fixed bug GH-13071 (Copying large files using mmap-able source streams may + exhaust available memory and fail). (nielsdos) diff --git a/data/releases/8.2/8.2.16/release.json b/data/releases/8.2/8.2.16/release.json new file mode 100644 index 0000000000..c84a1f8a15 --- /dev/null +++ b/data/releases/8.2/8.2.16/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.16", + "date": "15 Feb 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.16.tar.gz", + "name": "PHP 8.2.16 (tar.gz)", + "sha256": "62a92ef7c2c6f44b12e459d8f3d649aa8ebac5e05845f7479fe55a7580cd2dd0" + }, + { + "filename": "php-8.2.16.tar.bz2", + "name": "PHP 8.2.16 (tar.bz2)", + "sha256": "2658c1b8935ab6b53a7f209354602761ab07066e66920bc472b8815fd1b43f71" + }, + { + "filename": "php-8.2.16.tar.xz", + "name": "PHP 8.2.16 (tar.xz)", + "sha256": "28cdc995b7d5421711c7044294885fcde4390c9f67504a994b4cf9bc1b5cc593" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.17/announcement.html b/data/releases/8.2/8.2.17/announcement.html new file mode 100644 index 0000000000..e51dff0971 --- /dev/null +++ b/data/releases/8.2/8.2.17/announcement.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/8.2.17/changes.txt b/data/releases/8.2/8.2.17/changes.txt new file mode 100644 index 0000000000..d5ae26d74e --- /dev/null +++ b/data/releases/8.2/8.2.17/changes.txt @@ -0,0 +1,33 @@ +- Core: + . Fix ZTS persistent resource crashes on shutdown. (nielsdos) + +- Curl: + . Fix failing tests due to string changes in libcurl 8.6.0. (Ayesh) + +- DOM: + . Fix reference access in dimensions for DOMNodeList and DOMNodeMap. + (nielsdos) + +- Fileinfo: + . Fixed bug GH-13344 (finfo::buffer(): Failed identify data 0:(null), + backport). (nielsdos) + +- FPM: + . Fixed bug #75712 (getenv in php-fpm should not read $_ENV, $_SERVER). + (Jakub Zelenka) + +- GD: + . Fixed bug GH-12019 (detection of image formats in system gd library). + (Michael Orlitzky) + +- MySQLnd: + . Fixed bug GH-11950 ([mysqlnd] Fixed not to set CR_MALFORMED_PACKET to error + if CR_SERVER_GONE_ERROR is already set). (Saki Takamachi) + +- PGSQL: + . Fixed bug GH-13354 (pg_execute/pg_send_query_params/pg_send_execute + with null value passed by reference). (George Barbarosie) + +- Standard: + . Fixed array key as hash to string (case insensitive) comparison typo + for the second operand buffer size (albeit unused for now). (A. Slepykh) diff --git a/data/releases/8.2/8.2.17/release.json b/data/releases/8.2/8.2.17/release.json new file mode 100644 index 0000000000..3000dadb02 --- /dev/null +++ b/data/releases/8.2/8.2.17/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.17", + "date": "14 Mar 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.17.tar.gz", + "name": "PHP 8.2.17 (tar.gz)", + "sha256": "1d8ab98e1c09518c672c5afcbef0e61f9003173c7638fc686461ae670d12742e" + }, + { + "filename": "php-8.2.17.tar.bz2", + "name": "PHP 8.2.17 (tar.bz2)", + "sha256": "191316c203267d96160b47d22f955d4dc11793de8a5f327e0c2a76275a6894ea" + }, + { + "filename": "php-8.2.17.tar.xz", + "name": "PHP 8.2.17 (tar.xz)", + "sha256": "1cc4ef733ba58f6557db648012471f1916e5bac316303aa165535bedab08ee35" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.18/announcement.html b/data/releases/8.2/8.2.18/announcement.html new file mode 100644 index 0000000000..b841a62a3f --- /dev/null +++ b/data/releases/8.2/8.2.18/announcement.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/8.2.18/changes.txt b/data/releases/8.2/8.2.18/changes.txt new file mode 100644 index 0000000000..167af2ac92 --- /dev/null +++ b/data/releases/8.2/8.2.18/changes.txt @@ -0,0 +1,70 @@ +- Core: + . Fixed bug GH-13612 (Corrupted memory in destructor with weak references). + (nielsdos) + . Fixed bug GH-13784 (AX_GCC_FUNC_ATTRIBUTE failure). (Remi) + . Fixed bug GH-13670 (GC does not scale well with a lot of objects created in + destructor). (Arnaud) + +- DOM: + . Add some missing ZPP checks. (nielsdos) + . Fix potential memory leak in XPath evaluation results. (nielsdos) + . Fix phpdoc for DOMDocument load methods. (VincentLanglet) + +- FPM + . Fixed incorrect check in fpm_shm_free(). (nielsdos) + +- GD: + . Fixed bug GH-12019 (add GDLIB_CFLAGS in feature tests). (Michael Orlitzky) + +- Gettext: + . Fixed sigabrt raised with dcgettext/dcngettext calls with gettext 0.22.5 + with category set to LC_ALL. (David Carlier) + +- MySQLnd: + . Fix GH-13452 (Fixed handshake response [mysqlnd]). (Saki Takamachi) + . Fix incorrect charset length in check_mb_eucjpms(). (nielsdos) + +- Opcache: + . Fixed GH-13508 (JITed QM_ASSIGN may be optimized out when op1 is null). + (Arnaud, Dmitry) + . Fixed GH-13712 (Segmentation fault for enabled observers when calling trait + method of internal trait when opcache is loaded). (Bob) + +- PDO: + . Fix various PDORow bugs. (Girgias) + +- Random: + . Fixed bug GH-13544 (Pre-PHP 8.2 compatibility for mt_srand with unknown + modes). (timwolla) + . Fixed bug GH-13690 (Global Mt19937 is not properly reset in-between + requests when MT_RAND_PHP is used). (timwolla) + +- Session: + . Fixed bug GH-13680 (Segfault with session_decode and compilation error). + (nielsdos) + +- Sockets: + . Fixed bug GH-13604 (socket_getsockname returns random characters in the end + of the socket name). (David Carlier) + +- SPL: + . Fixed bug GH-13531 (Unable to resize SplfixedArray after being unserialized + in PHP 8.2.15). (nielsdos) + . Fixed bug GH-13685 (Unexpected null pointer in zend_string.h). (nielsdos) + +- Standard: + . Fixed bug GH-11808 (Live filesystem modified by tests). (nielsdos) + . Fixed GH-13402 (Added validation of `\n` in $additional_headers of mail()). + (SakiTakamachi) + . Fixed bug GH-13203 (file_put_contents fail on strings over 4GB on Windows). + (divinity76) + . Fixed bug GHSA-pc52-254m-w9w7 (Command injection via array-ish $command + parameter of proc_open). (CVE-2024-1874) (Jakub Zelenka) + . Fixed bug GHSA-wpj3-hf5j-x4v4 (__Host-/__Secure- cookie bypass due to + partial CVE-2022-31629 fix). (CVE-2024-2756) (nielsdos) + . Fixed bug GHSA-h746-cjrr-wfmr (password_verify can erroneously return true, + opening ATO risk). (CVE-2024-3096) (Jakub Zelenka) + +- XML: + . Fixed bug GH-13517 (Multiple test failures when building with + --with-expat). (nielsdos) diff --git a/data/releases/8.2/8.2.18/release.json b/data/releases/8.2/8.2.18/release.json new file mode 100644 index 0000000000..08243c4a20 --- /dev/null +++ b/data/releases/8.2/8.2.18/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.18", + "date": "11 Apr 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.18.tar.gz", + "name": "PHP 8.2.18 (tar.gz)", + "sha256": "b934ca7e8c82945c5cbf0aa2a3f66727eb5b5098e551819e1b090572d6a51ead" + }, + { + "filename": "php-8.2.18.tar.bz2", + "name": "PHP 8.2.18 (tar.bz2)", + "sha256": "ca0b07c254200320f518ac5b3df540a9cf14d866f3c93edc3013b52e06fac796" + }, + { + "filename": "php-8.2.18.tar.xz", + "name": "PHP 8.2.18 (tar.xz)", + "sha256": "44b306fc021e56441f691da6c3108788bd9e450f293b3bc70fcd64b08dd41a50" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.19/announcement.html b/data/releases/8.2/8.2.19/announcement.html new file mode 100644 index 0000000000..45db037b26 --- /dev/null +++ b/data/releases/8.2/8.2.19/announcement.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/8.2.19/changes.txt b/data/releases/8.2/8.2.19/changes.txt new file mode 100644 index 0000000000..2fcc5819d4 --- /dev/null +++ b/data/releases/8.2/8.2.19/changes.txt @@ -0,0 +1,73 @@ +- Core: + . Fixed bug GH-13772 (Invalid execute_data->opline pointers in observer fcall + handlers when JIT is enabled). (Bob) + . Fixed bug GH-13931 (Applying zero offset to null pointer in + Zend/zend_opcode.c). (nielsdos) + . Fixed bug GH-13942 (Align the behavior of zend-max-execution-timers with + other timeout implementations). (Kévin Dunglas) + . Fixed bug GH-14003 (Broken cleanup of unfinished calls with callable convert + parameters). (ilutov) + . Fixed bug GH-14013 (Erroneous dnl appended in configure). (Peter Kokot) + . Fixed bug GH-10232 (If autoloading occurs during constant resolution + filename and lineno are identified incorrectly). (ranvis) + . Fixed bug GH-13727 (Missing void keyword). (Peter Kokot) + +- Fibers: + . Fixed bug GH-13903 (ASAN false positive underflow when executing copy()). + (nielsdos) + +- FPM: + . Fixed bug GH-13563 (Setting bool values via env in FPM config fails). + (Jakub Zelenka) + +- Intl: + . Fixed build for icu 74 and onwards. (dunglas) + +- MySQLnd: + . Fix shift out of bounds on 32-bit non-fast-path platforms. (nielsdos) + +- Opcache: + . Fixed incorrect assumptions across compilation units for static calls. + (ilutov) + +- OpenSSL: + . Fixed bug GH-10495 (feof on OpenSSL stream hangs indefinitely). + (Jakub Zelenka) + +- PDO SQLite: + . Fix GH-13984 (Buffer size is now checked before memcmp). (Saki Takamachi) + . Fix GH-13998 (Manage refcount of agg_context->val correctly). + (Saki Takamachi) + +- Phar: + . Fixed bug GH-13836 (Renaming a file in a Phar to an already existing + filename causes a NULL pointer dereference). (nielsdos) + . Fixed bug GH-13833 (Applying zero offset to null pointer in zend_hash.c). + (nielsdos) + . Fix potential NULL pointer dereference before calling EVP_SignInit. (icy17) + +- PHPDBG: + . Fixed bug GH-13827 (Null pointer access of type 'zval' in phpdbg_frame). + (nielsdos) + +- Posix: + . Fix usage of reentrant functions in ext/posix. (Arnaud) + +- Session: + . Fixed bug GH-13856 (Member access within null pointer of type 'ps_files' in + ext/session/mod_files.c). (nielsdos) + . Fixed bug GH-13891 (memleak and segfault when using ini_set with + session.trans_sid_hosts). (nielsdos, kamil-tekiela) + . Fixed buffer _read/_write size limit on windows for the file mode. (David Carlier) + +- Streams: + . Fixed file_get_contents() on Windows fails with "errno=22 Invalid + argument". (Damian Wójcik) + . Fixed bug GH-13264 (Part 1 - Memory leak on stream filter failure). + (Jakub Zelenka) + . Fixed bug GH-13860 (Incorrect PHP_STREAM_OPTION_CHECK_LIVENESS case in + ext/openssl/xp_ssl.c - causing use of dead socket). (nielsdos) + . Fixed bug GH-11678 (Build fails on musl 1.2.4 - lfs64). (Arnaud) + +- Treewide: + . Fix gcc-14 Wcalloc-transposed-args warnings. (Cristian Rodríguez) diff --git a/data/releases/8.2/8.2.19/release.json b/data/releases/8.2/8.2.19/release.json new file mode 100644 index 0000000000..0ead741170 --- /dev/null +++ b/data/releases/8.2/8.2.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.19", + "date": "09 May 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.19.tar.gz", + "name": "PHP 8.2.19 (tar.gz)", + "sha256": "8bfdd20662b41a238a5acd84fab3e05c36a685fcb56e6d8ac18eeb87057ab2bc" + }, + { + "filename": "php-8.2.19.tar.bz2", + "name": "PHP 8.2.19 (tar.bz2)", + "sha256": "3c18f7ce51b7c7b26b797e1f97079d386b30347eb04e817f5e6c8e9b275e2a6a" + }, + { + "filename": "php-8.2.19.tar.xz", + "name": "PHP 8.2.19 (tar.xz)", + "sha256": "aecd63f3ebea6768997f5c4fccd98acbf897762ed5fc25300e846197a9485c13" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.2/announcement.html b/data/releases/8.2/8.2.2/announcement.html new file mode 100644 index 0000000000..5508b230a6 --- /dev/null +++ b/data/releases/8.2/8.2.2/announcement.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/8.2.2/changes.txt b/data/releases/8.2/8.2.2/changes.txt new file mode 100644 index 0000000000..4c4342be22 --- /dev/null +++ b/data/releases/8.2/8.2.2/changes.txt @@ -0,0 +1,59 @@ +- Core: + . Fixed bug GH-10200 (zif_get_object_vars: + Assertion `!(((__ht)->u.flags & (1<<2)) != 0)' failed). (nielsdos) + . Fix GH-10251 (Assertion `(flag & (1<<3)) == 0' failed). (nielsdos) + . Fix GH-10240 (Assertion failure when adding more than 2**30 elements to an + unpacked array). (Arnaud) + . Fix GH-9735 (Fiber stack variables do not participate in cycle collector). + (Arnaud) + . Fix GH-9675 (Broken run_time_cache init for internal enum methods). + (Petar Obradović, Bob) + . Fix GH-10248 (Assertion `!(zval_get_type(&(*(property))) == 10)' failed). + (nielsdos) + +- FPM: + . Fixed bug #77106 (Missing separator in FPM FastCGI errors). (Jakub Zelenka) + . Fixed bug GH-9981 (FPM does not reset fastcgi.error_header). + (Jakub Zelenka) + . Fixed bug #68591 (Configuration test does not perform UID lookups). + (Jakub Zelenka) + . Fixed memory leak when running FPM config test. (Jakub Zelenka) + . Fixed bug #67244 (Wrong owner:group for listening unix socket). + (Jakub Zelenka) + +- Hash: + . Handle exceptions from __toString in XXH3's initialization (nielsdos) + +- LDAP: + . Fixed bug GH-10112 (LDAP\Connection::__construct() refers to ldap_create()). + (cmb) + +- Opcache: + . Fix inverted bailout value in zend_runtime_jit() (Max Kellermann). + . Fix access to uninitialized variable in accel_preload(). (nielsdos) + . Fix zend_jit_find_trace() crashes. (Max Kellermann) + . Added missing lock for EXIT_INVALIDATE in zend_jit_trace_exit. (Max Kellermann) + +- Phar: + . Fix wrong flags check for compression method in phar_object.c (nielsdos) + +- PHPDBG: + . Fix undefined behaviour in phpdbg_load_module_or_extension(). (nielsdos) + . Fix NULL pointer dereference in phpdbg_create_conditional_breal(). (nielsdos) + . Fix GH-9710: phpdbg memory leaks by option "-h" (nielsdos) + . Fix phpdbg segmentation fault in case of malformed input (nielsdos) + +- Posix: + . Fix memory leak in posix_ttyname() (girgias) + +- Random: + . Fixed bug GH-10247 (Theoretical file descriptor leak for /dev/urandom). (timwolla) + +- Standard: + . Fix GH-10187 (Segfault in stripslashes() with arm64). (nielsdos) + . Fixed bug GH-10214 (Incomplete validation of object syntax during + unserialize()). (timwolla) + . Fix substr_replace with slots in repl_ht being UNDEF. (nielsdos) + +- XMLWriter + . Fix missing check for xmlTextWriterEndElement (nielsdos) diff --git a/data/releases/8.2/8.2.2/release.json b/data/releases/8.2/8.2.2/release.json new file mode 100644 index 0000000000..08e286a185 --- /dev/null +++ b/data/releases/8.2/8.2.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.2", + "date": "02 Feb 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.2.tar.gz", + "name": "PHP 8.2.2 (tar.gz)", + "sha256": "d82dda50356cebf6b6e14dbb576b14bc8b85f0f4476a787f0f50611f11eb37d2" + }, + { + "filename": "php-8.2.2.tar.bz2", + "name": "PHP 8.2.2 (tar.bz2)", + "sha256": "f5223a5274eda8b40c19e47de0de4678c65d64401ccf710e2464962eb8136804" + }, + { + "filename": "php-8.2.2.tar.xz", + "name": "PHP 8.2.2 (tar.xz)", + "sha256": "bdc4aa38e652bac86039601840bae01c0c3653972eaa6f9f93d5f71953a7ee33" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.20/announcement.html b/data/releases/8.2/8.2.20/announcement.html new file mode 100644 index 0000000000..7cdcf2d4e2 --- /dev/null +++ b/data/releases/8.2/8.2.20/announcement.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/8.2.20/changes.txt b/data/releases/8.2/8.2.20/changes.txt new file mode 100644 index 0000000000..caec83afea --- /dev/null +++ b/data/releases/8.2/8.2.20/changes.txt @@ -0,0 +1,77 @@ +- CGI: + . Fixed buffer limit on Windows, replacing read call usage by _read. + (David Carlier) + . Fixed bug GHSA-3qgc-jrrr-25jv (Bypass of CVE-2012-1823, Argument Injection + in PHP-CGI). (CVE-2024-4577) (nielsdos) + +- CLI: + . Fixed bug GH-14189 (PHP Interactive shell input state incorrectly handles + quoted heredoc literals.). (nielsdos) + +- Core: + . Fixed bug GH-13970 (Incorrect validation of #[Attribute] flags type for + non-compile-time expressions). (ilutov) + . Fixed bug GH-14140 (Floating point bug in range operation on Apple Silicon + hardware). (Derick, Saki) + +- DOM: + . Fix crashes when entity declaration is removed while still having entity + references. (nielsdos) + . Fix references not handled correctly in C14N. (nielsdos) + . Fix crash when calling childNodes next() when iterator is exhausted. + (nielsdos) + . Fix crash in ParentNode::append() when dealing with a fragment + containing text nodes. (nielsdos) + +- FFI: + . Fixed bug GH-14215 (Cannot use FFI::load on CRLF header file with + apache2handler). (nielsdos) + +- Filter: + . Fixed bug GHSA-w8qr-v226-r27w (Filter bypass in filter_var FILTER_VALIDATE_URL). + (CVE-2024-5458) (nielsdos) + +- FPM: + . Fix bug GH-14175 (Show decimal number instead of scientific notation in + systemd status). (Benjamin Cremer) + +- Hash: + . ext/hash: Swap the checking order of `__has_builtin` and `__GNUC__` + (Saki Takamachi) + +- Intl: + . Fixed build regression on systems without C++17 compilers. (Calvin Buckley, + Peter Kokot) + +- Ini: + . Fixed bug GH-14100 (Corrected spelling mistake in php.ini files). + (Marcus Xavier) + +- MySQLnd: + . Fix bug GH-14255 (mysqli_fetch_assoc reports error from + nested query). (Kamil Tekiela) + +- Opcache: + . Fixed bug GH-14109 (Fix accidental persisting of internal class constant in + shm). (ilutov) + +- OpenSSL: + . The openssl_private_decrypt function in PHP, when using PKCS1 padding + (OPENSSL_PKCS1_PADDING, which is the default), is vulnerable to the Marvin Attack + unless it is used with an OpenSSL version that includes the changes from this pull + request: https://github.com/openssl/openssl/pull/13817 (rsa_pkcs1_implicit_rejection). + These changes are part of OpenSSL 3.2 and have also been backported to stable + versions of various Linux distributions, as well as to the PHP builds provided for + Windows since the previous release. All distributors and builders should ensure that + this version is used to prevent PHP from being vulnerable. (CVE-2024-2408) + +- Standard: + . Fixed bug GHSA-9fcc-425m-g385 (Bypass of CVE-2024-1874). + (CVE-2024-5585) (nielsdos) + +- XML: + . Fixed bug GH-14124 (Segmentation fault with XML extension under certain + memory limit). (nielsdos) + +- XMLReader: + . Fixed bug GH-14183 (XMLReader::open() can't be overridden). (nielsdos) diff --git a/data/releases/8.2/8.2.20/release.json b/data/releases/8.2/8.2.20/release.json new file mode 100644 index 0000000000..6384779e39 --- /dev/null +++ b/data/releases/8.2/8.2.20/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.20", + "date": "06 Jun 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.20.tar.gz", + "name": "PHP 8.2.20 (tar.gz)", + "sha256": "05a4365f7bc6475ac4fef65dde13886913dbc0036e63895d369c1fc6e8206107" + }, + { + "filename": "php-8.2.20.tar.bz2", + "name": "PHP 8.2.20 (tar.bz2)", + "sha256": "5dec6fa61c7b9c47aa1d76666be651f2642ed2bcf6cd8638c57e3571ce2aac61" + }, + { + "filename": "php-8.2.20.tar.xz", + "name": "PHP 8.2.20 (tar.xz)", + "sha256": "4474cc430febef6de7be958f2c37253e5524d5c5331a7e1765cd2d2234881e50" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.21/announcement.html b/data/releases/8.2/8.2.21/announcement.html new file mode 100644 index 0000000000..52cc08ee31 --- /dev/null +++ b/data/releases/8.2/8.2.21/announcement.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/8.2.21/changes.txt b/data/releases/8.2/8.2.21/changes.txt new file mode 100644 index 0000000000..7a06c99b00 --- /dev/null +++ b/data/releases/8.2/8.2.21/changes.txt @@ -0,0 +1,73 @@ +- Core: + . Fixed bug GH-14315 (Incompatible pointer type warnings). (Peter Kokot) + . Fixed bug GH-12814 (max_execution_time reached too early on MacOS 14 + when running on Apple Silicon). (Manuel Kress) + . Fixed bug GH-14387 (Crash when stack walking in destructor of yielded from + values during Generator->throw()). (Bob) + . Fixed bug GH-14456 (Attempting to initialize class with private constructor + calls destructor). (Girgias) + . Fixed bug GH-14549 (Incompatible function pointer type for fclose). + (Ryan Carsten Schmidt) + +- BCMath: + . Fixed bug (bcpowmod() with mod = -1 returns 1 when it must be 0). (Girgias) + +- Curl: + . Fixed bug GH-14307 (Test curl_basic_024 fails with curl 8.8.0). (nielsdos) + +- DOM: + . Fixed bug GH-14343 (Memory leak in xml and dom). (nielsdos) + +- FPM: + . Fixed bug GH-14037 (PHP-FPM ping.path and ping.response config vars are + ignored in status pool). (Wilhansen Li, Pierrick Charron) + +- GD: + . Fix parameter numbers for imagecolorset(). (Giovanni Giacobbi) + +- Intl: + . Fix reference handling in SpoofChecker. (nielsdos) + +- MySQLnd: + . Partially fix bug GH-10599 (Apache crash on Windows when using a + self-referencing anonymous function inside a class with an active + mysqli connection). (nielsdos) + +- Opcache: + . Fixed bug GH-14267 (opcache.jit=off does not allow enabling JIT at runtime). + (ilutov) + . Fixed TLS access in JIT on FreeBSD/amd64. (Arnaud) + . Fixed bug GH-11188 (Error when building TSRM in ARM64). (nielsdos) + +- PDO ODBC: + . Fixed bug GH-14367 (incompatible SDWORD type with iODBC). (Calvin Buckley) + +- PHPDBG: + . Fixed bug GH-13681 (segfault on watchpoint addition failure). (David Carlier) + +- Soap: + . Fixed bug #47925 (PHPClient can't decompress response). (nielsdos) + . Fix missing error restore code. (nielsdos) + . Fix memory leak if calling SoapServer::setObject() twice. (nielsdos) + . Fix memory leak if calling SoapServer::setClass() twice. (nielsdos) + . Fix reading zlib ini settings in ext-soap. (nielsdos) + . Fix memory leaks with string function name lookups. (nielsdos) + . Fixed bug #69280 (SoapClient classmap doesn't support fully qualified class + name). (nielsdos) + . Fixed bug #76232 (SoapClient Cookie Header Semicolon). (nielsdos) + . Fixed memory leaks when calling SoapFault::__construct() twice. (Girgias) + +- Sodium: + . Fix memory leaks in ext/sodium on failure of some functions. (nielsdos) + +- SPL: + . Fixed bug GH-14290 (Member access within null pointer in extension spl). + (nielsdos) + +- Standard: + . Fixed bug GH-14483 (Fixed off-by-one error in checking length of abstract + namespace Unix sockets). (Derick) + +- Streams: + . Fixed bug GH-11078 (PHP Fatal error triggers pointer being freed was not + allocated and malloc: double free for ptr errors). (nielsdos) diff --git a/data/releases/8.2/8.2.21/release.json b/data/releases/8.2/8.2.21/release.json new file mode 100644 index 0000000000..f846d91669 --- /dev/null +++ b/data/releases/8.2/8.2.21/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.21", + "date": "04 Jul 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.21.tar.gz", + "name": "PHP 8.2.21 (tar.gz)", + "sha256": "0c6323699309a4d2e71057f01bc071b199f240973c349287b667a3ab36a496c6" + }, + { + "filename": "php-8.2.21.tar.bz2", + "name": "PHP 8.2.21 (tar.bz2)", + "sha256": "f9876fe7d4d96d41aced199b58a1f7ae7b6655ddc92673135feded7f6939d77f" + }, + { + "filename": "php-8.2.21.tar.xz", + "name": "PHP 8.2.21 (tar.xz)", + "sha256": "8cc44d51bb2506399ec176f70fe110f0c9e1f7d852a5303a2cd1403402199707" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.22/announcement.html b/data/releases/8.2/8.2.22/announcement.html new file mode 100644 index 0000000000..037f65d57f --- /dev/null +++ b/data/releases/8.2/8.2.22/announcement.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/8.2.22/changes.txt b/data/releases/8.2/8.2.22/changes.txt new file mode 100644 index 0000000000..f20f73ac16 --- /dev/null +++ b/data/releases/8.2/8.2.22/changes.txt @@ -0,0 +1,69 @@ +- Core: + . Fixed bug GH-13922 (Fixed support for systems with + sysconf(_SC_GETPW_R_SIZE_MAX) == -1). (Arnaud) + . Fixed bug GH-14626 (Fix is_zend_ptr() for huge blocks). (Arnaud) + . Fixed bug GH-14590 (Memory leak in FPM test gh13563-conf-bool-env.phpt. + (nielsdos) + . Fixed OSS-Fuzz #69765. (nielsdos) + . Fixed bug GH-14741 (Segmentation fault in Zend/zend_types.h). (nielsdos) + . Fixed bug GH-14969 (Use-after-free in property coercion with __toString()). + (ilutov) + . Fixed bug GH-14961 (Comment between -> and keyword results in parse error). + (ilutov) + +- Dom: + . Fixed bug GH-14702 (DOMDocument::xinclude() crash). (nielsdos) + +- Gd: + . ext/gd/tests/gh10614.phpt: skip if no PNG support. (orlitzky) + . restored warning instead of fata error. (dryabov) + +- LibXML: + . Fixed bug GH-14563 (Build failure with libxml2 v2.13.0). (nielsdos) + +- Opcache: + . Fixed bug GH-14550 (No warning message when Zend DTrace is enabled that + opcache.jit is implictly disabled). (nielsdos) + +- Output: + . Fixed bug GH-14808 (Unexpected null pointer in Zend/zend_string.h with + empty output buffer). (nielsdos) + +- PDO: + . Fixed bug GH-14712 (Crash with PDORow access to null property). + (David Carlier) + +- Phar: + . Fixed bug GH-14603 (null string from zip entry). + (David Carlier) + +- PHPDBG: + . Fixed bug GH-14596 (crashes with ASAN and ZEND_RC_DEBUG=1). + (David Carlier) + . Fixed bug GH-14553 (echo output trimmed at NULL byte). (nielsdos) + +- Shmop: + . Fixed bug GH-14537 (shmop Windows 11 crashes the process). (nielsdos) + +- SimpleXML: + . Fixed bug GH-14638 (null dereference after XML parsing failure). + (David Carlier) + +- SPL: + . Fixed bug GH-14639 (Member access within null pointer in + ext/spl/spl_observer.c). (nielsdos) + +- Standard: + . Fix 32-bit wordwrap test failures. (orlitzky) + . Fixed bug GH-14774 (time_sleep_until overflow). (David Carlier) + +- Tidy: + . Fix memory leak in tidy_repair_file(). (nielsdos) + +- Treewide: + . Fix compatibility with libxml2 2.13.2. (nielsdos) + +- XML: + . Move away from to-be-deprecated libxml fields. (nielsdos) + . Fixed bug GH-14834 (Error installing PHP when --with-pear is used). + (nielsdos) diff --git a/data/releases/8.2/8.2.22/release.json b/data/releases/8.2/8.2.22/release.json new file mode 100644 index 0000000000..c3116fc1d7 --- /dev/null +++ b/data/releases/8.2/8.2.22/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.22", + "date": "01 Aug 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.22.tar.gz", + "name": "PHP 8.2.22 (tar.gz)", + "sha256": "44197016c9eeed5c50523e20eb44adc4dd9d84ac08bdf9e46077e775d467d7d0" + }, + { + "filename": "php-8.2.22.tar.bz2", + "name": "PHP 8.2.22 (tar.bz2)", + "sha256": "5aae5964c60533185f9be928cf7d79a13393cc5560cedf1f4b977944cc76a585" + }, + { + "filename": "php-8.2.22.tar.xz", + "name": "PHP 8.2.22 (tar.xz)", + "sha256": "8566229bc88ad1f4aadc10700ab5fbcec81587c748999d985f11cf3b745462df" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.23/announcement.html b/data/releases/8.2/8.2.23/announcement.html new file mode 100644 index 0000000000..5a83d28094 --- /dev/null +++ b/data/releases/8.2/8.2.23/announcement.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/8.2.23/changes.txt b/data/releases/8.2/8.2.23/changes.txt new file mode 100644 index 0000000000..834c59c92c --- /dev/null +++ b/data/releases/8.2/8.2.23/changes.txt @@ -0,0 +1,71 @@ +- Core: + . Fixed bug GH-15020 (Memory leak in Zend/Optimizer/escape_analysis.c). + (nielsdos) + . Fixed bug GH-15023 (Memory leak in Zend/zend_ini.c). (nielsdos) + . Fixed bug GH-13330 (Append -Wno-implicit-fallthrough flag conditionally). + (Peter Kokot) + . Fix uninitialized memory in network.c. (nielsdos) + . Fixed bug GH-15108 (Segfault when destroying generator during shutdown). + (Arnaud) + . Fixed bug GH-15275 (Crash during GC of suspended generator delegate). + (Arnaud) + +- Curl: + . Fixed case when curl_error returns an empty string. + (David Carlier) + +- DOM: + . Fix UAF when removing doctype and using foreach iteration. (nielsdos) + +- FFI: + . Fixed bug GH-14286 (ffi enum type (when enum has no name) make memory + leak). (nielsdos, dstogov) + +- Hash: + . Fix crash when converting array data for array in shm in xxh3. (nielsdos) + +- Intl: + . Fixed bug GH-15087 (IntlChar::foldCase()'s $option is not optional). (cmb) + +- Opcache: + . Fixed bug GH-13817 (Segmentation fault for enabled observers after pass 4). + (Bob) + . Fixed bug GH-13775 (Memory leak possibly related to opcache SHM placement). + (Arnaud, nielsdos) + +- Output: + . Fixed bug GH-15179 (Segmentation fault (null pointer dereference) in + ext/standard/url_scanner_ex.re). (nielsdos) + +- PDO_Firebird: + . Fix bogus fallthrough path in firebird_handle_get_attribute(). (nielsdos) + +- PHPDBG: + . Fixed bug GH-13199 (EOF emits redundant prompt in phpdbg local console mode + with libedit/readline). (Peter Kokot) + . Fixed bug GH-15268 (heap buffer overflow in phpdbg + (zend_hash_num_elements() Zend/zend_hash.h)). (nielsdos) + . Fixed bug GH-15210 use-after-free on watchpoint allocations. (nielsdos) + +- Random: + . Fixed part of bug GH-15381, checking getrandom availability on solaris. + (David Carlier) + +- Soap: + . Fixed bug #55639 (Digest autentication dont work). (nielsdos) + . Fix SoapFault property destruction. (nielsdos) + . Fixed bug GH-15252 (SOAP XML broken since PHP 8.3.9 when using classmap + constructor option). (nielsdos) + +- Standard: + . Fix passing non-finite timeout values in stream functions. (nielsdos) + . Fixed GH-14780 p(f)sockopen timeout overflow. (David Carlier) + . Fixed GH-15653 overflow on fgetcsv length parameter. (David Carlier) + +- Streams: + . Fixed bug GH-15028 (Memory leak in ext/phar/stream.c). (nielsdos) + . Fixed bug GH-15034 (Integer overflow on stream_notification_callback + byte_max parameter with files bigger than 2GB). (nielsdos) + +- Tidy: + . Fix memory leaks in ext/tidy basedir restriction code. (nielsdos) diff --git a/data/releases/8.2/8.2.23/release.json b/data/releases/8.2/8.2.23/release.json new file mode 100644 index 0000000000..ed3e21e1bd --- /dev/null +++ b/data/releases/8.2/8.2.23/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.23", + "date": "29 Aug 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.23.tar.gz", + "name": "PHP 8.2.23 (tar.gz)", + "sha256": "f5cb5f0e063bcc632c60a8f26af63b19d5f924f1fc54b4471d88cfaa865d6917" + }, + { + "filename": "php-8.2.23.tar.bz2", + "name": "PHP 8.2.23 (tar.bz2)", + "sha256": "f7c90cda7a3c1de01f3bfb7b469d52dec9eba2f3b83320836004f9c2eecae26b" + }, + { + "filename": "php-8.2.23.tar.xz", + "name": "PHP 8.2.23 (tar.xz)", + "sha256": "81c5ae6ba44e262a076349ee54a2e468638a4571085d80bff37f6fd308e1d8d5" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.24/announcement.html b/data/releases/8.2/8.2.24/announcement.html new file mode 100644 index 0000000000..3797e84ec3 --- /dev/null +++ b/data/releases/8.2/8.2.24/announcement.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/8.2.24/changes.txt b/data/releases/8.2/8.2.24/changes.txt new file mode 100644 index 0000000000..15a51f5d1c --- /dev/null +++ b/data/releases/8.2/8.2.24/changes.txt @@ -0,0 +1,59 @@ +- CGI: + . Fixed bug GHSA-p99j-rfp4-xqvq (Bypass of CVE-2024-4577, Parameter Injection + Vulnerability). (CVE-2024-8926) (nielsdos) + . Fixed bug GHSA-94p6-54jq-9mwp (cgi.force_redirect configuration is + bypassable due to the environment variable collision). (CVE-2024-8927) + (nielsdos) + +- Core: + . Fixed bug GH-15408 (MSan false-positve on zend_max_execution_timer). + (zeriyoshi) + . Fixed bug GH-15515 (Configure error grep illegal option q). (Peter Kokot) + . Fixed bug GH-15514 (Configure error: genif.sh: syntax error). (Peter Kokot) + . Fixed bug GH-15565 (--disable-ipv6 during compilation produces error + EAI_SYSTEM not found). (nielsdos) + . Fixed bug GH-15587 (CRC32 API build error on arm 32-bit). + (Bernd Kuhls, Thomas Petazzoni) + . Fixed bug GH-15330 (Do not scan generator frames more than once). (Arnaud) + . Fixed uninitialized lineno in constant AST of internal enums. (ilutov) + +- Curl: + . FIxed bug GH-15547 (curl_multi_select overflow on timeout argument). + (David Carlier) + +- DOM: + . Fixed bug GH-15551 (Segmentation fault (access null pointer) in + ext/dom/xml_common.h). (nielsdos) + +- Fileinfo: + . Fixed bug GH-15752 (Incorrect error message for finfo_file + with an empty filename argument). (DanielEScherzer) + +- FPM: + . Fixed bug GHSA-865w-9rf3-2wh5 (Logs from childrens may be altered). + (CVE-2024-9026) (Jakub Zelenka) + +- MySQLnd: + . Fixed bug GH-15432 (Heap corruption when querying a vector). (cmb, + Kamil Tekiela) + +- Opcache: + . Fixed bug GH-15661 (Access null pointer in + Zend/Optimizer/zend_inference.c). (nielsdos) + . Fixed bug GH-15658 (Segmentation fault in Zend/zend_vm_execute.h). + (nielsdos) + +- SAPI: + . Fixed bug GHSA-9pqp-7h25-4f32 (Erroneous parsing of multipart form data). + (CVE-2024-8925) (Arnaud) + +- SOAP: + . Fixed bug #73182 (PHP SOAPClient does not support stream context HTTP + headers in array form). (nielsdos) + +- Standard: + . Fixed bug GH-15552 (Signed integer overflow in ext/standard/scanf.c). (cmb) + +- Streams: + . Fixed bug GH-15628 (php_stream_memory_get_buffer() not zero-terminated). + (cmb) diff --git a/data/releases/8.2/8.2.24/release.json b/data/releases/8.2/8.2.24/release.json new file mode 100644 index 0000000000..2feb554609 --- /dev/null +++ b/data/releases/8.2/8.2.24/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.24", + "date": "26 Sep 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.24.tar.gz", + "name": "PHP 8.2.24 (tar.gz)", + "sha256": "5d26441969279a594e404bb9f2e17b6f74bb10606fe05911e739137673ae6c4c" + }, + { + "filename": "php-8.2.24.tar.bz2", + "name": "PHP 8.2.24 (tar.bz2)", + "sha256": "4cc76ec644eee97d17c92bfe8d0e84714fedf299a538b7dfadc0639dd0dc432f" + }, + { + "filename": "php-8.2.24.tar.xz", + "name": "PHP 8.2.24 (tar.xz)", + "sha256": "80a5225746a9eb484475b312d4c626c63a88a037d8e56d214f30205e1ba1411a" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.25/announcement.html b/data/releases/8.2/8.2.25/announcement.html new file mode 100644 index 0000000000..093f15ef4e --- /dev/null +++ b/data/releases/8.2/8.2.25/announcement.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/8.2.25/changes.txt b/data/releases/8.2/8.2.25/changes.txt new file mode 100644 index 0000000000..4eed2f514a --- /dev/null +++ b/data/releases/8.2/8.2.25/changes.txt @@ -0,0 +1,115 @@ +- Calendar: + . Fixed GH-16240: jdtounix overflow on argument value. (David Carlier) + . Fixed GH-16241: easter_days/easter_date overflow on year argument. + (David Carlier) + . Fixed GH-16263: jddayofweek overflow. (cmb) + . Fixed GH-16234: jewishtojd overflow. (nielsdos) + +- CLI: + . Fixed bug GH-16137: duplicate http headers when set several times by + the client. (David Carlier) + +- Core: + . Fixed bug GH-15712: zend_strtod overflow with precision INI set on + large value. (David Carlier) + . Fixed bug GH-15905 (Assertion failure for TRACK_VARS_SERVER). (cmb) + . Fixed bug GH-15907 (Failed assertion when promoting Serialize deprecation to + exception). (ilutov) + . Fixed bug GH-15851 (Segfault when printing backtrace during cleanup of + nested generator frame). (ilutov) + . Fixed bug GH-15866 (Core dumped in Zend/zend_generators.c). (Arnaud) + . Fixed bug GH-16188 (Assertion failure in Zend/zend_exceptions.c). (Arnaud) + . Fixed bug GH-16233 (Observer segfault when calling user function in + internal function via trampoline). (nielsdos) + +- Date: + . Fixed bug GH-15582: Crash when not calling parent constructor of + DateTimeZone. (Derick) + . Fixed regression where signs after the first one were ignored while parsing + a signed integer, with the DateTimeInterface::modify() function. (Derick) + +- DOM: + . Fixed bug GH-16039 (Segmentation fault (access null pointer) in + ext/dom/parentnode/tree.c). (nielsdos) + . Fixed bug GH-16151 (Assertion failure in ext/dom/parentnode/tree.c). + (nielsdos) + +- GD: + . Fixed bug GH-16232 (bitshift overflow on wbmp file content reading / + fix backport from upstream). (David Carlier) + . Fixed bug GH-12264 (overflow/underflow on imagerotate degrees value) + (David Carlier) + . Fixed bug GH-16274 (imagescale underflow on RBG channels / + fix backport from upstream). (David Carlier) + +- LDAP: + . Fixed bug GH-16032 (Various NULL pointer dereferencements in + ldap_modify_batch()). (Girgias) + . Fixed bug GH-16101 (Segfault in ldap_list(), ldap_read(), and ldap_search() + when LDAPs array is not a list). (Girgias) + . Fix GH-16132 (php_ldap_do_modify() attempts to free pointer not allocated + by ZMM.). (Girgias) + . Fix GH-16136 (Memory leak in php_ldap_do_modify() when entry is not a + proper dictionary). (Girgias) + +- MBString: + . Fixed bug GH-16261 (Reference invariant broken in mb_convert_variables()). + (nielsdos) + +- OpenSSL: + . Fixed stub for openssl_csr_new. (Jakub Zelenka) + +- PCRE: + . Fixed bug GH-16189 (underflow on offset argument). (David Carlier) + . Fixed bug GH-16184 (UBSan address overflowed in ext/pcre/php_pcre.c). + (nielsdos) + +- PHPDBG: + . Fixed bug GH-15901 (phpdbg: Assertion failure on i funcs). (cmb) + . Fixed bug GH-16181 (phpdbg: exit in exception handler reports fatal error). + (cmb) + +- Reflection: + . Fixed bug GH-16187 (Assertion failure in ext/reflection/php_reflection.c). + (DanielEScherzer) + +- SAPI: + . Fixed bug GH-15395 (php-fpm: zend_mm_heap corrupted with cgi-fcgi request). + (Jakub Zelenka, David Carlier) + +- SimpleXML: + . Fixed bug GH-15837 (Segmentation fault in ext/simplexml/simplexml.c). + (nielsdos) + +- Sockets: + . Fixed bug GH-16267 (socket_strerror overflow on errno argument). + (David Carlier) + +- SOAP: + . Fixed bug #62900 (Wrong namespace on xsd import error message). (nielsdos) + . Fixed bug GH-16237 (Segmentation fault when cloning SoapServer). (nielsdos) + . Fix Soap leaking http_msg on error. (nielsdos) + . Fixed bug GH-16256 (Assertion failure in ext/soap/php_encoding.c:460). + (nielsdos) + . Fixed bug GH-16259 (Soap segfault when classmap instantiation fails). + (nielsdos) + +- Standard: + . Fixed bug GH-15613 (overflow on unpack call hex string repeater). + (David Carlier) + . Fixed bug GH-15937 (overflow on stream timeout option value). + (David Carlier) + . Fixed bug GH-16053 (Assertion failure in Zend/zend_hash.c). (Arnaud) + +- Streams: + . Fixed bugs GH-15908 and GH-15026 (leak / assertion failure in streams.c). + (nielsdos) + . Fixed bug GH-15980 (Signed integer overflow in main/streams/streams.c). + (cmb) + +- TSRM: + . Prevent closing of unrelated handles. (cmb) + +- XML: + . Fixed bug GH-15868 (Assertion failure in xml_parse_into_struct after + exception). (nielsdos) diff --git a/data/releases/8.2/8.2.25/release.json b/data/releases/8.2/8.2.25/release.json new file mode 100644 index 0000000000..658e51c694 --- /dev/null +++ b/data/releases/8.2/8.2.25/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.25", + "date": "24 Oct 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.25.tar.gz", + "name": "PHP 8.2.25 (tar.gz)", + "sha256": "7fe7ba6e3e66cd0e61cfa95341e6aefc8790030a7867333f54aef5fb78aad18b" + }, + { + "filename": "php-8.2.25.tar.bz2", + "name": "PHP 8.2.25 (tar.bz2)", + "sha256": "07b41c5e96c60c096510e45f02f818414d11bdd0d5da1b6840ddba2ba7289401" + }, + { + "filename": "php-8.2.25.tar.xz", + "name": "PHP 8.2.25 (tar.xz)", + "sha256": "330b54876ea1d05ade12ee9726167332058bccd58dffa1d4e12117f6b4f616b9" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.26/announcement.html b/data/releases/8.2/8.2.26/announcement.html new file mode 100644 index 0000000000..05c4343b31 --- /dev/null +++ b/data/releases/8.2/8.2.26/announcement.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/8.2.26/changes.txt b/data/releases/8.2/8.2.26/changes.txt new file mode 100644 index 0000000000..9fbc10a594 --- /dev/null +++ b/data/releases/8.2/8.2.26/changes.txt @@ -0,0 +1,168 @@ +- CLI: + . Fixed bug GH-16373 (Shebang is not skipped for router script in cli-server + started through shebang). (ilutov) + . Fixed bug GHSA-4w77-75f9-2c8w (Heap-Use-After-Free in sapi_read_post_data + Processing in CLI SAPI Interface). (nielsdos) + +- COM: + . Fixed out of bound writes to SafeArray data. (cmb) + +- Core: + . Fixed bug GH-16168 (php 8.1 and earlier crash immediately when compiled + with Xcode 16 clang on macOS 15). (nielsdos) + . Fixed bug GH-16371 (Assertion failure in Zend/zend_weakrefs.c:646). (Arnaud) + . Fixed bug GH-16515 (Incorrect propagation of ZEND_ACC_RETURN_REFERENCE for + call trampoline). (ilutov) + . Fixed bug GH-16509 (Incorrect line number in function redeclaration error). + (ilutov) + . Fixed bug GH-16508 (Incorrect line number in inheritance errors of delayed + early bound classes). (ilutov) + . Fixed bug GH-16648 (Use-after-free during array sorting). (ilutov) + . Fixed bug GH-15915 (overflow with a high value for precision INI). + (David Carlier / cmb) + +- Curl: + . Fixed bug GH-16302 (CurlMultiHandle holds a reference to CurlHandle if + curl_multi_add_handle fails). (timwolla) + +- Date: + . Fixed bug GH-16454 (Unhandled INF in date_sunset() with tiny $utcOffset). + (cmb) + . Fixed bug GH-16037 (Assertion failure in ext/date/php_date.c). (Derick) + . Fixed bug GH-14732 (date_sun_info() fails for non-finite values). (cmb) + +- DBA: + . Fixed bug GH-16390 (dba_open() can segfault for "pathless" streams). (cmb) + +- DOM: + . Fixed bug GH-16316 (DOMXPath breaks when not initialized properly). + (nielsdos) + . Fixed bug GH-16473 (dom_import_simplexml stub is wrong). (nielsdos) + . Fixed bug GH-16533 (Segfault when adding attribute to parent that is not + an element). (nielsdos) + . Fixed bug GH-16535 (UAF when using document as a child). (nielsdos) + . Fixed bug GH-16593 (Assertion failure in DOM->replaceChild). (nielsdos) + . Fixed bug GH-16595 (Another UAF in DOM -> cloneNode). (nielsdos) + +- EXIF: + . Fixed bug GH-16409 (Segfault in exif_thumbnail when not dealing with a + real file). (nielsdos, cmb) + +- FFI: + . Fixed bug GH-16397 (Segmentation fault when comparing FFI object). + (nielsdos) + +- Filter: + . Fixed bug GH-16523 (FILTER_FLAG_HOSTNAME accepts ending hyphen). (cmb) + +- FPM: + . Fixed bug GH-16628 (FPM logs are getting corrupted with this log + statement). (nielsdos) + +- GD: + . Fixed bug GH-16334 (imageaffine overflow on matrix elements). + (David Carlier) + . Fixed bug GH-16427 (Unchecked libavif return values). (cmb) + . Fixed bug GH-16559 (UBSan abort in ext/gd/libgd/gd_interpolation.c:1007). + (nielsdos) + +- GMP: + . Fixed bug GH-16411 (gmp_export() can cause overflow). (cmb) + . Fixed bug GH-16501 (gmp_random_bits() can cause overflow). + (David Carlier) + . Fixed segfaults and other issues related to operator overloading with + GMP objects. (Girgias) + +- LDAP: + . Fixed bug GHSA-g665-fm4p-vhff (OOB access in ldap_escape). (CVE-2024-8932) + (nielsdos) + +- MBstring: + . Fixed bug GH-16361 (mb_substr overflow on start/length arguments). + (David Carlier) + +- MySQLnd: + . Fixed bug GHSA-h35g-vwh6-m678 (Leak partial content of the heap through + heap buffer over-read). (CVE-2024-8929) (Jakub Zelenka) + +- OpenSSL: + . Fixed bug GH-16357 (openssl may modify member types of certificate arrays). + (cmb) + . Fixed bug GH-16433 (Large values for openssl_csr_sign() $days overflow). + (cmb) + . Fix various memory leaks on error conditions in openssl_x509_parse(). + (nielsdos) + +- PDO DBLIB: + . Fixed bug GHSA-5hqh-c84r-qjcv (Integer overflow in the dblib quoter causing + OOB writes). (CVE-2024-11236) (nielsdos) + +- PDO Firebird: + . Fixed bug GHSA-5hqh-c84r-qjcv (Integer overflow in the firebird quoter + causing OOB writes). (CVE-2024-11236) (nielsdos) + +- PDO ODBC: + . Fixed bug GH-16450 (PDO_ODBC can inject garbage into field values). (cmb) + +- Phar: + . Fixed bug GH-16406 (Assertion failure in ext/phar/phar.c:2808). (nielsdos) + +- PHPDBG: + . Fixed bug GH-16174 (Empty string is an invalid expression for ev). (cmb) + +- Reflection: + . Fixed bug GH-16601 (Memory leak in Reflection constructors). (nielsdos) + +- Session: + . Fixed bug GH-16385 (Unexpected null returned by session_set_cookie_params). + (nielsdos) + . Fixed bug GH-16290 (overflow on cookie_lifetime ini value). + (David Carlier) + +- SOAP: + . Fixed bug GH-16429 (Segmentation fault access null pointer in SoapClient). + (nielsdos) + +- Sockets: + . Fixed bug with overflow socket_recvfrom $length argument. (David Carlier) + +- SPL: + . Fixed bug GH-16337 (Use-after-free in SplHeap). (nielsdos) + . Fixed bug GH-16464 (Use-after-free in SplDoublyLinkedList::offsetSet()). + (ilutov) + . Fixed bug GH-16479 (Use-after-free in SplObjectStorage::setInfo()). (ilutov) + . Fixed bug GH-16478 (Use-after-free in SplFixedArray::unset()). (ilutov) + . Fixed bug GH-16588 (UAF in Observer->serialize). (nielsdos) + . Fix GH-16477 (Segmentation fault when calling __debugInfo() after failed + SplFileObject::__constructor). (Girgias) + . Fixed bug GH-16589 (UAF in SplDoublyLinked->serialize()). (nielsdos) + . Fixed bug GH-14687 (segfault on SplObjectIterator instance). + (David Carlier) + . Fixed bug GH-16604 (Memory leaks in SPL constructors). (nielsdos) + . Fixed bug GH-16646 (UAF in ArrayObject::unset() and + ArrayObject::exchangeArray()). (ilutov) + +- Standard: + . Fixed bug GH-16293 (Failed assertion when throwing in assert() callback with + bail enabled). (ilutov) + +- Streams: + . Fixed bug GHSA-c5f2-jwm7-mmq2 (Configuring a proxy in a stream context + might allow for CRLF injection in URIs). (CVE-2024-11234) (Jakub Zelenka) + . Fixed bug GHSA-r977-prxv-hc43 (Single byte overread with + convert.quoted-printable-decode filter). (CVE-2024-11233) (nielsdos) + +- SysVMsg: + . Fixed bug GH-16592 (msg_send() crashes when a type does not properly + serialized). (David Carlier / cmb) + +- SysVShm: + . Fixed bug GH-16591 (Assertion error in shm_put_var). (nielsdos, cmb) + +- XMLReader: + . Fixed bug GH-16292 (Segmentation fault in ext/xmlreader/php_xmlreader.c). + (nielsdos) + +- Zlib: + . Fixed bug GH-16326 (Memory management is broken for bad dictionaries.) + (cmb) diff --git a/data/releases/8.2/8.2.26/release.json b/data/releases/8.2/8.2.26/release.json new file mode 100644 index 0000000000..1a6c3d1961 --- /dev/null +++ b/data/releases/8.2/8.2.26/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.26", + "date": "21 Nov 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.26.tar.gz", + "name": "PHP 8.2.26 (tar.gz)", + "sha256": "04e47b46b347ed6404dcc9e9989486710b075eafc8490500fd271aeeac5d83cb" + }, + { + "filename": "php-8.2.26.tar.bz2", + "name": "PHP 8.2.26 (tar.bz2)", + "sha256": "be57c347d451c905bcb4336832a864d9928dd0e20989b872705fea0ba6476c6b" + }, + { + "filename": "php-8.2.26.tar.xz", + "name": "PHP 8.2.26 (tar.xz)", + "sha256": "54747400cb4874288ad41a785e6147e2ff546cceeeb55c23c00c771ac125c6ef" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.27/announcement.html b/data/releases/8.2/8.2.27/announcement.html new file mode 100644 index 0000000000..c71b23eb37 --- /dev/null +++ b/data/releases/8.2/8.2.27/announcement.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/8.2.27/changes.txt b/data/releases/8.2/8.2.27/changes.txt new file mode 100644 index 0000000000..408738394b --- /dev/null +++ b/data/releases/8.2/8.2.27/changes.txt @@ -0,0 +1,78 @@ +- Calendar: + . Fixed jdtogregorian overflow. (David Carlier) + . Fixed cal_to_jd julian_days argument overflow. (David Carlier) + +- COM: + . Fixed bug GH-16991 (Getting typeinfo of non DISPATCH variant segfaults). + (cmb) + +- Core: + . Fail early in *nix configuration build script. (hakre) + . Fixed bug GH-16727 (Opcache bad signal 139 crash in ZTS bookworm + (frankenphp)). (nielsdos) + . Fixed bug GH-16799 (Assertion failure at Zend/zend_vm_execute.h:7469). + (nielsdos) + . Fixed bug GH-16630 (UAF in lexer with encoding translation and heredocs). + (nielsdos) + . Fix is_zend_ptr() huge block comparison. (nielsdos) + . Fixed potential OOB read in zend_dirname() on Windows. (cmb) + +- Curl: + . Fix various memory leaks in curl mime handling. (nielsdos) + +- FPM: + . Fixed GH-16432 (PHP-FPM 8.2 SIGSEGV in fpm_get_status). (Jakub Zelenka) + +- GD: + . Fixed GH-16776 (imagecreatefromstring overflow). (David Carlier) + +- GMP: + . Revert gmp_pow() overly restrictive overflow checks. + (David Carlier) + +- Hash: + . Fixed GH-16711: Segfault in mhash(). (Girgias) + +- Opcache: + . Fixed bug GH-16770 (Tracing JIT type mismatch when returning UNDEF). + (nielsdos, Dmitry) + . Fixed bug GH-16851 (JIT_G(enabled) not set correctly on other threads). + (dktapps) + . Fixed bug GH-16902 (Set of opcache tests fail zts+aarch64). (nielsdos) + +- OpenSSL: + . Prevent unexpected array entry conversion when reading key. (nielsdos) + . Fix various memory leaks related to openssl exports. (nielsdos) + . Fix memory leak in php_openssl_pkey_from_zval(). (nielsdos) + +- PDO: + . Fixed memory leak of `setFetchMode()`. (SakiTakamachi) + +- Phar: + . Fixed bug GH-16695 (phar:// tar parser and zero-length file header blocks). + (nielsdos, Hans Krentel) + +- PHPDBG: + . Fixed bug GH-15208 (Segfault with breakpoint map and phpdbg_clear()). + (nielsdos) + +- SAPI: + . Fixed bug GH-16998 (UBSAN warning in rfc1867). (nielsdos) + +- SimpleXML: + . Fixed bug GH-16808 (Segmentation fault in RecursiveIteratorIterator + ->current() with a xml element input). (nielsdos) + +- SNMP: + . Fixed bug GH-16959 (snmget modifies the object_id array). + (David Carlier) + +- Standard: + . Fixed bug GH-16905 (Internal iterator functions can't handle UNDEF + properties). (nielsdos) + +- Streams: + . Fixed network connect poll interuption handling. (Jakub Zelenka) + +- Windows: + . Fixed bug GH-16849 (Error dialog causes process to hang). (cmb) diff --git a/data/releases/8.2/8.2.27/release.json b/data/releases/8.2/8.2.27/release.json new file mode 100644 index 0000000000..017756b897 --- /dev/null +++ b/data/releases/8.2/8.2.27/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.27", + "date": "19 Dec 2024", + "tags": [], + "source": [ + { + "filename": "php-8.2.27.tar.gz", + "name": "PHP 8.2.27 (tar.gz)", + "sha256": "179cc901760d478ffd545d10702ebc2a1270d8c13471bdda729d20055140809a" + }, + { + "filename": "php-8.2.27.tar.bz2", + "name": "PHP 8.2.27 (tar.bz2)", + "sha256": "6e57dbaf769a7f3deb4f0f48b8c535e671cc0a18022ed7f6ff23b50e941d4b60" + }, + { + "filename": "php-8.2.27.tar.xz", + "name": "PHP 8.2.27 (tar.xz)", + "sha256": "3eec91294d8c09b3df80b39ec36d574ed9b05de4c8afcb25fa215d48f9ecbc6b" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.28/announcement.html b/data/releases/8.2/8.2.28/announcement.html new file mode 100644 index 0000000000..163fd017e1 --- /dev/null +++ b/data/releases/8.2/8.2.28/announcement.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/8.2.28/changes.txt b/data/releases/8.2/8.2.28/changes.txt new file mode 100644 index 0000000000..93d8feef1b --- /dev/null +++ b/data/releases/8.2/8.2.28/changes.txt @@ -0,0 +1,21 @@ +- Core: + . Fixed bug GH-17211 (observer segfault on function loaded with dl()). + (Arnaud) + +- LibXML: + . Fixed GHSA-wg4p-4hqh-c3g9 (Reocurrence of #72714). (nielsdos) + . Fixed GHSA-p3x9-6h7p-cgfc (libxml streams use wrong `content-type` header + when requesting a redirected resource). (CVE-2025-1219) (timwolla) + +- Streams: + . Fixed GHSA-hgf5-96fm-v528 (Stream HTTP wrapper header check might omit + basic auth header). (CVE-2025-1736) (Jakub Zelenka) + . Fixed GHSA-52jp-hrpf-2jff (Stream HTTP wrapper truncate redirect location + to 1024 bytes). (CVE-2025-1861) (Jakub Zelenka) + . Fixed GHSA-pcmh-g36c-qc44 (Streams HTTP wrapper does not fail for headers + without colon). (CVE-2025-1734) (Jakub Zelenka) + . Fixed GHSA-v8xr-gpvj-cx9g (Header parser of `http` stream wrapper does not + handle folded headers). (CVE-2025-1217) (Jakub Zelenka) + +- Windows: + . Fixed phpize for Windows 11 (24H2). (bwoebi) diff --git a/data/releases/8.2/8.2.28/release.json b/data/releases/8.2/8.2.28/release.json new file mode 100644 index 0000000000..88ac37753c --- /dev/null +++ b/data/releases/8.2/8.2.28/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.28", + "date": "13 Mar 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.28.tar.gz", + "name": "PHP 8.2.28 (tar.gz)", + "sha256": "3318300888de5023720cc84efad5e005e53f30b5f0072fae65a750dabcaf6ec3" + }, + { + "filename": "php-8.2.28.tar.bz2", + "name": "PHP 8.2.28 (tar.bz2)", + "sha256": "2919cc1b92190a58dc17904b92e626600b96ce49a4c72e77513786a4406acce5" + }, + { + "filename": "php-8.2.28.tar.xz", + "name": "PHP 8.2.28 (tar.xz)", + "sha256": "af8c9153153a7f489153b7a74f2f29a5ee36f5cb2c6c6929c98411a577e89c91" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.29/announcement.html b/data/releases/8.2/8.2.29/announcement.html new file mode 100644 index 0000000000..1d64ece257 --- /dev/null +++ b/data/releases/8.2/8.2.29/announcement.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/8.2.29/changes.txt b/data/releases/8.2/8.2.29/changes.txt new file mode 100644 index 0000000000..cd0639d6a0 --- /dev/null +++ b/data/releases/8.2/8.2.29/changes.txt @@ -0,0 +1,11 @@ +- PGSQL: + . Fixed GHSA-hrwm-9436-5mv3 (pgsql extension does not check for errors during + escaping). (CVE-2025-1735) (Jakub Zelenka) + +- SOAP: + . Fixed GHSA-453j-q27h-5p8x (NULL Pointer Dereference in PHP SOAP Extension + via Large XML Namespace Prefix). (CVE-2025-6491) (Lekssays, nielsdos) + +- Standard: + . Fixed GHSA-3cr5-j632-f35r (Null byte termination in hostnames). + (CVE-2025-1220) (Jakub Zelenka) diff --git a/data/releases/8.2/8.2.29/release.json b/data/releases/8.2/8.2.29/release.json new file mode 100644 index 0000000000..d927f2b8dd --- /dev/null +++ b/data/releases/8.2/8.2.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.29", + "date": "3 Jul 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.29.tar.gz", + "name": "PHP 8.2.29 (tar.gz)", + "sha256": "0b27d330769d4bc67b1d8864347c38744b289664a946919c3ddb2235d326b3cd" + }, + { + "filename": "php-8.2.29.tar.bz2", + "name": "PHP 8.2.29 (tar.bz2)", + "sha256": "51979e8d198cbade2aad4ffe9f53dd3f04f9602d3089e5979985e058ade4267c" + }, + { + "filename": "php-8.2.29.tar.xz", + "name": "PHP 8.2.29 (tar.xz)", + "sha256": "475f991afd2d5b901fb410be407d929bc00c46285d3f439a02c59e8b6fe3589c" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.3/announcement.html b/data/releases/8.2/8.2.3/announcement.html new file mode 100644 index 0000000000..6a4f4558c7 --- /dev/null +++ b/data/releases/8.2/8.2.3/announcement.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/8.2.3/changes.txt b/data/releases/8.2/8.2.3/changes.txt new file mode 100644 index 0000000000..729d8bc63b --- /dev/null +++ b/data/releases/8.2/8.2.3/changes.txt @@ -0,0 +1,9 @@ +- Core: + . Fixed bug #81744 (Password_verify() always return true with some hash). + (CVE-2023-0567). (Tim Düsterhus) + . Fixed bug #81746 (1-byte array overrun in common path resolve code). + (CVE-2023-0568). (Niels Dossche) + +- SAPI: + . Fixed bug GHSA-54hq-v5wp-fqgv (DOS vulnerability when parsing multipart + request body). (CVE-2023-0662) (Jakub Zelenka) diff --git a/data/releases/8.2/8.2.3/release.json b/data/releases/8.2/8.2.3/release.json new file mode 100644 index 0000000000..3272a0e1fd --- /dev/null +++ b/data/releases/8.2/8.2.3/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.3", + "date": "14 Feb 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.3.tar.gz", + "name": "PHP 8.2.3 (tar.gz)", + "sha256": "7c475bcbe61d28b6878604b1b6f387f39d1a63b5f21fa8156fd7aa615d43e259" + }, + { + "filename": "php-8.2.3.tar.bz2", + "name": "PHP 8.2.3 (tar.bz2)", + "sha256": "87bb58865f38f5e2941813029152cea2102fe2961bb4d68b88f831ddd0548d0f" + }, + { + "filename": "php-8.2.3.tar.xz", + "name": "PHP 8.2.3 (tar.xz)", + "sha256": "b9b566686e351125d67568a33291650eb8dfa26614d205d70d82e6e92613d457" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.30/announcement.html b/data/releases/8.2/8.2.30/announcement.html new file mode 100644 index 0000000000..b9523044b4 --- /dev/null +++ b/data/releases/8.2/8.2.30/announcement.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/8.2.30/changes.txt b/data/releases/8.2/8.2.30/changes.txt new file mode 100644 index 0000000000..5236af4ca1 --- /dev/null +++ b/data/releases/8.2/8.2.30/changes.txt @@ -0,0 +1,19 @@ +- Curl: + . Fix curl build and test failures with version 8.16. + (nielsdos, ilutov, Jakub Zelenka) + +- Opcache: + . Reset global pointers to prevent use-after-free in zend_jit_status(). + (Florian Engelhardt) + +- PDO: + . Fixed GHSA-8xr5-qppj-gvwj (PDO quoting result null deref). (CVE-2025-14180) + (Jakub Zelenka) + +- Standard: + . Fixed GHSA-www2-q4fc-65wf (Null byte termination in dns_get_record()). + (ndossche) + . Fixed GHSA-h96m-rvf9-jgm2 (Heap buffer overflow in array_merge()). + (CVE-2025-14178) (ndossche) + . Fixed GHSA-3237-qqm7-mfv7 (Information Leak of Memory in getimagesize). + (CVE-2025-14177) (ndossche) diff --git a/data/releases/8.2/8.2.30/release.json b/data/releases/8.2/8.2.30/release.json new file mode 100644 index 0000000000..01c71eddb8 --- /dev/null +++ b/data/releases/8.2/8.2.30/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.30", + "date": "18 Dec 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.30.tar.gz", + "name": "PHP 8.2.30 (tar.gz)", + "sha256": "a0fa6673ba4b0c8335fbab08afb7c2e13a3791f2b5a0928c7ad3d7ad872edf26" + }, + { + "filename": "php-8.2.30.tar.bz2", + "name": "PHP 8.2.30 (tar.bz2)", + "sha256": "104820b6c8fc959dde4b3342135f42bdabf246e86918a16381a17d8447c866fa" + }, + { + "filename": "php-8.2.30.tar.xz", + "name": "PHP 8.2.30 (tar.xz)", + "sha256": "bc90523e17af4db46157e75d0c9ef0b9d0030b0514e62c26ba7b513b8c4eb015" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.31/announcement.html b/data/releases/8.2/8.2.31/announcement.html new file mode 100644 index 0000000000..160c615e62 --- /dev/null +++ b/data/releases/8.2/8.2.31/announcement.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/8.2.31/changes.txt b/data/releases/8.2/8.2.31/changes.txt new file mode 100644 index 0000000000..3a03912b7c --- /dev/null +++ b/data/releases/8.2/8.2.31/changes.txt @@ -0,0 +1,32 @@ +- Curl: + . Add support for brotli and zstd on Windows. (Shivam Mathur) + +- FPM: + . Fixed GHSA-7qg2-v9fj-4mwv (XSS within status endpoint). (CVE-2026-6735) + (Jakub Zelenka) + +- MBString: + . Fixed GHSA-wm6j-2649-pv75 (Null pointer dereference in + php_mb_check_encoding() via mb_ereg_search_init()). (CVE-2026-7259) + (vi3tL0u1s) + +- OpenSSL: + . Fix compatibility issues with OpenSSL 4.0. (jordikroon, Remi) + +- PDO_Firebird: + . Fixed GHSA-w476-322c-wpvm (SQL injection via NUL bytes in quoted strings). + (CVE-2025-14179) (SakiTakamachi) + +- SOAP: + . Fixed GHSA-85c2-q967-79q5 (Stale SOAP_GLOBAL(ref_map) pointer with Apache + Map). (CVE-2026-6722) (ilutov) + . Fixed GHSA-m33r-qmcv-p97q (Use-after-free after header parsing failure with + SOAP_PERSISTENCE_SESSION). (CVE-2026-7261) (ilutov) + . Fixed GHSA-hmxp-6pc4-f3vv (Broken Apache map value NULL check). + (CVE-2026-7262) (ilutov) + +- Standard: + . Fixed GHSA-96wq-48vp-hh57 (Signed integer overflow of char array offset). + (CVE-2026-7568) (TimWolla) + . Fixed GHSA-m8rr-4c36-8gq4 (Consistently pass unsigned char to ctype.h + functions). (CVE-2026-7258) (ilutov) diff --git a/data/releases/8.2/8.2.31/release.json b/data/releases/8.2/8.2.31/release.json new file mode 100644 index 0000000000..e1d4200774 --- /dev/null +++ b/data/releases/8.2/8.2.31/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.31", + "date": "07 May 2026", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.31.tar.gz", + "name": "PHP 8.2.31 (tar.gz)", + "sha256": "083c2f61cc5f527eb293c4c468a91af46a9678785957e023b2796a9db290d870" + }, + { + "filename": "php-8.2.31.tar.bz2", + "name": "PHP 8.2.31 (tar.bz2)", + "sha256": "948183fa04cf261c9b9363c02f428977b9ddf8c0bfdff8e8e1fba816ed570803" + }, + { + "filename": "php-8.2.31.tar.xz", + "name": "PHP 8.2.31 (tar.xz)", + "sha256": "95eae411d594fe6f6e5678b76645dc13ae47d3c0a5325c1d969b58dea56ee45a" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.4/announcement.html b/data/releases/8.2/8.2.4/announcement.html new file mode 100644 index 0000000000..f0fa0245db --- /dev/null +++ b/data/releases/8.2/8.2.4/announcement.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/8.2.4/changes.txt b/data/releases/8.2/8.2.4/changes.txt new file mode 100644 index 0000000000..6e8eeed229 --- /dev/null +++ b/data/releases/8.2/8.2.4/changes.txt @@ -0,0 +1,114 @@ +- Core: + . Fixed incorrect check condition in ZEND_YIELD. (nielsdos) + . Fixed incorrect check condition in type inference. (nielsdos) + . Fix incorrect check in zend_internal_call_should_throw(). (nielsdos) + . Fixed overflow check in OnUpdateMemoryConsumption. (nielsdos) + . Fixed bug GH-9916 (Entering shutdown sequence with a fiber suspended in a + Generator emits an unavoidable fatal error or crashes). (Arnaud) + . Fixed bug GH-10437 (Segfault/assertion when using fibers in shutdown + function after bailout). (trowski) + . Fixed SSA object type update for compound assignment opcodes. (nielsdos) + . Fixed language scanner generation build. (Daniel Black) + . Fixed zend_update_static_property() calling zend_update_static_property_ex() + misleadingly with the wrong return type. (nielsdos) + . Fix bug GH-10570 (Fixed unknown string hash on property fetch with integer + constant name). (nielsdos) + . Fixed php_fopen_primary_script() call resulted on zend_destroy_file_handle() + freeing dangling pointers on the handle as it was uninitialized. (nielsdos) + +- Curl: + . Fixed deprecation warning at compile time. (Max Kellermann) + . Fixed bug GH-10270 (Unable to return CURL_READFUNC_PAUSE in readfunc + callback). (Pierrick Charron) + +- Date: + . Fix GH-10447 ('p' format specifier does not yield 'Z' for 00:00). (Derick) + . Fix GH-10152 (Custom properties of Date's child classes are not + serialised). (Derick) + +- FFI: + . Fixed incorrect bitshifting and masking in ffi bitfield. (nielsdos) + +- Fiber: + . Fixed assembly on alpine x86. (nielsdos) + . Fixed bug GH-10496 (segfault when garbage collector is invoked inside of + fiber). (Bob, Arnaud) + +- FPM: + . Fixed bug GH-10315 (FPM unknown child alert not valid). (Jakub Zelenka) + . Fixed bug GH-10385 (FPM successful config test early exit). (nielsdos) + +- GMP: + . Properly implement GMP::__construct(). (nielsdos) + +- Intl: + . Fixed bug GH-10647 (Spoolchecker isSuspicious/areConfusable methods + error code's argument always returning NULL0. (Nathan Freeman) + +- JSON: + . Fixed JSON scanner and parser generation build. + (Daniel Black, Jakub Zelenka) + +- MBString: + . ext/mbstring: fix new_value length check. (Max Kellermann) + . Fix bug GH-10627 (mb_convert_encoding crashes PHP on Windows). (nielsdos) + +- Opcache: + . Fix incorrect page_size check. (nielsdos) + . Fix readonly modification check when using inc/dec operators on readonly + property with JIT. (ilutov) + +- OpenSSL: + . Fixed php_openssl_set_server_dh_param() DH params errors handling. (nielsdos) + +- PDO OCI: + . Fixed bug #60994 (Reading a multibyte CLOB caps at 8192 chars). + (Michael Voříšek) + +- PHPDBG: + . Fixed bug GH-10715 (heap buffer overflow on --run option misuse). (nielsdos) + +- PGSQL: + . Fix GH-10672 (pg_lo_open segfaults in the strict_types mode). (girgias) + +- Phar: + . Fix incorrect check in phar tar parsing. (nielsdos) + +- Random: + . Fix GH-10390 (Do not trust arc4random_buf() on glibc). (timwolla) + . Fix GH-10292 (Made the default value of the first param of srand() and + mt_srand() unknown). (kocsismate) + +- Reflection: + . Fixed bug GH-10623 (Reflection::getClosureUsedVariables opcode fix with + variadic arguments). (nielsdos) + . Fix Segfault when using ReflectionFiber suspended by an internal function. + (danog) + +- Session: + . Fixed ps_files_cleanup_dir() on failure code paths with -1 instead of 0 as + the latter was considered success by callers. (nielsdos). + +- Standard: + . Fixed bug GH-8086 (Introduce mail.mixed_lf_and_crlf INI). (Jakub Zelenka) + . Fixed bug GH-10292 (Made the default value of the first param of srand() and + mt_srand() unknown). (kocsismate) + . Fix incorrect check in cs_8559_5 in map_from_unicode(). (nielsdos) + . Fix bug GH-9697 for reset/end/next/prev() attempting to move pointer of + properties table for certain internal classes such as FFI classes + . Fix incorrect error check in browsecap for pcre2_match(). (nielsdos) + +- Streams: + . Fixed bug GH-10370 (File corruption in _php_stream_copy_to_stream_ex when + using copy_file_range). (nielsdos) + . Fixed bug GH-10548 (copy() fails on cifs mounts because of incorrect + copy_file_range() len). (nielsdos) + +- Tidy: + . Fix memory leaks when attempting to open a non-existing file or a file over + 4GB. (Girgias) + . Add missing error check on tidyLoadConfig. (nielsdos) + +- Zlib: + . Fixed output_handler directive value's length which counted the string + terminator. (nieldos) diff --git a/data/releases/8.2/8.2.4/release.json b/data/releases/8.2/8.2.4/release.json new file mode 100644 index 0000000000..61655382f7 --- /dev/null +++ b/data/releases/8.2/8.2.4/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.4", + "date": "16 Mar 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.4.tar.gz", + "name": "PHP 8.2.4 (tar.gz)", + "sha256": "cee7748015a2ddef1739d448b980b095dccd09ed589cf1b6c6ee2d16f5e73c50" + }, + { + "filename": "php-8.2.4.tar.bz2", + "name": "PHP 8.2.4 (tar.bz2)", + "sha256": "79186f94bd510db86e31e535dd448277a1eb92a87878303a1ead44602d8b1197" + }, + { + "filename": "php-8.2.4.tar.xz", + "name": "PHP 8.2.4 (tar.xz)", + "sha256": "bc7bf4ca7ed0dd17647e3ea870b6f062fcb56b243bfdef3f59ff7f94e96176a8" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.5/announcement.html b/data/releases/8.2/8.2.5/announcement.html new file mode 100644 index 0000000000..d13192eee8 --- /dev/null +++ b/data/releases/8.2/8.2.5/announcement.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/8.2.5/changes.txt b/data/releases/8.2/8.2.5/changes.txt new file mode 100644 index 0000000000..09aa117cfd --- /dev/null +++ b/data/releases/8.2/8.2.5/changes.txt @@ -0,0 +1,80 @@ +- Core: + . Added optional support for max_execution_time in ZTS/Linux builds + (Kévin Dunglas) + . Fixed use-after-free in recursive AST evaluation. (ilutov) + . Fixed bug GH-8646 (Memory leak PHP FPM 8.1). (nielsdos) + . Re-add some CTE functions that were removed from being CTE by a mistake. + (mvorisek) + . Remove CTE flag from array_diff_ukey(), which was added by mistake. + (mvorisek) + . Fixed bug GH-10801 (Named arguments in CTE functions cause a segfault). + (nielsdos) + . Fixed bug GH-8789 (PHP 8.0.20 (ZTS) zend_signal_handler_defer crashes on + apache). (nielsdos) + . Fixed bug GH-10015 (zend_signal_handler_defer crashes on apache shutdown). + (nielsdos) + . Fixed bug GH-10810 (Fix NUL byte terminating Exception::__toString()). + (ilutov) + . Fix potential memory corruption when mixing __callStatic() and FFI. (ilutov) + +- Date: + . Fixed bug GH-10747 (Private and protected properties in serialized Date* + objects throw). (Derick) + +- FPM: + . Fixed bug GH-10611 (fpm_env_init_main leaks environ). (nielsdos) + . Destroy file_handle in fpm_main. (Jakub Zelenka, nielsdos) + . Fixed bug #74129 (Incorrect SCRIPT_NAME with apache ProxyPassMatch when + spaces are in path). (Jakub Zelenka) + +- FTP: + . Propagate success status of ftp_close(). (nielsdos) + . Fixed bug GH-10521 (ftp_get/ftp_nb_get resumepos offset is maximum 10GB). + (nielsdos) + +- IMAP: + . Fix build failure with Clang 16. (orlitzky) + +- MySQLnd: + . Fixed bug GH-8979 (Possible Memory Leak with SSL-enabled MySQL + connections). (nielsdos) + +- Opcache: + . Fixed build for macOS to cater with pkg-config settings. (David Carlier) + . Fixed bug GH-8065 (opcache.consistency_checks > 0 causes segfaults in + PHP >= 8.1.5 in fpm context). (nielsdos) + +- OpenSSL: + . Add missing error checks on file writing functions. (nielsdos) + +- PDO Firebird: + . Fixed bug GH-10908 (Bus error with PDO Firebird on RPI with 64 bit kernel + and 32 bit userland). (nielsdos) + +- Phar: + . Fixed bug GH-10766 (PharData archive created with Phar::Zip format does + not keep files metadata (datetime)). (nielsdos) + . Add missing error checks on EVP_MD_CTX_create() and EVP_VerifyInit(). + (nielsdos) + +- PDO ODBC: + . Fixed missing and inconsistent error checks on SQLAllocHandle. (nielsdos) + +- PGSQL: + . Fixed typo in the array returned from pg_meta_data (extended mode). + (David Carlier) + +- SPL: + . Fixed bug GH-10519 (Array Data Address Reference Issue). (Nathan Freeman) + . Fixed bug GH-10907 (Unable to serialize processed SplFixedArrays in + PHP 8.2.4). (nielsdos) + . Fixed bug GH-10844 (ArrayIterator allows modification of readonly props). + (ilutov) + +- Standard: + . Fixed bug GH-10885 (stream_socket_server context leaks). (ilutov) + . Fixed bug GH-10052 (Browscap crashes PHP 8.1.12 on request shutdown + (apache2)). (nielsdos) + . Fixed oss-fuzz #57392 (Buffer-overflow in php_fgetcsv() with \0 delimiter + and enclosure). (ilutov) + . Fixed undefined behaviour in unpack(). (nielsdos) diff --git a/data/releases/8.2/8.2.5/release.json b/data/releases/8.2/8.2.5/release.json new file mode 100644 index 0000000000..c23b86a483 --- /dev/null +++ b/data/releases/8.2/8.2.5/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.5", + "date": "13 Apr 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.5.tar.gz", + "name": "PHP 8.2.5 (tar.gz)", + "sha256": "8974dea2507155471660b13a0bcbdc165ac778eeb845a7dbd65d5ffb92738c0a" + }, + { + "filename": "php-8.2.5.tar.bz2", + "name": "PHP 8.2.5 (tar.bz2)", + "sha256": "e5a80663cca4f6044ad86a489798147c7af037eca96f6cd357ab36d28cb63757" + }, + { + "filename": "php-8.2.5.tar.xz", + "name": "PHP 8.2.5 (tar.xz)", + "sha256": "800738c359b7f1e67e40c22713d2d90276bc85ba1c21b43d99edd43c254c5f76" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.6/announcement.html b/data/releases/8.2/8.2.6/announcement.html new file mode 100644 index 0000000000..d2e77741cc --- /dev/null +++ b/data/releases/8.2/8.2.6/announcement.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/8.2.6/changes.txt b/data/releases/8.2/8.2.6/changes.txt new file mode 100644 index 0000000000..9896fe4c65 --- /dev/null +++ b/data/releases/8.2/8.2.6/changes.txt @@ -0,0 +1,48 @@ +- Core: + . Fix inconsistent float negation in constant expressions. (ilutov) + . Fixed bug GH-8841 (php-cli core dump calling a badly formed function). + (nielsdos) + . Fixed bug GH-10737 (PHP 8.1.16 segfaults on line 597 of + sapi/apache2handler/sapi_apache2.c). (nielsdos, ElliotNB) + . Fixed bug GH-11028 (Heap Buffer Overflow in zval_undefined_cv.). (nielsdos) + . Fixed bug GH-11108 (Incorrect CG(memoize_mode) state after bailout in ??=). + (ilutov) + +- Date: + . Fixed bug where the diff() method would not return the right result around + DST changeover for date/times associated with a timezone identifier. (Derick) + . Fixed out-of-range bug when converting to/from around the LONG_MIN unix + timestamp. (Derick) + +- DOM: + . Fixed bug #80602 (Segfault when using DOMChildNode::before()). + (Nathan Freeman) + . Fixed incorrect error handling in dom_zvals_to_fragment(). (nielsdos) + +- Exif: + . Fixed bug GH-9397 (exif read : warnings and errors : Potentially invalid + endianess, Illegal IFD size and Undefined index). (nielsdos) + +- Intl: + . Fixed bug GH-11071 (TZData version not displayed anymore). (Remi) + +- PCRE: + . Fixed bug GH-10968 (Segfault in preg_replace_callback_array()). (ilutov) + +- Reflection: + . Fixed bug GH-10983 (State-dependant segfault in + ReflectionObject::getProperties). (nielsdos) + +- SPL: + . Handle indirect zvals and use up-to-date properties in + SplFixedArray::__serialize. (nielsdos) + +- Standard: + . Fixed bug GH-10990 (mail() throws TypeError after iterating over + $additional_headers array by reference). (nielsdos) + . Fixed bug GH-9775 (Duplicates returned by array_unique when using enums). + (ilutov) + +- Streams: + . Fixed bug GH-10406 (feof() behavior change for UNIX based socket + resources). (Jakub Zelenka) diff --git a/data/releases/8.2/8.2.6/release.json b/data/releases/8.2/8.2.6/release.json new file mode 100644 index 0000000000..7d56412172 --- /dev/null +++ b/data/releases/8.2/8.2.6/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.6", + "date": "11 May 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.6.tar.gz", + "name": "PHP 8.2.6 (tar.gz)", + "sha256": "1b8463df1f180ed39475cfcded1ff106242ccb823f99c9fc1a407c0b76afa2c8" + }, + { + "filename": "php-8.2.6.tar.bz2", + "name": "PHP 8.2.6 (tar.bz2)", + "sha256": "44a70c52f537662c10d91eedbf51fd765c9961be6ba2508ed63bf7a26cdd3100" + }, + { + "filename": "php-8.2.6.tar.xz", + "name": "PHP 8.2.6 (tar.xz)", + "sha256": "10b796f0ed45574229851212b30a596a76e70ae365322bcaaaf9c00fa7d58cca" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.7/announcement.html b/data/releases/8.2/8.2.7/announcement.html new file mode 100644 index 0000000000..365066595d --- /dev/null +++ b/data/releases/8.2/8.2.7/announcement.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/8.2.7/changes.txt b/data/releases/8.2/8.2.7/changes.txt new file mode 100644 index 0000000000..6b419f7644 --- /dev/null +++ b/data/releases/8.2/8.2.7/changes.txt @@ -0,0 +1,77 @@ +- Core: + . Fixed bug GH-11152 (Unable to alias namespaces containing reserved class + names). (ilutov) + . Fixed bug GH-9068 (Conditional jump or move depends on uninitialised + value(s)). (nielsdos) + . Fixed bug GH-11189 (Exceeding memory limit in zend_hash_do_resize leaves + the array in an invalid state). (Bob) + . Fixed bug GH-11063 (Compilation error on old GCC versions). (ingamedeo) + . Fixed bug GH-11222 (foreach by-ref may jump over keys during a rehash). + (Bob) + +- Date: + . Fixed bug GH-11281 (DateTimeZone::getName() does not include seconds in + offset). (nielsdos) + +- Exif: + . Fixed bug GH-10834 (exif_read_data() cannot read smaller stream wrapper + chunk sizes). (nielsdos) + +- FPM: + . Fixed bug GH-10461 (PHP-FPM segfault due to after free usage of + child->ev_std(out|err)). (Jakub Zelenka) + . Fixed bug #64539 (FPM status page: query_string not properly JSON encoded). + (Jakub Zelenka) + . Fixed memory leak for invalid primary script file handle. (Jakub Zelenka) + +- Hash: + . Fixed bug GH-11180 (hash_file() appears to be restricted to 3 arguments). + (nielsdos) + +- LibXML: + . Fixed bug GH-11160 (Few tests failed building with new libxml 2.11.0). + (nielsdos) + +- MBString: + . Fix bug GH-11217 (Segfault in mb_strrpos / mb_strripos when using negative + offset and ASCII encoding). (ilutov) + +- Opcache: + . Fixed bug GH-11134 (Incorrect match default branch optimization). (ilutov) + . Fixed too wide OR and AND range inference. (nielsdos) + . Fixed missing class redeclaration error with OPcache enabled. (ilutov) + . Fixed bug GH-11245 (In some specific cases SWITCH with one default + statement will cause segfault). (nielsdos) + +- PCNTL: + . Fixed maximum argument count of pcntl_forkx(). (nielsdos) + +- PGSQL: + . Fixed parameter parsing of pg_lo_export(). (kocsismate) + +- Phar: + . Fixed bug GH-11099 (Generating phar.php during cross-compile can't be + done). (peter279k) + +- Soap: + . Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient random + bytes in HTTP Digest authentication for SOAP). + (CVE-2023-3247) (nielsdos, timwolla) + . Fixed bug GH-8426 (make test fail while soap extension build). (nielsdos) + +- SPL: + . Fixed bug GH-11178 (Segmentation fault in spl_array_it_get_current_data + (PHP 8.1.18)). (nielsdos) + +- Standard: + . Fixed bug GH-11138 (move_uploaded_file() emits open_basedir warning for + source file). (ilutov) + . Fixed bug GH-11274 (POST/PATCH request switches to GET after a HTTP 308 + redirect). (nielsdos) + +- Streams: + . Fixed bug GH-10031 ([Stream] STREAM_NOTIFY_PROGRESS over HTTP emitted + irregularly for last chunk of data). (nielsdos) + . Fixed bug GH-11175 (Stream Socket Timeout). (nielsdos) + . Fixed bug GH-11177 (ASAN UndefinedBehaviorSanitizer when timeout = -1 + passed to stream_socket_accept/stream_socket_client). (nielsdos) diff --git a/data/releases/8.2/8.2.7/release.json b/data/releases/8.2/8.2.7/release.json new file mode 100644 index 0000000000..221ebba543 --- /dev/null +++ b/data/releases/8.2/8.2.7/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.7", + "date": "08 Jun 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.7.tar.gz", + "name": "PHP 8.2.7 (tar.gz)", + "sha256": "7046f939f0e5116285341d55c06af1d50907e107ac2c70defc32ef880f88cde4" + }, + { + "filename": "php-8.2.7.tar.bz2", + "name": "PHP 8.2.7 (tar.bz2)", + "sha256": "5bfb2a35c67921bdcadd5c90cb290ad7537d24da113a5e8bc2d646b02de7488f" + }, + { + "filename": "php-8.2.7.tar.xz", + "name": "PHP 8.2.7 (tar.xz)", + "sha256": "4b9fb3dcd7184fe7582d7e44544ec7c5153852a2528de3b6754791258ffbdfa0" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.8/announcement.html b/data/releases/8.2/8.2.8/announcement.html new file mode 100644 index 0000000000..96b8944fbd --- /dev/null +++ b/data/releases/8.2/8.2.8/announcement.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/8.2.8/changes.txt b/data/releases/8.2/8.2.8/changes.txt new file mode 100644 index 0000000000..9156339826 --- /dev/null +++ b/data/releases/8.2/8.2.8/changes.txt @@ -0,0 +1,73 @@ +- CLI: + . Fixed bug GH-11246 (cli/get_set_process_title fails on MacOS). + (James Lucas) + +- Core: + . Fixed build for the riscv64 architecture/GCC 12. (Daniil Gentili) + +- Curl: + . Fixed bug GH-11433 (Unable to set CURLOPT_ACCEPT_ENCODING to NULL). + (nielsdos) + +- Date: + . Fixed bug GH-11455 (Segmentation fault with custom object date properties). + (nielsdos) + +- DOM: + . Fixed bugs GH-11288 and GH-11289 and GH-11290 and GH-9142 (DOMExceptions + and segfaults with replaceWith). (nielsdos) + . Fixed bug GH-10234 (Setting DOMAttr::textContent results in an empty + attribute value). (nielsdos) + . Fix return value in stub file for DOMNodeList::item. (divinity76) + . Fix spec compliance error with '*' namespace for + DOMDocument::getElementsByTagNameNS. (nielsdos) + . Fix DOMElement::append() and DOMElement::prepend() hierarchy checks. + (nielsdos) + . Fixed bug GH-11347 (Memory leak when calling a static method inside an + xpath query). (nielsdos) + . Fixed bug #67440 (append_node of a DOMDocumentFragment does not reconcile + namespaces). (nielsdos) + . Fixed bug #81642 (DOMChildNode::replaceWith() bug when replacing a node + with itself). (nielsdos) + . Fixed bug #77686 (Removed elements are still returned by getElementById). + (nielsdos) + . Fixed bug #70359 (print_r() on DOMAttr causes Segfault in + php_libxml_node_free_list()). (nielsdos) + . Fixed bug #78577 (Crash in DOMNameSpace debug info handlers). (nielsdos) + . Fix lifetime issue with getAttributeNodeNS(). (nielsdos) + . Fix "invalid state error" with cloned namespace declarations. (nielsdos) + . Fixed bug #55294 and #47530 and #47847 (various namespace reconciliation + issues). (nielsdos) + . Fixed bug #80332 (Completely broken array access functionality with + DOMNamedNodeMap). (nielsdos) + +- Opcache: + . Fix allocation loop in zend_shared_alloc_startup(). (nielsdos) + . Access violation on smm_shared_globals with ALLOC_FALLBACK. (KoudelkaB) + . Fixed bug GH-11336 (php still tries to unlock the shared memory ZendSem + with opcache.file_cache_only=1 but it was never locked). (nielsdos) + +- OpenSSL: + . Fixed bug GH-9356 Incomplete validation of IPv6 Address fields in + subjectAltNames (James Lucas, Jakub Zelenka). + +- PCRE: + . Fix preg_replace_callback_array() pattern validation. (ilutov) + +- PGSQL: + . Fixed intermittent segfault with pg_trace. (David Carlier) + +- Phar: + . Fix cross-compilation check in phar generation for FreeBSD. (peter279k) + +- SPL: + . Fixed bug GH-11338 (SplFileInfo empty getBasename with more than one + slash). (nielsdos) + +- Standard: + . Fix access on NULL pointer in array_merge_recursive(). (ilutov) + . Fix exception handling in array_multisort(). (ilutov) + +- SQLite3: + . Fixed bug GH-11451 (Invalid associative array containing duplicate + keys). (nielsdos) diff --git a/data/releases/8.2/8.2.8/release.json b/data/releases/8.2/8.2.8/release.json new file mode 100644 index 0000000000..79c0ec2c67 --- /dev/null +++ b/data/releases/8.2/8.2.8/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.2.8", + "date": "06 Jul 2023", + "tags": [], + "source": [ + { + "filename": "php-8.2.8.tar.gz", + "name": "PHP 8.2.8 (tar.gz)", + "sha256": "6419b74e9b675c8d5a1afd2788c4d7996a19bbe2be409716ccb2067897af9df1" + }, + { + "filename": "php-8.2.8.tar.bz2", + "name": "PHP 8.2.8 (tar.bz2)", + "sha256": "995ed4009c7917c962d31837a1a3658f36d4af4f357b673c97ffdbe6403f8517" + }, + { + "filename": "php-8.2.8.tar.xz", + "name": "PHP 8.2.8 (tar.xz)", + "sha256": "cfe1055fbcd486de7d3312da6146949aae577365808790af6018205567609801" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.2/8.2.9/announcement.html b/data/releases/8.2/8.2.9/announcement.html new file mode 100644 index 0000000000..806ce0e629 --- /dev/null +++ b/data/releases/8.2/8.2.9/announcement.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/8.2.9/changes.txt b/data/releases/8.2/8.2.9/changes.txt new file mode 100644 index 0000000000..cbfbdfe4ea --- /dev/null +++ b/data/releases/8.2/8.2.9/changes.txt @@ -0,0 +1,96 @@ +- Build: + . Fixed bug GH-11522 (PHP version check fails with '-' separator). + (SVGAnimate) + +- CLI: + . Fix interrupted CLI output causing the process to exit. (nielsdos) + +- Core: + . Fixed oss-fuzz #60011 (Mis-compilation of by-reference nullsafe operator). + (ilutov) + . Fixed line number of JMP instruction over else block. (ilutov) + . Fixed use-of-uninitialized-value with ??= on assert. (ilutov) + . Fixed oss-fuzz #60411 (Fix double-compilation of arrow-functions). (ilutov) + . Fixed build for FreeBSD before the 11.0 releases. (David Carlier) + +- Curl: + . Fix crash when an invalid callback function is passed to + CURLMOPT_PUSHFUNCTION. (nielsdos) + +- Date: + . Fixed bug GH-11368 (Date modify returns invalid datetime). (Derick) + . Fixed bug GH-11600 (Can't parse time strings which include (narrow) + non-breaking space characters). (Derick) + . Fixed bug GH-11854 (DateTime:createFromFormat stopped parsing datetime with + extra space). (nielsdos, Derick) + +- DOM: + . Fixed bug GH-11625 (DOMElement::replaceWith() doesn't replace node with + DOMDocumentFragment but just deletes node or causes wrapping <>> + depending on libxml2 version). (nielsdos) + +- Fileinfo: + . Fixed bug GH-11298 (finfo returns wrong mime type for xz files). (Anatol) + +- FTP: + . Fix context option check for "overwrite". (JonasQuinten) + . Fixed bug GH-10562 (Memory leak and invalid state with consecutive + ftp_nb_fget). (nielsdos) + +- GD: + . Fix most of the external libgd test failures. (Michael Orlitzky) + +- Intl: + . Fix memory leak in MessageFormatter::format() on failure. (Girgias) + +- Libxml: + . Fixed bug GHSA-3qrf-m4j2-pcrr (Security issue with external entity loading + in XML without enabling it). (CVE-2023-3823) (nielsdos, ilutov) + +- MBString: + . Fix GH-11300 (license issue: restricted unicode license headers). + (nielsdos) + +- Opcache: + . Fixed bug GH-10914 (OPCache with Enum and Callback functions results in + segmentation fault). (nielsdos) + . Prevent potential deadlock if accelerated globals cannot be allocated. + (nielsdos) + +- PCNTL: + . Fixed bug GH-11498 (SIGCHLD is not always returned from proc_open). + (nielsdos) + +- PDO: + . Fix GH-11587 (After php8.1, when PDO::ATTR_EMULATE_PREPARES is true + and PDO::ATTR_STRINGIFY_FETCHES is true, decimal zeros are no longer + filled). (SakiTakamachi) + +- PDO SQLite: + . Fix GH-11492 (Make test failure: ext/pdo_sqlite/tests/bug_42589.phpt). + (KapitanOczywisty, CViniciusSDias) + +- Phar: + . Add missing check on EVP_VerifyUpdate() in phar util. (nielsdos) + . Fixed bug GHSA-jqcx-ccgc-xwhv (Buffer mismanagement in phar_dir_read()). + (CVE-2023-3824) (nielsdos) + +- PHPDBG: + . Fixed bug GH-9669 (phpdbg -h options doesn't list the -z option). (adsr) + +- Session: + . Removed broken url support for transferring session ID. (ilutov) + +- Standard: + . Fix serialization of RC1 objects appearing in object graph twice. (ilutov) + +- Streams: + . Fixed bug GH-11735 (Use-after-free when unregistering user stream wrapper + from itself). (ilutov) + +- SQLite3: + . Fix replaced error handling in SQLite3Stmt::__construct. (nielsdos) + +- XMLReader: + . Fix GH-11548 (Argument corruption when calling XMLReader::open or + XMLReader::XML non-statically with observer active). (Bob) diff --git a/data/releases/8.2/8.2.9/release.json b/data/releases/8.2/8.2.9/release.json new file mode 100644 index 0000000000..6db947b673 --- /dev/null +++ b/data/releases/8.2/8.2.9/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.2.9", + "date": "03 Aug 2023", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.2.9.tar.gz", + "name": "PHP 8.2.9 (tar.gz)", + "sha256": "5fac52041335cacfb5845aeff2303f92403925338a0285f2e160feebcb840f04" + }, + { + "filename": "php-8.2.9.tar.bz2", + "name": "PHP 8.2.9 (tar.bz2)", + "sha256": "48460b994ae7eb5096a310f44d13e865de1771104d4a550d53072be58a6f176c" + }, + { + "filename": "php-8.2.9.tar.xz", + "name": "PHP 8.2.9 (tar.xz)", + "sha256": "1e6cb77f997613864ab3127fbfc6a8c7fdaa89a95e8ed6167617b913b4de4765" + } + ] +} \ 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/8.3.0/announcement.html b/data/releases/8.3/8.3.0/announcement.html new file mode 100644 index 0000000000..47a1d3fbeb --- /dev/null +++ b/data/releases/8.3/8.3.0/announcement.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/8.3.0/changes.txt b/data/releases/8.3/8.3.0/changes.txt new file mode 100644 index 0000000000..c33f617db7 --- /dev/null +++ b/data/releases/8.3/8.3.0/changes.txt @@ -0,0 +1,376 @@ +- Bcmath + . Fixed GH-11761 (removing trailing zeros from numbers) (jorgsowa) + +- CLI: + . Added pdeathsig to builtin server to terminate workers when the master + process is killed. (ilutov) + . Fixed bug GH-11104 (STDIN/STDOUT/STDERR is not available for CLI without + a script). (nielsdos) + . Implement GH-10024 (support linting multiple files at once using php -l). + (nielsdos) + +- Core: + . Fix GH-11388 (Allow "final" modifier when importing a method from a trait). + (nielsdos) + . Fixed bug GH-11406 (segfault with unpacking and magic method closure). + (nielsdos) + . Fixed bug GH-9388 (Improve unset property and __get type incompatibility + error message). (ilutov) + . SA_ONSTACK is now set for signal handlers to be friendlier to other + in-process code such as Go's cgo. (Kévin Dunglas) + . SA_ONSTACK is now set when signals are disabled. (Kévin Dunglas) + . Fix GH-9649: Signal handlers now do a no-op instead of crashing when + executed on threads not managed by TSRM. (Kévin Dunglas) + . Added shadow stack support for fibers. (Chen Hu) + . Fix bug GH-9965 (Fix accidental caching of default arguments with side + effects). (ilutov) + . Implement GH-10217 (Use strlen() for determining the class_name length). + (Dennis Buteyn) + . Fix bug GH-8821 (Improve line numbers for errors in constant expressions). + (ilutov) + . Fix bug GH-10083 (Allow comments between & and parameter). (ilutov) + . Zend Max Execution Timers is now enabled by default for ZTS builds on + Linux. (Kévin Dunglas) + . Fix bug GH-10469 (Disallow .. in open_basedir paths set at runtime). + (ilutov) + . Fix bug GH-10168, GH-10582 (Various segfaults with destructors and VM return + values). (dstogov, nielsdos, ilutov) + . Fix bug GH-10935 (Use of trait doesn't redeclare static property if class + has inherited it from its parent). (ilutov) + . Fix bug GH-11154 (Negative indices on empty array don't affect next chosen + index). (ColinHDev) + . Fix bug GH-8846 (Implement delayed early binding for classes without + parents). (ilutov) + . Fix bug #79836 (Segfault in concat_function). (nielsdos) + . Fix bug #81705 (type confusion/UAF on set_error_handler with concat + operation). (nielsdos) + . Fix GH-11348 (Closure created from magic method does not accept named + arguments). (nielsdos) + . Fix GH-11388 (Allow "final" modifier when importing a method from a trait). + (nielsdos) + . Fixed bug GH-11406 (segfault with unpacking and magic method closure). + (nielsdos) + . Fixed bug GH-11507 (String concatenation performance regression in 8.3). + (nielsdos) + . Fixed GH-11488 (Missing "Optional parameter before required" deprecation on + union null type). (ilutov) + . Implement the #[\Override] attribute RFC. (timwolla) + . Fixed bug GH-11601 (Incorrect handling of unwind and graceful exit + exceptions). (ilutov) + . Added zend_call_stack_get implementation for OpenBSD. (David Carlier) + . Add stack limit check in zend_eval_const_expr(). (Arnaud) + . Expose time spent collecting cycles in gc_status(). (Arnaud) + . Remove WeakMap entries whose key is only reachable through the entry value. + (Arnaud) + . Resolve open_basedir paths on INI update. (ilutov) + . Fixed oss-fuzz #60741 (Leak in open_basedir). (ilutov) + . Fixed segfault during freeing of some incompletely initialized objects due + to OOM error (PDO, SPL, XSL). (ilutov) + . Introduced Zend guard recursion protection to fix __debugInfo issue. + (Jakub Zelenka) + . Fixed oss-fuzz #61712 (assertion failure with error handler during binary + op). (nielsdos) + . Fixed GH-11847 (DTrace enabled build is broken). (Filip Zrůst) + . Fixed OSS Fuzz #61865 (Undef variable in ++/-- for declared property + that is unset in error handler). (Girgias) + . Fixed warning emitted when checking if a user stream is castable. (Girgias) + . Fixed bug GH-12123 (Compile error on MacOS with C++ extension when using + ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX). (kocsismate) + . Fixed bug GH-12189 (#[Override] attribute in trait does not check for + parent class implementations). (timwolla) + . Fixed OSS Fuzz #62294 (Unsetting variable after ++/-- on string variable + warning). (Girgias) + . Fixed buffer underflow when compiling memoized expression. (ilutov) + . Fixed oss-fuzz #63802 (OP1 leak in error path of post inc/dec). (ilutov) + +- Curl: + . Added Curl options and constants up to (including) version 7.87. + (nielsdos, adoy) + +- Date: + . Implement More Appropriate Date/Time Exceptions RFC. (Derick) + +- DOM: + . Fix bug GH-8388 (DOMAttr unescapes character reference). (Tim Starling) + . Fix bug GH-11308 (getElementsByTagName() is O(N^2)). (nielsdos) + . Fix #79700 (wrong use of libxml oldNs leads to performance problem). + (nielsdos) + . Fix #77894 (DOMNode::C14N() very slow on generated DOMDocuments even after + normalisation). (nielsdos) + . Revert changes to DOMAttr::$value and DOMAttr::$nodeValue expansion. + (nielsdos) + . Fixed bug GH-11500 (Namespace reuse in createElementNS() generates wrong + output). (nielsdos) + . Implemented DOMDocument::adoptNode(). Previously this always threw a + "not yet implemented" exception. (nielsdos) + . Fixed bug GH-9628 (Implicitly removing nodes from \DOMDocument breaks + existing references). (nielsdos) + . Added DOMNode::contains() and DOMNameSpaceNode::contains(). (nielsdos) + . Added DOMElement::getAttributeNames(). (nielsdos) + . Added DOMNode::getRootNode(). (nielsdos) + . Added DOMElement::className and DOMElement::id. (nielsdos) + . Added DOMParentNode::replaceChildren(). (nielsdos) + . Added DOMNode::isConnected and DOMNameSpaceNode::isConnected. (nielsdos) + . Added DOMNode::parentElement and DOMNameSpaceNode::parentElement. + (nielsdos) + . Added DOMNode::isEqualNode(). (nielsdos) + . Added DOMElement::insertAdjacentElement() and + DOMElement::insertAdjacentText(). (nielsdos) + . Added DOMElement::toggleAttribute(). (nielsdos) + . Fixed bug GH-11792 (LIBXML_NOXMLDECL is not implemented or broken). + (nielsdos) + . adoptNode now respects the strict error checking property. (nielsdos) + . Align DOMChildNode parent checks with spec. (nielsdos) + . Fixed bug #80927 (Removing documentElement after creating attribute node: + possible use-after-free). (nielsdos) + . Fix various namespace prefix conflict resolution bugs. (nielsdos) + . Fix calling createAttributeNS() without prefix causing the default + namespace of the element to change. (nielsdos) + . Fixed GH-11952 (Confusing warning when blocking entity loading via + libxml_set_external_entity_loader). (nielsdos) + . Fix broken cache invalidation with deallocated and reallocated document + node. (nielsdos) + . Fix compile error when php_libxml.h header is included in C++. + (Remi, nielsdos) + . Fixed bug #47531 (No way of removing redundant xmlns: declarations). + (nielsdos) + +- Exif: + . Removed unneeded codepaths in exif_process_TIFF_in_JPEG(). (nielsdos) + +- FFI: + . Implement GH-11934 (Allow to pass CData into struct and/or union fields). + (nielsdos, KapitanOczywisty) + +- Fileinfo: + . Upgrade bundled libmagic to 5.43. (Anatol) + . Fix GH-11408 (Unable to build PHP 8.3.0 alpha 1 / fileinfo extension). + (nielsdos) + +- FPM: + . The status.listen shared pool now uses the same php_values (including + expose_php) and php_admin_value as the pool it is shared with. (dwxh) + . Added warning to log when fpm socket was not registered on the expected + path. (Joshua Behrens, Jakub Zelenka) + . Fixed bug #76067 (system() function call leaks php-fpm listening sockets). + (Mikhail Galanin, Jakub Zelenka) + . Fixed GH-12077 (PHP 8.3.0RC1 borked socket-close-on-exec.phpt). + (Jakub Zelenka) + +- GD: + . Removed imagerotate "ignore_transparent" argument since it has no effect. + (David Carlier) + +- Intl: + . Added pattern format error infos for numfmt_set_pattern. (David Carlier) + . Added MIXED_NUMBERS and HIDDEN_OVERLAY constants for + the Spoofchecker's class. (David Carlier) + . Updated datefmt_set_timezone/IntlDateformatter::setTimezone returns type. + (David Carlier). + . Updated IntlBreakInterator::setText return type. (David Carlier) + . Updated IntlChar::enumCharNames return type. (David Carlier) + . Removed the BC break on IntlDateFormatter::construct which threw an + exception with an invalid locale. (David Carlier) + +- JSON: + . Added json_validate(). (Juan Morales) + +- LDAP: + . Deprecate calling ldap_connect() with separate hostname and port. + (heiglandreas) + +- LibXML: + . Fix compile error with -Werror=incompatible-function-pointer-types and + old libxml2. (nielsdos) + +- MBString: + . mb_detect_encoding is better able to identify the correct encoding for + Turkish text. (Alex Dowad) + . mb_detect_encoding's "non-strict" mode now behaves as described in the + documentation. Previously, it would return false if the same byte + (for example, the first byte) of the input string was invalid in all + candidate encodings. More generally, it would eliminate candidate + encodings from consideration when an invalid byte was seen, and if the + same input byte eliminated all remaining encodings still under + consideration, it would return false. On the other hand, if all candidate + encodings but one were eliminated from consideration, it would return the + last remaining one without regard for how many encoding errors might be + encountered later in the string. This is different from the behavior + described in the documentation, which says: "If strict is set to false, + the closest matching encoding will be returned." (Alex Dowad) + . mb_strtolower, mb_strtotitle, and mb_convert_case implement conditional + casing rules for the Greek letter sigma. For mb_convert_case, conditional + casing only applies to MB_CASE_LOWER and MB_CASE_TITLE modes, not to + MB_CASE_LOWER_SIMPLE and MB_CASE_TITLE_SIMPLE. (Alex Dowad) + . mb_detect_encoding is better able to identify UTF-8 and UTF-16 strings + with a byte-order mark. (Alex Dowad) + . mb_decode_mimeheader interprets underscores in QPrint-encoded MIME + encoded words as required by RFC 2047; they are converted to spaces. + Underscores must be encoded as "=5F" in such MIME encoded words. + (Alex Dowad) + . mb_encode_mimeheader no longer drops NUL (zero) bytes when + QPrint-encoding the input string. This previously caused strings in + certain text encodings, especially UTF-16 and UTF-32, to be + corrupted by mb_encode_mimeheader. (Alex Dowad) + . Implement mb_str_pad() RFC. (nielsdos) + . Fixed bug GH-11514 (PHP 8.3 build fails with --enable-mbstring enabled). + (nielsdos) + . Fix use-after-free of mb_list_encodings() return value. (ilutov) + . Fixed bug GH-11992 (utf_encodings.phpt fails on Windows 32-bit). (nielsdos) + +- mysqli: + . mysqli_fetch_object raises a ValueError instead of an Exception. + (David Carlier) + +- Opcache: + . Added start, restart and force restart time to opcache's + phpinfo section. (Mikhail Galanin) + . Fix GH-9139: Allow FFI in opcache.preload when opcache.preload_user=root. + (Arnaud, Kapitan Oczywisty) + . Made opcache.preload_user always optional in the cli and phpdbg SAPIs. + (Arnaud) + . Allows W/X bits on page creation on FreeBSD despite system settings. + (David Carlier) + . Added memfd api usage, on Linux, for zend_shared_alloc_create_lock() + to create an abstract anonymous file for the opcache's lock. (Max Kellermann) + . Avoid resetting JIT counter handlers from multiple processes/threads. + (ilutov) + . Fixed COPY_TMP type inference for references. (ilutov) + +- OpenSSL: + . Added OPENSSL_CMS_OLDMIMETYPE and PKCS7_NOOLDMIMETYPE contants to switch + between mime content types. (Daniel Kesselberg) + . Fixed GH-11054: Reset OpenSSL errors when using a PEM public key. + (Florian Moser) + . Added support for additional EC parameters in openssl_pkey_new. (Eno-CN) + +- PCNTL: + . SA_ONSTACK is now set for pcntl_signal. (Kévin Dunglas) + . Added SIGINFO constant. (David Carlier) + +- PCRE: + . Update bundled libpcre2 to 10.42. (nielsdos) + +- PGSQL: + . pg_fetch_object raises a ValueError instead of an Exception. + (David Carlier) + . pg_cancel use thread safe PQcancel api instead. (David Carlier) + . pg_trace new PGSQL_TRACE_SUPPRESS_TIMESTAMPS/PGSQL_TRACE_REGRESS_MODE + contants support. (David Carlier) + . pg_set_error_verbosity adding PGSQL_ERRORS_STATE constant. (David Carlier) + . pg_convert/pg_insert E_WARNING on type errors had been converted to + ValueError/TypeError exceptions. (David Carlier) + . Added pg_set_error_context_visibility to set the context's visibility + within the error messages. (David Carlier) + +- Phar: + . Fix memory leak in phar_rename_archive(). (stkeke) + +- POSIX: + . Added posix_sysconf. (David Carlier) + . Added posix_pathconf. (David Carlier) + . Added posix_fpathconf. (David Carlier) + . Fixed zend_parse_arg_long's bool pointer argument assignment. (Cristian Rodriguez) + . Added posix_eaccess. (David Carlier) + +- Random: + . Added Randomizer::getBytesFromString(). (Joshua Rüsweg) + . Added Randomizer::nextFloat(), ::getFloat(), and IntervalBoundary. (timwolla) + . Enable getrandom() for NetBSD (from 10.x). (David Carlier) + . Deprecate MT_RAND_PHP. (timwolla) + . Fix Randomizer::getFloat() returning incorrect results under + certain circumstances. (timwolla) + +- Reflection: + . Fix GH-9470 (ReflectionMethod constructor should not find private parent + method). (ilutov) + . Fix GH-10259 (ReflectionClass::getStaticProperties doesn't need null return + type). (kocsismate) + +- SAPI: + . Fixed GH-11141 (Could not open input file: should be sent to stderr). + (nielsdos) + +- Session: + . Fixed bug GH-11529 (Crash after dealing with an Apache request). (nielsdos) + +- SimpleXML: + . Fixed bug GH-12192 (SimpleXML infinite loop when getName() is called + within foreach). (nielsdos) + . Fixed bug GH-12208 (SimpleXML infinite loop when a cast is used inside a + foreach). (nielsdos) + . Fixed bug #55098 (SimpleXML iteration produces infinite loop). (nielsdos) + +- Sockets: + . Added SO_ATTACH_REUSEPORT_CBPF socket option, to give tighter control + over socket binding for a cpu core. (David Carlier) + . Added SKF_AD_QUEUE for cbpf filters. (David Carlier) + . Added socket_atmark if send/recv needs using MSG_OOB. (David Carlier) + . Added TCP_QUICKACK constant, to give tigher control over + ACK delays. (David Carlier) + . Added DONTFRAGMENT support for path MTU discovery purpose. (David Carlier) + . Added AF_DIVERT for raw socket for divert ports. (David Carlier) + . Added SOL_UPDLITE, UDPLITE_RECV_CSCOV and UDPLITE_SEND_CSCOV for updlite + protocol support. (David Carlier) + . Added SO_RERROR, SO_ZEROIZE and SO_SPLICE netbsd and openbsd constants. + (David Carlier) + . Added TCP_REPAIR for quietly close a connection. (David Carlier) + . Added SO_REUSEPORT_LB freebsd constant. (David Carlier) + . Added IP_BIND_ADDRESS_NO_PORT. (David Carlier) + +- SPL: + . Fixed GH-11573 (RecursiveDirectoryIterator::hasChildren is slow). + (nielsdos) + +- Standard: + . E_NOTICEs emitted by unserialize() have been promoted to E_WARNING. (timwolla) + . unserialize() now emits a new E_WARNING if the input contains unconsumed + bytes. (timwolla) + . Make array_pad's $length warning less confusing. (nielsdos) + . E_WARNING emitted by strtok in the caase both arguments are not provided when + starting tokenisation. (David Carlier) + . password_hash() will now chain the original RandomException to the ValueError + on salt generation failure. (timwolla) + . Fix GH-10239 (proc_close after proc_get_status always returns -1). (nielsdos) + . Improve the warning message for unpack() in case not enough values were + provided. (nielsdos) + . Fix GH-11010 (parse_ini_string() now preserves formatting of unquoted + strings starting with numbers when the INI_SCANNER_TYPED flag is + specified). (ilutov) + . Fix GH-10742 (http_response_code emits no error when headers were already + sent). (NattyNarwhal) + . Added support for rounding negative places in number_format(). + (Marc Bennewitz) + . Prevent precision loss on formatting decimal integers in number_format(). + (Marc Bennewitz) + . Added usage of posix_spawn for proc_open when supported by OS. + (Cristian Rodriguez) + . Added $before_needle argument to strrchr(). (HypeMC) + . Fixed GH-11982 (str_getcsv returns null byte for unterminated enclosure). + (Jakub Zelenka) + . Fixed str_decrement() on "1". (ilutov) + +- Streams: + . Fixed bug #51056: blocking fread() will block even if data is available. + (Jakub Zelenka) + . Added storing of the original path used to open xport stream. + (Luc Vieillescazes) + . Implement GH-8641 (STREAM_NOTIFY_COMPLETED over HTTP never emitted). + (nielsdos, Jakub Zelenka) + . Fix bug GH-10406 (fgets on a redis socket connection fails on PHP 8.3). + (Jakub Zelenka) + . Implemented GH-11242 (_php_stream_copy_to_mem: Allow specifying a maximum + length without allocating a buffer of that size). (Jakub Zelenka) + . Fixed bug #52335 (fseek() on memory stream behavior different than file). + (Jakub Zelenka) + . Fixed bug #76857 (Can read "non-existant" files). (Jakub Zelenka) + +- XSLTProcessor: + . Fixed bug #69168 (DomNode::getNodePath() returns invalid path). (nielsdos) + +- ZIP: + . zip extension version 1.22.0 for libzip 1.10.0. (Remi) + . add new error macros (ER_DATA_LENGTH and ER_NOT_ALLOWED). (Remi) + . add new archive global flags (ER_AFL_*). (Remi) + . add ZipArchive::setArchiveFlag and ZipArchive::getArchiveFlag methods. + (Remi) diff --git a/data/releases/8.3/8.3.0/release.json b/data/releases/8.3/8.3.0/release.json new file mode 100644 index 0000000000..3ff2794c75 --- /dev/null +++ b/data/releases/8.3/8.3.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.0", + "date": "23 Nov 2023", + "tags": [], + "source": [ + { + "filename": "php-8.3.0.tar.gz", + "name": "PHP 8.3.0 (tar.gz)", + "sha256": "557ae14650f1d1984d3213e3fcd8d93a5f11418b3f8026d3a2d5022251163951" + }, + { + "filename": "php-8.3.0.tar.bz2", + "name": "PHP 8.3.0 (tar.bz2)", + "sha256": "de67d0833d42b196e5a66fa1a332f45e296cbe8e9472e9256b2a071c34dc5ed6" + }, + { + "filename": "php-8.3.0.tar.xz", + "name": "PHP 8.3.0 (tar.xz)", + "sha256": "1db84fec57125aa93638b51bb2b15103e12ac196e2f960f0d124275b2687ea54" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.1/announcement.html b/data/releases/8.3/8.3.1/announcement.html new file mode 100644 index 0000000000..ee96aa500c --- /dev/null +++ b/data/releases/8.3/8.3.1/announcement.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/8.3.1/changes.txt b/data/releases/8.3/8.3.1/changes.txt new file mode 100644 index 0000000000..10a4e45e46 --- /dev/null +++ b/data/releases/8.3/8.3.1/changes.txt @@ -0,0 +1,39 @@ +- Core: + . Fixed bug GH-12758 / GH-12768 (Invalid opline in OOM handlers within + ZEND_FUNC_GET_ARGS and ZEND_BIND_STATIC). (Florian Engelhardt) + . Fix various missing NULL checks. (nielsdos, dstogov) + . Fixed bug GH-12835 (Leak of call->extra_named_params on internal __call). + (ilutov) + . Fixed bug GH-12826 (Weird pointers issue in nested loops). (nielsdos) + +- FPM: + . Fixed bug GH-12705 (Segmentation fault in fpm_status_export_to_zval). + (Patrick Prasse) + +- FTP: + . Fixed bug GH-9348 (FTP & SSL session reuse). (nielsdos) + +- LibXML: + . Fixed test failures for libxml2 2.12.0. (nielsdos) + +- MySQLnd: + . Avoid using uninitialised struct. (mikhainin) + . Fixed bug GH-12791 (Possible dereference of NULL in MySQLnd debug code). + (nielsdos) + +- Opcache: + . Fixed JIT bug (Function JIT emits "Uninitialized string offset" warning + at the same time as invalid offset Error). (Girgias) + . Fixed JIT bug (JIT emits "Attempt to assign property of non-object" + warning at the same time as Error is being thrown). (Girgias) + +- PDO PGSQL: + . Fixed the default value of $fetchMode in PDO::pgsqlGetNotify() (kocsismate) + +- SOAP: + . Fixed bug GH-12838 ([SOAP] Temporary WSDL cache files not being deleted). + (nielsdos) + +- Standard + . Fixed GH-12745 (http_build_query() default null argument for $arg_separator + is implicitly coerced to string). (Girgias) diff --git a/data/releases/8.3/8.3.1/release.json b/data/releases/8.3/8.3.1/release.json new file mode 100644 index 0000000000..96a1432f67 --- /dev/null +++ b/data/releases/8.3/8.3.1/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.1", + "date": "21 Dec 2023", + "tags": [], + "source": [ + { + "filename": "php-8.3.1.tar.gz", + "name": "PHP 8.3.1 (tar.gz)", + "sha256": "2b10218b5e81915d1708ab4b6351362d073556ec73a790553c61fd89c119924e" + }, + { + "filename": "php-8.3.1.tar.bz2", + "name": "PHP 8.3.1 (tar.bz2)", + "sha256": "c40fae9197fa68a532f6a062c316dafe3b04c545136b54b9ead4932fc26c6ae1" + }, + { + "filename": "php-8.3.1.tar.xz", + "name": "PHP 8.3.1 (tar.xz)", + "sha256": "56445b1771b2ba5b7573453f9e8a9451e2d810b1741a352fa05259733b1e9758" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.10/announcement.html b/data/releases/8.3/8.3.10/announcement.html new file mode 100644 index 0000000000..928fc6a087 --- /dev/null +++ b/data/releases/8.3/8.3.10/announcement.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/8.3.10/changes.txt b/data/releases/8.3/8.3.10/changes.txt new file mode 100644 index 0000000000..4df95679e4 --- /dev/null +++ b/data/releases/8.3/8.3.10/changes.txt @@ -0,0 +1,75 @@ +- Core: + . Fixed bug GH-13922 (Fixed support for systems with + sysconf(_SC_GETPW_R_SIZE_MAX) == -1). (Arnaud) + . Fixed bug GH-14626 (Fix is_zend_ptr() for huge blocks). (Arnaud) + . Fixed bug GH-14590 (Memory leak in FPM test gh13563-conf-bool-env.phpt. + (nielsdos) + . Fixed OSS-Fuzz #69765. (nielsdos) + . Fixed bug GH-14741 (Segmentation fault in Zend/zend_types.h). (nielsdos) + . Fixed bug GH-14969 (Use-after-free in property coercion with __toString()). + (ilutov) + . Fixed bug GH-14961 (Comment between -> and keyword results in parse error). + (ilutov) + +- Dom: + . Fixed bug GH-14702 (DOMDocument::xinclude() crash). (nielsdos) + +- Fileinfo: + . Fixed bug GH-14888 (README.REDIST.BINS refers to non-existing LICENSE). + (cmb) + +- Gd: + . ext/gd/tests/gh10614.phpt: skip if no PNG support. (orlitzky) + . restored warning instead of fata error. (dryabov) + +- LibXML: + . Fixed bug GH-14563 (Build failure with libxml2 v2.13.0). (nielsdos) + +- Opcache: + . Fixed bug GH-14550 (No warning message when Zend DTrace is enabled that + opcache.jit is implictly disabled). (nielsdos) + +- Output: + . Fixed bug GH-14808 (Unexpected null pointer in Zend/zend_string.h with + empty output buffer). (nielsdos) + +- PDO: + . Fixed bug GH-14712 (Crash with PDORow access to null property). + (David Carlier) + +- Phar: + . Fixed bug GH-14603 (null string from zip entry). + (David Carlier) + +- PHPDBG: + . Fixed bug GH-14596 (crashes with ASAN and ZEND_RC_DEBUG=1). + (David Carlier) + . Fixed bug GH-14553 (echo output trimmed at NULL byte). (nielsdos) + +- Shmop: + . Fixed bug GH-14537 (shmop Windows 11 crashes the process). (nielsdos) + +- SPL: + . Fixed bug GH-14639 (Member access within null pointer in + ext/spl/spl_observer.c). (nielsdos) + +- Standard: + . Fixed bug GH-14775 (range function overflow with negative step argument). + (David Carlier) + . Fix 32-bit wordwrap test failures. (orlitzky) + . Fixed bug GH-14774 (time_sleep_until overflow). (David Carlier) + +- Streams: + . Fixed bug GH-14930 (Custom stream wrapper dir_readdir output truncated to + 255 characters in PHP 8.3). (Joe Cai) + +- Tidy: + . Fix memory leak in tidy_repair_file(). (nielsdos) + +- Treewide: + . Fix compatibility with libxml2 2.13.2. (nielsdos) + +- XML: + . Move away from to-be-deprecated libxml fields. (nielsdos) + . Fixed bug GH-14834 (Error installing PHP when --with-pear is used). + (nielsdos) diff --git a/data/releases/8.3/8.3.10/release.json b/data/releases/8.3/8.3.10/release.json new file mode 100644 index 0000000000..09e7712bd2 --- /dev/null +++ b/data/releases/8.3/8.3.10/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.10", + "date": "01 Aug 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.10.tar.gz", + "name": "PHP 8.3.10 (tar.gz)", + "sha256": "d0b4dd5ff465053248fd28dacf2fe0bed79deaaef657890cecb6bfcb73996dcd" + }, + { + "filename": "php-8.3.10.tar.bz2", + "name": "PHP 8.3.10 (tar.bz2)", + "sha256": "e584199c350b46343c37069bb9cc20ad893cb04c747c899ef1b05eadc0eea3b0" + }, + { + "filename": "php-8.3.10.tar.xz", + "name": "PHP 8.3.10 (tar.xz)", + "sha256": "a0f2179d00931fe7631a12cbc3428f898ca3d99fe564260c115af381d2a1978d" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.11/announcement.html b/data/releases/8.3/8.3.11/announcement.html new file mode 100644 index 0000000000..5b78a67ce7 --- /dev/null +++ b/data/releases/8.3/8.3.11/announcement.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/8.3.11/changes.txt b/data/releases/8.3/8.3.11/changes.txt new file mode 100644 index 0000000000..1e6ea4e000 --- /dev/null +++ b/data/releases/8.3/8.3.11/changes.txt @@ -0,0 +1,73 @@ +- Core: + . Fixed bug GH-15020 (Memory leak in Zend/Optimizer/escape_analysis.c). + (nielsdos) + . Fixed bug GH-15023 (Memory leak in Zend/zend_ini.c). (nielsdos) + . Fixed bug GH-13330 (Append -Wno-implicit-fallthrough flag conditionally). + (Peter Kokot) + . Fix uninitialized memory in network.c. (nielsdos) + . Fixed bug GH-15108 (Segfault when destroying generator during shutdown). + (Arnaud) + . Fixed bug GH-15275 (Crash during GC of suspended generator delegate). + (Arnaud) + +- Curl: + . Fixed case when curl_error returns an empty string. + (David Carlier) + +- DOM: + . Fix UAF when removing doctype and using foreach iteration. (nielsdos) + +- FFI: + . Fixed bug GH-14286 (ffi enum type (when enum has no name) make memory + leak). (nielsdos, dstogov) + +- Hash: + . Fix crash when converting array data for array in shm in xxh3. (nielsdos) + +- Intl: + . Fixed bug GH-15087 (IntlChar::foldCase()'s $option is not optional). (cmb) + +- Opcache: + . Fixed bug GH-13817 (Segmentation fault for enabled observers after pass 4). + (Bob) + . Fixed bug GH-13775 (Memory leak possibly related to opcache SHM placement). + (Arnaud, nielsdos) + +- Output: + . Fixed bug GH-15179 (Segmentation fault (null pointer dereference) in + ext/standard/url_scanner_ex.re). (nielsdos) + +- PDO_Firebird: + . Fix bogus fallthrough path in firebird_handle_get_attribute(). (nielsdos) + +- PHPDBG: + . Fixed bug GH-13199 (EOF emits redundant prompt in phpdbg local console mode + with libedit/readline). (Peter Kokot) + . Fixed bug GH-15268 (heap buffer overflow in phpdbg + (zend_hash_num_elements() Zend/zend_hash.h)). (nielsdos) + . Fixed bug GH-15210 use-after-free on watchpoint allocations. (nielsdos) + +- Random: + . Fixed part of bug GH-15381, checking getrandom availability on solaris. + (David Carlier) + +- Soap: + . Fixed bug #55639 (Digest autentication dont work). (nielsdos) + . Fix SoapFault property destruction. (nielsdos) + . Fixed bug GH-15252 (SOAP XML broken since PHP 8.3.9 when using classmap + constructor option). (nielsdos) + +- Standard: + . Fix passing non-finite timeout values in stream functions. (nielsdos) + . Fixed GH-14780 p(f)sockopen timeout overflow. (David Carlier) + . Fixed GH-15653 overflow on fgetcsv length parameter. (David Carlier) + +- Streams: + . Fixed bug GH-15028 (Memory leak in ext/phar/stream.c). (nielsdos) + . Fixed bug GH-15034 (Integer overflow on stream_notification_callback + byte_max parameter with files bigger than 2GB). (nielsdos) + . Reverted fix for GH-14930 (Custom stream wrapper dir_readdir output + truncated to 255 characters). (Jakub Zelenka) + +- Tidy: + . Fix memory leaks in ext/tidy basedir restriction code. (nielsdos) diff --git a/data/releases/8.3/8.3.11/release.json b/data/releases/8.3/8.3.11/release.json new file mode 100644 index 0000000000..6a04240a52 --- /dev/null +++ b/data/releases/8.3/8.3.11/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.11", + "date": "29 Aug 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.11.tar.gz", + "name": "PHP 8.3.11 (tar.gz)", + "sha256": "b93a69af83a1302543789408194bd1ae9829e116e784d578778200f20f1b72d4" + }, + { + "filename": "php-8.3.11.tar.bz2", + "name": "PHP 8.3.11 (tar.bz2)", + "sha256": "6640e2455080a89adc41d4e57bb04f8c2bfb7eec627fe199af973bff34d7f0ee" + }, + { + "filename": "php-8.3.11.tar.xz", + "name": "PHP 8.3.11 (tar.xz)", + "sha256": "b862b098a08ab9bf4b36ed12c7d0d9f65353656b36fb0e3c5344093aceb35802" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.12/announcement.html b/data/releases/8.3/8.3.12/announcement.html new file mode 100644 index 0000000000..33a7f49e64 --- /dev/null +++ b/data/releases/8.3/8.3.12/announcement.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/8.3.12/changes.txt b/data/releases/8.3/8.3.12/changes.txt new file mode 100644 index 0000000000..6d11ebf5b6 --- /dev/null +++ b/data/releases/8.3/8.3.12/changes.txt @@ -0,0 +1,57 @@ +- CGI: + . Fixed bug GHSA-p99j-rfp4-xqvq (Bypass of CVE-2024-4577, Parameter Injection + Vulnerability). (CVE-2024-8926) (nielsdos) + . Fixed bug GHSA-94p6-54jq-9mwp (cgi.force_redirect configuration is + bypassable due to the environment variable collision). (CVE-2024-8927) + (nielsdos) + +- Core: + . Fixed bug GH-15408 (MSan false-positve on zend_max_execution_timer). + (zeriyoshi) + . Fixed bug GH-15515 (Configure error grep illegal option q). (Peter Kokot) + . Fixed bug GH-15514 (Configure error: genif.sh: syntax error). (Peter Kokot) + . Fixed bug GH-15565 (--disable-ipv6 during compilation produces error + EAI_SYSTEM not found). (nielsdos) + . Fixed bug GH-15587 (CRC32 API build error on arm 32-bit). + (Bernd Kuhls, Thomas Petazzoni) + . Fixed bug GH-15330 (Do not scan generator frames more than once). (Arnaud) + . Fixed uninitialized lineno in constant AST of internal enums. (ilutov) + +- Curl: + . FIxed bug GH-15547 (curl_multi_select overflow on timeout argument). + (David Carlier) + +- DOM: + . Fixed bug GH-15551 (Segmentation fault (access null pointer) in + ext/dom/xml_common.h). (nielsdos) + . Fixed bug GH-15654 (Signed integer overflow in ext/dom/nodelist.c). + (nielsdos) + +- Fileinfo: + . Fixed bug GH-15752 (Incorrect error message for finfo_file + with an empty filename argument). (DanielEScherzer) + +- FPM: + . Fixed bug GHSA-865w-9rf3-2wh5 (Logs from childrens may be altered). + (CVE-2024-9026) (Jakub Zelenka) + +- MySQLnd: + . Fixed bug GH-15432 (Heap corruption when querying a vector). (cmb, + Kamil Tekiela) + +- Opcache: + . Fixed bug GH-15661 (Access null pointer in + Zend/Optimizer/zend_inference.c). (nielsdos) + . Fixed bug GH-15658 (Segmentation fault in Zend/zend_vm_execute.h). + (nielsdos) + +- SAPI: + . Fixed bug GHSA-9pqp-7h25-4f32 (Erroneous parsing of multipart form data). + (CVE-2024-8925) (Arnaud) + +- Standard: + . Fixed bug GH-15552 (Signed integer overflow in ext/standard/scanf.c). (cmb) + +- Streams: + . Fixed bug GH-15628 (php_stream_memory_get_buffer() not zero-terminated). + (cmb) diff --git a/data/releases/8.3/8.3.12/release.json b/data/releases/8.3/8.3.12/release.json new file mode 100644 index 0000000000..572d3bf682 --- /dev/null +++ b/data/releases/8.3/8.3.12/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.3.12", + "date": "26 Sep 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.3.12.tar.gz", + "name": "PHP 8.3.12 (tar.gz)", + "sha256": "7090e551e05b26384546345d6a162c71b74550febf75bdfd16dfd1f0cfa8647c" + }, + { + "filename": "php-8.3.12.tar.bz2", + "name": "PHP 8.3.12 (tar.bz2)", + "sha256": "807633496ccdb370a8905458db82bd67366e98a6d59728914b797b87e9caecbf" + }, + { + "filename": "php-8.3.12.tar.xz", + "name": "PHP 8.3.12 (tar.xz)", + "sha256": "f774e28633e26fc8c5197f4dae58ec9e3ff87d1b4311cbc61ab05a7ad24bd131" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.13/announcement.html b/data/releases/8.3/8.3.13/announcement.html new file mode 100644 index 0000000000..bf9f4782b8 --- /dev/null +++ b/data/releases/8.3/8.3.13/announcement.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/8.3.13/changes.txt b/data/releases/8.3/8.3.13/changes.txt new file mode 100644 index 0000000000..c63b3f58cd --- /dev/null +++ b/data/releases/8.3/8.3.13/changes.txt @@ -0,0 +1,122 @@ +- Calendar: + . Fixed GH-16240: jdtounix overflow on argument value. (David Carlier) + . Fixed GH-16241: easter_days/easter_date overflow on year argument. + (David Carlier) + . Fixed GH-16263: jddayofweek overflow. (cmb) + . Fixed GH-16234: jewishtojd overflow. (nielsdos) + +- CLI: + . Fixed bug GH-16137: duplicate http headers when set several times by + the client. (David Carlier) + +- Core: + . Fixed bug GH-16054 (Segmentation fault when resizing hash table iterator + list while adding). (nielsdos) + . Fixed bug GH-15905 (Assertion failure for TRACK_VARS_SERVER). (cmb) + . Fixed bug GH-15907 (Failed assertion when promoting Serialize deprecation to + exception). (ilutov) + . Fixed bug GH-15851 (Segfault when printing backtrace during cleanup of + nested generator frame). (ilutov) + . Fixed bug GH-15866 (Core dumped in Zend/zend_generators.c). (Arnaud) + . Fixed bug GH-16188 (Assertion failure in Zend/zend_exceptions.c). (Arnaud) + . Fixed bug GH-16233 (Observer segfault when calling user function in + internal function via trampoline). (nielsdos) + +- DOM: + . Fixed bug GH-16039 (Segmentation fault (access null pointer) in + ext/dom/parentnode/tree.c). (nielsdos) + . Fixed bug GH-16149 (Null pointer dereference in + DOMElement->getAttributeNames()). (nielsdos) + . Fixed bug GH-16151 (Assertion failure in ext/dom/parentnode/tree.c). + (nielsdos) + . Fixed bug GH-16150 (Use after free in php_dom.c). (nielsdos) + . Fixed bug GH-16152 (Memory leak in DOMProcessingInstruction/DOMDocument). + (nielsdos) + +- JSON: + . Fixed bug GH-15168 (stack overflow in json_encode()). (nielsdos) + +- GD: + . Fixed bug GH-16232 (bitshift overflow on wbmp file content reading / + fix backport from upstream). (David Carlier) + . Fixed bug GH-12264 (overflow/underflow on imagerotate degrees value) + (David Carlier) + . Fixed bug GH-16274 (imagescale underflow on RBG channels / + fix backport from upstream). (David Carlier) + +- LDAP: + . Fixed bug GH-16032 (Various NULL pointer dereferencements in + ldap_modify_batch()). (Girgias) + . Fixed bug GH-16101 (Segfault in ldap_list(), ldap_read(), and ldap_search() + when LDAPs array is not a list). (Girgias) + . Fix GH-16132 (php_ldap_do_modify() attempts to free pointer not allocated + by ZMM.). (Girgias) + . Fix GH-16136 (Memory leak in php_ldap_do_modify() when entry is not a + proper dictionary). (Girgias) + +- MBString: + . Fixed bug GH-16261 (Reference invariant broken in mb_convert_variables()). + (nielsdos) + +- OpenSSL: + . Fixed stub for openssl_csr_new. (Jakub Zelenka) + +- PCRE: + . Fixed bug GH-16189 (underflow on offset argument). (David Carlier) + . Fixed bug GH-16184 (UBSan address overflowed in ext/pcre/php_pcre.c). + (nielsdos) + +- PHPDBG: + . Fixed bug GH-15901 (phpdbg: Assertion failure on i funcs). (cmb) + . Fixed bug GH-16181 (phpdbg: exit in exception handler reports fatal error). + (cmb) + +- Reflection: + . Fixed bug GH-16187 (Assertion failure in ext/reflection/php_reflection.c). + (DanielEScherzer) + +- SAPI: + . Fixed bug GH-15395 (php-fpm: zend_mm_heap corrupted with cgi-fcgi request). + (Jakub Zelenka, David Carlier) + +- SimpleXML: + . Fixed bug GH-15837 (Segmentation fault in ext/simplexml/simplexml.c). + (nielsdos) + +- Sockets: + . Fixed bug GH-16267 (socket_strerror overflow on errno argument). + (David Carlier) + +- SOAP: + . Fixed bug #73182 (PHP SOAPClient does not support stream context HTTP + headers in array form). (nielsdos) + . Fixed bug #62900 (Wrong namespace on xsd import error message). (nielsdos) + . Fixed bug GH-15711 (SoapClient can't convert BackedEnum to scalar value). + (nielsdos) + . Fixed bug GH-16237 (Segmentation fault when cloning SoapServer). (nielsdos) + . Fix Soap leaking http_msg on error. (nielsdos) + . Fixed bug GH-16256 (Assertion failure in ext/soap/php_encoding.c:460). + (nielsdos) + . Fixed bug GH-16259 (Soap segfault when classmap instantiation fails). + (nielsdos) + +- SPL: + . Fixed bug GH-15918 (Assertion failure in ext/spl/spl_fixedarray.c). + (nielsdos) + +- Standard: + . Fixed bug GH-16053 (Assertion failure in Zend/zend_hash.c). (Arnaud) + . Fixed bug GH-15169 (stack overflow when var serialization in + ext/standard/var). (nielsdos) + +- Streams: + . Fixed bugs GH-15908 and GH-15026 (leak / assertion failure in streams.c). + (nielsdos) + . Fixed bug GH-15980 (Signed integer overflow in main/streams/streams.c). + (cmb) + +- TSRM: + . Prevent closing of unrelated handles. (cmb) + +- Windows: + . Fixed minimal Windows version. (cmb) diff --git a/data/releases/8.3/8.3.13/release.json b/data/releases/8.3/8.3.13/release.json new file mode 100644 index 0000000000..de96ccec66 --- /dev/null +++ b/data/releases/8.3/8.3.13/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.13", + "date": "24 Oct 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.13.tar.gz", + "name": "PHP 8.3.13 (tar.gz)", + "sha256": "ffe34317d2688ed3161809c90ca4135c84ebfdfd12a46880a264d7d1e1d7739a" + }, + { + "filename": "php-8.3.13.tar.bz2", + "name": "PHP 8.3.13 (tar.bz2)", + "sha256": "c7791c82e1a554ccaf84a40ba71cc1417ba9af67fb5b39780837fd7c7eb6f124" + }, + { + "filename": "php-8.3.13.tar.xz", + "name": "PHP 8.3.13 (tar.xz)", + "sha256": "89adb978cca209124fe53fd6327bc4966ca21213a7fa2e9504f854e340873018" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.14/announcement.html b/data/releases/8.3/8.3.14/announcement.html new file mode 100644 index 0000000000..1e263c31c5 --- /dev/null +++ b/data/releases/8.3/8.3.14/announcement.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/8.3.14/changes.txt b/data/releases/8.3/8.3.14/changes.txt new file mode 100644 index 0000000000..a999dde9e5 --- /dev/null +++ b/data/releases/8.3/8.3.14/changes.txt @@ -0,0 +1,179 @@ +- CLI: + . Fixed bug GH-16373 (Shebang is not skipped for router script in cli-server + started through shebang). (ilutov) + . Fixed bug GHSA-4w77-75f9-2c8w (Heap-Use-After-Free in sapi_read_post_data + Processing in CLI SAPI Interface). (nielsdos) + +- COM: + . Fixed out of bound writes to SafeArray data. (cmb) + +- Core: + . Fixed bug GH-16168 (php 8.1 and earlier crash immediately when compiled + with Xcode 16 clang on macOS 15). (nielsdos) + . Fixed bug GH-16371 (Assertion failure in Zend/zend_weakrefs.c:646). (Arnaud) + . Fixed bug GH-16515 (Incorrect propagation of ZEND_ACC_RETURN_REFERENCE for + call trampoline). (ilutov) + . Fixed bug GH-16509 (Incorrect line number in function redeclaration error). + (ilutov) + . Fixed bug GH-16508 (Incorrect line number in inheritance errors of delayed + early bound classes). (ilutov) + . Fixed bug GH-16648 (Use-after-free during array sorting). (ilutov) + . Fixed bug GH-15915 (overflow with a high value for precision INI). + (David Carlier / cmb) + +- Curl: + . Fixed bug GH-16302 (CurlMultiHandle holds a reference to CurlHandle if + curl_multi_add_handle fails). (timwolla) + +- Date: + . Fixed bug GH-16454 (Unhandled INF in date_sunset() with tiny $utcOffset). + (cmb) + . Fixed bug GH-14732 (date_sun_info() fails for non-finite values). (cmb) + +- DBA: + . Fixed bug GH-16390 (dba_open() can segfault for "pathless" streams). (cmb) + +- DOM: + . Fixed bug GH-16316 (DOMXPath breaks when not initialized properly). + (nielsdos) + . Add missing hierarchy checks to replaceChild. (nielsdos) + . Fixed bug GH-16336 (Attribute intern document mismanagement). (nielsdos) + . Fixed bug GH-16338 (Null-dereference in ext/dom/node.c). (nielsdos) + . Fixed bug GH-16473 (dom_import_simplexml stub is wrong). (nielsdos) + . Fixed bug GH-16533 (Segfault when adding attribute to parent that is not + an element). (nielsdos) + . Fixed bug GH-16535 (UAF when using document as a child). (nielsdos) + . Fixed bug GH-16593 (Assertion failure in DOM->replaceChild). (nielsdos) + . Fixed bug GH-16595 (Another UAF in DOM -> cloneNode). (nielsdos) + +- EXIF: + . Fixed bug GH-16409 (Segfault in exif_thumbnail when not dealing with a + real file). (nielsdos, cmb) + +- FFI: + . Fixed bug GH-16397 (Segmentation fault when comparing FFI object). + (nielsdos) + +- Filter: + . Fixed bug GH-16523 (FILTER_FLAG_HOSTNAME accepts ending hyphen). (cmb) + +- FPM: + . Fixed bug GH-16628 (FPM logs are getting corrupted with this log + statement). (nielsdos) + +- GD: + . Fixed bug GH-16334 (imageaffine overflow on matrix elements). + (David Carlier) + . Fixed bug GH-16427 (Unchecked libavif return values). (cmb) + . Fixed bug GH-16559 (UBSan abort in ext/gd/libgd/gd_interpolation.c:1007). + (nielsdos) + +- GMP: + . Fixed floating point exception bug with gmp_pow when using + large exposant values. (David Carlier). + . Fixed bug GH-16411 (gmp_export() can cause overflow). (cmb) + . Fixed bug GH-16501 (gmp_random_bits() can cause overflow). + (David Carlier) + . Fixed gmp_pow() overflow bug with large base/exponents. + (David Carlier) + . Fixed segfaults and other issues related to operator overloading with + GMP objects. (Girgias) + +- LDAP: + . Fixed bug GHSA-g665-fm4p-vhff (OOB access in ldap_escape). (CVE-2024-8932) + (nielsdos) + +- MBstring: + . Fixed bug GH-16361 (mb_substr overflow on start/length arguments). + (David Carlier) + +- MySQLnd: + . Fixed bug GHSA-h35g-vwh6-m678 (Leak partial content of the heap through + heap buffer over-read). (CVE-2024-8929) (Jakub Zelenka) + +- Opcache: + . Fixed bug GH-16408 (Array to string conversion warning emitted in + optimizer). (ilutov) + +- OpenSSL: + . Fixed bug GH-16357 (openssl may modify member types of certificate arrays). + (cmb) + . Fixed bug GH-16433 (Large values for openssl_csr_sign() $days overflow). + (cmb) + . Fix various memory leaks on error conditions in openssl_x509_parse(). + (nielsdos) + +- PDO DBLIB: + . Fixed bug GHSA-5hqh-c84r-qjcv (Integer overflow in the dblib quoter causing + OOB writes). (CVE-2024-11236) (nielsdos) + +- PDO Firebird: + . Fixed bug GHSA-5hqh-c84r-qjcv (Integer overflow in the firebird quoter + causing OOB writes). (CVE-2024-11236) (nielsdos) + +- PDO ODBC: + . Fixed bug GH-16450 (PDO_ODBC can inject garbage into field values). (cmb) + +- Phar: + . Fixed bug GH-16406 (Assertion failure in ext/phar/phar.c:2808). (nielsdos) + +- PHPDBG: + . Fixed bug GH-16174 (Empty string is an invalid expression for ev). (cmb) + +- Reflection: + . Fixed bug GH-16601 (Memory leak in Reflection constructors). (nielsdos) + +- Session: + . Fixed bug GH-16385 (Unexpected null returned by session_set_cookie_params). + (nielsdos) + . Fixed bug GH-16290 (overflow on cookie_lifetime ini value). + (David Carlier) + +- SOAP: + . Fixed bug GH-16318 (Recursive array segfaults soap encoding). (nielsdos) + . Fixed bug GH-16429 (Segmentation fault access null pointer in SoapClient). + (nielsdos) + +- Sockets: + . Fixed bug with overflow socket_recvfrom $length argument. (David Carlier) + +- SPL: + . Fixed bug GH-16337 (Use-after-free in SplHeap). (nielsdos) + . Fixed bug GH-16464 (Use-after-free in SplDoublyLinkedList::offsetSet()). + (ilutov) + . Fixed bug GH-16479 (Use-after-free in SplObjectStorage::setInfo()). (ilutov) + . Fixed bug GH-16478 (Use-after-free in SplFixedArray::unset()). (ilutov) + . Fixed bug GH-16588 (UAF in Observer->serialize). (nielsdos) + . Fix GH-16477 (Segmentation fault when calling __debugInfo() after failed + SplFileObject::__constructor). (Girgias) + . Fixed bug GH-16589 (UAF in SplDoublyLinked->serialize()). (nielsdos) + . Fixed bug GH-14687 (segfault on SplObjectIterator instance). + (David Carlier) + . Fixed bug GH-16604 (Memory leaks in SPL constructors). (nielsdos) + . Fixed bug GH-16646 (UAF in ArrayObject::unset() and + ArrayObject::exchangeArray()). (ilutov) + +- Standard: + . Fixed bug GH-16293 (Failed assertion when throwing in assert() callback with + bail enabled). (ilutov) + +- Streams: + . Fixed bug GHSA-c5f2-jwm7-mmq2 (Configuring a proxy in a stream context + might allow for CRLF injection in URIs). (CVE-2024-11234) (Jakub Zelenka) + . Fixed bug GHSA-r977-prxv-hc43 (Single byte overread with + convert.quoted-printable-decode filter). (CVE-2024-11233) (nielsdos) + +- SysVMsg: + . Fixed bug GH-16592 (msg_send() crashes when a type does not properly + serialized). (David Carlier / cmb) + +- SysVShm: + . Fixed bug GH-16591 (Assertion error in shm_put_var). (nielsdos, cmb) + +- XMLReader: + . Fixed bug GH-16292 (Segmentation fault in ext/xmlreader/php_xmlreader.c). + (nielsdos) + +- Zlib: + . Fixed bug GH-16326 (Memory management is broken for bad dictionaries.) + (cmb) diff --git a/data/releases/8.3/8.3.14/release.json b/data/releases/8.3/8.3.14/release.json new file mode 100644 index 0000000000..fcde7fb74b --- /dev/null +++ b/data/releases/8.3/8.3.14/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.3.14", + "date": "21 Nov 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.3.14.tar.gz", + "name": "PHP 8.3.14 (tar.gz)", + "sha256": "e4ee602c31e2f701c9f0209a2902dd4802727431246a9155bf56dda7bcf7fb4a" + }, + { + "filename": "php-8.3.14.tar.bz2", + "name": "PHP 8.3.14 (tar.bz2)", + "sha256": "f56fa669ce4c01452a2921f40034d779d8c2b97d0749493ad4781813b9221cf8" + }, + { + "filename": "php-8.3.14.tar.xz", + "name": "PHP 8.3.14 (tar.xz)", + "sha256": "58b4cb9019bf70c0cbcdb814c7df79b9065059d14cf7dbf48d971f8e56ae9be7" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.15/announcement.html b/data/releases/8.3/8.3.15/announcement.html new file mode 100644 index 0000000000..dd2e20a9e5 --- /dev/null +++ b/data/releases/8.3/8.3.15/announcement.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/8.3.15/changes.txt b/data/releases/8.3/8.3.15/changes.txt new file mode 100644 index 0000000000..f00a92f9f4 --- /dev/null +++ b/data/releases/8.3/8.3.15/changes.txt @@ -0,0 +1,86 @@ +- Calendar: + . Fixed jdtogregorian overflow. (David Carlier) + . Fixed cal_to_jd julian_days argument overflow. (David Carlier) + +- COM: + . Fixed bug GH-16991 (Getting typeinfo of non DISPATCH variant segfaults). + (cmb) + +- Core: + . Fail early in *nix configuration build script. (hakre) + . Fixed bug GH-16727 (Opcache bad signal 139 crash in ZTS bookworm + (frankenphp)). (nielsdos) + . Fixed bug GH-16799 (Assertion failure at Zend/zend_vm_execute.h:7469). + (nielsdos) + . Fixed bug GH-16630 (UAF in lexer with encoding translation and heredocs). + (nielsdos) + . Fix is_zend_ptr() huge block comparison. (nielsdos) + . Fixed potential OOB read in zend_dirname() on Windows. (cmb) + +- Curl: + . Fixed bug GH-16802 (open_basedir bypass using curl extension). (nielsdos) + . Fix various memory leaks in curl mime handling. (nielsdos) + +- DOM: + . Fixed bug GH-16777 (Calling the constructor again on a DOM object after it + is in a document causes UAF). (nielsdos) + . Fixed bug GH-16906 (Reloading document can cause UAF in iterator). + (nielsdos) + +- FPM: + . Fixed GH-16432 (PHP-FPM 8.2 SIGSEGV in fpm_get_status). (Jakub Zelenka) + +- GD: + . Fixed GH-16776 (imagecreatefromstring overflow). (David Carlier) + +- GMP: + . Fixed bug GH-16890 (array_sum() with GMP can loose precision (LLP64)). + (cmb) + +- Hash: + . Fixed GH-16711: Segfault in mhash(). (Girgias) + +- Opcache: + . Fixed bug GH-16770 (Tracing JIT type mismatch when returning UNDEF). + (nielsdos, Dmitry) + . Fixed bug GH-16851 (JIT_G(enabled) not set correctly on other threads). + (dktapps) + . Fixed bug GH-16902 (Set of opcache tests fail zts+aarch64). (nielsdos) + +- OpenSSL: + . Prevent unexpected array entry conversion when reading key. (nielsdos) + . Fix various memory leaks related to openssl exports. (nielsdos) + . Fix memory leak in php_openssl_pkey_from_zval(). (nielsdos) + +- PDO: + . Fixed memory leak of `setFetchMode()`. (SakiTakamachi) + +- Phar: + . Fixed bug GH-16695 (phar:// tar parser and zero-length file header blocks). + (nielsdos, Hans Krentel) + +- PHPDBG: + . Fixed bug GH-15208 (Segfault with breakpoint map and phpdbg_clear()). + (nielsdos) + +- SAPI: + . Fixed bug GH-16998 (UBSAN warning in rfc1867). (nielsdos) + +- SimpleXML: + . Fixed bug GH-16808 (Segmentation fault in RecursiveIteratorIterator + ->current() with a xml element input). (nielsdos) + +- SOAP: + . Fix make check being invoked in ext/soap. (Ma27) + +- Standard: + . Fixed bug GH-16905 (Internal iterator functions can't handle UNDEF + properties). (nielsdos) + . Fixed bug GH-16957 (Assertion failure in array_shift with + self-referencing array). (nielsdos) + +- Streams: + . Fixed network connect poll interuption handling. (Jakub Zelenka) + +- Windows: + . Fixed bug GH-16849 (Error dialog causes process to hang). (cmb) diff --git a/data/releases/8.3/8.3.15/release.json b/data/releases/8.3/8.3.15/release.json new file mode 100644 index 0000000000..61e738b91f --- /dev/null +++ b/data/releases/8.3/8.3.15/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.15", + "date": "19 Dec 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.15.tar.gz", + "name": "PHP 8.3.15 (tar.gz)", + "sha256": "67073c3c9c56c86461e0715d9e1806af5ddffe8e6e2eb9781f7923bbb5bd67fa" + }, + { + "filename": "php-8.3.15.tar.bz2", + "name": "PHP 8.3.15 (tar.bz2)", + "sha256": "b1675a4ff730b5811b8e6a7687488c42e835e156a99776aa3e6f017abda3be98" + }, + { + "filename": "php-8.3.15.tar.xz", + "name": "PHP 8.3.15 (tar.xz)", + "sha256": "3df5d45637283f759eef8fc3ce03de829ded3e200c3da278936a684955d2f94f" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.16/announcement.html b/data/releases/8.3/8.3.16/announcement.html new file mode 100644 index 0000000000..b65a2de51c --- /dev/null +++ b/data/releases/8.3/8.3.16/announcement.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/8.3.16/changes.txt b/data/releases/8.3/8.3.16/changes.txt new file mode 100644 index 0000000000..deec1a4d96 --- /dev/null +++ b/data/releases/8.3/8.3.16/changes.txt @@ -0,0 +1,107 @@ +- Core: + . Fixed bug GH-17106 (ZEND_MATCH_ERROR misoptimization). (ilutov) + . Fixed bug GH-17162 (zend_array_try_init() with dtor can cause engine UAF). + (nielsdos) + . Fixed bug GH-17101 (AST->string does not reproduce constructor property + promotion correctly). (nielsdos) + . Fixed bug GH-17211 (observer segfault on function loaded with dl()). + (Arnaud) + . Fixed bug GH-17216 (Trampoline crash on error). (nielsdos) + +- Date: + . Fixed bug GH-14709 DatePeriod::__construct() overflow on recurrences. + (David Carlier) + +- DBA: + . Skip test if inifile is disabled. (orlitzky) + +- DOM: + . Fixed bug GH-17224 (UAF in importNode). (nielsdos) + +- Embed: + . Make build command for program using embed portable. (dunglas) + +- FFI: + . Fixed bug #79075 (FFI header parser chokes on comments). (nielsdos) + . Fix memory leak on ZEND_FFI_TYPE_CHAR conversion failure. (nielsdos) + . Fixed bug GH-16013 and bug #80857 (Big endian issues). (Dmitry, nielsdos) + +- Filter: + . Fixed bug GH-16944 (Fix filtering special IPv4 and IPv6 ranges, by using + information from RFC 6890). (Derick) + +- FPM: + . Fixed bug GH-13437 (FPM: ERROR: scoreboard: failed to lock (already + locked)). (Jakub Zelenka) + . Fixed bug GH-17112 (Macro redefinitions). (cmb, nielsdos) + . Fixed bug GH-17208 (bug64539-status-json-encoding.phpt fail on 32-bits). + (nielsdos) + +- GD: + . Fixed bug GH-16255 (Unexpected nan value in ext/gd/libgd/gd_filter.c). + (nielsdos, cmb) + . Ported fix for libgd bug 276 (Sometimes pixels are missing when storing + images as BMPs). (cmb) + +- Gettext: + . Fixed bug GH-17202 (Segmentation fault ext/gettext/gettext.c + bindtextdomain()). (Michael Orlitzky) + +- Iconv: + . Fixed bug GH-17047 (UAF on iconv filter failure). (nielsdos) + +- LDAP: + . Fixed bug GH-17280 (ldap_search() fails when $attributes array has holes). + (nielsdos) + +- LibXML: + . Fixed bug GH-17223 (Memory leak in libxml encoding handling). (nielsdos) + +- MBString: + . Fixed bug GH-17112 (Macro redefinitions). (nielsdos, cmb) + +- Opcache: + . opcache_get_configuration() properly reports jit_prof_threshold. (cmb) + . Fixed bug GH-17246 (GC during SCCP causes segfault). (Dmitry) + +- PCNTL: + . Fix memory leak in cleanup code of pcntl_exec() when a non stringable + value is encountered past the first entry. (Girgias) + +- PgSql: + . Fixed bug GH-17158 (pg_fetch_result Shows Incorrect ArgumentCountError + Message when Called With 1 Argument). (nielsdos) + . Fixed further ArgumentCountError for calls with flexible + number of arguments. (David Carlier) + +- Phar: + . Fixed bug GH-17137 (Segmentation fault ext/phar/phar.c). (nielsdos) + +- SimpleXML: + . Fixed bug GH-17040 (SimpleXML's unset can break DOM objects). (nielsdos) + . Fixed bug GH-17153 (SimpleXML crash when using autovivification on + document). (nielsdos) + +- Sockets: + . Fixed bug GH-16276 (socket_strerror overflow handling with INT_MIN). + (David Carlier / cmb) + . Fixed overflow on SO_LINGER values setting, strengthening values check + on SO_SNDTIMEO/SO_RCVTIMEO for socket_set_option(). + (David Carlier) + +- SPL: + . Fixed bug GH-17225 (NULL deref in spl_directory.c). (nielsdos) + +- Streams: + . Fixed bug GH-17037 (UAF in user filter when adding existing filter name due + to incorrect error handling). (nielsdos) + . Fixed bug GH-16810 (overflow on fopen HTTP wrapper timeout value). + (David Carlier) + . Fixed bug GH-17067 (glob:// wrapper doesn't cater to CWD for ZTS builds). + (cmb) + +- Windows: + . Hardened proc_open() against cmd.exe hijacking. (cmb) + +- XML: + . Fixed bug GH-1718 (unreachable program point in zend_hash). (nielsdos) diff --git a/data/releases/8.3/8.3.16/release.json b/data/releases/8.3/8.3.16/release.json new file mode 100644 index 0000000000..8197258f0c --- /dev/null +++ b/data/releases/8.3/8.3.16/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.16", + "date": "16 Jan 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.16.tar.gz", + "name": "PHP 8.3.16 (tar.gz)", + "sha256": "61441627dca50cf0173e3f054ffe8c4f5db6552555c43cab87a8ecacfd201c7e" + }, + { + "filename": "php-8.3.16.tar.bz2", + "name": "PHP 8.3.16 (tar.bz2)", + "sha256": "e9208218cbdcb816834b6c5ed8ddc5748fb12ff777cf9e0e03bb4896276608b6" + }, + { + "filename": "php-8.3.16.tar.xz", + "name": "PHP 8.3.16 (tar.xz)", + "sha256": "40d3b4e6cac33d3bcefe096d75a28d4fb4e3a9615eb20a4de55ba139fbfacdd5" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.17/announcement.html b/data/releases/8.3/8.3.17/announcement.html new file mode 100644 index 0000000000..54408ffb0c --- /dev/null +++ b/data/releases/8.3/8.3.17/announcement.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/8.3.17/changes.txt b/data/releases/8.3/8.3.17/changes.txt new file mode 100644 index 0000000000..0d291772a2 --- /dev/null +++ b/data/releases/8.3/8.3.17/changes.txt @@ -0,0 +1,73 @@ +- Core: + . Fixed bug GH-16892 (ini_parse_quantity() fails to parse inputs starting + with 0x0b). (nielsdos) + . Fixed bug GH-16886 (ini_parse_quantity() fails to emit warning for 0x+0). + (nielsdos) + . Fixed bug GH-17214 (Relax final+private warning for trait methods with + inherited final). (ilutov) + . Fixed NULL arithmetic during system program execution on Windows. (cmb, + nielsdos) + . Fixed potential OOB when checking for trailing spaces on Windows. (cmb) + . Fixed bug GH-17408 (Assertion failure Zend/zend_exceptions.c). + (nielsdos, ilutov) + . Fix may_have_extra_named_args flag for ZEND_AST_UNPACK. (nielsdos) + . Fix NULL arithmetic in System V shared memory emulation for Windows. (cmb) + +- DOM: + . Fixed bug GH-17500 (Segfault with requesting nodeName on nameless doctype). + (nielsdos) + +- Enchant: + . Fix crashes in enchant when passing null bytes. (nielsdos) + +- FTP: + . Fixed bug GH-16800 (ftp functions can abort with EINTR). (nielsdos) + +- GD: + . Fixed bug GH-17349 (Tiled truecolor filling looses single color + transparency). (cmb) + . Fixed bug GH-17373 (imagefttext() ignores clipping rect for palette + images). (cmb) + . Ported fix for libgd 223 (gdImageRotateGeneric() does not properly + interpolate). (cmb) + +- Intl: + . Fixed bug GH-11874 (intl causing segfault in docker images). (nielsdos) + . Fixed bug GH-17469 (UConverter::transcode always emit E_WARNING on + invalid encoding). (David Carlier) + +- Opcache: + . Fixed bug GH-17307 (Internal closure causes JIT failure). (nielsdos) + . Fixed bug GH-17564 (Potential UB when reading from / writing to struct + padding). (ilutov) + +- PDO: + . Fixed a memory leak when the GC is used to free a PDOStatment. (Girgias) + . Fixed a crash in the PDO Firebird Statement destructor. (nielsdos) + . Fixed UAFs when changing default fetch class ctor args. (Girgias, nielsdos) + +- Phar: + . Fixed bug GH-17518 (offset overflow phar extractTo()). (nielsdos) + +- PHPDBG: + . Fix crashes in function registration + test. (nielsdos, Girgias) + +- Session: + . Fix type confusion with session SID constant. (nielsdos) + . Fixed bug GH-17541 (ext/session NULL pointer dereferencement during + ID reset). (Girgias) + +- SimpleXML: + . Fixed bug GH-17409 (Assertion failure Zend/zend_hash.c:1730). (nielsdos) + +- SNMP: + . Fixed bug GH-17330 (SNMP::setSecurity segfault on closed session). + (David Carlier) + +- SPL: + . Fixed bug GH-17463 (crash on SplTempFileObject::ftruncate with negative + value). (David Carlier) + +- Zip: + . Fixed bug GH-17139 (Fix zip_entry_name() crash on invalid entry). + (nielsdos) diff --git a/data/releases/8.3/8.3.17/release.json b/data/releases/8.3/8.3.17/release.json new file mode 100644 index 0000000000..cef22b680c --- /dev/null +++ b/data/releases/8.3/8.3.17/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.17", + "date": "13 Feb 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.17.tar.gz", + "name": "PHP 8.3.17 (tar.gz)", + "sha256": "e2bbeca5fa62ff27d6ba6241619cf92a80e5346556be187aa962b91bd0eb9df1" + }, + { + "filename": "php-8.3.17.tar.bz2", + "name": "PHP 8.3.17 (tar.bz2)", + "sha256": "4e034dca7ab16fc6062c8c53067528f4ecaa246bf22310e6841f7008094264ac" + }, + { + "filename": "php-8.3.17.tar.xz", + "name": "PHP 8.3.17 (tar.xz)", + "sha256": "6158ee678e698395da13d72c7679a406d2b7554323432f14d37b60ed87d8ccfb" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.19/announcement.html b/data/releases/8.3/8.3.19/announcement.html new file mode 100644 index 0000000000..87878aa89d --- /dev/null +++ b/data/releases/8.3/8.3.19/announcement.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/8.3.19/changes.txt b/data/releases/8.3/8.3.19/changes.txt new file mode 100644 index 0000000000..0645fb0443 --- /dev/null +++ b/data/releases/8.3/8.3.19/changes.txt @@ -0,0 +1,97 @@ +- BCMath: + . Fixed bug GH-17398 (bcmul memory leak). (SakiTakamachi) + +- Core: + . Fixed bug GH-17623 (Broken stack overflow detection for variable + compilation). (ilutov) + . Fixed bug GH-17618 (UnhandledMatchError does not take + zend.exception_ignore_args=1 into account). (timwolla) + . Fix fallback paths in fast_long_{add,sub}_function. (nielsdos) + . Fixed bug GH-17718 (Calling static methods on an interface that has + `__callStatic` is allowed). (timwolla) + . Fixed bug GH-17797 (zend_test_compile_string crash on invalid + script path). (David Carlier) + . Fixed GHSA-rwp7-7vc6-8477 (Reference counting in php_request_shutdown + causes Use-After-Free). (CVE-2024-11235) (ilutov) + +- DOM: + . Fixed bug GH-17847 (xinclude destroys live node). (nielsdos) + +- FFI: + . Fix FFI Parsing of Pointer Declaration Lists. (davnotdev) + +- FPM: + . Fixed bug GH-17643 (FPM with httpd ProxyPass encoded PATH_INFO env). + (Jakub Zelenka) + +- GD: + . Fixed bug GH-17772 (imagepalettetotruecolor crash with memory_limit=2M). + (David Carlier) + +- LDAP: + . Fixed bug GH-17704 (ldap_search fails when $attributes contains a + non-packed array with numerical keys). (nielsdos, 7u83) + +- LibXML: + . Fixed GHSA-wg4p-4hqh-c3g9 (Reocurrence of #72714). (nielsdos) + . Fixed GHSA-p3x9-6h7p-cgfc (libxml streams use wrong `content-type` header + when requesting a redirected resource). (CVE-2025-1219) (timwolla) + +- MBString: + . Fixed bug GH-17503 (Undefined float conversion in mb_convert_variables). + (cmb) + +- Opcache: + . Fixed bug GH-17654 (Multiple classes using same trait causes function + JIT crash). (nielsdos) + . Fixed bug GH-17577 (JIT packed type guard crash). (nielsdos, Dmitry) + . Fixed bug GH-17899 (zend_test_compile_string with invalid path + when opcache is enabled). (David Carlier) + . Fixed bug GH-17868 (Cannot allocate memory with tracing JIT). (nielsdos) + +- PDO_SQLite: + . Fixed GH-17837 ()::getColumnMeta() on unexecuted statement segfaults). + (cmb) + . Fix cycle leak in sqlite3 setAuthorizer(). (nielsdos) + +- Phar: + . Fixed bug GH-17808: PharFileInfo refcount bug. (nielsdos) + +- PHPDBG: + . Partially fixed bug GH-17387 (Trivial crash in phpdbg lexer). (nielsdos) + . Fix memory leak in phpdbg calling registered function. (nielsdos) + +- Reflection: + . Fixed bug GH-15902 (Core dumped in ext/reflection/php_reflection.c). + (DanielEScherzer) + +- Sockets: + . Fixed bug GH-17921 (socket_read/socket_recv overflow on buffer size). + (David Carlier) + +- Standard: + . Fixed bug #72666 (stat cache clearing inconsistent between file:// paths + and plain paths). (Jakub Zelenka) + +- Streams: + . Fixed bug GH-17650 (realloc with size 0 in user_filters.c). (nielsdos) + . Fix memory leak on overflow in _php_stream_scandir(). (nielsdos) + . Fixed GHSA-hgf5-96fm-v528 (Stream HTTP wrapper header check might omit + basic auth header). (CVE-2025-1736) (Jakub Zelenka) + . Fixed GHSA-52jp-hrpf-2jff (Stream HTTP wrapper truncate redirect location + to 1024 bytes). (CVE-2025-1861) (Jakub Zelenka) + . Fixed GHSA-pcmh-g36c-qc44 (Streams HTTP wrapper does not fail for headers + without colon). (CVE-2025-1734) (Jakub Zelenka) + . Fixed GHSA-v8xr-gpvj-cx9g (Header parser of `http` stream wrapper does not + handle folded headers). (CVE-2025-1217) (Jakub Zelenka) + +- Windows: + . Fixed phpize for Windows 11 (24H2). (bwoebi) + . Fixed GH-17855 (CURL_STATICLIB flag set even if linked with shared lib). + (cmb) + +- Zlib: + . Fixed bug GH-17745 (zlib extension incorrectly handles object arguments). + (nielsdos) + . Fix memory leak when encoding check fails. (nielsdos) + . Fix zlib support for large files. (nielsdos) diff --git a/data/releases/8.3/8.3.19/release.json b/data/releases/8.3/8.3.19/release.json new file mode 100644 index 0000000000..0c1618e533 --- /dev/null +++ b/data/releases/8.3/8.3.19/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.3.19", + "date": "13 Mar 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.3.19.tar.gz", + "name": "PHP 8.3.19 (tar.gz)", + "sha256": "bb21d1a5eb9a8b27668b2926fa9279a5878bb6fdee55450621f7865e062dcf3a" + }, + { + "filename": "php-8.3.19.tar.bz2", + "name": "PHP 8.3.19 (tar.bz2)", + "sha256": "ad6902a2a02f94ec3e9982069e2668bba3ce47e2f6bbbab95eb6b7db7bf3d350" + }, + { + "filename": "php-8.3.19.tar.xz", + "name": "PHP 8.3.19 (tar.xz)", + "sha256": "976e4077dd25bec96b5dfe8938052d243bbd838f95368a204896eff12756545f" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.2/announcement.html b/data/releases/8.3/8.3.2/announcement.html new file mode 100644 index 0000000000..b12e3c1589 --- /dev/null +++ b/data/releases/8.3/8.3.2/announcement.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/8.3.2/changes.txt b/data/releases/8.3/8.3.2/changes.txt new file mode 100644 index 0000000000..7a8c20e216 --- /dev/null +++ b/data/releases/8.3/8.3.2/changes.txt @@ -0,0 +1,85 @@ +- Core: + . Fixed bug GH-12953 (false positive SSA integrity verification failed when + loading composer classmaps with more than 11k elements). (nielsdos) + . Fixed bug GH-12999 (zend_strnlen build when strnlen is unsupported). + (rainerjung) + . Fixed bug GH-12966 (missing cross-compiling 3rd argument so Autoconf + doesn't emit warnings). (Peter Kokot) + . Fixed bug GH-12854 (8.3 - as final trait-used method does not correctly + report visibility in Reflection). (nielsdos) + +- Cli: + . Fix incorrect timeout in built-in web server when using router script and + max_input_time. (ilutov) + +- DOM: + . Fixed bug GH-12870 (Creating an xmlns attribute results in a DOMException). + (nielsdos) + . Fix crash when toggleAttribute() is used without a document. (nielsdos) + . Fix crash in adoptNode with attribute references. (nielsdos) + . Fixed bug GH-13012 (DOMNode::isEqualNode() is incorrect when attribute + order is different). (nielsdos) + +- FFI: + . Fixed bug GH-9698 (stream_wrapper_register crashes with FFI\CData). + (Jakub Zelenka) + . Fixed bug GH-12905 (FFI::new interacts badly with observers). (nielsdos) + +- GD: + . Fixed GH-13082 undefined behavior with GdFont instances handling with + imageload* and imagechar*. (David Carlier) + +- Intl: + . Fixed GH-12943 (IntlDateFormatter::__construct accepts 'C' as valid locale). + (David Carlier) + +- Hash: + . Fixed bug GH-12936 (hash() function hangs endlessly if using sha512 on + strings >= 4GiB). (nielsdos) + +- MBString: + . When operating on a string with invalid encoding, mb_substr (as well + as mb_strstr and its variants) defines character indices in the same + way as other mbstring functions such as mb_strpos. (Alex Dowad) + +- ODBC: + . Fix crash on Apache shutdown with persistent connections. (nielsdos) + +- Opcache: + . Fixed oss-fuzz #64727 (JIT undefined array key warning may overwrite DIM + with NULL when DIM is the same var as result). (ilutov) + . Added workaround for SELinux mprotect execheap issue. + See https://bugzilla.kernel.org/show_bug.cgi?id=218258. (ilutov) + +- OpenSSL: + . Fixed bug GH-12987 (openssl_csr_sign might leak new cert on error). + (Jakub Zelenka) + +- PDO: + . Fix GH-12969 (Fixed PDO::getAttribute() to get PDO::ATTR_STRINGIFY_FETCHES). + (SakiTakamachi) + +- PDO_ODBC: + . Fixed bug GH-12767 (Unable to turn on autocommit mode with setAttribute()). + (SakiTakamachi) + +- PGSQL: + . Fixed auto_reset_persistent handling and allow_persistent type. (David Carlier) + . Fixed bug GH-12974 (Apache crashes on shutdown when using pg_pconnect()). + (nielsdos) + +- Phar: + . Fixed bug #77432 (Segmentation fault on including phar file). (nielsdos) + +- PHPDBG: + . Fixed bug GH-12962 (Double free of init_file in phpdbg_prompt.c). (nielsdos) + +- SimpleXML: + . Fix getting the address of an uninitialized property of a SimpleXMLElement + resulting in a crash. (nielsdos) + . Fixed bug GH-12929 (SimpleXMLElement with stream_wrapper_register can + segfault). (nielsdos) + +- Tidy: + . Fixed bug GH-12980 (tidynode.props.attribute is missing + "Boolean Attributes" and empty attributes). (nielsdos) diff --git a/data/releases/8.3/8.3.2/release.json b/data/releases/8.3/8.3.2/release.json new file mode 100644 index 0000000000..558ecd8b3d --- /dev/null +++ b/data/releases/8.3/8.3.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.2", + "date": "18 Jan 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.2.tar.gz", + "name": "PHP 8.3.2 (tar.gz)", + "sha256": "decf0f51e5415b21fb6350753e45b6c3be5cc0868e4ec561e5c89326c8e6ef16" + }, + { + "filename": "php-8.3.2.tar.bz2", + "name": "PHP 8.3.2 (tar.bz2)", + "sha256": "582b3c837a8d952efffe274a5e49706c43a88c162830c2a8c358089fe7449284" + }, + { + "filename": "php-8.3.2.tar.xz", + "name": "PHP 8.3.2 (tar.xz)", + "sha256": "4ffa3e44afc9c590e28dc0d2d31fc61f0139f8b335f11880a121b9f9b9f0634e" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.20/announcement.html b/data/releases/8.3/8.3.20/announcement.html new file mode 100644 index 0000000000..05c3824fa6 --- /dev/null +++ b/data/releases/8.3/8.3.20/announcement.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/8.3.20/changes.txt b/data/releases/8.3/8.3.20/changes.txt new file mode 100644 index 0000000000..b76185e333 --- /dev/null +++ b/data/releases/8.3/8.3.20/changes.txt @@ -0,0 +1,56 @@ +- Core: + . Fixed bug GH-17961 (use-after-free during dl()'ed module class destruction). + (Arnaud) + . Fixed bug GH-15367 (dl() of module with aliased class crashes in shutdown). + (Arnaud) + . Fixed bug GH-13193 again (Significant performance degradation in 'foreach'). + (nielsdos) + +- DOM: + . Fix weird unpack behaviour in DOM. (nielsdos) + . Fix xinclude destruction of live attributes. (nielsdos) + +- Embed: + . Fixed bug GH-8533 (Unable to link dynamic libphp on Mac). (Kévin Dunglas) + +- Fuzzer: + . Fixed bug GH-18081 (Memory leaks in error paths of fuzzer SAPI). + (Lung-Alexandra) + +- GD: + . Fixed bug GH-17984 (calls with arguments as array with references). + (David Carlier) + +- Intl: + . Fix locale_compose and locale_lookup to work with their array argument + with values as references. (David Carlier) + . Fix dateformat_format when the time is an array of references. + (David Carlier) + . Fix UConverter::transcode with substitutes as references. (David Carlier) + +- Mbstring: + . Fixed bug GH-17989 (mb_output_handler crash with unset + http_output_conv_mimetypes). (nielsdos) + +- Opcache: + . Fixed bug GH-18112 (NULL access with preloading and INI option). (nielsdos) + . Fixed bug GH-18107 (Opcache CFG jmp optimization with try-finally breaks + the exception table). (nielsdos) + +- PDO: + . Fix memory leak when destroying PDORow. (nielsdos) + +- SOAP: + . Fixed bug #66049 (Typemap can break parsing in parse_packet_soap leading to + a segfault) . (Remi) + +- SPL: + . Fixed bug GH-18018 (RC1 data returned from offsetGet causes UAF in + ArrayObject). (nielsdos) + +- Treewide: + . Fixed bug GH-17736 (Assertion failure zend_reference_destroy()). (nielsdos) + +- Windows: + . Fixed bug GH-17836 (zend_vm_gen.php shouldn't break on Windows line + endings). (DanielEScherzer) diff --git a/data/releases/8.3/8.3.20/release.json b/data/releases/8.3/8.3.20/release.json new file mode 100644 index 0000000000..853e2ff0be --- /dev/null +++ b/data/releases/8.3/8.3.20/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.20", + "date": "10 Apr 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.20.tar.gz", + "name": "PHP 8.3.20 (tar.gz)", + "sha256": "515ed37529df6b7f569ba68d505713bce23a93a58471dedac4ecfd17c44e5650" + }, + { + "filename": "php-8.3.20.tar.bz2", + "name": "PHP 8.3.20 (tar.bz2)", + "sha256": "36b4e6a323cd45673a54f296e9d2666b7f5df57641031c77c4fd8137bc4ebeb3" + }, + { + "filename": "php-8.3.20.tar.xz", + "name": "PHP 8.3.20 (tar.xz)", + "sha256": "f15914e071b5bddaf1475b5f2ba68107e8b8846655f9e89690fb7cd410b0db6c" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.21/announcement.html b/data/releases/8.3/8.3.21/announcement.html new file mode 100644 index 0000000000..72cf694d47 --- /dev/null +++ b/data/releases/8.3/8.3.21/announcement.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/8.3.21/changes.txt b/data/releases/8.3/8.3.21/changes.txt new file mode 100644 index 0000000000..531bf3dac1 --- /dev/null +++ b/data/releases/8.3/8.3.21/changes.txt @@ -0,0 +1,50 @@ +- Core: + . Fixed bug GH-18304 (Changing the properties of a DateInterval through + dynamic properties triggers a SegFault). (nielsdos) + . Fix some leaks in php_scandir. (nielsdos) + +- Filter: + . Fixed bug GH-18309 (ipv6 filter integer overflow). (nielsdos) + +- GD: + . Fixed imagecrop() overflow with rect argument with x/width y/heigh usage + in gdImageCrop(). (David Carlier) + . Fixed GH-18243 imagettftext() overflow/underflow on font size value. + (David Carlier) + +- Intl: + . Fix reference support for intltz_get_offset(). (nielsdos) + +- LDAP: + . Fixed bug GH-17776 (LDAP_OPT_X_TLS_* options can't be overridden). (Remi) + . Fix NULL deref on high modification key. (nielsdos) + +- libxml: + . Fixed custom external entity loader returning an invalid resource leading + to a confusing TypeError message. (Girgias) + +- OpenSSL: + . Fix memory leak in openssl_sign() when passing invalid algorithm. + (nielsdos) + . Fix potential leaks when writing to BIO fails. (nielsdos) + +- PDO Firebird: + . Fixed GH-18276 - persistent connection - "zend_mm_heap corrupted" + with setAttribute() (SakiTakamachi). + +- SPL: + . Fixed bug GH-18322 (SplObjectStorage debug handler mismanages memory). + (nielsdos) + +- Standard: + . Fixed bug GH-18145 (php8ts crashes in php_clear_stat_cache()). + (Jakub Zelenka) + . Fixed bug GH-18209 (Use-after-free in extract() with EXTR_REFS). (ilutov) + . Fixed bug GH-18212 (fseek with SEEK_CUR whence value and negative offset + leads to negative stream position). (David Carlier) + . Fix resource leak in iptcembed() on error. (nielsdos) + +- Zip: + . Fix uouv when handling empty options in ZipArchive::addGlob(). (nielsdos) + . Fix memory leak when handling a too long path in ZipArchive::addGlob(). + (nielsdos) diff --git a/data/releases/8.3/8.3.21/release.json b/data/releases/8.3/8.3.21/release.json new file mode 100644 index 0000000000..6fd7a99d5a --- /dev/null +++ b/data/releases/8.3/8.3.21/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.21", + "date": "8 May 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.21.tar.gz", + "name": "PHP 8.3.21 (tar.gz)", + "sha256": "e7f1748c1fa3d2bf8ef2e00508bd62325ba68c3b830b253bc561225a9ba5457d" + }, + { + "filename": "php-8.3.21.tar.bz2", + "name": "PHP 8.3.21 (tar.bz2)", + "sha256": "d0769e6e11cfa6c59a16de241668be8c7f31a729950a8d06190dfad2d8622b04" + }, + { + "filename": "php-8.3.21.tar.xz", + "name": "PHP 8.3.21 (tar.xz)", + "sha256": "4dfb329f209a552c3716394fc123bb62e80a468b55ce27fc8cb0fd5f30b9dcd6" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.22/announcement.html b/data/releases/8.3/8.3.22/announcement.html new file mode 100644 index 0000000000..3171874c33 --- /dev/null +++ b/data/releases/8.3/8.3.22/announcement.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/8.3.22/changes.txt b/data/releases/8.3/8.3.22/changes.txt new file mode 100644 index 0000000000..983dbe9ae5 --- /dev/null +++ b/data/releases/8.3/8.3.22/changes.txt @@ -0,0 +1,61 @@ +- Core: + . Fixed GH-18480 (array_splice with large values for offset/length arguments). + (nielsdos/David Carlier) + . Partially fixed GH-18572 (nested object comparisons leading to stack overflow). + (David Carlier) + . Fixed OSS-Fuzz #417078295. (nielsdos) + . Fixed OSS-Fuzz #418106144. (nielsdos) + +- Curl: + . Fixed GH-18460 (curl_easy_setopt with CURLOPT_USERPWD/CURLOPT_USERNAME/ + CURLOPT_PASSWORD set the Authorization header when set to NULL). + (David Carlier) + +- Date: + . Fixed bug GH-18076 (Since PHP 8, the date_sun_info() function returns + inaccurate sunrise and sunset times, but other calculated times are + correct) (JiriJozif). + . Fixed bug GH-18481 (date_sunrise with unexpected nan value for the offset). + (nielsdos/David Carlier) + +- Intl: + . Fix various reference issues. (nielsdos) + +- LDAP: + . Fixed bug GH-18529 (ldap no longer respects TLS_CACERT from ldaprc in + ldap_start_tls()). (Remi) + +- Opcache: + . Fixed bug GH-18417 (Windows SHM reattachment fails when increasing + memory_consumption or jit_buffer_size). (nielsdos) + . Fixed bug GH-18567 (Preloading with internal class alias triggers assertion + failure). (nielsdos) + . Fix leak of accel_globals->key. (nielsdos) + +- OpenSSL: + . Fix missing checks against php_set_blocking() in xp_ssl.c. (nielsdos) + +- PDO_OCI: + . Fixed bug GH-18494 (PDO OCI segfault in statement GC). (nielsdos) + +- Sockets: + - Fixed bug GH-18617 (socket_import_file_descriptor return value + unchecked). (David Carlier) + +- SPL: + . Fixed bug GH-18421 (Integer overflow with large numbers in LimitIterator). + (nielsdos) + +- Standard: + . Fixed bug GH-17403 (Potential deadlock when putenv fails). (nielsdos) + . Fixed bug GH-18509 (Dynamic calls to assert() ignore zend.assertions). + (timwolla) + +- Windows: + . Fix leak+crash with sapi_windows_set_ctrl_handler(). (nielsdos) + +- Zip: + . Fixed bug GH-18431 (Registering ZIP progress callback twice doesn't work). + (nielsdos) + . Fixed bug GH-18438 (Handling of empty data and errors in + ZipArchive::addPattern). (nielsdos) diff --git a/data/releases/8.3/8.3.22/release.json b/data/releases/8.3/8.3.22/release.json new file mode 100644 index 0000000000..8eb914300e --- /dev/null +++ b/data/releases/8.3/8.3.22/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.22", + "date": "5 Jun 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.22.tar.gz", + "name": "PHP 8.3.22 (tar.gz)", + "sha256": "8fc57c9df455354679e4a127defb60e1af8718ece4cd4827e500f5c7f2449103" + }, + { + "filename": "php-8.3.22.tar.bz2", + "name": "PHP 8.3.22 (tar.bz2)", + "sha256": "99133e2cda2af37baa79db17d8efd414628f14a02ec75f1418a0aa3f6aa6673b" + }, + { + "filename": "php-8.3.22.tar.xz", + "name": "PHP 8.3.22 (tar.xz)", + "sha256": "66c86889059bd27ccf460590ca48fcaf3261349cc9bdba2023ac6a265beabf36" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.23/announcement.html b/data/releases/8.3/8.3.23/announcement.html new file mode 100644 index 0000000000..3777a0b44b --- /dev/null +++ b/data/releases/8.3/8.3.23/announcement.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/8.3.23/changes.txt b/data/releases/8.3/8.3.23/changes.txt new file mode 100644 index 0000000000..bc2245f606 --- /dev/null +++ b/data/releases/8.3/8.3.23/changes.txt @@ -0,0 +1,72 @@ +- Core: + . Fixed GH-18695 (zend_ast_export() - float number is not preserved). + (Oleg Efimov) + . Do not delete main chunk in zend_gc. (danog, Arnaud) + . Fix compile issues with zend_alloc and some non-default options. (nielsdos) + +- Curl: + . Fix memory leak when setting a list via curl_setopt fails. (nielsdos) + . Fix incorrect OpenSSL version detection. (Peter Kokot) + +- Date: + . Fix leaks with multiple calls to DatePeriod iterator current(). (nielsdos) + +- FPM: + . Fixed GH-18662 (fpm_get_status segfault). (txuna) + +- Hash: + . Fixed bug GH-14551 (PGO build fails with xxhash). (nielsdos) + +- Intl: + . Fix memory leak in intl_datetime_decompose() on failure. (nielsdos) + . Fix memory leak in locale lookup on failure. (nielsdos) + +- ODBC: + . Fix memory leak on php_odbc_fetch_hash() failure. (nielsdos) + +- Opcache: + . Fixed bug GH-18743 (Incompatibility in Inline TLS Assembly on Alpine 3.22). + (nielsdos, Arnaud) + +- OpenSSL: + . Fix memory leak of X509_STORE in php_openssl_setup_verify() on failure. + (nielsdos) + . Fixed bug #74796 (Requests through http proxy set peer name). + (Jakub Zelenka) + +- Phar: + . Add missing filter cleanups on phar failure. (nielsdos) + . Fixed bug GH-18642 (Signed integer overflow in ext/phar fseek). (nielsdos) + +- PHPDBG: + . Fix 'phpdbg --help' segfault on shutdown with USE_ZEND_ALLOC=0. (nielsdos) + +- PDO ODBC: + . Fix memory leak if WideCharToMultiByte() fails. (nielsdos) + +- PGSQL: + . Fix warning not being emitted when failure to cancel a query with + pg_cancel_query(). (Girgias) + . Fixed GHSA-hrwm-9436-5mv3 (pgsql extension does not check for errors during + escaping). (CVE-2025-1735) (Jakub Zelenka) + +- Random: + . Fix reference type confusion and leak in user random engine. + (nielsdos, timwolla) + +- Readline: + . Fix memory leak when calloc() fails in php_readline_completion_cb(). + (nielsdos) + +- Soap: + . Fix memory leaks in php_http.c when call_user_function() fails. (nielsdos) + . Fixed GHSA-453j-q27h-5p8x (NULL Pointer Dereference in PHP SOAP ExtensionAdd commentMore actions + via Large XML Namespace Prefix). (CVE-2025-6491) (Lekssays, nielsdos) + +- Standard: + . Fixed GHSA-3cr5-j632-f35r (Null byte termination in hostnames). + (CVE-2025-1220) (Jakub Zelenka) + +- Tidy: + . Fix memory leak in tidy output handler on error. (nielsdos) + . Fix tidyOptIsReadonly deprecation, using tidyOptGetCategory. (David Carlier) diff --git a/data/releases/8.3/8.3.23/release.json b/data/releases/8.3/8.3.23/release.json new file mode 100644 index 0000000000..488c864be2 --- /dev/null +++ b/data/releases/8.3/8.3.23/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.3.23", + "date": "3 Jul 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.3.23.tar.gz", + "name": "PHP 8.3.23 (tar.gz)", + "sha256": "ac9f3d6e9bcf1d5c4d66d2d954f89852c17fd4c5eba5811a3a8db08f38c908c7" + }, + { + "filename": "php-8.3.23.tar.bz2", + "name": "PHP 8.3.23 (tar.bz2)", + "sha256": "05488f7b967d90a50932f0674dc356e1b795f522f0298b5ce24b680de233c2d4" + }, + { + "filename": "php-8.3.23.tar.xz", + "name": "PHP 8.3.23 (tar.xz)", + "sha256": "08be64700f703bca6ff1284bf1fdaffa37ae1b9734b6559f8350248e8960a6db" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.24/announcement.html b/data/releases/8.3/8.3.24/announcement.html new file mode 100644 index 0000000000..92b1fc91d8 --- /dev/null +++ b/data/releases/8.3/8.3.24/announcement.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/8.3.24/changes.txt b/data/releases/8.3/8.3.24/changes.txt new file mode 100644 index 0000000000..0274df402f --- /dev/null +++ b/data/releases/8.3/8.3.24/changes.txt @@ -0,0 +1,68 @@ +- Calendar: + . Fixed jewishtojd overflow on year argument. (David Carlier) + +- Core: + . Fixed bug GH-18833 (Use after free with weakmaps dependent on destruction + order). (Daniil Gentili) + . Fix OSS-Fuzz #427814456. (nielsdos) + . Fix OSS-Fuzz #428983568 and #428760800. (nielsdos) + . Fixed bug GH-17204 -Wuseless-escape warnings emitted by re2c. (Peter Kokot) + +- Curl: + . Fix memory leaks when returning refcounted value from curl callback. + (nielsdos) + . Remove incorrect string release. (nielsdos) + +- Intl: + . Fix memleak on failure in collator_get_sort_key(). (nielsdos) + +- LDAP: + . Fixed GH-18902 ldap_exop/ldap_exop_sync assert triggered on empty + request OID. (David Carlier) + +- MbString: + . Fixed bug GH-18901 (integer overflow mb_split). (nielsdos) + +- OCI8: + . Fixed bug GH-18873 (OCI_RETURN_LOBS flag causes oci8 to leak memory). + (Saki Takamachi) + +- Opcache: + . Fixed bug GH-18639 (Internal class aliases can break preloading + JIT). + (nielsdos) + . Fixed bug GH-14082 (Segmentation fault on unknown address 0x600000000018 + in ext/opcache/jit/zend_jit.c). (nielsdos) + +- OpenSSL: + . Fixed bug #80770 (It is not possible to get client peer certificate with + stream_socket_server). (Jakub Zelenka) + +- PCNTL: + . Fixed bug GH-18958 (Fatal error during shutdown after pcntl_rfork() or + pcntl_forkx() with zend-max-execution-timers). (Arnaud) + +- Phar: + . Fix stream double free in phar. (nielsdos, dixyes) + . Fix phar crash and file corruption with SplFileObject. (nielsdos) + +- SOAP: + . Fixed bug GH-18990, bug #81029, bug #47314 (SOAP HTTP socket not closing + on object destruction). (nielsdos) + . Fix memory leak when URL parsing fails in redirect. (Girgias) + +- SPL: + . Fixed bug GH-19094 (Attaching class with no Iterator implementation to + MultipleIterator causes crash). (nielsdos) + +- Standard: + . Fix misleading errors in printf(). (nielsdos) + . Fix RCN violations in array functions. (nielsdos) + . Fixed GH-18976 pack() overflow with h/H format and INT_MAX repeater value. + (David Carlier) + +- Streams: + . Fixed GH-13264 (fgets() and stream_get_line() do not return false on filter + fatal error). (Jakub Zelenka) + +- Zip: + . Fix leak when path is too long in ZipArchive::extractTo(). (nielsdos) diff --git a/data/releases/8.3/8.3.24/release.json b/data/releases/8.3/8.3.24/release.json new file mode 100644 index 0000000000..ac286471fe --- /dev/null +++ b/data/releases/8.3/8.3.24/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.24", + "date": "31 Jul 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.24.tar.gz", + "name": "PHP 8.3.24 (tar.gz)", + "sha256": "b827c512b59270c3dc7e19614314fc345022c423e6443c960746310792d0de82" + }, + { + "filename": "php-8.3.24.tar.bz2", + "name": "PHP 8.3.24 (tar.bz2)", + "sha256": "e4e12da490746924624c91406b60b31967e4d7bdeabbab9e8cb5354884ee9964" + }, + { + "filename": "php-8.3.24.tar.xz", + "name": "PHP 8.3.24 (tar.xz)", + "sha256": "388ee5fd111097e97bae439bff46aec4ea27f816d3f0c2cb5490a41410d44251" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.25/announcement.html b/data/releases/8.3/8.3.25/announcement.html new file mode 100644 index 0000000000..7f7b455429 --- /dev/null +++ b/data/releases/8.3/8.3.25/announcement.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/8.3.25/changes.txt b/data/releases/8.3/8.3.25/changes.txt new file mode 100644 index 0000000000..b90304c47a --- /dev/null +++ b/data/releases/8.3/8.3.25/changes.txt @@ -0,0 +1,85 @@ +- Core: + . Fixed GH-19169 build issue with C++17 and ZEND_STATIC_ASSERT macro. + (psumbera) + . Fixed bug GH-18581 (Coerce numeric string keys from iterators when argument + unpacking). (ilutov) + . Fixed OSS-Fuzz #434346548 (Failed assertion with throwing __toString in + binary const expr). (ilutov) + . Fixed bug GH-19305 (Operands may be being released during comparison). + (Arnaud) + . Fixed bug GH-19303 (Unpacking empty packed array into uninitialized array + causes assertion failure). (nielsdos) + . Fixed bug GH-19306 (Generator can be resumed while fetching next value from + delegated Generator). (Arnaud) + . Fixed bug GH-19326 (Calling Generator::throw() on a running generator with + a non-Generator delegate crashes). (Arnaud) + . Fixed bug GH-18736 (Circumvented type check with return by ref + finally). + (ilutov) + . Fixed zend call stack size for macOs/arm64. (David Carlier) + . Fixed bug GH-19065 (Long match statement can segfault compiler during + recursive SSA renaming). (nielsdos, Arnaud) + +- Calendar: + . Fixed bug GH-19371 (integer overflow in calendar.c). (nielsdos) + +- FTP: + . Fix theoretical issues with hrtime() not being available. (nielsdos) + +- GD: + . Fix incorrect comparison with result of php_stream_can_cast(). (Girgias) + +- Hash: + . Fix crash on clone failure. (nielsdos) + +- Intl: + . Fixed GH-19261: msgfmt_parse_message leaks on message creation failure. + (David Carlier) + . Fix return value on failure for resourcebundle count handler. (Girgias) + +- LDAP: + . Fixed bug GH-18529 (additional inheriting of TLS int options). + (Jakub Zelenka) + +- LibXML: + . Fixed bug GH-19098 (libxml<2.13 segmentation fault caused by + php_libxml_node_free). (nielsdos) + +- MbString: + . Fixed bug GH-19397 (mb_list_encodings() can cause crashes on shutdown). + (nielsdos) + +- Opcache: + . Reset global pointers to prevent use-after-free in zend_jit_status(). + (Florian Engelhardt) + +- OpenSSL: + . Fixed bug GH-18986 (OpenSSL backend: incorrect RAND_{load,write}_file() + return value check). (nielsdos, botovq) + . Fix error return check of EVP_CIPHER_CTX_ctrl(). (nielsdos) + . Fixed bug GH-19428 (openssl_pkey_derive segfaults for DH derive with low + key_length param). (Jakub Zelenka) + +- PDO Pgsql: + . Fixed dangling pointer access on _pdo_pgsql_trim_message helper. + (dixyes) + +- Readline: + . Fixed bug GH-19250 and bug #51360 (Invalid conftest for rl_pending_input). + (petk, nielsdos) + +- SOAP: + . Fixed bug GH-18640 (heap-use-after-free ext/soap/php_encoding.c:299:32 + in soap_check_zval_ref). (nielsdos) + +- Sockets: + . Fix some potential crashes on incorrect argument value. (nielsdos) + +- Standard: + . Fixed OSS Fuzz #433303828 (Leak in failed unserialize() with opcache). + (ilutov) + . Fix theoretical issues with hrtime() not being available. (nielsdos) + . Fixed bug GH-19300 (Nested array_multisort invocation with error breaks). + (nielsdos) + +- Windows: + . Free opened_path when opened_path_len >= MAXPATHLEN. (dixyes) diff --git a/data/releases/8.3/8.3.25/release.json b/data/releases/8.3/8.3.25/release.json new file mode 100644 index 0000000000..e830c78b54 --- /dev/null +++ b/data/releases/8.3/8.3.25/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.25", + "date": "28 Aug 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.25.tar.gz", + "name": "PHP 8.3.25 (tar.gz)", + "sha256": "86711e98eccffb637dc319f0cdcde9188c1710633910beb1a3cbb3ae5ecc2e05" + }, + { + "filename": "php-8.3.25.tar.bz2", + "name": "PHP 8.3.25 (tar.bz2)", + "sha256": "06e54791e11192f089e4d20c716f25bddcebdde951b570b555edfb5988a8b71a" + }, + { + "filename": "php-8.3.25.tar.xz", + "name": "PHP 8.3.25 (tar.xz)", + "sha256": "187b61bb795015adacf53f8c55b44414a63777ec19a776b75fb88614506c0d37" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.26/announcement.html b/data/releases/8.3/8.3.26/announcement.html new file mode 100644 index 0000000000..70ed680e25 --- /dev/null +++ b/data/releases/8.3/8.3.26/announcement.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/8.3.26/changes.txt b/data/releases/8.3/8.3.26/changes.txt new file mode 100644 index 0000000000..a6e029fab2 --- /dev/null +++ b/data/releases/8.3/8.3.26/changes.txt @@ -0,0 +1,68 @@ +- Core: + . Fixed bug GH-18850 (Repeated inclusion of file with __halt_compiler() + triggers "Constant already defined" warning). (ilutov) + . Partially fixed bug GH-19542 (Scanning of string literals >=2GB will fail + due to signed int overflow). (ilutov) + . Fixed bug GH-19544 (GC treats ZEND_WEAKREF_TAG_MAP references as WeakMap + references). (Arnaud, timwolla) + . Fixed bug GH-19613 (Stale array iterator pointer). (ilutov) + . Fixed bug GH-19679 (zend_ssa_range_widening may fail to converge). (Arnaud) + . Fixed bug GH-19681 (PHP_EXPAND_PATH broken with bash 5.3.0). (Remi) + . Fixed bug GH-19720 (Assertion failure when error handler throws when + accessing a deprecated constant). (nielsdos) + +- CLI: + . Fixed bug GH-19461 (Improve error message on listening error with IPv6 + address). (alexandre-daubois) + +- Date: + . Fixed date_sunrise() and date_sunset() with partial-hour UTC offset. + (ilutov) + +- DOM: + . Fixed bug GH-19612 (Mitigate libxml2 tree dictionary bug). (nielsdos) + +- FPM: + . Fixed failed debug assertion when php_admin_value setting fails. (ilutov) + +- GD: + . Fixed bug GH-19579 (imagefilledellipse underflow on width argument). + (David Carlier) + +- Intl: + . Fixed bug GH-11952 (Fix locale strings canonicalization for IntlDateFormatter + and NumberFormatter). (alexandre-daubois) + +- OpenSSL: + . Fixed bug GH-19245 (Success error message on TLS stream accept failure). + (Jakub Zelenka) + +- PGSQL: + . Fixed bug GH-19485 (potential use after free when using persistent pgsql + connections). (Mark Karpeles) + +- Phar: + . Fixed memory leaks when verifying OpenSSL signature. (Girgias) + . Fix memory leak in phar tar temporary file error handling code. (nielsdos) + . Fix metadata leak when phar convert logic fails. (nielsdos) + . Fix memory leak on failure in phar_convert_to_other(). (nielsdos) + . Fixed bug GH-19752 (Phar decompression with invalid extension + can cause UAF). (nielsdos) + +- Standard: + . Fixed bug GH-16649 (UAF during array_splice). (alexandre-daubois) + . Fixed bug GH-19577 (Avoid integer overflow when using a small offset + and PHP_INT_MAX with LimitIterator). (alexandre-daubois) + +- Streams: + . Remove incorrect call to zval_ptr_dtor() in user_wrapper_metadata(). + (nielsdos) + . Fix OSS-Fuzz #385993744. (nielsdos) + +- Tidy: + . Fixed GH-19021 build issue with libtidy in regard of tidyOptIsReadonly + deprecation and TidyInternalCategory being available later than + tidyOptGetCategory. (arjendekorte) + +- Zip: + . Fix memory leak in zip when encountering empty glob result. (nielsdos) diff --git a/data/releases/8.3/8.3.26/release.json b/data/releases/8.3/8.3.26/release.json new file mode 100644 index 0000000000..a377942090 --- /dev/null +++ b/data/releases/8.3/8.3.26/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.26", + "date": "25 Sep 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.26.tar.gz", + "name": "PHP 8.3.26 (tar.gz)", + "sha256": "c96dac9745db9216a299007d144b593f4e4e7d95b4618b2a9591e5e5585200d5" + }, + { + "filename": "php-8.3.26.tar.bz2", + "name": "PHP 8.3.26 (tar.bz2)", + "sha256": "721b63d5349f131f5097537b3be6ba6801e2d8e6faba1f1f2ea95b4fd62e7525" + }, + { + "filename": "php-8.3.26.tar.xz", + "name": "PHP 8.3.26 (tar.xz)", + "sha256": "2f522eefa02c400c94610d07f25c4fd4c771f95e4a1f55102332ccb40663cbd2" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.27/announcement.html b/data/releases/8.3/8.3.27/announcement.html new file mode 100644 index 0000000000..d590b430c2 --- /dev/null +++ b/data/releases/8.3/8.3.27/announcement.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/8.3.27/changes.txt b/data/releases/8.3/8.3.27/changes.txt new file mode 100644 index 0000000000..c512cab637 --- /dev/null +++ b/data/releases/8.3/8.3.27/changes.txt @@ -0,0 +1,83 @@ +- Core: + . Fixed bug GH-19765 (object_properties_load() bypasses readonly property + checks). (timwolla) + . Fixed hard_timeout with --enable-zend-max-execution-timers. (Appla) + . Fixed bug GH-19792 (SCCP causes UAF for return value if both warning and + exception are triggered). (nielsdos) + . Fixed bug GH-19653 (Closure named argument unpacking between temporary + closures can cause a crash). (nielsdos, Arnaud, Bob) + . Fixed bug GH-19839 (Incorrect HASH_FLAG_HAS_EMPTY_IND flag on userland + array). (ilutov) + . Fixed bug GH-19480 (error_log php.ini cannot be unset when open_basedir is + configured). (nielsdos) + . Fixed bug GH-20002 (Broken build on *BSD with MSAN). (outtersg) + +- CLI: + . Fix useless "Failed to poll event" error logs due to EAGAIN in CLI server + with PHP_CLI_SERVER_WORKERS. (leotaku) + +- Curl: + . Fix cloning of CURLOPT_POSTFIELDS when using the clone operator instead + of the curl_copy_handle() function to clone a CurlHandle. (timwolla) + . Fix curl build and test failures with version 8.16. + (nielsdos, ilutov, Jakub Zelenka) + +- Date: + . Fixed GH-17159: "P" format for ::createFromFormat swallows string literals. + (nielsdos) + +- DBA: + . Fixed GH-19885 (dba_fetch() overflow on skip argument). (David Carlier) + +- GD: + . Fixed GH-19955 (imagefttext() memory leak). (David Carlier) + +- MySQLnd: + . Fixed bug #67563 (mysqli compiled with mysqlnd does not take ipv6 adress + as parameter). (nielsdos) + +- Phar: + . Fix memory leak and invalid continuation after tar header writing fails. + (nielsdos) + . Fix memory leaks when creating temp file fails when applying zip signature. + (nielsdos) + +- SimpleXML: + . Fixed bug GH-19988 (zend_string_init with NULL pointer in simplexml (UB)). + (nielsdos) + +- Soap: + . Fixed bug GH-19784 (SoapServer memory leak). (nielsdos) + . Fixed bug GH-20011 (Array of SoapVar of unknown type causes crash). + (nielsdos) + +- Standard: + . Fixed bug GH-12265 (Cloning an object breaks serialization recursion). + (nielsdos) + . Fixed bug GH-19701 (Serialize/deserialize loses some data). (nielsdos) + . Fixed bug GH-19801 (leaks in var_dump() and debug_zval_dump()). + (alexandre-daubois) + . Fixed bug GH-20043 (array_unique assertion failure with RC1 array + causing an exception on sort). (nielsdos) + . Fixed bug GH-19926 (reset internal pointer earlier while splicing array + while COW violation flag is still set). (alexandre-daubois) + . Fixed bug GH-19570 (unable to fseek in /dev/zero and /dev/null). + (nielsdos, divinity76) + +- Streams: + . Fixed bug GH-19248 (Use strerror_r instead of strerror in main). + (Jakub Zelenka) + . Fixed bug GH-17345 (Bug #35916 was not completely fixed). (nielsdos) + . Fixed bug GH-19705 (segmentation when attempting to flush on non seekable + stream. (bukka/David Carlier) + +- XMLReader: + . Fixed bug GH-20009 (XMLReader leak on RelaxNG schema failure). (nielsdos) + +- Zip: + . Fixed bug GH-19688 (Remove pattern overflow in zip addGlob()). (nielsdos) + . Fixed bug GH-19932 (Memory leak in zip setEncryptionName()/setEncryptionIndex()). + (David Carlier) + +- Zlib: + . Fixed bug GH-19922 (Double free on gzopen). (David Carlier) diff --git a/data/releases/8.3/8.3.27/release.json b/data/releases/8.3/8.3.27/release.json new file mode 100644 index 0000000000..969015eb20 --- /dev/null +++ b/data/releases/8.3/8.3.27/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.27", + "date": "23 Oct 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.27.tar.gz", + "name": "PHP 8.3.27 (tar.gz)", + "sha256": "bf189e30f81e11526690b1c82e4fb8b286b607cd7afaf4bf27a39003d8f3246f" + }, + { + "filename": "php-8.3.27.tar.bz2", + "name": "PHP 8.3.27 (tar.bz2)", + "sha256": "a1dd2b51b437c0a6337e019004778a8ef253db4e9aff7d48d88798ca91b7e2a4" + }, + { + "filename": "php-8.3.27.tar.xz", + "name": "PHP 8.3.27 (tar.xz)", + "sha256": "c15a09a9d199437144ecfef7d712ec4ca5c6820cf34acc24cc8489dd0cee41ba" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.28/announcement.html b/data/releases/8.3/8.3.28/announcement.html new file mode 100644 index 0000000000..e7ff75db53 --- /dev/null +++ b/data/releases/8.3/8.3.28/announcement.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/8.3.28/changes.txt b/data/releases/8.3/8.3.28/changes.txt new file mode 100644 index 0000000000..410cb8b2ec --- /dev/null +++ b/data/releases/8.3/8.3.28/changes.txt @@ -0,0 +1,101 @@ +- Core: + . Fixed bug GH-19934 (CGI with auto_globals_jit=0 causes uouv). (ilutov) + . Fixed bug GH-20073 (Assertion failure in WeakMap offset operations on + reference). (nielsdos) + . Fixed bug GH-19844 (Don't bail when closing resources on shutdown). (ilutov) + . Fixed bug GH-20177 (Accessing overridden private property in + get_object_vars() triggers assertion error). (ilutov) + . Fixed bug GH-20183 (Stale EG(opline_before_exception) pointer through eval). + (ilutov) + +- DOM: + . Partially fixed bug GH-16317 (DOM classes do not allow + __debugInfo() overrides to work). (nielsdos) + +- Exif: + . Fix possible memory leak when tag is empty. (nielsdos) + +- FPM: + . Fixed bug GH-19974 (fpm_status_export_to_zval segfault for parallel + execution). (Jakub Zelenka, txuna) + +- FTP: + . Fixed bug GH-20240 (FTP with SSL: ftp_fput(): Connection timed out on + successful writes). (nielsdos) + +- GD: + . Fixed bug GH-20070 (Return type violation in imagefilter when an invalid + filter is provided). (Girgias) + +- Intl: + . Fix memory leak on error in locale_filter_matches(). (nielsdos) + +- LibXML: + . Fix not thread safe schema/relaxng calls. (SpencerMalone, nielsdos) + +- MySQLnd: + . Fixed bug GH-8978 (SSL certificate verification fails (port doubled)). + (nielsdos) + . Fixed bug GH-20122 (getColumnMeta() for JSON-column in MySQL). (nielsdos) + +- Opcache: + . Fixed bug GH-20081 (access to uninitialized vars in preload_load()). + (Arnaud) + . Fixed bug GH-20121 (JIT broken in ZTS builds on MacOS 15). + (Arnaud, Shivam Mathur) + +- PgSql: + . Fix memory leak when first string conversion fails. (nielsdos) + . Fix segfaults when attempting to fetch row into a non-instantiable class + name. (Girgias, nielsdos) + +- Phar: + . Fix memory leak of argument in webPhar. (nielsdos) + . Fix memory leak when setAlias() fails. (nielsdos) + . Fix a bunch of memory leaks in phar_parse_zipfile() error handling. + (nielsdos) + . Fix file descriptor/memory leak when opening central fp fails. (nielsdos) + . Fix memleak+UAF when opening temp stream in buildFromDirectory() fails. + (nielsdos) + . Fix potential buffer length truncation due to usage of type int instead + of type size_t. (Girgias) + . Fix memory leak when openssl polyfill returns garbage. (nielsdos) + . Fix file descriptor leak in phar_zip_flush() on failure. (nielsdos) + . Fix memory leak when opening temp file fails while trying to open + gzip-compressed archive. (nielsdos) + . Fixed bug GH-20302 (Freeing a phar alias may invalidate + PharFileInfo objects). (nielsdos) + +- Random: + . Fix Randomizer::__serialize() w.r.t. INDIRECTs. (nielsdos) + +- SimpleXML: + . Partially fixed bug GH-16317 (SimpleXML does not allow __debugInfo() overrides + to work). (nielsdos) + +- Standard: + . Fix shm corruption with coercion in options of unserialize(). (nielsdos) + +- Streams: + . Fixed bug GH-19798: XP_SOCKET XP_SSL (Socket stream modules): Incorrect + condition for Win32/Win64. (Jakub Zelenka) + . Fixed bug GH-20370 (User stream filters could violate typed property + constraints). (alexandre-daubois) + +- Tidy: + . Fixed GH-19021 (improved tidyOptGetCategory detection). + (arjendekorte, David Carlier, Peter Kokot) + . Fix UAF in tidy when tidySetErrorBuffer() fails. (nielsdos) + +- XMLReader: + . Fix arginfo/zpp violations when LIBXML_SCHEMAS_ENABLED is not available. + (nielsdos) + +- Windows: + . Fix GH-19722 (_get_osfhandle asserts in debug mode when given a socket). + (dktapps) + +- Zip: + . Fix memory leak when passing enc_method/enc_password is passed as option + for ZipArchive::addGlob()/addPattern() and with consecutive calls. + (David Carlier) diff --git a/data/releases/8.3/8.3.28/release.json b/data/releases/8.3/8.3.28/release.json new file mode 100644 index 0000000000..a9ba1b1a57 --- /dev/null +++ b/data/releases/8.3/8.3.28/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.28", + "date": "20 Nov 2025", + "tags": [], + "source": [ + { + "filename": "php-8.3.28.tar.gz", + "name": "PHP 8.3.28 (tar.gz)", + "sha256": "2f7dda35bbef2842ec61510aaefe52c78361a61f9cfabd99a7789204d6383d9f" + }, + { + "filename": "php-8.3.28.tar.bz2", + "name": "PHP 8.3.28 (tar.bz2)", + "sha256": "d5b385ee351ec463c85d47eeb53b51156f3483eaf3ff43a7ad5080c2b6d4c557" + }, + { + "filename": "php-8.3.28.tar.xz", + "name": "PHP 8.3.28 (tar.xz)", + "sha256": "25e3860f30198a386242891c0bf9e2955931f7b666b96c3e3103d36a2a322326" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.29/announcement.html b/data/releases/8.3/8.3.29/announcement.html new file mode 100644 index 0000000000..65293df5e3 --- /dev/null +++ b/data/releases/8.3/8.3.29/announcement.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/8.3.29/changes.txt b/data/releases/8.3/8.3.29/changes.txt new file mode 100644 index 0000000000..087d14519e --- /dev/null +++ b/data/releases/8.3/8.3.29/changes.txt @@ -0,0 +1,99 @@ +- Core: + . Sync all boost.context files with release 1.86.0. (mvorisek) + . Fixed bug GH-20435 (SensitiveParameter doesn't work for named argument + passing to variadic parameter). (ndossche) + . Fixed bug GH-20286 (use-after-destroy during userland stream_close()). + (ndossche, David Carlier) + +- Bz2: + . Fix assertion failures resulting in crashes with stream filter + object parameters. (ndossche) + +- Date: + . Fix crashes when trying to instantiate uninstantiable classes via date + static constructors. (ndossche) + +- DOM: + . Fix missing NUL byte check on C14NFile(). (ndossche) + +- Fibers: + . Fixed bug GH-20483 (ASAN stack overflow with fiber.stack_size INI + small value). (David Carlier) + +- FTP: + . Fixed bug GH-20601 (ftp_connect overflow on timeout). (David Carlier) + +- GD: + . Fixed bug GH-20511 (imagegammacorrect out of range input/output values). + (David Carlier) + . Fixed bug GH-20602 (imagescale overflow with large height values). + (David Carlier) + +- Intl: + . Fixed bug GH-20426 (Spoofchecker::setRestrictionLevel() error message + suggests missing constants). (DanielEScherzer) + +- LibXML: + . Fix some deprecations on newer libxml versions regarding input + buffer/parser handling. (ndossche) + +- MbString: + . Fixed bug GH-20491 (SLES15 compile error with mbstring oniguruma). + (ndossche) + . Fixed bug GH-20492 (mbstring compile warning due to non-strings). + (ndossche) + +- mysqli: + . Make mysqli_begin_transaction() report errors properly. (Kamil Tekiela) + +- MySQLnd: + . Fixed bug GH-20528 (Regression breaks mysql connexion using an IPv6 address + enclosed in square brackets). (Remi) + +- Opcache: + . Fixed bug GH-20329 (opcache.file_cache broken with full interned string + buffer). (Arnaud) + +- PDO: + . Fixed GHSA-8xr5-qppj-gvwj (PDO quoting result null deref). (CVE-2025-14180) + (Jakub Zelenka) + +- Phar: + . Fixed bug GH-20442 (Phar does not respect case-insensitiveness of + __halt_compiler() when reading stub). (ndossche, TimWolla) + . Fix broken return value of fflush() for phar file entries. (ndossche) + . Fix assertion failure when fseeking a phar file out of bounds. (ndossche) + +- PHPDBG: + . Fixed ZPP type violation in phpdbg_get_executable() and phpdbg_end_oplog(). + (Girgias) + +- SPL: + . Fixed bug GH-20614 (SplFixedArray incorrectly handles references + in deserialization). (ndossche) + +- Standard: + . Fix memory leak in array_diff() with custom type checks. (ndossche) + . Fixed bug GH-20583 (Stack overflow in http_build_query + via deep structures). (ndossche) + . Fixed GHSA-www2-q4fc-65wf (Null byte termination in dns_get_record()). + (ndossche) + . Fixed GHSA-h96m-rvf9-jgm2 (Heap buffer overflow in array_merge()). + (CVE-2025-14178) (ndossche) + . Fixed GHSA-3237-qqm7-mfv7 (Information Leak of Memory in getimagesize). + (CVE-2025-14177) (ndossche) + +- Tidy: + . Fixed bug GH-20374 (PHP with tidy and custom-tags). (ndossche) + +- XML: + . Fixed bug GH-20439 (xml_set_default_handler() does not properly handle + special characters in attributes when passing data to callback). (ndossche) + +- Zip: + . Fix crash in property existence test. (ndossche) + . Don't truncate return value of zip_fread() with user sizes. (ndossche) + +- Zlib: + . Fix assertion failures resulting in crashes with stream filter + object parameters. (ndossche) diff --git a/data/releases/8.3/8.3.29/release.json b/data/releases/8.3/8.3.29/release.json new file mode 100644 index 0000000000..32d13c7e25 --- /dev/null +++ b/data/releases/8.3/8.3.29/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.3.29", + "date": "18 Dec 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.3.29.tar.gz", + "name": "PHP 8.3.29 (tar.gz)", + "sha256": "8565fa8733c640b60da5ab4944bf2d4081f859915b39e29b3af26cf23443ed97" + }, + { + "filename": "php-8.3.29.tar.bz2", + "name": "PHP 8.3.29 (tar.bz2)", + "sha256": "c7337212e655325d499ea8108fa76f69ddde2fff7cb0fad36aa63eed540cb8a5" + }, + { + "filename": "php-8.3.29.tar.xz", + "name": "PHP 8.3.29 (tar.xz)", + "sha256": "f7950ca034b15a78f5de9f1b22f4d9bad1dd497114d175cb1672a4ca78077af5" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.3/announcement.html b/data/releases/8.3/8.3.3/announcement.html new file mode 100644 index 0000000000..c21092e2af --- /dev/null +++ b/data/releases/8.3/8.3.3/announcement.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/8.3.3/changes.txt b/data/releases/8.3/8.3.3/changes.txt new file mode 100644 index 0000000000..d0faf971ac --- /dev/null +++ b/data/releases/8.3/8.3.3/changes.txt @@ -0,0 +1,61 @@ +- Core: + . Fixed timer leak in zend-max-execution-timers builds. (withinboredom) + . Fixed bug GH-12349 (linking failure on ARM with mold). (Jan Palus) + . Fixed bug GH-13097 (Anonymous class reference in trigger_error / thrown + Exception). (nielsdos) + . Fixed bug GH-13177 (PHP 8.3.2: final private constructor not allowed + when used in trait). (nielsdos) + . Fixed bug GH-13215 (GCC 14 build failure). (Remi) + +- Curl: + . Fix missing error check in curl_multi_init(). (divinity76) + +- FPM: + . Fixed bug GH-12996 (Incorrect SCRIPT_NAME with Apache ProxyPassMatch when + plus in path). (Jakub Zelenka) + +- GD: + . Fixed bug GH-10344 (imagettfbbox(): Could not find/open font UNC path). + (nielsdos) + . Fixed bug GH-10614 (imagerotate will turn the picture all black, when + rotated 90). (nielsdos) + +- LibXML: + . Fix crashes with entity references and predefined entities. (nielsdos) + +- MySQLnd: + . Fixed bug GH-12107 (When running a stored procedure (that returns a result + set) twice, PHP crashes). (nielsdos) + +- Opcache: + . Fixed bug GH-13145 (strtok() is not comptime). (ilutov) + . Fixed type inference of range(). (ilutov) + . Fixed bug GH-13232 (Segmentation fault will be reported when JIT is off but + JIT_debug is still on). (nielsdos) + +- OpenSSL: + . Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set. + (David Carlier). + +- PDO_Firebird: + . Fix GH-13119 (Changed to convert float and double values into strings using + `H` format). (SakiTakamachi) + +- Phar: + . Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos) + . Fixed bug GH-13037 (PharData incorrectly extracts zip file). (nielsdos) + +- Random: + . Fixed bug GH-13138 (Randomizer::pickArrayKeys() does not detect broken + engines). (timwolla) + +- Session: + . Fixed bug GH-12504 (Corrupted session written when there's a fatal error + in autoloader). (nielsdos) + +- Standard: + . Fixed bug GH-13094 (range(9.9, '0') causes segmentation fault). (nielsdos) + +- Streams: + . Fixed bug GH-13071 (Copying large files using mmap-able source streams may + exhaust available memory and fail). (nielsdos) diff --git a/data/releases/8.3/8.3.3/release.json b/data/releases/8.3/8.3.3/release.json new file mode 100644 index 0000000000..564e192047 --- /dev/null +++ b/data/releases/8.3/8.3.3/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.3", + "date": "15 Feb 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.3.tar.gz", + "name": "PHP 8.3.3 (tar.gz)", + "sha256": "61285ae17a93d172c9f2ebfe4280058d05bda17cadab705ca5b51ba3e6f3a5ac" + }, + { + "filename": "php-8.3.3.tar.bz2", + "name": "PHP 8.3.3 (tar.bz2)", + "sha256": "aafb613ba79594a23fe722f8e90ad473300610bf80e74b8aa52da9cac2dc4e2a" + }, + { + "filename": "php-8.3.3.tar.xz", + "name": "PHP 8.3.3 (tar.xz)", + "sha256": "b0a996276fe21fe9ca8f993314c8bc02750f464c7b0343f056fb0894a8dfa9d1" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.30/announcement.html b/data/releases/8.3/8.3.30/announcement.html new file mode 100644 index 0000000000..0e67509302 --- /dev/null +++ b/data/releases/8.3/8.3.30/announcement.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/8.3.30/changes.txt b/data/releases/8.3/8.3.30/changes.txt new file mode 100644 index 0000000000..ebdd876813 --- /dev/null +++ b/data/releases/8.3/8.3.30/changes.txt @@ -0,0 +1,54 @@ +- Core: + . Fix OSS-Fuzz #465488618 (Wrong assumptions when dumping function signature + with dynamic class const lookup default argument). (ilutov) + . Fixed bug GH-20695 (Assertion failure in normalize_value() when parsing + malformed INI input via parse_ini_string()). (ndossche) + . Fixed bug GH-20714 (Uncatchable exception thrown in generator). (ilutov) + . Fixed bug GH-20352 (UAF in php_output_handler_free via re-entrant + ob_start() during error deactivation). (ndossche) + +- Bz2: + . Fixed bug GH-20620 (bzcompress overflow on large source size). + (David Carlier) + +- DOM: + . Fixed bug GH-20722 (Null pointer dereference in DOM namespace node cloning + via clone on malformed objects). (ndossche) + +- GD: + . Fixed bug GH-20622 (imagestring/imagestringup overflow). (David Carlier) + +- Intl: + . Fix leak in umsg_format_helper(). (ndossche) + +- LDAP: + . Fix memory leak in ldap_set_options(). (ndossche) + +- Mbstring: + . Fixed bug GH-20674 (mb_decode_mimeheader does not handle separator). + (Yuya Hamada) + +- Phar: + . Fixed bug GH-20732 (Phar::LoadPhar undefined behavior when reading fails). + (ndossche) + . Fix SplFileInfo::openFile() in write mode. (ndossche) + . Fix build on legacy OpenSSL 1.1.0 systems. (Giovanni Giacobbi) + +- POSIX: + . Fixed crash on posix groups to php array creation on macos. + (David Carlier) + +- SPL: + . Fixed bug GH-20678 (resource created by GlobIterator crashes with fclose()). + (David Carlier) + +- Sqlite3: + . Fixed bug GH-20699 (SQLite3Result fetchArray return array|false, + null returned). (ndossche, plusminmax) + +- Standard: + . Fix error check for proc_open() command. (ndossche) + . Fixed bug GH-20582 (Heap Buffer Overflow in iptcembed). (ndossche) + +- Zlib: + . Fix OOB gzseek() causing assertion failure. (ndossche) diff --git a/data/releases/8.3/8.3.30/release.json b/data/releases/8.3/8.3.30/release.json new file mode 100644 index 0000000000..0a0ba2ba7f --- /dev/null +++ b/data/releases/8.3/8.3.30/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.30", + "date": "15 Jan 2026", + "tags": [], + "source": [ + { + "filename": "php-8.3.30.tar.gz", + "name": "PHP 8.3.30 (tar.gz)", + "sha256": "e587dc95fb7f62730299fa7b36b6e4f91e6708aaefa2fff68a0098d320c16386" + }, + { + "filename": "php-8.3.30.tar.bz2", + "name": "PHP 8.3.30 (tar.bz2)", + "sha256": "800b7b6ed50b73c8ee7844ee5f2f7cc612faa7875a0aa7c4529e8ed5866a5030" + }, + { + "filename": "php-8.3.30.tar.xz", + "name": "PHP 8.3.30 (tar.xz)", + "sha256": "67f084d36852daab6809561a7c8023d130ca07fc6af8fb040684dd1414934d48" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.31/announcement.html b/data/releases/8.3/8.3.31/announcement.html new file mode 100644 index 0000000000..a3bd70602e --- /dev/null +++ b/data/releases/8.3/8.3.31/announcement.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/8.3.31/changes.txt b/data/releases/8.3/8.3.31/changes.txt new file mode 100644 index 0000000000..3a03912b7c --- /dev/null +++ b/data/releases/8.3/8.3.31/changes.txt @@ -0,0 +1,32 @@ +- Curl: + . Add support for brotli and zstd on Windows. (Shivam Mathur) + +- FPM: + . Fixed GHSA-7qg2-v9fj-4mwv (XSS within status endpoint). (CVE-2026-6735) + (Jakub Zelenka) + +- MBString: + . Fixed GHSA-wm6j-2649-pv75 (Null pointer dereference in + php_mb_check_encoding() via mb_ereg_search_init()). (CVE-2026-7259) + (vi3tL0u1s) + +- OpenSSL: + . Fix compatibility issues with OpenSSL 4.0. (jordikroon, Remi) + +- PDO_Firebird: + . Fixed GHSA-w476-322c-wpvm (SQL injection via NUL bytes in quoted strings). + (CVE-2025-14179) (SakiTakamachi) + +- SOAP: + . Fixed GHSA-85c2-q967-79q5 (Stale SOAP_GLOBAL(ref_map) pointer with Apache + Map). (CVE-2026-6722) (ilutov) + . Fixed GHSA-m33r-qmcv-p97q (Use-after-free after header parsing failure with + SOAP_PERSISTENCE_SESSION). (CVE-2026-7261) (ilutov) + . Fixed GHSA-hmxp-6pc4-f3vv (Broken Apache map value NULL check). + (CVE-2026-7262) (ilutov) + +- Standard: + . Fixed GHSA-96wq-48vp-hh57 (Signed integer overflow of char array offset). + (CVE-2026-7568) (TimWolla) + . Fixed GHSA-m8rr-4c36-8gq4 (Consistently pass unsigned char to ctype.h + functions). (CVE-2026-7258) (ilutov) diff --git a/data/releases/8.3/8.3.31/release.json b/data/releases/8.3/8.3.31/release.json new file mode 100644 index 0000000000..6bf3a78376 --- /dev/null +++ b/data/releases/8.3/8.3.31/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.3.31", + "date": "07 May 2026", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.3.31.tar.gz", + "name": "PHP 8.3.31 (tar.gz)", + "sha256": "4e7baaf0a690e954a20e7ced3dd633ce8cb8094e2b6b612a55e703ecbbdcbf4f" + }, + { + "filename": "php-8.3.31.tar.bz2", + "name": "PHP 8.3.31 (tar.bz2)", + "sha256": "e6986b1fd37eb25402127fe4a7278a3e03b7f9025bb7a4bd292a271bdf930fb9" + }, + { + "filename": "php-8.3.31.tar.xz", + "name": "PHP 8.3.31 (tar.xz)", + "sha256": "66410cee07f4b2baeb0843140bb2a2b52ef930b5cf9b3d6e6d158b33aae8fa37" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.4/announcement.html b/data/releases/8.3/8.3.4/announcement.html new file mode 100644 index 0000000000..f4fa42b691 --- /dev/null +++ b/data/releases/8.3/8.3.4/announcement.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/8.3.4/changes.txt b/data/releases/8.3/8.3.4/changes.txt new file mode 100644 index 0000000000..dcce5a6260 --- /dev/null +++ b/data/releases/8.3/8.3.4/changes.txt @@ -0,0 +1,48 @@ +- Core: + . Fix ZTS persistent resource crashes on shutdown. (nielsdos) + +- Curl: + . Fix failing tests due to string changes in libcurl 8.6.0. (Ayesh) + +- DOM: + . Fix unlikely memory leak in case of namespace removal with extremely deep + trees. (nielsdos) + . Fix reference access in dimensions for DOMNodeList and DOMNodeMap. + (nielsdos) + +- Fileinfo: + . Fixed bug GH-13344 (finfo::buffer(): Failed identify data 0:(null), + backport). (nielsdos) + +- FPM: + . Fixed bug #75712 (getenv in php-fpm should not read $_ENV, $_SERVER). + (Jakub Zelenka) + +- GD: + . Fixed bug GH-12019 (detection of image formats in system gd library). + (Michael Orlitzky) + +- MySQLnd: + . Fixed bug GH-11950 ([mysqlnd] Fixed not to set CR_MALFORMED_PACKET to error + if CR_SERVER_GONE_ERROR is already set). (Saki Takamachi) + +- PDO: + . Fix various PDORow bugs. (Girgias) + +- PGSQL: + . Fixed bug GH-13354 (pg_execute/pg_send_query_params/pg_send_execute + with null value passed by reference). (George Barbarosie) + +- SPL: + . Fixed bug GH-13531 (Unable to resize SplfixedArray after being unserialized + in PHP 8.2.15). (nielsdos) + +- Standard: + . Fixed bug GH-13279 (Instable array during in-place modification in uksort). + (ilutov) + . Fixed array key as hash to string (case insensitive) comparison typo + for the second operand buffer size (albeit unused for now). (A. Slepykh) + +- XML: + . Fixed bug GH-13517 (Multiple test failures when building with + --with-expat). (nielsdos) diff --git a/data/releases/8.3/8.3.4/release.json b/data/releases/8.3/8.3.4/release.json new file mode 100644 index 0000000000..16b0a0f5d7 --- /dev/null +++ b/data/releases/8.3/8.3.4/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.4", + "date": "14 Mar 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.4.tar.gz", + "name": "PHP 8.3.4 (tar.gz)", + "sha256": "0e2801e47fb1b92d2743204fcf650ce2fcad1a13ef7a44fe05738101a383e4a2" + }, + { + "filename": "php-8.3.4.tar.bz2", + "name": "PHP 8.3.4 (tar.bz2)", + "sha256": "3c5caf18e0c0a243aaec913a39ecb092043195adde4c3fc42e945da5b9277695" + }, + { + "filename": "php-8.3.4.tar.xz", + "name": "PHP 8.3.4 (tar.xz)", + "sha256": "39a337036a546e5c28aea76cf424ac172db5156bd8a8fd85252e389409a5ba63" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.6/announcement.html b/data/releases/8.3/8.3.6/announcement.html new file mode 100644 index 0000000000..dc59f3277f --- /dev/null +++ b/data/releases/8.3/8.3.6/announcement.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/8.3.6/changes.txt b/data/releases/8.3/8.3.6/changes.txt new file mode 100644 index 0000000000..f8e36baa8d --- /dev/null +++ b/data/releases/8.3/8.3.6/changes.txt @@ -0,0 +1,63 @@ +- Core: + . Fixed GH-13569 (GC buffer unnecessarily grows up to GC_MAX_BUF_SIZE when + scanning WeakMaps). (Arnaud) + . Fixed bug GH-13612 (Corrupted memory in destructor with weak references). + (nielsdos) + . Fixed bug GH-13446 (Restore exception handler after it finishes). (ilutov) + . Fixed bug GH-13784 (AX_GCC_FUNC_ATTRIBUTE failure). (Remi) + . Fixed bug GH-13670 (GC does not scale well with a lot of objects created in + destructor). (Arnaud) + +- DOM: + . Add some missing ZPP checks. (nielsdos) + . Fix potential memory leak in XPath evaluation results. (nielsdos) + +- FPM: + . Fixed GH-11086 (FPM: config test runs twice in daemonised mode). + (Jakub Zelenka) + . Fixed incorrect check in fpm_shm_free(). (nielsdos) + +- GD: + . Fixed bug GH-12019 (add GDLIB_CFLAGS in feature tests). (Michael Orlitzky) + +- Gettext: + . Fixed sigabrt raised with dcgettext/dcngettext calls with gettext 0.22.5 + with category set to LC_ALL. (David Carlier) + +- MySQLnd: + . Fix GH-13452 (Fixed handshake response [mysqlnd]). (Saki Takamachi) + . Fix incorrect charset length in check_mb_eucjpms(). (nielsdos) + +- Opcache: + . Fixed GH-13508 (JITed QM_ASSIGN may be optimized out when op1 is null). + (Arnaud, Dmitry) + . Fixed GH-13712 (Segmentation fault for enabled observers when calling trait + method of internal trait when opcache is loaded). (Bob) + +- Random: + . Fixed bug GH-13544 (Pre-PHP 8.2 compatibility for mt_srand with unknown + modes). (timwolla) + . Fixed bug GH-13690 (Global Mt19937 is not properly reset in-between + requests when MT_RAND_PHP is used). (timwolla) + +- Session: + . Fixed bug GH-13680 (Segfault with session_decode and compilation error). + (nielsdos) + +- SPL: + . Fixed bug GH-13685 (Unexpected null pointer in zend_string.h). (nielsdos) + +- Standard: + . Fixed bug GH-11808 (Live filesystem modified by tests). (nielsdos) + . Fixed GH-13402 (Added validation of `\n` in $additional_headers of mail()). + (SakiTakamachi) + . Fixed bug GH-13203 (file_put_contents fail on strings over 4GB on Windows). + (divinity76) + . Fixed bug GHSA-pc52-254m-w9w7 (Command injection via array-ish $command + parameter of proc_open). (CVE-2024-1874) (Jakub Zelenka) + . Fixed bug GHSA-wpj3-hf5j-x4v4 (__Host-/__Secure- cookie bypass due to + partial CVE-2022-31629 fix). (CVE-2024-2756) (nielsdos) + . Fixed bug GHSA-h746-cjrr-wfmr (password_verify can erroneously return true, + opening ATO risk). (CVE-2024-3096) (Jakub Zelenka) + . Fixed bug GHSA-fjp9-9hwx-59fq (mb_encode_mimeheader runs endlessly for some + inputs). (CVE-2024-2757) (Alex Dowad) diff --git a/data/releases/8.3/8.3.6/release.json b/data/releases/8.3/8.3.6/release.json new file mode 100644 index 0000000000..b1e56eb97c --- /dev/null +++ b/data/releases/8.3/8.3.6/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.3.6", + "date": "11 Apr 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.3.6.tar.gz", + "name": "PHP 8.3.6 (tar.gz)", + "sha256": "39695f5bd107892e36fd2ed6b3d3a78140fd4b05d556d6c6531a921633cacb5f" + }, + { + "filename": "php-8.3.6.tar.bz2", + "name": "PHP 8.3.6 (tar.bz2)", + "sha256": "6324b1ddd8eb3025b041034b88dc2bc0b4819b0022129eeaeba37e47803108bc" + }, + { + "filename": "php-8.3.6.tar.xz", + "name": "PHP 8.3.6 (tar.xz)", + "sha256": "53c8386b2123af97626d3438b3e4058e0c5914cb74b048a6676c57ac647f5eae" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.7/announcement.html b/data/releases/8.3/8.3.7/announcement.html new file mode 100644 index 0000000000..c3de77b30e --- /dev/null +++ b/data/releases/8.3/8.3.7/announcement.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/8.3.7/changes.txt b/data/releases/8.3/8.3.7/changes.txt new file mode 100644 index 0000000000..ff7194f07d --- /dev/null +++ b/data/releases/8.3/8.3.7/changes.txt @@ -0,0 +1,81 @@ +- Core: + . Fixed zend_call_stack build with Linux/uclibc-ng without thread support. + (Fabrice Fontaine) + . Fixed bug GH-13772 (Invalid execute_data->opline pointers in observer fcall + handlers when JIT is enabled). (Bob) + . Fixed bug GH-13931 (Applying zero offset to null pointer in + Zend/zend_opcode.c). (nielsdos) + . Fixed bug GH-13942 (Align the behavior of zend-max-execution-timers with + other timeout implementations). (Kévin Dunglas) + . Fixed bug GH-14003 (Broken cleanup of unfinished calls with callable convert + parameters). (ilutov) + . Fixed bug GH-14013 (Erroneous dnl appended in configure). (Peter Kokot) + . Fixed bug GH-10232 (If autoloading occurs during constant resolution + filename and lineno are identified incorrectly). (ranvis) + . Fixed bug GH-13727 (Missing void keyword). (Peter Kokot) + +- Fibers: + . Fixed bug GH-13903 (ASAN false positive underflow when executing copy()). + (nielsdos) + +- Fileinfo: + . Fixed bug GH-13795 (Test failing in ext/fileinfo/tests/bug78987.phpt on + big-endian PPC). (orlitzky) + +- FPM: + . Fixed bug GH-13563 (Setting bool values via env in FPM config fails). + (Jakub Zelenka) + +- Intl: + . Fixed build for icu 74 and onwards. (dunglas) + +- MySQLnd: + . Fix shift out of bounds on 32-bit non-fast-path platforms. (nielsdos) + +- Opcache: + . Fixed bug GH-13433 (Segmentation Fault in zend_class_init_statics when + using opcache.preload). (nielsdos) + . Fixed incorrect assumptions across compilation units for static calls. + (ilutov) + +- OpenSSL: + . Fixed bug GH-10495 (feof on OpenSSL stream hangs indefinitely). + (Jakub Zelenka) + +- PDO SQLite: + . Fix GH-13984 (Buffer size is now checked before memcmp). (Saki Takamachi) + . Fix GH-13998 (Manage refcount of agg_context->val correctly). + (Saki Takamachi) + +- Phar: + . Fixed bug GH-13836 (Renaming a file in a Phar to an already existing + filename causes a NULL pointer dereference). (nielsdos) + . Fixed bug GH-13833 (Applying zero offset to null pointer in zend_hash.c). + (nielsdos) + . Fix potential NULL pointer dereference before calling EVP_SignInit. (icy17) + +- PHPDBG: + . Fixed bug GH-13827 (Null pointer access of type 'zval' in phpdbg_frame). + (nielsdos) + +- Posix: + . Fix usage of reentrant functions in ext/posix. (Arnaud) + +- Session: + . Fixed bug GH-13856 (Member access within null pointer of type 'ps_files' in + ext/session/mod_files.c). (nielsdos) + . Fixed bug GH-13891 (memleak and segfault when using ini_set with + session.trans_sid_hosts). (nielsdos, kamil-tekiela) + . Fixed buffer _read/_write size limit on windows for the file mode. (David Carlier) + +- Streams: + . Fixed file_get_contents() on Windows fails with "errno=22 Invalid + argument". (Damian Wójcik) + . Fixed bug GH-13264 (Part 1 - Memory leak on stream filter failure). + (Jakub Zelenka) + . Fixed bug GH-13860 (Incorrect PHP_STREAM_OPTION_CHECK_LIVENESS case in + ext/openssl/xp_ssl.c - causing use of dead socket). (nielsdos) + . Fixed bug GH-11678 (Build fails on musl 1.2.4 - lfs64). (Arnaud) + +- Treewide: + . Fix gcc-14 Wcalloc-transposed-args warnings. (Cristian Rodríguez) diff --git a/data/releases/8.3/8.3.7/release.json b/data/releases/8.3/8.3.7/release.json new file mode 100644 index 0000000000..30db81f2c6 --- /dev/null +++ b/data/releases/8.3/8.3.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.7", + "date": "09 May 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.7.tar.gz", + "name": "PHP 8.3.7 (tar.gz)", + "sha256": "2e11d10b651459a8767401e66b5d70e3b048e446579fcdeb0b69bcba789af8c4" + }, + { + "filename": "php-8.3.7.tar.bz2", + "name": "PHP 8.3.7 (tar.bz2)", + "sha256": "01c20cde1c5a5696651875ed22f507849679fba740f8c421616b7d43d7f797da" + }, + { + "filename": "php-8.3.7.tar.xz", + "name": "PHP 8.3.7 (tar.xz)", + "sha256": "d53433c1ca6b2c8741afa7c524272e6806c1e895e5912a058494fea89988570a" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.8/announcement.html b/data/releases/8.3/8.3.8/announcement.html new file mode 100644 index 0000000000..26e5eeeae9 --- /dev/null +++ b/data/releases/8.3/8.3.8/announcement.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/8.3.8/changes.txt b/data/releases/8.3/8.3.8/changes.txt new file mode 100644 index 0000000000..dec8fc0892 --- /dev/null +++ b/data/releases/8.3/8.3.8/changes.txt @@ -0,0 +1,67 @@ +- CGI: + . Fixed buffer limit on Windows, replacing read call usage by _read. + (David Carlier) + . Fixed bug GHSA-3qgc-jrrr-25jv (Bypass of CVE-2012-1823, Argument Injection + in PHP-CGI). (CVE-2024-4577) (nielsdos) + +- CLI: + . Fixed bug GH-14189 (PHP Interactive shell input state incorrectly handles + quoted heredoc literals.). (nielsdos) + +- Core: + . Fixed bug GH-13970 (Incorrect validation of #[Attribute] flags type for + non-compile-time expressions). (ilutov) + +- DOM: + . Fix crashes when entity declaration is removed while still having entity + references. (nielsdos) + . Fix references not handled correctly in C14N. (nielsdos) + . Fix crash when calling childNodes next() when iterator is exhausted. + (nielsdos) + . Fix crash in ParentNode::append() when dealing with a fragment + containing text nodes. (nielsdos) + +- Filter: + . Fixed bug GHSA-w8qr-v226-r27w (Filter bypass in filter_var FILTER_VALIDATE_URL). + (CVE-2024-5458) (nielsdos) + +- FPM: + . Fix bug GH-14175 (Show decimal number instead of scientific notation in + systemd status). (Benjamin Cremer) + +- Hash: + . ext/hash: Swap the checking order of `__has_builtin` and `__GNUC__` + (Saki Takamachi) + +- Intl: + . Fixed build regression on systems without C++17 compilers. (Calvin Buckley, + Peter Kokot) + +- MySQLnd: + . Fix bug GH-14255 (mysqli_fetch_assoc reports error from + nested query). (Kamil Tekiela) + +- Opcache: + . Fixed bug GH-14109 (Fix accidental persisting of internal class constant in + shm). (ilutov) + +- OpenSSL: + . The openssl_private_decrypt function in PHP, when using PKCS1 padding + (OPENSSL_PKCS1_PADDING, which is the default), is vulnerable to the Marvin Attack + unless it is used with an OpenSSL version that includes the changes from this pull + request: https://github.com/openssl/openssl/pull/13817 (rsa_pkcs1_implicit_rejection). + These changes are part of OpenSSL 3.2 and have also been backported to stable + versions of various Linux distributions, as well as to the PHP builds provided for + Windows since the previous release. All distributors and builders should ensure that + this version is used to prevent PHP from being vulnerable. (CVE-2024-2408) + +- Standard: + . Fixed bug GHSA-9fcc-425m-g385 (Bypass of CVE-2024-1874). + (CVE-2024-5585) (nielsdos) + +- XML: + . Fixed bug GH-14124 (Segmentation fault with XML extension under certain + memory limit). (nielsdos) + +- XMLReader: + . Fixed bug GH-14183 (XMLReader::open() can't be overridden). (nielsdos) diff --git a/data/releases/8.3/8.3.8/release.json b/data/releases/8.3/8.3.8/release.json new file mode 100644 index 0000000000..1df3ad17b5 --- /dev/null +++ b/data/releases/8.3/8.3.8/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.3.8", + "date": "06 Jun 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.3.8.tar.gz", + "name": "PHP 8.3.8 (tar.gz)", + "sha256": "0ebed9f1471871cf131e504629f3947f2acd38a655cc31b036f99efd0e3dbdeb" + }, + { + "filename": "php-8.3.8.tar.bz2", + "name": "PHP 8.3.8 (tar.bz2)", + "sha256": "f4a6cb005ae117aba86c2044932cf563899a2e977ac09781aa74b2161ddc563b" + }, + { + "filename": "php-8.3.8.tar.xz", + "name": "PHP 8.3.8 (tar.xz)", + "sha256": "aea358b56186f943c2bbd350c9005b9359133d47e954cfc561385319ae5bb8d7" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.3/8.3.9/announcement.html b/data/releases/8.3/8.3.9/announcement.html new file mode 100644 index 0000000000..87906da147 --- /dev/null +++ b/data/releases/8.3/8.3.9/announcement.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/8.3.9/changes.txt b/data/releases/8.3/8.3.9/changes.txt new file mode 100644 index 0000000000..2e22b16286 --- /dev/null +++ b/data/releases/8.3/8.3.9/changes.txt @@ -0,0 +1,75 @@ +- Core: + . Fixed bug GH-14315 (Incompatible pointer type warnings). (Peter Kokot) + . Fixed bug GH-12814 (max_execution_time reached too early on MacOS 14 + when running on Apple Silicon). (Manuel Kress) + . Fixed bug GH-14387 (Crash when stack walking in destructor of yielded from + values during Generator->throw()). (Bob) + . Fixed bug GH-14456 (Attempting to initialize class with private constructor + calls destructor). (Girgias) + . Fixed bug GH-14510 (memleak due to missing pthread_attr_destroy()-call). + (Florian Engelhardt) + . Fixed bug GH-14549 (Incompatible function pointer type for fclose). + (Ryan Carsten Schmidt) + +- BCMath: + . Fixed bug (bcpowmod() with mod = -1 returns 1 when it must be 0). (Girgias) + +- Curl: + . Fixed bug GH-14307 (Test curl_basic_024 fails with curl 8.8.0). (nielsdos) + +- DOM: + . Fixed bug GH-14343 (Memory leak in xml and dom). (nielsdos) + +- FPM: + . Fixed bug GH-14037 (PHP-FPM ping.path and ping.response config vars are + ignored in status pool). (Wilhansen Li, Pierrick Charron) + +- GD: + . Fix parameter numbers for imagecolorset(). (Giovanni Giacobbi) + +- Intl: + . Fix reference handling in SpoofChecker. (nielsdos) + +- MySQLnd: + . Partially fix bug GH-10599 (Apache crash on Windows when using a + self-referencing anonymous function inside a class with an active + mysqli connection). (nielsdos) + +- Opcache: + . Fixed bug GH-14267 (opcache.jit=off does not allow enabling JIT at runtime). + (ilutov) + . Fixed TLS access in JIT on FreeBSD/amd64. (Arnaud) + . Fixed bug GH-11188 (Error when building TSRM in ARM64). (nielsdos) + +- PDO ODBC: + . Fixed bug GH-14367 (incompatible SDWORD type with iODBC). (Calvin Buckley) + +- PHPDBG: + . Fixed bug GH-13681 (segfault on watchpoint addition failure). (David Carlier) + +- Soap: + . Fixed bug #47925 (PHPClient can't decompress response). (nielsdos) + . Fix missing error restore code. (nielsdos) + . Fix memory leak if calling SoapServer::setObject() twice. (nielsdos) + . Fix memory leak if calling SoapServer::setClass() twice. (nielsdos) + . Fix reading zlib ini settings in ext-soap. (nielsdos) + . Fix memory leaks with string function name lookups. (nielsdos) + . Fixed bug #69280 (SoapClient classmap doesn't support fully qualified class + name). (nielsdos) + . Fixed bug #76232 (SoapClient Cookie Header Semicolon). (nielsdos) + . Fixed memory leaks when calling SoapFault::__construct() twice. (Girgias) + +- Sodium: + . Fix memory leaks in ext/sodium on failure of some functions. (nielsdos) + +- SPL: + . Fixed bug GH-14290 (Member access within null pointer in extension spl). + (nielsdos) + +- Standard: + . Fixed bug GH-14483 (Fixed off-by-one error in checking length of abstract + namespace Unix sockets). (Derick) + +- Streams: + . Fixed bug GH-11078 (PHP Fatal error triggers pointer being freed was not + allocated and malloc: double free for ptr errors). (nielsdos) diff --git a/data/releases/8.3/8.3.9/release.json b/data/releases/8.3/8.3.9/release.json new file mode 100644 index 0000000000..4520952136 --- /dev/null +++ b/data/releases/8.3/8.3.9/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.3.9", + "date": "04 Jul 2024", + "tags": [], + "source": [ + { + "filename": "php-8.3.9.tar.gz", + "name": "PHP 8.3.9 (tar.gz)", + "sha256": "f484dec6ee005c83f899af02fc021e1bc3b1d7b3f143ca062ef66b0fcee96566" + }, + { + "filename": "php-8.3.9.tar.bz2", + "name": "PHP 8.3.9 (tar.bz2)", + "sha256": "96edc6d82b7503a6650541fc477abd5456df28dfaa8c9388ff9e31d9fe1e3112" + }, + { + "filename": "php-8.3.9.tar.xz", + "name": "PHP 8.3.9 (tar.xz)", + "sha256": "bf4d7b8ea60a356064f88485278bd6f941a230ec16f0fc401574ce1445ad6c77" + } + ] +} \ 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/8.4.1/announcement.html b/data/releases/8.4/8.4.1/announcement.html new file mode 100644 index 0000000000..0253de5f79 --- /dev/null +++ b/data/releases/8.4/8.4.1/announcement.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/8.4.1/changes.txt b/data/releases/8.4/8.4.1/changes.txt new file mode 100644 index 0000000000..7f2f2ee2d9 --- /dev/null +++ b/data/releases/8.4/8.4.1/changes.txt @@ -0,0 +1,637 @@ +- BcMath: + . [RFC] Add bcfloor, bcceil and bcround to BCMath. (Saki Takamachi) + . Improve performance. (Saki Takamachi, nielsdos) + . Adjust bcround()'s $mode parameter to only accept the RoundingMode + enum. (timwolla, saki) + . Fixed LONG_MAX in BCMath ext. (Saki Takamachi) + . Fixed bcdiv() div by one. (Saki Takamachi) + . [RFC] Support object types in BCMath. (Saki Takamachi) + . bcpow() performance improvement. (Jorg Sowa) + . ext/bcmath: Check for scale overflow. (SakiTakamachi) + . [RFC] ext/bcmath: Added bcdivmod. (SakiTakamachi) + . Fix GH-15968 (Avoid converting objects to strings in operator calculations). + (SakiTakamachi) + . Fixed bug GH-16265 (Added early return case when result is 0) + (Saki Takamachi). + . Fixed bug GH-16262 (Fixed a bug where size_t underflows) (Saki Takamachi). + . Fixed GH-16236 (Fixed a bug in BcMath\Number::pow() and bcpow() when + raising negative powers of 0) (Saki Takamachi). + +- Core: + . Added zend_call_stack_get implementation for NetBSD, DragonFlyBSD, + Solaris and Haiku. (David Carlier) + . Enabled ifunc checks on FreeBSD from the 12.x releases. (Freaky) + . Changed the type of PHP_DEBUG and PHP_ZTS constants to bool. (haszi) + . Fixed bug GH-13142 (Undefined variable name is shortened when contains \0). + (nielsdos) + . Fixed bug GH-13178 (Iterator positions incorrect when converting packed + array to hashed). (ilutov) + . Fixed zend fiber build for solaris default mode (32 bits). (David Carlier) + . Fixed zend call stack size for macOs/arm64. (David Carlier) + . Added support for Zend Max Execution Timers on FreeBSD. (Kévin Dunglas) + . Ensure fiber stack is not backed by THP. (crrodriguez) + . Implement GH-13609 (Dump wrapped object in WeakReference class). (nielsdos) + . Added sparc64 arch assembly support for zend fiber. (Claudio Jeker) + . Fixed GH-13581 no space available for TLS on NetBSD. (Paul Ripke) + . Added fiber Sys-V loongarch64 support. (qiangxuhui) + . Adjusted closure names to include the parent function's name. (timwolla) + . Improve randomness of uploaded file names and files created by tempnam(). + (Arnaud) + . Added gc and shutdown callbacks to zend_mm custom handlers. + (Florian Engelhardt) + . Fixed bug GH-14650 (Compute the size of pages before allocating memory). + (Julien Voisin) + . Fixed bug GH-11928 (The --enable-re2c-cgoto doesn't add the -g flag). + (Peter Kokot) + . Added the #[\Deprecated] attribute. (beberlei, timwolla) + . Fixed GH-11389 (Allow suspending fibers in destructors). (Arnaud, trowski) + . Fixed bug GH-14801 (Fix build for armv7). (andypost) + . Implemented property hooks RFC. (ilutov) + . Fix GH-14978 (The xmlreader extension phpize build). (Peter Kokot) + . Throw Error exception when encountering recursion during comparison, rather + than fatal error. (ilutov) + . Added missing cstddef include for C++ builds. (cmb) + . Updated build system scripts config.guess to 2024-07-27 and config.sub to + 2024-05-27. (Peter Kokot) + . Fixed bug GH-15240 (Infinite recursion in trait hook). (ilutov) + . Fixed bug GH-15140 (Missing variance check for abstract set with asymmetric + type). (ilutov) + . Fixed bug GH-15181 (Disabled output handler is flushed again). (cmb) + . Passing E_USER_ERROR to trigger_error() is now deprecated. (Girgias) + . Fixed bug GH-15292 (Dynamic AVX detection is broken for MSVC). (nielsdos) + . Using "_" as a class name is now deprecated. (Girgias) + . Exiting a namespace now clears seen symbols. (ilutov) + . The exit (and die) language constructs now behave more like a function. + They can be passed liked callables, are affected by the strict_types + declare statement, and now perform the usual type coercions instead of + casting any non-integer value to a string. + As such, passing invalid types to exit/die may now result in a TypeError + being thrown. (Girgias) + . Fixed bug GH-15438 (Hooks on constructor promoted properties without + visibility are ignored). (ilutov) + . Fixed bug GH-15419 (Missing readonly+hook incompatibility check for readonly + classes). (ilutov) + . Fixed bug GH-15187 (Various hooked object iterator issues). (ilutov) + . Fixed bug GH-15456 (Crash in get_class_vars() on virtual properties). + (ilutov) + . Fixed bug GH-15501 (Windows HAVE_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/8.4.10/changes.txt b/data/releases/8.4/8.4.10/changes.txt new file mode 100644 index 0000000000..e809a1a763 --- /dev/null +++ b/data/releases/8.4/8.4.10/changes.txt @@ -0,0 +1,83 @@ +- BcMath: + . Fixed bug GH-18641 (Accessing a BcMath\Number property by ref crashes). + (nielsdos) + +- Core: + . Fixed bugs GH-17711 and GH-18022 (Infinite recursion on deprecated attribute + evaluation) and GH-18464 (Recursion protection for deprecation constants not + released on bailout). (DanielEScherzer and ilutov) + . Fixed GH-18695 (zend_ast_export() - float number is not preserved). + (Oleg Efimov) + . Fix handling of references in zval_try_get_long(). (nielsdos) + . Do not delete main chunk in zend_gc. (danog, Arnaud) + . Fix compile issues with zend_alloc and some non-default options. (nielsdos) + +- Curl: + . Fix memory leak when setting a list via curl_setopt fails. (nielsdos) + +- Date: + . Fix leaks with multiple calls to DatePeriod iterator current(). (nielsdos) + +- DOM: + . Fixed bug GH-18744 (classList works not correctly if copy HTMLElement by + clone keyword). (nielsdos) + +- FPM: + . Fixed GH-18662 (fpm_get_status segfault). (txuna) + +- Hash: + . Fixed bug GH-14551 (PGO build fails with xxhash). (nielsdos) + +- Intl: + . Fix memory leak in intl_datetime_decompose() on failure. (nielsdos) + . Fix memory leak in locale lookup on failure. (nielsdos) + +- Opcache: + . Fixed bug GH-18743 (Incompatibility in Inline TLS Assembly on Alpine 3.22). + (nielsdos, Arnaud) + +- ODBC: + . Fix memory leak on php_odbc_fetch_hash() failure. (nielsdos) + +- OpenSSL: + . Fix memory leak of X509_STORE in php_openssl_setup_verify() on failure. + (nielsdos) + . Fixed bug #74796 (Requests through http proxy set peer name). + (Jakub Zelenka) + +- PDO ODBC: + . Fix memory leak if WideCharToMultiByte() fails. (nielsdos) + +- PDO Sqlite: + . Fixed memory leak with Pdo_Sqlite::createCollation when the callback + has an incorrect return type. (David Carlier) + +- Phar: + . Add missing filter cleanups on phar failure. (nielsdos) + . Fixed bug GH-18642 (Signed integer overflow in ext/phar fseek). (nielsdos) + +- PHPDBG: + . Fix 'phpdbg --help' segfault on shutdown with USE_ZEND_ALLOC=0. (nielsdos) + +- PGSQL: + . Fix warning not being emitted when failure to cancel a query with + pg_cancel_query(). (Girgias) + +- Random: + . Fix reference type confusion and leak in user random engine. + (nielsdos, timwolla) + +- Readline: + . Fix memory leak when calloc() fails in php_readline_completion_cb(). + (nielsdos) + +- SimpleXML: + . Fixed bug GH-18597 (Heap-buffer-overflow in zend_alloc.c when assigning + string with UTF-8 bytes). (nielsdos) + +- Soap: + . Fix memory leaks in php_http.c when call_user_function() fails. (nielsdos) + +- Tidy: + . Fix memory leak in tidy output handler on error. (nielsdos) + . Fix tidyOptIsReadonly deprecation, using tidyOptGetCategory. (David Carlier) diff --git a/data/releases/8.4/8.4.10/release.json b/data/releases/8.4/8.4.10/release.json new file mode 100644 index 0000000000..a98c1ae4f4 --- /dev/null +++ b/data/releases/8.4/8.4.10/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.10", + "date": "3 Jul 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.4.10.tar.gz", + "name": "PHP 8.4.10 (tar.gz)", + "sha256": "bd25c40ece60d1b3c879c11f517d335b8d6a872174c32ebb088b9494d8bb2cf2" + }, + { + "filename": "php-8.4.10.tar.bz2", + "name": "PHP 8.4.10 (tar.bz2)", + "sha256": "8815d10659cde5f03be4d169205d62b7b29ed0edc7cdd84b6384cda0310c3108" + }, + { + "filename": "php-8.4.10.tar.xz", + "name": "PHP 8.4.10 (tar.xz)", + "sha256": "14983a9ef8800e6bc2d920739fd386054402f7976ca9cd7f711509496f0d2632" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.11/announcement.html b/data/releases/8.4/8.4.11/announcement.html new file mode 100644 index 0000000000..402cba2492 --- /dev/null +++ b/data/releases/8.4/8.4.11/announcement.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/8.4.11/changes.txt b/data/releases/8.4/8.4.11/changes.txt new file mode 100644 index 0000000000..b44dcbda77 --- /dev/null +++ b/data/releases/8.4/8.4.11/changes.txt @@ -0,0 +1,69 @@ +- Calendar: + . Fixed jewishtojd overflow on year argument. (David Carlier) + +- Core: + . Fixed bug GH-18833 (Use after free with weakmaps dependent on destruction + order). (Daniil Gentili) + . Fixed bug GH-18907 (Leak when creating cycle in hook). (ilutov) + . Fix OSS-Fuzz #427814456. (nielsdos) + . Fix OSS-Fuzz #428983568 and #428760800. (nielsdos) + +- Curl: + . Fix memory leaks when returning refcounted value from curl callback. + (nielsdos) + . Remove incorrect string release. (nielsdos) + +- DOM: + . Fixed bug GH-18979 (Dom\XMLDocument::createComment() triggers undefined + behavior with null byte). (nielsdos) + +- LDAP: + . Fixed GH-18902 ldap_exop/ldap_exop_sync assert triggered on empty + request OID. (David Carlier) + +- MbString: + . Fixed bug GH-18901 (integer overflow mb_split). (nielsdos) + +- Opcache: + . Fixed bug GH-18639 (Internal class aliases can break preloading + JIT). + (nielsdos) + . Fixed bug GH-18899 (JIT function crash when emitting undefined variable + warning and opline is not set yet). (nielsdos) + . Fixed bug GH-14082 (Segmentation fault on unknown address 0x600000000018 + in ext/opcache/jit/zend_jit.c). (nielsdos) + . Fixed bug GH-18898 (SEGV zend_jit_op_array_hot with property hooks + and preloading). (nielsdos) + +- OpenSSL: + . Fixed bug #80770 (It is not possible to get client peer certificate with + stream_socket_server). (Jakub Zelenka) + +- PCNTL: + . Fixed bug GH-18958 (Fatal error during shutdown after pcntl_rfork() or + pcntl_forkx() with zend-max-execution-timers). (Arnaud) + +- Phar: + . Fix stream double free in phar. (nielsdos, dixyes) + . Fix phar crash and file corruption with SplFileObject. (nielsdos) + +- SOAP: + . Fixed bug GH-18990, bug #81029, bug #47314 (SOAP HTTP socket not closing + on object destruction). (nielsdos) + . Fix memory leak when URL parsing fails in redirect. (Girgias) + +- SPL: + . Fixed bug GH-19094 (Attaching class with no Iterator implementation to + MultipleIterator causes crash). (nielsdos) + +- Standard: + . Fix misleading errors in printf(). (nielsdos) + . Fix RCN violations in array functions. (nielsdos) + . Fixed GH-18976 pack() overflow with h/H format and INT_MAX repeater value. + (David Carlier) + +- Streams: + . Fixed GH-13264 (fgets() and stream_get_line() do not return false on filter + fatal error). (Jakub Zelenka) + +- Zip: + . Fix leak when path is too long in ZipArchive::extractTo(). (nielsdos) diff --git a/data/releases/8.4/8.4.11/release.json b/data/releases/8.4/8.4.11/release.json new file mode 100644 index 0000000000..f0c2e29fa1 --- /dev/null +++ b/data/releases/8.4/8.4.11/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.11", + "date": "31 Jul 2025", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-8.4.11.tar.gz", + "name": "PHP 8.4.11 (tar.gz)", + "sha256": "422548cd8cf14ab0264ba510d3586476b0e77a3272356ba486bc82e706dc6cc8" + }, + { + "filename": "php-8.4.11.tar.bz2", + "name": "PHP 8.4.11 (tar.bz2)", + "sha256": "2c39c75b54df89b01195b72ad0ee1fcd490c71db18bc52bcd61fb2ffb57b26fa" + }, + { + "filename": "php-8.4.11.tar.xz", + "name": "PHP 8.4.11 (tar.xz)", + "sha256": "04cd331380a8683a5c2503938eb51764d48d507c53ad4208d2c82e0eed779a00" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.12/announcement.html b/data/releases/8.4/8.4.12/announcement.html new file mode 100644 index 0000000000..e9afa3c0e0 --- /dev/null +++ b/data/releases/8.4/8.4.12/announcement.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/8.4.12/changes.txt b/data/releases/8.4/8.4.12/changes.txt new file mode 100644 index 0000000000..d46763e957 --- /dev/null +++ b/data/releases/8.4/8.4.12/changes.txt @@ -0,0 +1,86 @@ +- Core: + . Fixed GH-19169 build issue with C++17 and ZEND_STATIC_ASSERT macro. + (psumbera) + . Fixed bug GH-19053 (Duplicate property slot with hooks and interface + property). (ilutov) + . Fixed bug GH-19044 (Protected properties are not scoped according to their + prototype). (Bob) + . Fixed bug GH-18581 (Coerce numeric string keys from iterators when argument + unpacking). (ilutov) + . Fixed OSS-Fuzz #434346548 (Failed assertion with throwing __toString in + binary const expr). (ilutov) + . Fixed bug GH-19305 (Operands may be being released during comparison). + (Arnaud) + . Fixed bug GH-19303 (Unpacking empty packed array into uninitialized array + causes assertion failure). (nielsdos) + . Fixed bug GH-19306 (Generator can be resumed while fetching next value from + delegated Generator). (Arnaud) + . Fixed bug GH-19326 (Calling Generator::throw() on a running generator with + a non-Generator delegate crashes). (Arnaud) + . Fixed bug GH-19280 (Stale array iterator position on rehashing). (ilutov) + . Fixed bug GH-18736 (Circumvented type check with return by ref + finally). + (ilutov) + . Fixed bug GH-19065 (Long match statement can segfault compiler during + recursive SSA renaming). (nielsdos, Arnaud) + +- Calendar: + . Fixed bug GH-19371 (integer overflow in calendar.c). (nielsdos) + +- FTP: + . Fix theoretical issues with hrtime() not being available. (nielsdos) + +- GD: + . Fix incorrect comparison with result of php_stream_can_cast(). (Girgias) + +- Hash: + . Fix crash on clone failure. (nielsdos) + +- Intl: + . Fix memleak on failure in collator_get_sort_key(). (nielsdos) + . Fix return value on failure for resourcebundle count handler. (Girgias) + +- LDAP: + . Fixed bug GH-18529 (additional inheriting of TLS int options). + (Jakub Zelenka) + +- LibXML: + . Fixed bug GH-19098 (libxml<2.13 segmentation fault caused by + php_libxml_node_free). (nielsdos) + +- MbString: + . Fixed bug GH-19397 (mb_list_encodings() can cause crashes on shutdown). + (nielsdos) + +- Opcache: + . Reset global pointers to prevent use-after-free in zend_jit_status(). + (Florian Engelhardt) + . Fix issue with JIT restart and hooks. (nielsdos) + . Fix crash with dynamic function defs in hooks during preload. (nielsdos) + +- OpenSSL: + . Fixed bug GH-18986 (OpenSSL backend: incorrect RAND_{load,write}_file() + return value check). (nielsdos, botovq) + . Fix error return check of EVP_CIPHER_CTX_ctrl(). (nielsdos) + . Fixed bug GH-19428 (openssl_pkey_derive segfaults for DH derive with low + key_length param). (Jakub Zelenka) + +- PDO Pgsql: + . Fixed dangling pointer access on _pdo_pgsql_trim_message helper. + (dixyes) + +- SOAP: + . Fixed bug GH-18640 (heap-use-after-free ext/soap/php_encoding.c:299:32 + in soap_check_zval_ref). (nielsdos) + +- Sockets: + . Fix some potential crashes on incorrect argument value. (nielsdos) + +- Standard: + . Fixed OSS Fuzz #433303828 (Leak in failed unserialize() with opcache). + (ilutov) + . Fix theoretical issues with hrtime() not being available. (nielsdos) + . Fixed bug GH-19300 (Nested array_multisort invocation with error breaks). + (nielsdos) + +- Windows: + . Free opened_path when opened_path_len >= MAXPATHLEN. (dixyes) diff --git a/data/releases/8.4/8.4.12/release.json b/data/releases/8.4/8.4.12/release.json new file mode 100644 index 0000000000..e0bc422586 --- /dev/null +++ b/data/releases/8.4/8.4.12/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.12", + "date": "28 Aug 2025", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-8.4.12.tar.gz", + "name": "PHP 8.4.12 (tar.gz)", + "sha256": "4963b0d3a6ca8a391317d1b80309c2cfdebf4318b131ff8e7d19e3ab79da9104" + }, + { + "filename": "php-8.4.12.tar.bz2", + "name": "PHP 8.4.12 (tar.bz2)", + "sha256": "2ebd5382eb090d603087da649ed21de64b079616bc9a02abbc532b89b17e3468" + }, + { + "filename": "php-8.4.12.tar.xz", + "name": "PHP 8.4.12 (tar.xz)", + "sha256": "c1b7978cbb5054eed6c749bde4444afc16a3f2268101fb70a7d5d9b1083b12ad" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.13/announcement.html b/data/releases/8.4/8.4.13/announcement.html new file mode 100644 index 0000000000..b1f6118cb0 --- /dev/null +++ b/data/releases/8.4/8.4.13/announcement.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/8.4.13/changes.txt b/data/releases/8.4/8.4.13/changes.txt new file mode 100644 index 0000000000..7943a2fa95 --- /dev/null +++ b/data/releases/8.4/8.4.13/changes.txt @@ -0,0 +1,65 @@ +- Core: + . Fixed bug GH-18850 (Repeated inclusion of file with __halt_compiler() + triggers "Constant already defined" warning). (ilutov) + . Partially fixed bug GH-19542 (Scanning of string literals >=2GB will fail + due to signed int overflow). (ilutov) + . Fixed bug GH-19544 (GC treats ZEND_WEAKREF_TAG_MAP references as WeakMap + references). (Arnaud, timwolla) + . Fixed bug GH-19613 (Stale array iterator pointer). (ilutov) + . Fixed bug GH-19679 (zend_ssa_range_widening may fail to converge). (Arnaud) + . Fixed bug GH-19681 (PHP_EXPAND_PATH broken with bash 5.3.0). (Remi) + . Fixed bug GH-19720 (Assertion failure when error handler throws when + accessing a deprecated constant). (nielsdos) + +- CLI: + . Fixed bug GH-19461 (Improve error message on listening error with IPv6 + address). (alexandre-daubois) + +- Date: + . Fixed date_sunrise() and date_sunset() with partial-hour UTC offset. + (ilutov) + +- DBA: + . Fixed bug GH-19706 (dba stream resource mismanagement). (nielsdos) + +- DOM: + . Fixed bug GH-19612 (Mitigate libxml2 tree dictionary bug). (nielsdos) + +- FPM: + . Fixed failed debug assertion when php_admin_value setting fails. (ilutov) + +- Intl: + . Fixed bug GH-11952 (Fix locale strings canonicalization for IntlDateFormatter + and NumberFormatter). (alexandre-daubois) + +- Opcache: + . Fixed bug GH-19493 (JIT variable not stored before YIELD). (Arnaud) + +- OpenSSL: + . Fixed bug GH-19245 (Success error message on TLS stream accept failure). + (Jakub Zelenka) + +- PGSQL: + . Fixed bug GH-19485 (potential use after free when using persistent pgsql + connections). (Mark Karpeles) + +- Phar: + . Fixed memory leaks when verifying OpenSSL signature. (Girgias) + . Fix memory leak in phar tar temporary file error handling code. (nielsdos) + . Fix metadata leak when phar convert logic fails. (nielsdos) + . Fix memory leak on failure in phar_convert_to_other(). (nielsdos) + . Fixed bug GH-19752 (Phar decompression with invalid extension + can cause UAF). (nielsdos) + +- Standard: + . Fixed bug GH-16649 (UAF during array_splice). (alexandre-daubois) + . Fixed bug GH-19577 (Avoid integer overflow when using a small offset + and PHP_INT_MAX with LimitIterator). (alexandre-daubois) + +- Streams: + . Remove incorrect call to zval_ptr_dtor() in user_wrapper_metadata(). + (nielsdos) + . Fix OSS-Fuzz #385993744. (nielsdos) + +- Zip: + . Fix memory leak in zip when encountering empty glob result. (nielsdos) diff --git a/data/releases/8.4/8.4.13/release.json b/data/releases/8.4/8.4.13/release.json new file mode 100644 index 0000000000..415647f4f3 --- /dev/null +++ b/data/releases/8.4/8.4.13/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.13", + "date": "25 Sep 2025", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-8.4.13.tar.gz", + "name": "PHP 8.4.13 (tar.gz)", + "sha256": "ba323619b322125dbd7bf09eefbd572863797359c7d127f986c58a71c872d531" + }, + { + "filename": "php-8.4.13.tar.bz2", + "name": "PHP 8.4.13 (tar.bz2)", + "sha256": "85181ddca7b3e03f148521b043bd62411950d468c667db6400479f1b10812194" + }, + { + "filename": "php-8.4.13.tar.xz", + "name": "PHP 8.4.13 (tar.xz)", + "sha256": "b4f27adf30bcf262eacf93c78250dd811980f20f3b90d79a3dc11248681842df" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.14/announcement.html b/data/releases/8.4/8.4.14/announcement.html new file mode 100644 index 0000000000..2e81c51a60 --- /dev/null +++ b/data/releases/8.4/8.4.14/announcement.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/8.4.14/changes.txt b/data/releases/8.4/8.4.14/changes.txt new file mode 100644 index 0000000000..f15505a8ae --- /dev/null +++ b/data/releases/8.4/8.4.14/changes.txt @@ -0,0 +1,88 @@ +- Core: + . Fixed bug GH-19765 (object_properties_load() bypasses readonly property + checks). (timwolla) + . Fixed hard_timeout with --enable-zend-max-execution-timers. (Appla) + . Fixed bug GH-19792 (SCCP causes UAF for return value if both warning and + exception are triggered). (nielsdos) + . Fixed bug GH-19653 (Closure named argument unpacking between temporary + closures can cause a crash). (nielsdos, Arnaud, Bob) + . Fixed bug GH-19839 (Incorrect HASH_FLAG_HAS_EMPTY_IND flag on userland + array). (ilutov) + . Fixed bug GH-19480 (error_log php.ini cannot be unset when open_basedir is + configured). (nielsdos) + . Fixed bug GH-20002 (Broken build on *BSD with MSAN). (outtersg) + +- CLI: + . Fix useless "Failed to poll event" error logs due to EAGAIN in CLI server + with PHP_CLI_SERVER_WORKERS. (leotaku) + +- Curl: + . Fix cloning of CURLOPT_POSTFIELDS when using the clone operator instead + of the curl_copy_handle() function to clone a CurlHandle. (timwolla) + . Fix curl build and test failures with version 8.16. + (nielsdos, ilutov, Jakub Zelenka) + +- Date: + . Fixed GH-17159: "P" format for ::createFromFormat swallows string literals. + (nielsdos) + +- DOM: + . Fix macro name clash on macOS. (Ruoyu Zhong) + . Fixed bug GH-20022 (docker-php-ext-install DOM failed). (nielsdos) + +- GD: + . Fixed GH-19955 (imagefttext() memory leak). (David Carlier) + +- MySQLnd: + . Fixed bug #67563 (mysqli compiled with mysqlnd does not take ipv6 adress + as parameter). (nielsdos) + +- Opcache: + . Fixed bug GH-19669 (assertion failure in zend_jit_trace_type_to_info_ex). + (Arnaud) + . Fixed bug GH-19831 (function JIT may not deref property value). (Arnaud) + . Fixed bug GH-19889 (race condition in zend_runtime_jit(), + zend_jit_hot_func()). (Arnaud) + +- Phar: + . Fix memory leak and invalid continuation after tar header writing fails. + (nielsdos) + . Fix memory leaks when creating temp file fails when applying zip signature. + (nielsdos) + +- SimpleXML: + . Fixed bug GH-19988 (zend_string_init with NULL pointer in simplexml (UB)). + (nielsdos) + +- Soap: + . Fixed bug GH-19784 (SoapServer memory leak). (nielsdos) + . Fixed bug GH-20011 (Array of SoapVar of unknown type causes crash). + (nielsdos) + +- Standard: + . Fixed bug GH-12265 (Cloning an object breaks serialization recursion). + (nielsdos) + . Fixed bug GH-19701 (Serialize/deserialize loses some data). (nielsdos) + . Fixed bug GH-19801 (leaks in var_dump() and debug_zval_dump()). + (alexandre-daubois) + . Fixed bug GH-20043 (array_unique assertion failure with RC1 array + causing an exception on sort). (nielsdos) + . Fixed bug GH-19926 (reset internal pointer earlier while splicing array + while COW violation flag is still set). (alexandre-daubois) + . Fixed bug GH-19570 (unable to fseek in /dev/zero and /dev/null). + (nielsdos, divinity76) + +- Streams: + . Fixed bug GH-19248 (Use strerror_r instead of strerror in main). + (Jakub Zelenka) + . Fixed bug GH-17345 (Bug #35916 was not completely fixed). (nielsdos) + . Fixed bug GH-19705 (segmentation when attempting to flush on non seekable + stream. (bukka/David Carlier) + +- XMLReader: + . Fixed bug GH-20009 (XMLReader leak on RelaxNG schema failure). (nielsdos) + +- Zip: + . Fixed bug GH-19688 (Remove pattern overflow in zip addGlob()). (nielsdos) + . Fixed bug GH-19932 (Memory leak in zip setEncryptionName()/setEncryptionIndex()). + (David Carlier) diff --git a/data/releases/8.4/8.4.14/release.json b/data/releases/8.4/8.4.14/release.json new file mode 100644 index 0000000000..41abd42582 --- /dev/null +++ b/data/releases/8.4/8.4.14/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.14", + "date": "23 Oct 2025", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-8.4.14.tar.gz", + "name": "PHP 8.4.14 (tar.gz)", + "sha256": "40341f3e03a36d48facdb6cc2ec600ff887a1af9a5e5fee0b40f40b61488afae" + }, + { + "filename": "php-8.4.14.tar.bz2", + "name": "PHP 8.4.14 (tar.bz2)", + "sha256": "f2139ce4cb7a6c5643ee98caa34e5c32ba841c2ba293e34a3d0357faa84bb3e7" + }, + { + "filename": "php-8.4.14.tar.xz", + "name": "PHP 8.4.14 (tar.xz)", + "sha256": "bac90ee7cf738e814c89b6b27d4d2c4b70e50942a420837e1a22f5fd5f9867a3" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.15/announcement.html b/data/releases/8.4/8.4.15/announcement.html new file mode 100644 index 0000000000..e8cebca2da --- /dev/null +++ b/data/releases/8.4/8.4.15/announcement.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/8.4.15/changes.txt b/data/releases/8.4/8.4.15/changes.txt new file mode 100644 index 0000000000..76fbdeb63c --- /dev/null +++ b/data/releases/8.4/8.4.15/changes.txt @@ -0,0 +1,105 @@ +- Core: + . Fixed bug GH-19934 (CGI with auto_globals_jit=0 causes uouv). (ilutov) + . Fixed bug GH-20073 (Assertion failure in WeakMap offset operations on + reference). (nielsdos) + . Fixed bug GH-20085 (Assertion failure when combining lazy object + get_properties exception with foreach loop). (nielsdos) + . Fixed bug GH-19844 (Don't bail when closing resources on shutdown). (ilutov) + . Fixed bug GH-20177 (Accessing overridden private property in + get_object_vars() triggers assertion error). (ilutov) + . Fixed bug GH-20270 (Broken parent hook call with named arguments). (ilutov) + . Fixed bug GH-20183 (Stale EG(opline_before_exception) pointer through eval). + (ilutov) + +- DOM: + . Partially fixed bug GH-16317 (DOM classes do not allow + __debugInfo() overrides to work). (nielsdos) + . Fixed bug GH-20281 (\Dom\Document::getElementById() is inconsistent + after nodes are removed). (nielsdos) + +- Exif: + . Fix possible memory leak when tag is empty. (nielsdos) + +- FPM: + . Fixed bug GH-19974 (fpm_status_export_to_zval segfault for parallel + execution). (Jakub Zelenka, txuna) + +- FTP: + . Fixed bug GH-20240 (FTP with SSL: ftp_fput(): Connection timed out on + successful writes). (nielsdos) + +- GD: + . Fixed bug GH-20070 (Return type violation in imagefilter when an invalid + filter is provided). (Girgias) + +- Intl: + . Fix memory leak on error in locale_filter_matches(). (nielsdos) + +- LibXML: + . Fix not thread safe schema/relaxng calls. (SpencerMalone, nielsdos) + +- MySQLnd: + . Fixed bug GH-8978 (SSL certificate verification fails (port doubled)). + (nielsdos) + . Fixed bug GH-20122 (getColumnMeta() for JSON-column in MySQL). (nielsdos) + +- Opcache: + . Fixed bug GH-20081 (access to uninitialized vars in preload_load()). + (Arnaud) + . Fixed bug GH-20121 (JIT broken in ZTS builds on MacOS 15). + (Arnaud, Shivam Mathur) + . Fixed bug GH-19875 (JIT 1205 segfault on large file compiled in subprocess). + (Arnaud) + . Fixed bug GH-20012 (heap buffer overflow in jit). (Arnaud) + . Partially fixed bug GH-17733 (Avoid calling wrong function when reusing file + caches across differing environments). (ilutov) + +- PgSql: + . Fix memory leak when first string conversion fails. (nielsdos) + . Fix segfaults when attempting to fetch row into a non-instantiable class + name. (Girgias, nielsdos) + +- Phar: + . Fix memory leak of argument in webPhar. (nielsdos) + . Fix memory leak when setAlias() fails. (nielsdos) + . Fix a bunch of memory leaks in phar_parse_zipfile() error handling. + (nielsdos) + . Fix file descriptor/memory leak when opening central fp fails. (nielsdos) + . Fix memleak+UAF when opening temp stream in buildFromDirectory() fails. + (nielsdos) + . Fix potential buffer length truncation due to usage of type int instead + of type size_t. (Girgias) + . Fix memory leak when openssl polyfill returns garbage. (nielsdos) + . Fix file descriptor leak in phar_zip_flush() on failure. (nielsdos) + . Fix memory leak when opening temp file fails while trying to open + gzip-compressed archive. (nielsdos) + . Fixed bug GH-20302 (Freeing a phar alias may invalidate + PharFileInfo objects). (nielsdos) + +- Random: + . Fix Randomizer::__serialize() w.r.t. INDIRECTs. (nielsdos) + +- Reflection: + . Fixed bug GH-20217 (ReflectionClass::isIterable() incorrectly returns true + for classes with property hooks). (alexandre-daubois) + +- SimpleXML: + . Partially fixed bug GH-16317 (SimpleXML does not allow __debugInfo() overrides + to work). (nielsdos) + +- Streams: + . Fixed bug GH-19798: XP_SOCKET XP_SSL (Socket stream modules): Incorrect + condition for Win32/Win64. (Jakub Zelenka) + +- Tidy: + . Fixed GH-19021 (improved tidyOptGetCategory detection). + (arjendekorte, David Carlier, Peter Kokot) + . Fix UAF in tidy when tidySetErrorBuffer() fails. (nielsdos) + +- XMLReader: + . Fix arginfo/zpp violations when LIBXML_SCHEMAS_ENABLED is not available. + (nielsdos) + +- Windows: + . Fix GH-19722 (_get_osfhandle asserts in debug mode when given a socket). + (dktapps) diff --git a/data/releases/8.4/8.4.15/release.json b/data/releases/8.4/8.4.15/release.json new file mode 100644 index 0000000000..b518e36148 --- /dev/null +++ b/data/releases/8.4/8.4.15/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.15", + "date": "20 Nov 2025", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-8.4.15.tar.gz", + "name": "PHP 8.4.15 (tar.gz)", + "sha256": "51d23c98073c1e88c98c12b175736a11316cd3d4753f8d060934e53e5a9945c3" + }, + { + "filename": "php-8.4.15.tar.bz2", + "name": "PHP 8.4.15 (tar.bz2)", + "sha256": "b7155bdd498d60d63e4bc320dc224863976d31b5bd9339699726c961255a3197" + }, + { + "filename": "php-8.4.15.tar.xz", + "name": "PHP 8.4.15 (tar.xz)", + "sha256": "a060684f614b8344f9b34c334b6ba8db1177555997edb5b1aceab0a4b807da7e" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.16/announcement.html b/data/releases/8.4/8.4.16/announcement.html new file mode 100644 index 0000000000..31dd2601ef --- /dev/null +++ b/data/releases/8.4/8.4.16/announcement.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/8.4.16/changes.txt b/data/releases/8.4/8.4.16/changes.txt new file mode 100644 index 0000000000..f27a766f22 --- /dev/null +++ b/data/releases/8.4/8.4.16/changes.txt @@ -0,0 +1,107 @@ +- Core: + . Sync all boost.context files with release 1.86.0. (mvorisek) + . Fixed bug GH-20435 (SensitiveParameter doesn't work for named argument + passing to variadic parameter). (ndossche) + . Fixed bug GH-20286 (use-after-destroy during userland stream_close()). + (ndossche, David Carlier) + +- Bz2: + . Fix assertion failures resulting in crashes with stream filter + object parameters. (ndossche) + +- Date: + . Fix crashes when trying to instantiate uninstantiable classes via date + static constructors. (ndossche) + +- DOM: + . Fix memory leak when edge case is hit when registering xpath callback. + (ndossche) + . Fixed bug GH-20395 (querySelector and querySelectorAll requires elements + in $selectors to be lowercase). (ndossche) + . Fix missing NUL byte check on C14NFile(). (ndossche) + +- Fibers: + . Fixed bug GH-20483 (ASAN stack overflow with fiber.stack_size INI + small value). (David Carlier) + +- FTP: + . Fixed bug GH-20601 (ftp_connect overflow on timeout). (David Carlier) + +- GD: + . Fixed bug GH-20511 (imagegammacorrect out of range input/output values). + (David Carlier) + . Fixed bug GH-20602 (imagescale overflow with large height values). + (David Carlier) + +- Intl: + . Fixed bug GH-20426 (Spoofchecker::setRestrictionLevel() error message + suggests missing constants). (DanielEScherzer) + +- LibXML: + . Fix some deprecations on newer libxml versions regarding input + buffer/parser handling. (ndossche) + +- MbString: + . Fixed bug GH-20491 (SLES15 compile error with mbstring oniguruma). + (ndossche) + . Fixed bug GH-20492 (mbstring compile warning due to non-strings). + (ndossche) + +- mysqli: + . Make mysqli_begin_transaction() report errors properly. (Kamil Tekiela) + +- MySQLnd: + . Fixed bug GH-20528 (Regression breaks mysql connexion using an IPv6 address + enclosed in square brackets). (Remi) + +- Opcache: + . Fixed bug GH-20329 (opcache.file_cache broken with full interned string + buffer). (Arnaud) + +- PDO: + . Fixed GHSA-8xr5-qppj-gvwj (PDO quoting result null deref). (CVE-2025-14180) + (Jakub Zelenka) + +- Phar: + . Fixed bug GH-20442 (Phar does not respect case-insensitiveness of + __halt_compiler() when reading stub). (ndossche, TimWolla) + . Fix broken return value of fflush() for phar file entries. (ndossche) + . Fix assertion failure when fseeking a phar file out of bounds. (ndossche) + +- PHPDBG: + . Fixed ZPP type violation in phpdbg_get_executable() and phpdbg_end_oplog(). + (Girgias) + +- SPL: + . Fixed bug GH-20614 (SplFixedArray incorrectly handles references + in deserialization). (ndossche) + +- Standard: + . Fix memory leak in array_diff() with custom type checks. (ndossche) + . Fixed bug GH-20583 (Stack overflow in http_build_query + via deep structures). (ndossche) + . Fixed GHSA-www2-q4fc-65wf (Null byte termination in dns_get_record()). + (ndossche) + . Fixed GHSA-h96m-rvf9-jgm2 (Heap buffer overflow in array_merge()). + (CVE-2025-14178) (ndossche) + . Fixed GHSA-3237-qqm7-mfv7 (Information Leak of Memory in getimagesize). + (CVE-2025-14177) (ndossche) + +- Streams: + . Fixed bug GH-20370 (User stream filters could violate typed property + constraints). (alexandre-daubois) + +- Tidy: + . Fixed bug GH-20374 (PHP with tidy and custom-tags). (ndossche) + +- XML: + . Fixed bug GH-20439 (xml_set_default_handler() does not properly handle + special characters in attributes when passing data to callback). (ndossche) + +- Zip: + . Fix crash in property existence test. (ndossche) + . Don't truncate return value of zip_fread() with user sizes. (ndossche) + +- Zlib: + . Fix assertion failures resulting in crashes with stream filter + object parameters. (ndossche) diff --git a/data/releases/8.4/8.4.16/release.json b/data/releases/8.4/8.4.16/release.json new file mode 100644 index 0000000000..f5814d33e4 --- /dev/null +++ b/data/releases/8.4/8.4.16/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.16", + "date": "18 Dec 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.4.16.tar.gz", + "name": "PHP 8.4.16 (tar.gz)", + "sha256": "8e35d24f148ea7c2a93e9b9bcc329e8bf78b5bb922f3723a727c74c19d184e98" + }, + { + "filename": "php-8.4.16.tar.bz2", + "name": "PHP 8.4.16 (tar.bz2)", + "sha256": "6c48c65eba6a2f7a102925d08772239b1f45110aed2187fdd81b933ed439c692" + }, + { + "filename": "php-8.4.16.tar.xz", + "name": "PHP 8.4.16 (tar.xz)", + "sha256": "f66f8f48db34e9e29f7bfd6901178e9cf4a1b163e6e497716dfcb8f88bcfae30" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.17/announcement.html b/data/releases/8.4/8.4.17/announcement.html new file mode 100644 index 0000000000..7a51c9bacc --- /dev/null +++ b/data/releases/8.4/8.4.17/announcement.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/8.4.17/changes.txt b/data/releases/8.4/8.4.17/changes.txt new file mode 100644 index 0000000000..1f0e6df925 --- /dev/null +++ b/data/releases/8.4/8.4.17/changes.txt @@ -0,0 +1,66 @@ +- Core: + . Fix OSS-Fuzz #465488618 (Wrong assumptions when dumping function signature + with dynamic class const lookup default argument). (ilutov) + . Fixed bug GH-20695 (Assertion failure in normalize_value() when parsing + malformed INI input via parse_ini_string()). (ndossche) + . Fixed bug GH-20714 (Uncatchable exception thrown in generator). (ilutov) + . Fixed bug GH-20352 (UAF in php_output_handler_free via re-entrant + ob_start() during error deactivation). (ndossche) + +- Bz2: + . Fixed bug GH-20620 (bzcompress overflow on large source size). + (David Carlier) + +- DOM: + . Fixed bug GH-20722 (Null pointer dereference in DOM namespace node cloning + via clone on malformed objects). (ndossche) + . Fixed bug GH-20444 (Dom\XMLDocument::C14N() seems broken compared + to DOMDocument::C14N()). (ndossche) + +- GD: + . Fixed bug GH-20622 (imagestring/imagestringup overflow). (David Carlier) + +- Intl: + . Fix leak in umsg_format_helper(). (ndossche) + +- LDAP: + . Fix memory leak in ldap_set_options(). (ndossche) + +- Mbstring: + . Fixed bug GH-20674 (mb_decode_mimeheader does not handle separator). + (Yuya Hamada) + +- OpenSSL: + . Fixed bug GH-20802 (undefined behavior with invalid SNI_server_certs + options). (David Carlier) + +- PCNTL: + . Fixed bug with pcntl_getcpuaffinity() on solaris regarding invalid + process ids handling. (David Carlier) + +- Phar: + . Fixed bug GH-20732 (Phar::LoadPhar undefined behavior when reading fails). + (ndossche) + . Fix SplFileInfo::openFile() in write mode. (ndossche) + . Fix build on legacy OpenSSL 1.1.0 systems. (Giovanni Giacobbi) + . Fixed bug #74154 (Phar extractTo creates empty files). (ndossche) + +- POSIX: + . Fixed crash on posix groups to php array creation on macos. + (David Carlier) + +- SPL: + . Fixed bug GH-20678 (resource created by GlobIterator crashes with fclose()). + (David Carlier) + +- Sqlite3: + . Fixed bug GH-20699 (SQLite3Result fetchArray return array|false, + null returned). (ndossche, plusminmax) + +- Standard: + . Fix error check for proc_open() command. (ndossche) + . Fix memory leak in mail() when header key is numeric. (Girgias) + . Fixed bug GH-20582 (Heap Buffer Overflow in iptcembed). (ndossche) + +- Zlib: + . Fix OOB gzseek() causing assertion failure. (ndossche) diff --git a/data/releases/8.4/8.4.17/release.json b/data/releases/8.4/8.4.17/release.json new file mode 100644 index 0000000000..8980d85bd0 --- /dev/null +++ b/data/releases/8.4/8.4.17/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.17", + "date": "15 Jan 2026", + "tags": [], + "source": [ + { + "filename": "php-8.4.17.tar.gz", + "name": "PHP 8.4.17 (tar.gz)", + "sha256": "aa0efeb7b47adff31e10bed1fc4ffcd4c0b5a4d41ab0bacfbb549c584939ee90" + }, + { + "filename": "php-8.4.17.tar.bz2", + "name": "PHP 8.4.17 (tar.bz2)", + "sha256": "ea67d83d72dd6f3abaaeae7f532f78fd12192861d96aba8e9eca3b2ddade42d2" + }, + { + "filename": "php-8.4.17.tar.xz", + "name": "PHP 8.4.17 (tar.xz)", + "sha256": "28b234e347286158cae921d61283eb1169d89bc9d2e5f5976567260ff38b0bfa" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.18/announcement.html b/data/releases/8.4/8.4.18/announcement.html new file mode 100644 index 0000000000..5134f8d3e9 --- /dev/null +++ b/data/releases/8.4/8.4.18/announcement.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/8.4.18/changes.txt b/data/releases/8.4/8.4.18/changes.txt new file mode 100644 index 0000000000..471a937d78 --- /dev/null +++ b/data/releases/8.4/8.4.18/changes.txt @@ -0,0 +1,60 @@ +- Core: + . Fixed bug GH-20837 (NULL dereference when calling ob_start() in shutdown + function triggered by bailout in php_output_lock_error()). (timwolla) + . Fix OSS-Fuzz #471533782 (Infinite loop in GC destructor fiber). (ilutov) + . Fix OSS-Fuzz #472563272 (Borked block_pass JMP[N]Z optimization). (ilutov) + . Fixed bug GH-GH-20914 (Internal enums can be cloned and compared). (Arnaud) + . Fix OSS-Fuzz #474613951 (Leaked parent property default value). (ilutov) + . Fixed bug GH-20766 (Use-after-free in FE_FREE with GC interaction). (Bob) + . Fix OSS-Fuzz #471486164 (Broken by-ref assignment to uninitialized hooked + backing value). (ilutov) + . Fix OSS-Fuzz #438780145 (Nested finally with repeated return type check may + uaf). (ilutov) + . Fixed bug GH-20905 (Lazy proxy bailing __clone assertion). (ilutov) + . Fixed bug GH-20479 (Hooked object properties overflow). (ndossche) + +- Date: + . Update timelib to 2022.16. (Derick) + +- DOM: + . Fixed GH-21041 (Dom\HTMLDocument corrupts closing tags within scripts). + (lexborisov) + +- MbString: + . Fixed bug GH-20833 (mb_str_pad() divide by zero if padding string is + invalid in the encoding). (ndossche) + . Fixed bug GH-20836 (Stack overflow in mb_convert_variables with + recursive array references). (alexandre-daubois) + +- Opcache: + . Fixed bug GH-20818 (Segfault in Tracing JIT with object reference). + (khasinski) + +- OpenSSL: + . Fix memory leaks when sk_X509_new_null() fails. (ndossche) + . Fix crash when in openssl_x509_parse() when i2s_ASN1_INTEGER() fails. + (ndossche) + . Fix crash in openssl_x509_parse() when X509_NAME_oneline() fails. + (ndossche) + +- Phar: + . Fixed bug GH-20882 (buildFromIterator breaks with missing base directory). + (ndossche) + +- PGSQL: + . Fixed INSERT/UPDATE queries building with PQescapeIdentifier() and possible + UB. (David Carlier) + +- Readline: + . Fixed bug GH-18139 (Memory leak when overriding some settings + via readline_info()). (ndossche) + +- SPL: + . Fixed bug GH-20856 (heap-use-after-free in SplDoublyLinkedList iterator + when modifying during iteration). (ndossche) + +- Standard: + . Fixed bug #74357 (lchown fails to change ownership of symlink with ZTS) + (Jakub Zelenka) + . Fixed bug GH-20843 (var_dump() crash with nested objects) + (David Carlier) diff --git a/data/releases/8.4/8.4.18/release.json b/data/releases/8.4/8.4.18/release.json new file mode 100644 index 0000000000..85bc9c1b26 --- /dev/null +++ b/data/releases/8.4/8.4.18/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.18", + "date": "12 Feb 2026", + "tags": [], + "source": [ + { + "filename": "php-8.4.18.tar.gz", + "name": "PHP 8.4.18 (tar.gz)", + "sha256": "79636f2890976e7507123988c4750e592a6eb35cd407bfa7d2bb35ad15af3a06" + }, + { + "filename": "php-8.4.18.tar.bz2", + "name": "PHP 8.4.18 (tar.bz2)", + "sha256": "586b32d92cebcfbca495c5f6ad1a33640553d0a9c0bfd2e6715334d959cf9858" + }, + { + "filename": "php-8.4.18.tar.xz", + "name": "PHP 8.4.18 (tar.xz)", + "sha256": "957a9b19b4a8e965ee0cc788ca74333bfffaadc206b58611b6cd3cc8b2f40110" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.19/announcement.html b/data/releases/8.4/8.4.19/announcement.html new file mode 100644 index 0000000000..da1bf44743 --- /dev/null +++ b/data/releases/8.4/8.4.19/announcement.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/8.4.19/changes.txt b/data/releases/8.4/8.4.19/changes.txt new file mode 100644 index 0000000000..1041f516f3 --- /dev/null +++ b/data/releases/8.4/8.4.19/changes.txt @@ -0,0 +1,75 @@ +- Core: + . Fixed bug GH-21029 (zend_mm_heap corrupted on Aarch64, LTO builds). (Arnaud) + . Fixed bug GH-20657 (Assertion failure in zend_lazy_object_get_info triggered + by setRawValueWithoutLazyInitialization() and newLazyGhost()). (Arnaud) + . Fixed bug GH-20504 (Assertion failure in zend_get_property_guard when + accessing properties on Reflection LazyProxy via isset()). (Arnaud) + . Fixed OSS-Fuzz #478009707 (Borked assign-op/inc/dec on untyped hooked + property backing value). (ilutov) + . Fixed bug GH-21215 (Build fails with -std=). (Arnaud) + . Fixed bug GH-13674 (Build system installs libtool wrappers when using + slibtool). (Michael Orlitzky) + +- Curl: + . Fixed bug GH-21023 (CURLOPT_XFERINFOFUNCTION crash with a null callback). + (David Carlier) + . Don't truncate length. (ndossche) + +- Date: + . Fixed bug GH-20936 (DatePeriod::__set_state() cannot handle null start). + (ndossche) + . Fix timezone offset with seconds losing precision. (ndossche) + +- DOM: + . Fixed bug GH-21077 (Accessing Dom\Node::baseURI can throw TypeError). + (ndossche) + . Fixed bug GH-21097 (Accessing Dom\Node properties can can throw TypeError). + (ndossche) + +- MBString: + . Fixed bug GH-21223; mb_guess_encoding no longer crashes when passed huge + list of candidate encodings (with 200,000+ entries). (Jordi Kroon) + +- Opcache: + . Fixed bug GH-20718 ("Insufficient shared memory" when using JIT on Solaris). + (Petr Sumbera) + . Fixed bug GH-21227 (Borked SCCP of array containing partial object). + (ilutov) + . Fixed bug GH-21052 (Preloaded constant erroneously propagated to file-cached + script). (ilutov) + +- OpenSSL: + . Fix a bunch of leaks and error propagation. (ndossche) + +- PCNTL: + . Fixed pcntl_setns() internal errors handling regarding errnos. + (David Carlier/ndossche) + . Fixed cpuset leak in pcntl_setcpuaffinity on out-of-range CPU ID + on NetBSD/Solaris platforms. (David Carlier) + . Fixed pcntl_signal() signal table registering the callback first + OS-wise before the internal list. (David Carlier) + . Fixed pcntl_signal_dispatch() stale pointer and exception + handling. (David Carlier) + +- PCRE: + . Fixed preg_match memory leak with invalid regexes. (David Carlier) + . Fixed pcre2_code leak when pcre2_pattern_info() fails after a + successful pcre2_compile(), and match_sets/match_data/marks leaks + in php_pcre_match_impl(). (David Carlier) + +- PDO_PGSQL: + . Fixed bug GH-21055 (connection attribute status typo for GSS negotiation). + (lsaos) + +- PGSQL: + . Fixed bug GH-21162 (pg_connect() memory leak on error). + (David Carlier) + +- Sockets: + . Fixed bug GH-21161 (socket_set_option() crash with array 'addr' + entry as null). (David Carlier) + . Fixed possible addr length overflow with socket_connect() and AF_UNIX + family sockets. (David Carlier) + +- Windows: + . Fixed compilation with clang (missing intrin.h include). (Kévin Dunglas) diff --git a/data/releases/8.4/8.4.19/release.json b/data/releases/8.4/8.4.19/release.json new file mode 100644 index 0000000000..ceb3fb4dc9 --- /dev/null +++ b/data/releases/8.4/8.4.19/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.19", + "date": "12 Mar 2026", + "tags": [], + "source": [ + { + "filename": "php-8.4.19.tar.gz", + "name": "PHP 8.4.19 (tar.gz)", + "sha256": "9e862435ffb533dc5b0eb486170a74e5f7c8095e8eb8819a2ff5aad430292a18" + }, + { + "filename": "php-8.4.19.tar.bz2", + "name": "PHP 8.4.19 (tar.bz2)", + "sha256": "bceb7798ed37b442fe523ae7ef345ccc2231db0b022d30735c2e378d3254a0d4" + }, + { + "filename": "php-8.4.19.tar.xz", + "name": "PHP 8.4.19 (tar.xz)", + "sha256": "11f7164ab26d356c31f94d3d69cc0e0707d5d2d6494a221aaeae307c08eaaa1c" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.2/announcement.html b/data/releases/8.4/8.4.2/announcement.html new file mode 100644 index 0000000000..9ad2f3650e --- /dev/null +++ b/data/releases/8.4/8.4.2/announcement.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/8.4.2/changes.txt b/data/releases/8.4/8.4.2/changes.txt new file mode 100644 index 0000000000..79235c97be --- /dev/null +++ b/data/releases/8.4/8.4.2/changes.txt @@ -0,0 +1,59 @@ +- BcMath: + . Fixed bug GH-16978 (Avoid unnecessary padding with leading zeros). + (Saki Takamachi) + +- COM: + . Fixed bug GH-16991 (Getting typeinfo of non DISPATCH variant segfaults). + (cmb) + +- Core: + . Fixed bug GH-16344 (setRawValueWithoutLazyInitialization() and + skipLazyInitialization() may change initialized proxy). (Arnaud) + . Fix is_zend_ptr() huge block comparison. (nielsdos) + . Fixed potential OOB read in zend_dirname() on Windows. (cmb) + . Fixed bug GH-15964 (printf() can strip sign of -INF). (divinity76, cmb) + +- Curl: + . Fix various memory leaks in curl mime handling. (nielsdos) + +- DBA: + . Fixed bug GH-16990 (dba_list() is now zero-indexed instead of using + resource ids) (kocsismate) + +- DOM: + . Fixed bug GH-16906 (Reloading document can cause UAF in iterator). + (nielsdos) + +- FPM: + . Fixed bug GH-16932 (wrong FPM status output). (Jakub Zelenka, James Lucas) + +- GMP: + . Fixed bug GH-16890 (array_sum() with GMP can loose precision (LLP64)). + (cmb) + +- Opcache: + . Fixed bug GH-16851 (JIT_G(enabled) not set correctly on other threads). + (dktapps) + . Fixed bug GH-16902 (Set of opcache tests fail zts+aarch64). (nielsdos) + . Fixed bug GH-16879 (JIT dead code skipping does not update call_level). + (nielsdos) + +- SAPI: + . Fixed bug GH-16998 (UBSAN warning in rfc1867). (nielsdos) + +- PHPDBG: + . Fixed bug GH-15208 (Segfault with breakpoint map and phpdbg_clear()). + (nielsdos) + +- Standard: + . Fixed bug GH-16905 (Internal iterator functions can't handle UNDEF + properties). (nielsdos) + . Fixed bug GH-16957 (Assertion failure in array_shift with + self-referencing array). (nielsdos) + +- Streams: + . Fixed network connect poll interuption handling. (Jakub Zelenka) + +- Windows: + . Fixed bug GH-16849 (Error dialog causes process to hang). (cmb) + . Windows Server 2025 is now properly reported. (cmb) diff --git a/data/releases/8.4/8.4.2/release.json b/data/releases/8.4/8.4.2/release.json new file mode 100644 index 0000000000..48e54251da --- /dev/null +++ b/data/releases/8.4/8.4.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.2", + "date": "19 Dec 2024", + "tags": [], + "source": [ + { + "filename": "php-8.4.2.tar.gz", + "name": "PHP 8.4.2 (tar.gz)", + "sha256": "5d3cf82a7f4cafdcfc4f3d98f3e3ee81077ae57c709a5613cbff5834d78a7747" + }, + { + "filename": "php-8.4.2.tar.bz2", + "name": "PHP 8.4.2 (tar.bz2)", + "sha256": "ef4fe9921b885ce3b047792ab60260eaf657e22812be511d19d0e45edf984783" + }, + { + "filename": "php-8.4.2.tar.xz", + "name": "PHP 8.4.2 (tar.xz)", + "sha256": "92636453210f7f2174d6ee6df17a5811368f556a6c2c2cbcf019321e36456e01" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.20/announcement.html b/data/releases/8.4/8.4.20/announcement.html new file mode 100644 index 0000000000..8b0bd52624 --- /dev/null +++ b/data/releases/8.4/8.4.20/announcement.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/8.4.20/changes.txt b/data/releases/8.4/8.4.20/changes.txt new file mode 100644 index 0000000000..c0d3a5daeb --- /dev/null +++ b/data/releases/8.4/8.4.20/changes.txt @@ -0,0 +1,65 @@ +- Bz2: + . Fix truncation of total output size causing erroneous errors. (ndossche) + +- Core: + . Fixed bugs GH-20875, GH-20873, GH-20854 (Propagate IN_GET guard in + get_property_ptr_ptr for lazy proxies). (iliaal) + +- DOM: + . Fixed bug GH-21486 (Dom\HTMLDocument parser mangles xml:space and + xml:lang attributes). (ndossche) + +- FFI: + . Fixed resource leak in FFI::cdef() onsymbol resolution failure. + (David Carlier) + +- GD: + . Fixed bug GH-21431 (phpinfo() to display libJPEG 10.0 support). + (David Carlier) + +- Opcache: + . Fixed bug GH-20838 (JIT compiler produces wrong arithmetic results). + (Dmitry, iliaal) + . Fixed bug GH-21267 (JIT tracing: infinite loop on FETCH_OBJ_R with + IS_UNDEF property in polymorphic context). (Dmitry, iliaal) + . Fixed bug GH-21395 (uaf in jit). (ndossche) + +- OpenSSL: + . Fixed bug GH-21083 (Skip private_key_bits validation for EC/curve-based + keys). (iliaal) + . Fix missing error propagation for BIO_printf() calls. (ndossche) + +- PCRE: + . Fixed re-entrancy issue on php_pcre_match_impl, php_pcre_replace_impl, + php_pcre_split_impl, and php_pcre_grep_impl. (David Carlier) + +- PGSQL: + . Fixed preprocessor silently guarding PGSQL_SUPPRESS_TIMESTAMPS support + due to a typo. (KentarouTakeda) + +- SNMP: + . Fixed bug GH-21336 (SNMP::setSecurity() undefined behavior with + NULL arguments). (David Carlier) + +- SOAP: + . Fixed Set-Cookie parsing bug wrong offset while scanning attributes. + (David Carlier) + +- SPL: + . Fixed bug GH-21454 (missing write lock validation in SplHeap). + (ndossche) + +- Standard: + . Fixed bug GH-20906 (Assertion failure when messing up output buffers). + (ndossche) + . Fixed bug GH-20627 (Cannot identify some avif images with getimagesize). + (y-guyon) + +- Sysvshm: + . Fix memory leak in shm_get_var() when variable is corrupted. (ndossche) + +- XSL: + . Fix GH-21357 (XSLTProcessor works with DOMDocument, but fails with + Dom\XMLDocument). (ndossche) + . Fixed bug GH-21496 (UAF in dom_objects_free_storage). + (David Carlier/ndossche) diff --git a/data/releases/8.4/8.4.20/release.json b/data/releases/8.4/8.4.20/release.json new file mode 100644 index 0000000000..f5ae6302e0 --- /dev/null +++ b/data/releases/8.4/8.4.20/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.20", + "date": "09 Apr 2026", + "tags": [], + "source": [ + { + "filename": "php-8.4.20.tar.gz", + "name": "PHP 8.4.20 (tar.gz)", + "sha256": "a2def5d534d57c6a0236f2265de7537608af871900a4f7955eff463e9e38247d" + }, + { + "filename": "php-8.4.20.tar.bz2", + "name": "PHP 8.4.20 (tar.bz2)", + "sha256": "ce25d2610a5f9522ac8f53fbb7b8280b5c021991e9bd9137068c9c629d9ffb56" + }, + { + "filename": "php-8.4.20.tar.xz", + "name": "PHP 8.4.20 (tar.xz)", + "sha256": "e454c6f7c89a42f41ebb06dc5c3578e8c8b5f1a3f0da6675665affab04e221f7" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.21/announcement.html b/data/releases/8.4/8.4.21/announcement.html new file mode 100644 index 0000000000..439481a264 --- /dev/null +++ b/data/releases/8.4/8.4.21/announcement.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/8.4.21/changes.txt b/data/releases/8.4/8.4.21/changes.txt new file mode 100644 index 0000000000..03d0c4a87a --- /dev/null +++ b/data/releases/8.4/8.4.21/changes.txt @@ -0,0 +1,107 @@ +- Core: + . Fixed bug GH-19983 (GC assertion failure with fibers, generators and + destructors). (iliaal) + . Fixed bug GH-21478 (Forward property operations to real instance for + initialized lazy proxies). (iliaal) + . Fixed bug GH-21605 (Missing addref for Countable::count()). (ilutov) + . Fixed bug GH-21699 (Assertion failure in shutdown_executor when resolving + self::/parent::/static:: callables if the error handler throws). (macoaure) + . Fixed bug GH-21603 (Missing addref for __unset). (ilutov) + . Fixed bug GH-21760 (Trait with class constant name conflict against + enum case causes SEGV). (Pratik Bhujel) + +- CLI: + . Fixed bug GH-21754 (`--rf` command line option with a method triggers + ext/reflection deprecation warnings). (DanielEScherzer) + +- Curl: + . Add support for brotli and zstd on Windows. (Shivam Mathur) + +- DOM: + . Fixed GHSA-4jhr-8w89-j733 and GH-21566 (Dom\XMLDocument::C14N() emits + duplicate xmlns declarations after setAttributeNS()). (CVE-2026-7263) + (David Carlier) + . Fixed bug GH-21688 (segmentation fault on empty HTMLDocument). + (David Carlier) + . Upgrade to lexbor v2.7.0. (CVE-2026-29078, CVE-2026-29079) + (ndossche, ilutov) + . Fixed bug GH-21544 (Dom\XMLDocument::C14N*( drops namespace declarations + on DOM-built documents). (David Carlier, ndossche) + +- FPM: + . Fixed GHSA-7qg2-v9fj-4mwv (XSS within status endpoint). (CVE-2026-6735) + (Jakub Zelenka) + +- Iconv: + . Fixed bug GH-17399 (iconv memory leak on bailout). (iliaal) + +- MBString: + . Fixed GHSA-wm6j-2649-pv75 (Null pointer dereference in + php_mb_check_encoding() via mb_ereg_search_init()). (CVE-2026-7259) + (vi3tL0u1s) + . Fixed GHSA-74r9-qxhc-fx53 (Out-of-bounds access in mbfl_name2encoding_ex()). + (CVE-2026-6104) (ilutov) + +- Opcache: + . Fixed bug GH-21158 (JIT: Assertion jit->ra[var].flags & (1<<0) failed in + zend_jit_use_reg). (Arnaud) + . Fixed bug GH-21593 (Borked function JIT JMPNZ smart branch). (ilutov) + . Fixed bug GH-21460 (COND optimization regression). (Dmitry, Arnaud) + . Fixed faulty returns out of zend_try block in zend_jit_trace(). (ilutov) + +- OpenSSL: + . Fix a bunch of memory leaks and crashes on edge cases. (ndossche) + +- PDO_Firebird: + . Fixed GHSA-w476-322c-wpvm (SQL injection via NUL bytes in quoted strings). + (CVE-2025-14179) (SakiTakamachi) + +- Phar: + . Restore is_link handler in phar_intercept_functions_shutdown. (iliaal) + . Fixed bug GH-21797 (phar: NULL dereference in Phar::webPhar() when + SCRIPT_NAME is absent from SAPI environment). (iliaal) + . Fix memory leak in Phar::offsetGet(). (iliaal) + . Fix memory leak in phar_add_file(). (iliaal) + . Fixed bug GH-21799 (phar: propagate phar_stream_flush return value from + phar_stream_close). (iliaal) + . Fix memory leak in phar_verify_signature() when md_ctx is invalid. + (JarneClauw) + +- Random: + . Fixed bug GH-21731 (Random\Engine\Xoshiro256StarStar::__unserialize() + accepts all-zero state). (iliaal) + +- Session: + . Fixed memory leak when session GC callback return a refcounted value. + (jorgsowa) + +- SOAP: + . Fixed GHSA-85c2-q967-79q5 (Stale SOAP_GLOBAL(ref_map) pointer with Apache + Map). (CVE-2026-6722) (ilutov) + . Fixed GHSA-m33r-qmcv-p97q (Use-after-free after header parsing failure with + SOAP_PERSISTENCE_SESSION). (CVE-2026-7261) (ilutov) + . Fixed GHSA-hmxp-6pc4-f3vv (Broken Apache map value NULL check). + (CVE-2026-7262) (ilutov) + +- SPL: + . Fixed bug GH-21499 (RecursiveArrayIterator getChildren UAF after parent + free). (Girgias) + . Fix concurrent iteration and deletion issues in SplObjectStorage. + (ndossche) + +- Standard: + . Fixed GHSA-96wq-48vp-hh57 (Signed integer overflow of char array offset). + (CVE-2026-7568) (TimWolla) + . Fixed GHSA-m8rr-4c36-8gq4 (Consistently pass unsigned char to ctype.h + functions). (CVE-2026-7258) (ilutov) + +- Streams: + . Fixed bug GH-21468 (Segfault in file_get_contents w/ a https URL + and a proxy set). (ndossche) + +- XSL: + . Fixed bug GH-21600 (Segfault on module shutdown). (David Carlier) + +- Zip: + . Fixed bug GH-21698 (memory leak with ZipArchive::addGlob() + early return statements). (David Carlier) diff --git a/data/releases/8.4/8.4.21/release.json b/data/releases/8.4/8.4.21/release.json new file mode 100644 index 0000000000..deb9dc37c7 --- /dev/null +++ b/data/releases/8.4/8.4.21/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.21", + "date": "07 May 2026", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.4.21.tar.gz", + "name": "PHP 8.4.21 (tar.gz)", + "sha256": "db96ee0a8e5ee7b73a4913a2aeddc162ba2ef16cd34b9347b5b9a6150e1f8e48" + }, + { + "filename": "php-8.4.21.tar.bz2", + "name": "PHP 8.4.21 (tar.bz2)", + "sha256": "5e0bd287f3be35bf57c211b010527ae5e10a88170f96e64d336044eb5faef430" + }, + { + "filename": "php-8.4.21.tar.xz", + "name": "PHP 8.4.21 (tar.xz)", + "sha256": "7cf5d8ab12c3b2016875bcfaec71bef1ef0b07bed6148f2c447577074431f984" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.22/changes.txt b/data/releases/8.4/8.4.22/changes.txt new file mode 100644 index 0000000000..607e916a2b --- /dev/null +++ b/data/releases/8.4/8.4.22/changes.txt @@ -0,0 +1,36 @@ +- Date: + . Fixed bug GH-18422 (int overflow in php_date_llabs). (iliaal) + +- Intl: + . Fix incorrect argument positions in out-of-bounds errors for + IntlCalendar::set(), IntlCalendar::setDate(), IntlCalendar::setDateTime(), + and IntlGregorianCalendar date/time construction. (Weilin Du) + . Expose Spoofchecker restriction-level APIs on all supported ICU + versions. (Weilin Du) + . Fix SpoofChecker::setAllowedChars() and IntlDateFormatter::__construct() + to report PHP constant names instead of ICU constant names in + user-visible error messages. + (Weilin Du) + +- MySQLnd: + . Fix persistent free of non-persistent connect_attr key (David Carlier). + +- Opcache: + . Fixed tracing JIT crash when a VM interrupt is handled during an observed + user function call. (Levi Morrison) + . Fixed bug GH-22004 (Assertion failure at ext/opcache/jit/zend_jit_trace.c). + (Arnaud) + +- OpenSSL: + . Fix compatibility issues with OpenSSL 4.0. (jordikroon, Remi) + +- SPL: + . Fix SplFixedArray::setSize leak when destructor grows during clear. + (David Carlier) + . Fixed bug GH-21933 (use after free of self-freeing MultipleIterator + children). (David Carlier) + +- Standard: + . Fixed bug GH-21689 (version_compare() incorrectly handles versions ending + with a dot). (timwolla) + . Fixed ip2long() leading zeros handling inconsistency on AIX. (ayappanec) diff --git a/data/releases/8.4/8.4.22/release.json b/data/releases/8.4/8.4.22/release.json new file mode 100644 index 0000000000..116f4995e5 --- /dev/null +++ b/data/releases/8.4/8.4.22/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.22", + "date": "04 Jun 2026", + "tags": [], + "source": [ + { + "filename": "php-8.4.22.tar.gz", + "name": "PHP 8.4.22 (tar.gz)", + "sha256": "a012c2c9724baf214a70b41b40a7e130906b8855e54268afa5bc4ae17bc9d823" + }, + { + "filename": "php-8.4.22.tar.bz2", + "name": "PHP 8.4.22 (tar.bz2)", + "sha256": "4b16e7e2c384ce25e07d28eb949855c4b4fe0d1b7b9ec9c8eebd05d0cfa9c532" + }, + { + "filename": "php-8.4.22.tar.xz", + "name": "PHP 8.4.22 (tar.xz)", + "sha256": "696c0f6ad92e94c59059c1eb6e300842b8d050934226efcdf00f2a413cb083cf" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.3/announcement.html b/data/releases/8.4/8.4.3/announcement.html new file mode 100644 index 0000000000..03c257c221 --- /dev/null +++ b/data/releases/8.4/8.4.3/announcement.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/8.4.3/changes.txt b/data/releases/8.4/8.4.3/changes.txt new file mode 100644 index 0000000000..ec4ef73cdb --- /dev/null +++ b/data/releases/8.4/8.4.3/changes.txt @@ -0,0 +1,126 @@ +- BcMath: + . Fixed bug GH-17049 (Correctly compare 0 and -0). (Saki Takamachi) + . Fixed bug GH-17061 (Now Number::round() does not remove trailing zeros). + (Saki Takamachi) + . Fixed bug GH-17064 (Correctly round rounding mode with zero edge case). + (Saki Takamachi) + . Fixed bug GH-17275 (Fixed the calculation logic of dividend scale). + (Saki Takamachi) + +- Core: + . Fixed bug OSS-Fuzz #382922236 (Duplicate dynamic properties in hooked object + iterator properties table). (ilutov) + . Fixed unstable get_iterator pointer for hooked classes in shm on Windows. + (ilutov) + . Fixed bug GH-17106 (ZEND_MATCH_ERROR misoptimization). (ilutov) + . Fixed bug GH-17162 (zend_array_try_init() with dtor can cause engine UAF). + (nielsdos) + . Fixed bug GH-17101 (AST->string does not reproduce constructor property + promotion correctly). (nielsdos) + . Fixed bug GH-17200 (Incorrect dynamic prop offset in hooked prop iterator). + (ilutov) + . Fixed bug GH-17216 (Trampoline crash on error). (nielsdos) + +- DBA: + . Skip test if inifile is disabled. (orlitzky) + +- DOM: + . Fixed bug GH-17145 (DOM memory leak). (nielsdos) + . Fixed bug GH-17201 (Dom\TokenList issues with interned string replace). + (nielsdos) + . Fixed bug GH-17224 (UAF in importNode). (nielsdos) + +- Embed: + . Make build command for program using embed portable. (dunglas) + +- FFI: + . Fixed bug #79075 (FFI header parser chokes on comments). (nielsdos) + . Fix memory leak on ZEND_FFI_TYPE_CHAR conversion failure. (nielsdos) + . Fixed bug GH-16013 and bug #80857 (Big endian issues). (Dmitry, nielsdos) + +- Fileinfo: + . Fixed bug GH-17039 (PHP 8.4: Incorrect MIME content type). (nielsdos) + +- FPM: + . Fixed bug GH-13437 (FPM: ERROR: scoreboard: failed to lock (already + locked)). (Jakub Zelenka) + . Fixed bug GH-17112 (Macro redefinitions). (cmb, nielsdos) + . Fixed bug GH-17208 (bug64539-status-json-encoding.phpt fail on 32-bits). + (nielsdos) + +- GD: + . Fixed bug GH-16255 (Unexpected nan value in ext/gd/libgd/gd_filter.c). + (nielsdos, cmb) + . Ported fix for libgd bug 276 (Sometimes pixels are missing when storing + images as BMPs). (cmb) + +- Gettext: + . Fixed bug GH-17202 (Segmentation fault ext/gettext/gettext.c + bindtextdomain()). (Michael Orlitzky) + +- Iconv: + . Fixed bug GH-17047 (UAF on iconv filter failure). (nielsdos) + +- LDAP: + . Fixed bug GH-17280 (ldap_search() fails when $attributes array has holes). + (nielsdos) + +- LibXML: + . Fixed bug GH-17223 (Memory leak in libxml encoding handling). (nielsdos) + +- MBString: + . Fixed bug GH-17112 (Macro redefinitions). (nielsdos, cmb) + +- Opcache: + . opcache_get_configuration() properly reports jit_prof_threshold. (cmb) + . Fixed bug GH-17140 (Assertion failure in JIT trace exit with + ZEND_FETCH_DIM_FUNC_ARG). (nielsdos, Dmitry) + . Fixed bug GH-17151 (Incorrect RC inference of op1 of FETCH_OBJ and + INIT_METHOD_CALL). (Dmitry, ilutov) + . Fixed bug GH-17246 (GC during SCCP causes segfault). (Dmitry) + . Fixed bug GH-17257 (UBSAN warning in ext/opcache/jit/zend_jit_vm_helpers.c). + (nielsdos, Dmitry) + +- PCNTL: + . Fix memory leak in cleanup code of pcntl_exec() when a non stringable + value is encountered past the first entry. (Girgias) + +- PgSql: + . Fixed bug GH-17158 (pg_fetch_result Shows Incorrect ArgumentCountError + Message when Called With 1 Argument). (nielsdos) + . Fixed further ArgumentCountError for calls with flexible + number of arguments. (David Carlier) + +- Phar: + . Fixed bug GH-17137 (Segmentation fault ext/phar/phar.c). (nielsdos) + +- SimpleXML: + . Fixed bug GH-17040 (SimpleXML's unset can break DOM objects). (nielsdos) + . Fixed bug GH-17153 (SimpleXML crash when using autovivification on + document). (nielsdos) + +- Sockets: + . Fixed bug GH-16276 (socket_strerror overflow handling with INT_MIN). + (David Carlier / cmb) + . Fixed overflow on SO_LINGER values setting, strengthening values check + on SO_SNDTIMEO/SO_RCVTIMEO for socket_set_option(). + (David Carlier) + +- SPL: + . Fixed bug GH-17198 (SplFixedArray assertion failure with get_object_vars). + (nielsdos) + . Fixed bug GH-17225 (NULL deref in spl_directory.c). (nielsdos) + +- Streams: + . Fixed bug GH-17037 (UAF in user filter when adding existing filter name due + to incorrect error handling). (nielsdos) + . Fixed bug GH-16810 (overflow on fopen HTTP wrapper timeout value). + (David Carlier) + . Fixed bug GH-17067 (glob:// wrapper doesn't cater to CWD for ZTS builds). + (cmb) + +- Windows: + . Hardened proc_open() against cmd.exe hijacking. (cmb) + +- XML: + . Fixed bug GH-1718 (unreachable program point in zend_hash). (nielsdos) diff --git a/data/releases/8.4/8.4.3/release.json b/data/releases/8.4/8.4.3/release.json new file mode 100644 index 0000000000..e0cf37d4cb --- /dev/null +++ b/data/releases/8.4/8.4.3/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.3", + "date": "16 Jan 2025", + "tags": [], + "source": [ + { + "filename": "php-8.4.3.tar.gz", + "name": "PHP 8.4.3 (tar.gz)", + "sha256": "45b88555b31487401b42c8bd36f2c45d84992bc93ae4c1a23d93bb3347984ecb" + }, + { + "filename": "php-8.4.3.tar.bz2", + "name": "PHP 8.4.3 (tar.bz2)", + "sha256": "d6b12379d1f1df216d1932840a31b14fed1e0fc7e8db1e9d1795f75a1e75ead9" + }, + { + "filename": "php-8.4.3.tar.xz", + "name": "PHP 8.4.3 (tar.xz)", + "sha256": "5c42173cbde7d0add8249c2e8a0c19ae271f41d8c47d67d72bdf91a88dcc7e4b" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.4/announcement.html b/data/releases/8.4/8.4.4/announcement.html new file mode 100644 index 0000000000..2048897a22 --- /dev/null +++ b/data/releases/8.4/8.4.4/announcement.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/8.4.4/changes.txt b/data/releases/8.4/8.4.4/changes.txt new file mode 100644 index 0000000000..2b2c2dce65 --- /dev/null +++ b/data/releases/8.4/8.4.4/changes.txt @@ -0,0 +1,116 @@ +- Core: + . Fixed bug GH-17234 (Numeric parent hook call fails with assertion). + (nielsdos) + . Fixed bug GH-16892 (ini_parse_quantity() fails to parse inputs starting + with 0x0b). (nielsdos) + . Fixed bug GH-16886 (ini_parse_quantity() fails to emit warning for 0x+0). + (nielsdos) + . Fixed bug GH-17222 (__PROPERTY__ magic constant does not work in all + constant expression contexts). (ilutov) + . Fixed bug GH-17214 (Relax final+private warning for trait methods with + inherited final). (ilutov) + . Fixed NULL arithmetic during system program execution on Windows. (cmb, + nielsdos) + . Fixed potential OOB when checking for trailing spaces on Windows. (cmb) + . Fixed bug GH-17408 (Assertion failure Zend/zend_exceptions.c). + (nielsdos, ilutov) + . Fix may_have_extra_named_args flag for ZEND_AST_UNPACK. (nielsdos) + . Fix NULL arithmetic in System V shared memory emulation for Windows. (cmb) + . Fixed bug GH-17597 (#[\Deprecated] does not work for __call() and + __callStatic()). (timwolla) + +- DOM: + . Fixed bug GH-17397 (Assertion failure ext/dom/php_dom.c). (nielsdos) + . Fixed bug GH-17486 (Incorrect error line numbers reported in + Dom\HTMLDocument::createFromString). (nielsdos) + . Fixed bug GH-17481 (UTF-8 corruption in \Dom\HTMLDocument). (nielsdos) + . Fixed bug GH-17500 (Segfault with requesting nodeName on nameless doctype). + (nielsdos) + . Fixed bug GH-17485 (upstream fix, Self-closing tag on void elements + shouldn't be a parse error/warning in \Dom\HTMLDocument). (lexborisov) + . Fixed bug GH-17572 (getElementsByTagName returns collections with + tagName-based indexing). (nielsdos) + +- Enchant: + . Fix crashes in enchant when passing null bytes. (nielsdos) + +- FTP: + . Fixed bug GH-16800 (ftp functions can abort with EINTR). (nielsdos) + +- GD: + . Fixed bug GH-17349 (Tiled truecolor filling looses single color + transparency). (cmb) + . Fixed bug GH-17373 (imagefttext() ignores clipping rect for palette + images). (cmb) + . Ported fix for libgd 223 (gdImageRotateGeneric() does not properly + interpolate). (cmb) + . Added support for reading GIFs without colormap to bundled libgd. (Andrew + Burley, cmb) + +- Gettext: + . Fixed bug GH-17400 (bindtextdomain SEGV on invalid domain). + (David Carlier) + +- Intl: + . Fixed bug GH-11874 (intl causing segfault in docker images). (nielsdos) + +- Opcache: + . Fixed bug GH-15981 (Segfault with frameless jumps and minimal JIT). + (nielsdos) + . Fixed bug GH-17307 (Internal closure causes JIT failure). (nielsdos) + . Fixed bug GH-17428 (Assertion failure ext/opcache/jit/zend_jit_ir.c:8940). + (nielsdos) + . Fixed bug GH-17564 (Potential UB when reading from / writing to struct + padding). (ilutov) + +- PCNTL: + . Fixed pcntl_setcpuaffinity exception type from ValueError to TypeError for + the cpu mask argument with entries type different than int/string. + (David Carlier) + +- PCRE: + . Fixed bug GH-17122 (memory leak in regex). (nielsdos) + +- PDO: + . Fixed a memory leak when the GC is used to free a PDOStatment. (Girgias) + . Fixed a crash in the PDO Firebird Statement destructor. (nielsdos) + . Fixed UAFs when changing default fetch class ctor args. (Girgias, nielsdos) + +- PgSql: + . Fixed build failure when the constant PGRES_TUPLES_CHUNK is not present + in the system. (chschneider) + +- Phar: + . Fixed bug GH-17518 (offset overflow phar extractTo()). (nielsdos) + +- PHPDBG: + . Fix crashes in function registration + test. (nielsdos, Girgias) + +- Session: + . Fix type confusion with session SID constant. (nielsdos) + . Fixed bug GH-17541 (ext/session NULL pointer dereferencement during + ID reset). (Girgias) + +- SimpleXML: + . Fixed bug GH-17409 (Assertion failure Zend/zend_hash.c:1730). (nielsdos) + +- SNMP: + . Fixed bug GH-17330 (SNMP::setSecurity segfault on closed session). + (David Carlier) + +- SPL: + . Fixed bug GH-15833 (Segmentation fault (access null pointer) in + ext/spl/spl_array.c). (nielsdos) + . Fixed bug GH-17516 (SplFileTempObject::getPathInfo() Undefined behavior + on invalid class). (David Carlier) + +- Standard: + . Fixed bug GH-17447 (Assertion failure when array popping a self addressing + variable). (nielsdos) + +- Windows: + . Fixed clang compiler detection. (cmb) + +- Zip: + . Fixed bug GH-17139 (Fix zip_entry_name() crash on invalid entry). + (nielsdos) diff --git a/data/releases/8.4/8.4.4/release.json b/data/releases/8.4/8.4.4/release.json new file mode 100644 index 0000000000..2ca90ad437 --- /dev/null +++ b/data/releases/8.4/8.4.4/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.4", + "date": "13 Feb 2025", + "tags": [], + "source": [ + { + "filename": "php-8.4.4.tar.gz", + "name": "PHP 8.4.4 (tar.gz)", + "sha256": "719551f50a81961f802aa9102bf4a1a0b5a315074330ab37bc8035a15f4be71b" + }, + { + "filename": "php-8.4.4.tar.bz2", + "name": "PHP 8.4.4 (tar.bz2)", + "sha256": "192a325fd3ca09b6c528dd6014ee07d803c3162514d4bb0d3e0981d00ac700ec" + }, + { + "filename": "php-8.4.4.tar.xz", + "name": "PHP 8.4.4 (tar.xz)", + "sha256": "05a6c9a2cc894dd8be719ecab221b311886d5e0c02cb6fac648dd9b3459681ac" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.5/announcement.html b/data/releases/8.4/8.4.5/announcement.html new file mode 100644 index 0000000000..053b773cdf --- /dev/null +++ b/data/releases/8.4/8.4.5/announcement.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/8.4.5/changes.txt b/data/releases/8.4/8.4.5/changes.txt new file mode 100644 index 0000000000..b9e00e6ced --- /dev/null +++ b/data/releases/8.4/8.4.5/changes.txt @@ -0,0 +1,112 @@ +- BCMath: + . Fixed bug GH-17398 (bcmul memory leak). (SakiTakamachi) + +- Core: + . Fixed bug GH-17623 (Broken stack overflow detection for variable + compilation). (ilutov) + . Fixed bug GH-17618 (UnhandledMatchError does not take + zend.exception_ignore_args=1 into account). (timwolla) + . Fix fallback paths in fast_long_{add,sub}_function. (nielsdos) + . Fixed bug OSS-Fuzz #391975641 (Crash when accessing property backing value + by reference). (ilutov) + . Fixed bug GH-17718 (Calling static methods on an interface that has + `__callStatic` is allowed). (timwolla) + . Fixed bug GH-17713 (ReflectionProperty::getRawValue() and related methods + may call hooks of overridden properties). (Arnaud) + . Fixed bug GH-17916 (Final abstract properties should error). + (DanielEScherzer) + . Fixed bug GH-17866 (zend_mm_heap corrupted error after upgrading from + 8.4.3 to 8.4.4). (nielsdos) + . Fixed GHSA-rwp7-7vc6-8477 (Reference counting in php_request_shutdown + causes Use-After-Free). (CVE-2024-11235) (ilutov) + +- DOM: + . Fixed bug GH-17609 (Typo in error message: Dom\NO_DEFAULT_NS instead of + Dom\HTML_NO_DEFAULT_NS). (nielsdos) + . Fixed bug GH-17802 (\Dom\HTMLDocument querySelector attribute name is case + sensitive in HTML). (nielsdos) + . Fixed bug GH-17847 (xinclude destroys live node). (nielsdos) + . Fix using Dom\Node with Dom\XPath callbacks. (nielsdos) + +- FFI: + . Fix FFI Parsing of Pointer Declaration Lists. (davnotdev) + +- FPM: + . Fixed bug GH-17643 (FPM with httpd ProxyPass encoded PATH_INFO env). + (Jakub Zelenka) + +- GD: + . Fixed bug GH-17703 (imagescale with both width and height negative values + triggers only an Exception on width). (David Carlier) + . Fixed bug GH-17772 (imagepalettetotruecolor crash with memory_limit=2M). + (David Carlier) + +- LDAP: + . Fixed bug GH-17704 (ldap_search fails when $attributes contains a + non-packed array with numerical keys). (nielsdos, 7u83) + +- LibXML: + . Fixed GHSA-wg4p-4hqh-c3g9 (Reocurrence of #72714). (nielsdos) + . Fixed GHSA-p3x9-6h7p-cgfc (libxml streams use wrong `content-type` header + when requesting a redirected resource). (CVE-2025-1219) (timwolla) + +- MBString: + . Fixed bug GH-17503 (Undefined float conversion in mb_convert_variables). + (cmb) + +- Opcache: + . Fixed bug GH-17654 (Multiple classes using same trait causes function + JIT crash). (nielsdos) + . Fixed bug GH-17577 (JIT packed type guard crash). (nielsdos, Dmitry) + . Fixed bug GH-17747 (Exception on reading property in register-based + FETCH_OBJ_R breaks JIT). (Dmitry, nielsdos) + . Fixed bug GH-17715 (Null pointer deref in observer API when calling + cases() method on preloaded enum). (Bob) + . Fixed bug GH-17868 (Cannot allocate memory with tracing JIT on 8.4.4). + (nielsdos) + +- PDO_SQLite: + . Fixed GH-17837 ()::getColumnMeta() on unexecuted statement segfaults). + (cmb) + . Fix cycle leak in sqlite3 setAuthorizer(). (nielsdos) + . Fix memory leaks in pdo_sqlite callback registration. (nielsdos) + +- Phar: + . Fixed bug GH-17808: PharFileInfo refcount bug. (nielsdos) + +- PHPDBG: + . Partially fixed bug GH-17387 (Trivial crash in phpdbg lexer). (nielsdos) + . Fix memory leak in phpdbg calling registered function. (nielsdos) + +- Reflection: + . Fixed bug GH-15902 (Core dumped in ext/reflection/php_reflection.c). + (DanielEScherzer) + . Fixed missing final and abstract flags when dumping properties. + (DanielEScherzer) + +- Standard: + . Fixed bug #72666 (stat cache clearing inconsistent between file:// paths + and plain paths). (Jakub Zelenka) + +- Streams: + . Fixed bug GH-17650 (realloc with size 0 in user_filters.c). (nielsdos) + . Fix memory leak on overflow in _php_stream_scandir(). (nielsdos) + . Fixed GHSA-hgf5-96fm-v528 (Stream HTTP wrapper header check might omit + basic auth header). (CVE-2025-1736) (Jakub Zelenka) + . Fixed GHSA-52jp-hrpf-2jff (Stream HTTP wrapper truncate redirect location + to 1024 bytes). (CVE-2025-1861) (Jakub Zelenka) + . Fixed GHSA-pcmh-g36c-qc44 (Streams HTTP wrapper does not fail for headers + without colon). (CVE-2025-1734) (Jakub Zelenka) + . Fixed GHSA-v8xr-gpvj-cx9g (Header parser of `http` stream wrapper does not + handle folded headers). (CVE-2025-1217) (Jakub Zelenka) + +- Windows: + . Fixed phpize for Windows 11 (24H2). (bwoebi) + . Fixed GH-17855 (CURL_STATICLIB flag set even if linked with shared lib). + (cmb) + +- Zlib: + . Fixed bug GH-17745 (zlib extension incorrectly handles object arguments). + (nielsdos) + . Fix memory leak when encoding check fails. (nielsdos) + . Fix zlib support for large files. (nielsdos) diff --git a/data/releases/8.4/8.4.5/release.json b/data/releases/8.4/8.4.5/release.json new file mode 100644 index 0000000000..768f79a192 --- /dev/null +++ b/data/releases/8.4/8.4.5/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.5", + "date": "13 Mar 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.4.5.tar.gz", + "name": "PHP 8.4.5 (tar.gz)", + "sha256": "f05530d350f1ffe279e097c2af7a8d78cab046ef99d91f6b3151b06f0ab05d05" + }, + { + "filename": "php-8.4.5.tar.bz2", + "name": "PHP 8.4.5 (tar.bz2)", + "sha256": "9378c78887d0cd7462fc5c17f2de30c852f20f79d28795e2573fe3250d39436e" + }, + { + "filename": "php-8.4.5.tar.xz", + "name": "PHP 8.4.5 (tar.xz)", + "sha256": "0d3270bbce4d9ec617befce52458b763fd461d475f1fe2ed878bb8573faed327" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.6/announcement.html b/data/releases/8.4/8.4.6/announcement.html new file mode 100644 index 0000000000..3d43b6c591 --- /dev/null +++ b/data/releases/8.4/8.4.6/announcement.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/8.4.6/changes.txt b/data/releases/8.4/8.4.6/changes.txt new file mode 100644 index 0000000000..c4e9733337 --- /dev/null +++ b/data/releases/8.4/8.4.6/changes.txt @@ -0,0 +1,91 @@ +- BCMath: + . Fixed pointer subtraction for scale. (SakiTakamachi) + +- Core: + . Fixed property hook backing value access in multi-level inheritance. + (ilutov) + . Fixed accidentally inherited default value in overridden virtual properties. + (ilutov) + . Fixed bug GH-17376 (Broken JIT polymorphism for property hooks added to + child class). (ilutov) + . Fixed bug GH-17913 (ReflectionFunction::isDeprecated() returns incorrect + results for closures created from magic __call()). (timwolla) + . Fixed bug GH-17941 (Stack-use-after-return with lazy objects and hooks). + (nielsdos) + . Fixed bug GH-17988 (Incorrect handling of hooked props without get hook in + get_object_vars()). (ilutov) + . Fixed bug GH-17998 (Skipped lazy object initialization on primed + SIMPLE_WRITE cache). (ilutov) + . Fixed bug GH-17998 (Assignment to backing value in set hook of lazy proxy + calls hook again). (ilutov) + . Fixed bug GH-17961 (use-after-free during dl()'ed module class destruction). + (Arnaud) + . Fixed bug GH-15367 (dl() of module with aliased class crashes in shutdown). + (Arnaud) + . Fixed OSS-Fuzz #403308724. (nielsdos) + . Fixed bug GH-13193 again (Significant performance degradation in 'foreach'). + (nielsdos) + +- DBA: + . Fixed assertion violation when opening the same file with dba_open + multiple times. (chschneider) + +- DOM: + . Fixed bug GH-17991 (Assertion failure dom_attr_value_write). (nielsdos) + . Fix weird unpack behaviour in DOM. (nielsdos) + . Fixed bug GH-18090 (DOM: Svg attributes and tag names are being lowercased). + (nielsdos) + . Fix xinclude destruction of live attributes. (nielsdos) + +- Fuzzer: + . Fixed bug GH-18081 (Memory leaks in error paths of fuzzer SAPI). + (Lung-Alexandra) + +- GD: + . Fixed bug GH-17984 (calls with arguments as array with references). + (David Carlier) + +- LDAP: + . Fixed bug GH-18015 (Error messages for ldap_mod_replace are confusing). + (nielsdos) + +- Mbstring: + . Fixed bug GH-17989 (mb_output_handler crash with unset + http_output_conv_mimetypes). (nielsdos) + +- Opcache: + . Fixed bug GH-15834 (Segfault with hook "simple get" cache slot and minimal + JIT). (nielsdos) + . Fixed bug GH-17966 (Symfony JIT 1205 assertion failure). (nielsdos) + . Fixed bug GH-18037 (SEGV Zend/zend_execute.c). (nielsdos) + . Fixed bug GH-18050 (IN_ARRAY optimization in DFA pass is broken). (ilutov) + . Fixed bug GH-18113 (stack-buffer-overflow ext/opcache/jit/ir/ir_sccp.c). + (nielsdos) + . Fixed bug GH-18112 (NULL access with preloading and INI option). (nielsdos) + . Fixed bug GH-18107 (Opcache CFG jmp optimization with try-finally breaks + the exception table). (nielsdos) + +- PDO: + . Fix memory leak when destroying PDORow. (nielsdos) + +- PGSQL: + . Fixed bug GH-18148 (pg_copy_from() regression with explicit \n terminator + due to wrong offset check). (David Carlier) + +- Standard: + . Fix memory leaks in array_any() / array_all(). (nielsdos) + +- SOAP: + . Fixed bug #66049 (Typemap can break parsing in parse_packet_soap leading to + a segfault) . (Remi) + +- SPL: + . Fixed bug GH-18018 (RC1 data returned from offsetGet causes UAF in + ArrayObject). (nielsdos) + +- Treewide: + . Fixed bug GH-17736 (Assertion failure zend_reference_destroy()). (nielsdos) + +- Windows: + . Fixed bug GH-17836 (zend_vm_gen.php shouldn't break on Windows line + endings). (DanielEScherzer) diff --git a/data/releases/8.4/8.4.6/release.json b/data/releases/8.4/8.4.6/release.json new file mode 100644 index 0000000000..9e1c041a54 --- /dev/null +++ b/data/releases/8.4/8.4.6/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.6", + "date": "10 Apr 2025", + "tags": [], + "source": [ + { + "filename": "php-8.4.6.tar.gz", + "name": "PHP 8.4.6 (tar.gz)", + "sha256": "49be0f2f45c9b07c9b921d023bf28b1fc781700c829869725681300e72e3faa8" + }, + { + "filename": "php-8.4.6.tar.bz2", + "name": "PHP 8.4.6 (tar.bz2)", + "sha256": "9cf2734509b603f6589617ab52a9712a03e0fe059951cddd2d4623df4bf7c6c6" + }, + { + "filename": "php-8.4.6.tar.xz", + "name": "PHP 8.4.6 (tar.xz)", + "sha256": "089b08a5efef02313483325f3bacd8c4fe311cf1e1e56749d5cc7d059e225631" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.7/announcement.html b/data/releases/8.4/8.4.7/announcement.html new file mode 100644 index 0000000000..581dc7be32 --- /dev/null +++ b/data/releases/8.4/8.4.7/announcement.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/8.4.7/changes.txt b/data/releases/8.4/8.4.7/changes.txt new file mode 100644 index 0000000000..106cd2a51a --- /dev/null +++ b/data/releases/8.4/8.4.7/changes.txt @@ -0,0 +1,72 @@ +- Core: + . Fixed bug GH-18038 (Lazy proxy calls magic methods twice). (Arnaud) + . Fixed bug GH-18209 (Use-after-free in extract() with EXTR_REFS). (ilutov) + . Fixed bug GH-18268 (Segfault in array_walk() on object with added property + hooks). (ilutov) + . Fixed bug GH-18304 (Changing the properties of a DateInterval through + dynamic properties triggers a SegFault). (nielsdos) + . Fix some leaks in php_scandir. (nielsdos) + +- DBA: + . FIxed bug GH-18247 dba_popen() memory leak on invalid path. (David Carlier) + +- Filter: + . Fixed bug GH-18309 (ipv6 filter integer overflow). (nielsdos) + +- GD: + . Fixed imagecrop() overflow with rect argument with x/width y/heigh usage + in gdImageCrop(). (David Carlier) + . Fixed GH-18243 imagettftext() overflow/underflow on font size value. + (David Carlier) + +- Intl: + . Fix reference support for intltz_get_offset(). (nielsdos) + +- LDAP: + . Fixed bug GH-17776 (LDAP_OPT_X_TLS_* options can't be overridden). (Remi) + . Fix NULL deref on high modification key. (nielsdos) + +- libxml: + . Fixed custom external entity loader returning an invalid resource leading + to a confusing TypeError message. (Girgias) + +- Opcache: + . Fixed bug GH-18294 (assertion failure zend_jit_ir.c). (nielsdos) + . Fixed bug GH-18289 (Fix segfault in JIT). (Florian Engelhardt) + . Fixed bug GH-18136 (tracing JIT floating point register clobbering on + Windows and ARM64). (nielsdos) + +- OpenSSL: + . Fix memory leak in openssl_sign() when passing invalid algorithm. + (nielsdos) + . Fix potential leaks when writing to BIO fails. (nielsdos) + +- PDO Firebird: + . Fixed bug GH-18276 (persistent connection - "zend_mm_heap corrupted" + with setAttribute()) (SakiTakamachi). + . Fixed bug GH-17383 (PDOException has wrong code and message since PHP 8.4) + (SakiTakamachi). + +- PDO Sqlite: + . Fix memory leak on error return of collation callback. (nielsdos) + +- PgSql: + . Fix uouv in pg_put_copy_end(). (nielsdos) + +- SPL: + . Fixed bug GH-18322 (SplObjectStorage debug handler mismanages memory). + (nielsdos) + +- Standard: + . Fixed bug GH-18145 (php8ts crashes in php_clear_stat_cache()). + (Jakub Zelenka) + . Fix resource leak in iptcembed() on error. (nielsdos) + +- Tests: + . Address deprecated PHP 8.4 session options to prevent test failures. + (willvar) + +- Zip: + . Fix uouv when handling empty options in ZipArchive::addGlob(). (nielsdos) + . Fix memory leak when handling a too long path in ZipArchive::addGlob(). + (nielsdos) diff --git a/data/releases/8.4/8.4.7/release.json b/data/releases/8.4/8.4.7/release.json new file mode 100644 index 0000000000..d9e3de8f38 --- /dev/null +++ b/data/releases/8.4/8.4.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.7", + "date": "8 May 2025", + "tags": [], + "source": [ + { + "filename": "php-8.4.7.tar.gz", + "name": "PHP 8.4.7 (tar.gz)", + "sha256": "fd2be3b9320184e856426e01bd1a428110776ea8e976c3fb6b65808d03fc886a" + }, + { + "filename": "php-8.4.7.tar.bz2", + "name": "PHP 8.4.7 (tar.bz2)", + "sha256": "6eccb1b06a4dd9cea314dbe70c762d3d4765471cb6ebf925b9da308978bff988" + }, + { + "filename": "php-8.4.7.tar.xz", + "name": "PHP 8.4.7 (tar.xz)", + "sha256": "e29f4c23be2816ed005aa3f06bbb8eae0f22cc133863862e893515fc841e65e3" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.8/announcement.html b/data/releases/8.4/8.4.8/announcement.html new file mode 100644 index 0000000000..6a32297000 --- /dev/null +++ b/data/releases/8.4/8.4.8/announcement.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/8.4.8/changes.txt b/data/releases/8.4/8.4.8/changes.txt new file mode 100644 index 0000000000..c2641639ff --- /dev/null +++ b/data/releases/8.4/8.4.8/changes.txt @@ -0,0 +1,64 @@ +- Core: + . Fixed GH-18480 (array_splice with large values for offset/length arguments). + (nielsdos/David Carlier) + . Partially fixed GH-18572 (nested object comparisons leading to stack overflow). + (David Carlier) + . Fixed OSS-Fuzz #417078295. (nielsdos) + . Fixed OSS-Fuzz #418106144. (nielsdos) + +- Curl: + . Fixed GH-18460 (curl_easy_setopt with CURLOPT_USERPWD/CURLOPT_USERNAME/ + CURLOPT_PASSWORD set the Authorization header when set to NULL). + (David Carlier) + +- Date: + . Fixed bug GH-18076 (Since PHP 8, the date_sun_info() function returns + inaccurate sunrise and sunset times, but other calculated times are + correct) (JiriJozif). + . Fixed bug GH-18481 (date_sunrise with unexpected nan value for the offset). + (nielsdos/David Carlier) + +- DOM: + . Backport lexbor/lexbor#274. (nielsdos, alexpeattie) + +- Intl: + . Fix various reference issues. (nielsdos) + +- LDAP: + . Fixed bug GH-18529 (ldap no longer respects TLS_CACERT from ldaprc in + ldap_start_tls()). (Remi) + +- Opcache: + . Fixed bug GH-18417 (Windows SHM reattachment fails when increasing + memory_consumption or jit_buffer_size). (nielsdos) + . Fixed bug GH-18297 (Exception not handled when jit guard is triggered). + (Arnaud) + . Fixed bug GH-18408 (Snapshotted poly_func / poly_this may be spilled). + (Arnaud) + . Fixed bug GH-18567 (Preloading with internal class alias triggers assertion + failure). (nielsdos) + . Fixed bug GH-18534 (FPM exit code 70 with enabled opcache and hooked + properties in traits). (nielsdos) + . Fix leak of accel_globals->key. (nielsdos) + +- OpenSSL: + . Fix missing checks against php_set_blocking() in xp_ssl.c. (nielsdos) + +- SPL: + . Fixed bug GH-18421 (Integer overflow with large numbers in LimitIterator). + (nielsdos) + +- Standard: + . Fixed bug GH-17403 (Potential deadlock when putenv fails). (nielsdos) + . Fixed bug GH-18400 (http_build_query type error is inaccurate). (nielsdos) + . Fixed bug GH-18509 (Dynamic calls to assert() ignore zend.assertions). + (timwolla) + +- Windows: + . Fix leak+crash with sapi_windows_set_ctrl_handler(). (nielsdos) + +- Zip: + . Fixed bug GH-18431 (Registering ZIP progress callback twice doesn't work). + (nielsdos) + . Fixed bug GH-18438 (Handling of empty data and errors in + ZipArchive::addPattern). (nielsdos) diff --git a/data/releases/8.4/8.4.8/release.json b/data/releases/8.4/8.4.8/release.json new file mode 100644 index 0000000000..9de019b450 --- /dev/null +++ b/data/releases/8.4/8.4.8/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.4.8", + "date": "5 Jun 2025", + "tags": [], + "source": [ + { + "filename": "php-8.4.8.tar.gz", + "name": "PHP 8.4.8 (tar.gz)", + "sha256": "26d5ae014925b7dee3a61ec02422795f008fbb3a36f9355edaee2d9d78b89b07" + }, + { + "filename": "php-8.4.8.tar.bz2", + "name": "PHP 8.4.8 (tar.bz2)", + "sha256": "36569c64dd1499e570c436603b641eee7cde4af576af786597d0ee711b3a3a8a" + }, + { + "filename": "php-8.4.8.tar.xz", + "name": "PHP 8.4.8 (tar.xz)", + "sha256": "aa6a4d330b47eacd83e351658ba8c47747a1e4356456219cfb6d75e7838da091" + } + ] +} \ 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/8.5.0/changes.txt b/data/releases/8.5/8.5.0/changes.txt new file mode 100644 index 0000000000..cb80a0d2f0 --- /dev/null +++ b/data/releases/8.5/8.5.0/changes.txt @@ -0,0 +1,643 @@ +- Core: + . Added the #[\NoDiscard] attribute to indicate that a function's return + value is important and should be consumed. (timwolla, edorian) + . Added the (void) cast to indicate that not using a value is intentional. + (timwolla, edorian) + . Added get_error_handler(), get_exception_handler() functions. (Arnaud) + . Added support for casts in constant expressions. (nielsdos) + . Added the pipe (|>) operator. (crell) + . Added support for `final` with constructor property promotion. + (DanielEScherzer) + . Added support for configuring the URI parser for the FTP/FTPS as well as + the SSL/TLS stream wrappers as described in + https://wiki.php.net/rfc/url_parsing_api#plugability. (kocsismate) + . Added PHP_BUILD_PROVIDER constant. (timwolla) + . Added PHP_BUILD_DATE constant. (cmb) + . Added support for Closures and first class callables in constant + expressions. (timwolla, edorian) + . Add support for backtraces for fatal errors. (enorris) + . Add clone-with support to the clone() function. (timwolla, edorian) + . Add RFC 3986 and WHATWG URL compliant APIs for URL parsing + and manipulation (kocsismate, timwolla) + . Fixed AST printing for immediately invoked Closure. (Dmitrii Derepko) + . Properly handle __debugInfo() returning an array reference. (nielsdos) + . Properly handle reference return value from __toString(). (nielsdos) + . Improved error message of UnhandledMatchError for + zend.exception_string_param_max_len=0. (timwolla) + . Fixed bug GH-15753 and GH-16198 (Bind traits before parent class). (ilutov) + . Fixed bug GH-17951 (memory_limit is not always limited by max_memory_limit). + (manuelm) + . Fixed bug GH-20183 (Stale EG(opline_before_exception) pointer through eval). + (ilutov) + . Fixed bug GH-20113 (Missing new Foo(...) error in constant expressions). + (ilutov) + . Fixed bug GH-19844 (Don't bail when closing resources on shutdown). (ilutov) + . Fixed bug GH-20177 (Accessing overridden private property in + get_object_vars() triggers assertion error). (ilutov) + . Fix OSS-Fuzz #447521098 (Fatal error during sccp shift eval). (ilutov) + . Fixed bug GH-20002 (Broken build on *BSD with MSAN). (outtersg) + . Fixed bug GH-19352 (Cross-compilation with musl C library). + (henderkes, Peter Kokot) + . Fixed bug GH-19765 (object_properties_load() bypasses readonly property + checks). (timwolla) + . Fixed hard_timeout with --enable-zend-max-execution-timers. (Appla) + . Fixed bug GH-19839 (Incorrect HASH_FLAG_HAS_EMPTY_IND flag on userland + array). (ilutov) + . Fixed bug GH-19823 (register_argc_argv deprecation emitted twice when + using OPcache). (timwolla) + . Fixed bug GH-19480 (error_log php.ini cannot be unset when open_basedir is + configured). (nielsdos) + . Fixed bug GH-19719 (Allow empty statements before declare(strict_types)). + (nielsdos) + . Fixed bug GH-19934 (CGI with auto_globals_jit=0 causes uouv). (ilutov) + . Fixed bug GH-19613 (Stale array iterator pointer). (ilutov) + . Fixed bug GH-19679 (zend_ssa_range_widening may fail to converge). (Arnaud) + . Fixed bug GH-19681 (PHP_EXPAND_PATH broken with bash 5.3.0). (Remi) + . Fixed bug GH-18850 (Repeated inclusion of file with __halt_compiler() + triggers "Constant already defined" warning). (ilutov) + . Fixed bug GH-19476 (pipe operator fails to correctly handle returning + by reference). (alexandre-daubois) + . Fixed bug GH-19081 (Wrong lineno in property error with constructor property + promotion). (ilutov) + . Fixed bug GH-17959 (Relax missing trait fatal error to error exception). + (ilutov) + . Fixed bug GH-18033 (NULL-ptr dereference when using register_tick_function + in destructor). (nielsdos) + . Fixed bug GH-18026 (Improve "expecting token" error for ampersand). (ilutov) + . The report_memleaks INI directive has been deprecated. (alexandre-daubois) + . Fixed OSS-Fuzz #439125710 (Pipe cannot be used in write context). + (nielsdos) + . Fixed bug GH-19548 (Shared memory violation on property inheritance). + (alexandre-daubois) + . Fixed bug GH-19544 (GC treats ZEND_WEAKREF_TAG_MAP references as WeakMap + references). (Arnaud, timwolla) + . Fixed bug GH-18373 (Don't substitute self/parent with anonymous class). + (ilutov) + . Fix support for non-userland stream notifiers. (timwolla) + . Fixed bug GH-19305 (Operands may be being released during comparison). + (Arnaud) + . Fixed bug GH-19306 (Generator can be resumed while fetching next value from + delegated Generator). (Arnaud) + . Fixed bug GH-19326 (Calling Generator::throw() on a running generator with + a non-Generator delegate crashes). (Arnaud) + . Fix OSS-Fuzz #427814452 (pipe compilation fails with assert). + (nielsdos, ilutov) + . Fixed bug GH-16665 (\array and \callable should not be usable in + class_alias). (nielsdos) + . Use `clock_gettime_nsec_np()` for high resolution timer on macOS + if available. (timwolla) + . Make `clone()` a function. (timwolla, edorian) + . Introduced the TAILCALL VM, enabled by default when compiling with Clang>=19 + on x86_64 or aarch64. (Arnaud) + . Enacted the follow-up phase of the "Path to Saner Increment/Decrement + operators" RFC, meaning that incrementing non-numeric strings is now + deprecated. (Girgias). + . Various closure binding issues are now deprecated. (alexandre-daubois) + . Constant redeclaration has been deprecated. (alexandre-daubois) + . Marks the stack as non-executable on Haiku. (David Carlier) + . Deriving $_SERVER['argc'] and $_SERVER['argv'] from the query string is + now deprecated. (timwolla, nicolasgrekas) + . Using null as an array offset or when calling array_key_exists() is now + deprecated. (alexandre-daubois) + . The disable_classes INI directive has been removed. (Girgias) + . The locally predefined variable $http_response_header is deprecated. + (Girgias) + . Non-canonical cast names (boolean), (integer), (double), and (binary) have + been deprecated. (Girgias) + . The $exclude_disabled parameter of the get_defined_functions() function has + been deprecated, as it no longer has any effect since PHP 8.0. (Girgias) + . Terminating case statements with a semicolon instead of a colon has + been deprecated. (theodorejb) + . The backtick operator as an alias for shell_exec() has been deprecated. + (timwolla) + . Returning null from __debugInfo() has been deprecated. (DanielEScherzer) + . Support #[\Override] on properties. (Jiří Pudil) + . Destructing non-array values (other than NULL) using [] or list() now + emits a warning. (Girgias) + . Casting floats that are not representable as ints now emits a warning. + (Girgias) + . Casting NAN to other types now emits a warning. (Girgias) + . Implement GH-15680 (Enhance zend_dump_op_array to properly represent + non-printable characters in string literals). (nielsdos, WangYihang) + . Fixed bug GH-17442 (Engine UAF with reference assign and dtor). (nielsdos) + . Do not use RTLD_DEEPBIND if dlmopen is available. (Daniil Gentili) + . Added #[\DelayedTargetValidation] attribute. (DanielEScherzer) + . Support #[\Deprecated] on traits. (DanielEScherzer) + +- BCMath: + . Simplify `bc_divide()` code. (SakiTakamachi) + . If the result is 0, n_scale is set to 0. (SakiTakamachi) + . If size of BC_VECTOR array is within 64 bytes, stack area is now used. + (SakiTakamachi) + . Fixed bug GH-20006 (Power of 0 of BcMath number causes UB). (nielsdos) + +- Bz2: + . Fixed bug GH-19810 (Broken bzopen() stream mode validation). (ilutov) + +- CLI: + . Add --ini=diff to print INI settings changed from the builtin default. + (timwolla) + . Drop support for -z CLI/CGI flag. (nielsdos) + . Fixed GH-17956 - development server 404 page does not adapt to mobiles. + (pascalchevrel) + . Fix useless "Failed to poll event" error logs due to EAGAIN in CLI server + with PHP_CLI_SERVER_WORKERS. (leotaku) + . Fixed bug GH-19461 (Improve error message on listening error with IPv6 + address). (alexandre-daubois) + +- COM: + . Fixed property access of PHP objects wrapped in variant. (cmb) + . Fixed method calls for PHP objects wrapped in variant. (cmb) + +- Curl: + . Added CURLFOLLOW_ALL, CURLFOLLOW_OBEYCODE and CURLFOLLOW_FIRSTONLY + values for CURLOPT_FOLLOWLOCATION curl_easy_setopt option. (David Carlier) + . Added curl_multi_get_handles(). (timwolla) + . Added curl_share_init_persistent(). (enorris) + . Added CURLINFO_USED_PROXY, CURLINFO_HTTPAUTH_USED, and CURLINFO_PROXYAUTH_USED + support to curl_getinfo. (Ayesh Karunaratne) + . Add support for CURLINFO_CONN_ID in curl_getinfo() (thecaliskan) + . Add support for CURLINFO_QUEUE_TIME_T in curl_getinfo() (thecaliskan) + . Add support for CURLOPT_SSL_SIGNATURE_ALGORITHMS. (Ayesh Karunaratne) + . The curl_close() function has been deprecated. (DanielEScherzer) + . The curl_share_close() function has been deprecated. (DanielEScherzer) + . Fix cloning of CURLOPT_POSTFIELDS when using the clone operator instead + of the curl_copy_handle() function to clone a CurlHandle. (timwolla) + +- Date: + . Fix undefined behaviour problems regarding integer overflow in extreme edge + cases. (nielsdos, cmb, ilutov) + . The DATE_RFC7231 and DateTimeInterface::RFC7231 constants have been + deprecated. (jorgsowa) + . Fixed date_sunrise() and date_sunset() with partial-hour UTC offset. + (ilutov) + . Fixed GH-17159: "P" format for ::createFromFormat swallows string literals. + (nielsdos) + . The __wakeup() magic method of DateTimeInterface, DateTime, + DateTimeImmutable, DateTimeZone, DateInterval, and DatePeriod has been + deprecated in favour of the __unserialize() magic method. (Girgias) + +- DOM: + . Added Dom\Element::$outerHTML. (nielsdos) + . Added Dom\Element::insertAdjacentHTML(). (nielsdos) + . Added $children property to ParentNode implementations. (nielsdos) + . Make cloning DOM node lists, maps, and collections fail. (nielsdos) + . Added Dom\Element::getElementsByClassName(). (nielsdos) + . Fixed bug GH-18877 (\Dom\HTMLDocument querySelectorAll selecting only the + first when using ~ and :has). (nielsdos, lexborisov) + . Fix getNamedItemNS() incorrect namespace check. (nielsdos) + +- Enchant: + . Added enchant_dict_remove_from_session(). (nielsdos) + . Added enchant_dict_remove(). (nielsdos) + . Fix missing empty string checks. (nielsdos) + +- EXIF: + . Add OffsetTime* Exif tags. (acc987) + . Added support to retrieve Exif from HEIF file. (Benstone Zhang) + . Fix OSS-Fuzz #442954659 (zero-size box in HEIF file causes infinite loop). + (nielsdos) + . Fix OSS-Fuzz #442954659 (Crash in exif_scan_HEIF_header). (nielsdos) + . Various hardening fixes to HEIF parsing. (nielsdos) + + +- FileInfo: + . The finfo_close() function has been deprecated. (timwolla) + . The $context parameter of the finfo_buffer() function has been deprecated + as it is ignored. (Girgias) + . Upgrade to file 5.46. (nielsdos) + . Change return type of finfo_close() to true. (timwolla) + +- Filter: + . Added support for configuring the URI parser for FILTER_VALIDATE_URL + as described in https://wiki.php.net/rfc/url_parsing_api#plugability. + (kocsismate) + . Fixed bug GH-16993 (filter_var_array with FILTER_VALIDATE_INT|FILTER_NULL_ON_FAILURE + should emit warning for invalid filter usage). (alexandre-daubois) + . Added FILTER_THROW_ON_FAILURE flag. (DanielEScherzer) + +- FPM: + . Fixed bug GH-19817 (Decode SCRIPT_FILENAME issue in php 8.5). + (Jakub Zelenka) + . Fixed bug GH-19989 (PHP 8.5 FPM access log lines also go to STDERR). + (Jakub Zelenka) + . Fixed GH-17645 (FPM with httpd ProxyPass does not decode script path). + (Jakub Zelenka) + . Make FPM access log limit configurable using log_limit. (Jakub Zelenka) + . Fixed failed debug assertion when php_admin_value setting fails. (ilutov) + . Fixed GH-8157 (post_max_size evaluates .user.ini too late in php-fpm). + (Jakub Zelenka) + +- GD: + . Fixed bug #68629 (Transparent artifacts when using imagerotate). (pierre, + cmb) + . Fixed bug #64823 (ZTS GD fails to find system TrueType font). (cmb) + . Fix incorrect comparison with result of php_stream_can_cast(). (Girgias) + . The imagedestroy() function has been deprecated. (DanielEScherzer) + +- Iconv: + . Extends the ICONV_CONST preprocessor for illumos/solaris. (jMichaelA) + +- Intl: + . Bumped ICU requirement to ICU >= 57.1. (cmb) + . IntlDateFormatter::setTimeZone()/datefmt_set_timezone() throws an exception + with uninitialised classes or clone failure. (David Carlier) + . Added DECIMAL_COMPACT_SHORT/DECIMAL_COMPACT_LONG for NumberFormatter class. + (BogdanUngureanu) + . Added Locale::isRightToLeft to check if a locale is written right to left. + (David Carlier) + . Added null bytes presence in locale inputs for Locale class. (David Carlier) + . Added grapheme_levenshtein() function. (Yuya Hamada) + . Added Locale::addLikelySubtags/Locale::minimizeSubtags to handle + adding/removing likely subtags to a locale. (David Carlier) + . Added IntlListFormatter class to format a list of items with a locale, + operands types and units. (BogdanUngureanu) + . Added grapheme_strpos(), grapheme_stripos(), grapheme_strrpos(), + grapheme_strripos(), grapheme_substr(), grapheme_strstr(), grapheme_stristr() and + grapheme_levenshtein() functions add $locale parameter (Yuya Hamada). + . Fixed bug GH-11952 (Fix locale strings canonicalization for IntlDateFormatter + and NumberFormatter). (alexandre-daubois) + . Fixed bug GH-18566 ([intl] Weird numeric sort in Collator). (nielsdos) + . Fix return value on failure for resourcebundle count handler. (Girgias) + . Fixed bug GH-19307 (PGO builds of shared ext-intl are broken). (cmb) + . Intl's internal error mechanism has been modernized so that it + indicates more accurately which call site caused what error. + Moreover, some ext/date exceptions have been wrapped inside a + IntlException now. (Girgias) + . The intl.error_level INI setting has been deprecated. (Girgias) + +- LDAP: + . Allow ldap_get_option to retrieve global option by allowing NULL for + connection instance ($ldap). (Remi) + +- MBstring: + . Updated Unicode data tables to Unicode 17.0. (Yuya Hamada) + +- MySQLi: + . Fixed bugs GH-17900 and GH-8084 (calling mysqli::__construct twice). + (nielsdos) + . The mysqli_execute() alias function has been deprecated. (timwolla) + +- MySQLnd: + . Added mysqlnd.collect_memory_statistics to ini quick reference. + (hauk92) + +- ODBC: + . Removed driver-specific build flags and support. (Calvin Buckley) + . Remove ODBCVER and assume ODBC 3.5. (Calvin Buckley) + +- Opcache: + . Make OPcache non-optional (Arnaud, timwolla) + . Added opcache.file_cache_read_only. (Samuel Melrose) + . Updated default value of opcache.jit_hot_loop. (Arnaud) + . Log a warning when opcache lock file permissions could not be changed. + (Taavi Eomäe) + . Fixed bug GH-20012 (heap buffer overflow in jit). (Arnaud) + . Partially fixed bug GH-17733 (Avoid calling wrong function when reusing file + caches across differing environments). (ilutov) + . Disallow changing opcache.memory_consumption when SHM is already set up. + (timwolla) + . Fixed bug GH-15074 (Compiling opcache statically into ZTS PHP fails). + (Arnaud) + . Fixed bug GH-17422 (OPcache bypasses the user-defined error handler for + deprecations). (Arnaud, timwolla) + . Fixed bug GH-19301 (opcache build failure). (Remi) + . Fixed bug GH-20081 (access to uninitialized vars in preload_load()). + (Arnaud) + . Fixed bug GH-20121 (JIT broken in ZTS builds on MacOS 15). + (Arnaud, Shivam Mathur) + . Fixed bug GH-19875 (JIT 1205 segfault on large file compiled in subprocess). + (Arnaud) + . Fixed segfault in function JIT due to NAN to bool warning. (Girgias) + . Fixed bug GH-19984 (Double-free of EG(errors)/persistent_script->warnings on + persist of already persisted file). (ilutov, Arnaud) + . Fixed bug GH-19889 (race condition in zend_runtime_jit(), + zend_jit_hot_func()). (Arnaud) + . Fixed bug GH-19669 (assertion failure in zend_jit_trace_type_to_info_ex). + (Arnaud) + . Fixed bug GH-19831 (function JIT may not deref property value). (Arnaud) + . Fixed bug GH-19486 (Incorrect opline after deoptimization). (Arnaud) + . Fixed bug GH-19601 (Wrong JIT stack setup on aarch64/clang). (Arnaud) + . Fixed bug GH-19388 (Broken opcache.huge_code_pages). (Arnaud) + . Fixed bug GH-19657 (Build fails on non-glibc/musl/freebsd/macos/win + platforms). (Arnaud) + . Fixed ZTS OPcache build on Cygwin. (cmb) + . Fixed bug GH-19493 (JIT variable not stored before YIELD). (Arnaud) + +- OpenSSL: + . Added openssl.libctx INI that allows to select the OpenSSL library context + type and convert various parts of the extension to use the custom libctx. + (Jakub Zelenka) + . Add $digest_algo parameter to openssl_public_encrypt() and + openssl_private_decrypt() functions. (Jakub Zelenka) + . Implement #81724 (openssl_cms_encrypt only allows specific ciphers). + (Jakub Zelenka) + . Implement #80495 (Enable to set padding in openssl_(sign|verify). + (Jakub Zelenka) + . Implement #47728 (openssl_pkcs7_sign ignores new openssl flags). + (Jakub Zelenka) + . Fixed bug GH-19994 (openssl_get_cipher_methods inconsistent with fetching). + (Jakub Zelenka) + . Fixed build when --with-openssl-legacy-provider set. (Jakub Zelenka) + . Fixed bug GH-19369 (8.5 | Regression in openssl_sign() - support for alias + algorithms appears to be broken). (Jakub Zelenka) + . The $key_length parameter for openssl_pkey_derive() has been deprecated. + (Girgias) + +- Output: + . Fixed calculation of aligned buffer size. (cmb) + +- PCNTL: + . Extend pcntl_waitid with rusage parameter. (vrza) + +- PCRE: + . Remove PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK from pcre compile options. + (mvorisek) + +- PDO: + . Fixed bug GH-20095 (Incorrect class name in deprecation message for PDO + mixins). (timwolla) + . Driver specific methods and constants in the PDO class + are now deprecated. (Arnaud) + . The "uri:" DSN scheme has been deprecated due to security concerns with + DSNs coming from remote URIs. (timwolla) + +- PDO_ODBC: + . Fetch larger block sizes and better handle SQL_NO_TOTAL when calling + SQLGetData. (Calvin Buckley, Saki Takamachi) + +- PDO_PGSQL: + . Added Iterable support for PDO::pgsqlCopyFromArray. (KentarouTakeda) + . Implement GH-15387 Pdo\Pgsql::setAttribute(PDO::ATTR_PREFETCH, 0) or + Pdo\Pgsql::prepare(…, [ PDO::ATTR_PREFETCH => 0 ]) make fetch() lazy + instead of storing the whole result set in memory (Guillaume Outters) + +- PDO_SQLITE: + . Add PDO\Sqlite::ATTR_TRANSACTION_MODE connection attribute. + (Samuel Štancl) + . Implement GH-17321: Add setAuthorizer to Pdo\Sqlite. (nielsdos) + . PDO::sqliteCreateCollation now throws a TypeError if the callback + has a wrong return type. (David Carlier) + . Added Pdo_Sqlite::ATTR_BUSY_STATEMENT constant to check + if a statement is currently executing. (David Carlier) + . Added Pdo_Sqlite::ATTR_EXPLAIN_STATEMENT constant to set a statement + in either EXPLAIN_MODE_PREPARED, EXPLAIN_MODE_EXPLAIN, + EXPLAIN_MODE_EXPLAIN_QUERY_PLAN modes. (David Carlier) + . Fix bug GH-13952 (sqlite PDO::quote silently corrupts strings + with null bytes) by throwing on null bytes. (divinity76) + +- PGSQL: + . Added pg_close_stmt to close a prepared statement while allowing + its name to be reused. (David Carlier) + . Added Iterable support for pgsql_copy_from. (David Carlier) + . pg_connect checks if connection_string contains any null byte, + pg_close_stmt check if the statement contains any null byte. + (David Carlier) + . Added pg_service to get the connection current service identifier. + (David Carlier) + . Fix segfaults when attempting to fetch row into a non-instantiable class + name. (Girgias, nielsdos) + +- Phar: + . Fix potential buffer length truncation due to usage of type int instead + of type size_t. (Girgias) + . Fixed memory leaks when verifying OpenSSL signature. (Girgias) + +- POSIX: + . Added POSIX_SC_OPEN_MAX constant to get the number of file descriptors + a process can handle. (David Carlier) + . posix_ttyname() sets last_error to EBADF on invalid file descriptors, + posix_isatty() raises E_WARNING on invalid file descriptors, + posix_fpathconf checks invalid file descriptors. (David Carlier) + . posix_kill and posix_setpgid throws a ValueError on invalid process_id. + (David Carlier) + . posix_setpgid throws a ValueError on invalid process_group_id, + posix_setrlimit throws a ValueError on invalid soft_limit and hard_limit + arguments. (David Carlier) + +- Random: + . Moves from /dev/urandom usage to arc4random_buf on Haiku. (David Carlier) + +- Reflection: + . Added ReflectionConstant::getExtension() and ::getExtensionName(). + (DanielEScherzer) + . Added ReflectionProperty::getMangledName() method. (alexandre-daubois) + . ReflectionConstant is no longer final. (sasezaki) + . The setAccessible() methods of various Reflection objects have been + deprecated, as those no longer have an effect. (timwolla) + . ReflectionClass::getConstant() for constants that do not exist has been + deprecated. (DanielEScherzer) + . ReflectionProperty::getDefaultValue() for properties without default values + has been deprecated. (DanielEScherzer) + . Fixed bug GH-12856 (ReflectionClass::getStaticPropertyValue() returns UNDEF + zval for uninitialized typed properties). (nielsdos) + . Fixed bug GH-15766 (ReflectionClass::__toString() should have better output + for enums). (DanielEScherzer) + . Fix GH-19691 (getModifierNames() not reporting asymmetric visibility). + (DanielEScherzer) + . Fixed bug GH-17927 (Reflection: have some indication of property hooks in + `_property_string()`). (DanielEScherzer) + . Fixed bug GH-19187 (ReflectionNamedType::getName() prints nullable type when + retrieved from ReflectionProperty::getSettableType()). (ilutov) + . Fixed bug GH-20217 (ReflectionClass::isIterable() incorrectly returns true + for classes with property hooks). (alexandre-daubois) + +- SAPI: + . Fixed bug GH-18582 and #81451: http_response_code() does not override the + status code generated by header(). (ilutov, Jakub Zelenka) + +- Session: + . session_start() throws a ValueError on option argument if not a hashmap + or a TypeError if read_and_close value is not compatible with int. + (David Carlier) + . Added support for partitioned cookies. (nielsdos) + . Fix RC violation of session SID constant deprecation attribute. (ilutov) + . Fixed GH-19197: build broken with ZEND_STRL usage with memcpy + when implemented as macro. (David Carlier) + +- SimpleXML: + . Fixed bug GH-12231 (SimpleXML xpath should warn when returning other return + types than node lists). (nielsdos) + +- SNMP: + . snmpget, snmpset, snmp_get2, snmp_set2, snmp_get3, snmp_set3 and + SNMP::__construct() throw an exception on invalid hostname, community + timeout and retries arguments. (David Carlier) + +- SOAP: + . Added support for configuring the URI parser for SoapClient::__doRequest() + as described in https://wiki.php.net/rfc/url_parsing_api#plugability. + (kocsismate) + . Implement request #55503 (Extend __getTypes to support enumerations). + (nielsdos, datibbaw) + . Implement request #61105 (Support Soap 1.2 SoapFault Reason Text lang + attribute). (nielsdos) + . Fixed bug #49169 (SoapServer calls wrong function, although "SOAP action" + header is correct). (nielsdos) + . Fix namespace handling of WSDL and XML schema in SOAP, + fixing at least GH-16320 and bug #68576. (nielsdos) + . Fixed bug #70951 (Segmentation fault on invalid WSDL cache). (nielsdos) + . Fixed bug GH-19773 (SIGSEGV due to uninitialized soap_globals->lang_en). + (nielsdos, KaseyJenkins) + . Fixed bug GH-19226 (Segfault when spawning new thread in soap extension). + (Florian Engelhardt) + +- Sockets: + . Added IPPROTO_ICMP/IPPROTO_ICMPV6 to create raw socket for ICMP usage. + (David Carlier) + . Added TCP_FUNCTION_BLK to change the TCP stack algorithm on FreeBSD. + (David Carlier) + . Added IP_BINDANY for a socket to bind to any address. (David Carlier) + . Added SO_BUSY_POOL to reduce packets poll latency. (David Carlier) + . Added UDP_SEGMENT support to optimise multiple large datagrams over UDP + if the kernel and hardware supports it. (David Carlier) + . Added SHUT_RD, SHUT_WR and SHUT_RDWR constants for socket_shutdown(). + (David Carlier) + . Added TCP_FUNCTION_ALIAS, TCP_REUSPORT_LB_NUMA, TCP_REUSPORT_LB_NUMA_NODOM, + TCP_REUSPORT_LB_CURDOM, TCP_BBR_ALGORITHM constants. + . socket_set_option() catches possible overflow with SO_RCVTIMEO/SO_SNDTIMEO + with timeout setting on windows. (David Carlier) + . socket_create_listen() throws an exception on invalid port value. + (David Carlier) + . socket_bind() throws an exception on invalid port value. + (David Carlier) + . socket_sendto() throws an exception on invalid port value. + (David Carlier) + . socket_addrinfo_lookup throws an exception on invalid hints value types. + (David Carlier) + . socket_addrinfo_lookup throws an exception if any of the hints value + overflows. (David Carlier) + . socket_addrinfo_lookup throws an exception if one or more hints entries + has an index as numeric. (David Carlier) + . socket_set_option with the options MCAST_LEAVE_GROUP/MCAST_LEAVE_SOURCE_GROUP + will throw an exception if its value is not a valid array/object. + (David Carlier) + . socket_getsockname/socket_create/socket_bind handled AF_PACKET family socket. + (David Carlier) + . socket_set_option for multicast context throws a ValueError + when the socket family is not of AF_INET/AF_INET6 family. (David Carlier) + +- Sodium: + . Fix overall theoretical overflows on zend_string buffer allocations. + (David Carlier/nielsdos) + +- SPL: + . Fixed bug GH-20101 (SplHeap/SplPriorityQueue serialization + exposes INDIRECTs). (nielsdos) + . Improve __unserialize() hardening for SplHeap/SplPriorityQueue. (nielsdos) + . Deprecate ArrayObject and ArrayIterator with objects. (Girgias) + . Unregistering all autoloaders by passing the spl_autoload_call() function + as a callback argument to spl_autoload_unregister() has been deprecated. + Instead if this is needed, one should iterate over the return value of + spl_autoload_functions() and call spl_autoload_unregister() on each + value. (Girgias) + . The SplObjectStorage::contains(), SplObjectStorage::attach(), and + SplObjectStorage::detach() methods have been deprecated in favour of + SplObjectStorage::offsetExists(), SplObjectStorage::offsetSet(), and + SplObjectStorage::offsetUnset() respectively. (Girgias) + +- Sqlite: + . Added Sqlite3Stmt::busy to check if a statement is still being executed. + (David Carlier) + . Added Sqlite3Stmt::explain to produce an explain query plan from + the statement. (David Carlier) + . Added Sqlite3Result::fetchAll to return all results at once from a query. + (David Carlier) + +- Standard: + . Add HEIF/HEIC support to getimagesize. (Benstone Zhang) + . Added support for partitioned cookies. (nielsdos) + . Implement #71517 (Implement SVG support for getimagesize() and friends). + (nielsdos) + . Implement GH-19188: Add support for new INI mail.cr_lf_mode. + (alexandre-daubois) + . Optimized PHP html_entity_decode function. (Artem Ukrainskiy) + . Minor optimization to array_chunk(). (nielsdos) + . Optimized pack(). (nielsdos, divinity76) + . Fixed crypt() tests on musl when using --with-external-libcrypt + (Michael Orlitzky). + . Fixed bug GH-18062 (is_callable(func(...), callable_name: $name) for first + class callables returns wrong name). (timwolla) + . Added array_first() and array_last(). (nielsdos) + . Fixed bug GH-18823 (setlocale's 2nd and 3rd argument ignores strict_types). + (nielsdos) + . Fixed exit code handling of sendmail cmd and added warnings. + (Jesse Hathaway) + . Fixed bug GH-18897 (printf: empty precision is interpreted as precision 6, + not as precision 0). (nielsdos) + . Fixed bug GH-20257 (mail() heap overflow with an empty message in lf mode). + (David Carlier) + . Fixed bug GH-20201 (AVIF images misdetected as HEIF after introducing HEIF + support in getimagesize()). (nielsdos) + . Fixed bug GH-19926 (reset internal pointer earlier while splicing array + while COW violation flag is still set). (alexandre-daubois) + . Fixed bug GH-19801 (leaks in var_dump() and debug_zval_dump()). + (alexandre-daubois) + . Fixed GH-14402 (SplPriorityQueue, SplMinHeap, and SplMaxHeap lost their + data on serialize()). (alexandre-daubois) + . Fixed GH-19610 (Deprecation warnings in functions taking as argument). + (Girgias) + . Fixed bug GH-19577 (Avoid integer overflow when using a small offset + and PHP_INT_MAX with LimitIterator). (alexandre-daubois) + . Fixed bug GH-19153 (#[\Attribute] validation should error on + trait/interface/enum/abstract class). (DanielEScherzer) + . Fixed bug GH-19070 (setlocale($type, NULL) should not be deprecated). + (nielsdos) + . Fixed bug GH-16649 (UAF during array_splice). (alexandre-daubois) + . Passing strings which are not one byte long to ord() is now deprecated. + (Girgias) + . Passing integers outside the interval [0, 255] to chr() is now deprecated. + (Girgias) + . The socket_set_timeout() alias function has been deprecated. (timwolla) + . Passing null to readdir(), rewinddir(), and closedir() to use the last + opened directory has been deprecated. (Girgias) + +- Streams: + . Fixed bug GH-16889 (stream_select() timeout useless for pipes on Windows). + (cmb) + . Fixed bug GH-19798: XP_SOCKET XP_SSL (Socket stream modules): Incorrect + condition for Win32/Win64. (Jakub Zelenka) + . Fixed bug GH-14506 (Closing a userspace stream inside a userspace handler + causes heap corruption). (nielsdos) + . Avoid double conversion to string in php_userstreamop_readdir(). (nielsdos) + +- Tests: + . Allow to shuffle tests even in non-parallel mode. (dhuang00) + +- Tidy: + . tidy::__construct/parseFile/parseString methods throw an exception if + the configuration argument is invalid. (David Carlier) + . Fixed GH-19021 (improved tidyOptGetCategory detection). + (arjendekorte, David Carlier, Peter Kokot) + +- Tokenizer: + . Fixed bug GH-19507 (Corrupted result after recursive tokenization during + token_get_all()). (kubawerlos, nielsdos, Arnaud) + +- Windows: + . Fixed bug GH-10992 (Improper long path support for relative paths). (cmb, + nielsdos) + . Fixed bug GH-16843 (Windows phpize builds ignore source subfolders). (cmb) + . Fix GH-19722 (_get_osfhandle asserts in debug mode when given a socket). + (dktapps) + +- XML: + . The xml_parser_free() function has been deprecated. (DanielEScherzer) + +- XMLWriter: + . Improved performance and reduce memory consumption. (nielsdos) + +- XSL: + . Implement request #30622 (make $namespace parameter functional). (nielsdos) + +- Zlib: + . gzfile, gzopen and readgzfile, their "use_include_path" argument + is now a boolean. (David Carlier) + . Fixed bug GH-16883 (gzopen() does not use the default stream context when + opening HTTP URLs). (nielsdos) + . Implemented GH-17668 (zlib streams should support locking). (nielsdos) + +- Zip: + . Fixed missing zend_release_fcall_info_cache on the following methods + ZipArchive::registerProgressCallback() and ZipArchive::registerCancelCallback() + on failure. (David Carlier) diff --git a/data/releases/8.5/8.5.0/release.json b/data/releases/8.5/8.5.0/release.json new file mode 100644 index 0000000000..5c9639b720 --- /dev/null +++ b/data/releases/8.5/8.5.0/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.5.0", + "date": "20 Nov 2025", + "tags": [ + "" + ], + "source": [ + { + "filename": "php-8.5.0.tar.gz", + "name": "PHP 8.5.0 (tar.gz)", + "sha256": "dc3651369c9b63320dd4ea8e272c6a23f18e50f67c13d10ee368c86961dbd10f" + }, + { + "filename": "php-8.5.0.tar.bz2", + "name": "PHP 8.5.0 (tar.bz2)", + "sha256": "cd16cb045b34a6cec6a83008e1b335f365c7a832fcc483df82308664c6d021f9" + }, + { + "filename": "php-8.5.0.tar.xz", + "name": "PHP 8.5.0 (tar.xz)", + "sha256": "39cb6e4acd679b574d3d3276f148213e935fc25f90403eb84fb1b836a806ef1e" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.5/8.5.1/announcement.html b/data/releases/8.5/8.5.1/announcement.html new file mode 100644 index 0000000000..f1b1a51a8e --- /dev/null +++ b/data/releases/8.5/8.5.1/announcement.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/8.5.1/changes.txt b/data/releases/8.5/8.5.1/changes.txt new file mode 100644 index 0000000000..7f368effb9 --- /dev/null +++ b/data/releases/8.5/8.5.1/changes.txt @@ -0,0 +1,101 @@ +- Core: + . Sync all boost.context files with release 1.86.0. (mvorisek) + . Fixed bug GH-20435 (SensitiveParameter doesn't work for named argument + passing to variadic parameter). (ndossche) + . Fixed bug GH-20546 (preserve_none attribute configure check on macOs + issue). (David Carlier/cho-m) + . Fixed bug GH-20286 (use-after-destroy during userland stream_close()). + (ndossche, David Carlier) + +- Bz2: + . Fix assertion failures resulting in crashes with stream filter + object parameters. (ndossche) + +- DOM: + . Fix memory leak when edge case is hit when registering xpath callback. + (ndossche) + . Fixed bug GH-20395 (querySelector and querySelectorAll requires elements + in $selectors to be lowercase). (ndossche) + . Fix missing NUL byte check on C14NFile(). (ndossche) + +- Fibers: + . Fixed bug GH-20483 (ASAN stack overflow with fiber.stack_size INI + small value). (David Carlier) + +- Intl: + . Fixed bug GH-20426 (Spoofchecker::setRestrictionLevel() error message + suggests missing constants). (DanielEScherzer) + +- Lexbor: + . Fixed bug GH-20501 (\Uri\WhatWg\Url lose host after calling + withPath() or withQuery()). (lexborisov) + . Fixed bug GH-20502 (\Uri\WhatWg\Url crashes (SEGV) when parsing + malformed URL due to Lexbor memory corruption). (lexborisov) + +- LibXML: + . Fix some deprecations on newer libxml versions regarding input + buffer/parser handling. (ndossche) + +- mysqli: + . Make mysqli_begin_transaction() report errors properly. (Kamil Tekiela) + +- MySQLnd: + . Fixed bug GH-20528 (Regression breaks mysql connexion using an IPv6 address + enclosed in square brackets). (Remi) + +- Opcache: + . Fixed bug GH-20329 (opcache.file_cache broken with full interned string + buffer). (Arnaud) + +- PDO: + . Fixed bug GH-20553 (PDO::FETCH_CLASSTYPE ignores $constructorArgs in + PHP 8.5.0). (Girgias) + . Fixed GHSA-8xr5-qppj-gvwj (PDO quoting result null deref). (CVE-2025-14180) + (Jakub Zelenka) + +- Phar: + . Fixed bug GH-20442 (Phar does not respect case-insensitiveness of + __halt_compiler() when reading stub). (ndossche, TimWolla) + . Fix broken return value of fflush() for phar file entries. (ndossche) + . Fix assertion failure when fseeking a phar file out of bounds. (ndossche) + +- PHPDBG: + . Fixed ZPP type violation in phpdbg_get_executable() and phpdbg_end_oplog(). + (Girgias) + +- SPL: + . Fixed bug GH-20614 (SplFixedArray incorrectly handles references + in deserialization). (ndossche) + +- Standard: + . Fix memory leak in array_diff() with custom type checks. (ndossche) + . Fixed bug GH-20583 (Stack overflow in http_build_query + via deep structures). (ndossche) + . Fixed GHSA-www2-q4fc-65wf (Null byte termination in dns_get_record()). + (ndossche) + . Fixed GHSA-h96m-rvf9-jgm2 (Heap buffer overflow in array_merge()). + (CVE-2025-14178) (ndossche) + . Fixed GHSA-3237-qqm7-mfv7 (Information Leak of Memory in getimagesize). + (CVE-2025-14177) (ndossche) + +- Streams: + . Fixed bug GH-20370 (User stream filters could violate typed property + constraints). (alexandre-daubois) + +- URI: + . Fixed bug GH-20366 (ext/uri incorrectly throws ValueError when encountering + null byte). (kocsismate) + . Fixed CVE-2025-67899 (uriparser through 0.9.9 allows unbounded recursion + and stack consumption). (Sebastian Pipping) + +- XML: + . Fixed bug GH-20439 (xml_set_default_handler() does not properly handle + special characters in attributes when passing data to callback). (ndossche) + +- Zip: + . Fix crash in property existence test. (ndossche) + . Don't truncate return value of zip_fread() with user sizes. (ndossche) + +- Zlib: + . Fix assertion failures resulting in crashes with stream filter + object parameters. (ndossche) diff --git a/data/releases/8.5/8.5.1/release.json b/data/releases/8.5/8.5.1/release.json new file mode 100644 index 0000000000..ac0afe9d86 --- /dev/null +++ b/data/releases/8.5/8.5.1/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.5.1", + "date": "18 Dec 2025", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.5.1.tar.gz", + "name": "PHP 8.5.1 (tar.gz)", + "sha256": "915492958081409a5e3ef99df969bcfa5b33bdf9517bd077991747e17fa2c1b7" + }, + { + "filename": "php-8.5.1.tar.bz2", + "name": "PHP 8.5.1 (tar.bz2)", + "sha256": "55f428c426e7241752ea9afff160bb64c32a9321cbd6d17d1c145b8df8823737" + }, + { + "filename": "php-8.5.1.tar.xz", + "name": "PHP 8.5.1 (tar.xz)", + "sha256": "3f5bf99ce81201f526d25e288eddb2cfa111d068950d1e9a869530054ff98815" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.5/8.5.2/announcement.html b/data/releases/8.5/8.5.2/announcement.html new file mode 100644 index 0000000000..efef1d0dc1 --- /dev/null +++ b/data/releases/8.5/8.5.2/announcement.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/8.5.2/changes.txt b/data/releases/8.5/8.5.2/changes.txt new file mode 100644 index 0000000000..942e4d8c86 --- /dev/null +++ b/data/releases/8.5/8.5.2/changes.txt @@ -0,0 +1,68 @@ +- Core: + . Fix OSS-Fuzz #465488618 (Wrong assumptions when dumping function signature + with dynamic class const lookup default argument). (ilutov) + . Fixed bug GH-20695 (Assertion failure in normalize_value() when parsing + malformed INI input via parse_ini_string()). (ndossche) + . Fixed bug GH-20714 (Uncatchable exception thrown in generator). (ilutov) + . Fixed bug GH-20352 (UAF in php_output_handler_free via re-entrant + ob_start() during error deactivation). (ndossche) + . Fixed bug GH-20745 ("Casting out of range floats to int" applies to + strings). (Bob) + +- DOM: + . Fixed bug GH-20722 (Null pointer dereference in DOM namespace node cloning + via clone on malformed objects). (ndossche) + . Fixed bug GH-20444 (Dom\XMLDocument::C14N() seems broken compared + to DOMDocument::C14N()). (ndossche) + +- EXIF: + . Fixed bug GH-20631 (Integer underflow in exif HEIF parsing + when pos.size < 2). (Oblivionsage) + +- Intl: + . Fix leak in umsg_format_helper(). (ndossche) + +- LDAP: + . Fix memory leak in ldap_set_options(). (ndossche) + +- Lexbor: + . Fixed bug GH-20668 (\Uri\WhatWg\Url::withHost() crashes (SEGV) for URLs + using the file: scheme). (lexborisov) + +- Mbstring: + . Fixed bug GH-20674 (mb_decode_mimeheader does not handle separator). + (Yuya Hamada) + +- OpenSSL: + . Fixed bug GH-20802 (undefined behavior with invalid SNI_server_certs + options). (David Carlier) + +- PCNTL: + . Fixed bug with pcntl_getcpuaffinity() on solaris regarding invalid + process ids handling. (David Carlier) + +- Phar: + . Fixed bug GH-20732 (Phar::LoadPhar undefined behavior when reading fails). + (ndossche) + . Fix SplFileInfo::openFile() in write mode. (ndossche) + . Fix build on legacy OpenSSL 1.1.0 systems. (Giovanni Giacobbi) + . Fixed bug #74154 (Phar extractTo creates empty files). (ndossche) + +- Session: + . Fix support for MM module. (Michael Orlitzky) + +- Sqlite3: + . Fixed bug GH-20699 (SQLite3Result fetchArray return array|false, + null returned). (ndossche, plusminmax) + +- Standard: + . Fix error check for proc_open() command. (ndossche) + . Fix memory leak in mail() when header key is numeric. (Girgias) + . Fixed bug GH-20582 (Heap Buffer Overflow in iptcembed). (ndossche) + +- URI: + . Fixed bug GH-20771 (Assertion failure when getUnicodeHost() returns + empty string). (ndossche) + +- Zlib: + . Fix OOB gzseek() causing assertion failure. (ndossche) diff --git a/data/releases/8.5/8.5.2/release.json b/data/releases/8.5/8.5.2/release.json new file mode 100644 index 0000000000..493ee088f5 --- /dev/null +++ b/data/releases/8.5/8.5.2/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.5.2", + "date": "15 Jan 2026", + "tags": [], + "source": [ + { + "filename": "php-8.5.2.tar.gz", + "name": "PHP 8.5.2 (tar.gz)", + "sha256": "379ccccefcc85f28286444cf01bc0db017c79d513417267f5bb1d804b8428c22" + }, + { + "filename": "php-8.5.2.tar.bz2", + "name": "PHP 8.5.2 (tar.bz2)", + "sha256": "f7efdeccc3a810b18920692306536b99a3ba86610dbd0795a296cf77d3fb3a06" + }, + { + "filename": "php-8.5.2.tar.xz", + "name": "PHP 8.5.2 (tar.xz)", + "sha256": "cb75a9b00a2806f7390dd64858ef42a47b443b3475769c8af6af33a18b1381f1" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.5/8.5.3/announcement.html b/data/releases/8.5/8.5.3/announcement.html new file mode 100644 index 0000000000..0650f56b66 --- /dev/null +++ b/data/releases/8.5/8.5.3/announcement.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/8.5.3/changes.txt b/data/releases/8.5/8.5.3/changes.txt new file mode 100644 index 0000000000..f17d935a67 --- /dev/null +++ b/data/releases/8.5/8.5.3/changes.txt @@ -0,0 +1,66 @@ +- Core: + . Fixed bug GH-20806 (preserve_none feature compatiblity with LTO). + (henderkes) + . Fixed bug GH-20767 (build failure with musttail/preserve_none feature + on macOs). (David Carlier) + . Fixed bug GH-20837 (NULL dereference when calling ob_start() in shutdown + function triggered by bailout in php_output_lock_error()). (timwolla) + . Fix OSS-Fuzz #471533782 (Infinite loop in GC destructor fiber). (ilutov) + . Fix OSS-Fuzz #472563272 (Borked block_pass JMP[N]Z optimization). (ilutov) + . Fixed bug GH-20914 (Internal enums can be cloned and compared). (Arnaud) + . Fix OSS-Fuzz #474613951 (Leaked parent property default value). (ilutov) + . Fixed bug GH-20895 (ReflectionProperty does not return the PHPDoc of a + property if it contains an attribute with a Closure). (timwolla) + . Fixed bug GH-20766 (Use-after-free in FE_FREE with GC interaction). (Bob) + . Fix OSS-Fuzz #471486164 (Broken by-ref assignment to uninitialized hooked + backing value). (ilutov) + . Fix OSS-Fuzz #438780145 (Nested finally with repeated return type check may + uaf). (ilutov) + . Fixed bug GH-20905 (Lazy proxy bailing __clone assertion). (ilutov) + . Fixed bug GH-20479 (Hooked object properties overflow). (ndossche) + +- Date: + . Update timelib to 2022.16. (Derick) + +- DOM: + . Fixed GH-21041 (Dom\HTMLDocument corrupts closing tags within scripts). + (lexborisov) + +- MbString: + . Fixed bug GH-20833 (mb_str_pad() divide by zero if padding string is + invalid in the encoding). (ndossche) + . Fixed bug GH-20836 (Stack overflow in mb_convert_variables with + recursive array references). (alexandre-daubois) + +- Opcache: + . Fixed bug GH-20818 (Segfault in Tracing JIT with object reference). + (khasinski) + +- OpenSSL: + . Fix memory leaks when sk_X509_new_null() fails. (ndossche) + . Fix crash when in openssl_x509_parse() when i2s_ASN1_INTEGER() fails. + (ndossche) + . Fix crash in openssl_x509_parse() when X509_NAME_oneline() fails. + (ndossche) + +- Phar: + . Fixed bug GH-20882 (buildFromIterator breaks with missing base directory). + (ndossche) + +- PGSQL: + . Fixed INSERT/UPDATE queries building with PQescapeIdentifier() and possible + UB. (David Carlier) + +- Readline: + . Fixed bug GH-18139 (Memory leak when overriding some settings + via readline_info()). (ndossche) + +- SPL: + . Fixed bug GH-20856 (heap-use-after-free in SplDoublyLinkedList iterator + when modifying during iteration). (ndossche) + +- Standard: + . Fixed bug #74357 (lchown fails to change ownership of symlink with ZTS) + (Jakub Zelenka) + . Fixed bug GH-20843 (var_dump() crash with nested objects) + (David Carlier) diff --git a/data/releases/8.5/8.5.3/release.json b/data/releases/8.5/8.5.3/release.json new file mode 100644 index 0000000000..fbb78b7933 --- /dev/null +++ b/data/releases/8.5/8.5.3/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.5.3", + "date": "12 Feb 2026", + "tags": [], + "source": [ + { + "filename": "php-8.5.3.tar.gz", + "name": "PHP 8.5.3 (tar.gz)", + "sha256": "402654d99b4beda602d4daec4f1cd39aafdacf5923e3e947da87392826660146" + }, + { + "filename": "php-8.5.3.tar.bz2", + "name": "PHP 8.5.3 (tar.bz2)", + "sha256": "fc5ecabc183ceb64d9fca3dcd387bd29b2b67448326af998fde003124916823b" + }, + { + "filename": "php-8.5.3.tar.xz", + "name": "PHP 8.5.3 (tar.xz)", + "sha256": "ce65725b8af07356b69a6046d21487040b11f2acfde786de38b2bfb712c36eb9" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.5/8.5.4/announcement.html b/data/releases/8.5/8.5.4/announcement.html new file mode 100644 index 0000000000..a6c16ce30e --- /dev/null +++ b/data/releases/8.5/8.5.4/announcement.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/8.5.4/changes.txt b/data/releases/8.5/8.5.4/changes.txt new file mode 100644 index 0000000000..0df263b666 --- /dev/null +++ b/data/releases/8.5/8.5.4/changes.txt @@ -0,0 +1,50 @@ +- Core: + . Fixed bug GH-21029 (zend_mm_heap corrupted on Aarch64, LTO builds). (Arnaud) + . Fixed bug GH-21059 (Segfault when preloading constant AST closure). (ilutov) + . Fixed bug GH-21072 (Crash on (unset) cast in constant expression). + (arshidkv12) + . Fix deprecation now showing when accessing null key of an array with JIT. + (alexandre-daubois) + . Fixed bug GH-20657 (Assertion failure in zend_lazy_object_get_info triggered + by setRawValueWithoutLazyInitialization() and newLazyGhost()). (Arnaud) + . Fixed bug GH-20504 (Assertion failure in zend_get_property_guard when + accessing properties on Reflection LazyProxy via isset()). (Arnaud) + . Fixed OSS-Fuzz #478009707 (Borked assign-op/inc/dec on untyped hooked + property backing value). (ilutov) + . Fixed bug GH-21215 (Build fails with -std=). (Arnaud) + . Fixed bug GH-13674 (Build system installs libtool wrappers when using + slibtool). (Michael Orlitzky) + +- Curl: + . Don't truncate length. (ndossche) + +- Date: + . Fixed bug GH-20936 (DatePeriod::__set_state() cannot handle null start). + (ndossche) + . Fix timezone offset with seconds losing precision. (ndossche) + +- DOM: + . Fixed bug GH-21077 (Accessing Dom\Node::baseURI can throw TypeError). + (ndossche) + . Fixed bug GH-21097 (Accessing Dom\Node properties can can throw TypeError). + (ndossche) + +- LDAP: + . Fixed bug GH-21262 (ldap_modify() too strict controls argument validation + makes it impossible to unset attribute). (David Carlier) + +- MBString: + . Fixed bug GH-21223; mb_guess_encoding no longer crashes when passed huge + list of candidate encodings (with 200,000+ entries). (Jordi Kroon) + +- Opcache: + . Fixed bug GH-20718 ("Insufficient shared memory" when using JIT on Solaris). + (Petr Sumbera) + . Fixed bug GH-21227 (Borked SCCP of array containing partial object). + (ilutov) + +- OpenSSL: + . Fix a bunch of leaks and error propagation. (ndossche) + +- Windows: + . Fixed compilation with clang (missing intrin.h include). (Kévin Dunglas) diff --git a/data/releases/8.5/8.5.4/release.json b/data/releases/8.5/8.5.4/release.json new file mode 100644 index 0000000000..f277b6b792 --- /dev/null +++ b/data/releases/8.5/8.5.4/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.5.4", + "date": "12 Mar 2026", + "tags": [], + "source": [ + { + "filename": "php-8.5.4.tar.gz", + "name": "PHP 8.5.4 (tar.gz)", + "sha256": "4fef7f44eff3c18e329504cb0d3eb30b41cf54e2db05cb4ebe8b78fc37d38ce1" + }, + { + "filename": "php-8.5.4.tar.bz2", + "name": "PHP 8.5.4 (tar.bz2)", + "sha256": "2ac929a29a6b7ef4b8acec981a417b91bdf7f548f597df665cc56ab9ea95fc75" + }, + { + "filename": "php-8.5.4.tar.xz", + "name": "PHP 8.5.4 (tar.xz)", + "sha256": "c1569f1f543f6b025c583cdc0e730e5c5833c603618613f1aa8e75d1524b8c91" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.5/8.5.5/announcement.html b/data/releases/8.5/8.5.5/announcement.html new file mode 100644 index 0000000000..4336579584 --- /dev/null +++ b/data/releases/8.5/8.5.5/announcement.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/8.5.5/changes.txt b/data/releases/8.5/8.5.5/changes.txt new file mode 100644 index 0000000000..5dda1ec54d --- /dev/null +++ b/data/releases/8.5/8.5.5/changes.txt @@ -0,0 +1,73 @@ +- Core: + . Fixed bug GH-20672 (Incorrect property_info sizing for locally shadowed + trait properties). (ilutov) + . Fixed bugs GH-20875, GH-20873, GH-20854 (Propagate IN_GET guard in + get_property_ptr_ptr for lazy proxies). (iliaal) + +- Bz2: + . Fix truncation of total output size causing erroneous errors. (ndossche) + +- DOM: + . Fixed bug GH-21486 (Dom\HTMLDocument parser mangles xml:space and + xml:lang attributes). (ndossche) + +- FFI: + . Fixed resource leak in FFI::cdef() onsymbol resolution failure. + (David Carlier) + +- GD: + . Fixed bug GH-21431 (phpinfo() to display libJPEG 10.0 support). + (David Carlier) + +- Opcache: + . Fixed bug GH-21052 (Preloaded constant erroneously propagated to file-cached + script). (ilutov) + . Fixed bug GH-20838 (JIT compiler produces wrong arithmetic results). + (Dmitry, iliaal) + . Fixed bug GH-21267 (JIT tracing: infinite loop on FETCH_OBJ_R with + IS_UNDEF property in polymorphic context). (Dmitry, iliaal) + . Fixed bug GH-21395 (uaf in jit). (ndossche) + +- OpenSSL: + . Fixed bug GH-21083 (Skip private_key_bits validation for EC/curve-based + keys). (iliaal) + . Fix missing error propagation for BIO_printf() calls. (ndossche) + +- PCNTL: + . Fixed signal handler installation on AIX by bumping the storage size of the + num_signals global. (Calvin Buckley) + +- PCRE: + . Fixed re-entrancy issue on php_pcre_match_impl, php_pcre_replace_impl, + php_pcre_split_impl, and php_pcre_grep_impl. (David Carlier) + +- Phar: + . Fixed bug GH-21333 (use after free when unlinking entries during iteration + of a compressed phar). (David Carlier) + +- SNMP: + . Fixed bug GH-21336 (SNMP::setSecurity() undefined behavior with + NULL arguments). (David Carlier) + +- SOAP: + . Fixed Set-Cookie parsing bug wrong offset while scanning attributes. + (David Carlier) + +- SPL: + . Fixed bug GH-21454 (missing write lock validation in SplHeap). + (ndossche) + +- Standard: + . Fixed bug GH-20906 (Assertion failure when messing up output buffers). + (ndossche) + . Fixed bug GH-20627 (Cannot identify some avif images with getimagesize). + (y-guyon) + +- Sysvshm: + . Fix memory leak in shm_get_var() when variable is corrupted. (ndossche) + +- XSL: + . Fix GH-21357 (XSLTProcessor works with DOMDocument, but fails with + Dom\XMLDocument). (ndossche) + . Fixed bug GH-21496 (UAF in dom_objects_free_storage). + (David Carlier/ndossche) diff --git a/data/releases/8.5/8.5.5/release.json b/data/releases/8.5/8.5.5/release.json new file mode 100644 index 0000000000..ac5f2d3624 --- /dev/null +++ b/data/releases/8.5/8.5.5/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.5.5", + "date": "09 Apr 2026", + "tags": [], + "source": [ + { + "filename": "php-8.5.5.tar.gz", + "name": "PHP 8.5.5 (tar.gz)", + "sha256": "276279f637a875a514346b332bba6d8b06c036cf7979a858e5c55f72c4874884" + }, + { + "filename": "php-8.5.5.tar.bz2", + "name": "PHP 8.5.5 (tar.bz2)", + "sha256": "ee262beff61c431965d1f97192854b36208adeac38983c3498bb3500ae87283c" + }, + { + "filename": "php-8.5.5.tar.xz", + "name": "PHP 8.5.5 (tar.xz)", + "sha256": "95bec382f4bd00570a8ef52a58ec04d8d9b9a90494781f1c106d1b274a3902f2" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.5/8.5.6/announcement.html b/data/releases/8.5/8.5.6/announcement.html new file mode 100644 index 0000000000..097fb4c4b2 --- /dev/null +++ b/data/releases/8.5/8.5.6/announcement.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/8.5.6/changes.txt b/data/releases/8.5/8.5.6/changes.txt new file mode 100644 index 0000000000..d54a3bd4d6 --- /dev/null +++ b/data/releases/8.5/8.5.6/changes.txt @@ -0,0 +1,113 @@ +- Core: + . Fixed bug GH-19983 (GC assertion failure with fibers, generators and + destructors). (iliaal) + . Fixed ZEND_API mismatch on zend_ce_closure forward decl for Windows+Clang. + (henderkes) + . Fixed bug GH-21504 (Incorrect RC-handling for ZEND_EXT_STMT op1). (ilutov) + . Fixed bug GH-21478 (Forward property operations to real instance for + initialized lazy proxies). (iliaal) + . Fixed bug GH-21605 (Missing addref for Countable::count()). (ilutov) + . Fixed bug GH-21699 (Assertion failure in shutdown_executor when resolving + self::/parent::/static:: callables if the error handler throws). (macoaure) + . Fixed bug GH-21603 (Missing addref for __unset). (ilutov) + . Fixed bug GH-21760 (Trait with class constant name conflict against + enum case causes SEGV). (Pratik Bhujel) + +- CLI: + . Fixed bug GH-21754 (`--rf` command line option with a method triggers + ext/reflection deprecation warnings). (DanielEScherzer) + +- Curl: + . Add support for brotli and zstd on Windows. (Shivam Mathur) + +- DOM: + . Fixed GHSA-4jhr-8w89-j733 and GH-21566 (Dom\XMLDocument::C14N() emits + duplicate xmlns declarations after setAttributeNS()). (CVE-2026-7263) + (David Carlier) + +- FPM: + . Fixed GHSA-7qg2-v9fj-4mwv (XSS within status endpoint). (CVE-2026-6735) + (Jakub Zelenka) + +- Iconv: + . Fixed bug GH-17399 (iconv memory leak on bailout). (iliaal) + +- Lexbor: + . Upgrade to lexbor v2.7.0. (CVE-2026-29078, CVE-2026-29079) + (ndossche, ilutov) + +- MBString: + . Fixed GHSA-wm6j-2649-pv75 (Null pointer dereference in + php_mb_check_encoding() via mb_ereg_search_init()). (CVE-2026-7259) + (vi3tL0u1s) + . Fixed GHSA-74r9-qxhc-fx53 (Out-of-bounds access in mbfl_name2encoding_ex()). + (CVE-2026-6104) (ilutov) + +- Opcache: + . Fixed bug GH-21158 (JIT: Assertion jit->ra[var].flags & (1<<0) failed in + zend_jit_use_reg). (Arnaud) + . Fixed bug GH-21593 (Borked function JIT JMPNZ smart branch). (ilutov) + . Fixed bug GH-21460 (COND optimization regression). (Dmitry, Arnaud) + . Fixed faulty returns out of zend_try block in zend_jit_trace(). (ilutov) + +- OpenSSL: + . Fix memory leak regression in openssl_pbkdf2(). (ndossche) + . Fix a bunch of memory leaks and crashes on edge cases. (ndossche) + +- PDO_Firebird: + . Fixed GHSA-w476-322c-wpvm (SQL injection via NUL bytes in quoted strings). + (CVE-2025-14179) (SakiTakamachi) + +- PDO_PGSQL: + . Fixed bug GH-21683 (pdo_pgsql throws with ATTR_PREFETCH=0 + on empty result set). (thomasschiet) + +- Phar: + . Restore is_link handler in phar_intercept_functions_shutdown. (iliaal) + . Fixed bug GH-21797 (phar: NULL dereference in Phar::webPhar() when + SCRIPT_NAME is absent from SAPI environment). (iliaal) + . Fix memory leak in Phar::offsetGet(). (iliaal) + . Fix memory leak in phar_add_file(). (iliaal) + . Fixed bug GH-21799 (phar: propagate phar_stream_flush return value from + phar_stream_close). (iliaal) + . Fix memory leak in phar_verify_signature() when md_ctx is invalid. + (JarneClauw) + +- Random: + . Fixed bug GH-21731 (Random\Engine\Xoshiro256StarStar::__unserialize() + accepts all-zero state). (iliaal) + +- Session: + . Fixed memory leak when session GC callback return a refcounted value. + (jorgsowa) + +- SOAP: + . Fixed GHSA-85c2-q967-79q5 (Stale SOAP_GLOBAL(ref_map) pointer with Apache + Map). (CVE-2026-6722) (ilutov) + . Fixed GHSA-m33r-qmcv-p97q (Use-after-free after header parsing failure with + SOAP_PERSISTENCE_SESSION). (CVE-2026-7261) (ilutov) + . Fixed GHSA-hmxp-6pc4-f3vv (Broken Apache map value NULL check). + (CVE-2026-7262) (ilutov) + +- SPL: + . Fixed bug GH-21499 (RecursiveArrayIterator getChildren UAF after parent + free). (Girgias) + . Fix concurrent iteration and deletion issues in SplObjectStorage. + (ndossche) + +- Sqlite3: + . Fixed wrong free list comparator pointer type. (David Carlier) + +- Standard: + . Fixed GHSA-96wq-48vp-hh57 (Signed integer overflow of char array offset). + (CVE-2026-7568) (TimWolla) + . Fixed GHSA-m8rr-4c36-8gq4 (Consistently pass unsigned char to ctype.h + functions). (CVE-2026-7258) (ilutov) + +- Streams: + . Fixed bug GH-21468 (Segfault in file_get_contents w/ a https URL + and a proxy set). (ndossche) + +- URI: + . Fixed CVE-2026-42371 (uriparser before 1.0.1 has numeric truncation in + text range comparison). (CVE-2026-42371) (Joshua W. Windle) diff --git a/data/releases/8.5/8.5.6/release.json b/data/releases/8.5/8.5.6/release.json new file mode 100644 index 0000000000..f6f72255db --- /dev/null +++ b/data/releases/8.5/8.5.6/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.5.6", + "date": "07 May 2026", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.5.6.tar.gz", + "name": "PHP 8.5.6 (tar.gz)", + "sha256": "169aaa21c2834b38df8e39169f43bc5bea8d4059a816cfbc59be08fc2bae60cd" + }, + { + "filename": "php-8.5.6.tar.bz2", + "name": "PHP 8.5.6 (tar.bz2)", + "sha256": "4457240f65f0c59a620920d66cdab1b12100a431e03ad9febe38b13a1b25957f" + }, + { + "filename": "php-8.5.6.tar.xz", + "name": "PHP 8.5.6 (tar.xz)", + "sha256": "826c600b7c6f956bd335558ca3bdbcab23b22126c1cc8d9348be2280a2204bb7" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.5/8.5.7/changes.txt b/data/releases/8.5/8.5.7/changes.txt new file mode 100644 index 0000000000..35cc5f3eb2 --- /dev/null +++ b/data/releases/8.5/8.5.7/changes.txt @@ -0,0 +1,33 @@ +- CLI: + . Fixed bug GH-21901 (Stale getopt() optional value). (onthebed) + +- Date: + . Fixed bug GH-18422 (int overflow in php_date_llabs). (iliaal) + +- DOM: + . Fixed bug GH-22077 (UAF in custom XPath function). + (afflerbach/David Carlier) + +- Opcache: + . Fixed tracing JIT crash when a VM interrupt is handled during an observed + user function call. (Levi Morrison) + . Fixed bug GH-21746 (Segfault with tracing JIT). (Arnaud) + . Fixed bug GH-22004 (Assertion failure at ext/opcache/jit/zend_jit_trace.c). + (Arnaud) + . Fixed tailcall VM crash when a VM interrupt is handled from a VM helper. + (Levi Morrison, Arnaud) + +- OpenSSL: + . Fix compatibility issues with OpenSSL 4.0. (jordikroon, Remi) + +- Standard: + . Fixed bug GH-21689 (version_compare() incorrectly handles versions ending + with a dot). (timwolla) + +- URI: + . Fixed CVE-2026-44927 (In uriparser before 1.0.2, there is pointer + difference truncation to int in various places). (CVE-2026-44927) + (Sebastian Pipping) + . Fixed CVE-2026-44928 (In uriparser before 1.0.2, the function family + EqualsUri can misclassify two unequal URIs as equal). (CVE-2026-44928) + (Sebastian Pipping) diff --git a/data/releases/8.5/8.5.7/release.json b/data/releases/8.5/8.5.7/release.json new file mode 100644 index 0000000000..e1d48c66bc --- /dev/null +++ b/data/releases/8.5/8.5.7/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.5.7", + "date": "04 Jun 2026", + "tags": [], + "source": [ + { + "filename": "php-8.5.7.tar.gz", + "name": "PHP 8.5.7 (tar.gz)", + "sha256": "e5eba93fd6dd3241d0e61e932eb99a3783b40568553fb0e511b660ecd863a049" + }, + { + "filename": "php-8.5.7.tar.bz2", + "name": "PHP 8.5.7 (tar.bz2)", + "sha256": "4ef9355f784d4b320151eb3f31c5941c0da297025eedb97f2838b2ce73dd59bf" + }, + { + "filename": "php-8.5.7.tar.xz", + "name": "PHP 8.5.7 (tar.xz)", + "sha256": "01ba2ed1c2658dacf91bebc8be6a4885f69b811c7993831fc48e26107ab29985" + } + ] +} \ 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..94a5f2b60e --- /dev/null +++ b/data/releases/8.5/highlights/03-clone-with.txt @@ -0,0 +1,62 @@ +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 +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 + { + $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/downloads.php b/downloads.php index 21325269b9..b8e53f396d 100644 --- a/downloads.php +++ b/downloads.php @@ -1,7 +1,9 @@ - +diff --git a/eol.php b/eol.php index e3eff384a4..797cc2e779 100644 --- a/eol.php +++ b/eol.php @@ -1,8 +1,11 @@ 'A guide is available for migrating from PHP 4 to 5.0.', ]; +$releases = array_filter(VersionData::all(), fn(VersionData $version) => $version->supportState === SupportState::Eol); +$releases = VersionData::sort($releases, 'desc'); + site_header('Unsupported Branches'); ?> @@ -36,7 +42,7 @@ more recent versions of PHP.
-| Branch | @@ -46,28 +52,26 @@|||
|---|---|---|---|
| - |
- format('j M Y') ?>
- - () - |
- - - - - | -- - | -
| = safe($release->label) ?> | +
+ = safe($eolDate->format('j M Y')) ?>
+ + (= safe($eolPeriod) ?>) + |
+ + latestRelease) { ?> + + = safe($release->latestRelease->label) ?> + + + | += $BRANCH_NOTES[$release->label] ?? '' ?> | +
+ Note: + +
+ +\n"; - echo $keys, "\n"; - echo "\n"; - echo "