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, " -

PHP $version Release Announcement

- -$template - $releases) { + /* + * Look for the most recent version as it's the one most likely to have the fullest + * set of data within it + */ + + $highestVersion = null; + foreach (array_keys($releases) as $releaseId) { + [$major, $minor] = explode('.', $releaseId); + + $br = $major . '.' . $minor; + $highestVersion = (!$highestVersion || Utils::versionCompareOp($releaseId, $highestVersion, 'gt')) + ? $releaseId + : $highestVersion; + } + + if (!$highestVersion) { + printf("Warning! There is no highest release of " . $versionId . " available; skipping\n"); + continue; + } + + $cachePath = sys_get_temp_dir() . '/php-news-' . $highestVersion . '.txt'; + if (!file_exists($cachePath)) { + /* the file could be in one of a number of locations depending on how it was committed */ + $options = [ + /* normal branch */ + 'https://raw.githubusercontent.com/php/php-src/refs/heads/PHP-' . $highestVersion . '/NEWS', + + /* tag */ + 'https://raw.githubusercontent.com/php/php-src/refs/tags/php-' . $highestVersion . '/NEWS', + ]; + + foreach ($options as $fetchUrl) { + $content = @file_get_contents($fetchUrl); + if (!$content) { + fwrite(STDERR, "Could not read raw data for $fetchUrl\n"); + continue; + } + + fwrite(STDOUT, "Successfully imported read data from $fetchUrl\n"); + FS::writeContents($cachePath, $content); + } + + if (!$content) { + fwrite(STDERR, "Could not find a suitable data source for $highestVersion\n"); + continue; + } + } else { + $content = FS::readContents($cachePath); + } + + /* + * We should now, theoretically, have a complete news file that has the highest release and + * everything before it. + * + * Some of them have a ton of data before, some get reset at the start of each major.minor version + */ + foreach (ChangeLogDataLoader::parseNewsFileToReleaseSections($content) as $releaseId => $data) { + /* only write the sections that belong to us */ + if (!str_starts_with($releaseId, $versionId . '.')) { + continue; + } + + /* special case for 5.1.0 which doesn't have the release in the original NEWS */ + if ($releaseId === '5.1') { + $releaseId = '5.1.0'; + } + + $path = ProjectGlobals::getDataPathForRelease($releaseId, create: true) . '/changes.txt'; + if (FS::writeContentsIfChanged($path, $data)) { + printf("Writing NEWS block to %s %s\n", $path, md5($data)); + } + } +} diff --git a/bin/migrations/migrate-releases.php b/bin/migrations/migrate-releases.php new file mode 100644 index 0000000000..5107c726e5 --- /dev/null +++ b/bin/migrations/migrate-releases.php @@ -0,0 +1,66 @@ + $releases) { + foreach ($releases as $releaseId => $release) { + if (str_starts_with($releaseId, '3.0.')) { + continue; // can't be dealing with this + } + + [$major, $minor] = explode('.', $releaseId); + $versionId = $major . '.' . $minor; + + $savePath = ProjectGlobals::getDataPathForRelease($releaseId) . '/release.json'; + + unset($release['announcement']); + + if (isset($release['museum']) && !$release['museum']) { + unset($release['museum']); + } + + $sources = []; + foreach ($release['source'] as $source) { + unset($source['date']); + $sources[] = $source; + } + + $data = [ + 'version' => $releaseId, + 'date' => $release['date'], + 'tags' => $release['tags'] ?? [], + 'source' => $sources, + ]; + + /* do not overwrite unless explicitly told to (early stage dev needing format refreshes) */ + if (!$force && file_exists($savePath)) { + continue; + } + + if (FS::writeContentsIfChanged($savePath, json_encode($data, JSON_PRETTY_PRINT))) { + printf("Writing data to %s\n", $savePath); + } + } + } +} + +printf("Completed import of all release.json files\n"); diff --git a/bin/move-release-announcements.php b/bin/move-release-announcements.php new file mode 100644 index 0000000000..5ad9b38350 --- /dev/null +++ b/bin/move-release-announcements.php @@ -0,0 +1,68 @@ +'; + $htmlStartPosition = strpos($content, $htmlStartToken); + if ($htmlStartPosition === false) { + throw new RuntimeException('Unable to find PHP closing tag in ' . $fullPath); + } + + $htmlStartPosition+= strlen($htmlStartToken); + + $htmlEndToken = 'The PHP development team announces the immediate availability of PHP {{release}}. This is a {{tags}} 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: +Downloads: +Windows downloads: +Changelog: + +Many thanks to all the contributors and supporters! + +Regards, +Fake + +php-1.2.3.tar.bz2 +SHA256 hash: c7337212e655325d499ea8108fa76f69ddde2fff7cb0fad36aa63eed540cb8a5 +PGP signature: +-----BEGIN PGP SIGNATURE----- +-----END PGP SIGNATURE----- + + +php-1.2.3.tar.gz +SHA256 hash: 8565fa8733c640b60da5ab4944bf2d4081f859915b39e29b3af26cf23443ed97 +PGP signature: +-----BEGIN PGP SIGNATURE----- +-----END PGP SIGNATURE----- + + +php-1.2.3.tar.xz +SHA256 hash: +f7950ca034b15a78f5de9f1b22f4d9bad1dd497114d175cb1672a4ca78077af5 +PGP signature: +-----BEGIN PGP SIGNATURE----- +-----END PGP SIGNATURE----- diff --git a/bin/sync-pregen.php b/bin/sync-pregen.php new file mode 100644 index 0000000000..a210d62688 --- /dev/null +++ b/bin/sync-pregen.php @@ -0,0 +1,49 @@ + $varPath . '/pregen-events.inc', + 'include/pregen-news.inc' => $varPath . '/pregen-news.inc', + 'include/pregen-confs.inc' => $varPath . '/pregen-confs.inc', +]; + +fwrite(STDOUT, "Copying data from production server into local directories:\n"); +fwrite(STDOUT, "Do not commit these files!\n"); + +foreach ($overridePaths as $sourcePath => $saveTo) { + $url = 'https://www.php.net/' . $sourcePath; + $source = @file_get_contents($url); + if ($source === false) { + fwrite(STDERR, "Unable to read " . $url . "\n"); + exit(1); + } + + $success = file_put_contents($saveTo, $source); + if ($success === false) { + fwrite(STDERR, "Unable to write to " . $saveTo . "\n"); + exit(1); + } + + fwrite(STDOUT, "Copied " . $url . " to " . $saveTo . "\n"); +} diff --git a/bin/util.php b/bin/util.php new file mode 100644 index 0000000000..880ea6b332 --- /dev/null +++ b/bin/util.php @@ -0,0 +1,6 @@ +#!/usr/bin/env php +=8.2" }, "require-dev": { - "phpunit/phpunit": "^11.0" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-main": "5.1-dev" } }, "autoload": { @@ -952,15 +1016,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0" + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.1" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator", + "type": "tidelift" } ], - "time": "2024-08-27T05:02:59+00:00" + "time": "2026-02-02T13:52:54+00:00" }, { "name": "phpunit/php-invoker", @@ -1148,16 +1224,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.5.50", + "version": "11.5.55", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "fdfc727f0fcacfeb8fcb30c7e5da173125b58be3" + "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fdfc727f0fcacfeb8fcb30c7e5da173125b58be3", - "reference": "fdfc727f0fcacfeb8fcb30c7e5da173125b58be3", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/adc7262fccc12de2b30f12a8aa0b33775d814f00", + "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00", "shasum": "" }, "require": { @@ -1172,7 +1248,7 @@ "phar-io/version": "^3.2.1", "php": ">=8.2", "phpunit/php-code-coverage": "^11.0.12", - "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-file-iterator": "^5.1.1", "phpunit/php-invoker": "^5.0.1", "phpunit/php-text-template": "^4.0.1", "phpunit/php-timer": "^7.0.1", @@ -1184,6 +1260,7 @@ "sebastian/exporter": "^6.3.2", "sebastian/global-state": "^7.0.2", "sebastian/object-enumerator": "^6.0.1", + "sebastian/recursion-context": "^6.0.3", "sebastian/type": "^5.1.3", "sebastian/version": "^5.0.2", "staabm/side-effects-detector": "^1.0.5" @@ -1229,7 +1306,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.50" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.55" }, "funding": [ { @@ -1253,7 +1330,7 @@ "type": "tidelift" } ], - "time": "2026-01-27T05:59:18+00:00" + "time": "2026-02-18T12:37:06+00:00" }, { "name": "psr/container", @@ -2974,47 +3051,39 @@ }, { "name": "symfony/console", - "version": "v7.4.13", + "version": "v8.0.13", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "85095d2573eaefaf35e40b9513a9bf09f72cd217" + "reference": "f200be111431cff4aeae8d086b91180bc4d7efd7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/85095d2573eaefaf35e40b9513a9bf09f72cd217", - "reference": "85095d2573eaefaf35e40b9513a9bf09f72cd217", + "url": "https://api.github.com/repos/symfony/console/zipball/f200be111431cff4aeae8d086b91180bc4d7efd7", + "reference": "f200be111431cff4aeae8d086b91180bc4d7efd7", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0", + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.0", "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^7.2|^8.0" - }, - "conflict": { - "symfony/dependency-injection": "<6.4", - "symfony/dotenv": "<6.4", - "symfony/event-dispatcher": "<6.4", - "symfony/lock": "<6.4", - "symfony/process": "<6.4" + "symfony/string": "^7.4|^8.0" }, "provide": { "psr/log-implementation": "1.0|2.0|3.0" }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^6.4|^7.0|^8.0", - "symfony/dependency-injection": "^6.4|^7.0|^8.0", - "symfony/event-dispatcher": "^6.4|^7.0|^8.0", - "symfony/http-foundation": "^6.4|^7.0|^8.0", - "symfony/http-kernel": "^6.4|^7.0|^8.0", - "symfony/lock": "^6.4|^7.0|^8.0", - "symfony/messenger": "^6.4|^7.0|^8.0", - "symfony/process": "^6.4|^7.0|^8.0", - "symfony/stopwatch": "^6.4|^7.0|^8.0", - "symfony/var-dumper": "^6.4|^7.0|^8.0" + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/lock": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0" }, "type": "library", "autoload": { @@ -3048,7 +3117,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.4.13" + "source": "https://github.com/symfony/console/tree/v8.0.13" }, "funding": [ { @@ -3068,7 +3137,7 @@ "type": "tidelift" } ], - "time": "2026-05-24T08:56:14+00:00" + "time": "2026-05-24T08:59:15+00:00" }, { "name": "symfony/deprecation-contracts", @@ -3143,24 +3212,24 @@ }, { "name": "symfony/event-dispatcher", - "version": "v7.4.9", + "version": "v8.0.9", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "e4a2e29753c7801f7a8340e066cfa788f3bc8101" + "reference": "0c3c1a17604c4dbbec4b93fe162c538482096e1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e4a2e29753c7801f7a8340e066cfa788f3bc8101", - "reference": "e4a2e29753c7801f7a8340e066cfa788f3bc8101", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0c3c1a17604c4dbbec4b93fe162c538482096e1f", + "reference": "0c3c1a17604c4dbbec4b93fe162c538482096e1f", "shasum": "" }, "require": { - "php": ">=8.2", + "php": ">=8.4", "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<6.4", + "symfony/security-http": "<7.4", "symfony/service-contracts": "<2.5" }, "provide": { @@ -3169,14 +3238,14 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^6.4|^7.0|^8.0", - "symfony/dependency-injection": "^6.4|^7.0|^8.0", - "symfony/error-handler": "^6.4|^7.0|^8.0", - "symfony/expression-language": "^6.4|^7.0|^8.0", - "symfony/framework-bundle": "^6.4|^7.0|^8.0", - "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/error-handler": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/framework-bundle": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^6.4|^7.0|^8.0" + "symfony/stopwatch": "^7.4|^8.0" }, "type": "library", "autoload": { @@ -3204,7 +3273,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.9" + "source": "https://github.com/symfony/event-dispatcher/tree/v8.0.9" }, "funding": [ { @@ -3224,7 +3293,7 @@ "type": "tidelift" } ], - "time": "2026-04-18T13:18:21+00:00" + "time": "2026-04-18T13:51:42+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -3308,25 +3377,25 @@ }, { "name": "symfony/filesystem", - "version": "v7.4.11", + "version": "v8.0.11", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "d721ea61b4a5fba8c5b6e7c1feda19efea144b50" + "reference": "224db910898ce1317b892a9a1338f1f8f17eb7c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/d721ea61b4a5fba8c5b6e7c1feda19efea144b50", - "reference": "d721ea61b4a5fba8c5b6e7c1feda19efea144b50", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/224db910898ce1317b892a9a1338f1f8f17eb7c7", + "reference": "224db910898ce1317b892a9a1338f1f8f17eb7c7", "shasum": "" }, "require": { - "php": ">=8.2", + "php": ">=8.4", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, "require-dev": { - "symfony/process": "^6.4|^7.0|^8.0" + "symfony/process": "^7.4|^8.0" }, "type": "library", "autoload": { @@ -3354,7 +3423,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v7.4.11" + "source": "https://github.com/symfony/filesystem/tree/v8.0.11" }, "funding": [ { @@ -3374,27 +3443,27 @@ "type": "tidelift" } ], - "time": "2026-05-11T16:38:44+00:00" + "time": "2026-05-11T16:39:47+00:00" }, { "name": "symfony/finder", - "version": "v7.4.8", + "version": "v8.0.8", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "e0be088d22278583a82da281886e8c3592fbf149" + "reference": "8da41214757b87d97f181e3d14a4179286151007" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/e0be088d22278583a82da281886e8c3592fbf149", - "reference": "e0be088d22278583a82da281886e8c3592fbf149", + "url": "https://api.github.com/repos/symfony/finder/zipball/8da41214757b87d97f181e3d14a4179286151007", + "reference": "8da41214757b87d97f181e3d14a4179286151007", "shasum": "" }, "require": { - "php": ">=8.2" + "php": ">=8.4" }, "require-dev": { - "symfony/filesystem": "^6.4|^7.0|^8.0" + "symfony/filesystem": "^7.4|^8.0" }, "type": "library", "autoload": { @@ -3422,7 +3491,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v7.4.8" + "source": "https://github.com/symfony/finder/tree/v8.0.8" }, "funding": [ { @@ -3442,24 +3511,24 @@ "type": "tidelift" } ], - "time": "2026-03-24T13:12:05+00:00" + "time": "2026-03-30T15:14:47+00:00" }, { "name": "symfony/options-resolver", - "version": "v7.4.8", + "version": "v8.0.8", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4" + "reference": "b48bce0a70b914f6953dafbd10474df232ed4de8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/2888fcdc4dc2fd5f7c7397be78631e8af12e02b4", - "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/b48bce0a70b914f6953dafbd10474df232ed4de8", + "reference": "b48bce0a70b914f6953dafbd10474df232ed4de8", "shasum": "" }, "require": { - "php": ">=8.2", + "php": ">=8.4", "symfony/deprecation-contracts": "^2.5|^3" }, "type": "library", @@ -3493,7 +3562,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v7.4.8" + "source": "https://github.com/symfony/options-resolver/tree/v8.0.8" }, "funding": [ { @@ -3513,7 +3582,7 @@ "type": "tidelift" } ], - "time": "2026-03-24T13:12:05+00:00" + "time": "2026-03-30T15:14:47+00:00" }, { "name": "symfony/polyfill-ctype", @@ -3767,16 +3836,16 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.38.1", + "version": "v1.38.2", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "14c5439eec4ccff081ac14eca2dc57feb2a66d92" + "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/14c5439eec4ccff081ac14eca2dc57feb2a66d92", - "reference": "14c5439eec4ccff081ac14eca2dc57feb2a66d92", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6", + "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6", "shasum": "" }, "require": { @@ -3828,7 +3897,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.1" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.2" }, "funding": [ { @@ -3848,7 +3917,7 @@ "type": "tidelift" } ], - "time": "2026-05-26T12:51:13+00:00" + "time": "2026-05-27T06:59:30+00:00" }, { "name": "symfony/polyfill-php80", @@ -4096,20 +4165,20 @@ }, { "name": "symfony/process", - "version": "v7.4.13", + "version": "v8.0.13", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "f5804be144caceb570f6747519999636b664f24c" + "reference": "4f23d9c7637ead9ed19f697fe93cb87fd9b379d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/f5804be144caceb570f6747519999636b664f24c", - "reference": "f5804be144caceb570f6747519999636b664f24c", + "url": "https://api.github.com/repos/symfony/process/zipball/4f23d9c7637ead9ed19f697fe93cb87fd9b379d4", + "reference": "4f23d9c7637ead9ed19f697fe93cb87fd9b379d4", "shasum": "" }, "require": { - "php": ">=8.2" + "php": ">=8.4" }, "type": "library", "autoload": { @@ -4137,7 +4206,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.4.13" + "source": "https://github.com/symfony/process/tree/v8.0.13" }, "funding": [ { @@ -4157,7 +4226,7 @@ "type": "tidelift" } ], - "time": "2026-05-23T16:05:06+00:00" + "time": "2026-05-23T18:05:53+00:00" }, { "name": "symfony/service-contracts", @@ -4248,20 +4317,20 @@ }, { "name": "symfony/stopwatch", - "version": "v7.4.8", + "version": "v8.0.8", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89" + "reference": "85954ed72d5440ea4dc9a10b7e49e01df766ffa3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/70a852d72fec4d51efb1f48dcd968efcaf5ccb89", - "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/85954ed72d5440ea4dc9a10b7e49e01df766ffa3", + "reference": "85954ed72d5440ea4dc9a10b7e49e01df766ffa3", "shasum": "" }, "require": { - "php": ">=8.2", + "php": ">=8.4", "symfony/service-contracts": "^2.5|^3" }, "type": "library", @@ -4290,7 +4359,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v7.4.8" + "source": "https://github.com/symfony/stopwatch/tree/v8.0.8" }, "funding": [ { @@ -4310,39 +4379,38 @@ "type": "tidelift" } ], - "time": "2026-03-24T13:12:05+00:00" + "time": "2026-03-30T15:14:47+00:00" }, { "name": "symfony/string", - "version": "v7.4.13", + "version": "v8.0.13", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "961683010db3b27ec6ebcd7308e6e1ee8fa7ffde" + "reference": "f2e3e4d33579350d1b12001ef2872f86b27ed3dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/961683010db3b27ec6ebcd7308e6e1ee8fa7ffde", - "reference": "961683010db3b27ec6ebcd7308e6e1ee8fa7ffde", + "url": "https://api.github.com/repos/symfony/string/zipball/f2e3e4d33579350d1b12001ef2872f86b27ed3dc", + "reference": "f2e3e4d33579350d1b12001ef2872f86b27ed3dc", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/deprecation-contracts": "^2.5|^3.0", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-intl-grapheme": "~1.33", - "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0" + "php": ">=8.4", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-intl-grapheme": "^1.33", + "symfony/polyfill-intl-normalizer": "^1.0", + "symfony/polyfill-mbstring": "^1.0" }, "conflict": { "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/emoji": "^7.1|^8.0", - "symfony/http-client": "^6.4|^7.0|^8.0", - "symfony/intl": "^6.4|^7.0|^8.0", + "symfony/emoji": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^6.4|^7.0|^8.0" + "symfony/var-exporter": "^7.4|^8.0" }, "type": "library", "autoload": { @@ -4381,7 +4449,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.4.13" + "source": "https://github.com/symfony/string/tree/v8.0.13" }, "funding": [ { @@ -4401,7 +4469,7 @@ "type": "tidelift" } ], - "time": "2026-05-23T15:23:29+00:00" + "time": "2026-05-23T18:05:53+00:00" }, { "name": "theseer/tokenizer", @@ -4460,13 +4528,14 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "~8.2.0" + "php": "~8.4.0", + "ext-dom": "*" }, "platform-dev": { "ext-curl": "*" }, "platform-overrides": { - "php": "8.2.0" + "php": "8.4.0" }, "plugin-api-version": "2.9.0" } diff --git a/data/releases/4.0/4.0.0/release.json b/data/releases/4.0/4.0.0/release.json new file mode 100644 index 0000000000..41a469dd02 --- /dev/null +++ b/data/releases/4.0/4.0.0/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.0.0", + "date": "22 May 2000", + "tags": [], + "source": [ + { + "filename": "php-4.0.0.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.0/4.0.1/release.json b/data/releases/4.0/4.0.1/release.json new file mode 100644 index 0000000000..3127abf47b --- /dev/null +++ b/data/releases/4.0/4.0.1/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.0.1", + "date": "28 June 2000", + "tags": [], + "source": [ + { + "filename": "php-4.0.1.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.0.1pl2.tar.gz", + "name": "4.0.1pl2 Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.0/4.0.2/release.json b/data/releases/4.0/4.0.2/release.json new file mode 100644 index 0000000000..c0f15c8f63 --- /dev/null +++ b/data/releases/4.0/4.0.2/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.0.2", + "date": "29 August 2000", + "tags": [], + "source": [ + { + "filename": "php-4.0.2.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.0/4.0.3/release.json b/data/releases/4.0/4.0.3/release.json new file mode 100644 index 0000000000..5624e29a37 --- /dev/null +++ b/data/releases/4.0/4.0.3/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.0.3", + "date": "11 October 2000", + "tags": [], + "source": [ + { + "filename": "php-4.0.3.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.0.3pl1.tar.gz", + "name": "4.0.3pl1 Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.0/4.0.4/release.json b/data/releases/4.0/4.0.4/release.json new file mode 100644 index 0000000000..b86589a0ea --- /dev/null +++ b/data/releases/4.0/4.0.4/release.json @@ -0,0 +1,15 @@ +{ + "version": "4.0.4", + "date": "19 December 2000", + "tags": [], + "source": [ + { + "filename": "php-4.0.4.tar.gz", + "name": "Source (tar.gz)" + }, + { + "filename": "php-4.0.4pl1.tar.gz", + "name": "4.0.4pl1 Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.0/4.0.5/release.json b/data/releases/4.0/4.0.5/release.json new file mode 100644 index 0000000000..8033b42c7f --- /dev/null +++ b/data/releases/4.0/4.0.5/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.0.5", + "date": "30 April 2001", + "tags": [], + "source": [ + { + "filename": "php-4.0.5.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.0/4.0.6/release.json b/data/releases/4.0/4.0.6/release.json new file mode 100644 index 0000000000..3917a1fd34 --- /dev/null +++ b/data/releases/4.0/4.0.6/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.0.6", + "date": "23 June 2001", + "tags": [], + "source": [ + { + "filename": "php-4.0.6.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.1/4.1.0/announcement.html b/data/releases/4.1/4.1.0/announcement.html new file mode 100644 index 0000000000..b4e33d61a9 --- /dev/null +++ b/data/releases/4.1/4.1.0/announcement.html @@ -0,0 +1,62 @@ +

PHP 4.1.0 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:

+
    +
  • A new input interface for improved security (read below)
  • +
  • Highly improved performance in general
  • +
  • + Revolutionary performance and stability improvements under + Windows. The multithreaded server modules under Windows (ISAPI, + Apache, etc.) perform as much as 30 times faster under load! We + want to thank Brett Brewer and his team in Microsoft for working + with us to improve PHP for Windows. +
  • +
  • + Versioning support for extensions. Right now it's barely being + used, but the infrastructure was put in place to support separate + version numbers for different extensions. The negative side effect + is that loading extensions that were built against old versions of + PHP will now result in a crash, instead of in a nice clear message. + Make sure you only use extensions built with PHP 4.1.0. +
  • +
  • Turn-key output compression support
  • +
  • LOTS of fixes and new functions
  • +
+ +

+ 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. +

+ +
+ +

SECURITY: NEW INPUT MECHANISM

+ +

+ 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 @@ +

PHP 4.1.1 Release Announcement

+ +

+ 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:

+ +
    +
  • + Fixed incompatibility with Windows .NET / IIS 6 - may improve stability + under other versions of IIS. (Zeev) +
  • +
  • + Fixed bug that caused crashes or error notices on shutdown on threaded + platforms. (Zeev) +
  • +
  • Fixed several crash bugs in the xslt extension. (Markus, Derick)
  • +
  • + Fixed problem with dbase not returning very large (larger than long) + integers properly. (Vlad) +
  • +
  • Fixed several bugs and memleaks in the domxml extension. (Markus)
  • +
  • + Fixed bug in gmmktime() which was one hour off during standard time - + bug #9878. Patch by bfoddy@mediaone.net. (jmoore) +
  • +
  • Fixed bug in gmdate() timezone handling on Windows - bug #13885. (jmoore)
  • +
  • Fixed several crash bugs in the mcrypt extension. (Derick)
  • +
  • + Made the mcrypt extension compile with the libmcrypt 2.2 series again. + (Sterling) +
  • +
  • + Fixed a bug where the is_file() family of functions would in-correctly give + an error when they were given filenames that didn't exist. (Sterling) +
  • +
  • + Fixed a bug in the strtotime() function where it was incorrectly recognizing + GMT +0100 and GMT -0100. (Derick) +
  • +
\ No newline at end of file diff --git a/data/releases/4.1/4.1.1/release.json b/data/releases/4.1/4.1.1/release.json new file mode 100644 index 0000000000..4746ec3af8 --- /dev/null +++ b/data/releases/4.1/4.1.1/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.1.1", + "date": "26 Dec 2001", + "tags": [], + "source": [ + { + "filename": "php-4.1.1.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.1/4.1.2/release.json b/data/releases/4.1/4.1.2/release.json new file mode 100644 index 0000000000..303942f541 --- /dev/null +++ b/data/releases/4.1/4.1.2/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.1.2", + "date": "12 March 2002", + "tags": [], + "source": [ + { + "filename": "php-4.1.2.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.2/4.2.0/announcement.html b/data/releases/4.2/4.2.0/announcement.html new file mode 100644 index 0000000000..7f9615a48e --- /dev/null +++ b/data/releases/4.2/4.2.0/announcement.html @@ -0,0 +1,75 @@ +

PHP 4.2.0 Release Announcement

+ +

+ After an orderly QA process, PHP 4.2.0 is out!
+ [ Version Française ] +

+ +

External variables

+ +

+ 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:

+ + + +

Compatibility

+ +

+ 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 +

+ +

Improvements

+ +

PHP 4.2.0 includes several improvements:

+ +
    +
  • + External variables (from the environment, the HTTP request, cookies or + the web server) are no longer registered as global variables +
  • +
  • Overhaul of the sockets extension
  • +
  • Highly improved performance with file uploads
  • +
  • + The satellite and mailparse extensions were moved to PECL and are no longer + bundled with the official PHP release +
  • +
  • The posix extension has been cleaned up
  • +
  • iconv handling has been improved
  • +
  • + Output buffering support, which was introduced in PHP 4.1.0 has + been stabilized +
  • +
  • Improved performance and stability of the domxml extension
  • +
  • New multibyte regular expression support
  • +
  • LOTS of fixes and new functions
  • +
+ +

+ 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 @@ +

PHP 4.2.1 Release Announcement

+ +

[ Version Française ]

+ +

Bugfix release

+ +

+ This bug fix release solves a few bugs found in PHP 4.2.0. + PHP 4.2.1 includes the following fixes: +

+ +
    +
  • Fix for the MySQL extension not be able to connect to a MySQL server.
  • +
  • Fix for a crash in the COM extension when using an outproc server.
  • +
  • Fix for SID logic in the session extension.
  • +
  • + Fixes for the mbstring extension, including SJIS directory + name handling and mb_output_buffer(). +
  • +
  • + Fix for a bug in socket_select() that could cause unexpected behavior when + using a statement like $w = $e = array($sock); +
  • +
  • Almost full DOM compliance for the domxml extension, and fixes for several functions.
  • +
  • Safe_mode checks for show_source(), parse_ini_file() and rmdir().
  • +
+ +

+ For a full list of changes in PHP 4.2.1, see the + ChangeLog. +

+ +

Compatibility

+ +

+ 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. +

+ +

External variables

+ +

+ 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: +

+ + \ No newline at end of file diff --git a/data/releases/4.2/4.2.1/release.json b/data/releases/4.2/4.2.1/release.json new file mode 100644 index 0000000000..d6b7c61771 --- /dev/null +++ b/data/releases/4.2/4.2.1/release.json @@ -0,0 +1,11 @@ +{ + "version": "4.2.1", + "date": "13 May 2002", + "tags": [], + "source": [ + { + "filename": "php-4.2.1.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/4.2/4.2.2/announcement.html b/data/releases/4.2/4.2.2/announcement.html new file mode 100644 index 0000000000..1c712cedf3 --- /dev/null +++ b/data/releases/4.2/4.2.2/announcement.html @@ -0,0 +1,92 @@ +

+ PHP Security Advisory: Vulnerability in PHP versions 4.2.0 and 4.2.1 +

+ +

[ Version Française ]

+ +
+
Issued on:
+
July 22, 2002
+
Software:
+
PHP versions 4.2.0 and 4.2.1
+
Platforms:
+
All
+
+ +

+ 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. +

+ +

Description

+ +

+ 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. +

+ +

Impact

+ +

+ 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. +

+ +

Solution

+ +

+ 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. +

+ +

Workaround

+ +

+ 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. +

+ +

Credits

+ +

+ 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 @@ +

PHP 4.3.0 Release Announcement

+ +

[ Version Française ]

+ +

+ 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. +

+ +

Command line interface

+ +

+ 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 +

+ +

Streams

+ +

+ 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 +

+ +

New build system

+ +

+ 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. +

+ +

Improvements

+ +

PHP 4.3.0 has many improvements and enhancements:

+ +
    +
  • + + GD library is now bundled with the distribution and it is recommended + to always use the bundled version + +
  • +
  • vpopmail and cybermut extensions are moved to PECL
  • +
  • + several deprecated extensions (aspell, ccvs, cybercash, icap) + and SAPIs (fastcgi, fhttpd) are removed +
  • +
  • speed improvements in a variety of string functions
  • +
  • + Apache2 filter is improved, but is still considered experimental + (use with PHP in prefork and not worker (thread) model since many + extensions based on external libraries are not thread safe) +
  • +
  • various security fixes (imap, mysql, mcrypt, file upload, gd, etc)
  • +
  • new SAPI for embedding PHP in other applications (experimental)
  • +
  • much better test suite
  • +
  • significant improvements in dba, gd, pcntl, sybase, and xslt extensions
  • +
  • debug_backtrace() should help with debugging
  • +
  • + error messages now contain URLs linking to pages describing the error or + function in question +
  • +
  • Zend Engine has some fixes and minor performance enhancements
  • +
  • and TONS of other fixes, updates, new functions, etc
  • +
+ +

+ 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 @@ +

+PHP Security Advisory: CGI vulnerability in PHP version 4.3.0 +

+ +
+
Issued on:
+
February 17, 2003
+
Software:
+
PHP version 4.3.0
+
Platforms:
+
All
+
+ +

+ The PHP Group has learned of a serious security vulnerability in + the CGI SAPI of PHP version 4.3.0. +

+ +

Description

+ +

+ 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.) +

+ +

Impact

+ +

+ 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. +

+ +

Solution

+ +

+ 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. +

+ +

Workarounds

+ +

None.

+ +

Credits

+ +

+ 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 4.3.10 Release Announcement

+

[ Version Française ]

+

+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.

+ +

Bugfix release

+ +

+ Aside from the above mentioned issues this release includes the following important fixes: +

+ +
    +
  • Possible crash inside ftp_get().
  • +
  • get_current_user() crashes on Windows.
  • +
  • Possible crash in ctype_digit() on large numbers.
  • +
  • Crash when parsing ?getvariable[][.
  • +
  • Possible crash in the curl_getinfo() function.
  • +
  • Double free when openssl_csr_new fails.
  • +
  • Crash when using unknown/unsupported session.save_handler and/or session.serialize_handler.
  • +
  • Prevent infinite recursion in url redirection.
  • +
  • Ensure that temporary files created by GD are removed.
  • +
  • Crash in fgetcsv() with negative length.
  • +
  • Improved performance of the foreach() construct.
  • +
  • Improved number handling on non-English locales.
  • +
+ +

+ 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 4.3.11 Release Announcement

+

[ Version Française ]

+

+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.

+ +

Bugfix release

+ +
    +
  • Crash in bzopen() if supplied path to non-existent file.
  • +
  • DOM crashing when attribute appended to Document.
  • +
  • unserialize() float problem on non-English locales.
  • +
  • Crash in msg_send() when non-string is stored without being serialized.
  • +
  • Possible infinite loop in imap_mail_compose().
  • +
  • Fixed crash in chunk_split(), when chunklen > strlen.
  • +
  • session_set_save_handler crashes PHP when supplied non-existent object ref.
  • +
  • Memory leak in zend_language_scanner.c.
  • +
  • Compile failures of zend_strtod.c.
  • +
  • Fixed crash in overloaded objects & overload() function.
  • +
  • cURL functions bypass open_basedir.
  • +
+ +

+ 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 @@ +

PHP 4.3.2 Release Announcement

+ +

[ Version Française ]

+ +

+ 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. +

+ +

Bugfix release

+ +

+ PHP 4.3.2 contains, among others, following important fixes, additions and improvements: +

+ +
    +
  • Fixes several potentially hazardous integer and buffer overflows.
  • +
  • Fixes for several 64-bit problems.
  • +
  • + New Apache 2.0 SAPI module (sapi/apache2handler, + enabled with --with-apxs2). +
  • +
  • + New session_regenerate_id() function. (Important feature + against malicious session planting). +
  • +
  • Improvements to dba extension.
  • +
  • Improvements to thttpd SAPI module.
  • +
  • Dropped support for GDLIB version 1.x.x (php_gd.dll) on Windows.
  • +
  • An unix man page for CLI version of PHP.
  • +
  • + New "disable_classes" php.ini option to allow administrators to + disable certain classes for security reasons. +
  • +
  • ..and a HUGE amount of other bug fixes!
  • +
+ +

+ 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 @@ +

PHP 4.3.3 Release Announcement

+ +

[ Version Française ]

+ +

+ 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. +

+ +

Bugfix release

+ +

+ PHP 4.3.3 contains, among others, following important fixes, additions and improvements: +

+ +
    +
  • Improved the engine to use POSIX/socket IO where feasible.
  • +
  • Fixed several potentially hazardous integer and buffer overflows.
  • +
  • Fixed corruption of multibyte character including 0x5c as second byte in multipart/form-data.
  • +
  • Fixed each() to be binary safe for keys.
  • +
  • Major improvements to the NSAPI SAPI.
  • +
  • Improvements to the IMAP extension.
  • +
  • Improvements to the InterBase extension.
  • +
  • Added DBA handler 'inifile' to support ini files.
  • +
  • Added long options into CLI & CGI (e.g. --version).
  • +
  • Added a new parameter to preg_match*() that can be used to specify the starting offset in the subject string to match from.
  • +
  • Upgraded the bundled Expat library to version 1.95.6
  • +
  • Upgraded the bundled PCRE library to version 4.3
  • +
  • Upgraded the bundled GD library to version GD 2.0.15
  • + +
  • Over 100 various bug fixes!
  • +
+ +

+ 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 @@ +

PHP 4.3.4 Release Announcement

+ +

[ Version Française ]

+ +

+ 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. +

+ +

Bugfix release

+ +

+ PHP 4.3.4 contains, among others, following important fixes, additions and improvements: +

+ +
    +
  • Fixed disk_total_space() and disk_free_space() under FreeBSD.
  • +
  • Fixed FastCGI support on Win32.
  • +
  • Fixed FastCGI being unable to bind to a specific IP.
  • +
  • Fixed several bugs in mail() implementation on win32.
  • +
  • Fixed crashes in a number of functions.
  • +
  • Fixed compile failure on MacOSX 10.3 Panther.
  • + +
  • Over 60 various bug fixes!
  • +
+ +

+ 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 4.3.5 Release Announcement

+ +

[ Version Française ]

+ +

+ 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. +

+ +

Bugfix release

+ +

+ PHP 4.3.5 contains, among others, following important fixes, additions and improvements: +

+ +
    +
  • Fixed INI leak between Apache virtual hosts.
  • +
  • Fixed crashes inside fgetcsv() and make the function binary safe.
  • +
  • Fixed compilation with early versions of GCC 3.0.
  • +
  • Fixed a bug that prevented feof() from working correctly with sockets.
  • +
  • Improved the matching algorithm inside the get_browser() function.
  • +
  • Fixed resolving of open_basedir on Win32 systems.
  • +
  • Fixed incorrect errors for non-existent directories when safe_mode is enabled.
  • +
  • Bundled OpenSSL dlls on Win32 upgraded to 0.9.7c
  • +
  • Updated bundled PostgreSQL library to version 7.4 in Windows distribution.
  • +
  • Bundled PCRE library upgraded to 4.5
  • +
  • Synchronized bundled GD library with GD 2.0.17
  • +
  • A number of fixes for 64bit systems.
  • + +
  • Aside from the above mentioned fixes, this release resolves over 140 various bugs and implementational problems.
  • +
+ +

+ 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 4.3.6 Release Announcement

+ +

[ Version Française ]

+ +

+ 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. +

+ +

Bugfix release

+ +

+ Aside from the above mentioned issues this release includes the following important fixes: +

+ +
    +
  • Updated bundled PDFLib library to version 5.0.3p1 in Windows distribution.
  • +
  • Synchronized bundled GD library with GD 2.0.22.
  • +
  • Fixed bugs that prevented building of the GD extension against the external GD library versions 1.2-1.8.
  • +
  • Fixed a bugs resulting in leakage of session settings across requests.
  • +
  • Fixed several daylight savings bugs inside the mktime and strtotime functions.
  • +
  • Fixed a bug that prevented compilation of cURL extension against libcurl 7.11.1
  • +
  • Fixed a number of crashes inside domxml and mssql extensions.
  • + +
  • All in all this release fixes approximately 25 bugs that have been discovered + since the 4.3.5 release.
  • +
+ +

+ 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 4.3.7 Release Announcement

+ +

[ Version Française ]

+ +

+ 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. +

+ +

Bugfix release

+ +

+ Aside from the above mentioned issues this release includes the following important fixes: +

+ +
    +
  • Synchronized bundled GD library with GD 2.0.23.
  • +
  • Fixed a bug that prevented compilation of GD extensions against FreeType 2.1.0-2.1.2.
  • +
  • Fixed thread safety issue with informix connection id.
  • +
  • Fixed incorrect resolving of relative paths by glob() in windows.
  • +
  • Fixed mapping of Greek letters to html entities.
  • +
  • Fixed a bug that caused an on shutdown crash when using PHP with Apache 2.0.49.
  • +
  • Fixed a number of crashes inside pgsql, cpdf and gd extensions.
  • + +
  • All in all this release fixes over 30 bugs that have been discovered and resolved + since the 4.3.6 release.
  • +
+ +

+ 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 4.3.8 Release Announcement

+ + + +

+ 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. +

+ +

Security Fixes release

+ +

+ 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 4.3.9 Release Announcement

+

[ Version Française ]

+

+ 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. +

+ +

Bugfix release

+ +

+ Aside from the above mentioned issues this release includes the following important fixes: +

+ +
    +
  • Implemented periodic PCRE compiled regexp cache cleanup, to avoid memory exhaustion
  • +
  • Fixed strip_tags() to correctly handle '\0' characters.
  • +
  • Rewritten UNIX and Windows install help files.
  • +
  • Fixed a file-descriptor leak with phpinfo() and other 'special' URLs.
  • +
  • Fixed possible crash inside php_shutdown_config().
  • +
  • Fixed isset crashes on arrays.
  • +
  • Fixed imagecreatefromstring() crashes with external GD library.
  • +
  • Fixed fgetcsv() parsing of strings ending with escaped enclosures.
  • +
  • Fixed overflow in array_slice(), array_splice(), substr(), substr_replace(), strspn(), strcspn().
  • +
  • Fixed '\0' in Authenticate header passed via safe_mode.
  • +
  • Allow bundled GD to compile against freetype 2.1.2.
  • + + +
  • All in all this release fixes over 50 bugs that have been discovered and resolved + since the 4.3.8 release.
  • +
+ +

+ 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 @@ +

PHP 4.4. Release Announcement

+

+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. +

+ +

Bugfix release

+ +
    +
  • Memory corruptions with references.
  • +
  • Small security problem with 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 @@ +

PHP 4.4.1. Release Announcement

+

+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: +

    +
  • Fixed a Cross Site Scripting (XSS) + vulnerability in phpinfo() that could + lead f.e. to cookie exposure, when a phpinfo() script is accidently left + on a production server.
  • +
  • Fixed multiple safe_mode/open_basedir bypass vulnerabilities in ext/curl + and ext/gd that could lead to exposure of files normally not accessible due + to safe_mode or open_basedir restrictions.
  • +
  • Fixed a possible $GLOBALS overwrite problem in file upload handling, + extract() and import_request_variables() that could lead to unexpected + security holes in scripts assumed secure. (For more information, see here).
  • +
  • Fixed a problem when a request was terminated due to memory_limit + constraints during certain + parse_str() calls. In some cases + this can result in register_globals being turned on.
  • +
  • Fixed an issue with trailing slashes in allowed basedirs. They were ignored + by open_basedir checks, so that specified basedirs were handled as prefixes + and not as full directory names.
  • +
  • Fixed an issue with calling virtual() + on Apache 2. This allowed bypassing of certain configuration directives + like safe_mode or open_basedir.
  • +
  • Updated to the latest pcrelib to fix a possible integer overflow + vulnerability announced in CAN-2005-2491.
  • +
+

+

+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 @@ +

PHP 4.4.2. Release Announcement

+

+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: +

    +
  • Prevent header injection by limiting each header to a single line.
  • +
  • Possible XSS inside error reporting functionality.
  • +
  • Missing safe_mode/open_basedir checks into cURL extension.
  • +
  • Apache 2 regression with sub-request handling on non-Linux systems.
  • +
  • key() and current() regression related to references.
  • +
+

+

+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 @@ +

PHP 4.4.3. Release Announcement

+

+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: +

    +
  • Disallow certain characters in session names.
  • +
  • Fixed a buffer overflow inside the wordwrap() function.
  • +
  • Prevent jumps to parent directory via the 2nd parameter of the tempnam() function.
  • +
  • Improved safe_mode check for the error_log() function.
  • +
  • Fixed cross-site scripting inside the phpinfo() function.
  • +
+

+ +

+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 @@ +

PHP 4.4.4 Release Announcement

+

+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: +

    +
  • Added missing safe_mode/open_basedir checks inside the error_log(), file_exists(), imap_open() and imap_reopen() functions.
  • +
  • Fixed overflows inside str_repeat() and wordwrap() functions on 64bit systems.
  • +
  • Fixed possible open_basedir/safe_mode bypass in cURL extension.
  • +
  • Fixed overflow in GD extension on invalid GIF images.
  • +
  • Fixed a buffer overflow inside sscanf() function.
  • +
  • Fixed memory_limit restriction on 64 bit system.
  • +
+

+ +

+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 @@ +

PHP 4.4.5 Release Announcement

+

+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: +

+
    +
  • Fixed possible safe_mode & open_basedir bypasses inside the session extension.
  • +
  • Fixed unserialize() abuse on 64 bit systems with certain input strings.
  • +
  • Fixed possible overflows and stack corruptions in the session extension.
  • +
  • Fixed an underflow inside the internal sapi_header_op() function.
  • +
  • Fixed possible overflows inside zip & imap extensions.
  • +
  • Fixed non-validated resource destruction inside the shmop extension.
  • +
  • Fixed a possible overflow in the str_replace() function.
  • +
  • Fixed possible clobbering of super-globals in several code paths.
  • +
  • Fixed a possible information disclosure inside the wddx extension.
  • +
  • Fixed a possible string format vulnerability in *print() functions on 64 bit systems.
  • +
  • Fixed a possible buffer overflow inside ibase_{delete,add,modify}_user() function.
  • +
  • Fixed a string format vulnerability inside the odbc_result_all() function.
  • +
  • Fixed a possible buffer overflow inside mail() function on Windows.
  • +
+ +

+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 @@ +

PHP 4.4.6 Release Announcement

+

+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 @@ +

PHP 4.4.7 Release Announcement

+

+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: +

+
    +
  • Fixed CVE-2007-1001, GD wbmp used with invalid image size (by Ivan Fratric)
  • +
  • Fixed asciiz byte truncation inside mail() (MOPB-33 by Stefan Esser)
  • +
  • Fixed a bug in mb_parse_str() that can be used to activate register_globals (MOPB-26 by Stefan Esser)
  • +
  • Fixed unallocated memory access/double free in in array_user_key_compare() (MOPB-24 by Stefan Esser)
  • +
  • Fixed a double free inside session_regenerate_id() (MOPB-22 by Stefan Esser)
  • +
  • Added missing open_basedir & safe_mode checks to zip:// and bzip:// wrappers. (MOPB-21 by Stefan Esser).
  • +
  • Limit nesting level of input variables with max_input_nesting_level as fix for (MOPB-03 by Stefan Esser)
  • +
  • XSS in phpinfo() (MOPB-8 by Stefan Esser)
  • +
  • Fixed CRLF injection inside ftp_putcmd(). (by loveshell[at]Bug.Center.Team)
  • +
  • Fixed a possible super-global overwrite inside import_request_variables(). (by Stefano Di Paola, Stefan Esser)
  • +
  • Fixed a remotely trigger-able buffer overflow inside bundled libxmlrpc library. (by Stanislav Malyshev)
  • +
+ +

+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: +

+
    +
  • About 10 bug fixes.
  • +
+ +

+ 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 @@ +

PHP 4.4.8 Release Announcement

+

+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: +

+
    +
  • Improved fix for MOPB-02-2007.
  • +
  • Fixed an integer overflow inside chunk_split(). Identified by Gerhard Wagner.
  • +
  • Fixed integer overlow in str[c]spn().
  • +
  • Fixed regression in glob when open_basedir is on introduced by #41655 fix.
  • +
  • Fixed money_format() not to accept multiple %i or %n tokens.
  • +
  • Addded "max_input_nesting_level" php.ini option to limit nesting level of input variables. Fix for MOPB-03-2007.
  • +
  • Fixed INFILE LOCAL option handling with MySQL - now not allowed when open_basedir or safe_mode is active.
  • +
  • Fixed session.save_path and error_log values to be checked against open_basedir and safe_mode (CVE-2007-3378).
  • +
+ +

+ 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 @@ +

PHP 4.4.9 Release Announcement

+

+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: +

+
    +
  • Updated PCRE to version 7.7.
  • +
  • Fixed overflow in memnstr().
  • +
  • Fixed crash in imageloadfont when an invalid font is given.
  • +
  • Fixed open_basedir handling issue in the curl extension.
  • +
  • Fixed mbstring.func_overload set in .htaccess becomes global.
  • +
+ +

+ 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 , Rui, Moriyoshi) +- Fixed bug #26206 (register_long_arrays breaks superglobals). (Zeev) +- Fixed bug #25724 (argv and argc not defined). (Zeev) + +12 Feb 2004, PHP 5 Beta 4 +- Changed exceptions so that they must now inherit from the built-in Exception + class. This allows for a general catch(Exception $e) statement to catch all + exceptions. (Andi, Zeev) +- Added SPL extension. (Marcus, Derick) +- Added checks for invalid characters in a cookie name and cookie data + into set[raw]cookie(). (Brian) +- Added support for ++ and += (and similar) to SimpleXML. (Andi, Zeev) +- Added infrastructure for ++ and += (and similar) to object overloading + modules. (Andi, Zeev) +- Added error message when trying to re-assign to $this variable. (Zeev, Andi) +- Added support for an interface to extend another interface. (Zeev) +- Added new pspell functions: (Brian) + . pspell_config_dict_dir() + . pspell_config_data_dir() +- Added new Interbase functions: (Ard) + . ibase_service_attach() and ibase_service_detach(). + . ibase_backup() and ibase_restore(). + . ibase_maintain_db(), ibase_db_info() and ibase_server_info(). +- Added context option "http"/"request_fulluri" to send entire URI in request + which is required format for some proxies. (Sara) +- Added optional third parameter 'strict' to array_keys(). (Andrey) +- Added stream_lock() method to userspace streams interface. (Hartmut, Wez) +- Added xsltprocessor->registerPHPFunctions(). (Christian) +- Readded support for using classes before they are declared according to + the behavior in PHP 4. This won't work with classes who are using PHP 5 + features such as interfaces. (Zeev, Andi) +- Completely overhauled SimpleXML extension. (Marcus, Rob, Sterling) +- Upgraded bundled SQLite library to version 2.8.11. (Ilia, Wez) +- Improved destructor implementation to always call destructors on clean + shutdown. An order of destruction is not guaranteed. (Zeev, Andi) +- Redesigned exception support. This fixes many bugs in the previous design + such as nested try's and problems with overloaded extensions. (Zeev, Andi) +- Redesigned clone by adding a clone keyword (clone $obj) and copying all + properties before __clone() is called. Also allows calling parent __clone + function by using parent::__clone(). (Zeev, Andi) +- Fixed interfaces to check for function return-by-reference equality when + inheriting and implementing interfaces. (Andi, Zeev) +- Fixed foreach() to respect property visibility. (Marcus) +- Fixed problem with parse error in include() file not stopping PHP's + execution. (Ilia) +- Fixed var_export() to show public, protected and private modifiers properly. + (Derick) +- Fixed problems with longlong values in mysqli. (Georg) +- Fixed class name case preserving of user defined classes. (Marcus) +- Fixed bug #27145 (Unmangle private/protected property names before printing + them inside error messages). (Ilia) +- Fixed bug #27103 (preg_split('//u') incorrectly splits UTF-8 strings into + octets). (Moriyoshi) +- Fixed bug #27042 (SPL: SeekableIterator seek() broken). (Marcus) +- Fixed bug #27008 (Every class method can be called as static). (Marcus) +- Fixed bug #26938 (exec() has problems reading long lines). + (Ilia, runekl[at]opoint[dot]com +- Fixed bug #26947 (ext/dom: Crash when using DomDocument::getElementById()). + (Christian) +- Fixed bug #26911 (crash in sqlite extension when fetching data from empty + queries). (Ilia) +- Fixed bug #26844 (ext/mime_magic: magic file validation broken). (Jani) +- Fixed bug #26819 (http_build_query() crashes on NULL output). (Ilia) +- Fixed bug #26817 (http_build_query() does not handle private & protected + object properties correctly). (Ilia) +- Fixed bug #26815 (foreach of (DOM) childnodes crashes when Xinclude is used). + (Rob) +- Fixed bug #26796 (SQLite causes crashes with other extensions *connect() + calls). (Marcus) +- Fixed bug #26762 (unserialize() produces lowercase classnames). (Marcus) +- Fixed bug #26743 (getElementsByTagName doesn't work properly). (Rob) +- Fixed bug #26736 (__autoload not invoked for parent classes). (Marcus) +- Fixed bug #26723 (domNode::appendChild() changes child node namespace). (Rob) +- Fixed bug #26697 (calling class_exists() on a nonexistent class in __autoload + results in segfault). (Marcus) +- Fixed bug #26696 (string index in a switch() crashes with multiple matches). + (Andi) +- Fixed bug #26695 (Reflection API does not recognize mixed-case class hints). + (Marcus) +- Fixed bug #26690 (make xsltProcessor->transformToUri use streams wrappers). + (Ilia) +- Fixed bug #26680 (Added version check in mysqli_report_index). (Georg) +- Fixed bug #26675 (Segfault on ArrayAccess use). (Marcus) +- Fixed bug #26640 (__autoload() not invoked by Reflection classes). (Jani) +- Fixed bug #26543 (call_user_func() broken for self, parent). (Stanislav) +- Fixed bug #26077 (memory leak when new() result is not assigned and no + constructor is defined). (Stanislav) +- Fixed bug #26065 (Crash when nesting classes). (Marcus) +- Fixed bug #25816 (disallow arrays in class constants). (Stanislav) +- Fixed bug #25329 (sqlite_create_function with method and reference to $this). + (Marcus) +- Fixed bug #25038 (call_user_func() issues a warning if function throws an + exception). (Marcus) +- Fixed bug #24608 (__set not triggered when overloading with array). + (Stanislav) +- Fixed bug #24243 (enabling browscap causes segfault). (Wez) + +21 Dec 2003, PHP 5 Beta 3 +- Bundled new tidy extension (John, Wez) +- Upgraded PCRE library to version 4.5. (Andrei) +- Dropped Windows 95 support. (Andi) +- Moved extensions to PECL: + . ext/crack (Jani, Derick) + . ext/db (Jani, Derick) + . ext/mcal (Jani, Derick) + . ext/qtdom (Jani, Derick) + . ext/notes (Wez) +- Added 'c' modifier to date() which returns the date in the ISO 8601 format. + (Derick, Manuzhai) +- Added an optional parameter to microtime() to get the time as float. (Andrey) +- Added MacRoman encoding support to htmlentities(). (Derick, Marcus Bointon) +- Added possibility to call PHP functions as XSLT-functions. (Christian) +- Added possibility to prevent PHP from registering variables when input filter + support is used. (Derick) +- Added iconv stream filter (convert.iconv.*). (Moriyoshi) +- Added EXSLT support in ext/xsl. (Christian) +- Added qdbm handler for dba extension. (mg at iceni dot pl, Marcus) +- Added new functions: + . dba_key_split() to split inifile keys in an array. (Marcus) + . time_nanosleep() signal safe sleep (Magnus, Ilia) + . headers_list(). (Sara) + . php_strip_whitespace(). strip whitespace & comments from a script. (Ilia) + . php_check_syntax(). check php script for parse errors. (Ilia) + . image_type_to_extension(). return extension based on image type. (Ilia) + . stream_socket_sendto() and stream_socket_recvfrom(). (Wez) + . iconv_mime_decode_headers(). (Moriyoshi) + . get_declared_interfaces(). (Andrey, Marcus) + . sqlite_fetch_column_types(). (Ilia) +- Added proxy support to http:// wrapper. (Sara) +- Added rename(), rmdir() and mkdir() support to userstreams. (Sara) +- Added rename(), rmdir() and mkdir() support to ftp:// wrapper. (Sara) +- Changed rename(), rmdir() and mkdir() to be routed via streams API. (Sara) +- Changed stat() and family to be routed via streams API. (Sara) +- Fixed include_once() / require_once() on Windows to honor case-insensitivity + of files. (Andi) +- Fixed get_declared_classes() to return only classes. (Andrey, Marcus) +- Fixed __autoload() to preserve case of the passed class name. (Andi) +- Fixed bug #26615 () (runekl at opoint dot com, Derick) +- Fixed bug #26591 ("__autoload threw an exception" during an uncaught). + (Marcus) +- Fixed bug #26534 (stream_get_meta_data() -> Access Violation). (Wez) +- Fixed bug #26528 (HTML entities are not being decoded by + xml_parse()/xml_parse_into_struct()). (Ilia) +- Fixed bug #26182 (Object properties created redundantly). (Andi) +- Fixed bug #26156 (REPLACE_ZVAL_VALUE works on uninit stack-based zvals). + (Moriyoshi) +- Fixed bug #26083 (Non-working write support in ext/dom). (Ilia) +- Fixed bug #26072 (--disable-libxml does not work). (Jani) +- Fixed bug #26001 (serialize crashes when accessing an overloaded object that + has no properties (NULL hashtable)). (Wez) +- Fixed bug #25664 (COM crashes when calling a Delphi implementations of + ITypeInfo). (Wez) +- Fixed bug #24837 (Incorrect behaviour of PPP using foreach). (Marcus) +- Fixed bug #24693 (Allow session.use_trans_sid to be enabled/disabled from + inside the script). (Ilia) +- Fixed bug #24394 (Serializing cross-referenced objects causes segfault). + (Moriyoshi) + +30 Oct 2003, PHP 5 Beta 2 +- Lots and lots of changes in the Zend Engine 2 since beta 1: + . Added Iterators + . Improved memory manager + . Added Reflection API + . Removed the not so working namespaces support + . Removed support for expressions within constant declarations. + . You can read about most changes in ZEND_CHANGES under the Zend directory. +- Improved the DBX extension: (Marc) + . Added DBX_RESULT_UNBUFFERED flag for dbx_query(). + . Added dbx_fetch_row() + . Added SQLite support. +- Improved the Interbase extension: (Ard Biesheuvel) + . Added support for multiple databases into ibase_trans() + . Added support for CREATE DATABASE, SET TRANSACTION and EXECUTE PROCEDURE + statements into ibase_query() + . Added ability to bind PHP arrays to native Interbase arrays + . Added ibase_commit_ret() and ibase_rollback_ret() + . Added ibase_drop_db() + . Added ibase_gen_id() + . Added ibase_name_result() + . Added ibase_errcode() + . Added ibase_affected_rows() and ibase_num_params() + . Added ibase_param_info() + . Added ibase_wait_event() + . Added ibase_set_event_handler() and ibase_free_event_handler() +- Added new COM extension with integrated .Net support. (Wez) +- Added new functions: + . setrawcookie(). (Brian) + . pg_version(). (Marcus) + . dbase_get_header_info(). (Zak) + . snmp_read_mib(). (Jani) + . http_build_query(). (Sara) + . ftp_alloc(). (Sara) + . array_udiff(). (Andrey) + . array_udiff_assoc(). (Andrey) + . array_udiff_uassoc(). (Andrey) + . array_diff_uassoc(). (Andrey) + . convert_uuencode(). (Ilia) + . convert_uudecode(). (Ilia) + . substr_compare(). (Ilia) + . pcntl_wait(). (GeorgeS) +- Added "resume_pos" context option to "ftp://" wrapper. (Sara) +- Added optional parameter to OCIWriteTemporaryLob() to specify the type of LOB + (Patch by Novicky Marek ). (Thies) +- Added reflection API. (Andrei, George, Timm) +- Changed length parameter in fgetcsv() to be optional. (Moriyoshi) +- Fixed IPv6 support in MacOSX Panther. (Dan, Marko) +- Fixed fgetcsv() to correctly handle international (non-ascii) characters. + (Moriyoshi) +- Fixed support for fields within XML documents in ext/xml. + (Sterling) +- Fixed visibility of __construct and __clone. (Marcus) +- Fixed bug #25756 (SimpleXML's validate_schema_file() broken). (Moriyoshi) +- Fixed bug #25581 (getimagesize() returns incorrect values on bitmap (os2) + files). (Marcus) +- Fixed bug #25494 (array_merge*() allows non-arrays as argument). (Jay) +- Fixed bug #24766 (strange result array from unpack()). (Moriyoshi) +- Fixed bug #24729 ($obj = new $className; causes crash when $className is not + set). (Marcus) +- Fixed bug #24565 (cannot read array elements received via $_REQUEST). (Zeev) +- Fixed bug #24445 (get_parent_class() returns different values). + (Sterling, Stanislav) +- Fixed bug #24403 (preg_replace() problem: Using $this when not in object + context). (Zeev) +- Fixed bug #24399 (PEAR DB isError crash [instanceof_function fault?]). + (Sterling, Marcus) +- Fixed bug #24396 (foreach ($k=>$v), the key $k is missing). (Zeev) +- Fixed bug #24279 (__get() crash when no value is returned). (Ilia) +- Fixed bug #22367 (undefined variable has a value). (Zeev) +- Fixed bug #19859 (allow fast_call_user_function to support __call). + (Stanislav) +- Fixed bug #17997 (Warning when switch() and reference are combined). (Zeev) +- Fixed bug #17988 (strtotime failed to parse postgresql timestamp). (Derick) + +29 Jun 2003, PHP 5 Beta 1 +- Removed the bundled MySQL client library. (Sterling) +- Switched to Zend Engine 2, which includes numerous engine level improvements. + A full list is available at http://www.php.net/zend-engine-2.php. +- Added SQLite (http://www.hwaci.com/sw/sqlite/) extension: (Wez, Marcus, Tal) + . Includes bundled SQLite library + . Enabled by default +- Completely Overhauled XML support: + . New simplexml extension. (Sterling) + . New DOM extension. (Rob, Chregu, Marcus) + . New XSL extension. (Chregu, Rob) + . Moved the old DOM-XML and XSLT extensions to PECL. (James, Sterling) + . ext/xml can now use either libxml2 or expat to parse XML. (Sterling) + . Removed bundled expat library. (Jani) +- New php.ini options: + . "session.hash_function" and "session.hash_bits_per_character". (Sascha) + . "mail.force_extra_paramaters". (Derick) + . "register_long_arrays". (Zeev) +- Improved the speed of internal functions that use callbacks by 40% due to a + new internal fast_call_user_function() function. (Sterling) +- Improved the streams support: (Wez) + . Improved performance of readfile(), fpassthru() and some internal streams + operations under Win32. + . stream_socket_client() - similar to fsockopen(), but more powerful. + . stream_socket_server() - Creates a server socket. + . stream_socket_accept() - Accept a client connection. + . stream_socket_get_name() - Get local or remote name of socket. + . stream_copy_to_stream() + . stream_get_line() - Reads either the specified number of bytes or until + the ending string is found. (Ilia) + . Added context property to userspace streams object. (Sara) + . Added generic crypto interface for streams. + (supports dynamic loading of OpenSSL) + . Added lightweight streaming input abstraction to the Zend Engine scanners + to provide uniform support for include()'ing data from PHP streams across + all platforms. + . Added 'string.base64' stream filter. (Moriyoshi) + . Renamed stream_register_wrapper() to stream_wrapper_register(). (Derick) +- Improved the GD extension: (Pierre-Alain Joye, Ilia) + . imagefilter() - Apply different filters to image. + (Only available with bundled GD library) + . Antialiased drawing support: + o imageantialias() - (de)active antialias + o imageline() and imagepolygon() antialias support +- Changed the length parameter in fgetss() to be optional. (Moriyoshi) +- Changed ini parser to allow for handling of quoted multi-line values. (Ilia) +- Changed get_extension_funcs() to return list of the built-in Zend Engine + functions if "zend" is specified as the module name. (Ilia) +- Changed array_search() to accept also objects as a needle. (Moriyoshi) +- Changed ext/mcrypt to require libmcrypt version 2.5.6 or greater. (Derick) +- Changed uniqid() parameters to be optional and allow any prefix length. + (Marcus) +- Added new iconv functions. (Moriyoshi) + . iconv_strlen() + . iconv_substr() + . iconv_strpos() + . iconv_strrpos() + . iconv_mime_decode() + . iconv_mime_encode() +- Added misc. new functions: + . ldap_sasl_bind(). (peter_c60@hotmail.com, Jani) + . imap_getacl(). (Dan, Holger Burbach) + . file_put_contents(). (Sterling) + . proc_nice() - Changes priority of the current process. (Ilia) + . pcntl_getpriority() and pcntl_setpriority(). (Ilia) + . idate(), date_sunrise() and date_sunset(). (Moshe Doron) + . strpbrk() - Searches a string for a list of characters. (Ilia) + . get_headers() - Returns headers sent by the server of the specified URL. + (Ilia) + . str_split() - Breaks down a string into an array of elements based on + length. (Ilia) + . array_walk_recursive(). (Ilia) + . array_combine(). (Andrey) +- Added optional parameter to get_browser() to make it return an array. (Jay) +- Added optional parameter to openssl_sign() to specify the hashing algorithm. + (scott@planetscott.ca, Derick) +- Added optional parameter to sha1(), sha1_file(), md5() and md5_file() which + makes them return the digest as binary data. (Michael Bretterklieber, Derick) +- Added optional parameter to mkdir() to make directory creation recursive. + (Ilia) +- Added optional parameter to file() which makes the result array not contain + the line endings and to skip empty lines. (Ilia) +- Added new range() functionality: + . Support for float modifier. (Ilia) + . Detection of numeric values inside strings passed as high & low. (Ilia) + . Proper handle the situations where high == low. (Ilia) + . Added an optional step parameter. (Jon) +- Added encoding detection feature for expat XML parser. + (Adam Dickmeiss, Moriyoshi) +- Added missing multibyte (unicode) support and numeric entity support to + html_entity_decode(). (Moriyoshi) +- Added IPv6 support to ext/sockets. (Sara) +- Added "ftp://" wrapper support to opendir(), stat() and unlink(). (Sara) +- Added context options 'method', 'header' and 'content' for "http://" fopen + wrapper. (Sara) +- Added input filter support. See README.input_filter for more info. (Rasmus) +- Added a replace count for str_[i]replace(), see bug #8218. (Sara) +- Fixed is_executable() to be available also on Windows. (Shane) +- Fixed dirname() and strip_tags() to be binary-safe. (Moriyoshi) +- Fixed bug #24098 (crash in pathinfo()). (Ilia) +- Fixed bug #21985 and #22064 (various mb_send_mail() issues). (Moriyoshi) +- Fixed bug #21600 (Assign by reference function call changes variable + contents). (Zeev) diff --git a/data/releases/5.0/5.0.0/release.json b/data/releases/5.0/5.0.0/release.json new file mode 100644 index 0000000000..648120bc76 --- /dev/null +++ b/data/releases/5.0/5.0.0/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.0.0", + "date": "13 July 2004", + "tags": [], + "source": [ + { + "filename": "php-5.0.0.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.0/5.0.1/changes.txt b/data/releases/5.0/5.0.1/changes.txt new file mode 100644 index 0000000000..ea4415aedf --- /dev/null +++ b/data/releases/5.0/5.0.1/changes.txt @@ -0,0 +1,57 @@ +- Changed destructor mechanism so that destructors are called prior to request + shutdown. (Marcus) +- Rewritten UNIX and Windows install help files. (Documentation Team) +- Updated several libraries bundled with the windows release which now + includes libxml2-2.6.11, libxslt-1.1.7 and iconv-1.9.1. (Rob, Edin) +- Improved and moved ActiveScript SAPI to PECL. (Wez) +- Fixed bug #29606 (php_strip_whitespace() prints to stdout rather then + returning the value). (Ilia) +- Fixed bug #29577 (MYSQLI_CLIENT_FOUND_ROWS undefined) (Georg) +- Fixed bug #29573 (Segmentation fault, when exception thrown within + PHP function called from XSLT). (Christian) +- Fixed bug #29522 (accessing properties without connection) (Georg) +- Fixed bug #29505 (get_class_vars() severely broken when used with arrays). + (Marcus) +- Fixed bug #29490 (.Net object instantiation failed). (Michael Sisolak). +- Fixed bug #29474 (win32: usleep() doesn't work). (Wez) +- Fixed bug #29449 (win32: feof() hangs on empty tcp stream). (Wez) +- Fixed bug #29437 (Possible crash inside array_walk_recursive()). (Ilia) +- Fixed bug #29431 (crash when parsing invalid address; invalid address + returned by stream_socket_recvfrom(), stream_socket_getname()). (Wez) +- Fixed bug #29409 (Segfault in PHP functions called from XSLT). (Rob) +- Fixed unloading of dynamically loaded extensions. + (Marcus, kameshj at fastmail dot fm) +- Fixed bug #29395 (sqlite_escape_string() returns bogus data on empty + strings). (Ilia, Tony) +- Fixed bug #29392 (com_dotnet crashes when echo'ing an object). (Wez) +- Fixed bug #29368 (The destructor is called when an exception is thrown from + the constructor). (Marcus) +- Fixed bug #29354 (Exception constructor marked as both public and protected). + (Marcus) +- Fixed bug #29342 (strtotime() does not handle empty date string properly). + (Ilia) +- Fixed bug #29340 (win32 build produces invalid php_ifx.dll). (Edin) +- Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default) (Georg) +- Fixed bug #29291 (get_class_vars() return names with NULLs). (Marcus) +- Fixed bug #29264 (gettext extension not working). (Edin) +- Fixed bug #29258 (variant_date_from_timestamp() does not honour + timezone). (Wez) +- Fixed bug #29256 (error when sending large packets on a socket). (Dmitry) +- Fixed bug #29236 (memory error when wsdl-cache is enabled). (Dmitry) +- Fixed bug #29147 (Compile Error in mnoGoSearch functions). (Sergey, Antony) +- Fixed bug #29132 ($_SERVER["PHP_AUTH_USER"] isn't defined). (Stefan) +- Fixed bug #29119 (html_entity_decode() misbehaves with UTF-8). (Moriyoshi) +- Fixed bug #29109 (SoapFault exception: [WSDL] Out of memory). (Dmitry) +- Fixed bug #29061 (soap extension segfaults). (Dmitry) +- Fixed bug #28985 (__getTypes() returning nothing on complex WSDL). (Dmitry) +- Fixed bug #28969 (Wrong data encoding of special characters). (Dmitry) +- Fixed bug #28895 (ReflectionClass::isAbstract always returns false). (Marcus) +- Fixed bug #28829 (Thread-unsafety in bcmath elementary values). (Sara) +- Fixed bug #28464 (catch() does not catch exceptions by interfaces). (Marcus) +- Fixed bug #27669 (PHP 5 didn't support all possibilities for calling static + methods dynamically). (Dmitry) +- Fixed ReflectionClass::getMethod() and ReflectionClass::getProperty() to + raise an ReflectionException instead of returning NULL on failure. + (Sebastian) +- Fixed convert.* filters to consume remaining buckets_in on flush. (Sara) +- Fixed bug in mysqli->client_version. (Georg) diff --git a/data/releases/5.0/5.0.1/release.json b/data/releases/5.0/5.0.1/release.json new file mode 100644 index 0000000000..463e02367b --- /dev/null +++ b/data/releases/5.0/5.0.1/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.0.1", + "date": "12 Aug 2004", + "tags": [], + "source": [ + { + "filename": "php-5.0.1.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.0/5.0.2/changes.txt b/data/releases/5.0/5.0.2/changes.txt new file mode 100644 index 0000000000..a167c86c55 --- /dev/null +++ b/data/releases/5.0/5.0.2/changes.txt @@ -0,0 +1,54 @@ +- Added new boolean (fourth) parameter to array_slice() that turns on the + preservation of keys in the returned array. (Derick) +- Added the sorting flag SORT_LOCALE_STRING to the sort() functions which makes + them sort based on the current locale. (Derick) +- Added interface_exists() and make class_exists() only return true for real + classes. (Andrey) +- Added PHP_EOL constant that contains the OS way of representing newlines. + (Paul Hudson, Derick) +- Implemented periodic PCRE compiled regexp cache cleanup, to avoid memory + exhaustion. (Andrei) +- Renamed SoapClient->__call() to SoapClinet->__soapCall(). (Dmitry) +- Fixed bug with raw_post_data not getting set (Brian) +- Fixed a file-descriptor leak with phpinfo() and other 'special' URLs (Zeev) +- Fixed bug #30209 (ReflectionClass::getMethod() lowercases attribute). + (Marcus) +- Fixed bug #30182 (SOAP module processing WSDL file dumps core). (Dmitry) +- Fixed bug #30045 (Cannot pass big integers (> 2147483647) in SOAP requests). + (Dmitry) +- Fixed bug #29985 (unserialize()/ __PHP_Incomplete_class does not report + correctly class name). (Marcus, Tony) +- Fixed bug #29945 (simplexml_load_file URL limitation 255 char). (Rob) +- Fixed bug #29873 (No defines around pcntl_*priority definitions). (Derick) +- Fixed bug #29844 (SOAP doesn't return the result of a valid SOAP request). + (Dmitry) +- Fixed bug #29842 (soapclient return null value). (Dmitry) +- Fixed bug #29839 (incorrect convert (xml:lang to lang)). (Dmitry) +- Fixed bug #29830 (SoapServer::setClass() should not export non-public + methods). (Dmitry) +- Fixed bug #29828 (Interfaces no longer work). (Marcus) +- Fixed bug #29821 (Fixed possible crashes in convert_uudecode() on invalid + data). (Ilia) +- Fixed bug #29808 (array_count_values() breaks with numeric strings). (Ilia) +- Fixed bug #29805 (HTTP Authentication Issues). (Uwe Schindler) +- Fixed bug #29795 (SegFault with Soap and Amazon's Web Services). (Dmitry) +- Fixed bug #29737 (ip2long should return -1 if IP is 255.255.255.255 and FALSE + on error). (Tony) +- Fixed bug #29711 (Changed ext/xml to default to UTF-8 output). (Rob) +- Fixed bug #29678 (opendir() with ftp:// wrapper segfaults if path does not + have trailing slash). (Ilia) +- Fixed bug #29657 (xml_* functions throw non descriptive error). + (Christian, Rob) +- Fixed bug #29656 (segfault on result and statement properties). (Georg) +- Fixed bug #29566 (foreach/string handling strangeness (crash)). (Dmitry) +- Fixed bug #29447 (Reflection API issues). (Marcus) +- Fixed bug #29296 (Added sslv2 and sslv3 transports). (Wez) +- Fixed bug #29283 (Invalid statement handle in mysqli on execute). (Georg) +- Fixed bug #29913 (parse_url() is now binary safe). (Ilia) +- Fixed bug #27994 (segfault with Soapserver when WSDL-Cache is enabled). + (Dmitry) +- Fixed bug #27791 (Apache 2.0 SAPI build against Apache 2 HEAD). (Joe Orton, + Derick) +- Fixed bug #26737 (private/protected properties not serialized when user + declared method __sleep() exists). E_NOTICE thrown when __sleep() returns + name of non-existing member. (Andrey, Curt) diff --git a/data/releases/5.0/5.0.2/release.json b/data/releases/5.0/5.0.2/release.json new file mode 100644 index 0000000000..61f4a951c1 --- /dev/null +++ b/data/releases/5.0/5.0.2/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.0.2", + "date": "23 Sep 2004", + "tags": [], + "source": [ + { + "filename": "php-5.0.2.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.0/5.0.3/changes.txt b/data/releases/5.0/5.0.3/changes.txt new file mode 100644 index 0000000000..070058f3a1 --- /dev/null +++ b/data/releases/5.0/5.0.3/changes.txt @@ -0,0 +1,98 @@ +- Added the %F modifier to *printf to render a non-locale-aware representation + of a float with the . as decimal seperator. (Derick) +- Fixed error handling in mysqli_multi_query. (Georg) +- Extended the functionality of is_subclass_of() to accept either a class name + or an object as first parameter. (Andrey) +- Fixed potential problems with unserializing invalid serialize data. (Marcus) +- Fixed bug #32076 (ReflectionMethod::isDestructor() always return true). + (Derick, Tony) +- Fixed bug #31034 (Problem with non-existing iconv header file). (Derick) +- Fixed bug #30995 (snmp extension does not build with net-snmp 5.2). (Ilia) +- Fixed bug #30994 (SOAP server unable to handle request with references). + (Dmitry) +- Fixed bug #30990 (allow popen() on *NIX to accept 'b' flag). (Ilia) +- Fixed bug #30967 (properties in extended mysqli classes don't work). (Georg) +- Fixed bug #30928 (When Using WSDL, SoapServer doesn't handle private or + protected properties). (Dmitry) +- Fixed bug #30922 (reflective functions crash PHP when interfaces extend + themselves). (Tony, Dmitry) +- Fixed bug #30904 (segfault when recording soapclient into session). (Tony, + Dmitry) +- Fixed bug #30890 (MySQLi testsuite) +- Fixed bug #30856 (ReflectionClass::getStaticProperties segfaults). (Marcus) +- Fixed bug #30832 ("!" stripped off comments in xml parser). (Rob) +- Fixed bug #30799 (SoapServer doesn't handle private or protected properties). + (Dmitry) +- Fixed bug #30783 (Apache crash when using ReflectionFunction:: + getStaticVariables()). (Marcus) +- Fixed bug #30750 (Meaningful error message when upload directory is not + accessible). (Ilia) +- Fixed bug #30685 (Malformed SOAPClient http header reequest). (Dmitry) +- Fixed bug #30672 (Problem handling exif data in jpeg images at unusual + places). (Marcus) +- Fixed bug #30658 (Ensure that temporary files created by GD are removed). + (Ilia) +- Fixed bug #30645 (def. multi result set support for mysql_connect). (Georg) +- Fixed bug #30637 (compile with pear error). (Antony) +- Fixed bug #30587 (array_multisort doesn't separate zvals before + changing them). (Tony) +- Fixed bug #30572 (crash when comparing SimpleXML attribute to a boolean). + (Andi) +- Fixed bug #30566 (attribute namespace URIs are inconsistent when parsing). + (Rob) +- Fixed bug #30490 (PEAR installation fails). (Antony) +- Fixed bug #30475 (curl_getinfo() may crash in some situations). (Ilia) +- Fixed bug #30442 (segfault when parsing ?getvariable[][ ). (Tony) +- Fixed bug #30388 (rename across filesystems loses ownership and + permission info). (Tony) +- Fixed bug #30387 (stream_socket_client async connect was broken). + (vnegrier at esds dot com, Wez). +- Fixed bug #30381 (Strange results with get_class_vars()). (Marcus) +- Fixed bug #30375 (cal_info() does not work without a parameter). (Ilia) +- Fixed bug #30362 (stream_get_line() not handling end string correctly). + (Ilia) +- Fixed bug #30359 (SOAP client requests have no port in "Host" field). + (Dmitry) +- Fixed bug #30356 (str_ireplace() does not work on all strings). (Ilia) +- Fixed bug #30344 (Reflection::getModifierNames() returns too long strings). + (Marcus) +- Fixed bug #30329 (Error Fetching http body, No Content-Length, connection + closed or chunked data). (Dmitry) +- Fixed bug #30282 (segfault when using unknown/unsupported + session.save_handler and/or session.serialize_handler). (Tony) +- Fixed bug #30281 (Prevent non-wbmp images from being detected as such). + (Ilia) +- Fixed bug #30276 (Possible crash in ctype_digit on large numbers). (Ilia) +- Fixed bug #30230 (exception handler not working with objects). (Marcus) +- Fixed bug #30224 (Sybase date strings are sometimes not null terminated). + (Ilia) +- Fixed bug #30175 (SOAP results aren't parsed correctly). (Dmitry) +- Fixed bug #30147 (OO sqlite_fetch_object did not reset error handler). (Wez) +- Fixed bug #30133 (get_current_user() crashes on Windows). (Edin) +- Fixed bug #30061 (xml_set_start_namespace_decl_handler not called). (Rob) +- Fixed bug #30057 (did not detect IPV6 on FreeBSD 4.1). (Wez) +- Fixed bug #30042 (strtotime does not use second param). (Derick) +- Fixed bug #30027 (Possible crash inside ftp_get()). + (cfield at affinitysolutions dot com) +- Fixed bug #29954 (array_reduce segfaults when initial value is array). (Tony) +- Fixed bug #29883 (isset gives invalid values on strings). (Tony, Dmitry) +- Fixed bug #29801 (Set limit on the size of mmapable data). (Ilia) +- Fixed bug #29557 (strtotime error). (Derick) +- Fixed bug #29418 (double free when openssl_csr_new fails). + (Kamesh Jayachandran). +- Fixed bug #29385 (Soapserver always uses std class). (David, Dmitry) +- Fixed bug #29211 (SoapClient doesn't request wsdl through proxy). (Rob) +- Fixed bug #28817 (Var problem when extending domDocument). (Georg) +- Fixed bug #28599 (strtotime fails with zero base time). (Derick) +- Fixed bug #28598 (Lost support for MS Symbol fonts). (Pierre) +- Fixed bug #28220 (mb_strwidth() returns wrong width values for some hangul + characters). (Moriyoshi) +- Fixed bug #28228 (NULL decimal separator is not being handled correctly). + (Ilia) +- Fixed bug #28209 (strtotime("now")). (Derick) +- Fixed bug #27798 (private / protected variables not exposed by + get_object_vars() inside class). (Marcus) +- Fixed bug #27728 (Can't return within a zend_try {} block or the previous + bailout state isn't restored. (Andi) +- Fixed bug #27183 (Userland stream wrapper segfaults on stream_write). + (Christian) diff --git a/data/releases/5.0/5.0.3/release.json b/data/releases/5.0/5.0.3/release.json new file mode 100644 index 0000000000..ec6848167c --- /dev/null +++ b/data/releases/5.0/5.0.3/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.0.3", + "date": "15 Dec 2004", + "tags": [], + "source": [ + { + "filename": "php-5.0.3.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.0/5.0.4/changes.txt b/data/releases/5.0/5.0.4/changes.txt new file mode 100644 index 0000000000..d33dfaa356 --- /dev/null +++ b/data/releases/5.0/5.0.4/changes.txt @@ -0,0 +1,180 @@ +- Added SNMPv2 support. (harrie) +- Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony) +- Added length and charsetnr for field array and object in mysqli. (Georg) +- Added checks for negative values to gmp_sqrt(), gmp_powm(), gmp_sqrtrem() + and gmp_fact() to prevent SIGFPE. (Tony) +- Changed foreach() to throw an exception if IteratorAggregate::getIterator() + does not return an Iterator. (Marcus) +- Changed phpize not to require libtool. (Jani) +- Updated bundled oniguruma library (used for multibyte regular expression) + to 3.7.0. (Moriyoshi) +- Updated bundled libmbfl library (used for multibyte functions). (Moriyoshi) + Fixed bugs: + . Bug #32311 (mb_encode_mimeheader() does not properly escape characters) + . Bug #32063 (mb_convert_encoding ignores named entity 'alpha') + . Bug #31911 (mb_decode_mimeheader() is case-sensitive to hex escapes) + . bug #30573 (compiler warnings in libmbfl due to invalid type cast) + . Bug #30549 (incorrect character translations for some ISO8859 charsets). +- Fixed bug preventing from building oci8 as shared. + (stanislav dot voroniy at portavita dot nl, Tony) +- Fixed a bug in mysql_affected_rows and mysql_stmt_affected_rows when the + api function returns -1 (Georg) +- Fixed several leaks in ext/browscap and sapi/embed. (Andrei) +- Fixed several leaks in ext/filepro. (Tony) +- Fixed build system to always use bundled libtool files. (Jani) +- Fixed a bug in mysqli_stmt_execute() (type conversion with NULL values). + (Georg) +- Fixed segfault in mysqli_fetch_field_direct() when invalid field offset + is passed. (Tony) +- Fixed posix_getsid() & posix_getpgid() to return sid & pgid instead + of true. (Tony) +- Fixed bug #32394 (offsetUnset() segfaults in a foreach). (Marcus) +- Fixed bug #32373 (segfault in bzopen() if supplied path to non-existent + file). (Tony) +- Fixed bug #32326 (Check values of Connection/Transfer-Encoding + case-incentively in SOAP extension). (Ilia) +- Fixed bug #32290 (call_user_func_array() calls wrong class method within + child class). (Marcus) +- Fixed bug #32238 (spl_array.c: void function cannot return value). (Johannes) +- Fixed bug #32210 (proc_get_status() sets "running" always to true). (Ilia) +- Fixed bug #32200 (Prevent using both --with-apxs2 and --with-apxs2filter). + (Jani) +- Fixed bug #32134 (Overloading offsetGet/offsetSet). (Marcus) +- Fixed bug #32130 (ArrayIterator::seek() does not throw an Exception on + invalid index). (Marcus) +- Fixed bug #32115 (dateTime SOAP encoding of timezone incorrect). (Dmitry) +- Fixed bug #32081 (in mysqli default socket value is not being used). (Ilia) +- Fixed bug #32021 (Crash caused by range('', 'z')). (Derick) +- Fixed bug #32011 (Fragments which replaced Nodes are not globaly useable). + (Rob) +- Fixed bug #32001 (xml_parse_into_struct() function exceeds maximum + execution time). (Rob, Moriyoshi) +- Fixed bug #31980 (Unicode exif data not available on Windows). (Edin) +- Fixed bug #31960 (msql_fetch_row() and msql_fetch_array() dropping columns + with NULL values). (Daniel Convissor) +- Fixed bug #31878 (Segmentation fault using clone keyword on nodes). (Rob) +- Fixed bug #31858 (--disable-cli does not force --without-pear). (Jani) +- Fixed bug #31842 (*date('r') does not return RFC2822 conforming date string). + (Jani) +- Fixed bug #31832 (SOAP encoding problem with complex types in WSDL mode with + multiple parts). (Dmitry) +- Fixed bug #31797 (exif_read_data() uses too low nesting limit). (Ilia) +- Fixed bug #31796 (readline completion handler does not handle empty return + values). (Ilia) +- Fixed bug #31792 (getrusage() does not provide ru_nswap value). (Ilia) +- Fixed bug #31755 (Cannot create SOAP header in no namespace). (Dmitry) +- Fixed bug #31754 (dbase_open() fails for mode = 1). (Mehdi, Derick) +- Fixed bug #31751 (pg_parameter_status() missing on Windows). (Edin) +- Fixed bug #31747 (SOAP Digest Authentication doesn't work with + "HTTP/1.1 100 Continue" response). (Dmitry) +- Fixed bug #31732 (mb_get_info() causes segfault when no parameters + specified). (Tony) +- Fixed bug #31710 (Wrong return values for mysqli_autocommit/commit/rollback). + (Georg) +- Fixed bug #31705 (parse_url() does not recognize http://foo.com#bar). (Ilia) +- Fixed bug #31695 (Cannot redefine endpoint when using WSDL). (Dmitry) +- Fixed bug #31684 (dio_tcsetattr(): misconfigured termios settings). + (elod at itfais dot com) +- Fixed bug #31683 (changes to $name in __get($name) override future + parameters). (Dmitry) +- Fixed bug #31699 (unserialize() float problem on non-English locales). (Ilia) +- Fixed bug #31562 (__autoload() problem with static variables). (Marcus) +- Fixed bug #31651 (ReflectionClass::getDefaultProperties segfaults with arrays). + (Marcus) +- Fixed bug #31623 (OCILogin does not support password grace period). + (daniel dot beet at accuratesoftware dot com, Tony) +- Fixed bug #31527 (crash in msg_send() when non-string is stored without + being serialized). (Ilia) +- Fixed bug #31515 (Improve performance of scandir() by factor of 10 or so). (Ilia) +- Fixed bug #31514 (open_basedir uses path_translated rather then cwd for . + translation). (Ilia) +- Fixed bug #31480 (Possible infinite loop in imap_mail_compose()). (Ilia) +- Fixed bug #31479 (Fixed crash in chunk_split(), when chunklen > strlen). (Ilia) +- Fixed bug #31454 (session_set_save_handler crashes PHP when supplied + non-existent object ref). (Tony) +- Fixed bug #31444 (Memory leak in zend_language_scanner.c). + (hexer at studentcenter dot org) +- Fixed bug #31442 (unserialize broken on 64-bit systems). (Marcus) +- Fixed bug #31440 ($GLOBALS can be overwritten via GPC when register_globals + is enabled). (Ilia) +- Fixed bug #31422 (No Error-Logging on SoapServer-Side). (Dmitry) +- Fixed bug #31413 (curl POSTFIELDS crashes on 64-bit platforms). (Joe) +- Fixed bug #31396 (compile fails with gd 2.0.33 without freetype). (Jani) +- Fixed bug #31371 (highlight_file() trims new line after heredoc). (Ilia) +- Fixed bug #31361 (simplexml/domxml segfault when adding node twice). (Rob) +- Fixed bug #31348 (CachingIterator::rewind() leaks). (Marcus) +- Fixed bug #31346 (ArrayIterator::next segfaults). (Marcus) +- Fixed bug #31190 (Unexpected warning then exception is thrown from + call_user_func_array()). (phpbugs at domain51 dot net, Dmitry) +- Fixed bug #31142 (imap_mail_compose() fails to generate correct output). (Ilia) +- Fixed bug #31139 (XML Parser Functions seem to drop & when parsing). (Rob) +- Fixed bug #31398 (When magic_guotes_gpc are enabled filenames with ' get cutoff). + (Ilia) +- Fixed bug #31288 (Possible crash in mysql_fetch_field(), if mysql_list_fields() + was not called previously). (Ilia) +- Fixed bug #31107, #31110, #31111, #31249 (Compile failure of zend_strtod.c). + (Jani) +- Fixed bug #31110 (PHP 4.3.10 does not compile on Tru64 UNIX 5.1B). (Derick) +- Fixed bug #31107 (Compile failure on Solaris 9 (Intel) and gcc 3.4.3). (Derick) +- Fixed bug #31103 (Better error message when c-client cannot be found). (Ilia) +- Fixed bug #31101 (missing kerberos header file path with --with-openssl). (Jani) +- Fixed bug #31098 (isset() / empty() incorrectly return true in dereference of + a string type). (Moriyoshi) +- Fixed bug #31087 (broken php_url_encode_hash macro). (Ilia) +- Fixed bug #31072 (var_export() does not output an array element with an empty + string key). (Derick) +- Fixed bug #31060 (imageftbbox() does not use linespacing parameter). (Jani) +- Fixed bug #31056 (php_std_date() returns invalid formatted date if + y2k_compliance is On). (Ilia) +- Fixed bug #31055 (apache2filter: per request leak proportional to the full + path of the request URI). (kameshj at fastmail dot fm) +- Fixed bug #30901 (can't send cookies with soap envelop). (Dmitry) +- Fixed bug #30871 (Misleading warning message for array_combine()). (Andrey) +- Fixed bug #30868 (evaluated pointer comparison in mbregex causes compile + failure). (Moriyoshi) +- Fixed bug #30862 (Static array with boolean indexes). (Marcus) +- Fixed bug #30726 (-.1 like numbers are not being handled correctly). (Ilia) +- Fixed bug #30725 (PHP segfaults when an exception is thrown in getIterator() + within foreach). (Marcus) +- Fixed bug #30609 (cURL functions bypass open_basedir). (Jani) +- Fixed bug #30446 (apache2handler: virtual() includes files out of sequence) +- Fixed bug #30430 (odbc_next_result() doesn't bind values and that results + in segfault). (pdan-php at esync dot org, Tony) +- Fixed bug #30266 (Invalid opcode 137/1/8). (Marcus) +- Fixed bug #30120 (imagettftext() and imagettfbbox() accept too many + parameters). (Jani) +- Fixed bug #30106 (SOAP cannot not parse 'ref' element. Causes Uncaught + SoapFault exception). (Dmitry) +- Fixed bug #29989 (type re_registers redefined in oniguruma.h). (Moriyoshi) +- Fixed bug #28803 (enabled debug causes bailout errors with CLI on AIX + because of fflush() called on already closed filedescriptor). (Tony) +- Fixed bug #29767 (Weird behaviour of __set($name, $value)). (Dmitry) +- Fixed bug #29733 (printf() handles repeated placeholders wrong). + (bugs dot php dot net at bluetwanger dot de, Ilia) +- Fixed bug #29424 (width and height inverted for JPEG2000 files). (Ilia) +- Fixed bug #29329 (configure for mysqli with shared doesn't work). (Georg) +- Fixed bug #29136 (make test - libtool failure on MacOSX). (Jani) +- Fixed bug #28976 (mail(): use "From:" from headers if sendmail_from is empty). + (Jani) +- Fixed bug #28930 (PHP sources pick wrong header files generated by bison). + (eggert at gnu dot org, Jani) +- Fixed bug #28840 (__destruct of a class that extends mysqli not called). + (Marcus) +- Fixed bug #28804 (ini-file section parsing pattern is buggy). + (wendland at scan-plus dot de) +- Fixed bug #28451 (corrupt EXIF headers have unlimited recursive IFD directory + entries). (Andrei) +- Fixed bug #28444 (Cannot access undefined property for object with overloaded + property access). (Dmitry) +- Fixed bug #28442 (Changing a static variables in a class changes it across + sub/super classes.) (Marcus) +- Fixed bug #28324 (HTTP_SESSION_VARS appear when register_long_arrays is + Off). (Tony) +- Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr stream). + (chris at ex-parrot dot com) +- Fixed bug #28067 (partially incorrect utf8 to htmlentities mapping). (Derick, + Benjamin Greiner) +- Fixed bug #28041 (SOAP HTTP Digest Access Authentication). (Dmitry) +- Fixed bug #27633 (Double \r problem on ftp_get in ASCII mode on Win32). (Ilia) +- Fixed bug #18613 (Multiple OUs in x509 certificate not handled properly). + (Jani) diff --git a/data/releases/5.0/5.0.4/release.json b/data/releases/5.0/5.0.4/release.json new file mode 100644 index 0000000000..57996108b6 --- /dev/null +++ b/data/releases/5.0/5.0.4/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.0.4", + "date": "31 Mar 2005", + "tags": [], + "source": [ + { + "filename": "php-5.0.4.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.0/5.0.5/changes.txt b/data/releases/5.0/5.0.5/changes.txt new file mode 100644 index 0000000000..f98d0f2962 --- /dev/null +++ b/data/releases/5.0/5.0.5/changes.txt @@ -0,0 +1,230 @@ +- Upgraded PCRE library to version 5.0. (Andrei) +- Removed php_check_syntax() function which never worked properly. (Ilia) +- Added new function mysqli_set_charset(). (Georg) +- 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) +- Changed sha1_file() and md5_file() functions to use streams instead of + low level IO. (Uwe) +- Changed ming to support official 0.2a and 0.3 library versions. (Marcus) +- Fixed failing queries problem (FALSE returned) with mysqli_query() on 64 bit. + (Andrey) +- Fixed memory corruption in pg_copy_from() in case the as_null parameter was + passed. (Derick) +- Fixed ext/mysqli to allocate less memory when fetching bound params + of type (MEDIUM|LONG)BLOB/(MEDIUM|LONG)TEXT. (Andrey) +- Fixed memory corruption in ImageTTFText() with 64bit systems. (Andrey) +- Fixed memory corruption in stristr(). (Derick) +- Fixed segfaults when CURL callback functions throw exception. (Tony) +- Fixed various reentrancy bugs in user-sort functions, solves bugs #33286 and + #33295. (Mike Bretz) +- Fixed bug #34307 (on_modify handler not called to set the default value if + setting from php.ini was invalid). (Andrei) +- 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 #34277 (array_filter() crashes with references and objects). + (Dmitry) +- Fixed bug #34260 (Segfault with callbacks (array_map) + overloading). + (Dmitry) +- Fixed bug #34137 (assigning array element by reference causes binary mess). + (Dmitry) +- Fixed bug #34078 (Reflection API problems in methods with boolean or + null default values). (Tony) +- Fixed bug #34064 (arr[] as param to function is allowed only if function + receives argument by reference). (Dmitry) +- Fixed bug #34062 (Crash in catch block when many arguments are used). + (Dmitry) +- Fixed bug #33989 (extract($GLOBALS,EXTR_REFS) crashes PHP). (Dmitry) +- Fixed bug #33940 (array_map() fails to pass by reference when called + recursively). (Dmitry) +- Fixed bug #33853 (php:function call __autoload with lowercase param). (Marcus) +- Fixed bug #33802 (throw Exception in error handler causes crash). (Dmitry) +- Fixed bug #33723 (php_value overrides php_admin_value). (Dmitry) +- Fixed bug #33710 (ArrayAccess objects doen't initialize $this). (Dmitry) +- Fixed bug #33588 (LDAP: RootDSE query not possible). (Jani) +- Fixed bug #33558 (warning with nested calls to functions returning by + reference). (Dmitry) +- Fixed bug #33520 (crash if safe_mode is on and session.save_path is changed). + (Dmitry) +- Fixed bug #33491 (crash after extending MySQLi internal class). (Tony) +- Fixed bug #33340 (CLI Crash when calling php:function from XSLT). (Rob) +- 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 #33263 (mysqli_real_escape doesn't work in __construct) (Georg) +- 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 #33210 (relax jpeg recursive loop protection). (Ilia) +- 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 #33164 (Soap extension incorrectly detects HTTP/1.1). (Ilia) +- Fixed bug #33156 (cygwin version of setitimer doesn't accept ITIMER_PROF). + (Nuno) +- 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 #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 #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 #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 #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, 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 #32405 (mysqli::fetch() returns bad data - 64bit problem). (Andrey) +- Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit). (Georg) +- Fixed bug #32296 (get_class_methods() output has changed between 5.0.2 and + 5.0.3). (Dmitry) +- Fixed bug #32245 (xml_parser_free() in a function assigned to the xml parser + gives a segfault). (Rob) +- Fixed bug #32171 (Userspace stream wrapper crashes PHP). (Tony, Dmitry) +- Fixed bug #32080 (segfault when assigning object to itself with + zend.ze1_compatibility_mode=On). (Dmitry) +- Fixed bug #32013 (ext/mysqli bind_result causes fatal error: memory + limit). (Andrey) +- 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 #31465 (False warning in unpack() when working with *). (Ilia) +- Fixed bug #31363 (broken non-blocking flock()). ian at snork dot net +- Fixed bug #31213 (Sideeffects caused by fix of bug #29493). (Dmitry) +- Fixed bug #31158 (array_splice on $GLOBALS crashes). (Dmitry) +- Fixed bug #30961 (Wrong linenumber 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 #30519 (Interface not existing says Class not found). (Dmitry) +- Fixed bug #30394 (Assignment operators yield wrong result with __get/__set). + (Dmitry) +- Fixed bug #30332 (zend.ze1_compatibility_mode isnt fully compatable 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 #30080 (Passing array or non array of objects). (Dmitry) +- Fixed bug #29975 (memory leaks when set_error_handler() is used inside error + handler). (Tony) +- Fixed bug #29971 (variables_order behaviour). (Dmitry) +- Fixed bug #29944 (Function defined in switch, crashes). (Dmitry) +- Fixed bug #29896 (Backtrace argument list out of sync). (Dmitry) +- Fixed bug #29683 (headers_list() returns empty array). (Tony) +- Fixed bug #29583 (crash when echoing a COM object). (M.Sisolak, Wez) +- Fixed bug #29338 (unencoded spaces get ignored after certain tags). (Ilia) +- Fixed bug #29210 (Function: is_callable - no support for private and + protected classes). (Dmitry) +- Fixed bug #29104 (Function declaration in method doesn't work). (Dmitry) +- Fixed bug #29015 (Incorrect behavior of member vars(non string ones)-numeric + mem vars und others). (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 #28377 (debug_backtrace is intermittently passing args). (Dmitry) +- Fixed bug #27598 (list() array key assignment causes HUGE memory leak). + (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 #22836 (returning reference to uninitialized variable). (Dmitry) +- Fixed bug #29689 (default value of protected member overrides default value of private) + and other private variable problems in inherited classes (Stas) +- Fixed bug #29253 (array_diff with $GLOBALS argument fails). (Dmitry) +- Abstract private methods are no longer allowed (Stas) diff --git a/data/releases/5.0/5.0.5/release.json b/data/releases/5.0/5.0.5/release.json new file mode 100644 index 0000000000..5d53bab2c1 --- /dev/null +++ b/data/releases/5.0/5.0.5/release.json @@ -0,0 +1,11 @@ +{ + "version": "5.0.5", + "date": "05 Sep 2005", + "tags": [], + "source": [ + { + "filename": "php-5.0.5.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.1/5.1.0/announcement.html b/data/releases/5.1/5.1.0/announcement.html new file mode 100644 index 0000000000..a01ceb6bee --- /dev/null +++ b/data/releases/5.1/5.1.0/announcement.html @@ -0,0 +1,58 @@ +

PHP 5.1.0. Release Announcement

+

+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: +

+

+

    +
  • A complete rewrite of date handling code, with improved timezone support.
  • +
  • Significant performance improvements compared to PHP 5.0.X.
  • +
  • PDO extension is now enabled by default.
  • +
  • Over 30 new functions in various extensions and built-in functionality.
  • +
  • Bundled libraries, PCRE and SQLite upgraded to latest versions.
  • +
  • Over 400 various bug fixes.
  • +
  • PEAR upgraded to version 1.4.5
  • +
+

+ +

+ 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: +

    +
  • Fixed a Cross Site Scripting (XSS) + vulnerability in phpinfo() that could + lead f.e. to cookie exposure, when a phpinfo() script is accidently left + on a production server.
  • +
  • Fixed multiple safe_mode/open_basedir bypass vulnerabilities in ext/curl + and ext/gd that could lead to exposure of files normally not accessible due + to safe_mode or open_basedir restrictions.
  • +
  • Fixed a possible $GLOBALS overwrite problem in file upload handling, + extract() and import_request_variables() that could lead to unexpected + security holes in scripts assumed secure. (For more information, see here).
  • +
  • Fixed a problem when a request was terminated due to memory_limit + constraints during certain + parse_str() calls. In some cases + this can result in register_globals being turned on.
  • +
  • Fixed an issue with trailing slashes in allowed basedirs. They were ignored + by open_basedir checks, so that specified basedirs were handled as prefixes + and not as full directory names.
  • +
  • Fixed an issue with calling virtual() + on Apache 2. This allowed bypassing of certain configuration directives + like safe_mode or open_basedir.
  • +
  • Updated to the latest pcrelib to fix a possible integer overflow + vulnerability announced in CAN-2005-2491.
  • +
  • Possible header injection in mb_send_mail() function via the "To" address, the first parameter of the function.
  • +
+

+ +

+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 @@ +

PHP 5.1.1. Release Announcement

+

+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: +

    +
  • Native date class is withdrawn to prevent namespace conflict with PEAR's date package.
  • +
  • Fixed fatal parse error when the last line of the script is a PHP comment.
  • +
  • eval() hangs when the code being evaluated ends with a comment.
  • +
  • Usage of \{$var} in PHP 5.1.0 resulted in the output of {$var} instead of the $var variable's value enclosed in {}.
  • +
  • Fixed inconsistency in the format of PHP_AUTH_DIGEST between Apache 1 and 2 sapis.
  • +
  • Improved safe_mode/open_basedir checks inside the cURL extension.
  • +
+

+

+ 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 @@ +

PHP 5.1.2. Release Announcement

+

+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: +

    +
  • HTTP Response Splitting has been addressed in ext/session and in the + header() function. Header() can no longer be used to send multiple + response headers in a single call. +
  • +
  • Format string vulnerability in ext/mysqli.
  • +
  • Possible cross-site scripting problems in certain error conditions.
  • +
+

+ +

+The feature enhancements include the following notables: +

    +
  • Hash extension was added to core and is now enabled by default. This + extension provides support for most common hashing algorithms without + reliance on 3rd party libraries.
  • +
  • XMLWriter was added and enabled by default.
  • +
  • New OCI8 extension that includes numerous fixes.
  • +
  • PNG compression support added to the GD extension.
  • +
  • Added --enable-gcov configure option to enable C-level code coverage.
  • +
  • getNamespaces() and getDocNamespaces() methods added to SimpleXML extension.
  • +
+

+ +

+The release also includes over 85 bug fixes with a focus on: +

    +
  • Correction of the many regressions in the strtotime() function.
  • +
  • Fixes of several crashes, leaks and memory corruptions found in the + imap, pdo, gd, mysqli, mcrypt and soap extensions.
  • +
  • Corrected problems with the usage of SSI and virtual() in the Apache2 SAPI.
  • +
  • Build fixes for iconv and sybase_ct extensions.
  • +
  • Fixed the previously broken Sun(rise|set) functions.
  • +
  • SQLite libraries upgraded to 2.8.17 and 3.2.8 +
  • Win32 binaries now include libxml2-2.6.22 and libxslt-1.1.15.
  • +
+

+ +

+ 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 @@ +

PHP 5.1.3. Release Announcement

+

+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: +

    +
  • Disallow certain characters in session names.
  • +
  • Fixed a buffer overflow inside the wordwrap() function.
  • +
  • Prevent jumps to parent directory via the 2nd parameter of the tempnam() function.
  • +
  • Enforce safe_mode for the source parameter of the copy() function.
  • +
  • Fixed cross-site scripting inside the phpinfo() function.
  • +
  • Fixed offset/length parameter validation inside the substr_compare() function.
  • +
  • Fixed a heap corruption inside the session extension.
  • +
  • Fixed a bug that would allow variable to survive unset().
  • +
+

+ +

+The feature enhancements include the following notables: +

    +
  • The use of the var keyword to declare properties no longer raises a deprecation E_STRICT.
  • +
  • FastCGI interface was completely reimplemented.
  • +
  • Multitude of improvements to the SPL, SimpleXML, GD, CURL and Reflection extensions.
  • +
  • Support for many additional date formats added to the strtotime() function.
  • +
  • A number of performance improvements added to the engine and the core extensions.
  • +
  • Added imap_savebody() that allows message body to be written to a file.
  • +
  • Added lchown() and lchgrp() to change user/group ownership of symlinks.
  • +
  • Upgraded bundled PCRE library to version 6.6
  • +
+

+ +

+The release also includes over 120 bug fixes with a focus on: +

    +
  • Make auto_globals_jit work without too many INI changes.
  • +
  • Fixed tiger hash algorithm generating wrong results on big endian platforms.
  • +
  • Fixed a number of errors in the SOAP extension.
  • +
  • Fixed recursion handling in the serialize() functionality.
  • +
  • Make is_*() function account of open_basedir restrictions.
  • +
  • Fixed a number of crashes in the DOM and PDO extensions.
  • +
  • Addressed a number of regressions in the strtotime() function.
  • +
  • Make memory_limit work in Win32 systems.
  • +
  • Fixed a deadlock in the sqlite extension caused by the sqlite_fetch_column_types() function.
  • +
  • Fixed memory leaks in the realpath() cache.
  • +
+

+ +

+ 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 @@ +

PHP 5.1.4 Release Announcement

+

+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: +

    +
  • Fixed problems with file uploads and the $_POST array handling.
  • +
  • Resolved multiple problems with the FastCGI sapi.
  • +
  • Fixed possible crash in highlight_string().
  • +
  • Fixed cloning of DOM Documents and Noded.
  • +
  • Several fixes to PDO ODBC driver.
  • +
+

+ +

+ 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 @@ +

PHP 5.1.5 Release Announcement

+

+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: +

    +
  • Added missing safe_mode/open_basedir checks inside the error_log(), file_exists(), imap_open() and imap_reopen() functions.
  • +
  • Fixed overflows inside str_repeat() and wordwrap() functions on 64bit systems.
  • +
  • Fixed possible open_basedir/safe_mode bypass in cURL extension and with realpath cache.
  • +
  • Fixed overflow in GD extension on invalid GIF images.
  • +
  • Fixed a buffer overflow inside sscanf() function.
  • +
  • Fixed an out of bounds read inside stripos() function.
  • +
  • Fixed memory_limit restriction on 64 bit system.
  • +
+

+ +

+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 ). + (jdolecek) +- Fixed bug #37346 (invalid colormap format) (Pierre) +- Fixed bug #37360 (invalid gif size) (Pierre) +- Fixed bug #37306 (max_execution_time = max_input_time). (Dmitry) +- Fixed Bug #37278 (SOAP not respecting uri in __soapCall). (Dmitry) +- Fixed bug #37265 (Added missing safe_mode & open_basedir checks to + imap_body()). (Ilia) +- Fixed bug #37256 (php-fastcgi dosen't handle connection abort). (Dmitry) diff --git a/data/releases/5.1/5.1.5/release.json b/data/releases/5.1/5.1.5/release.json new file mode 100644 index 0000000000..3b50b76515 --- /dev/null +++ b/data/releases/5.1/5.1.5/release.json @@ -0,0 +1,15 @@ +{ + "version": "5.1.5", + "date": "17 Aug 2006", + "tags": [], + "source": [ + { + "filename": "php-5.1.5.tar.bz2", + "name": "Source (tar.bz2)" + }, + { + "filename": "php-5.1.5.tar.gz", + "name": "Source (tar.gz)" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.1/5.1.6/announcement.html b/data/releases/5.1/5.1.6/announcement.html new file mode 100644 index 0000000000..b83b6887ec --- /dev/null +++ b/data/releases/5.1/5.1.6/announcement.html @@ -0,0 +1,10 @@ +

PHP 5.1.6 Release Announcement

+

+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 @@ +

PHP 5.2.0 Release Announcement

+

+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: +

+
    +
  • New memory manager for the Zend Engine with improved performance and a more accurate memory usage tracking.
  • +
  • Input filtering extension was added and enabled by default.
  • +
  • JSON extension was added and enabled by default.
  • +
  • ZIP extension for creating and editing zip files was introduced.
  • +
  • Hooks for tracking file upload progress were introduced.
  • +
  • Introduced E_RECOVERABLE_ERROR error mode.
  • +
  • Introduced DateTime and DateTimeZone objects with methods to manipulate date/time information.
  • +
  • Upgraded bundled SQLite, PCRE libraries.
  • +
  • Upgraded OpenSSL, MySQL and PostgreSQL client libraries for Windows installations.
  • +
  • Many performance improvements.
  • +
  • Over 200 bug fixes.
  • +
+

+Security Enhancements and Fixes in PHP 5.2.0: +

+
    +
  • Made PostgreSQL escaping functions in PostgreSQL and PDO extension keep track of character set encoding whenever possible.
  • +
  • Added allow_url_include, set to Off by default to disallow use of URLs for include and require.
  • +
  • Disable realpath cache when open_basedir and safe_mode are being used.
  • +
  • Improved safe_mode enforcement for error_log() function.
  • +
  • Fixed a possible buffer overflow in the underlying code responsible for htmlspecialchars() and htmlentities() functions.
  • +
  • Added missing safe_mode and open_basedir checks for the cURL extension.
  • +
  • Fixed overflow in str_repeat() & wordwrap() functions on 64bit machines.
  • +
  • Fixed handling of long paths inside the tempnam() function.
  • +
  • Fixed safe_mode/open_basedir checks for session.save_path, allowing them to account for extra parameters.
  • +
  • Fixed ini setting overload in the ini_restore() function.
  • +
+ +

+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 ). + (jdolecek) +- Fixed bug #37306 (max_execution_time = max_input_time). (Dmitry) +- Fixed bug #37278 (SOAP not respecting uri in __soapCall). (Dmitry) +- Fixed bug #37265 (Added missing safe_mode & open_basedir checks to + imap_body()). (Ilia) +- Fixed bug #37262 (var_export() does not escape \0 character). (Ilia) +- Fixed bug #37256 (php-fastcgi doesn't handle connection abort). (Dmitry) +- Fixed bug #37244 (Added strict flag to base64_decode() that enforces + RFC3548 compliance). (Ilia) +- Fixed bug #37144 (PHP crashes trying to assign into property of dead object). + (Dmitry) +- Fixed bug #36949 (invalid internal mysqli objects dtor). (Mike) +- Implement #36732 (req/x509 extensions support for openssl_csr_new and + openssl_csr_sign) (ben at psc dot edu, Pierre) +- Fixed bug #36759 (Objects destructors are invoked in wrong order when script + is finished). (Dmitry) +- Fixed bug #36681 (pdo_pgsql driver incorrectly ignored some errors). + (Wez, Ilia) +- Fixed bug #36630 (umask not reset at the end of the request). (Ilia) +- Fixed bug #36515 (Unlinking buckets from non-existent brigades). (Sara) +- Fixed bug #35973 (Error ORA-24806 occurs when trying to fetch a NCLOB + field). (Tony) +- Fixed bug #35886 (file_get_contents() fails with some combinations of + offset & maxlen). (Nuno) +- Fixed bug #35512 (Lack of read permission on main script results in + E_WARNING rather then E_ERROR). (Ilia) +- Fixed bug #34180 (--with-curlwrappers causes PHP to disregard some HTTP + stream context options). (Mike) +- Fixed bug #34066 (recursive array_walk causes segfault). (Tony) +- Fixed bug #34065 (throw in foreach causes memory leaks). (Dmitry) +- Fixed bug #34005 (oci_password_change() fails). + (pholdaway at technocom-wireless dot com, Tony) +- Fixed bug #33895 (Missing math constants). (Hannes) +- Fixed bug #33770 (https:// or ftps:// do not work when --with-curlwrappers + is used and ssl certificate is not verifiable). (Ilia) +- Fixed bug #29538 (number_format and problem with 0). (Matt Wilmas) +- Implement #28382 (openssl_x509_parse() extensions support) (Pierre) +- Fixed PECL bug #9061 (oci8 might reuse wrong persistent connection). (Tony) +- Fixed PECL bug #8816 (issue in php_oci_statement_fetch with more than one + piecewise column) (jeff at badtz-maru dot com, Tony) +- Fixed PECL bug #8112 (OCI8 persistent connections misbehave when Apache + process times out). (Tony) +- Fixed PECL bug #7755 (error selecting DOUBLE fields with PDO_ODBC). + ("slaws", Wez) + diff --git a/data/releases/5.2/5.2.0/release.json b/data/releases/5.2/5.2.0/release.json new file mode 100644 index 0000000000..b1313f3d04 --- /dev/null +++ b/data/releases/5.2/5.2.0/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.0", + "date": "02 Nov 2006", + "tags": [], + "source": [ + { + "filename": "php-5.2.0.tar.bz2", + "name": "Source (tar.bz2)", + "md5": "e6029fafcee029edcfa2ceed7a005333" + }, + { + "filename": "php-5.2.0.tar.gz", + "name": "Source (tar.gz)", + "md5": "52d7e8b3d8d7573e75c97340f131f988" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.1/announcement.html b/data/releases/5.2/5.2.1/announcement.html new file mode 100644 index 0000000000..515f29ce48 --- /dev/null +++ b/data/releases/5.2/5.2.1/announcement.html @@ -0,0 +1,61 @@ +

PHP 5.2.1 Release Announcement

+

+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: +

+
    +
  • Fixed possible safe_mode & open_basedir bypasses inside the session extension.
  • +
  • Prevent search engines from indexing the phpinfo() page.
  • +
  • Fixed a number of input processing bugs inside the filter extension.
  • +
  • Fixed unserialize() abuse on 64 bit systems with certain input strings.
  • +
  • Fixed possible overflows and stack corruptions in the session extension.
  • +
  • Fixed an underflow inside the internal sapi_header_op() function.
  • +
  • Fixed allocation bugs caused by attempts to allocate negative values in some code paths.
  • +
  • Fixed possible stack overflows inside zip, imap & sqlite extensions.
  • +
  • Fixed several possible buffer overflows inside the stream filters.
  • +
  • Fixed non-validated resource destruction inside the shmop extension.
  • +
  • Fixed a possible overflow in the str_replace() function.
  • +
  • Fixed possible clobbering of super-globals in several code paths.
  • +
  • Fixed a possible information disclosure inside the wddx extension.
  • +
  • Fixed a possible string format vulnerability in *print() functions on 64 bit systems.
  • +
  • Fixed a possible buffer overflow inside mail() and ibase_{delete,add,modify}_user() functions.
  • +
  • Fixed a string format vulnerability inside the odbc_result_all() function.
  • +
  • Memory limit is now enabled by default.
  • +
  • Added internal heap protection.
  • +
  • Extended filter extension support for $_SERVER in CGI and apache2 SAPIs.
  • +
+ +

+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: +

+
    +
  • Several performance improvements in the engine, streams API and some Windows specific optimizations.
  • +
  • PDO_MySQL now uses buffered queries by default and emulates prepared statements to bypass limitations of MySQL's prepared statement API.
  • +
  • Many improvements and enhancements to the filter and zip extensions.
  • +
  • Memory limit is now always enabled, this includes Windows builds, with a default limit of 128 megabytes.
  • +
  • Added several performance optimizations using faster Win32 APIs (this change means that PHP no longer supports Windows 98).
  • +
  • FastCGI speed optimized build of PHP for Windows made available for downloading.
  • +
  • Over 180 bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.10 Release Announcement

+

+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: +

+
    +
  • Fixed bug #48378 (exif_read_data() segfaults on certain corrupted .jpeg files). (Pierre)
  • +
+ +

+Key enhancements in PHP 5.2.10 include: +

+
    +
  • Added "ignore_errors" option to http fopen wrapper. (David Zulke, Sara)
  • +
  • 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)
  • +
  • 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 bug #47940 (memory leaks in imap_body). (Pierre, Jake Levitt)
  • +
  • Fixed bug #47903 ("@" operator does not work with string offsets). (Felipe)
  • +
  • Fixed bug #47644 (Valid integers are truncated with json_decode()). (Scott)
  • +
  • Fixed bug #47564 (unpacking unsigned long 32bit big endian returns wrong result). (Ilia)
  • +
  • Fixed bug #47365 (ip2long() may allow some invalid values on certain 64bit systems).
  • +
  • Over 100 bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.11 Release Announcement

+

+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: +

+
    +
  • Fixed certificate validation inside php_openssl_apply_verification_policy. (Ryan Sleevi, Ilia)
  • +
  • Fixed sanity check for the color index in imagecolortransparent(). (Pierre)
  • +
  • Added missing sanity checks around exif processing. (Ilia)
  • +
  • Fixed bug #44683 (popen crashes when an invalid mode is passed). (Pierre)
  • +
+ +

+Key enhancements in PHP 5.2.11 include: +

+
    +
  • Fixed regression in cURL extension that prevented flush of data to output defined as a file handle.
  • +
  • A number of fixes for the FILTER_VALIDATE_EMAIL validation rule
  • +
  • Fixed bug #49361 (wordwrap() wraps incorrectly on end of line boundaries).
  • +
  • Fixed bug #48696 (ldap_read() segfaults with invalid parameters)
  • +
  • Fixed bug #48645 (mb_convert_encoding() doesn't understand hexadecimal html-entities).
  • +
  • Fixed bug #48619 (imap_search ALL segfaults).
  • +
  • Fixed bug #48400 (imap crashes when closing stream opened with OP_PROTOTYPE flag).
  • +
  • Fixed bug #47351 (Memory leak in DateTime).
  • +
  • Over 60 bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.12 Release Announcement

+

+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: +

+
    +
  • Fixed a safe_mode bypass in tempnam() identified by Grzegorz Stachowiak. (CVE-2009-3557, Rasmus)
  • +
  • Fixed a open_basedir bypass in posix_mkfifo() identified by Grzegorz Stachowiak. (CVE-2009-3558, Rasmus)
  • +
  • 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, identified by Bogdan Calin. (CVE-2009-4017, Ilia)
  • +
  • Added protection for $_SESSION from interrupt corruption and improved "session.save_path" check, identified by Stefan Esser. (CVE-2009-4143, Stas)
  • +
  • Fixed bug #49785 (insufficient input string validation of htmlspecialchars()). (CVE-2009-4142, Moriyoshi, hello at iwamot dot com)
  • +
+ +

+Key enhancements in PHP 5.2.12 include: +

+
    +
  • 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 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 #50207 (segmentation fault when concatenating very large strings on 64bit linux). (Ilia)
  • +
  • Fixed bug #50162 (Memory leak when fetching timestamp column from Oracle database). (Felipe)
  • +
  • Fixed bug #50006 (Segfault caused by uksort()). (Felipe)
  • +
  • Fixed bug #50005 (Throwing through Reflection modified Exception object makes segmentation fault). (Felipe)
  • +
  • Fixed bug #49174 (crash when extending PDOStatement and trying to set queryString property). (Felipe)
  • +
  • Fixed bug #49098 (mysqli segfault on error). (Rasmus)
  • + +
  • Over 50 other bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.13 Release Announcement

+

+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: +

+
    +
  • 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 the session extension identified by Grzegorz Stachowiak. (Ilia)
  • +
  • Improved LCG entropy. (Rasmus, Samy Kamkar)
  • +
+ +

+Key enhancements in PHP 5.2.13 include: +

+
    +
  • Fixed bug #50940 Custom content-length set incorrectly in Apache sapis. (Brian France, Rasmus)
  • +
  • Fixed bug #50847 (strip_tags() removes all tags greater then 1023 bytes long). (Ilia)
  • +
  • Fixed bug #50661 (DOMDocument::loadXML does not allow UTF-16). (Rob)
  • +
  • Fixed bug #50632 (filter_input() does not return default value if the variable does not exist). (Ilia)
  • +
  • Fixed bug #50540 (Crash while running ldap_next_reference test cases). (Sriram)
  • +
  • Fixed bug #49851 (http wrapper breaks on 1024 char long headers). (Ilia)
  • + +
  • Over 30 other bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.14 Release Announcement

+

+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: +

+
    + +
  • Rewrote var_export() to use smart_str rather than output buffering, prevents data disclosure if a fatal error occurs.
  • +
  • Fixed a possible interruption array leak in strrchr().(CVE-2010-2484)
  • +
  • Fixed a possible interruption array leak in strchr(), strstr(), substr(), chunk_split(), strtok(), addcslashes(), str_repeat(), trim().
  • +
  • Fixed a possible memory corruption in substr_replace().
  • +
  • Fixed SplObjectStorage unserialization problems (CVE-2010-2225).
  • +
  • Fixed a possible stack exaustion inside fnmatch().
  • +
  • Fixed a NULL pointer dereference when processing invalid XML-RPC requests (Fixes CVE-2010-0397, bug #51288).
  • +
  • Fixed handling of session variable serialization on certain prefix characters.
  • +
  • Fixed a possible arbitrary memory access inside sqlite extension. Reported by Mateusz Kocielski.
  • +
+ +

+Key enhancements in PHP 5.2.14 include: +

+
    + +
  • Upgraded bundled PCRE to version 8.02.
  • +
  • Updated timezone database to version 2010.5.
  • +
  • Fixed bug #52238 (Crash when an Exception occured in iterator_to_array).
  • +
  • Fixed bug #52237 (Crash when passing the reference of the property of a non-object).
  • +
  • Fixed bug #52041 (Memory leak when writing on uninitialized variable returned from function).
  • +
  • Fixed bug #51822 (Segfault with strange __destruct() for static class variables).
  • +
  • Fixed bug #51552 (debug_backtrace() causes segmentation fault and/or memory issues).
  • +
  • Fixed bug #49267 (Linking fails for iconv on MacOS: "Undefined symbols: _libiconv").
  • +
+ +

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 +.

\ No newline at end of file diff --git a/data/releases/5.2/5.2.14/changes.txt b/data/releases/5.2/5.2.14/changes.txt new file mode 100644 index 0000000000..60f5fa5163 --- /dev/null +++ b/data/releases/5.2/5.2.14/changes.txt @@ -0,0 +1,126 @@ +- Reverted bug fix #49521 (PDO fetchObject sets values before calling + constructor). (Felipe) + +- Updated timezone database to version 2010.5. (Derick) +- Upgraded bundled PCRE to version 8.02. (Ilia) + +- Rewrote var_export() to use smart_str rather than output buffering, prevents + data disclosure if a fatal error occurs (CVE-2010-2531). (Scott) +- Fixed a possible interruption array leak in strrchr(). Reported by + Péter Veres. (CVE-2010-2484) (Felipe) +- Fixed a possible interruption array leak in strchr(), strstr(), substr(), + chunk_split(), strtok(), addcslashes(), str_repeat(), trim(). (Felipe) +- Fixed a possible memory corruption in substr_replace() (Dmitry) +- Fixed SplObjectStorage unserialization problems (CVE-2010-2225). (Stas) +- Fixed a possible stack exaustion inside fnmatch(). Reporeted by Stefan + Esser (Ilia) +- Reset error state in PDO::beginTransaction() reset error state. (Ilia) +- Fixed a NULL pointer dereference when processing invalid XML-RPC + requests (Fixes CVE-2010-0397, bug #51288). (Raphael Geissert) +- Fixed handling of session variable serialization on certain prefix + characters. Reported by Stefan Esser (Ilia) +- Fixed a possible arbitrary memory access inside sqlite extension. Reported + by Mateusz Kocielski. (Ilia) +- 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 bug #52944 (Invalid write on second and subsequent reads with an + inflate filter fed invalid data). (Gustavo) +- Fixed bug #52317 (Segmentation fault when using mail() on a rhel 4.x (only 64 + bit)). (Adam) +- Fixed bug #52238 (Crash when an Exception occured in iterator_to_array). + (Johannes) +- Fixed bug #52237 (Crash when passing the reference of the property of a + non-object). (Dmitry) +- Fixed bug #52163 (SplFileObject::fgetss() fails due to parameter that can't + be set). (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 #52061 (memory_limit above 2G). (Felipe) +- Fixed bug #52041 (Memory leak when writing on uninitialized variable returned + from function). (Dmitry) +- 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, 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 #51822 (Segfault with strange __destruct() for static class + variables). (Dmitry) +- 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 #51629 (CURLOPT_FOLLOWLOCATION error message is misleading). + (Pierre) +- Fixed bug #51617 (PDO PGSQL still broken against PostGreSQL < 7.4). + (Felipe, wdierkes at 5dollarwhitebox dot org) +- 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 #51604 (newline in end of header is shown in start of message). + (Daniel Egeberg) +- 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 #51532 (Wrong prototype for SplFileObject::fscanf()). (Etienne) +- Fixed bug #51445 (var_dump() invalid/slow *RECURSION* detection). (Felipe) +- Fixed bug #51393 (DateTime::createFromFormat() fails if format string contains + timezone). (Adam) +- Fixed bug #51374 (Wrongly initialized object properties). (Etienne) +- Fixed bug #51338 (URL-Rewriter is still enabled if use_only_cookies is + on). (Ilia, j dot jeising at gmail dot com) +- 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 #51263 (imagettftext and rotated text uses wrong baseline) + (cschneid at cschneid dot com, Takeshi Abe) +- 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 #51192 (FILTER_VALIDATE_URL will invalidate a hostname that + includes '-'). (Adam, solar at azrael dot ws). +- 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 #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 #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 #51023 (filter doesn't detect int overflows with GCC 4.4). + (Raphael Geissert) +- Fixed bug #50762 (in WSDL mode Soap Header handler function only being called + if defined in WSDL). (mephius at gmail dot com) +- Fixed bug #50698 (SoapClient should handle wsdls with some incompatiable + endpoints). (Justin Dearing) +- Fixed bug #50383 (Exceptions thrown in __call() / __callStatic() do not + include file and line in trace). (Felipe) +- Fixed bug #49730 (Firebird - new PDO() returns NULL). (Felipe) +- Fixed bug #49723 (LimitIterator with empty SeekableIterator). (Etienne) +- Fixed bug #49687 (utf8_decode vulnerabilities and deficiencies in the number + of reported malformed sequences). (CVE-2010-3870) (Gustavo) +- Fixed bug #49576 (FILTER_VALIDATE_EMAIL filter needs updating) (Rasmus) +- Fixed bug #49320 (PDO returns null when SQLite connection fails). (Felipe) +- Fixed bug #49267 (Linking fails for iconv). (Moriyosh) +- Fixed bug #48601 (xpath() returns FALSE for legitimate query). (Rob) +- Fixed bug #48289 (iconv_mime_encode() quoted-printable scheme is broken). + (Adam, patch from hiroaki dot kawai at gmail dot com). +- Fixed bug #43314 (iconv_mime_encode(), broken Q scheme). (Rasmus) +- Fixed bug #33210 (getimagesize() fails to detect width/height on certain + JPEGs). (Ilia) +- Fixed bug #23229 (syslog() truncates messages). (Adam) diff --git a/data/releases/5.2/5.2.14/release.json b/data/releases/5.2/5.2.14/release.json new file mode 100644 index 0000000000..15a1c96a94 --- /dev/null +++ b/data/releases/5.2/5.2.14/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.14", + "date": "22 July 2010", + "tags": [], + "source": [ + { + "filename": "php-5.2.14.tar.bz2", + "name": "PHP 5.2.14 (tar.bz2)", + "md5": "21ceeeb232813c10283a5ca1b4c87b48" + }, + { + "filename": "php-5.2.14.tar.gz", + "name": "PHP 5.2.14 (tar.gz)", + "md5": "5adf1a537895c2ec933fddd48e78d8a2" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.15/announcement.html b/data/releases/5.2/5.2.15/announcement.html new file mode 100644 index 0000000000..cfa60194ae --- /dev/null +++ b/data/releases/5.2/5.2.15/announcement.html @@ -0,0 +1,38 @@ +

PHP 5.2.15 Release Announcement

+

+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: +

+
    +
  • Fixed extract() to do not overwrite $GLOBALS and $this when using EXTR_OVERWRITE.
  • +
  • Fixed crash in zip extract method (possible CWE-170).
  • +
  • Fixed a possible double free in imap extension.
  • +
  • Fixed possible flaw in open_basedir (CVE-2010-3436).
  • +
  • Fixed NULL pointer dereference in ZipArchive::getArchiveComment. (CVE-2010-3709).
  • +
  • Fixed bug #52929 (Segfault in filter_var with FILTER_VALIDATE_EMAIL with large amount of data).
  • +
+ +

+Key enhancements in PHP 5.2.15 include: +

+
    +
  • Fixed bug #47643 (array_diff() takes over 3000 times longer than php 5.2.4).
  • +
  • Fixed bug #44248 (RFC2616 transgression while HTTPS request through proxy with SoapClient object).
  • +
+ +

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 @@ +

PHP 5.2.16 Release Announcement

+

+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 @@ +

PHP 5.2.17 Release Announcement

+

+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: +

+
    +
  • Fixed bug #53632 (PHP hangs on numeric value 2.2250738585072011e-308). (CVE-2010-4645)
  • +
\ No newline at end of file diff --git a/data/releases/5.2/5.2.17/changes.txt b/data/releases/5.2/5.2.17/changes.txt new file mode 100644 index 0000000000..bd04cacd06 --- /dev/null +++ b/data/releases/5.2/5.2.17/changes.txt @@ -0,0 +1,2 @@ +- Fixed Bug #53632 (infinite loop with x87 fpu). (CVE-2010-4645) (Scott, + Rasmus) diff --git a/data/releases/5.2/5.2.17/release.json b/data/releases/5.2/5.2.17/release.json new file mode 100644 index 0000000000..7a12f46a2a --- /dev/null +++ b/data/releases/5.2/5.2.17/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.17", + "date": "06 January 2011", + "tags": [], + "source": [ + { + "filename": "php-5.2.17.tar.bz2", + "name": "PHP 5.2.17 (tar.bz2)", + "md5": "b27947f3045220faf16e4d9158cbfe13" + }, + { + "filename": "php-5.2.17.tar.gz", + "name": "PHP 5.2.17 (tar.gz)", + "md5": "04d321d5aeb9d3a051233dbd24220ef1" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.2/announcement.html b/data/releases/5.2/5.2.2/announcement.html new file mode 100644 index 0000000000..65863ac0ee --- /dev/null +++ b/data/releases/5.2/5.2.2/announcement.html @@ -0,0 +1,53 @@ +

PHP 5.2.2 Release Announcement

+

+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: +

+
    +
  • Fixed CVE-2007-1001, GD wbmp used with invalid image size (by Ivan Fratric)
  • +
  • Fixed a header injection via Subject and To parameters to the mail() function (MOPB-34 by Stefan Esser)
  • +
  • Fixed asciiz byte truncation inside mail() (MOPB-33 by Stefan Esser)
  • +
  • Fixed wrong length calculation in unserialize S type (MOPB-29 by Stefan Esser)
  • +
  • Fixed a bug in mb_parse_str() that can be used to activate register_globals (MOPB-26 by Stefan Esser)
  • +
  • Fixed unallocated memory access/double free in in array_user_key_compare() (MOPB-24 by Stefan Esser)
  • +
  • Fixed a double free inside session_regenerate_id() (MOPB-22 by Stefan Esser)
  • +
  • Added missing open_basedir & safe_mode checks to zip:// and bzip:// wrappers. (MOPB-20, MOPB-21 by Stefan Esser).
  • +
  • Fixed substr_compare and substr_count information leak (MOPB-14 by Stefan Esser) (Stas, Ilia)
  • +
  • Limit nesting level of input variables with max_input_nesting_level as fix for (MOPB-03 by Stefan Esser)
  • +
  • Fixed CRLF injection inside ftp_putcmd(). (by loveshell[at]Bug.Center.Team)
  • +
  • Fixed a possible super-global overwrite inside import_request_variables(). (by Stefano Di Paola, Steffan Esser)
  • +
  • Fixed a remotely trigger-able buffer overflow inside make_http_soap_request(). (by Ilia Alshanetsky)
  • +
  • Fixed a buffer overflow inside user_filter_factory_create(). (by Ilia Alshanetsky)
  • +
  • Fixed a remotely trigger-able buffer overflow inside bundled libxmlrpc library. (by Stanislav Malyshev)
  • +
+ +

+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: +

+
    +
  • Further improvements to the Memory Manager with the goal of improving realloc() performance.
  • +
  • Bundled GD, SQLite and PCRE libraries were upgraded.
  • +
  • Additional methods were added to SPL's DirectoryIterator and SplFileInfo classes.
  • +
  • Over 120 bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.3 Release Announcement

+

+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: +

+
    +
  • Fixed an integer overflow inside chunk_split() (by Gerhard Wagner, CVE-2007-2872)
  • +
  • Fixed possible infinite loop in imagecreatefrompng. (by Xavier Roche, CVE-2007-2756)
  • +
  • Fixed ext/filter Email Validation Vulnerability (MOPB-45 by Stefan Esser, CVE-2007-1900)
  • +
  • Fixed bug #41492 (open_basedir/safe_mode bypass inside realpath()) (by bugs dot php dot net at chsc dot dk)
  • +
  • Improved fix for CVE-2007-1887 to work with non-bundled sqlite2 lib.
  • +
  • Added mysql_set_charset() to allow runtime altering of connection encoding.
  • +
+ +

+The key improvements of PHP 5.2.3 include: +

+
    +
  • Improved compilation of heredocs and interpolated strings.
  • +
  • Optimized out a couple of per-request syscalls.
  • +
  • Optimized digest generation in md5() and sha1() functions.
  • + +
  • Fixed bug #41236 (Regression in timeout handling of non-blocking SSL connections during reads and writes)
  • +
  • Fixed bug #39542 (Behavior of require/include different to < 5.2.0)
  • +
  • Fixed bug #41293 (Fixed creation of HTTP_RAW_POST_DATA when there is no default post handler)
  • +
  • Fixed bug #41347 (checkdnsrr() segfaults on empty hostname)
  • +
  • Fixed bug #41353 (crash in openssl_pkcs12_read() on invalid input)
  • +
  • Fixed bug #41403 (json_decode cannot decode floats if localeconv decimal_point is not '.')
  • +
  • Fixed bug #41421 (Uncaught exception from a stream wrapper segfaults)
  • +
  • Fixed bug #41504 (json_decode() incorrectly decodes JSON arrays with empty string keys).
  • + +
  • Over 40 bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.4 Release Announcement

+

+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: +

+
    +
  • Fixed a floating point exception inside wordwrap() (Reported by Mattias Bengtsson)
  • +
  • Fixed several integer overflows inside the GD extension (Reported by Mattias Bengtsson)
  • +
  • Fixed size calculation in chunk_split() (Reported by Gerhard Wagner)
  • +
  • Fixed integer overflow in str[c]spn(). (Reported by Mattias Bengtsson)
  • +
  • Fixed money_format() not to accept multiple %i or %n tokens. (Reported by Stanislav Malyshev)
  • +
  • Fixed zend_alter_ini_entry() memory_limit interruption vulnerability. (Reported by Stefan Esser)
  • +
  • Fixed INFILE LOCAL option handling with MySQL extensions not to be allowed when open_basedir or safe_mode is active. (Reported by Mattias Bengtsson)
  • +
  • Fixed session.save_path and error_log values to be checked against open_basedir and safe_mode (CVE-2007-3378) (Reported by Maksymilian Arciemowicz)
  • +
  • Fixed a possible invalid read in glob() win32 implementation (CVE-2007-3806) (Reported by shinnai)
  • +
  • Fixed a possible buffer overflow in php_openssl_make_REQ (Reported by zatanzlatan at hotbrev dot com)
  • +
  • Fixed an open_basedir bypass inside glob() function (Reported by dr at peytz dot dk)
  • +
  • Fixed a possible open_basedir bypass inside session extension when the session file is a symlink (Reported by c dot i dot morris at durham dot ac dot uk)
  • +
  • Improved fix for MOPB-03-2007.
  • +
  • Corrected fix for CVE-2007-2872.
  • +
+ +

+Key enhancements in PHP 5.2.4 include: +

+
    +
  • Upgraded PCRE to version 7.2
  • +
  • Added persistent connection status checker to pdo_pgsql.
  • +
  • Fixed oci8 and PDO_OCI extensions to allow configuring with Oracle 11g client libraries.
  • +
  • Fixed bug #41831 (pdo_sqlite prepared statements convert resources to strings).
  • +
  • Fixed bug #41770 (SSL: fatal protocol error due to buffer issues)
  • +
  • Fixed bug #41713 (Persistent memory consumption on win32 since 5.2)
  • + +
  • Over 120 bug fixes.
  • +
+ +

+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 ) (Pierre) +- Fixed bug #41628 (PHP settings leak between Virtual Hosts in Apache 1.3). + (Scott, manuel at mausz dot at) +- Fixed bug #41608 (segfault on a weird code with objects and switch()). + (Tony) +- Fixed bug #41600 (url rewriter tags doesn't work with namespaced tags). + (Ilia) +- Fixed bug #41596 (Fixed a crash inside pdo_pgsql on some non-well-formed + SQL queries). (Ilia) +- Fixed bug #41594 (OCI8 statement cache is flushed too frequently). (Tony) +- Fixed bug #41582 (SimpleXML crashes when accessing newly created element). + (Tony) +- Fixed bug #41576 (configure failure when using --without-apxs or some other + SAPIs disabling options). (Jani) +- Fixed bug #41567 (json_encode() double conversion is inconsistent with PHP). + (Lucas, Ilia) +- Fixed bug #41566 (SOAP Server not properly generating href attributes). + (Dmitry) +- Fixed bug #41555 (configure failure: regression caused by fix for #41265). + (Jani) +- Fixed bug #41527 (WDDX deserialize numeric string array key). + (Matt, Ilia) +- Fixed bug #41523 (strtotime('0000-00-00 00:00:00') is parsed as 1999-11-30). + (Derick) +- Fixed bug #41518 (file_exists() warns of open_basedir restriction on + non-existent file). (Tony) +- Fixed bug #41445 (parse_ini_file() has a problem with certain types of + integer as sections). (Tony) +- Fixed bug #41433 (DBA: configure fails to include correct db.h for db4). + (Jani) +- Fixed bug #41372 (Internal pointer of source array resets during array + copying). (Dmitry) +- Fixed bug #41350 (my_thread_global_end() error during request shutdown on + Windows). (Scott, Andrey) +- Fixed bug #41278 (get_loaded_extensions() should list Zend extensions). + (Johannes) +- Fixed bug #41127 (Memory leak in ldap_{first|next}_attribute functions). + (Jani) +- Fixed bug #40757 (get_object_vars get nothing in child class). (Dmitry) +- Fixed bug #40705 (Iterating within function moves original array pointer). + (Dmitry) +- Fixed bug #40509 (key() function changed behaviour if global array is used + within function). (Dmitry) +- Fixed bug #40419 (Trailing slash in CGI request does not work). (Dmitry) +- Fixed bug #39330 (apache2handler does not call shutdown actions before + apache child die). (isk at ecommerce dot com, Gopal, Tony) +- Fixed bug #39291 (ldap_sasl_bind() misses the sasl_authc_id parameter). + (diafour at gmail dot com, Jani) +- Fixed bug #37715 (array pointers resetting on copy). (Dmitry) +- Fixed bug #37273 (Symlinks and mod_files session handler allow open_basedir + bypass). (Ilia) +- Fixed bug #36492 (Userfilters can leak buckets). (Sara) +- Fixed bugs #36796, #36918, #41371 (stream_set_blocking() does not work). + (Jani) +- Fixed bug #35981 (pdo-pgsql should not use pkg-config when not present). + (Jani) +- Fixed bug #31892 (PHP_SELF incorrect without cgi.fix_pathinfo, but turning on + screws up PATH_INFO). (Dmitry) +- Fixed bug #21197 (socket_read() outputs error with PHP_NORMAL_READ). + (Nuno, Jani) diff --git a/data/releases/5.2/5.2.4/release.json b/data/releases/5.2/5.2.4/release.json new file mode 100644 index 0000000000..4d79daea54 --- /dev/null +++ b/data/releases/5.2/5.2.4/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.2.4", + "date": "30 August 2007", + "tags": [], + "source": [ + { + "filename": "php-5.2.4.tar.bz2", + "name": "Source (tar.bz2)", + "md5": "55c97a671fdabf462cc7a82971a656d2" + }, + { + "filename": "php-5.2.4.tar.gz", + "name": "Source (tar.gz)", + "md5": "0826e231c3148b29fd039d7a8c893ad3" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.2/5.2.5/announcement.html b/data/releases/5.2/5.2.5/announcement.html new file mode 100644 index 0000000000..b953661049 --- /dev/null +++ b/data/releases/5.2/5.2.5/announcement.html @@ -0,0 +1,44 @@ +

PHP 5.2.5 Release Announcement

+

+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: +

+
    +
  • Fixed dl() to only accept filenames. Reported by Laurent Gaffie.
  • +
  • Fixed dl() to limit argument size to MAXPATHLEN (CVE-2007-4887). Reported by Laurent Gaffie.
  • +
  • Fixed htmlentities/htmlspecialchars not to accept partial multibyte sequences. Reported by Rasmus Lerdorf
  • +
  • Fixed possible triggering of buffer overflows inside glibc implementations of the fnmatch(), setlocale() and glob() functions. Reported by Laurent Gaffie.
  • +
  • Fixed "mail.force_extra_parameters" php.ini directive not to be modifiable in .htaccess due to the security implications. Reported by SecurityReason.
  • +
  • Fixed bug #42869 (automatic session id insertion adds sessions id to non-local forms).
  • +
  • Fixed bug #41561 (Values set with php_admin_* in httpd.conf can be overwritten with ini_set()).
  • +
+ +

+Key enhancements in PHP 5.2.5 include: +

+
    +
  • Upgraded PCRE to version 7.3
  • +
  • Updated timezone database to version 2007.9
  • +
  • Added ability to control memory consumption between request using ZEND_MM_COMPACT environment variable.
  • +
  • Improved speed of array_intersect_key(), array_intersect_assoc(), array_uintersect_assoc(), array_diff_key(), array_diff_assoc() and array_udiff_assoc() functions
  • +
  • Fixed bug #43139 (PDO ignores ATTR_DEFAULT_FETCH_MODE in some cases with fetchAll())
  • +
  • Fixed bug #42785 (json_encode() formats doubles according to locale rather then following standard syntax)
  • +
  • Fixed bug #42549 (ext/mysql failed to compile with libmysql 3.23)
  • +
  • Over 60 bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.6 Release Announcement

+

+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: +

+
    +
  • Fixed possible stack buffer overflow in the FastCGI SAPI identified by Andrei Nigmatulin.
  • +
  • Fixed integer overflow in printf() identified by Maksymilian Aciemowicz.
  • +
  • Fixed security issue detailed in CVE-2008-0599 identified by Ryan Permeh.
  • +
  • Fixed a safe_mode bypass in cURL identified by Maksymilian Arciemowicz.
  • +
  • Properly address incomplete multibyte chars inside escapeshellcmd() identified by Stefan Esser.
  • +
  • Upgraded bundled PCRE to version 7.6
  • +
+ +

+Key enhancements in PHP 5.2.6 include: +

+
    +
  • Fixed two possible crashes inside the posix extension.
  • +
  • Fixed bug #44069 (Huge memory usage with concatenation using . instead of .=)
  • +
  • Fixed bug #44141 (private parent constructor callable through static function).
  • +
  • Fixed bug #43589 (a possible infinite loop in bz2_filter.c).
  • +
  • Fixed bug #43450 (Memory leak on some functions with implicit object __toString() call).
  • +
  • Fixed bug #43201 (Crash on using uninitialized vals and __get/__set).
  • +
  • Fixed bug #42978 (mismatch between number of bound params and values causes a crash in pdo_pgsql).
  • +
  • Fixed bug #42937 (__call() method not invoked when methods are called on parent from child class).
  • +
  • Fixed bug #42736 (xmlrpc_server_call_method() crashes).
  • +
  • Fixed bug #42369 (Implicit conversion to string leaks memory).
  • +
  • Fixed bug #41562 (SimpleXML memory issue).
  • +
  • Over 120 bug fixes.
  • +
+ +

+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 @@ +

PHP 5.2.7 Release Announcement

+

+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: +

+
    +
  • Upgraded PCRE to version 7.8 (Fixes CVE-2008-2371)
  • +
  • Fixed missing initialization of BG(page_uid) and BG(page_gid), reported by Maksymilian Arciemowicz.
  • +
  • Fixed incorrect php_value order for Apache configuration, reported by Maksymilian Arciemowicz.
  • +
  • Fixed a crash inside gd with invalid fonts (Fixes CVE-2008-3658).
  • +
  • Fixed a possible overflow inside memnstr (Fixes CVE-2008-3659).
  • +
  • Fixed security issues detailed in CVE-2008-2665 and CVE-2008-2666.
  • +
  • Fixed bug #45151 (Crash with URI/file..php (filename contains 2 dots)).(Fixes CVE-2008-3660)
  • +
  • Fixed bug #42862 (IMAP toolkit crash: rfc822.c legacy routine buffer overflow). (Fixes CVE-2008-2829)
  • +
+ +

+Key enhancements in PHP 5.2.7 include: +

+
    +
  • Fixed several memory leaks inside the readline and sqlite extensions
  • +
  • A number of corrections relating to date parsing inside the date extension
  • +
  • Fixed bugs relating to data retrieval in the PDO extension
  • +
  • A series of crashes in various areas of code were resolved
  • +
  • Several corrections were made to the strip_tags() function in terms of < and <?XML handling
  • +
  • A number of bugs were fixed in extract() function when EXTR_REFS flag is being used
  • +
  • Added the ability to log PHP errors to the SAPI (Ex. Apache log) logging facility
  • +
  • Over 170 bug fixes.
  • +
+ +

+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 &#x 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 @@ +

PHP 5.2.8 Release Announcement

+

+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 @@ +

PHP 5.2.9 Release Announcement

+

+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: +

+
    +
  • 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 crash on extract in zip when files or directories entry names contain a relative path. (Pierre)
  • +
  • Fixed explode() behavior with empty string to respect negative limit. (Shire)
  • +
  • Fixed a segfault when malformed string is passed to json_decode(). (Scott)
  • +
+ +

+Key enhancements in PHP 5.2.9 include: +

+
    +
  • Added optional sorting type flag parameter to array_unique(). Default is SORT_REGULAR. (Andrei)
  • +
  • Fixed bug #45996 (libxml2 2.7 causes breakage with character data in xml_parse()). (Rob)
  • +
  • A number of fixes in the mbstring extension (Moriyoshi)
  • +
  • Fixed bug #44336 (Improve pcre UTF-8 string matching performance). (frode at coretrek dot com, Nuno)
  • +
  • Fixed bug #46699 (xml_parse crash when parser is namespace aware). (Rob)
  • +
  • Fixed bug #46748 (Segfault when an SSL error has more than one error). (Scott)
  • +
  • Fixed bug #46889 (Memory leak in strtotime()). (Derick)
  • +
  • Fixed bug #47049 (SoapClient::__soapCall causes a segmentation fault). (Dmitry)
  • +
  • Fixed bug #47165 (Possible memory corruption when passing return value by reference). (Dmitry)
  • +
  • Fixed bug #47282 (FILTER_VALIDATE_EMAIL is marking valid email addresses as invalid). (Ilia)
  • +
  • Fixed bug #47422 (modulus operator returns incorrect results on 64 bit linux). (Matt)
  • +
  • Over 50 bug fixes.
  • +
+ +

+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 @@ +

PHP 5.3.0 Release Announcement

+

+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: +

+ +

This 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 . (Dmitry) + . Added ability to use Traversable objects instead of plain arrays. + (Joshua Reese, Dmitry) + . Fixed possible crash bug caused by an uninitialized value. (Zdash Urf) + +- Improved SPL extension: + . Added SPL to list of standard extensions that cannot be disabled. (Marcus) + . Added ability to store associative information with objects in + SplObjectStorage. (Marcus) + . Added ArrayAccess support to SplObjectStorage. (Marcus) + . Added SplDoublyLinkedList, SplStack, SplQueue classes. (Etienne) + . Added FilesystemIterator. (Marcus) + . Added GlobIterator. (Marcus) + . Added SplHeap, SplMinHeap, SplMaxHeap, SplPriorityQueue classes. (Etienne) + . Added new parameter $prepend to spl_autoload_register(). (Etienne) + . Added SplFixedArray. (Etienne, Tony) + . Added delaying exceptions in SPL's autoload mechanism. (Marcus) + . Added RecursiveTreeIterator. (Arnaud, Marcus) + . Added MultipleIterator. (Arnaud, Marcus, Johannes) + +- Improved Zend Engine: + . Added "compact" handler for Zend MM storage. (Dmitry) + . Added "+" and "*" specifiers to zend_parse_parameters(). (Andrei) + . Added concept of "delayed early binding" that allows opcode caches to + perform class declaration (early and/or run-time binding) in exactly + the same order as vanilla PHP. (Dmitry) + +- Improved crypt() function: (Pierre) + . Added Blowfish and extended DES support. (Using Blowfish implementation + from Solar Designer). + . Made crypt features portable by providing our own implementations + for crypt_r and the algorithms which are used when OS does not provide + them. PHP implementations are always used for Windows builds. + +- Deprecated session_register(), session_unregister() and + session_is_registered(). (Hannes) +- Deprecated define_syslog_variables(). (Kalle) +- Deprecated ereg extension. (Felipe) + +- Added new extensions: + . Added Enchant extension as a way to access spell checkers. (Pierre) + . Added fileinfo extension as replacement for mime_magic extension. (Derick) + . Added intl extension for Internationalization. (Ed B., Vladimir I., + Dmitry L., Stanislav M., Vadim S., Kirti V.) + . Added mysqlnd extension as replacement for libmysql for ext/mysql, mysqli + and PDO_mysql. (Andrey, Johannes, Ulf) + . Added phar extension for handling PHP Archives. (Greg, Marcus, Steph) + . Added SQLite3 extension. (Scott) + +- Added new date/time functionality: (Derick) + . date_parse_from_format(): Parse date/time strings according to a format. + . date_create_from_format()/DateTime::createFromFormat(): Create a date/time + object by parsing a date/time string according to a given format. + . date_get_last_errors()/DateTime::getLastErrors(): Return a list of warnings + and errors that were found while parsing a date/time string through: + . strtotime() / new DateTime + . date_create_from_format() / DateTime::createFromFormat() + . date_parse_from_format(). + . support for abbreviation and offset based timezone specifiers for + the 'e' format specifier, DateTime::__construct(), DateTime::getTimeZone() + and DateTimeZone::getName(). + . support for selectively listing timezone identifiers by continent or + country code through timezone_identifiers_list() / + DateTimezone::listIdentifiers(). + . timezone_location_get() / DateTimezone::getLocation() for retrieving + location information from timezones. + . date_timestamp_set() / DateTime::setTimestamp() to set a Unix timestamp + without invoking the date parser. (Scott, Derick) + . date_timestamp_get() / DateTime::getTimestamp() to retrieve the Unix + timestamp belonging to a date object. + . two optional parameters to timezone_transitions_get() / + DateTimeZone::getTranstions() to limit the range of transitions being + returned. + . support for "first/last day of " style texts. + . support for date/time strings returned by MS SQL. + . support for serialization and unserialization of DateTime objects. + . support for diffing date/times through date_diff() / DateTime::diff(). + . support for adding/subtracting weekdays with strtotime() and + DateTime::modify(). + . DateInterval class to represent the difference between two date/times. + . support for parsing ISO intervals for use with DateInterval. + . date_add() / DateTime::add(), date_sub() / DateTime::sub() for applying an + interval to an existing date/time. + . proper support for "this week", "previous week"/"last week" and "next week" + phrases so that they actually mean the week and not a seven day period + around the current day. + . support for " of" and "last of" phrases to be used + with months - like in "last saturday of februari 2008". + . support for "back of " and "front of " phrases that are used in + Scotland. + . DatePeriod class which supports iterating over a DateTime object applying + DateInterval on each iteration, up to an end date or limited by maximum + number of occurences. + +- Added compatibility mode in GD, imagerotate, image(filled)ellipse + imagefilter, imageconvolution and imagecolormatch are now always enabled. + (Pierre) +- Added array_replace() and array_replace_recursive() functions. (Matt) +- Added ReflectionProperty::setAccessible() method that allows non-public + property's values to be read through ::getValue() and set through + ::setValue(). (Derick, Sebastian) +- Added msg_queue_exists() function to sysvmsg extension. (Benjamin Schulz) +- Added Firebird specific attributes that can be set via PDO::setAttribute() + to control formatting of date/timestamp columns: PDO::FB_ATTR_DATE_FORMAT, + PDO::FB_ATTR_TIME_FORMAT and PDO::FB_ATTR_TIMESTAMP_FORMAT. (Lars W) +- Added gmp_testbit() function. (Stas) +- Added icon format support to getimagesize(). (Scott) +- Added LDAP_OPT_NETWORK_TIMEOUT option for ldap_set_option() to allow + setting network timeout (FR #42837). (Jani) +- Added optional escape character parameter to fgetcsv(). (David Soria Parra) +- Added an optional parameter to strstr() and stristr() for retrieval of either + the part of haystack before or after first occurrence of needle. + (Johannes, Felipe) +- Added xsl->setProfiling() for profiling stylesheets. (Christian) +- Added long-option feature to getopt() and made getopt() available also on + win32 systems by adding a common getopt implementation into core. + (David Soria Parra, Jani) +- Added support for optional values, and = as separator, in getopt(). (Hannes) +- Added lcfirst() function. (David C) +- Added PREG_BAD_UTF8_OFFSET_ERROR constant. (Nuno) +- Added native support for asinh(), acosh(), atanh(), log1p() and expm1(). + (Kalle) +- Added LIBXML_LOADED_VERSION constant (libxml2 version currently used). (Rob) +- Added JSON_FORCE_OBJECT flag to json_encode(). (Scott, Richard Quadling) +- Added timezone_version_get() to retrieve the version of the used timezone + database. (Derick) +- Added 'n' flag to fopen to allow passing O_NONBLOCK to the underlying + open(2) system call. (Mikko) +- Added "dechunk" filter which can decode HTTP responses with chunked + transfer-encoding. HTTP streams use this filter automatically in case + "Transfer-Encoding: chunked" header is present in response. It's possible to + disable this behaviour using "http"=>array("auto_decode"=>0) in stream + context. (Dmitry) +- Added support for CP850 encoding in mbstring extension. + (Denis Giffeler, Moriyoshi) +- Added stream_cast() and stream_set_options() to user-space stream wrappers, + allowing stream_select(), stream_set_blocking(), stream_set_timeout() and + stream_set_write_buffer() to work with user-space stream wrappers. (Arnaud) +- Added header_remove() function. (chsc at peytz dot dk, Arnaud) +- Added stream_context_get_params() function. (Arnaud) +- Added optional parameter "new" to sybase_connect(). (Timm) +- Added parse_ini_string() function. (grange at lemonde dot fr, Arnaud) +- Added str_getcsv() function. (Sara) +- Added openssl_random_pseudo_bytes() function. (Scott) +- Added ability to send user defined HTTP headers with SOAP request. + (Brian J.France, Dmitry) +- Added concatenation option to bz2.decompress stream filter. + (Keisial at gmail dot com, Greg) +- Added support for using compressed connections with PDO_mysql. (Johannes) +- Added the ability for json_decode() to take a user specified depth. (Scott) +- Added support for the mysql_stmt_next_result() function from libmysql. + (Andrey) +- Added function preg_filter() that does grep and replace in one go. (Marcus) +- Added system independent realpath() implementation which caches intermediate + directories in realpath-cache. (Dmitry) +- Added optional clear_realpath_cache and filename parameters to + clearstatcache(). (Jani, Arnaud) +- Added litespeed SAPI module. (George Wang) +- Added ext/hash support to ext/session's ID generator. (Sara) +- Added quoted_printable_encode() function. (Tony) +- Added stream_context_set_default() function. (Davey Shafik) +- Added optional "is_xhtml" parameter to nl2br() which makes the function + output
when false and
when true (FR #34381). (Kalle) +- Added PHP_MAXPATHLEN constant (maximum length of a path). (Pierre) +- Added support for SSH via libssh2 in cURL. (Pierre) +- Added support for gray levels PNG image with alpha in GD extension. (Pierre) +- Added support for salsa hashing functions in HASH extension. (Scott) +- Added DOMNode::getLineNo to get line number of parsed node. (Rob) +- Added table info to PDO::getColumnMeta() with SQLite. (Martin Jansen, Scott) +- Added mail logging functionality that allows logging of mail sent via + mail() function. (Ilia) +- Added json_last_error() to return any error information from json_decode(). + (Scott) +- Added gethostname() to return the current system host name. (Ilia) +- Added shm_has_var() function. (Mike) +- Added depth parameter to json_decode() to lower the nesting depth from the + maximum if required. (Scott) +- Added pixelation support in imagefilter(). (Takeshi Abe, Kalle) +- Added SplObjectStorage::addAll/removeAll. (Etienne) + +- Implemented FR #41712 (curl progress callback: CURLOPT_PROGRESSFUNCTION). + (sdteffen[at]gmail[dot].com, Pierre) +- Implemented FR #47739 (Missing cURL option do disable IPv6). (Pierre) +- Implemented FR #39637 (Missing cURL option CURLOPT_FTP_FILEMETHOD). (Pierre) + +- Fixed an issue with ReflectionProperty::setAccessible(). + (Sebastian, Roman Borschel) +- Fixed html_entity_decode() incorrectly converting numeric html entities + to different characters with cp1251 and cp866. (Scott) +- Fixed an issue in date() where a : was printed for the O modifier after a P + modifier was used. (Derick) +- Fixed exec() on Windows to not eat the first and last double quotes. (Scott) +- Fixed readlink on Windows in thread safe SAPI (apache2.x etc.). (Pierre) +- Fixed a bug causing miscalculations with the "last of month" + relative time string. (Derick) +- Fixed bug causing the algorithm parameter of mhash() to be modified. (Scott) +- Fixed invalid calls to free when internal fileinfo magic file is used. (Scott) +- Fixed memory leak inside wddx_add_vars() function. (Felipe) +- Fixed check in recode extension to allow builing of recode and mysql + extensions when using a recent libmysql. (Johannes) + +- Fixed PECL bug #12794 (PDOStatement->nextRowset() doesn't work). (Johannes) +- Fixed PECL bug #12401 (Add support for ATTR_FETCH_TABLE_NAMES). (Johannes) + +- Fixed bug #48696 (ldap_read() segfaults with invalid parameters). (Felipe) +- Fixed bug #48643 (String functions memory issue). (Dmitry) +- Fixed bug #48641 (tmpfile() uses old parameter parsing). + (crrodriguez at opensuse dot org) +- Fixed bug #48624 (.user.ini never gets parsed). (Pierre) +- Fixed bug #48620 (X-PHP-Originating-Script assumes no trailing CRLF in + existing headers). (Ilia) +- Fixed bug #48578 (Can't build 5.3 on FBSD 4.11). (Rasmus) +- Fixed bug #48535 (file_exists returns false when impersonate is used). + (Kanwaljeet Singla, Venkat Raman Don) +- Fixed bug #48493 (spl_autoload_register() doesn't work correctly when + prepending functions). (Scott) +- Fixed bug #48215 (Calling a method with the same name as the parent class + calls the constructor). (Scott) +- Fixed bug #48200 (compile failure with mbstring.c when + --enable-zend-multibyte is used). (Jani) +- Fixed bug #48188 (Cannot execute a scrollable cursors twice with PDO_PGSQL). + (Matteo) +- Fixed bug #48185 (warning: value computed is not used in + pdo_sqlite_stmt_get_col line 271). (Matteo) +- Fixed bug #48087 (call_user_method() invalid free of arguments). (Felipe) +- Fixed bug #48060 (pdo_pgsql - large objects are returned as empty). (Matteo) +- Fixed bug #48034 (PHP crashes when script is 8192 (8KB) bytes long). (Dmitry) +- Fixed bug #48004 (Error handler prevents creation of default object). (Dmitry) +- Fixed bug #47880 (crashes in call_user_func_array()). (Dmitry) +- Fixed bug #47856 (stristr() converts needle to lower-case). (Ilia) +- Fixed bug #47851 (is_callable throws fatal error). (Dmitry) +- Fixed bug #47816 (pcntl tests failing on NetBSD). (Matteo) +- Fixed bug #47779 (Wrong value for SIG_UNBLOCK and SIG_SETMASK constants). + (Matteo) +- Fixed bug #47771 (Exception during object construction from arg call calls + object's destructor). (Dmitry) +- Fixed bug #47767 (include_once does not resolve windows symlinks or junctions) + (Kanwaljeet Singla, Venkat Raman Don) +- Fixed bug #47757 (rename JPG to JPEG in phpinfo). (Pierre) +- Fixed bug #47745 (FILTER_VALIDATE_INT doesn't allow minimum integer). (Dmitry) +- Fixed bug #47714 (autoloading classes inside exception_handler leads to + crashes). (Dmitry) +- Fixed bug #47671 (Cloning SplObjectStorage instances). (Etienne) +- Fixed bug #47664 (get_class returns NULL instead of FALSE). (Dmitry) +- Fixed bug #47662 (Support more than 127 subpatterns in preg_match). (Nuno) +- Fixed bug #47596 (Bus error on parsing file). (Dmitry) +- Fixed bug #47572 (Undefined constant causes segmentation fault). (Felipe) +- Fixed bug #47560 (explode()'s limit parameter odd behaviour). (Matt) +- Fixed bug #47549 (get_defined_constants() return array with broken array + categories). (Ilia) +- Fixed bug #47535 (Compilation failure in ps_fetch_from_1_to_8_bytes()). + (Johannes) +- Fixed bug #47534 (RecursiveDiteratoryIterator::getChildren ignoring + CURRENT_AS_PATHNAME). (Etienne) +- Fixed bug #47443 (metaphone('scratch') returns wrong result). (Felipe) +- Fixed bug #47438 (mysql_fetch_field ignores zero offset). (Johannes) +- Fixed bug #47398 (PDO_Firebird doesn't implements quoter correctly). (Felipe) +- Fixed bug #47390 (odbc_fetch_into - BC in php 5.3.0). (Felipe) +- Fixed bug #47359 (Use the expected unofficial mimetype for bmp files). (Scott) +- Fixed bug #47343 (gc_collect_cycles causes a segfault when called within a + destructor in one case). (Dmitry) +- Fixed bug #47320 ($php_errormsg out of scope in functions). (Dmitry) +- Fixed bug #47318 (UMR when trying to activate user config). (Pierre) +- Fixed bug #47243 (OCI8: Crash at shutdown on Windows) (Chris Jones/Oracle + Corp.) +- Fixed bug #47231 (offsetGet error using incorrect offset). (Etienne) +- Fixed bug #47229 (preg_quote() should escape the '-' char). (Nuno) +- Fixed bug #47165 (Possible memory corruption when passing return value by + reference). (Dmitry) +- Fixed bug #47087 (Second parameter of mssql_fetch_array()). (Felipe) +- Fixed bug #47085 (rename() returns true even if the file in PHAR does not + exist). (Greg) +- Fixed bug #47050 (mysqli_poll() modifies improper variables). (Johannes) +- Fixed bug #47045 (SplObjectStorage instances compared with ==). (Etienne) +- Fixed bug #47038 (Memory leak in include). (Dmitry) +- Fixed bug #47031 (Fix constants in DualIterator example). (Etienne) +- Fixed bug #47021 (SoapClient stumbles over WSDL delivered with + "Transfer-Encoding: chunked"). (Dmitry) +- Fixed bug #46994 (OCI8: CLOB size does not update when using CLOB IN OUT param + in stored procedure) (Chris Jones/Oracle Corp.) +- Fixed bug #46979 (use with non-compound name *has* effect). (Dmitry) +- Fixed bug #46957 (The tokenizer returns deprecated values). (Felipe) +- Fixed bug #46944 (UTF-8 characters outside the BMP aren't encoded correctly). + (Scott) +- Fixed bug #46897 (ob_flush() should fail to flush unerasable buffers). + (David C.) +- Fixed bug #46849 (Cloning DOMDocument doesn't clone the properties). (Rob) +- Fixed bug #46847 (phpinfo() is missing some settings). (Hannes) +- Fixed bug #46844 (php scripts or included files with first line starting + with # have the 1st line missed from the output). (Ilia) +- Fixed bug #46817 (tokenizer misses last single-line comment (PHP 5.3+, with + re2c lexer)). (Matt, Shire) +- Fixed bug #46811 (ini_set() doesn't return false on failure). (Hannes) +- Fixed bug #46763 (mb_stristr() wrong output when needle does not exist). + (Henrique M. Decaria) +- Fixed bug #46755 (warning: use statement with non-compound name). (Dmitry) +- Fixed bug #46746 (xmlrpc_decode_request outputs non-suppressable error when + given bad data). (Ilia) +- Fixed bug #46738 (Segfault when mb_detect_encoding() fails). (Scott) +- Fixed bug #46731 (Missing validation for the options parameter of the + imap_fetch_overview() function). (Ilia) +- Fixed bug #46711 (cURL curl_setopt leaks memory in foreach loops). (magicaltux + [at] php [dot] net) +- Fixed bug #46701 (Creating associative array with long values in the key fails + on 32bit linux). (Shire) +- Fixed bug #46681 (mkdir() fails silently on PHP 5.3). (Hannes) +- Fixed bug #46653 (can't extend mysqli). (Johannes) +- Fixed bug #46646 (Restrict serialization on some internal classes like Closure + and SplFileInfo using exceptions). (Etienne) +- Fixed bug #46623 (OCI8: phpinfo doesn't show compile time ORACLE_HOME with + phpize) (Chris Jones/Oracle Corp.) +- Fixed bug #46578 (strip_tags() does not honor end-of-comment when it + encounters a single quote). (Felipe) +- Fixed bug #46546 (Segmentation fault when using declare statement with + non-string value). (Felipe) +- Fixed bug #46542 (Extending PDO class with a __call() function doesn't work as + expected). (Johannes) +- Fixed bug #46421 (SplFileInfo not correctly handling /). (Etienne) +- Fixed bug #46347 (parse_ini_file() doesn't support * in keys). (Nuno) +- Fixed bug #46268 (DateTime::modify() does not reset relative time values). + (Derick) +- Fixed bug #46241 (stacked error handlers, internal error handling in general). + (Etienne) +- Fixed bug #46238 (Segmentation fault on static call with empty string method). + (Felipe) +- Fixed bug #46192 (ArrayObject with objects as storage serialization). + (Etienne) +- Fixed bug #46185 (importNode changes the namespace of an XML element). (Rob) +- Fixed bug #46178 (memory leak in ext/phar). (Greg) +- Fixed bug #46160 (SPL - Memory leak when exception is thrown in offsetSet). + (Felipe) +- Fixed Bug #46147 (after stream seek, appending stream filter reads incorrect + data). (Greg) +- Fixed bug #46127 (php_openssl_tcp_sockop_accept forgets to set context on + accepted stream) (Mark Karpeles, Pierre) +- Fixed bug #46115 (Memory leak when calling a method using Reflection). + (Dmitry) +- Fixed bug #46110 (XMLWriter - openmemory() and openuri() leak memory on + multiple calls). (Ilia) +- Fixed bug #46108 (DateTime - Memory leak when unserializing). (Felipe) +- Fixed bug #46106 (Memory leaks when using global statement). (Dmitry) +- Fixed bug #46099 (Xsltprocessor::setProfiling - memory leak). (Felipe, Rob). +- Fixed bug #46087 (DOMXPath - segfault on destruction of a cloned object). + (Ilia) +- Fixed bug #46048 (SimpleXML top-level @attributes not part of iterator). + (David C.) +- Fixed bug #46044 (Mysqli - wrong error message). (Johannes) +- Fixed bug #46042 (memory leaks with reflection of mb_convert_encoding()). + (Ilia) +- Fixed bug #46039 (ArrayObject iteration is slow). (Arnaud) +- Fixed bug #46033 (Direct instantiation of SQLite3stmt and SQLite3result cause + a segfault.) (Scott) +- Fixed bug #45991 (Ini files with the UTF-8 BOM are treated as invalid). + (Scott) +- Fixed bug #45989 (json_decode() doesn't return NULL on certain invalid + strings). (magicaltux, Scott) +- Fixed bug #45976 (Moved SXE from SPL to SimpleXML). (Etienne) +- Fixed bug #45928 (large scripts from stdin are stripped at 16K border). + (Christian Schneider, Arnaud) +- Fixed bug #45911 (Cannot disable ext/hash). (Arnaud) +- Fixed bug #45907 (undefined reference to 'PHP_SHA512Init'). (Greg) +- Fixed bug #45826 (custom ArrayObject serialization). (Etienne) +- Fixed bug #45820 (Allow empty keys in ArrayObject). (Etienne) +- Fixed bug #45791 (json_decode() doesn't convert 0e0 to a double). (Scott) +- Fixed bug #45786 (FastCGI process exited unexpectedly). (Dmitry) +- Fixed bug #45757 (FreeBSD4.11 build failure: failed include; stdint.h). + (Hannes) +- Fixed bug #45743 (property_exists fails to find static protected member in + child class). (Felipe) +- Fixed bug #45717 (Fileinfo/libmagic build fails, missing err.h and getopt.h). + (Derick) +- Fixed bug #45706 (Unserialization of classes derived from ArrayIterator + fails). (Etienne, Dmitry) +- Fixed bug #45696 (Not all DateTime methods allow method chaining). (Derick) +- Fixed bug #45682 (Unable to var_dump(DateInterval)). (Derick) +- Fixed bug #45447 (Filesystem time functions on Vista and server 2008). + (Pierre) +- Fixed bug #45432 (PDO: persistent connection leak). (Felipe) +- Fixed bug #45392 (ob_start()/ob_end_clean() and memory_limit). (Ilia) +- Fixed bug #45384 (parse_ini_file will result in parse error with no trailing + newline). (Arnaud) +- Fixed bug #45382 (timeout bug in stream_socket_enable_crypto). (vnegrier at + optilian dot com, Ilia) +- Fixed bug #45044 (relative paths not resolved correctly). (Dmitry) +- Fixed bug #44861 (scrollable cursor don't work with pgsql). (Matteo) +- Fixed bug #44842 (parse_ini_file keys that start/end with underscore). + (Arnaud) +- Fixed bug #44575 (parse_ini_file comment # line problems). (Arnaud) +- Fixed bug #44409 (PDO::FETCH_SERIALIZE calls __construct()). (Matteo) +- Fixed bug #44173 (PDO->query() parameter parsing/checking needs an update). + (Matteo) +- Fixed bug #44154 (pdo->errorInfo() always have three elements in the returned + array). (David C.) +- Fixed bug #44153 (pdo->errorCode() returns NULL when there are no errors). + (David C.) +- Fixed bug #44135 (PDO MySQL does not support CLIENT_FOUND_ROWS). (Johannes, + chx1975 at gmail dot com) +- Fixed bug #44100 (Inconsistent handling of static array declarations with + duplicate keys). (Dmitry) +- Fixed bug #43831 ($this gets mangled when extending PDO with persistent + connection). (Felipe) +- Fixed bug #43817 (opendir() fails on Windows directories with parent directory + unaccessible). (Dmitry) +- Fixed bug #43069 (SoapClient causes 505 HTTP Version not supported error + message). (Dmitry) +- Fixed bug #43008 (php://filter uris ignore url encoded filternames and can't + handle slashes). (Arnaud) +- Fixed bug #42362 (HTTP status codes 204 and 304 should not be gzipped). + (Scott, Edward Z. Yang) +- Fixed bug #41874 (separate STDOUT and STDERR in exec functions). (Kanwaljeet + Singla, Venkat Raman Don, Pierre) +- Fixed bug #41534 (SoapClient over HTTPS fails to reestablish connection). + (Dmitry) +- Fixed bug #38802 (max_redirects and ignore_errors). (patch by + datibbaw@php.net) +- Fixed bug #35980 (touch() works on files but not on directories). (Pierre) diff --git a/data/releases/5.3/5.3.0/release.json b/data/releases/5.3/5.3.0/release.json new file mode 100644 index 0000000000..a50f9d8de9 --- /dev/null +++ b/data/releases/5.3/5.3.0/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.0", + "date": "30 June 2009", + "tags": [], + "source": [ + { + "filename": "php-5.3.0.tar.bz2", + "name": "PHP 5.3.0 (tar.bz2)", + "md5": "846760cd655c98dfd86d6d97c3d964b0" + }, + { + "filename": "php-5.3.0.tar.gz", + "name": "PHP 5.3.0 (tar.gz)", + "md5": "f4905eca4497da3f0beb5c96863196b4" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.1/announcement.html b/data/releases/5.3/5.3.1/announcement.html new file mode 100644 index 0000000000..b8cd062722 --- /dev/null +++ b/data/releases/5.3/5.3.1/announcement.html @@ -0,0 +1,42 @@ +

PHP 5.3.1 Release Announcement

+

+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: +

+
    +
  • 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.
  • +
  • Added missing sanity checks around exif processing.
  • +
  • Fixed a safe_mode bypass in tempnam().
  • +
  • Fixed a open_basedir bypass in posix_mkfifo().
  • +
  • Fixed bug #50063 (safe_mode_include_dir fails).
  • +
  • Fixed bug #44683 (popen crashes when an invalid mode is passed).
  • +
+ +

+Key Bug Fixes in PHP 5.3.1 include: +

+
    +
  • Fixed crash in com_print_typeinfo when an invalid typelib is given.
  • +
  • Fixed crash in SQLiteDatabase::ArrayQuery() and SQLiteDatabase::SingleQuery() when calling using Reflection.
  • +
  • Fixed crash when instantiating PDORow and PDOStatement through Reflection.
  • +
  • Fixed bug #49910 (no support for ././@LongLink for long filenames in phar + tar support).
  • +
  • Fixed bug #49908 (throwing exception in __autoload crashes when interface is not defined).
  • +
  • Around 100 other bug fixes
  • +
+ +

+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 @@ +

PHP 5.3.10 Release Announcement

+ +

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:

+ +
    +
  • Fixed arbitrary remote code execution vulnerability reported by Stefan + Esser, CVE-2012-0830.
  • +
+ +

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 @@ +

PHP 5.3.11 Release Announcement

+ +

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:

+ +
    +
  • Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831). + Reported by Stefan Esser. (Ondřej Surý)
  • +
  • Fixed bug #54374 (Insufficient validating of upload name leading to + corrupted $_FILES indices). (CVE-2012-1172). (Stas, lekensteyn at + gmail dot com, Pierre)
  • +
  • Add open_basedir checks to readline_write_history and readline_read_history. + (Rasmus, reported by Mateusz Goik)
  • +
+ +

Key enhancements in PHP 5.3.11 include:

+ +
    +
  • Added debug info handler to DOM objects. (Gustavo, Joey Smith)
  • +
  • Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)
  • +
+ +

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*+). (Etienne) + . Fixed bug #61087 (Memory leak in parse_ini_file when specifying + invalid scanner mode). (Nikic, Laruence) + . Fixed bug #61072 (Memory leak when restoring an exception handler). + (Nikic, Laruence) + . Fixed bug #61058 (array_fill leaks if start index is PHP_INT_MAX). + (Laruence) + . Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831). + (Ondřej Surý) + . Fixed bug #61000 (Exceeding max nesting level doesn't delete numerical + vars). (Laruence) + . Fixed bug #60895 (Possible invalid handler usage in windows random + functions). (Pierre) + . Fixed bug #60825 (Segfault when running symfony 2 tests). + (Dmitry, Laruence) + . Fixed bug #60801 (strpbrk() mishandles NUL byte). (Adam) + . Fixed bug #60569 (Nullbyte truncates Exception $message). (Ilia) + . Fixed bug #60227 (header() cannot detect the multi-line header with CR). + (rui, Gustavo) + . Fixed bug #60222 (time_nanosleep() does validate input params). (Ilia) + . Fixed bug #54374 (Insufficient validating of upload name leading to + corrupted $_FILES indices). (CVE-2012-1172). (Stas, lekensteyn at + gmail dot com, Pierre) + . Fixed bug #52719 (array_walk_recursive crashes if third param of the + function is by reference). (Nikita Popov) + . Fixed bug #51860 (Include fails with toplevel symlink to /). (Dmitry) + +- DOM + . Added debug info handler to DOM objects. (Gustavo, Joey Smith) + +- FPM + . Fixed bug #61430 (Transposed memset() params in sapi/fpm/fpm/fpm_shm.c). + (michaelhood at gmail dot com, Ilia) + +- Ibase + . Fixed bug #60947 (Segmentation fault while executing ibase_db_info). + (Ilia) + +- Installation + . Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones) + +- Fileinfo + . Upgraded libmagic to 5.11 (Pierre, Anatoliy) + . Fixed bug #61565 where php_stream_open_wrapper_ex tries to open a + directory descriptor under windows. (Anatoliy) + . Fixed bug #61566 failure caused by the posix lseek and read versions + under windows in cdf_read(). (Anatoliy) + . Fixed bug #61173 (Unable to detect error from finfo constructor). (Gustavo) + +- Firebird Database extension (ibase): + . Fixed bug #60802 (ibase_trans() gives segfault when passing params). + +- Libxml: + . Fixed bug #61367 (open_basedir bypass using libxml RSHUTDOWN). + (Tim Starling) + +- mysqli + . Fixed bug #61003 (mysql_stat() require a valid connection). (Johannes). + +- PDO_mysql + . Fixed bug #61207 (PDO::nextRowset() after a multi-statement query doesn't + always work). (Johannes) + . Fixed bug #61194 (PDO should export compression flag with myslqnd). + (Johannes) + +- PDO_odbc + . Fixed bug #61212 (PDO ODBC Segfaults on SQL_SUCESS_WITH_INFO). (Ilia) + +- PDO_pgsql + . Fixed bug #61267 (pdo_pgsql's PDO::exec() returns the number of SELECTed + rows on postgresql >= 9). (ben dot pineau at gmail dot com) + +- PDO_Sqlite extension: + . Add createCollation support. (Damien) + +- pgsql: + . Fixed bug #60718 (Compile problem with libpq (PostgreSQL 7.3 or less). + (Yasuo Ohgaki) + +- Phar: + . Fixed bug #61184 (Phar::webPhar() generates headers with trailing NUL + bytes). (Nikic) + +- PHP-FPM SAPI: + . Fixed bug #60811 (php-fpm compilation problem). (rasmus) + +- Readline: + . Fixed bug #61088 (Memory leak in readline_callback_handler_install). + (Nikic, Laruence) + . Add open_basedir checks to readline_write_history and readline_read_history. + (Rasmus, reported by Mateusz Goik) + +- Reflection: + . Fixed bug #61388 (ReflectionObject:getProperties() issues invalid reads + when get_properties returns a hash table with (inaccessible) dynamic + numeric properties). (Gustavo) + . Fixed bug #60968 (Late static binding doesn't work with + ReflectionMethod::invokeArgs()). (Laruence) + +- SOAP + . Fixed basic HTTP authentication for WSDL sub requests. (Dmitry) + . Fixed bug #60887 (SoapClient ignores user_agent option and sends no + User-Agent header). (carloschilazo at gmail dot com) + . Fixed bug #60842, #51775 (Chunked response parsing error when + chunksize length line is > 10 bytes). (Ilia) + . Fixed bug #49853 (Soap Client stream context header option ignored). + (Dmitry) + +- SPL + . Fixed memory leak when calling SplFileInfo's constructor twice. (Felipe) + . Fixed bug #61418 (Segmentation fault when DirectoryIterator's or + FilesystemIterator's iterators are requested more than once without + having had its dtor callback called in between). (Gustavo) + . Fixed bug #61347 (inconsistent isset behavior of Arrayobject). (Laruence) + . Fixed bug #61326 (ArrayObject comparison). (Gustavo) + +- SQLite3 extension: + . Add createCollation() method. (Brad Dewar) + +- Session: + . Fixed bug #60860 (session.save_handler=user without defined function core + dumps). (Felipe) + . Fixed bug #60634 (Segmentation fault when trying to die() in + SessionHandler::write()). (Ilia) + +- Streams: + . Fixed bug #61371 (stream_context_create() causes memory leaks on use + streams_socket_create). (Gustavo) + . Fixed bug #61253 (Wrappers opened with errors concurrency problem on ZTS). + (Gustavo) + . Fixed bug #61115 (stream related segfault on fatal error in + php_stream_context_link). (Gustavo) + . Fixed bug #60817 (stream_get_line() reads from stream even when there is + already sufficient data buffered). stream_get_line() now behaves more like + fgets(), as is documented. (Gustavo) + . Further fix for bug #60455 (stream_get_line misbehaves if EOF is not + detected together with the last read). (Gustavo) + . Fixed bug #60106 (stream_socket_server silently truncates long unix + socket paths). (Ilia) + +- Tidy: + . Fixed bug #54682 (tidy null pointer dereference). (Tony, David Soria Parra) + +- XMLRPC: + . Fixed bug #61264 (xmlrpc_parse_method_descriptions leaks temporary + variable). (Nikita Popov) + . Fixed bug #61097 (Memory leak in xmlrpc functions copying zvals). (Nikic) + +- Zlib: + . Fixed bug #61139 (gzopen leaks when specifying invalid mode). (Nikic) diff --git a/data/releases/5.3/5.3.11/release.json b/data/releases/5.3/5.3.11/release.json new file mode 100644 index 0000000000..900b9e7b07 --- /dev/null +++ b/data/releases/5.3/5.3.11/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.11", + "date": "26 April 2012", + "tags": [], + "source": [ + { + "filename": "php-5.3.11.tar.bz2", + "name": "PHP 5.3.11 (tar.bz2)", + "md5": "5b9529ed89dbc48c498e9693d1af3caf" + }, + { + "filename": "php-5.3.11.tar.gz", + "name": "PHP 5.3.11 (tar.gz)", + "md5": "acd566dbd70f855c19d17fc3c0e876a2" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.12/announcement.html b/data/releases/5.3/5.3.12/announcement.html new file mode 100644 index 0000000000..8d81f58299 --- /dev/null +++ b/data/releases/5.3/5.3.12/announcement.html @@ -0,0 +1,56 @@ +

PHP 5.3.12 Release Announcement

+ +

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 @@ +

PHP 5.3.13 Release Announcement

+ +

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 @@ +

PHP 5.3.14 Release Announcement

+ +

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 @@ +

PHP 5.3.15 Release Announcement

+ +

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 @@ +

PHP 5.3.16 Release Announcement

+ +

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 @@ +

PHP 5.3.17 Release Announcement

+ +

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 @@ +

PHP 5.3.18 Release Announcement

+ +

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 @@ +

PHP 5.3.19 Release Announcement

+ +

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 @@ +

PHP 5.3.2 Release Announcement

+

+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: +

+
    +
  • 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 the session extension identified by Grzegorz Stachowiak. (Ilia)
  • +
+ +

+Key Bug Fixes in PHP 5.3.2 include: +

+
    +
  • Added support for SHA-256 and SHA-512 to php's crypt.
  • +
  • Added protection for $_SESSION from interrupt corruption and improved "session.save_path" check.
  • +
  • Fixed bug #51059 (crypt crashes when invalid salt are given).
  • +
  • Fixed bug #50940 Custom content-length set incorrectly in Apache sapis.
  • +
  • Fixed bug #50847 (strip_tags() removes all tags greater then 1023 bytes long).
  • +
  • Fixed bug #50723 (Bug in garbage collector causes crash).
  • +
  • Fixed bug #50661 (DOMDocument::loadXML does not allow UTF-16).
  • +
  • Fixed bug #50632 (filter_input() does not return default value if the variable does not exist).
  • +
  • Fixed bug #50540 (Crash while running ldap_next_reference test +cases).
  • +
  • Fixed bug #49851 (http wrapper breaks on 1024 char long headers).
  • +
  • Over 60 other bug fixes.
  • +
+ +

+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 Feltzing ) +- Added client-side server name indication support in openssl. (Arnaud) + +- Improved fix for bug #50006 (Segfault caused by uksort()). (Stas) + +- Fixed mysqlnd hang when queries exactly 16777214 bytes long are sent. (Andrey) +- Fixed incorrect decoding of 5-byte BIT sequences in mysqlnd. (Andrey) +- 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 memory leak in extension loading when an error occurs on Windows. + (Pierre) +- 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 possible crash when a error/warning is raised during php startup. + (Pierre) +- Fixed possible bad behavior of rename on windows when used with symbolic + links or invalid paths. (Pierre) +- Fixed error output to stderr on Windows. (Pierre) +- Fixed memory leaks in is_writable/readable/etc on Windows. (Pierre) +- Fixed memory leaks in the ACL function on Windows. (Pierre) +- Fixed memory leak in the realpath cache on Windows. (Pierre) +- Fixed memory leak in zip_close. (Pierre) +- Fixed crypt's blowfish sanity check of the "setting" string, to reject + iteration counts encoded as 36 through 39. (Solar Designer, Joey, Pierre) + +- Fixed bug #51059 (crypt crashes when invalid salt are given). (Pierre) +- Fixed bug #50952 (allow underscore _ in constants parsed in php.ini files). + (Jani) +- 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 #50907 (X-PHP-Originating-Script adding two new lines in *NIX). + (Ilia) +- 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 #50829 (php.ini directive pdo_mysql.default_socket is ignored). + (Ilia) +- Fixed bug #50832 (HTTP fopen wrapper does not support passwordless HTTP + authentication). (Jani) +- Fixed bug #50787 (stream_set_write_buffer() has no effect on socket streams). + (vnegrier at optilian dot com, Ilia) +- Fixed bug #50761 (system.multiCall crashes in xmlrpc extension). + (hiroaki dot kawai at gmail dot com, Ilia) +- Fixed bug #50756 (CURLOPT_FTP_SKIP_PASV_IP does not exist). (Sriram) +- 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 #50723 (Bug in garbage collector causes crash). (Dmitry) +- Fixed bug #50690 (putenv does not set ENV when the value is only one char). + (Pierre) +- 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 #50558 (Broken object model when extending tidy). (Pierrick) +- Fixed bug #50540 (Crash while running ldap_next_reference test cases). + (Sriram) +- Fixed bug #50519 (segfault in garbage collection when using set_error_handler + and DomDocument). (Dmitry) +- Fixed bug #50508 (compile failure: Conflicting HEADER type declarations). + (Jani) +- Fixed bug #50496 (Use of is valid only in a c99 compilation + environment. (Sriram) +- Fixed bug #50464 (declare encoding doesn't work within an included file). + (Felipe) +- Fixed bug #50458 (PDO::FETCH_FUNC fails with Closures). (Felipe, Pierrick) +- Fixed bug #50445 (PDO-ODBC stored procedure call from Solaris 64-bit causes + seg fault). (davbrown4 at yahoo dot com, Felipe) +- Fixed bug #50416 (PROCEDURE db.myproc can't return a result set in the given + context). (Andrey) +- Fixed bug #50394 (Reference argument converted to value in __call). (Stas) +- Fixed bug #50351 (performance regression handling objects, ten times slower + in 5.3 than in 5.2). (Dmitry) +- Fixed bug #50392 (date_create_from_format() enforces 6 digits for 'u' + format character). (Ilia) +- Fixed bug #50345 (nanosleep not detected properly on some solaris versions). + (Jani) +- Fixed bug #50340 (php.ini parser does not allow spaces in ini keys). (Jani) +- Fixed bug #50334 (crypt ignores sha512 prefix). (Pierre) +- 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 #50267 (get_browser(null) does not use HTTP_USER_AGENT). (Jani) +- Fixed bug #50266 (conflicting types for llabs). (Jani) +- Fixed bug #50261 (Crash When Calling Parent Constructor with + call_user_func()). (Dmitry) +- Fixed bug #50255 (isset() and empty() silently casts array to object). + (Felipe) +- Fixed bug #50240 (pdo_mysql.default_socket in php.ini shouldn't used + if it is empty). (foutrelis at gmail dot com, Ilia) +- Fixed bug #50231 (Socket path passed using --with-mysql-sock is ignored when + mysqlnd is enabled). (Jani) +- Fixed bug #50219 (soap call Segmentation fault on a redirected url). + (Pierrick) +- Fixed bug #50212 (crash by ldap_get_option() with LDAP_OPT_NETWORK_TIMEOUT). + (Ilia, shigeru_kitazaki at cybozu dot co dot jp) +- 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 #50196 (stream_copy_to_stream() produces warning when source is + not file). (Stas) +- 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-existant file). (Dmitry) +- Fixed bug #50162 (Memory leak when fetching timestamp column from Oracle + database). (Felipe) +- Fixed bug #50159 (wrong working directory in symlinked files). (Dmitry) +- Fixed bug #50158 (FILTER_VALIDATE_EMAIL fails with valid addresses + containing = or ?). (Pierrick) +- Fixed bug #50152 (ReflectionClass::hasProperty behaves like isset() not + property_exists). (Felipe) +- Fixed bug #50146 (property_exists: Closure object cannot have properties). + (Felipe) +- Fixed bug #50145 (crash while running bug35634.phpt). (Felipe) +- Fixed bug #50140 (With default compilation option, php symbols are unresolved + for nsapi). (Uwe Schindler) +- Fixed bug #50087 (NSAPI performance improvements). (Uwe Schindler) +- Fixed bug #50073 (parse_url() incorrect when ? in fragment). (Ilia) +- Fixed bug #50023 (pdo_mysql doesn't use PHP_MYSQL_UNIX_SOCK_ADDR). (Ilia) +- 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 #49938 (Phar::isBuffering() returns inverted value). (Greg) +- Fixed bug #49936 (crash with ftp stream in php_stream_context_get_option()). + (Pierrick) +- Fixed bug #49921 (Curl post upload functions changed). (Ilia) +- Fixed bug #49866 (Making reference on string offsets crashes PHP). (Dmitry) +- Fixed bug #49855 (import_request_variables() always returns NULL). (Ilia, + sjoerd at php dot net) +- Fixed bug #49851, #50451 (http wrapper breaks on 1024 char long headers). + (Ilia) +- Fixed bug #49800 (SimpleXML allow (un)serialize() calls without warning). + (Ilia, wmeler at wp-sa dot pl) +- Fixed bug #49719 (ReflectionClass::hasProperty returns true for a private + property in base class). (Felipe) +- 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 #49600 (imageTTFText text shifted right). (Takeshi Abe) +- Fixed bug #49585 (date_format buffer not long enough for >4 digit years). + (Derick, Adam) +- Fixed bug #49560 (oci8: using LOBs causes slow PHP shutdown). (Oracle Corp.) +- Fixed bug #49521 (PDO fetchObject sets values before calling constructor). + (Pierrick) +- Fixed bug #49472 (Constants defined in Interfaces can be overridden). + (Felipe) +- Fixed bug #49463 (setAttributeNS fails setting default namespace). (Rob) +- Fixed bug #49244 (Floating point NaN cause garbage characters). (Sjoerd) +- Fixed bug #49224 (Compile error due to old DNS functions on AIX systems). + (Scott) +- Fixed bug #49174 (crash when extending PDOStatement and trying to set + queryString property). (Felipe) +- Fixed bug #48811 (Directives in PATH section do not get applied to + subdirectories). (Patch by: ct at swin dot edu dot au) +- 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 #47848 (importNode doesn't preserve attribute namespaces). (Rob) +- Fixed bug #47409 (extract() problem with array containing word "this"). + (Ilia, chrisstocktonaz at gmail dot com) +- Fixed bug #47281 ($php_errormsg is limited in size of characters) + (Oracle Corp.) +- Fixed bug #46478 (htmlentities() uses obsolete mapping table for character + entity references). (Moriyoshi) +- Fixed bug #45599 (strip_tags() truncates rest of string with invalid + attribute). (Ilia, hradtke) +- Fixed bug #45120 (PDOStatement->execute() returns true then false for same + statement). (Pierrick) +- Fixed bug #44827 (define() allows :: in constant names). (Ilia) +- Fixed bug #44098 (imap_utf8() returns only capital letters). + (steffen at dislabs dot de, Pierre) +- 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.3/5.3.2/release.json b/data/releases/5.3/5.3.2/release.json new file mode 100644 index 0000000000..6420861b6c --- /dev/null +++ b/data/releases/5.3/5.3.2/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.2", + "date": "04 Mar 2010", + "tags": [], + "source": [ + { + "filename": "php-5.3.2.tar.bz2", + "name": "PHP 5.3.2 (tar.bz2)", + "md5": "46f500816125202c48a458d0133254a4" + }, + { + "filename": "php-5.3.2.tar.gz", + "name": "PHP 5.3.2 (tar.gz)", + "md5": "4480d7c6d6b4a86de7b8ec8f0c2d1871" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.20/announcement.html b/data/releases/5.3/5.3.20/announcement.html new file mode 100644 index 0000000000..775783fc68 --- /dev/null +++ b/data/releases/5.3/5.3.20/announcement.html @@ -0,0 +1,9 @@ +

PHP 5.3.20 Release Announcement

+ +

The PHP development team announces the immediate availability of PHP +5.3.20. About 15 bugs were fixed. Please note that the PHP 5.3 series will enter an end of life cycle and receive only critical fixes as of March 2013. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.20 is recommended for those wishing to remain on the 5.3 series.

+ +

For source downloads of PHP 5.3.20 please visit our downloads page, +Windows binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +

\ No newline at end of file diff --git a/data/releases/5.3/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 @@ +

PHP 5.3.21 Release Announcement

+ +

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 @@ +

PHP 5.3.22 Release Announcement

+ +

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 @@ +

PHP 5.3.23 Release Announcement

+ +

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 @@ +

PHP 5.3.24 Release Announcement

+ +

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 @@ +

PHP 5.3.25 Release Announcement

+ +

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 @@ +

PHP 5.3.26 Release Announcement

+ +

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 @@ +

PHP 5.3.27 Release Announcement

+ +

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 @@ +

PHP 5.3.28 Release Announcement

+ +

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 @@ +

PHP 5.3.29 Release Announcement

+ +

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 @@ +

PHP 5.3.3 Release Announcement

+

+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: +

+
    +
  • Methods with the same name as the last element of a namespaced class name + will no longer be treated as constructor. This change doesn't affect + non-namespaced classes. + +

    \ 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 @@ +

    PHP 5.3.4 Release Announcement

    +

    +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: +

    +
      +
    • Fixed crash in zip extract method (possible CWE-170).
    • +
    • Paths with NULL in them (foo\0bar.txt) are now considered as invalid (CVE-2006-7243).
    • +
    • Fixed a possible double free in imap extension (Identified by Mateusz + Kocielski). (CVE-2010-4150).
    • +
    • Fixed NULL pointer dereference in ZipArchive::getArchiveComment. + (CVE-2010-3709).
    • +
    • Fixed possible flaw in open_basedir (CVE-2010-3436).
    • +
    • Fixed MOPS-2010-24, fix string validation. (CVE-2010-2950).
    • +
    • Fixed symbolic resolution support when the target is a DFS share.
    • +
    • Fixed bug #52929 (Segfault in filter_var with FILTER_VALIDATE_EMAIL with + large amount of data) (CVE-2010-3710).
    • +
    + +

    +Key Bug Fixes in PHP 5.3.4 include: +

    +
      +
    • Added stat support for zip stream.
    • +
    • Added follow_location (enabled by default) option for the http stream + support.
    • +
    • Added a 3rd parameter to get_html_translation_table. It now takes a charset hint, like htmlentities et al.
    • +
    • Implemented FR #52348, added new constant ZEND_MULTIBYTE to detect + zend multibyte at runtime.
    • +
    • Multiple improvements to the FPM SAPI.
    • +
    • Over 100 other bug fixes.
    • +
    + +

    +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 '
    ' incorrectly). (Felipe) + . Fixed bug #53304 (quot_print_decode does not handle lower-case hex digits). + (Ilia, daniel dot mueller at inexio dot net) + . Fixed bug #53248 (rawurlencode RFC 3986 EBCDIC support misses tilde char). + (Justin Martin) + . Fixed bug #53226 (file_exists fails on big filenames). (Adam) + . Fixed bug #53198 (changing INI setting "from" with ini_set did not have any + effect). (Gustavo) + . Fixed bug #53180 (post_max_size=0 not disabling the limit when the content + type is application/x-www-form-urlencoded or is not registered with PHP). + (gm at tlink dot de, Gustavo) + . Fixed bug #53141 (autoload misbehaves if called from closing session). + (ladislav at marek dot su) + . Fixed bug #53021 (In html_entity_decode, failure to convert numeric entities + with ENT_NOQUOTES and ISO-8859-1). Fixed and extended the fix of + ENT_NOQUOTES in html_entity_decode that had introduced the bug (rev + #185591) to other encodings. Additionaly, html_entity_decode() now doesn't + decode " if ENT_NOQUOTES is given. (Gustavo) + . Fixed bug #52931 (strripos not overloaded with function overloading + enabled). (Felipe) + . Fixed bug #52772 (var_dump() doesn't check for the existence of + get_class_name before calling it). (Kalle, Gustavo) + . Fixed bug #52534 (var_export array with negative key). (Felipe) + . Fixed bug #52327 (base64_decode() improper handling of leading padding in + strict mode). (Ilia) + . Fixed bug #52260 (dns_get_record fails with non-existing domain on Windows). + (a_jelly_doughnut at phpbb dot com, Pierre) + . Fixed bug #50953 (socket will not connect to IPv4 address when the host has + both IPv4 and IPv6 addresses, on Windows). (Gustavo, Pierre) + . Fixed bug #50524 (proc_open on Windows does not respect cwd as it does on + other platforms). (Pierre) + . Fixed bug #49687 (utf8_decode vulnerabilities and deficiencies in the number + of reported malformed sequences). (CVE-2010-3870) (Gustavo) + . Fixed bug #49407 (get_html_translation_table doesn't handle UTF-8). + (Gustavo) + . Fixed bug #48831 (php -i has different output to php --ini). (Richard, + Pierre) + . Fixed bug #47643 (array_diff() takes over 3000 times longer than php 5.2.4). + (Felipe) + . Fixed bug #47168 (printf of floating point variable prints maximum of 40 + decimal places). (Ilia) + . Fixed bug #46587 (mt_rand() does not check that max is greater than min). + (Ilia) + . Fixed bug #29085 (bad default include_path on Windows). (Pierre) + . Fixed bug #25927 (get_html_translation_table calls the ' ' instead of + '). (Gustavo) + +- Zend engine: + . Reverted fix for bug #51176 (Static calling in non-static method behaves + like $this->). (Felipe) + . Changed deprecated ini options on startup from E_WARNING to E_DEPRECATED. + (Kalle) + . Fixed NULL dereference in lex_scan on zend multibyte builds where the script + had a flex incompatible encoding and there was no converter. (Gustavo) + . Fixed covariance of return-by-ref constraints. (Etienne) + . Fixed bug #53305 (E_NOTICE when defining a constant starts with + __COMPILER_HALT_OFFSET__). (Felipe) + . Fixed bug #52939 (zend_call_function does not respect ZEND_SEND_PREFER_REF). + (Dmitry) + . 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 #52786 (PHP should reset section to [PHP] after ini sections). + (Fedora at famillecollet dot com) + . Fixed bug #52508 (newline problem with parse_ini_file+INI_SCANNER_RAW). + (Felipe) + . Fixed bug #52484 (__set() ignores setting properties with empty names). + (Felipe) + . Fixed bug #52361 (Throwing an exception in a destructor causes invalid + catching). (Dmitry) + . Fixed bug #51008 (Zend/tests/bug45877.phpt fails). (Dmitry) + +- Build issues: + . Fixed bug #52436 (Compile error if systems do not have stdint.h) + (Sriram Natarajan) + . Fixed bug #50345 (nanosleep not detected properly on some solaris versions). + (Ulf, Tony) + . Fixed bug #49215 (make fails on glob_wrapper). (Felipe) + +- Calendar extension: + . Fixed bug #52744 (cal_days_in_month incorrect for December 1 BCE). + (gpap at internet dot gr, Adam) + +- cURL extension: + . Fixed bug #52828 (curl_setopt does not accept persistent streams). + (Gustavo, Ilia) + . Fixed bug #52827 (cURL leaks handle and causes assertion error + (CURLOPT_STDERR)). (Gustavo) + . Fixed bug #52202 (CURLOPT_PRIVATE gets corrupted). (Ilia) + . Fixed bug #50410 (curl extension slows down PHP on Windows). (Pierre) + +- DateTime extension: + . Fixed bug #53297 (gettimeofday implementation in php/win32/time.c can return + 1 million microsecs). (ped at 7gods dot org) + . Fixed bug #52668 (Iterating over a dateperiod twice is broken). (Derick) + . Fixed bug #52454 (Relative dates and getTimestamp increments by one day). + (Derick) + . Fixed bug #52430 (date_parse parse 24:xx:xx as valid time). (Derick) + . Added support for the ( and ) delimiters/separators to + DateTime::createFromFormat(). (Derick) + +- DBA extension: + . Added Berkeley DB 5.1 support to the DBA extension. (Oracle Corp.) + +- DOM extension: + . Fixed bug #52656 (DOMCdataSection does not work with splitText). (Ilia) + +- Filter extension: + . Fixed the filter extension accepting IPv4 octets with a leading 0 as that + belongs to the unsupported "dotted octal" representation. (Gustavo) + . Fixed bug #53236 (problems in the validation of IPv6 addresses with leading + and trailing :: in the filter extension). (Gustavo) + . Fixed bug #50117 (problems in the validation of IPv6 addresses with IPv4 + addresses and ::). (Gustavo) + +- GD extension: + . Fixed bug #53492 (fix crash if anti-aliasing steps are invalid). (Pierre) + . Fixed potential memory leak on a png error (Rasmus, Paul Saab) + +- GMP extension: + . Fixed bug #52906 (gmp_mod returns negative result when non-negative is + expected). (Stas) + . Fixed bug #52849 (GNU MP invalid version match). (Adam) + +- Hash extension: + . Fixed bug #51003 (unaligned memory access in ext/hash/hash_tiger.c). + (Mike, Ilia) + +- Iconv extension: + . Fixed bug #52941 (The 'iconv_mime_decode_headers' function is skipping + headers). (Adam) + . Fixed bug #52599 (iconv output handler outputs incorrect content type + when flags are used). (Ilia) + . Fixed bug #51250 (iconv_mime_decode() does not ignore malformed Q-encoded + words). (Ilia) + +- Intl extension: + . Fixed crashes on invalid parameters in intl extension. (CVE-2010-4409). + (Stas, Maksymilian Arciemowicz) + . Added support for formatting the timestamp stored in a DateTime object. + (Stas) + . Fixed bug #50590 (IntlDateFormatter::parse result is limited to the integer + range). (Stas) + +- Mbstring extension: + . Fixed bug #53273 (mb_strcut() returns garbage with the excessive length + parameter). (CVE-2010-4156) (Mateusz Kocielski, Pierre, Moriyoshi) + . Fixed bug #52981 (Unicode casing table was out-of-date. Updated with + UnicodeData-6.0.0d7.txt and included the source of the generator program + with the distribution) (Gustavo). + . Fixed bug #52681 (mb_send_mail() appends an extra MIME-Version header). + (Adam) + +- MSSQL extension: + . Fixed possible crash in mssql_fetch_batch(). (Kalle) + . Fixed bug #52843 (Segfault when optional parameters are not passed in to + mssql_connect). (Felipe) + +- MySQL extension: + . Fixed bug #52636 (php_mysql_fetch_hash writes long value into int). + (Kalle, rein at basefarm dot no) + +- MySQLi extension: + . Fixed bug #52891 (Wrong data inserted with mysqli/mysqlnd when using + mysqli_stmt_bind_param and value> PHP_INT_MAX). (Andrey) + . Fixed bug #52686 (mysql_stmt_attr_[gs]et argument points to incorrect type). + (rein at basefarm dot no) + . Fixed bug #52654 (mysqli doesn't install headers with structures it uses). + (Andrey) + . Fixed bug #52433 (Call to undefined method mysqli::poll() - must be static). + (Andrey) + . Fixed bug #52417 (MySQLi build failure with mysqlnd on MacOS X). (Andrey) + . Fixed bug #52413 (MySQLi/libmysql build failure on OS X, FreeBSD). (Andrey) + . Fixed bug #52390 (mysqli_report() should be per-request setting). (Kalle) + . Fixed bug #52302 (mysqli_fetch_all does not work with MYSQLI_USE_RESULT). + (Andrey) + . Fixed bug #52221 (Misbehaviour of magic_quotes_runtime (get/set)). (Andrey) + . Fixed bug #45921 (Can't initialize character set hebrew). (Andrey) + +- MySQLnd: + . Fixed bug #52613 (crash in mysqlnd after hitting memory limit). (Andrey) + +- ODBC extension: + - Fixed bug #52512 (Broken error handling in odbc_execute). + (mkoegler at auto dot tuwien dot ac dot at) + +- Openssl extension: + . Fixed possible blocking behavior in openssl_random_pseudo_bytes on Windows. + (Pierre) + . Fixed bug #53136 (Invalid read on openssl_csr_new()). (Felipe) + . Fixed bug #52947 (segfault when ssl stream option capture_peer_cert_chain + used). (Felipe) + +- Oracle Database extension (OCI8): + . Fixed bug #53284 (Valgrind warnings in oci_set_* functions) (Oracle Corp.) + . Fixed bug #51610 (Using oci_connect causes PHP to take a long time to + exit). Requires Oracle 11.2.0.2 client libraries (or Oracle bug fix + 9891199) for this patch to have an effect. (Oracle Corp.) + +- PCNTL extension: + . Fixed bug #52784 (Race condition when handling many concurrent signals). + (nick dot telford at gmail dot com, Arnaud) + +- PCRE extension: + . Fixed bug #52971 (PCRE-Meta-Characters not working with utf-8). (Felipe) + . Fixed bug #52732 (Docs say preg_match() returns FALSE on error, but it + returns int(0)). (slugonamission at gmail dot com) + +- PHAR extension: + . Fixed bug #50987 (unaligned memory access in phar.c). + (geissert at debian dot org, Ilia) + +- PHP-FPM SAPI: + . Fixed bug #53412 (segfault when using -y). (fat) + . Fixed inconsistent backlog default value (-1) in FPM on many systems. (fat) + . Fixed bug #52501 (libevent made FPM crashed when forking -- libevent has + been removed). (fat) + . Fixed bug #52725 (gcc builtin atomic functions were sometimes used when they + were not available). (fat) + . Fixed bug #52693 (configuration file errors are not logged to stderr). (fat) + . Fixed bug #52674 (FPM Status page returns inconsistent Content-Type + headers). (fat) + . Fixed bug #52498 (libevent was not only linked to php-fpm). (fat) + +- PDO: + . Fixed bug #52699 (PDO bindValue writes long int 32bit enum). + (rein at basefarm dot no) + . Fixed bug #52487 (PDO::FETCH_INTO leaks memory). (Felipe) + +- PDO DBLib driver: + . Fixed bug #52546 (pdo_dblib segmentation fault when iterating MONEY values). + (Felipe) + +- PDO Firebird driver: + . Restored firebird support (VC9 builds only). (Pierre) + . Fixed bug #53335 (pdo_firebird did not implement rowCount()). + (preeves at ibphoenix dot com) + . Fixed bug #53323 (pdo_firebird getAttribute() crash). + (preeves at ibphoenix dot com) + +- PDO MySQL driver: + . Fixed bug #52745 (Binding params doesn't work when selecting a date inside a + CASE-WHEN). (Andrey) + +- PostgreSQL extension: + . Fixed bug #47199 (pg_delete() fails on NULL). (ewgraf at gmail dot com) + +- Reflection extension: + . Fixed ReflectionProperty::isDefault() giving a wrong result for properties + obtained with ReflectionClass::getProperties(). (Gustavo) +- Reflection extension: + . Fixed bug #53366 (Reflection doesnt get dynamic property value from + getProperty()). (Felipe) + . Fixed bug #52854 (ReflectionClass::newInstanceArgs does not work for classes + without constructors). (Johannes) + +- SOAP extension: + . Fixed bug #44248 (RFC2616 transgression while HTTPS request through proxy + with SoapClient object). (Dmitry) + +- SPL extension: + . Fixed bug #53362 (Segmentation fault when extending SplFixedArray). (Felipe) + . Fixed bug #53279 (SplFileObject doesn't initialise default CSV escape + character). (Adam) + . Fixed bug #53144 (Segfault in SplObjectStorage::removeAll()). (Felipe) + . Fixed bug #53071 (SPLObjectStorage defeats gc_collect_cycles). (Gustavo) + . Fixed bug #52573 (SplFileObject::fscanf Segmentation fault). (Felipe) + . Fixed bug #51763 (SplFileInfo::getType() does not work symbolic link + and directory). (Pierre) + . Fixed bug #50481 (Storing many SPLFixedArray in an array crashes). (Felipe) + . Fixed bug #50579 (RegexIterator::REPLACE doesn't work). (Felipe) + +- SQLite3 extension: + . Fixed bug #53463 (sqlite3 columnName() segfaults on bad column_number). + (Felipe) + +- Streams: + . Fixed forward stream seeking emulation in streams that don't support seeking + in situations where the read operation gives back less data than requested + and when there was data in the buffer before the emulation started. Also + made more consistent its behavior -- should return failure every time less + data than was requested was skipped. (Gustavo) + . Fixed bug #53241 (stream casting that relies on fdopen/fopencookie fails + with streams opened with, inter alia, the 'xb' mode). (Gustavo) + . Fixed bug #53006 (stream_get_contents has an unpredictable behavior when the + underlying stream does not support seeking). (Gustavo) + . Fixed bug #52944 (Invalid write on second and subsequent reads with an + inflate filter fed invalid data). (Gustavo) + . Fixed bug #52820 (writes to fopencookie FILE* not commited when seeking the + stream). (Gustavo) + +- WDDX extension: + . Fixed bug #52468 (wddx_deserialize corrupts integer field value when left + empty). (Felipe) + +- Zlib extension: + . Fixed bug #52926 (zlib fopen wrapper does not use context). (Gustavo) diff --git a/data/releases/5.3/5.3.4/release.json b/data/releases/5.3/5.3.4/release.json new file mode 100644 index 0000000000..044f58170d --- /dev/null +++ b/data/releases/5.3/5.3.4/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.4", + "date": "09 December 2010", + "tags": [], + "source": [ + { + "filename": "php-5.3.4.tar.bz2", + "name": "PHP 5.3.4 (tar.bz2)", + "md5": "2c069d8f690933e3bf6a8741ed818150" + }, + { + "filename": "php-5.3.4.tar.gz", + "name": "PHP 5.3.4 (tar.gz)", + "md5": "b69b36132899c5ca3bf155efa0218676" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.5/announcement.html b/data/releases/5.3/5.3.5/announcement.html new file mode 100644 index 0000000000..8f1031b684 --- /dev/null +++ b/data/releases/5.3/5.3.5/announcement.html @@ -0,0 +1,23 @@ +

    PHP 5.3.5 Release Announcement

    +

    +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: +

    +
      +
    • Fixed bug #53632 (PHP hangs on numeric value 2.2250738585072011e-308). (CVE-2010-4645)
    • +
    \ No newline at end of file diff --git a/data/releases/5.3/5.3.5/changes.txt b/data/releases/5.3/5.3.5/changes.txt new file mode 100644 index 0000000000..bd04cacd06 --- /dev/null +++ b/data/releases/5.3/5.3.5/changes.txt @@ -0,0 +1,2 @@ +- Fixed Bug #53632 (infinite loop with x87 fpu). (CVE-2010-4645) (Scott, + Rasmus) diff --git a/data/releases/5.3/5.3.5/release.json b/data/releases/5.3/5.3.5/release.json new file mode 100644 index 0000000000..882558ba9f --- /dev/null +++ b/data/releases/5.3/5.3.5/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.5", + "date": "06 January 2011", + "tags": [], + "source": [ + { + "filename": "php-5.3.5.tar.bz2", + "name": "PHP 5.3.5 (tar.bz2)", + "md5": "8aaf20c95e91f25c5b6a591e5d6d61b9" + }, + { + "filename": "php-5.3.5.tar.gz", + "name": "PHP 5.3.5 (tar.gz)", + "md5": "fb727a3ac72bf0ce37e1a20468a7bb81" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.6/announcement.html b/data/releases/5.3/5.3.6/announcement.html new file mode 100644 index 0000000000..0b81c60185 --- /dev/null +++ b/data/releases/5.3/5.3.6/announcement.html @@ -0,0 +1,44 @@ +

    PHP 5.3.6 Release Announcement

    + +

    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:

    +
      +
    • Enforce security in the fastcgi protocol parsing with fpm SAPI.
    • +
    • Fixed bug #54247 (format-string vulnerability on Phar). (CVE-2011-1153)
    • +
    • Fixed bug #54193 (Integer overflow in shmop_read()). (CVE-2011-1092)
    • +
    • Fixed bug #54055 (buffer overrun with high values for precision ini setting).
    • +
    • Fixed bug #54002 (crash on crafted tag in exif). (CVE-2011-0708)
    • +
    • Fixed bug #53885 (ZipArchive segfault with FL_UNCHANGED on empty archive). (CVE-2011-0421)
    • +
    + +

    Key enhancements in PHP 5.3.6 include:

    +
      +
    • Upgraded bundled Sqlite3 to version 3.7.4.
    • +
    • Upgraded bundled PCRE to version 8.11.
    • +
    • Added ability to connect to HTTPS sites through proxy with basic authentication using stream_context/http/header/Proxy-Authorization.
    • +
    • Added options to debug backtrace functions.
    • +
    • Changed default value of ini directive serialize_precision from 100 to 17.
    • +
    • Fixed Bug #53971 (isset() and empty() produce apparently spurious runtime error).
    • +
    • Fixed Bug #53958 (Closures can't 'use' shared variables by value and by reference).
    • +
    • Fixed bug #53577 (Regression introduced in 5.3.4 in open_basedir with a trailing forward slash).
    • +
    • Over 60 other bug fixes.
    • +
    + +

    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 Norte (CVE-2011-1092) + +- SNMP extension: + . Fixed bug #51336 (snmprealwalk (snmp v1) does not handle end of OID tree + correctly). (Boris Lytochkin) + +- SOAP extension: + . Fixed possible crash introduced by the NULL poisoning patch. + (Mateusz Kocielski, Pierre) + +- SPL extension: + . Fixed memory leak in DirectoryIterator::getExtension() and + SplFileInfo::getExtension(). (Felipe) + . Fixed bug #53914 (SPL assumes HAVE_GLOB is defined). (Chris Jones) + . Fixed bug #53515 (property_exists incorrect on ArrayObject null and 0 + values). (Felipe) + . Fixed bug #49608 (Using CachingIterator on DirectoryIterator instance + segfaults). (Felipe) + + . Added SplFileInfo::getExtension(). FR #48767. (Peter Cowburn) + +- SQLite3 extension: + . Fixed memory leaked introduced by the NULL poisoning patch. + (Mateusz Kocielski, Pierre) + . Fixed memory leak on SQLite3Result and SQLite3Stmt when assigning to a + reference. (Felipe) + . Add SQlite3_Stmt::readonly() for checking if a statement is read only. + (Scott) + . Implemented FR #53466 (SQLite3Result::columnType() should return false after + all of the rows have been fetched). (Scott) + +- Streams: + . Fixed bug #54092 (Segmentation fault when using HTTP proxy with the FTP + wrapper). (Gustavo) + . Fixed bug #53913 (Streams functions assume HAVE_GLOB is defined). (Chris + Jones) + . Fixed bug #53903 (userspace stream stat callback does not separate the + elements of the returned array before converting them). (Gustavo) + . Implemented FR #26158 (open arbitrary file descriptor with fopen). (Gustavo) + +- Tokenizer Extension + . Fixed bug #54089 (token_get_all() does not stop after __halt_compiler). + (Nikita Popov, Ilia) + +- XSL extension: + . Fixed memory leaked introduced by the NULL poisoning patch. + (Mateusz Kocielski, Pierre) + +- Zip extension: + . Added the filename into the return value of stream_get_meta_data(). (Hannes) + . Fixed bug #53923 (Zip functions assume HAVE_GLOB is defined). (Adam) + . Fixed bug #53893 (Wrong return value for ZipArchive::extractTo()). (Pierre) + . Fixed bug #53885 (ZipArchive segfault with FL_UNCHANGED on empty archive). + (Stas, Maksymilian Arciemowicz). (CVE-2011-0421) + . Fixed bug #53854 (Missing constants for compression type). (Richard, Adam) + . Fixed bug #53603 (ZipArchive should quiet stat errors). (brad dot froehle at + gmail dot com, Gustavo) + . Fixed bug #53579 (stream_get_contents() segfaults on ziparchive streams). + (Hannes) + . Fixed bug #53568 (swapped memset arguments in struct initialization). + (crrodriguez at opensuse dot org) + . Fixed bug #53166 (Missing parameters in docs and reflection definition). + (Richard) + . Fixed bug #49072 (feof never returns true for damaged file in zip). + (Gustavo, Richard Quadling) diff --git a/data/releases/5.3/5.3.6/release.json b/data/releases/5.3/5.3.6/release.json new file mode 100644 index 0000000000..81fa8bf838 --- /dev/null +++ b/data/releases/5.3/5.3.6/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.3.6", + "date": "19 March 2011", + "tags": [], + "source": [ + { + "filename": "php-5.3.6.tar.bz2", + "name": "PHP 5.3.6 (tar.bz2)", + "md5": "2286f5a82a6e8397955a0025c1c2ad98" + }, + { + "filename": "php-5.3.6.tar.gz", + "name": "PHP 5.3.6 (tar.gz)", + "md5": "88a2b00047bc53afbbbdf10ebe28a57e" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.3/5.3.7/announcement.html b/data/releases/5.3/5.3.7/announcement.html new file mode 100644 index 0000000000..c0fed4e600 --- /dev/null +++ b/data/releases/5.3/5.3.7/announcement.html @@ -0,0 +1,58 @@ +

    PHP 5.3.7 Release Announcement

    + +

    The PHP development team would like to announce the immediate +availability of PHP 5.3.7. This release focuses on improving the +stability of the PHP 5.3.x branch with over 90 bug fixes, some of which +are security related.

    + +

    Security Enhancements and Fixes in PHP 5.3.7:

    +
      +
    • Updated crypt_blowfish to 1.2. (CVE-2011-2483)
    • +
    • Fixed crash in error_log(). Reported by Mateusz Kocielski
    • +
    • Fixed buffer overflow on overlog salt in crypt().
    • +
    • Fixed bug #54939 (File path injection vulnerability in RFC1867 File upload filename). Reported by Krzysztof Kotowicz. (CVE-2011-2202)
    • +
    • Fixed stack buffer overflow in socket_connect(). (CVE-2011-1938)
    • +
    • Fixed bug #54238 (use-after-free in substr_replace()). (CVE-2011-1148)
    • +
    + +

    Key enhancements in PHP 5.3.7 include:

    +
      +
    • Upgraded bundled Sqlite3 to version 3.7.7.1
    • +
    • Upgraded bundled PCRE to version 8.12
    • +
    • Fixed bug #54910 (Crash when calling call_user_func with unknown function name)
    • +
    • Fixed bug #54585 (track_errors causes segfault)
    • +
    • Fixed bug #54262 (Crash when assigning value to a dimension in a non-array)
    • +
    • Fixed a crash inside dtor for error handling
    • +
    • Fixed bug #55339 (Segfault with allow_call_time_pass_reference = Off)
    • +
    • Fixed bug #54935 php_win_err can lead to crash
    • +
    • Fixed bug #54332 (Crash in zend_mm_check_ptr // Heap corruption)
    • +
    • Fixed bug #54305 (Crash in gc_remove_zval_from_buffer)
    • +
    • Fixed bug #54580 (get_browser() segmentation fault when browscap ini directive is set through php_admin_value)
    • +
    • Fixed bug #54529 (SAPI crashes on apache_config.c:197)
    • +
    • Fixed bug #54283 (new DatePeriod(NULL) causes crash).
    • +
    • Fixed bug #54269 (Short exception message buffer causes crash)
    • +
    • Fixed Bug #54221 (mysqli::get_warnings segfault when used in multi queries)
    • +
    • Fixed bug #54395 (Phar::mount() crashes when calling with wrong parameters)
    • +
    • Fixed bug #54384 (Dual iterators, GlobIterator, SplFileObject and SplTempFileObject crash when user-space classes don't call the parent constructor)
    • +
    • Fixed bug #54292 (Wrong parameter causes crash in SplFileObject::__construct())
    • +
    • Fixed bug #54291 (Crash iterating DirectoryIterator for dir name starting with \0)
    • +
    • Fixed bug #54281 (Crash in non-initialized RecursiveIteratorIterator)
    • +
    • Fixed bug #54623 (Segfault when writing to a persistent socket after closing a copy of the socket)
    • +
    • Fixed bug #54681 (addGlob() crashes on invalid flags)
    • +
    • Over 80 other bug fixes.
    • +
    + +

    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 @@ +

    PHP 5.3.8 Release Announcement

    + +

    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:

    + +
      +
    • Fixed bug #55439 (crypt() returns only the salt for MD5)
    • +
    • Reverted a change in timeout handling restoring PHP 5.3.6 behavior, + which caused mysqlnd SSL connections to hang (Bug #55283).
    • +
    + +

    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 @@ +

    PHP 5.3.9 Release Announcement

    + +

    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:

    + +
      +
    • Added max_input_vars directive to prevent attacks based on hash collisions. (CVE-2011-4885)
    • +
    • Fixed bug #60150 (Integer overflow during the parsing of invalid exif + header). (CVE-2011-4566)
    • +
    + +

    Key enhancements in PHP 5.3.9 include:

    + +
      +
    • Fixed bug #55475 (is_a() triggers autoloader, new optional 3rd argument to + is_a and is_subclass_of).
    • +
    • Fixed bug #55609 (mysqlnd cannot be built shared)
    • +
    • Many changes to the FPM SAPI module
    • +
    + +

    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 @@ +

    PHP 5.4.0 Release Announcement

    +

    +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: +

    +
      +
    • New language syntax including Traits, + shortened array syntax + and more
    • +
    • Improved performance and reduced memory consumption
    • +
    • Support for multibyte languages now available in all builds of PHP at the flip of a runtime switch
    • +
    • + Built-in webserver in CLI mode to simplify development workflows and testing
    • +
    • Cleaner code base thanks to the removal of multiple deprecated language features
    • +
    • Many more improvements and fixes
    • +
    + +

    +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) + . ). (Etienne) + . Fixed bug #60965 (Buffer overflow on htmlspecialchars/entities with + $double=false). (Gustavo) + . Fixed bug #60895 (Possible invalid handler usage in windows random + functions). (Pierre) + . Fixed bug #60879 (unserialize() Does not invoke __wakeup() on object). + (Pierre, Steve) + . Fixed bug #60825 (Segfault when running symfony 2 tests). + (Dmitry, Laruence) + . Fixed bug #60627 (httpd.worker segfault on startup with php_value). + . Fixed bug #60613 (Segmentation fault with $cls->{expr}() syntax). (Dmitry) + . Fixed bug #60611 (Segmentation fault with Cls::{expr}() syntax). (Laruence) + (Laruence) + . Fixed bug #60558 (Invalid read and writes). (Laruence) + . Fixed bug #60444 (Segmentation fault with include & class extending). + (Laruence, Dmitry). + . Fixed bug #60362 (non-existent sub-sub keys should not have values). + (Laruence, alan_k, Stas) + . Fixed bug #60350 (No string escape code for ESC (ascii 27), normally \e). + (php at mickweiss dot com) + . Fixed bug #60321 (ob_get_status(true) no longer returns an array when + buffer is empty). (Pierrick) + . Fixed bug #60282 (Segfault when using ob_gzhandler() with open buffers). + (Laruence) + . Fixed bug #60240 (invalid read/writes when unserializing specially crafted + strings). (Mike) + . Fixed bug #60227 (header() cannot detect the multi-line header with + CR(0x0D)). (rui) + . Fixed bug #60174 (Notice when array in method prototype error). + (Laruence) + . Fixed bug #60169 (Conjunction of ternary and list crashes PHP). + (Laruence) + . Fixed bug #60038 (SIGALRM cause segfault in php_error_cb). (Laruence) + (klightspeed at netspace dot net dot au) + . Fixed bug #55871 (Interruption in substr_replace()). (Stas) + . Fixed bug #55801 (Behavior of unserialize has changed). (Mike) + . Fixed bug #55758 (Digest Authenticate missed in 5.4) . (Laruence) + . Fixed bug #55748 (multiple NULL Pointer Dereference with zend_strndup()) + (CVE-2011-4153). (Stas) + . Fixed bug #55124 (recursive mkdir fails with current (dot) directory in path). + (Pierre) + . Fixed bug #55084 (Function registered by header_register_callback is + called only once per process). (Hannes) + . Implement FR #54514 (Get php binary path during script execution). + (Laruence) + . Fixed bug #52211 (iconv() returns part of string on error). (Felipe) + . Fixed bug #51860 (Include fails with toplevel symlink to /). (Dmitry) + +- Improved generic SAPI support: + . Added $_SERVER['REQUEST_TIME_FLOAT'] to include microsecond precision. + (Patrick) + . Added header_register_callback() which is invoked immediately + prior to the sending of headers and after default headers have + been added. (Scott) + . Added http_response_code() function. FR #52555. (Paul Dragoonis, Kalle) + . Fixed bug #55500 (Corrupted $_FILES indices lead to security concern). + (CVE-2012-1172). (Stas) + . Fixed bug #54374 (Insufficient validating of upload name leading to + corrupted $_FILES indices). (CVE-2012-1172). (Stas, lekensteyn at gmail dot com) + +- Improved CLI SAPI: + . Added built-in web server that is intended for testing purpose. + (Moriyoshi, Laruence, and fixes by Pierre, Derick, Arpad, + chobieee at gmail dot com) + . Added command line option --rz which shows information of the + named Zend extension. (Johannes) + . Interactive readline shell improvements: (Johannes) + . Added "cli.pager" php.ini setting to set a pager for output. + . Added "cli.prompt" php.ini setting to configure the shell prompt. + . Added shortcut #inisetting=value to change php.ini settings at run-time. + . Changed shell not to terminate on fatal errors. + . Interactive shell works with shared readline extension. FR #53878. + +- Improved CGI/FastCGI SAPI: (Dmitry) + . Added apache compatible functions: apache_child_terminate(), + getallheaders(), apache_request_headers() and apache_response_headers() + . Improved performance of FastCGI request parsing. + . Fixed reinitialization of SAPI callbacks after php_module_startup(). + (Dmitry) + +- Improved PHP-FPM SAPI: + . Removed EXPERIMENTAL flag. (fat) + . Fixed bug #60659 (FPM does not clear auth_user on request accept). + (bonbons at linux-vserver dot org) + +- Improved Litespeed SAPI: + . Fixed bug #55769 (Make Fails with "Missing Separator" error). (Adam) + +- Improved Date extension: + . Added the + modifier to parseFromFormat to allow trailing text in the + string to parse without throwing an error. (Stas, Derick) + +- Improved DBA extension: + . Added Tokyo Cabinet abstract DB support. (Michael Maclean) + . Added Berkeley DB 5 support. (Johannes, Chris Jones) + +- Improved DOM extension: + . Added the ability to pass options to loadHTML (Chregu, fxmulder at gmail dot com) + +- Improved filesystem functions: + . scandir() now accepts SCANDIR_SORT_NONE as a possible sorting_order value. + FR #53407. (Adam) + +- Improved HASH extension: + . Added Jenkins's one-at-a-time hash support. (Martin Jansen) + . Added FNV-1 hash support. (Michael Maclean) + . Made Adler32 algorithm faster. FR #53213. (zavasek at yandex dot ru) + . Removed Salsa10/Salsa20, which are actually stream ciphers (Mike) + . Fixed bug #60221 (Tiger hash output byte order) (Mike) + +- Improved intl extension: + . Added Spoofchecker class, allows checking for visibly confusable characters and + other security issues. (Scott) + . Added Transliterator class, allowing transliteration of strings. + (Gustavo) + . Added support for UTS #46. (Gustavo) + . Fixed build on Fedora 15 / Ubuntu 11. (Hannes) + . Fixed bug #55562 (grapheme_substr() returns false on big length). (Stas) + +- Improved JSON extension: + . Added new json_encode() option JSON_UNESCAPED_UNICODE. FR #53946. + (Alexander, Gwynne) + . Added JsonSerializable interface. (Sara) + . Added JSON_BIGINT_AS_STRING, extended json_decode() sig with $options. + (Sara) + . Added support for JSON_NUMERIC_CHECK option in json_encode() that converts + numeric strings to integers. (Ilia) + . Added new json_encode() option JSON_UNESCAPED_SLASHES. FR #49366. (Adam) + . Added new json_encode() option JSON_PRETTY_PRINT. FR #44331. (Adam) + +- Improved LDAP extension: + . Added paged results support. FR #42060. (ando@OpenLDAP.org, + iarenuno@eteo.mondragon.edu, jeanseb@au-fil-du.net, remy.saissy@gmail.com) + +- Improved mbstring extension: + . Added Shift_JIS/UTF-8 Emoji (pictograms) support. (Rui) + . Added JIS X0213:2004 (Shift_JIS-2004, EUC-JP-2004, ISO-2022-JP-2004) + support. (Rui) + . Ill-formed UTF-8 check for security enhancements. (Rui) + . Added MacJapanese (Shift_JIS) and gb18030 encoding support. (Rui) + . Added encode/decode in hex format to mb_[en|de]code_numericentity(). (Rui) + . Added user JIS X0213:2004 (Shift_JIS-2004, EUC-JP-2004, ISO-2022-JP-2004) + support. (Rui) + . Added the user defined area for CP936 and CP950 (Rui). + . Fixed bug #60306 (Characters lost while converting from cp936 to utf8). + (Laruence) + +- Improved MySQL extensions: + . MySQL: Deprecated mysql_list_dbs(). FR #50667. (Andrey) + . mysqlnd: Added named pipes support. FR #48082. (Andrey) + . MySQLi: Added iterator support in MySQLi. mysqli_result implements + Traversable. (Andrey, Johannes) + . PDO_mysql: Removed support for linking with MySQL client libraries older + than 4.1. (Johannes) + . ext/mysql, mysqli and pdo_mysql now use mysqlnd by default. (Johannes) + . Fixed bug #55473 (mysql_pconnect leaks file descriptors on reconnect). + (Andrey, Laruence) + . Fixed bug #55653 (PS crash with libmysql when binding same variable as + param and out). (Laruence) + +- Improved OpenSSL extension: + . Added AES support. FR #48632. (yonas dot y at gmail dot com, Pierre) + . Added no padding option to openssl_encrypt()/openssl_decrypt(). (Scott) + . Use php's implementation for Windows Crypto API in + openssl_random_pseudo_bytes. (Pierre) + . On error in openssl_random_pseudo_bytes() made sure we set strong result + to false. (Scott) + . Fixed possible attack in SSL sockets with SSL 3.0 / TLS 1.0. + CVE-2011-3389. (Scott) + . Fixed bug #61124 (Crash when decoding an invalid base64 encoded string). + (me at ktamura dot com, Scott) + +- Improved PDO: + . Fixed PDO objects binary incompatibility. (Dmitry) + +- PDO DBlib driver: + . Added nextRowset support. + . Fixed bug #50755 (PDO DBLIB Fails with OOM). + +- Improved PostgreSQL extension: + . Added support for "extra" parameter for PGNotify(). + (r dot i dot k at free dot fr, Ilia) + +- Improved PCRE extension: + . Changed third parameter of preg_match_all() to optional. FR #53238. (Adam) + +- Improved Readline extension: + . Fixed bug #54450 (Enable callback support when built against libedit). + (fedora at famillecollet dot com, Hannes) + +- Improved Reflection extension: + . Added ReflectionClass::newInstanceWithoutConstructor() to create a new + instance of a class without invoking its constructor. FR #55490. + (Sebastian) + . Added ReflectionExtension::isTemporary() and + ReflectionExtension::isPersistent() methods. (Johannes) + . Added ReflectionZendExtension class. (Johannes) + . Added ReflectionClass::isCloneable(). (Felipe) + +- Improved Session extension: + . Expose session status via new function, session_status (FR #52982) (Arpad) + . Added support for object-oriented session handlers. (Arpad) + . Added support for storing upload progress feedback in session data. (Arnaud) + . Changed session.entropy_file to default to /dev/urandom or /dev/arandom if + either is present at compile time. (Rasmus) + . Fixed bug #60860 (session.save_handler=user without defined function core + dumps). (Felipe) + . Implement FR #60551 (session_set_save_handler should support a core's + session handler interface). (Arpad) + . Fixed bug #60640 (invalid return values). (Arpad) + +- Improved SNMP extension (Boris Lytochkin): + . Added OO API. FR #53594 (php-snmp rewrite). + . Sanitized return values of existing functions. Now it returns FALSE on + failure. + . Allow ~infinite OIDs in GET/GETNEXT/SET queries. Autochunk them to max_oids + upon request. + . Introducing unit tests for extension with ~full coverage. + . IPv6 support. (FR #42918) + . Way of representing OID value can now be changed when SNMP_VALUE_OBJECT + is used for value output mode. Use or'ed SNMP_VALUE_LIBRARY(default if + not specified) or SNMP_VALUE_PLAIN. (FR #54502) + . Fixed bug #60749 (SNMP module should not strip non-standard SNMP port + from hostname). (Boris Lytochkin) + . Fixed bug #60585 (php build fails with USE flag snmp when IPv6 support + is disabled). (Boris Lytochkin) + . Fixed bug #53862 (snmp_set_oid_output_format does not allow returning to default) + . Fixed bug #46065 (snmp_set_quick_print() persists between requests) + . Fixed bug #45893 (Snmp buffer limited to 2048 char) + . Fixed bug #44193 (snmp v3 noAuthNoPriv doesn't work) + +- Improved SOAP extension: + . Added new SoapClient option "keep_alive". FR #60329. (Pierrick) + . Fixed basic HTTP authentication for WSDL sub requests. (Dmitry) + +- Improved SPL extension: + . Added RegexIterator::getRegex() method. (Joshua Thijssen) + . Added SplObjectStorage::getHash() hook. (Etienne) + . Added CallbackFilterIterator and RecursiveCallbackFilterIterator. (Arnaud) + . Added missing class_uses(..) as pointed out by #55266 (Stefan) + . Immediately reject wrong usages of directories under Spl(Temp)FileObject + and friends. (Etienne, Pierre) + . FilesystemIterator, GlobIterator and (Recursive)DirectoryIterator now use + the default stream context. (Hannes) + . Fixed bug #60201 (SplFileObject::setCsvControl does not expose third + argument via Reflection). (Peter) + . Fixed bug #55287 (spl_classes() not includes CallbackFilter classes) + (sasezaki at gmail dot com, salathe) + +- Improved Sysvshm extension: + . Fixed bug #55750 (memory copy issue in sysvshm extension). + (Ilia, jeffhuang9999 at gmail dot com) + +- Improved Tidy extension: + . Fixed bug #54682 (Tidy::diagnose() NULL pointer dereference). + (Maksymilian Arciemowicz, Felipe) + +- Improved Tokenizer extension: + . Fixed bug #54089 (token_get_all with regards to __halt_compiler is + not binary safe). (Nikita Popov) + +- Improved XSL extension: + . Added XsltProcessor::setSecurityPrefs($options) and getSecurityPrefs() to + define forbidden operations within XSLT stylesheets, default is not to + enable write operations from XSLT. Bug #54446 (Chregu, Nicolas Gregoire) + . XSL doesn't stop transformation anymore, if a PHP function can't be called + (Christian) + +- Improved ZLIB extension: + . Re-implemented non-file related functionality. (Mike) + . Fixed bug #55544 (ob_gzhandler always conflicts with zlib.output_compression). + (Mike) diff --git a/data/releases/5.4/5.4.0/release.json b/data/releases/5.4/5.4.0/release.json new file mode 100644 index 0000000000..45a5a02a5d --- /dev/null +++ b/data/releases/5.4/5.4.0/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.4.0", + "date": "01 March 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.0.tar.bz2", + "name": "PHP 5.4.0 (tar.bz2)", + "md5": "04bb6f9d71ea86ba05685439d50db074" + }, + { + "filename": "php-5.4.0.tar.gz", + "name": "PHP 5.4.0 (tar.gz)", + "md5": "46b72e274c6ea7e775245ffdb81c9ce5" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.1/announcement.html b/data/releases/5.4/5.4.1/announcement.html new file mode 100644 index 0000000000..c0eb76a635 --- /dev/null +++ b/data/releases/5.4/5.4.1/announcement.html @@ -0,0 +1,29 @@ +

    PHP 5.4.1 Release Announcement

    + +

    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:

    + +
      +
    • Fixed bug #54374 (Insufficient validating of upload name leading to + corrupted $_FILES indices). (CVE-2012-1172). (Stas, lekensteyn at + gmail dot com, Pierre)
    • +
    • Add open_basedir checks to readline_write_history and readline_read_history. + (Rasmus, reported by Mateusz Goik)
    • +
    + +

    Key enhancements in PHP 5.4.1 include:

    + +
      +
    • Added debug info handler to DOM objects. (Gustavo, Joey Smith)
    • +
    • Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)
    • +
    + +

    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*+). (Pierrick) + . Fixed bug #61165 (Segfault - strip_tags()). (Laruence) + . Fixed bug #61106 (Segfault when using header_register_callback). (Nikita + Popov) + . Fixed bug #61087 (Memory leak in parse_ini_file when specifying + invalid scanner mode). (Nikic, Laruence) + . Fixed bug #61072 (Memory leak when restoring an exception handler). + (Nikic, Laruence) + . Fixed bug #61058 (array_fill leaks if start index is PHP_INT_MAX). + (Laruence) + . Fixed bug #61052 (Missing error check in trait 'insteadof' clause). (Stefan) + . Fixed bug #61011 (Crash when an exception is thrown by __autoload + accessing a static property). (Laruence) + . Fixed bug #61000 (Exceeding max nesting level doesn't delete numerical + vars). (Laruence) + . Fixed bug #60978 (exit code incorrect). (Laruence) + . Fixed bug #60911 (Confusing error message when extending traits). (Stefan) + . Fixed bug #60801 (strpbrk() mishandles NUL byte). (Adam) + . Fixed bug #60717 (Order of traits in use statement can cause a fatal + error). (Stefan) + . Fixed bug #60573 (type hinting with "self" keyword causes weird errors). + (Laruence) + . Fixed bug #60569 (Nullbyte truncates Exception $message). (Ilia) + . Fixed bug #52719 (array_walk_recursive crashes if third param of the + function is by reference). (Nikita Popov) + . Improve performance of set_exception_handler while doing reset (Laruence) + +- fileinfo: + . Fix fileinfo test problems. (Anatoliy Belsky) + +- FPM + . Fixed bug #61430 (Transposed memset() params in sapi/fpm/fpm/fpm_shm.c). + (michaelhood at gmail dot com, Ilia) + +- Ibase + . Fixed bug #60947 (Segmentation fault while executing ibase_db_info). + (Ilia) + +- Installation + . Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones) + +- Intl: + . Fixed bug #61487 (Incorrent bounds checking in grapheme_strpos). + (Stas) + +- mbstring: + . MFH mb_ereg_replace_callback() for security enhancements. (Rui) + +- mysqli + . Fixed bug #61003 (mysql_stat() require a valid connection). (Johannes). + +- mysqlnd + . Fixed bug #61704 (Crash apache, phpinfo() threading issue). (Johannes) + . Fixed bug #60948 (mysqlnd FTBFS when -Wformat-security is enabled). + (Johannes) + +- PDO + . Fixed bug #61292 (Segfault while calling a method on an overloaded PDO + object). (Laruence) + +- PDO_mysql + . Fixed bug #61207 (PDO::nextRowset() after a multi-statement query doesn't + always work). (Johannes) + . Fixed bug #61194 (PDO should export compression flag with myslqnd). + (Johannes) + +- PDO_odbc + . Fixed bug #61212 (PDO ODBC Segfaults on SQL_SUCESS_WITH_INFO). (Ilia) + +- Phar + . Fixed bug #61184 (Phar::webPhar() generates headers with trailing NUL + bytes). (Nikita Popov) + +- Readline: + . Fixed bug #61088 (Memory leak in readline_callback_handler_install). + (Nikic, Laruence) + +- Reflection: + . Implemented FR #61602 (Allow access to the name of constant + used as function/method parameter's default value). (reeze.xia@gmail.com) + . Fixed bug #60968 (Late static binding doesn't work with + ReflectionMethod::invokeArgs()). (Laruence) + +- Session + . Fixed bug #60634 (Segmentation fault when trying to die() in + SessionHandler::write()). (Ilia) + +- SOAP + . Fixed bug #61423 (gzip compression fails). (Ilia) + . Fixed bug #60887 (SoapClient ignores user_agent option and sends no + User-Agent header). (carloschilazo at gmail dot com) + . Fixed bug #60842, #51775 (Chunked response parsing error when + chunksize length line is > 10 bytes). (Ilia) + . Fixed bug #49853 (Soap Client stream context header option ignored). + (Dmitry) + +- SPL: + . Fixed bug #61453 (SplObjectStorage does not identify objects correctly). + (Gustavo) + . Fixed bug #61347 (inconsistent isset behavior of Arrayobject). (Laruence) + +- Standard: + . Fixed memory leak in substr_replace. (Pierrick) + . Make max_file_uploads ini directive settable outside of php.ini (Rasmus) + . Fixed bug #61409 (Bad formatting on phpinfo()). (Jakub Vrana) + . Fixed bug #60222 (time_nanosleep() does validate input params). (Ilia) + . Fixed bug #60106 (stream_socket_server silently truncates long unix socket + paths). (Ilia) + +- XMLRPC: + . Fixed bug #61264 (xmlrpc_parse_method_descriptions leaks temporary + variable). (Nikita Popov) + . Fixed bug #61097 (Memory leak in xmlrpc functions copying zvals). (Nikita + Popov) + +- Zlib: + . Fixed bug #61306 (initialization of global inappropriate for ZTS). (Gustavo) + . Fixed bug #61287 (A particular string fails to decompress). (Mike) + . Fixed bug #61139 (gzopen leaks when specifying invalid mode). (Nikita Popov) diff --git a/data/releases/5.4/5.4.1/release.json b/data/releases/5.4/5.4.1/release.json new file mode 100644 index 0000000000..c0a91e69e9 --- /dev/null +++ b/data/releases/5.4/5.4.1/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.4.1", + "date": "26 April 2012", + "tags": [], + "source": [ + { + "filename": "php-5.4.1.tar.bz2", + "name": "PHP 5.4.1 (tar.bz2)", + "md5": "5b9529ed89dbc48c498e9693d1af3caf" + }, + { + "filename": "php-5.4.1.tar.gz", + "name": "PHP 5.4.1 (tar.gz)", + "md5": "acd566dbd70f855c19d17fc3c0e876a2" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.10/announcement.html b/data/releases/5.4/5.4.10/announcement.html new file mode 100644 index 0000000000..b1ff33ec1a --- /dev/null +++ b/data/releases/5.4/5.4.10/announcement.html @@ -0,0 +1,10 @@ +

    PHP 5.4.10 Release Announcement

    + +

    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 @@ +

    PHP 5.4.11 Release Announcement

    + +

    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 @@ +

    PHP 5.4.12 Release Announcement

    + +

    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 @@ +

    PHP 5.4.13 Release Announcement

    + +

    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 @@ +

    PHP 5.4.14 Release Announcement

    + +

    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 @@ +

    PHP 5.4.15 Release Announcement

    + +

    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 @@ +

    PHP 5.4.16 Release Announcement

    + +

    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 @@ +

    PHP 5.4.17 Release Announcement

    + +

    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 @@ +

    PHP 5.4.18 Release Announcement

    + +

    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 @@ +

    PHP 5.4.19 Release Announcement

    + +

    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 @@ +

    PHP 5.4.2 Release Announcement

    + +

    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 @@ +

    PHP 5.4.20 Release Announcement

    + +

    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 @@ +

    PHP 5.4.21 Release Announcement

    + +

    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 @@ +

    PHP 5.4.22 Release Announcement

    + +

    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 @@ +

    PHP 5.4.23 Release Announcement

    + +

    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 @@ +

    PHP 5.4.24 Release Announcement

    + +

    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 @@ +

    PHP 5.4.25 Release Announcement

    + +

    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 @@ +

    PHP 5.4.26 Release Announcement

    + +

    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 @@ +

    PHP 5.4.27 Release Announcement

    + +

    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 @@ +

    PHP 5.4.28 Release Announcement

    + +

    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 ( cannot find files with relative paths + when loaded with "file://"). (Anatol) + +- 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) diff --git a/data/releases/5.4/5.4.28/release.json b/data/releases/5.4/5.4.28/release.json new file mode 100644 index 0000000000..a05d3a40b7 --- /dev/null +++ b/data/releases/5.4/5.4.28/release.json @@ -0,0 +1,21 @@ +{ + "version": "5.4.28", + "date": "2 May 2014", + "tags": [], + "source": [ + { + "filename": "php-5.4.28.tar.bz2", + "name": "PHP 5.4.28 (tar.bz2)", + "sha256": "3fe780e5179e90c4d37276e79acc0d0692f1bc0911985af694b92c664c0ef3c4" + }, + { + "filename": "php-5.4.28.tar.gz", + "name": "PHP 5.4.28 (tar.gz)", + "sha256": "5140292c94a0301db7a807e6b3aadf6ee966346d0005aa3d15464bd4c595a786" + }, + { + "link": "http:\/\/windows.php.net\/download\/#php-5.4", + "name": "Windows 5.4.28 binaries and source" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.4/5.4.29/announcement.html b/data/releases/5.4/5.4.29/announcement.html new file mode 100644 index 0000000000..d866fdb42c --- /dev/null +++ b/data/releases/5.4/5.4.29/announcement.html @@ -0,0 +1,11 @@ +

    PHP 5.4.29 Release Announcement

    + +

    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 @@ +

    PHP 5.4.3 Release Announcement

    + +

    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 @@ +

    PHP 5.4.30 Release Announcement

    + +

    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 @@ +

    PHP 5.4.31 Release Announcement

    + +

    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 @@ +

    PHP 5.4.32 Release Announcement

    + +

    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 @@ +

    PHP 5.4.33 Release Announcement

    + +

    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 @@ +

    PHP 5.4.34 Release Announcement

    + +

    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 @@ +

    PHP 5.4.35 Release Announcement

    + +

    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 @@ +

    PHP 5.4.36 Release Announcement

    + +

    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 @@ +

    PHP 5.4.37 Release Announcement

    + +

    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 @@ +

    PHP 5.4.38 Release Announcement

    + +

    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 @@ +

    PHP 5.4.39 Release Announcement

    + +

    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 @@ +

    PHP 5.4.4 Release Announcement

    + +

    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 @@ +

    PHP 5.4.40 Release Announcement

    + +

    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 @@ +

    PHP 5.4.41 Release Announcement

    + +

    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 @@ +

    PHP 5.4.42 Release Announcement

    + +

    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 @@ +

    PHP 5.4.43 Release Announcement

    + +

    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 @@ +

    PHP 5.4.44 Release Announcement

    + +

    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 @@ +

    PHP 5.4.45 Release Announcement

    + +

    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 @@ +

    PHP 5.4.5 Release Announcement

    + +

    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 @@ +

    PHP 5.4.6 Release Announcement

    + +

    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 @@ +

    PHP 5.4.7 Release Announcement

    + +

    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 @@ +

    PHP 5.4.8 Release Announcement

    + +

    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 @@ +

    PHP 5.4.9 Release Announcement

    + +

    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 @@ +

    PHP 5.5.0 Release Announcement

    +

    +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: +

    +
      +
    • PHP logo GUIDs have been removed.
    • +
    • Windows XP and 2003 support dropped.
    • +
    • Case insensitivity is no longer locale specific. All case insensitive matching for function, class and constant names is now performed in a locale independent manner according to ASCII rules.
    • +
    + +

    +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 @@ +

    PHP 5.5.1 Release Announcement

    +

    +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 @@ +

    PHP 5.5.10 Release Announcement

    + +

    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 @@ +

    PHP 5.5.11 Release Announcement

    + +

    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 @@ +

    PHP 5.5.12 Release Announcement

    + +

    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 ( cannot find files with relative paths + when loaded with "file://"). (Anatol) + +- 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) diff --git a/data/releases/5.5/5.5.12/release.json b/data/releases/5.5/5.5.12/release.json new file mode 100644 index 0000000000..6cfd3da34d --- /dev/null +++ b/data/releases/5.5/5.5.12/release.json @@ -0,0 +1,17 @@ +{ + "version": "5.5.12", + "date": "30 Apr 2014", + "tags": [], + "source": [ + { + "filename": "php-5.5.12.tar.bz2", + "name": "PHP 5.5.12 (tar.bz2)", + "sha256": "519ee29e28532782676f3d8e31a808ffbfee383e0279ccc8cbd2b12ed53c2335" + }, + { + "filename": "php-5.5.12.tar.gz", + "name": "PHP 5.5.12 (tar.gz)", + "sha256": "a10c6e6ce1145762d6c15ca7ce1aeaab69662c197d24e1294c2519aa85c97bd6" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.13/announcement.html b/data/releases/5.5/5.5.13/announcement.html new file mode 100644 index 0000000000..3b2d29c9cc --- /dev/null +++ b/data/releases/5.5/5.5.13/announcement.html @@ -0,0 +1,12 @@ +

    PHP 5.5.13 Release Announcement

    + +

    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 @@ +

    PHP 5.5.14 Release Announcement

    + +

    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 @@ +

    PHP 5.5.15 Release Announcement

    + +

    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 @@ +

    PHP 5.5.16 Release Announcement

    + +

    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 @@ +

    PHP 5.5.17 Release Announcement

    + +

    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 @@ +

    PHP 5.5.18 Release Announcement

    + +

    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 @@ +

    PHP 5.5.19 Release Announcement

    + +

    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 @@ +

    PHP 5.5.2 Release Announcement

    + +

    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 @@ +

    PHP 5.5.20 Release Announcement

    + +

    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 @@ +

    PHP 5.5.21 Release Announcement

    + +

    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 @@ +

    PHP 5.5.22 Release Announcement

    + +

    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 @@ +

    PHP 5.5.23 Release Announcement

    + +

    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 @@ +

    PHP 5.5.24 Release Announcement

    + +

    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 of "). (Derick Rethans) + +- Enchant: + . Fixed bug #65406 (Enchant broker plugins are in the wrong place in windows + builds). (Anatol) + +- Ereg: + . Fixed bug #68740 (NULL Pointer Dereference). (Laruence) + +- Fileinfo: + . Fixed bug #68819 (Fileinfo on specific file causes spurious OOM and/or + segfault). (Anatol Belski) + +- Filter: + . Fixed bug #69202 (FILTER_FLAG_STRIP_BACKTICK ignored unless other + flags are used). (Jeff Welch) + . Fixed bug #69203 (FILTER_FLAG_STRIP_HIGH doesn't strip ASCII 127). (Jeff + Welch) + +- Mbstring: + . Fixed bug #68846 (False detection of CJK Unified Ideographs Extension E). + (Masaki Kagaya) + +- ODBC: + . Fixed bug #69354 (Incorrect use of SQLColAttributes with ODBC 3.0). + (Anatol) + +- OPCache: + . Fixed bug #69281 (opcache_is_script_cached no longer works). (danack) + . Fixed bug #68677 (Use After Free). (CVE-2015-1351) (Laruence) + +- OpenSSL: + . Fixed bug #67403 (Add signatureType to openssl_x509_parse). + . Add a check for RAND_egd to allow compiling against LibreSSL (Leigh) + +- Phar: + . Fixed bug #64343 (PharData::extractTo fails for tarball created by BSD tar). + (Mike) + . Fixed bug #64931 (phar_add_file is too restrictive on filename). (Mike) + . Fixed bug #65467 (Call to undefined method cli_arg_typ_string). (Mike) + . Fixed bug #67761 (Phar::mapPhar fails for Phars inside a path containing + ".tar"). (Mike) + . Fixed bug #69324 (Buffer Over-read in unserialize when parsing Phar). (Stas) + . Fixed bug #69441 (Buffer Overflow when parsing tar/zip/phar in + phar_set_inode). (Stas) + +- Postgres: + . Fixed bug #68741 (Null pointer dereference). (CVE-2015-1352) (Laruence) + +- SOAP: + . Fixed bug #69152 (Type Confusion Infoleak Vulnerability in unserialize() + with SoapFault). (Dmitry) + . Fixed bug #69293 (NEW segfault when using SoapClient::__setSoapHeader + (bisected, regression)). (thomas at shadowweb dot org, Laruence) + +- SPL: + . Fixed bug #69227 (Use after free in zval_scan caused by + spl_object_storage_get_gc). (adam dot scarr at 99designs dot com) + +- Sqlite3: + . Fixed bug #68760 (SQLITE segfaults if custom collator throws an exception). + (Dan Ackroyd) + . Fixed bug #69287 (Upgrade bundled sqlite to 3.8.8.3). (Anatol) + . Fixed bug #66550 (SQLite prepared statement use-after-free). (Sean Heelan) diff --git a/data/releases/5.5/5.5.24/release.json b/data/releases/5.5/5.5.24/release.json new file mode 100644 index 0000000000..3e854c8d5e --- /dev/null +++ b/data/releases/5.5/5.5.24/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.5.24", + "date": "16 Apr 2015", + "tags": [], + "source": [ + { + "filename": "php-5.5.24.tar.bz2", + "name": "PHP 5.5.24 (tar.bz2)", + "sha256": "801b5cf2e0c01b07314d4ac3c8a7c28d524bdd8263ebdd0e33a99008251316a2" + }, + { + "filename": "php-5.5.24.tar.gz", + "name": "PHP 5.5.24 (tar.gz)", + "sha256": "43e6b83fe8151f8d2062ca4da915312fc92e47789801049231c705a8b29b05bc" + }, + { + "filename": "php-5.5.24.tar.xz", + "name": "PHP 5.5.24 (tar.xz)", + "sha256": "ffb6235a25043cab71e6445cfc9e8bf16ae80a2835f0373cdd948fcc31eafe57" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.5/5.5.25/announcement.html b/data/releases/5.5/5.5.25/announcement.html new file mode 100644 index 0000000000..45bba36bdc --- /dev/null +++ b/data/releases/5.5/5.5.25/announcement.html @@ -0,0 +1,11 @@ +

    PHP 5.5.25 Release Announcement

    + +

    The PHP development team announces the immediate availability of PHP + 5.5.25. Several bugs have been fixed. + + All PHP 5.5 users are encouraged to upgrade to this version. +

    + +

    For source downloads of PHP 5.5.25 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. \ No newline at end of file diff --git a/data/releases/5.5/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 @@ +

    PHP 5.5.26 Release Announcement

    + +

    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 @@ +

    PHP 5.5.27 Release Announcement

    + +

    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 @@ +

    PHP 5.5.28 Release Announcement

    + +

    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 @@ +

    PHP 5.5.29 Release Announcement

    + +

    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 @@ +

    PHP 5.5.3 Release Announcement

    + +

    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 @@ +

    PHP 5.5.30 Release Announcement

    + +

    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 @@ +

    PHP 5.5.31 Release Announcement

    + +

    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 @@ +

    PHP 5.5.32 Release Announcement

    + +

    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 @@ +

    PHP 5.5.33 Release Announcement

    + +

    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 @@ +

    PHP 5.5.34 Release Announcement

    + +

    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 @@ +

    PHP 5.5.35 Release Announcement

    + +

    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 @@ +

    PHP 5.5.36 Release Announcement

    + +

    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 @@ +

    PHP 5.5.37 Release Announcement

    + +

    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 @@ +

    PHP 5.5.38 Release Announcement

    + +

    + 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 @@ +

    PHP 5.5.4 Release Announcement

    + +

    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 @@ +

    PHP 5.5.5 Release Announcement

    + +

    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 @@ +

    PHP 5.5.6 Release Announcement

    + +

    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 @@ +

    PHP 5.5.7 Release Announcement

    + +

    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 @@ +

    PHP 5.5.8 Release Announcement

    + +

    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 @@ +

    PHP 5.5.9 Release Announcement

    + +

    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 @@ +

    PHP 5.6.0 Release Announcement

    + +

    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:

    + + +

    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: +

    + +
      +
    • Array keys won't be overwritten when defining an array as a property of a class via an array literal.
    • +
    • json_decode() is more strict in JSON syntax parsing.
    • +
    • Stream wrappers now verify peer certificates and host names by default when using SSL/TLS.
    • +
    • GMP resources are now objects.
    • +
    • Mcrypt functions now require valid keys and IVs.
    • +
    + +

    + 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 ( cannot find files with relative paths + when loaded with "file://"). (Anatol) + +- Zip: + . update libzip to version 1.11.2. + PHP don't use any ilibzip private symbol anymore. (Pierre, Remi) + . new method ZipArchive::setPassword($password). (Pierre) + . add --with-libzip option to build with system libzip. (Remi) + . new methods: + ZipArchive::setExternalAttributesName($name, $opsys, $attr [, $flags]) + ZipArchive::setExternalAttributesIndex($idx, $opsys, $attr [, $flags]) + ZipArchive::getExternalAttributesName($name, &$opsys, &$attr [, $flags]) + ZipArchive::getExternalAttributesIndex($idx, &$opsys, &$attr [, $flags]) + +- Zlib: + . Fixed bug #67865 (internal corruption phar error). Mike + . Fixed bug #67724 (chained zlib filters silently fail with large amounts of + data). (Mike) diff --git a/data/releases/5.6/5.6.0/release.json b/data/releases/5.6/5.6.0/release.json new file mode 100644 index 0000000000..9c4b3b8d57 --- /dev/null +++ b/data/releases/5.6/5.6.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.0", + "date": "28 Aug 2014", + "tags": [], + "source": [ + { + "filename": "php-5.6.0.tar.bz2", + "name": "PHP 5.6.0 (tar.bz2)", + "sha256": "097af1be34fc73965e6f8401fd10e73eb56e1969ed4ffd691fb7e91606d0fc09" + }, + { + "filename": "php-5.6.0.tar.gz", + "name": "PHP 5.6.0 (tar.gz)", + "sha256": "284b85376c630a6a7163e5278d64b8526fa1324fe5fd5d21174b54e2c056533f" + }, + { + "filename": "php-5.6.0.tar.xz", + "name": "PHP 5.6.0 (tar.xz)", + "sha256": "8fc5411cd05cc6cc663247e588931fe67b1dc0e42550fa28ab2c943ad84eda02" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.1/announcement.html b/data/releases/5.6/5.6.1/announcement.html new file mode 100644 index 0000000000..135e3881b7 --- /dev/null +++ b/data/releases/5.6/5.6.1/announcement.html @@ -0,0 +1,12 @@ +

    PHP 5.6.1 Release Announcement

    + +

    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 @@ +

    PHP 5.6.10 Release Announcement

    + +

    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 @@ +

    PHP 5.6.11 Release Announcement

    + +

    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 @@ +

    PHP 5.6.12 Release Announcement

    + +

    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 @@ +

    PHP 5.6.13 Release Announcement

    + +

    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 @@ +

    PHP 5.6.14 Release Announcement

    + +

    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 @@ +

    PHP 5.6.15 Release Announcement

    + +

    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 @@ +

    PHP 5.6.16 Release Announcement

    + +

    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 @@ +

    PHP 5.6.17 Release Announcement

    + +

    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 @@ +

    PHP 5.6.18 Release Announcement

    + +

    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 @@ +

    PHP 5.6.19 Release Announcement

    + +

    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 @@ +

    PHP 5.6.2 Release Announcement

    + +

    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 @@ +

    PHP 5.6.20 Release Announcement

    + +

    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 @@ +

    PHP 5.6.21 Release Announcement

    + +

    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 @@ +

    PHP 5.6.22 Release Announcement

    + +

    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 @@ +

    PHP 5.6.23 Release Announcement

    + +

    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 @@ +

    PHP 5.6.24 Release Announcement

    + +

    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 @@ +

    PHP 5.6.25 Release Announcement

    + +

    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 @@ +

    PHP 5.6.26 Release Announcement

    + +

    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 @@ +

    PHP 5.6.27 Release Announcement

    + +

    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 @@ +

    PHP 5.6.28 Release Announcement

    + +

    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 @@ +

    PHP 5.6.29 Release Announcement

    + +

    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 @@ +

    PHP 5.6.3 Release Announcement

    + +

    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 @@ +

    PHP 5.6.30 Release Announcement

    + +

    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 @@ +

    PHP 5.6.31 Release Announcement

    + +

    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 @@ +

    PHP 5.6.32 Release Announcement

    + +

    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 @@ +

    PHP 5.6.33 Release Announcement

    + +

    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 @@ +

    PHP 5.6.34 Release Announcement

    + +

    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 @@ +

    PHP 5.6.35 Release Announcement

    + +

    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 @@ +

    PHP 5.6.36 Release Announcement

    + +

    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 @@ +

    PHP 5.6.37 Release Announcement

    + +

    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 @@ +

    PHP 5.6.38 Release Announcement

    + +

    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 @@ +

    PHP 5.6.39 Release Announcement

    + +

    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 @@ +

    PHP 5.6.4 Release Announcement

    + +

    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 @@ +

    PHP 5.6.40 Release Announcement

    + +

    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 @@ +

    PHP 5.6.5 Release Announcement

    + +

    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 @@ +

    PHP 5.6.6 Release Announcement

    + +

    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 @@ +

    PHP 5.6.7 Release Announcement

    + +

    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 @@ +

    PHP 5.6.8 Release Announcement

    + +

    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 of "). (Derick Rethans) + +- Enchant: + . Fixed bug #65406 (Enchant broker plugins are in the wrong place in windows + builds). (Anatol) + +- Ereg: + . Fixed bug #68740 (NULL Pointer Dereference). (Laruence) + +- Fileinfo: + . Fixed bug #68819 (Fileinfo on specific file causes spurious OOM and/or + segfault). (Anatol Belski) + +- Filter: + . Fixed bug #69202 (FILTER_FLAG_STRIP_BACKTICK ignored unless other + flags are used). (Jeff Welch) + . Fixed bug #69203 (FILTER_FLAG_STRIP_HIGH doesn't strip ASCII 127). (Jeff + Welch) + +- Mbstring: + . Fixed bug #68846 (False detection of CJK Unified Ideographs Extension E). + (Masaki Kagaya) + +- OPCache: + . Fixed bug #69297 (function_exists strange behavior with OPCache on + disabled function). (Laruence) + . Fixed bug #69281 (opcache_is_script_cached no longer works). (danack) + . Fixed bug #68677 (Use After Free). (CVE-2015-1351) (Laruence) + +- OpenSSL: + . Fixed bugs #68853, #65137 (Buffered crypto stream data breaks IO polling + in stream_select() contexts) (Chris Wright) + . Fixed bug #69197 (openssl_pkcs7_sign handles default value incorrectly) + (Daniel Lowrey) + . Fixed bug #69215 (Crypto servers should send client CA list) + (Daniel Lowrey) + . Add a check for RAND_egd to allow compiling against LibreSSL (Leigh) + +- Phar: + . Fixed bug #64343 (PharData::extractTo fails for tarball created by BSD tar). + (Mike) + . Fixed bug #64931 (phar_add_file is too restrictive on filename). (Mike) + . Fixed bug #65467 (Call to undefined method cli_arg_typ_string). (Mike) + . Fixed bug #67761 (Phar::mapPhar fails for Phars inside a path containing + ".tar"). (Mike) + . Fixed bug #69324 (Buffer Over-read in unserialize when parsing Phar). (Stas) + . Fixed bug #69441 (Buffer Overflow when parsing tar/zip/phar in + phar_set_inode). (Stas) + +- Postgres: + . Fixed bug #68741 (Null pointer dereference). (CVE-2015-1352) (Laruence) + +- SOAP: + . Fixed bug #69152 (Type Confusion Infoleak Vulnerability in unserialize() + with SoapFault). (Dmitry) + . Fixed bug #69293 (NEW segfault when using SoapClient::__setSoapHeader + (bisected, regression)). (Laruence) + +- SPL: + . Fixed bug #69227 (Use after free in zval_scan caused by + spl_object_storage_get_gc). (adam dot scarr at 99designs dot com) + +- Sqlite3: + . Fixed bug #68760 (SQLITE segfaults if custom collator throws an exception). + (Dan Ackroyd) + . Fixed bug #69287 (Upgrade bundled libsqlite to 3.8.8.3). (Anatol) + . Fixed bug #66550 (SQLite prepared statement use-after-free). (Sean Heelan) diff --git a/data/releases/5.6/5.6.8/release.json b/data/releases/5.6/5.6.8/release.json new file mode 100644 index 0000000000..8aa5ca09c2 --- /dev/null +++ b/data/releases/5.6/5.6.8/release.json @@ -0,0 +1,22 @@ +{ + "version": "5.6.8", + "date": "16 Apr 2015", + "tags": [], + "source": [ + { + "filename": "php-5.6.8.tar.bz2", + "name": "PHP 5.6.8 (tar.bz2)", + "sha256": "0af0045745d61eeb74a3ea744529a2481b27cb689da720e6c0250675043724e4" + }, + { + "filename": "php-5.6.8.tar.gz", + "name": "PHP 5.6.8 (tar.gz)", + "sha256": "c5b1c75c5671c239473eb611129f33ac432a55a1c341990b70009a2aa3b8dbc3" + }, + { + "filename": "php-5.6.8.tar.xz", + "name": "PHP 5.6.8 (tar.xz)", + "sha256": "4c417387b88e100ca306adeda8051eb9fad93dae8da983f962dabf91a14b2b7b" + } + ] +} \ No newline at end of file diff --git a/data/releases/5.6/5.6.9/announcement.html b/data/releases/5.6/5.6.9/announcement.html new file mode 100644 index 0000000000..34696b8c50 --- /dev/null +++ b/data/releases/5.6/5.6.9/announcement.html @@ -0,0 +1,12 @@ +

    PHP 5.6.9 Release Announcement

    + +

    The PHP development team announces the immediate availability of PHP + 5.6.9. Several bugs have been fixed. + + All PHP 5.6 users are encouraged to upgrade to this version. +

    + +

    For source downloads of PHP 5.6.9 please visit our downloads page, + Windows binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +

    \ No newline at end of file diff --git a/data/releases/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 @@ +

    PHP 7.0.0 Release Announcement

    + +

    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 +

    +
      +
    • Improved performance: PHP 7 is up to twice as fast as PHP 5.6
    • +
    • Significantly reduced memory usage
    • +
    • Abstract Syntax Tree
    • +
    • Consistent 64-bit support
    • +
    • Improved Exception hierarchy
    • +
    • Many fatal errors converted to Exceptions
    • +
    • Secure random number generator
    • +
    • Removed old and unsupported SAPIs and extensions
    • +
    • The null coalescing operator (??)
    • +
    • Return and Scalar Type Declarations
    • +
    • Anonymous Classes
    • +
    • Zero cost asserts
    • +
    + +

    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 @@ +

    PHP 7.0.1 Release Announcement

    + +

    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 @@ +

    PHP 7.0.10 Release Announcement

    + +

    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 @@ +

    PHP 7.0.11 Release Announcement

    + +

    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 @@ +

    PHP 7.0.12 Release Announcement

    + +

    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 @@ +

    PHP 7.0.13 Release Announcement

    + +

    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 @@ +

    PHP 7.0.14 Release Announcement

    + +

    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 @@ +

    PHP 7.0.15 Release Announcement

    + +

    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 @@ +

    PHP 7.0.16 Release Announcement

    + +

    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 @@ +

    PHP 7.0.17 Release Announcement

    + +

    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 @@ +

    PHP 7.0.18 Release Announcement

    + +

    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 @@ +

    PHP 7.0.19 Release Announcement

    + +

    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 @@ +

    PHP 7.0.2 Release Announcement

    + +

    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 @@ +

    PHP 7.0.20 Release Announcement

    + +

    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 @@ +

    PHP 7.0.21 Release Announcement

    + +

    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 @@ +

    PHP 7.0.22 Release Announcement

    + +

    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 @@ +

    PHP 7.0.23 Release Announcement

    + +

    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 @@ +

    PHP 7.0.24 Release Announcement

    + +

    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 @@ +

    PHP 7.0.25 Release Announcement

    + +

    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 @@ +

    PHP 7.0.26 Release Announcement

    + +

    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 @@ +

    PHP 7.0.27 Release Announcement

    + +

    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 @@ +

    PHP 7.0.28 Release Announcement

    + +

    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 @@ +

    PHP 7.0.29 Release Announcement

    + +

    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 @@ +

    PHP 7.0.3 Release Announcement

    + +

    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 @@ +

    PHP 7.0.30 Release Announcement

    + +

    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 @@ +

    PHP 7.0.31 Release Announcement

    + +

    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 @@ +

    PHP 7.0.32 Release Announcement

    + +

    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 @@ +

    PHP 7.0.33 Release Announcement

    + +

    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 @@ +

    PHP 7.0.4 Release Announcement

    + +

    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 @@ +

    PHP 7.0.5 Release Announcement

    + +

    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 @@ +

    PHP 7.0.6 Release Announcement

    + +

    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

    +
      +
    • CVE-2016-3078
    • +
    • CVE-2016-3074
    • +
    +

    + 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 @@ +

    PHP 7.0.7 Release Announcement

    + +

    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 @@ +

    PHP 7.0.8 Release Announcement

    + +

    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 @@ +

    PHP 7.0.9 Release Announcement

    + +

    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 @@ +

    PHP 7.1.0 Release Announcement

    + +

    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

    + + + +

    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 @@ +

    PHP 7.1.1 Release Announcement

    + +

    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 @@ +

    PHP 7.1.10 Release Announcement

    + +

    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 @@ +

    PHP 7.1.11 Release Announcement

    + +

    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 @@ +

    PHP 7.1.12 Release Announcement

    + +

    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 @@ +

    PHP 7.1.13 Release Announcement

    + +

    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 @@ +

    PHP 7.1.14 Release Announcement

    + +

    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 @@ +

    PHP 7.1.15 Release Announcement

    + +

    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 @@ +

    PHP 7.1.16 Release Announcement

    + +

    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 @@ +

    PHP 7.1.17 Release Announcement

    + +

    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 @@ +

    PHP 7.1.18 Release Announcement

    + +

    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 @@ +

    PHP 7.1.19 Release Announcement

    + +

    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 @@ +

    PHP 7.1.2 Release Announcement

    + +

    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 @@ +

    PHP 7.1.20 Release Announcement

    + +

    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 @@ +

    PHP 7.1.21 Release Announcement

    + +

    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 @@ +

    PHP 7.1.22 Release Announcement

    + +

    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 @@ +

    PHP 7.1.23 Release Announcement

    + +

    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 @@ +

    PHP 7.1.24 Release Announcement

    + +

    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 @@ +

    PHP 7.1.25 Release Announcement

    + +

    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 @@ +

    PHP 7.1.26 Release Announcement

    + +

    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 @@ +

    PHP 7.1.27 Release Announcement

    + +

    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 @@ +

    PHP 7.1.28 Release Announcement

    + +

    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 @@ +

    PHP 7.1.29 Release Announcement

    + +

    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 @@ +

    PHP 7.1.3 Release Announcement

    + +

    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 @@ +

    PHP 7.1.30 Release Announcement

    + +

    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 @@ +

    PHP 7.1.31 Release Announcement

    + +

    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 @@ +

    PHP 7.1.32 Release Announcement

    + +

    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 @@ +

    PHP 7.1.33 Release Announcement

    + +

    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 @@ +

    PHP 7.1.4 Release Announcement

    + +

    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 @@ +

    PHP 7.1.5 Release Announcement

    + +

    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 @@ +

    PHP 7.1.6 Release Announcement

    + +

    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 @@ +

    PHP 7.1.7 Release Announcement

    + +

    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 @@ +

    PHP 7.1.8 Release Announcement

    + +

    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 @@ +

    PHP 7.1.9 Release Announcement

    + +

    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 @@ +

    PHP 7.2.0 Release Announcement

    + +

    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=). + (francois at tekwire dot net) + . Added object type annotation. (brzuchal) + . Fixed bug #74815 (crash with a combination of INI entries at startup). + (Anatol) + . Fixed bug #74836 (isset on zero-prefixed numeric indexes in array broken). + (Dmitry) + . Added new VM instuctions ISSET_ISEMPTY_CV and UNSET_CV. Previously they + were implemented as ISSET_ISEMPTY_VAR and UNSET_VAR variants with + ZEND_QUICK_SET flag. (Nikita, Dmitry) + . Fixed bug #49649 (unserialize() doesn't handle changes in property + visibility). (pmmaga) + . Fixed #74866 (extension_dir = "./ext" now use current directory for base). + (Francois Laupretre) + . Implemented FR #74963 (Improved error message on fetching property of + non-object). (Laruence) + . Fixed Bug #75142 (buildcheck.sh check for autoconf version needs to be updated + for v2.64). (zizzy at zizzy dot net, Remi) + . Fixed bug #74878 (Data race in ZTS builds). (Nikita, Dmitry) + . Fixed bug #75515 ("stream_copy_to_stream" doesn't stream anymore). (Sara) + +- cURL: + . Fixed bug #75093 (OpenSSL support not detected). (Remi) + . Better fix for #74125 (use pkg-config instead of curl-config). (Remi) + +- Date: + . Fixed bug #55407 (Impossible to prototype DateTime::createFromFormat). + (kelunik) + . Implemented FR #71520 (Adding the DateTime constants to the + DateTimeInterface interface). (Majkl578) + . Fixed bug #75149 (redefinition of typedefs ttinfo and t1info). (Remi) + . Fixed bug #75222 (DateInterval microseconds property always 0). (jhdxr) + +- Dba: + . Fixed bug #72885 (flatfile: dba_fetch() fails to read replaced entry). + (Anatol) + +- DOM: + . Implement #74837 (Implement Countable for DomNodeList and DOMNamedNodeMap). + (Andreas Treichel) + +- EXIF: + . Added support for vendor specific tags for the following formats: + Samsung, DJI, Panasonic, Sony, Pentax, Minolta, Sigma/Foveon, AGFA, + Kyocera, Ricoh & Epson. (Kalle) + . Fixed bug #72682 (exif_read_data() fails to read all data for some + images). (Kalle) + . Fixed bug #71534 (Type confusion in exif_read_data() leading to heap + overflow in debug mode). (hlt99 at blinkenshell dot org, Kalle) + . Fixed bug #68547 (Exif Header component value check error). + (sjh21a at gmail dot com, Kalle) + . Fixed bug #66443 (Corrupt EXIF header: maximum directory nesting level + reached for some cameras). (Kalle) + . Fixed Redhat bug #1362571 (PHP not returning full results for + exif_read_data function). (Kalle) + . Implemented #65187 (exif_read_data/thumbnail: add support for stream + resource). (Kalle) + . Deprecated the read_exif_data() alias. (Kalle) + . Fixed bug #74428 (exif_read_data(): "Illegal IFD size" warning occurs with + correct exif format). (bradpiccho at gmail dot com, Kalle) + . Fixed bug #72819 (EXIF thumbnails not read anymore). (Kalle) + . Fixed bug #62523 (php crashes with segfault when exif_read_data called). + (Kalle) + . Fixed bug #50660 (exif_read_data(): Illegal IFD offset (works fine with + other exif readers). (skinny dot bravo at gmail dot com, Kalle) + +- Fileinfo: + . Upgrade bundled libmagic to 5.31. (Anatol) + +- FPM: + . Configuration to limit fpm slow log trace callers. (Sannis) + . Fixed bug #75212 (php_value acts like php_admin_value). (Remi) + +- FTP: + . Implement MLSD for structured listing of directories. (blar) + . Added ftp_append() function. (blar) + +- GD: + . Implemented imageresolution as getter and setter (Christoph) + . Fixed bug #74744 (gd.h: stdarg.h include missing for va_list use in + gdErrorMethod). (rainer dot jung at kippdata dot de, cmb) + . Fixed bug #75111 (Memory disclosure or DoS via crafted .bmp image). (cmb) + +- GMP: + . Fixed bug #70896 (gmp_fact() silently ignores non-integer input). (Sara) + +- Hash: + . Changed HashContext from resource to object. (Rouven Weßling, Sara) + . Disallowed usage of non-cryptographic hash functions with HMAC and PBKDF2. + (Andrey Andreev, Nikita) + . Fixed Bug #75284 (sha3 is not supported on bigendian machine). (Remi) + +- IMAP: + . Fixed bug #72324 (imap_mailboxmsginfo() return wrong size). + (ronaldpoon at udomain dot com dot hk, Kalle) + +- Intl: + . Fixed bug #63790 (test using Spoofchecker which may be unavailable). (Sara) + . Fixed bug #75378 ([REGRESSION] IntlDateFormatter::parse() does not change + $position argument). (Laruence) + +- JSON: + . Add JSON_INVALID_UTF8_IGNORE and JSON_INVALID_UTF8_SUBSTITUTE options for + json_encode and json_decode to ignore or replace invalid UTF-8 byte + sequences - it addresses request #65082. (Jakub Zelenka) + . Fixed bug #75185 (Buffer overflow in json_decode() with + JSON_INVALID_UTF8_IGNORE or JSON_INVALID). (Jakub Zelenka) + . Fixed bug #68567 (JSON_PARTIAL_OUTPUT_ON_ERROR can result in JSON with null + key). (Jakub Zelenka) + +- LDAP: + . Implemented FR #69445 (Support for LDAP EXOP operations) + . Fixed support for LDAP_OPT_SERVER_CONTROLS and LDAP_OPT_CLIENT_CONTROLS in ldap_get_option + . Fixed passing an empty array to ldap_set_option for client or server controls. + +- Mbstring: + . Implemented request #66024 (mb_chr() and mb_ord()). (Masakielastic, Yasuo) + . Implemented request #65081 (mb_scrub()). (Masakielastic, Yasuo) + . Implemented request #69086 (enhancement for mb_convert_encoding() that + handles multibyte replacement char nicely). (Masakielastic, Yasuo) + . Added array input support to mb_convert_encoding(). (Yasuo) + . Added array input support to mb_check_encoding(). (Yasuo) + . Fixed bug #69079 (enhancement for mb_substitute_character). (masakielastic) + . Update to oniguruma version 6.3.0. (Remi) + . Fixed bug #69267 (mb_strtolower fails on titlecase characters). (Nikita) + +- Mcrypt: + . The deprecated mcrypt extension has been moved to PECL. (leigh) + +- Opcache: + . Added global optimisation passes based on data flow analysis using Single + Static Assignment (SSA) form: Sparse Conditional Constant Propagation (SCCP), + Dead Code Elimination (DCE), and removal of unused local variables + (Nikita, Dmitry) + . Fixed incorect constant conditional jump elimination. (Dmitry) + . Fixed bug #75230 (Invalid opcode 49/1/8 using opcache). (Laruence) + . Fixed bug (assertion fails with extended info generated). (Laruence) + . Fixed bug (Phi sources removel). (Laruence) + . Fixed bug #75370 (Webserver hangs on valid PHP text). (Laruence) + . Fixed bug #75357 (segfault loading WordPress wp-admin). (Laruence) + +- OpenSSL: + . Use TLS_ANY for default ssl:// and tls:// negotiation. (kelunik) + . Fix leak in openssl_spki_new(). (jelle at vdwaa dot nl) + . Added openssl_pkcs7_read() and pk7 parameter to openssl_pkcs7_verify(). + (jelle at vdwaa dot nl) + . Add ssl security_level stream option to support OpenSSL security levels. + (Jakub Zelenka). + . Allow setting SNI cert and private key in separate files. (Jakub Zelenka) + . Fixed bug #74903 (openssl_pkcs7_encrypt() uses different EOL than before). + (Anatol) + . Automatically load OpenSSL configuration file. (Jakub Zelenka) + +- PCRE: + . Added support for PCRE JIT fast path API. (dmitry) + . Fixed bug #61780 (Inconsistent PCRE captures in match results). (cmb) + . Fixed bug #74873 (Minor BC break: PCRE_JIT changes output of preg_match()). + (Dmitry) + . Fixed bug #75089 (preg_grep() is not reporting PREG_BAD_UTF8_ERROR after + first input string). (Dmitry) + . Fixed bug #75223 (PCRE JIT broken in 7.2). (Dmitry) + . Fixed bug #75285 (Broken build when system libpcre don't have jit support). + (Remi) + +- phar: + . Fixed bug #74196 (phar does not correctly handle names containing dots). + (mhagstrand) + +- PDO: + . Add "Sent SQL" to debug dump for emulated prepares. (Adam Baratz) + . Add parameter types for national character set strings. (Adam Baratz) + +- PDO_DBlib: + . Fixed bug #73234 (Emulated statements let value dictate parameter type). + (Adam Baratz) + . Fixed bug #73396 (bigint columns are returned as strings). (Adam Baratz) + . Expose DB-Library version as \PDO::DBLIB_ATTR_VERSION attribute on \PDO + instance. (Adam Baratz) + . Add test coverage for bug #72969. (Jeff Farr) + +- PDO_OCI: + . Fixed Bug #74537 (Align --with-pdo-oci configure option with --with-oci8 syntax). + (Tianfang Yang) + +- PDO_Sqlite + . Switch to sqlite3_prepare_v2() and sqlite3_close_v2() functions (rasmus) + +- PHPDBG + . Added extended_value to opcode dump output. (Sara) + +- Session: + . Fixed bug #73461 (Prohibit session save handler recursion). (Yasuo) + . PR #2233 Removed register_globals related code and "!" can be used as $_SESSION key name. (Yasuo) + . Improved bug #73100 fix. 'user' save handler can only be set by session_set_save_handler() + . Fixed bug #74514 (5 session functions incorrectly warn when calling in + read-only/getter mode). (Yasuo) + . Fixed bug #74936 (session_cache_expire/cache_limiter/save_path() trigger a + warning in read mode). (morozov) + . Fixed bug #74941 (session fails to start after having headers sent). + (morozov) + +- Sodium: + . New cryptographic extension + . Added missing bindings for libsodium > 1.0.13. (Frank) + +- SPL: + . Fixed bug #71412 (Incorrect arginfo for ArrayIterator::__construct). + (tysonandre775 at hotmail dot com) + . Added spl_object_id(). (Tyson Andre) + +- SQLite3: + . Implement writing to blobs. (bohwaz at github dot com) + . Update to Sqlite 3.20.1. (cmb) + +- Standard: + . Fixed bug #69442 (closing of fd incorrect when PTS enabled). (jaytaph) + . Fixed bug #74300 (unserialize accepts two plus/minus signs for float number exponent part). + (xKerman) + . Compatibility with libargon2 versions 20161029 and 20160821. + (charlesportwoodii at erianna dot com) + . Fixed Bug #74737 (mysqli_get_client_info reflection info). + (mhagstrand at gmail dot com) + . Add support for extension name as argument to dl(). + (francois at tekwire dot net) + . Fixed bug #74851 (uniqid() without more_entropy performs badly). + (Emmanuel Dreyfus) + . 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) + . Fixed bug #75170 (mt_rand() bias on 64-bit machines). (Nikita) + . Fixed bug #75221 (Argon2i always throws NUL at the end). (cmb) + +- Streams: + . Default ssl/single_dh_use and ssl/honor_cipher_order to true. (kelunik) + +- XML: + . Moved utf8_encode() and utf8_decode() to the Standard extension. (Andrea) + +- XMLRPC: + . Use Zend MM for allocation in bundled libxmlrpc (Joe) + +- ZIP: + . Add support for encrypted archives. (Remi) + . Use of bundled libzip is deprecated, --with-libzip option is recommended. (Remi) + . Fixed Bug #73803 (Reflection of ZipArchive does not show public properties). (Remi) + . ZipArchive implements countable, added ZipArchive::count() method. (Remi) + . Fix segfault in php_stream_context_get_option call. (Remi) + . Fixed bug #75143 (new method setEncryptionName() seems not to exist + in ZipArchive). (Anatol) + +- zlib: + . Expose inflate_get_status() and inflate_get_read_len() functions. + (Matthew Trescott) diff --git a/data/releases/7.2/7.2.0/release.json b/data/releases/7.2/7.2.0/release.json new file mode 100644 index 0000000000..d426789852 --- /dev/null +++ b/data/releases/7.2/7.2.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.2.0", + "date": "30 Nov 2017", + "tags": [], + "source": [ + { + "filename": "php-7.2.0.tar.bz2", + "name": "PHP 7.2.0 (tar.bz2)", + "sha256": "2bfefae4226b9b97879c9d33078e50bdb5c17f45ff6e255951062a529720c64a" + }, + { + "filename": "php-7.2.0.tar.gz", + "name": "PHP 7.2.0 (tar.gz)", + "sha256": "801876abd52e0dc58a44701344252035fd50702d8f510cda7fdb317ab79897bc" + }, + { + "filename": "php-7.2.0.tar.xz", + "name": "PHP 7.2.0 (tar.xz)", + "sha256": "87572a6b924670a5d4aac276aaa4a94321936283df391d702c845ffc112db095" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.2/7.2.1/announcement.html b/data/releases/7.2/7.2.1/announcement.html new file mode 100644 index 0000000000..3aed6761ec --- /dev/null +++ b/data/releases/7.2/7.2.1/announcement.html @@ -0,0 +1,11 @@ +

    PHP 7.2.1 Release Announcement

    + +

    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 @@ +

    PHP 7.2.10 Release Announcement

    + +

    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 @@ +

    PHP 7.2.11 Release Announcement

    + +

    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 @@ +

    PHP 7.2.12 Release Announcement

    + +

    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 @@ +

    PHP 7.2.13 Release Announcement

    + +

    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 @@ +

    PHP 7.2.14 Release Announcement

    + +

    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 @@ +

    PHP 7.2.15 Release Announcement

    + +

    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 @@ +

    PHP 7.2.16 Release Announcement

    + +

    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 @@ +

    PHP 7.2.17 Release Announcement

    + +

    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 @@ +

    PHP 7.2.18 Release Announcement

    + +

    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 @@ +

    PHP 7.2.19 Release Announcement

    + +

    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 @@ +

    PHP 7.2.2 Release Announcement

    + +

    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 @@ +

    PHP 7.2.20 Release Announcement

    + +

    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 @@ +

    PHP 7.2.21 Release Announcement

    + +

    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 @@ +

    PHP 7.2.22 Release Announcement

    + +

    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 @@ +

    PHP 7.2.23 Release Announcement

    + +

    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 @@ +

    PHP 7.2.24 Release Announcement

    + +

    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 @@ +

    PHP 7.2.25 Release Announcement

    + +

    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 @@ +

    PHP 7.2.26 Release Announcement

    + +

    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 @@ +

    PHP 7.2.27 Release Announcement

    + +

    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 @@ +

    PHP 7.2.28 Release Announcement

    + +

    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 @@ +

    PHP 7.2.29 Release Announcement

    + +

    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 @@ +

    PHP 7.2.3 Release Announcement

    + +

    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 @@ +

    PHP 7.2.30 Release Announcement

    + +

    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 @@ +

    PHP 7.2.31 Release Announcement

    + +

    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 @@ +

    PHP 7.2.32 Release Announcement

    + +

    + 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 @@ +

    PHP 7.2.33 Release Announcement

    + +

    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 @@ +

    PHP 7.2.34 Release Announcement

    + +

    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 @@ +

    PHP 7.2.4 Release Announcement

    + +

    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 @@ +

    PHP 7.2.5 Release Announcement

    + +

    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 @@ +

    PHP 7.2.6 Release Announcement

    + +

    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 @@ +

    PHP 7.2.7 Release Announcement

    + +

    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 @@ +

    PHP 7.2.8 Release Announcement

    + +

    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 @@ +

    PHP 7.2.9 Release Announcement

    + +

    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 @@ +

    PHP 7.3.0 Release Announcement

    + +

    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() . (github/MattJeevas) + . Add net_get_interfaces(). (Sara, Joe, Anatol) + . Added gc_status(). (Benjamin Eberlei) + . Implemented flexible heredoc and nowdoc syntax, per + RFC https://wiki.php.net/rfc/flexible_heredoc_nowdoc_syntaxes. + (Thomas Punt) + . Added support for references in list() and array destructuring, per + RFC https://wiki.php.net/rfc/list_reference_assignment. + (David Walker) + . Improved effectiveness of ZEND_SECURE_ZERO for NetBSD and systems + without native similar feature. (devnexen) + . Added syslog.facility and syslog.ident INI entries for customizing syslog + logging. (Philip Prindeville) + . Fixed bug #75683 (Memory leak in zend_register_functions() in ZTS mode). + (Dmitry) + . Fixed bug #75031 (support append mode in temp/memory streams). (adsr) + . Fixed bug #74860 (Uncaught exceptions not being formatted properly when + error_log set to "syslog"). (Philip Prindeville) + . Fixed bug #75220 (Segfault when calling is_callable on parent). + (andrewnester) + . Fixed bug #69954 (broken links and unused config items in distributed ini + files). (petk) + . Fixed bug #74922 (Composed class has fatal error with duplicate, equal const + properties). (pmmaga) + . Fixed bug #63911 (identical trait methods raise errors during composition). + (pmmaga) + . Fixed bug #75677 (Clang ignores fastcall calling convention on variadic + function). (Li-Wen Hsu) + . Fixed bug #54043 (Remove inconsitency of internal exceptions and user + defined exceptions). (Nikita) + . Fixed bug #53033 (Mathematical operations convert objects to integers). + (Nikita) + . Fixed bug #73108 (Internal class cast handler uses integer instead of + float). (Nikita) + . Fixed bug #75765 (Fatal error instead of Error exception when base class is + not found). (Timur Ibragimov) + . Fixed bug #76198 (Wording: "iterable" is not a scalar type). (Levi Morrison) + . Fixed bug #76137 (config.guess/config.sub do not recognize RISC-V). (cmb) + . Fixed bug #76427 (Segfault in zend_objects_store_put). (Laruence) + . Fixed bug #76422 (ftruncate fails on files > 2GB). (Anatol) + . Fixed bug #76509 (Inherited static properties can be desynchronized from + their parent by ref). (Nikita) + . Fixed bug #76439 (Changed behaviour in unclosed HereDoc). (Nikita, tpunt) + . Fixed bug #63217 (Constant numeric strings become integers when used as + ArrayAccess offset). (Rudi Theunissen, Dmitry) + . Fixed bug #33502 (Some nullary functions don't check the number of + arguments). (cmb) + . Fixed bug #76392 (Error relocating sapi/cli/php: unsupported relocation + type 37). (Peter Kokot) + . The declaration and use of case-insensitive constants has been deprecated. + (Nikita) + . Added syslog.filter INI entry for syslog filtering. (Philip Prindeville) + . Fixed bug #76667 (Segfault with divide-assign op and __get + __set). + (Laruence) + . Fixed bug #76030 (RE2C_FLAGS rarely honoured) (Cristian Rodríguez) + . Fixed broken zend_read_static_property (Laruence) + . Fixed bug #76773 (Traits used on the parent are ignored for child classes). + (daverandom) + . Fixed bug #76767 (‘asm’ operand has impossible constraints in zend_operators.h). + (ondrej) + . Fixed bug #76752 (Crash in ZEND_COALESCE_SPEC_TMP_HANDLER - assertion in + _get_zval_ptr_tmp failed). (Laruence) + . Fixed bug #76820 (Z_COPYABLE invalid definition). (mvdwerve, cmb) + . Fixed bug #76510 (file_exists() stopped working for phar://). (cmb) + . Fixed bug #76869 (Incorrect bypassing protected method accessibilty check). + (Dmitry) + . Fixed bug #72635 (Undefined class used by class constant in constexpr + generates fatal error). (Nikita) + . Fixed bug #76947 (file_put_contents() blocks the directory of the file + (__DIR__)). (Anatol) + . Fixed bug #76979 (define() error message does not mention resources as + valid values). (Michael Moravec) + . Fixed bug #76825 (Undefined symbols ___cpuid_count). (Laruence, cmb) + . Fixed bug #77110 (undefined symbol zend_string_equal_val in C++ build). + (Remi) + +- BCMath: + . Implemented FR #67855 (No way to get current scale in use). (Chris Wright, + cmb) + . Fixed bug #66364 (BCMath bcmul ignores scale parameter). (cmb) + . Fixed bug #75164 (split_bc_num() is pointless). (cmb) + . Fixed bug #75169 (BCMath errors/warnings bypass PHP's error handling). (cmb) + +- CLI: + . Fixed bug #44217 (Output after stdout/stderr closed cause immediate exit + with status 0). (Robert Lu) + . Fixed bug #77111 (php-win.exe corrupts unicode symbols from cli + parameters). (Anatol) + +- cURL: + . Expose curl constants from curl 7.50 to 7.61. (Pierrick) + . Fixed bug #74125 (Fixed finding CURL on systems with multiarch support). + (cebe) + +- Date: + . Implemented FR #74668: Add DateTime::createFromImmutable() method. + (majkl578, Rican7) + . Fixed bug #75222 (DateInterval microseconds property always 0). (jhdxr) + . Fixed bug #68406 (calling var_dump on a DateTimeZone object modifies it). + (jhdxr) + . Fixed bug #76131 (mismatch arginfo for date_create). (carusogabriel) + . Updated timelib to 2018.01RC1 to address several bugs: + . Fixed bug #75577 (DateTime::createFromFormat does not accept 'v' format + specifier). (Derick) + . Fixed bug #75642 (Wrap around behaviour for microseconds is not working). + (Derick) + +- DBA: + . Fixed bug #75264 (compiler warnings emitted). (petk) + +- DOM: + . Fixed bug #76285 (DOMDocument::formatOutput attribute sometimes ignored). + (Andrew Nester, Laruence, Anatol) + +- Fileinfo: + . Fixed bug #77095 (slowness regression in 7.2/7.3 (compared to 7.1)). + (Anatol) + +- Filter: + . Added the 'add_slashes' sanitization mode (FILTER_SANITIZE_ADD_SLASHES). + (Kalle) + +- FPM: + . Added fpm_get_status function. (Till Backhaus) + . Fixed bug #62596 (getallheaders() missing with PHP-FPM). (Remi) + . Fixed bug #69031 (Long messages into stdout/stderr are truncated + incorrectly) - added new log related FPM configuration options: + log_limit, log_buffering and decorate_workers_output. (Jakub Zelenka) + +- ftp: + . Fixed bug #77151 (ftp_close(): SSL_read on shutdown). (Remi) + +- GD: + . Added support for WebP in imagecreatefromstring(). (Andreas Treichel, cmb) + +- GMP: + . Export internal structures and accessor helpers for GMP object. (Sara) + . Added gmp_binomial(n, k). (Nikita) + . Added gmp_lcm(a, b). (Nikita) + . Added gmp_perfect_power(a). (Nikita) + . Added gmp_kronecker(a, b). (Nikita) + +- iconv: + . Fixed bug #53891 (iconv_mime_encode() fails to Q-encode UTF-8 string). (cmb) + . Fixed bug #77147 (Fixing 60494 ignored ICONV_MIME_DECODE_CONTINUE_ON_ERROR). + (cmb) + +- 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) + +- Interbase: + . Fixed bug #75453 (Incorrect reflection for ibase_[p]connect). (villfa) + . Fixed bug #76443 (php+php_interbase.dll crash on module_shutdown). (Kalle) + + +- intl: + . Fixed bug #75317 (UConverter::setDestinationEncoding changes source instead + of destination). (andrewnester) + . Fixed bug #76829 (Incorrect validation of domain on idn_to_utf8() + function). (Anatol) + +- JSON: + . Added JSON_THROW_ON_ERROR flag. (Andrea) + +- LDAP: + . Added ldap_exop_refresh helper for EXOP REFRESH operation with dds overlay. + (Come) + . Added full support for sending and parsing ldap controls. (Come) + . Fixed bug #49876 (Fix LDAP path lookup on 64-bit distros). (dzuelke) + +- libxml2: + . Fixed bug #75871 (use pkg-config where available). (pmmaga) + +- 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) + +- MBstring: + . Updated to Oniguruma 6.9.0. (cmb) + . Fixed bug #65544 (mb title case conversion-first word in quotation isn't + capitalized). (Nikita) + . Fixed bug #71298 (MB_CASE_TITLE misbehaves with curled apostrophe/quote). + (Nikita) + . Fixed bug #73528 (Crash in zif_mb_send_mail). (Nikita) + . Fixed bug #74929 (mbstring functions version 7.1.1 are slow compared to 5.3 + on Windows). (Nikita) + . Fixed bug #76319 (mb_strtolower with invalid UTF-8 causes segmentation + fault). (Nikita) + . Fixed bug #76574 (use of undeclared identifiers INT_MAX and LONG_MAX). (cmb) + . Fixed bug #76594 (Bus Error due to unaligned access in zend_ini.c + OnUpdateLong). (cmb, Nikita) + . Fixed bug #76706 (mbstring.http_output_conv_mimetypes is ignored). (cmb) + . Fixed bug #76958 (Broken UTF7-IMAP conversion). (Nikita) + . Fixed bug #77025 (mb_strpos throws Unknown encoding or conversion error). + (Nikita) + . Fixed bug #77165 (mb_check_encoding crashes when argument given an empty + array). (Nikita) + +- Mysqlnd: + . Fixed bug #76386 (Prepared Statement formatter truncates fractional seconds + from date/time column). (Victor Csiky) + +- ODBC: + . Removed support for ODBCRouter. (Kalle) + . Removed support for Birdstep. (Kalle) + . Fixed bug #77079 (odbc_fetch_object has incorrect type signature). + (Jon Allen) + +- Opcache: + . Fixed bug #76466 (Loop variable confusion). (Dmitry, Laruence, Nikita) + . Fixed bug #76463 (var has array key type but not value type). (Laruence) + . Fixed bug #76446 (zend_variables.c:73: zend_string_destroy: Assertion + `!(zval_gc_flags((str)->gc)). (Nikita, Laruence) + . Fixed bug #76711 (OPcache enabled triggers false-positive "Illegal string + offset"). (Dmitry) + . Fixed bug #77058 (Type inference in opcache causes side effects). (Nikita) + . Fixed bug #77092 (array_diff_key() - segmentation fault). (Nikita) + +- OpenSSL: + . Added openssl_pkey_derive function. (Jim Zubov) + . Add min_proto_version and max_proto_version ssl stream options as well as + related constants for possible TLS protocol values. (Jakub Zelenka) + +- PCRE: + . Implemented https://wiki.php.net/rfc/pcre2-migration. (Anatol, Dmitry) + . Upgrade PCRE2 to 10.32. (Anatol) + . Fixed bug #75355 (preg_quote() does not quote # control character). + (Michael Moravec) + . Fixed bug #76512 (\w no longer includes unicode characters). (cmb) + . Fixed bug #76514 (Regression in preg_match makes it fail with + PREG_JIT_STACKLIMIT_ERROR). (Anatol) + . Fixed bug #76909 (preg_match difference between 7.3 and < 7.3). (Anatol) + +- PDO_DBlib: + . Implemented FR #69592 (allow 0-column rowsets to be skipped automatically). + (fandrieu) + . Expose TDS version as \PDO::DBLIB_ATTR_TDS_VERSION attribute on \PDO + instance. (fandrieu) + . Treat DATETIME2 columns like DATETIME. (fandrieu) + . Fixed bug #74243 (allow locales.conf to drive datetime format). (fandrieu) + +- PDO_Firebird: + . Fixed bug #74462 (PDO_Firebird returns only NULLs for results with boolean + for FIREBIRD >= 3.0). (Dorin Marcoci) + +- PDO_OCI: + . Fixed bug #74631 (PDO_PCO with PHP-FPM: OCI environment initialized + before PHP-FPM sets it up). (Ingmar Runge) + +- PDO SQLite + . Add support for additional open flags + +- pgsql: + . Added new error constants for pg_result_error(): PGSQL_DIAG_SCHEMA_NAME, + PGSQL_DIAG_TABLE_NAME, PGSQL_DIAG_COLUMN_NAME, PGSQL_DIAG_DATATYPE_NAME, + PGSQL_DIAG_CONSTRAINT_NAME and PGSQL_DIAG_SEVERITY_NONLOCALIZED. (Kalle) + . Fixed bug #77047 (pg_convert has a broken regex for the 'TIME WITHOUT + TIMEZONE' data type). (Andy Gajetzki) + +- phar: + . Fixed bug #74991 (include_path has a 4096 char limit in some cases). + (bwbroersma) + . Fixed bug #65414 (deal with leading slash when adding files correctly). + (bishopb) + +- readline: + . Added completion_append_character and completion_suppress_append options + to readline_info() if linked against libreadline. (krageon) + +- Session: + . Fixed bug #74941 (session fails to start after having headers sent). + (morozov) + +- SimpleXML: + . Fixed bug #54973 (SimpleXML casts integers wrong). (Nikita) + . Fixed bug #76712 (Assignment of empty string creates extraneous text node). + (cmb) + +- Sockets: + . Fixed bug #67619 (Validate length on socket_write). (thiagooak) + +- SOAP: + . Fixed bug #75464 (Wrong reflection on SoapClient::__setSoapHeaders). + (villfa) + . Fixed bug #70469 (SoapClient generates E_ERROR even if exceptions=1 is + used). (Anton Artamonov) + . 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) + +- SPL: + . Fixed bug #74977 (Appending AppendIterator leads to segfault). + (Andrew Nester) + . Fixed bug #75173 (incorrect behavior of AppendIterator::append in foreach + loop). (jhdxr) + . Fixed bug #74372 (autoloading file with syntax error uses next autoloader, + may hide parse error). (Nikita) + . Fixed bug #75878 (RecursiveTreeIterator::setPostfix has wrong signature). + (cmb) + . Fixed bug #74519 (strange behavior of AppendIterator). (jhdxr) + . Fixed bug #76131 (mismatch arginfo for splarray constructor). + (carusogabriel) + +- SQLite3: + . Updated bundled libsqlite to 3.24.0. (cmb) + +- Standard: + . Added is_countable() function. (Gabriel Caruso) + . Added support for the SameSite cookie directive, including an alternative + signature for setcookie(), setrawcookie() and session_set_cookie_params(). + (Frederik Bosch, pmmaga) + . Remove superfluous warnings from inet_ntop()/inet_pton(). (daverandom) + . Fixed bug #75916 (DNS_CAA record results contain garbage). (Mike, + Philip Sharp) + . Fixed unserialize(), to disable creation of unsupported data structures + through manually crafted strings. (Dmitry) + . Fixed bug #75409 (accept EFAULT in addition to ENOSYS as indicator + that getrandom() is missing). (sarciszewski) + . Fixed bug #74719 (fopen() should accept NULL as context). (Alexander Holman) + . Fixed bug #69948 (path/domain are not sanitized in setcookie). (cmb) + . Fixed bug #75996 (incorrect url in header for mt_rand). (tatarbj) + . Added hrtime() function, to get high resolution time. (welting) + . Fixed bug #48016 (stdClass::__setState is not defined although var_export() + uses it). (Andrea) + . Fixed bug #76136 (stream_socket_get_name should enclose IPv6 in brackets). + (seliver) + . Fixed bug #76688 (Disallow excessive parameters after options array). + (pmmaga) + . Fixed bug #76713 (Segmentation fault caused by property corruption). + (Laruence) + . Fixed bug #76755 (setcookie does not accept "double" type for expire time). + (Laruence) + . Fixed bug #76674 (improve array_* failure messages exposing what was passed + instead of an array). (carusogabriel) + . Fixed bug #76803 (ftruncate changes file pointer). (Anatol) + . Fixed bug #76818 (Memory corruption and segfault). (Remi) + . Fixed bug #77081 (ftruncate() changes seek pointer in c mode). (cmb, Anatol) + +- Testing: + . Implemented FR #62055 (Make run-tests.php support --CGI-- sections). (cmb) + +- Tidy: + . Support using tidyp instead of tidy. (devnexen) + . Fixed bug #74707 (Tidy has incorrect ReflectionFunction param counts for + functions taking tidy). (Gabriel Caruso) + . Fixed arginfo for tidy::__construct(). (Tyson Andre) + +- Tokenizer: + . Fixed bug #76437 (token_get_all with TOKEN_PARSE flag fails to recognise + close tag). (Laruence) + . Fixed bug #75218 (Change remaining uncatchable fatal errors for parsing + into ParseError). (Nikita) + . Fixed bug #76538 (token_get_all with TOKEN_PARSE flag fails to recognise + close tag with newline). (Nikita) + . Fixed bug #76991 (Incorrect tokenization of multiple invalid flexible + heredoc strings). (Nikita) + +- XML: + . Fixed bug #71592 (External entity processing never fails). (cmb) + +- Zlib: + . Added zlib/level context option for compress.zlib wrapper. (Sara) diff --git a/data/releases/7.3/7.3.0/release.json b/data/releases/7.3/7.3.0/release.json new file mode 100644 index 0000000000..b0740d2fbf --- /dev/null +++ b/data/releases/7.3/7.3.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "7.3.0", + "date": "06 Dec 2018", + "tags": [], + "source": [ + { + "filename": "php-7.3.0.tar.bz2", + "name": "PHP 7.3.0 (tar.bz2)", + "sha256": "7a267daec9969a997c5c8028c350229646748e0fcc71e2f2dbb157ddcee87c67" + }, + { + "filename": "php-7.3.0.tar.gz", + "name": "PHP 7.3.0 (tar.gz)", + "sha256": "391bd0f91d9bdd01ab47ef9607bad8c65e35bc9bb098fb7777b2556e2c847b11" + }, + { + "filename": "php-7.3.0.tar.xz", + "name": "PHP 7.3.0 (tar.xz)", + "sha256": "7d195cad55af8b288c3919c67023a14ff870a73e3acc2165a6d17a4850a560b5" + } + ] +} \ No newline at end of file diff --git a/data/releases/7.3/7.3.1/announcement.html b/data/releases/7.3/7.3.1/announcement.html new file mode 100644 index 0000000000..8c0a76714c --- /dev/null +++ b/data/releases/7.3/7.3.1/announcement.html @@ -0,0 +1,11 @@ +<h1>PHP 7.3.1 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.1. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.1 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.1">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.10 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.10. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.10 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.10">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.11 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.11. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.11 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.11">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.12 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.12. This is a bug fix release.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.12 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.12">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.13 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.13. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.13 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.13">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.14 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.14. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.14 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.14">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.15 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.15. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.15 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.15">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.16 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.16. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.16 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.16">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.17 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.17 This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.17 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.17">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.18 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.18 This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.18 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.18">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.19 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.19. This is a bug fix release.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.19 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.19">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.2 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.2. This is a bugfix release, with several bug fixes included.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.2 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.2">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.20 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.20. This is a security release impacting the +<a href="https://windows.php.net/">official Windows builds</a> of PHP.</p> + +<p>For windows users running an official build, this release contains a +patched version of <a href="https://curl.haxx.se">libcurl</a> addressing +<a href="https://curl.haxx.se/docs/CVE-2020-8169.html">CVE-2020-8169</a>.</p> + +<p>For all other consumers of PHP, this is a bug fix release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.20 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.20">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.21 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.21. This is a security release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.21 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.21">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.22 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.22. This is a bug fix release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.22 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.22">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.23 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.23. This is a security release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.23 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.23">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.24 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.24. This is a bug fix release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.24 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.24">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.25 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.25. This is a bug fix release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.25 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.25">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.26 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.26. This is a security release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.26 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.26">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.27 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.27. This is a security release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.27 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.27">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.28 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.28. This is a security release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.28 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.28">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.29 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.29. This is a security release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.29 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.29">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.3 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.3. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.3 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.3">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.30 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.30. This is a security release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.30 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.30">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.31 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.31. This is a security release fixing CVE-2021-21706.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.31 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.31">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.32 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.32. This is a security release.</p> + +<p>All PHP 7.3 FPM users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.32 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.32">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.33 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.3.33. This is a security release.</p> + +<p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.3.33 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.3.33">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.3.4 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.4. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.4 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.4">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.5 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.5. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.5 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.5">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.6 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.6. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.6 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.6">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.7 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.7. This is a bug fix release.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.7 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.7">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.8 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.8. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.8 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.8">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.3.9 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.3.9. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.3 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.3.9 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.3.9">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.4.0 Release Announcement</h1> + +<p>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.</p> + +<p>PHP 7.4.0 comes with numerous improvements and new features such as:</p> + +<ul> + +<li><a href="https://www.php.net/manual/migration74.new-features.php#migration74.new-features.core.typed-properties">Typed Properties</a></li> +<li><a href="https://www.php.net/manual/migration74.new-features.php#migration74.new-features.core.arrow-functions">Arrow Functions</a></li> +<li><a href="https://www.php.net/manual/migration74.new-features.php#migration74.new-features.core.type-variance">Limited Return Type Covariance and Argument Type Contravariance</a></li> +<li><a href="https://www.php.net/manual/migration74.new-features.php#migration74.new-features.core.unpack-inside-array">Unpacking Inside Arrays</a></li> +<li><a href="https://www.php.net/manual/migration74.new-features.php#migration74.new-features.core.numeric-literal-separator">Numeric Literal Separator</a></li> +<li><a href="https://www.php.net/manual/migration74.new-features.php#migration74.new-features.core.weakreference">Weak References</a></li> +<li><a href="https://www.php.net/manual/migration74.new-features.php#migration74.new-features.core.tostring-exceptions">Allow Exceptions from __toString()</a></li> +<li><a href="https://www.php.net/manual/opcache.configuration.php#ini.opcache.preload">Opcache Preloading</a></li> +<li><a href="https://www.php.net/manual/migration74.deprecated.php">Several Deprecations</a></li> +<li><a href="https://www.php.net/manual/migration74.removed-extensions.php">Extensions Removed from the Core</a></li> +</ul> + +<p>For source downloads of PHP 7.4.0 please visit our <a href="http://www.php.net/downloads">downloads</a> page +Windows binaries can be found on the <a href="http://windows.php.net/download">PHP for Windows</a> site. +The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.4.0">ChangeLog</a>.</p> + +<p>The <a href="http://php.net/manual/en/migration74.php">migration guide</a> is available in the PHP Manual. +Please consult it for the detailed list of new features and backward incompatible changes.</p> + +<p>Many thanks to all the contributors and supporters!</p> \ 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 FOO<?php with + short_open_tag=0). (Nikita) + . Fixed bug #78614 (Does not compile with DTRACE anymore). + (tz at FreeBSD dot org) + . Fixed bug #78620 (Out of memory error). (cmb, Nikita) + . Fixed bug #78632 (method_exists() in php74 works differently from php73 in + checking priv. methods). (Nikita) + . Fixed bug #78644 (SEGFAULT in ZEND_UNSET_OBJ_SPEC_VAR_CONST_HANDLER). + (Nikita) + . Fixed bug #78658 (Memory corruption using Closure::bindTo). (Nikita) + . Fixed bug #78656 (Parse errors classified as highest log-level). (Erik + Lundin) + . Fixed bug #78662 (stream_write bad error detection). (Remi) + . Fixed bug #78768 (redefinition of typedef zend_property_info). (Nikita) + . Fixed bug #78788 (./configure generates invalid php_version.h). (max) + . Fixed incorrect usage of QM_ASSIGN instruction. It must not return IS_VAR. + As a side effect, this allowed passing left hand list() "by reference", + instead of compile-time error. (Dmitry) + +- CLI: + . The built-in CLI server now reports the request method in log files. + (Simon Welsh) + +- COM: + . Deprecated registering of case-insensitive constants from typelibs. (cmb) + . Fixed bug #78650 (new COM Crash). (cmb) + . Fixed bug #78694 (Appending to a variant array causes segfault). (cmb) + +- CURL: + . Fixed bug #76480 (Use curl_multi_wait() so that timeouts are respected). + (Pierrick) + . Implemented FR #77711 (CURLFile should support UNICODE filenames). (cmb) + . Deprecated CURLPIPE_HTTP1. (cmb) + . Deprecated $version parameter of curl_version(). (cmb) + +- Date: + . Updated timelib to 2018.02. (Derick) + . Fixed bug #69044 (discrepency between time and microtime). (krakjoe) + . Fixed bug #70153 (\DateInterval incorrectly unserialized). (Maksim Iakunin) + . Fixed bug #75232 (print_r of DateTime creating side-effect). (Nikita) + . Fixed bug #78383 (Casting a DateTime to array no longer returns its + properties). (Nikita) + . Fixed bug #78751 (Serialising DatePeriod converts DateTimeImmutable). (cmb) + +- Exif: + . Fixed bug #78333 (Exif crash (bus error) due to wrong alignment and + invalid cast). (Nikita) + . 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 #78075 (finfo_file treats JSON file as text/plain). (Anatol) + . Fixed bug #78183 (finfo_file shows wrong mime-type for .tga file). + (Anatol) + +- Filter: + . The filter extension no longer has the --with-pcre-dir on Unix builds, + allowing the extension to be once more compiled as shared using + ./configure. (Kalle) + +- FFI: + . Added FFI extension. (Dmitry) + . Fixed bug #78488 (OOB in ZEND_FUNCTION(ffi_trampoline)). (Dmitry) + . Fixed bug #78543 (is_callable() on FFI\CData throws Exception). (cmb) + . Fixed bug #78716 (Function name mangling is wrong for some parameter + types). (cmb) + . Fixed bug #78762 (Failing FFI::cast() may leak memory). (cmb) + . Fixed bug #78761 (Zend memory heap corruption with preload and casting). + (cmb) + . Implement FR #78270 (Support __vectorcall convention with FFI). (cmb) + . Added missing FFI::isNull(). (Philip Hofstetter) + +- FPM: + . Implemented FR #72510 (systemd service should be hardened). (Craig Andrews) + . Fixed bug #74083 (master PHP-fpm is stopped on multiple reloads). + (Maksim Nikulin) + . Fixed bug #78334 (fpm log prefix message includes wrong stdout/stderr + notation). (Tsuyoshi Sadakata) + . Fixed bug #78599 (env_path_info underflow in fpm_main.c can lead to RCE). + (CVE-2019-11043) (Jakub Zelenka) + +- GD: + . Implemented the scatter filter (IMG_FILTER_SCATTER). (Kalle) + . The bundled libgd behaves now like system libgd wrt. IMG_CROP_DEFAULT never + falling back to IMG_CROP_SIDES. + . The default $mode parameter of imagecropauto() has been changed to + IMG_CROP_DEFAULT; passing -1 is now deprecated. + . Added support for aspect ratio preserving scaling to a fixed height for + imagescale(). (Andreas Treichel) + . Added TGA read support. (cmb) + . Fixed bug #73291 (imagecropauto() $threshold differs from external libgd). + (cmb) + . Fixed bug #76324 (cannot detect recent versions of freetype with + pkg-config). (Eli Schwartz) + . Fixed bug #78314 (missing freetype support/functions with external gd). + (Remi) + +- GMP: + . Fixed bug #78574 (broken shared build). (Remi) + +- Hash: + . The hash extension is now an integral part of PHP and cannot be disabled + as per RFC: https://wiki.php.net/rfc/permanent_hash_ext. (Kalle) + . Implemented FR #71890 (crc32c checksum algorithm). (Andrew Brampton) + +- Iconv: + . Fixed bug #78342 (Bus error in configure test for iconv //IGNORE). (Rainer + Jung) + . Fixed bug #78642 (Wrong libiconv version displayed). (gedas at martynas, + cmb). + +- Libxml: + . Fixed bug #78279 (libxml_disable_entity_loader settings is shared between + requests (cgi-fcgi)). (Nikita) + +- InterBase: + . Unbundled the InterBase extension and moved it to PECL. (Kalle) + +- Intl: + . Raised requirements to ICU ≥ 50.1. (cmb) + . Changed ResourceBundle to implement Countable. (LeSuisse) + . Changed default of $variant parameter of idn_to_ascii() and idn_to_utf8(). + (cmb) + +- LDAP: + . Deprecated ldap_control_paged_result_response and ldap_control_paged_result + +- LiteSpeed: + . Updated to LiteSpeed SAPI V7.5 (Fixed clean shutdown). (George Wang) + . 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) + +- MBString: + . Fixed bug #77907 (mb-functions do not respect default_encoding). (Nikita) + . 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 #67348 (Reading $dbc->stat 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 @@ +<h1>PHP 7.4.1 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.4.1. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.4.1 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.4.1">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.4.10 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.10. This is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.10 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.10">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.11 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.11. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.11 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.11">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.12 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.12. This is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.12 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.12">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.13 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.13. This is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.13 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.13">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.14 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.14. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.14 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.14">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.15 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.15. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.15 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.15">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.16 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.16. This is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.16 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.16">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.18 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.18. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.18 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.18">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.19 Release Announcement</h1> + +<p>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.</p> + +<p>PHP 7.4 users that use PDO_pgsql are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.19 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.19">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.2 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.4.2. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.4.2 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.4.2">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.4.20 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.20. This is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.20 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.20">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.21 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.21. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.21 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.21">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.22 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.22. This is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.22 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.22">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.23 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.23. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.23 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.23">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.24 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.24. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.24 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.24">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.25 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.25. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.25 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.25">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.26 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.26. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.26 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.26">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.27 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.27. This is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.27 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.27">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.28 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.28. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.28 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.28">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.29 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.29. This is a security release for Windows users.</p> + +<p>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.</p> + +<p>For source downloads of PHP 7.4.29 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.29">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.3 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.4.3. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.4.3 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.4.3">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.4.30 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.30. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.30 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.30">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.32 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.32. This is a security release.</p> + +<p>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.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.32 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.32">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.33 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.33.</p> + +<p>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.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.33 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.33">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.4 Release Announcement</h1> + + <p>The PHP development team announces the immediate availability of PHP + 7.4.4. This is a security release which also contains several bug fixes.</p> + + <p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + + <p>For source downloads of PHP 7.4.4 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.4.4">ChangeLog</a>. + </p> \ 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 @@ +<h1>PHP 7.4.5 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP +7.4.5. This is a security release which also contains several bug fixes.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.5 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.4.5">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.6 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP +7.4.6. This is a security release which also contains several bug fixes.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.6 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.4.6">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.7 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP +7.4.7. This release is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.7 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.4.7">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.8 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.8. +This is a security release impacting the <a +href="https://windows.php.net/">official Windows builds</a> of PHP.</p> + +<p>For windows users running an official build, this release contains a +patched version of <a href="https://curl.haxx.se">libcurl</a> addressing +<a href="https://curl.haxx.se/docs/CVE-2020-8169.html">CVE-2020-8169</a>.</p> + +<p>For all other consumers of PHP, this is a bug fix release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.8 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.8">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 7.4.8 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 7.4.9. This is a security release.</p> + +<p>All PHP 7.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 7.4.9 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-7.php#7.4.9">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.0 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.0. This release marks the latest major release of the PHP language.</p> + +<p>PHP 8.0 comes with numerous improvements and new features such as:</p> +<ul> + <li>Union Types</li> + <li>Named Arguments</li> + <li>Match Expressions</li> + <li>Attributes</li> + <li>Constructor Property Promotion</li> + <li>Nullsafe Operator</li> + <li>Weak Maps</li> + <li>Just In Time Compilation</li> + <li>And much much more...</li> +</ul> + +<p>Take a look at the <a href="https://www.php.net/releases/8.0/">PHP 8.0 Announcement Addendum</a> for more information.</p> + +<p>For source downloads of PHP 8.0.0 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.0">ChangeLog</a>. +</p> + +<p>The <a href="http://php.net/manual/en/migration80.php">migration guide</a> is available in the PHP Manual. +Please consult it for the detailed list of new features and backward incompatible changes.</p> + +<p>Many thanks to all the contributors and supporters!</p> \ 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 @@ +<h1>PHP 8.0.1 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.1. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.1 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.1">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.10 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.10. This is a security fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.10 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.10">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.11 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.11. This is a security release fixing CVE-2021-21706.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.11 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.11">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.12 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.12. This is a security fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.12 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.12">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.13 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.13. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.13 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.13">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.14 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.14. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.14 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.14">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.15 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.15. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.15 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.15">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.16 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.16. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.16 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.16">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.17 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.17. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.17 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.17">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.18 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.18. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.18 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.18">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.19 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.19. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.19 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.19">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.2 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.2. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.2 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.2">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.20 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.20. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.20 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.20">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.21 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.21. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.21 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.21">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.22 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.22. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.22 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.22">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.23 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.23. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.23 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.23">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.24 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.24. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.24 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.24">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.25 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.25. This is a security fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.25 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.25">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.26 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.26. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.26 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.26">ChangeLog</a>. +</p> + +<p>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 +<a href="https://www.php.net/supported-versions.php">Supported Versions</a> page.</p> \ 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 @@ +<h1>PHP 8.0.27 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.27. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.27 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.27">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.28 Release Announcement</h1> + +<p>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</p> + +<p>All PHP 8.0 users are advised to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.28 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.28">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.29 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.29. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.29 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/#php-8.0">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.29">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.3 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.3. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.3 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.3">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.30 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.30. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.30 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.30">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.5 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.5. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.5 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.5">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.6 Release Announcement</h1> + +<p>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.</p> + +<p>PHP 8.0 users that use PDO_pgsql are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.6 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.6">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.7 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.7. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.7 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.7">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.8 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.8. This is a security release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.8 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download#php-8.0">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.8">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.0.9 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.0.9. This is a bug fix release.</p> + +<p>All PHP 8.0 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.0.9 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.0.9">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.0 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.0. This release marks the latest minor release of the PHP language.</p> + +<p>PHP 8.1 comes with numerous improvements and new features such as:</p> +<ul> + <li><a href="https://www.php.net/manual/en/language.enumerations.php">Enumerations</a></li> + <li><a href="https://wiki.php.net/rfc/readonly_properties_v2">Readonly properties</a></li> + <li><a href="https://wiki.php.net/rfc/fibers">Fibers</a></li> + <li><a href="https://wiki.php.net/rfc/pure-intersection-types">Pure Intersection Types</a></li> + <li><a href="https://www.php.net/manual/en/migration81.new-features.php#migration81.new-features.core.never-type">never</a> return type</li> + <li><a href="https://www.php.net/manual/en/migration81.new-features.php#migration81.new-features.core.callable-syntax">First-class Callable Syntax</a></li> + <li>"final" modifier for class constants</li> + <li>New <a href="https://www.php.net/manual/en/function.fsync.php">fsync</a> and <a href="https://www.php.net/manual/en/function.fdatasync.php">fdatasync</a> functions</li> + <li>New <a href="https://www.php.net/manual/en/function.array-is-list.php">array_is_list</a> function</li> + <li>Explicit <a href="https://www.php.net/manual/en/migration81.new-features.php#migration81.new-features.core.octal-literal-prefix">Octal numeral notation</a></li> + <li>And much much more...</li> +</ul> + +<p>For source downloads of PHP 8.1.0 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.0">ChangeLog</a>. +</p> + +<p>The <a href="http://php.net/manual/en/migration81.php">migration guide</a> is available in the PHP Manual. +Please consult it for the detailed list of new features and backward incompatible changes.</p> + +<p>Many thanks to all the contributors and supporters!</p> \ 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 resource<ftp> to object \FTP\Connection. (Sara) + +- GD: + . Fixed bug #71316 (libpng warning from imagecreatefromstring). (cmb) + . Convert resource<gd font> to object \GdFont. (Sara) + +- hash: + . Implemented FR #68109 (Add MurmurHash V3). (Anatol, Michael) + . Implemented FR #73385 (Add xxHash support). (Anatol) + +- JSON: + . Fixed bug #81532 (Change of $depth behaviour in json_encode() on PHP 8.1). + (Nikita) + . Fixed bug GH-8238 (Register JSON_ERROR_NON_BACKED_ENUM constant). (ilutov) + +- LDAP: + . Convert resource<ldap link> to object \LDAP\Connection. (Máté) + . Convert resource<ldap result> to object \LDAP\Result. (Máté) + . Convert resource<ldap result entry> to object \LDAP\ResultEntry. (Máté) + +- MBString: + . Fixed bug #76167 (mbstring may use pointer from some previous request). + (cmb, cataphract) + . Fixed bug #81390 (mb_detect_encoding() regression). (alexdowad) + . Fixed bug #81349 (mb_detect_encoding misdetcts ASCII in some cases). + (Nikita) + . Fixed bug #81298 (mb_detect_encoding() segfaults when 7bit encoding is + specified). (Nikita) + +- MySQLi: + . Fixed bug #70372 (Emulate mysqli_fetch_all() for libmysqlclient). (Nikita) + . Fixed bug #80330 (Replace language in APIs and source code/docs). + (Darek Ślusarczyk) + . Fixed bug #80329 (Add option to specify LOAD DATA LOCAL white list folder + (including libmysql)). (Darek Ślusarczyk) + +- MySQLnd: + . Fixed bug #63327 (Crash (Bus Error) in mysqlnd due to wrong alignment). + (Nikita) + . Fixed bug #80761 (PDO uses too much memory). (Nikita) + +- Opcache: + . Fixed bug #81409 (Incorrect JIT code for ADD with a reference to array). + (Dmitry) + . Fixed bug #81255 (Memory leak in PHPUnit with functional JIT). + . Fixed bug #80959 (infinite loop in building cfg during JIT compilation). + (Nikita, Dmitry) + . 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 #81256 (Assertion `zv != ((void *)0)' failed for "preload" with + JIT). (Dmitry) + . Fixed bug #81133 (building opcache with phpize fails). (krakjoe) + . Fixed bug #81136 (opcache header not installed). (krakjoe) + . Added inheritance cache. (Dmitry) + +- OpenSSL: + . Fixed bug #81502 ($tag argument of openssl_decrypt() should accept + null/empty string). (Nikita) + . Bump minimal OpenSSL version to 1.0.2. (Jakub Zelenka) + +- PCRE: + . Fixed bug #81424 (PCRE2 10.35 JIT performance regression). (cmb) + . Bundled PCRE2 is 10.37. + +- PDO: + . Fixed bug #40913 (PDO_MYSQL: PDO::PARAM_LOB does not bind to a stream for + fetching a BLOB). (Nikita) + +- PDO MySQL: + . Fixed bug #80908 (PDO::lastInsertId() return wrong). (matt) + . Fixed bug #81037 (PDO discards error message text from prepared + statement). (Kamil Tekiela) + +- PDO OCI: + . Fixed bug #77120 (Support 'success with info' at connection). + (Sergei Morozov) + +- PDO ODBC: + . Implement PDO_ATTR_SERVER_VERSION and PDO_ATTR_SERVER_INFO for + PDO::getAttribute(). (Calvin Buckley) + +- PDO PgSQL: + . Fixed bug #81343 (pdo_pgsql: Inconsitent boolean conversion after calling + closeCursor()). (Philip Hofstetter) + +- PDO SQLite: + . Fixed bug #38334 (Proper data-type support for PDO_SQLITE). (Nikita) + +- PgSQL: + . Fixed bug #81509 (pg_end_copy still expects a resource). (Matteo) + . Convert resource<pgsql link> to object \PgSql\Connection. (Máté) + . Convert resource<pgsql result> to object \PgSql\Result. (Máté) + . Convert resource<pgsql large object> to object \PgSql\Lob. (Máté) + +- Phar: + . Use SHA256 by default for signature. (remi) + . Add support for OpenSSL_SHA256 and OpenSSL_SHA512 signature. (remi) + +- phpdbg: + . Fixed bug #81135 (unknown help topic causes assertion failure). (krakjoe) + +- PSpell: + . Convert resource<pspell> to object \PSpell\Dictionary. (Sara) + . Convert resource<pspell config> to object \PSpell\Config. (Sara) + +- readline: + . Fixed bug #72998 (invalid read in readline completion). (krakjoe) + +- Reflection: + . Fixed bug #81611 (ArgumentCountError when getting default value from + ReflectionParameter with new). (Cameron Porter) + . Fixed bug #81630 (PHP 8.1: ReflectionClass->getTraitAliases() crashes with + Internal error). (Nikita) + . Fixed bug #81457 (Enum: ReflectionMethod->getDeclaringClass() return a + ReflectionClass). (Nikita) + . Fixed bug #81474 (Make ReflectionEnum and related class non-final). (Nikita) + . Fixed bug #80821 (ReflectionProperty::getDefaultValue() returns current + value for statics). (Nikita) + . Fixed bug #80564 (ReflectionProperty::__toString() renders current value, + not default value). (Nikita) + . Fixed bug #80097 (ReflectionAttribute is not a Reflector). (beberlei) + . Fixed bug #81200 (no way to determine if Closure is static). (krakjoe) + . Implement ReflectionFunctionAbstract::getClosureUsedVariables. (krakjoe) + +- Shmop: + . Fixed bug #81407 (shmop_open won't attach and causes php to crash). (cmb) + +- SimpleXML: + . Fixed bug #81325 (Segfault in zif_simplexml_import_dom). (remi) + +- SNMP: + . Implement SHA256 and SHA512 for security protocol. (remi) + +- Sodium: + . Added the XChaCha20 stream cipher functions. (P.I.E. Security Team) + . Added the Ristretto255 functions, which are available in libsodium 1.0.18. + (P.I.E. Security Team) + +- SPL: + . Fixed bug #66588 (SplFileObject::fgetcsv incorrectly returns a row on + premature EOF). (Aliaksandr Bystry) + . 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) + . Fixed bug #81112 (Special json_encode behavior for SplFixedArray). (Nikita) + . Fixed bug #80945 ("Notice: Undefined index" on unset() ArrayObject + non-existing key). (Nikita) + . Fixed bug #80724 (FilesystemIterator::FOLLOW_SYMLINKS remove KEY_AS_FILE + from bitmask). (Cameron Porter) + +- Standard: + . Fixed bug #81441 (gethostbyaddr('::1') returns ip instead of name after + calling some other method). (Nikita) + . Fixed bug #81491 (Incorrectly using libsodium for argon2 hashing). + (Dan Pock) + . Fixed bug #81142 (PHP 7.3+ memory leak when unserialize() is used on an + associative array). (Nikita) + . Fixed bug #81111 (Serialization is unexpectedly allowed on anonymous classes + with __serialize()). (Nikita) + . Fixed bug #81137 (hrtime breaks build on OSX before Sierra). (krakjoe) + . Fixed bug #77627 (method_exists on Closure::__invoke inconsistency). + (krakjoe) + +- Streams: + . Fixed bug #81475 (stream_isatty emits warning with attached stream wrapper). + (cmb) + +- XML: + . Fixed bug #79971 (special character is breaking the path in xml function) + (CVE-2021-21707). (cmb) + . 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) + . Fixed bug #81420 (ZipArchive::extractTo extracts outside of destination) + (CVE-2021-21706). (cmb) + . Fixed bug #80833 (ZipArchive::getStream doesn't use setPassword). (Remi) diff --git a/data/releases/8.1/8.1.0/release.json b/data/releases/8.1/8.1.0/release.json new file mode 100644 index 0000000000..ae43117ee3 --- /dev/null +++ b/data/releases/8.1/8.1.0/release.json @@ -0,0 +1,22 @@ +{ + "version": "8.1.0", + "date": "25 Nov 2021", + "tags": [], + "source": [ + { + "filename": "php-8.1.0.tar.gz", + "name": "PHP 8.1.0 (tar.gz)", + "sha256": "848705043ea4a6e022246ae12a1bff6afcf5c73ea98c6ac4d2108d6028c5c125" + }, + { + "filename": "php-8.1.0.tar.bz2", + "name": "PHP 8.1.0 (tar.bz2)", + "sha256": "0725ed2baea125496a898455d501a77460218b2a0cfad773fa9322f491b82b61" + }, + { + "filename": "php-8.1.0.tar.xz", + "name": "PHP 8.1.0 (tar.xz)", + "sha256": "a1317eff0723a2b3d3122bbfe107a1158570ea2822dc35a5fb360086db0f6bbc" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.1/8.1.1/announcement.html b/data/releases/8.1/8.1.1/announcement.html new file mode 100644 index 0000000000..e0c82d5ba5 --- /dev/null +++ b/data/releases/8.1/8.1.1/announcement.html @@ -0,0 +1,10 @@ +<h1>PHP 8.1.1 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.1. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.1 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.1">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.10 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.10. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.10 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.10">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.11 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.11. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.11 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.11">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.12 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.12. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.12 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.12">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.13 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.13. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.13 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.13">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.14 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.14. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.14 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.14">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.15 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.15. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.15 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.15">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.16 Release Announcement</h1> + +<p>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.</p> + +<p>All PHP 8.1 users are advised to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.16 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.16">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.17 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.17. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.17 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.17">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.18 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.18. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.18 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.18">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.19 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.19. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.19 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.19">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.2 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.2. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.2 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.2">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.20 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.20. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.20 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.20">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.21 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.21. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.21 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.21">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.22 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.22. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.22 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.22">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.23 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.23. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.23 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.23">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.24 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.24. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.24 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.24">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.25 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.25. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.25 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.25">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.26 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.26. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.26 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.26">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.27 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.27. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.27 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.27">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.28 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.28. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.28 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.28">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.29 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.29. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.29 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.29">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.3 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.3. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.3 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.3">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.30 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.30. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.30 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.30">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.31 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.31. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.31 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.31">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.32 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.32. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.32 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.32">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.33 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.33. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.33 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.33">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.34 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.34. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.34 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.1">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.34">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.4 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.4. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.4 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.4">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.5 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.5. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.5 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.5">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.6 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.6. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.6 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.6">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.7 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.7. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.7 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.7">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.8 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.8. This is a security release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.8 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.8">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.1.9 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.1.9. This is a bug fix release.</p> + +<p>All PHP 8.1 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.1.9 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.1.9">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.0 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.0. This release marks the latest minor release of the PHP language.</p> + +<p>PHP 8.2 comes with numerous improvements and new features such as:</p> + +<ul> + <li><a href="https://www.php.net/manual/en/language.oop5.basic.php#language.oop5.basic.class.readonly">Readonly classes</a></li> + <li><a href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.type-system">Disjunctive Normal Form (DNF) Types</a></li> + <li>New stand-alone types: <a href="https://wiki.php.net/rfc/null-false-standalone-types">null, false</a>, and <a href="https://wiki.php.net/rfc/true-type">true</a></li> + <li><a href="https://www.php.net/manual/en/book.random.php">New "Random" extension</a></li> + <li><a href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.constant-in-traits">Constants in traits</a></li> + <li><a href="https://www.php.net/manual/en/migration82.deprecated.php#migration82.deprecated.core.dynamic-properties">Deprecate dynamic properties</a></li> + <li>And much much more...</li> +</ul> + +<p> + For source downloads of PHP 8.2.0 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.0">ChangeLog</a>. +</p> + +<p> + The <a href="https://php.net/manual/en/migration82.php">migration guide</a> is available in the PHP Manual. + Please consult it for the detailed list of new features and backward incompatible changes. +</p> + +<p>Kudos to all the contributors and supporters!</p> \ 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 @@ +<h1>PHP 8.2.1 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.1. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.1 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.1">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.10 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.10. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.10 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.10">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.11 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.11. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.11 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.11">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.12 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.12. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.12 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.12">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.13 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.13. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.13 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.13">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.14 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.14. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.14 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.14">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.15 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.15. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.15 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.15">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.16 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.16. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.16 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.16">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.17 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.17. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.17 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.17">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.18 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.18. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.18 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.18">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.19 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.19. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.19 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.19">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.2 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.2. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.2 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.2">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.20 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.20. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.20 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.20">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.21 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.21. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.21 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.21">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.22 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.22. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.22 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.22">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.23 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.23. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.23 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.23">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.24 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.24. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.24 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.24">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.25 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.25. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.25 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.25">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.26 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.26. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.26 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.26">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.27 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.27. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.27 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.27">ChangeLog</a>. +</p> + +<p>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 <a href="https://www.php.net/supported-versions">Supported Versions</a> page. +</p> \ 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 @@ +<h1>PHP 8.2.28 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.28. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.28 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.28">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.29 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.29. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.29 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.29">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.3 Release Announcement</h1> + +<p>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.</p> + +<p>All PHP 8.2 users are advised to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.3 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.3">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.30 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.30. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.30 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.2">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.30">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.31 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.31. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.31 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.2">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.31">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.4 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.4. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.4 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.4">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.5 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.5. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.5 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.5">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.6 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.6. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.6 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.6">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.7 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.7. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.7 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.7">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.8 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.8. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.8 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.8">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.2.9 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.9. This is a security release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p><b>Windows source and binaries are not synchronized and do not contain a fix for GH-11854.</b></p> + +<p>For source downloads of PHP 8.2.9 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.9">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.0 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.0. This release marks +the latest minor release of the PHP language.</p> + +<p>PHP 8.3 comes with numerous improvements and new features such as:</p> + +<ul> + <li><a href="https://www.php.net/manual/en/migration83.new-features.php#migration83.new-features.core.typed-class-constants">Typed Class Constants</a></li> + <li><a href="https://www.php.net/manual/en/migration83.new-features.php#migration83.new-features.core.fetch-class-constant-dynamically-syntax">Fetch class constant dynamically syntax</a></li> + <li><a href="https://www.php.net/manual/en/migration83.new-features.php#migration83.new-features.core.readonly-modifier-improvements">Readonly Amendments</a></li> + <li><a href="https://www.php.net/manual/en/migration83.new-features.php#migration83.new-features.core.override-attribute">Override Attribute</a></li> + <li><a href="https://www.php.net/manual/en/random-randomizer.getbytesfromstring.php">New Randomizer method Random\Randomizer::getBytesFromString</a></li> + <li><a href="https://www.php.net/manual/en/function.json-validate.php">New function json_validate</a></li> + <li>And much much more...</li> +</ul> + +<p>For source downloads of PHP 8.3.0 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.0">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.1 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.1. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.1 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.1">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.10 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.10. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.10 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.10">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.11 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.11. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.11 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.11">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.12 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.12. This is a security release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.12 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.12">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.13 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.13. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.13 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.13">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.14 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.14. This is a security release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.14 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.14">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.15 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.15. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.15 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.15">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.16 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.16. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.16 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.16">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.17 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.17. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.17 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.17">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.19 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.19. This is a security release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.19 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.19">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.2 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.2. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.2 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.2">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.20 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.20. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.20 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.20">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.21 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.21. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.21 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.21">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.22 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.22. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.22 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.22">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.23 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.23. This is a security release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.23 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.23">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.24 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.24. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.24 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.24">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.25 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.25. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.25 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.25">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.26 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.26. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.26 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.26">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.27 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.27. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.27 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.27">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.28 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.28. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.28 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.28">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.29 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.29. This is a security release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.29 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.3">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.29">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.3 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.3. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.3 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.3">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.30 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.30. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.30 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.3">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.30">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.31 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.31. This is a security release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.31 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.3">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.31">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.4 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.4. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.4 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.4">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.6 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.6. This is a security release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.6 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.6">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.7 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.7. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.7 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.7">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.8 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.8. This is a security release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.8 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.8">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.3.9 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.9. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.9 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.3.9">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.1 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.1. This release marks +the latest minor release of the PHP language.</p> + +<p>PHP 8.4 comes with numerous improvements and new features such as:</p> + +<ul> + <li><a href="https://www.php.net/manual/en/migration84.new-features.php#migration84.new-features.core.property-hooks">Property Hooks</a></li> + <li><a href="https://www.php.net/manual/en/migration84.new-features.php#migration84.new-features.core.asymmetric-property-visibility">Asymmetric Property Visibility</a></li> + <li><a href="https://www.php.net/manual/en/migration84.new-features.php#migration84.new-features.core.lazy-objects">Lazy Objects</a></li> + <li><a href="https://www.php.net/manual/en/migration84.new-features.php#migration84.new-features.pdo">PDO driver-specific subclasses</a></li> + <li><a href="https://www.php.net/manual/en/migration84.new-classes.php#migration84.new-classes.bcmath">BCMath object type</a></li> + <li>And much much more...</li> +</ul> + +<p>For source downloads of PHP 8.4.1 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.1">ChangeLog</a>. +</p> \ 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_<header>_H macros defined to 1 or + undefined). (Peter Kokot) + . Implemented asymmetric visibility for properties. (ilutov) + . Fixed bug GH-15644 (Asymmetric visibility doesn't work with hooks). (ilutov) + . Implemented lazy objects RFC. (Arnaud) + . Fixed bug GH-15686 (Building shared iconv with external iconv library). + (Peter Kokot, zeriyoshi) + . Fixed missing error when adding asymmetric visibility to unilateral virtual + property. (ilutov) + . Fixed bug GH-15693 (Unnecessary include in main.c bloats binary). + (nielsdos) + . Fixed bug GH-15731 (AllowDynamicProperties validation should error on + enums). (DanielEScherzer) + . Fixed bug GH-16040 (Use-after-free of object released in hook). (ilutov) + . Fixed bug GH-16026 (Reuse of dtor fiber during shutdown). (Arnaud) + . Fixed bug GH-15999 (zend_std_write_property() assertion failure with lazy + objects). (Arnaud) + . Fixed bug GH-15960 (Foreach edge cases with lazy objects). (Arnaud) + . Fixed bug GH-16185 (Various hooked object iterator issues). (ilutov) + . Fixed bug OSS-Fuzz #371445205 (Heap-use-after-free in attr_free). + (nielsdos) + . Fixed missing error when adding asymmetric visibility to static properties. + (ilutov) + . Fixed bug OSS-Fuzz #71407 (Null-dereference WRITE in + zend_lazy_object_clone). (Arnaud) + . Fixed bug GH-16574 (Incorrect error "undefined method" messages). + (nielsdos) + . Fixed bug GH-16577 (EG(strtod_state).freelist leaks with opcache.preload). + (nielsdos) + . Fixed bug GH-16615 (Assertion failure in zend_std_read_property). (Arnaud) + . Fixed bug GH-16342 (Added ReflectionProperty::isLazy()). (Arnaud) + . Fixed bug GH-16725 (Incorrect access check for non-hooked props in hooked + object iterator). (ilutov) + +- Curl: + . Deprecated the CURLOPT_BINARYTRANSFER constant. (divinity76) + . Bumped required libcurl version to 7.61.0. (Ayesh) + . Added feature_list key to the curl_version() return value. (Ayesh) + . Added constants CURL_HTTP_VERSION_3 (libcurl 7.66) and CURL_HTTP_VERSION_3ONLY + (libcurl 7.88) as options for CURLOPT_HTTP_VERSION (Ayesh Karunaratne) + . Added CURLOPT_TCP_KEEPCNT to set the number of probes to send before + dropping the connection. (David Carlier) + . Added CURLOPT_PREREQFUNCTION Curl option to set a custom callback + after the connection is established, but before the request is + performed. (Ayesh Karunaratne) + . Added CURLOPT_SERVER_RESPONSE_TIMEOUT, which was formerly known as + CURLOPT_FTP_RESPONSE_TIMEOUT. (Ayesh Karunaratne) + . The CURLOPT_DNS_USE_GLOBAL_CACHE option is now silently ignored. (Ayesh Karunaratne) + . Added CURLOPT_DEBUGFUNCTION as a Curl option. (Ayesh Karunaratne) + . Fixed bug GH-16359 (crash with curl_setopt* CURLOPT_WRITEFUNCTION + without null callback). (David Carlier) + . Fixed bug GH-16723 (CURLMOPT_PUSHFUNCTION issues). (cmb) + +- Date: + . Added DateTime[Immutable]::createFromTimestamp. (Marc Bennewitz) + . Added DateTime[Immutable]::[get|set]Microsecond. (Marc Bennewitz) + . Constants SUNFUNCS_RET_TIMESTAMP, SUNFUNCS_RET_STRING, and SUNFUNCS_RET_DOUBLE + are now deprecated. (Jorg Sowa) + . Fixed bug GH-13773 (DatePeriod not taking into account microseconds for end + date). (Mark Bennewitz, Derick) + +- DBA: + . Passing null or false to dba_key_split() is deprecated. (Grigias) + +- Debugging: + . Fixed bug GH-15923 (GDB: Python Exception <class 'TypeError'>: + exceptions must derive from BaseException). (nielsdos) + +- DOM: + . Added DOMNode::compareDocumentPosition(). (nielsdos) + . Implement #53655 (Improve speed of DOMNode::C14N() on large XML documents). + (nielsdos) + . Fix cloning attribute with namespace disappearing namespace. (nielsdos) + . Implement DOM HTML5 parsing and serialization RFC. (nielsdos) + . Fix DOMElement->prefix with empty string creates bogus prefix. (nielsdos) + . Handle OOM more consistently. (nielsdos) + . Implemented "Improve callbacks in ext/dom and ext/xsl" RFC. (nielsdos) + . Added DOMXPath::quote() static method. (divinity76) + . Implemented opt-in ext/dom spec compliance RFC. (nielsdos) + . Fixed bug #79701 (getElementById does not correctly work with duplicate + definitions). (nielsdos) + . Implemented "New ext-dom features in PHP 8.4" RFC. (nielsdos) + . Fixed GH-14698 (segfault on DOM node dereference). (David Carlier) + . Improve support for template elements. (nielsdos) + . Fix trampoline leak in xpath callables. (nielsdos) + . Throw instead of silently failing when creating a too long text node in + (DOM)ParentNode and (DOM)ChildNode. (nielsdos) + . Fixed bug GH-15192 (Segmentation fault in dom extension + (html5_serializer)). (nielsdos) + . Deprecated DOM_PHP_ERR constant. (nielsdos) + . Removed DOMImplementation::getFeature(). (nielsdos) + . Fixed bug GH-15331 (Element::$substitutedNodeValue test failed). (nielsdos) + . Fixed bug GH-15570 (Segmentation fault (access null pointer) in + ext/dom/html5_serializer.c). (nielsdos) + . Fixed bug GH-13988 (Storing DOMElement consume 4 times more memory in + PHP 8.1 than in PHP 8.0). (nielsdos) + . Fix XML serializer errata: xmlns="" serialization should be allowed. + (nielsdos) + . Fixed bug GH-15910 (Assertion failure in ext/dom/element.c). (nielsdos) + . Fix unsetting DOM properties. (nielsdos) + . Fixed bug GH-16190 (Using reflection to call Dom\Node::__construct + causes assertion failure). (nielsdos) + . Fix edge-case in DOM parsing decoding. (nielsdos) + . Fixed bug GH-16465 (Heap buffer overflow in DOMNode->getElementByTagName). + (nielsdos) + . Fixed bug GH-16594 (Assertion failure in DOM -> before). (nielsdos) + +- Fileinfo: + . Update to libmagic 5.45. (nielsdos) + . Fixed bug #65106 (PHP fails to compile ext/fileinfo). (Guillaume Outters) + +- FPM: + . Implement GH-12385 (flush headers without body when calling flush()). + (nielsdos) + . Added DragonFlyBSD system to the list which set FPM_BACKLOG_DEFAULT + to SOMAXCONN. (David Carlier) + . /dev/poll events.mechanism for Solaris/Illumos setting had been retired. + (David Carlier) + . Added memory peak to the scoreboard / status page. (Flávio Heleno) + +- FTP: + . Removed the deprecated inet_ntoa call support. (David Carlier) + . Fixed bug #63937 (Upload speed 10 times slower with PHP). (nielsdos) + +- GD: + . Fix parameter numbers and missing alpha check for imagecolorset(). + (Giovanni Giacobbi) + . imagepng/imagejpeg/imagewep/imageavif now throw an exception on + invalid quality parameter. (David Carlier) + . Check overflow/underflow for imagescale/imagefilter. (David Carlier) + . Added gdImageClone to bundled libgd. (David Carlier) + +- Gettext: + . bind_textdomain_codeset, textdomain and d(*)gettext functions + now throw an exception on empty domain. (David Carlier) + +- GMP: + . The GMP class is now final and cannot be extended anymore. (Girgias) + . RFC: Change GMP bool cast behavior. (Saki Takamachi) + +- Hash: + . Changed return type of hash_update() to true. (nielsdos) + . Added HashContext::__debugInfo(). (timwolla) + . Deprecated passing incorrect data types for options to ext/hash functions. + (nielsdos) + . Added SSE2 and SHA-NI implementation of SHA-256. (timwolla, Colin Percival, + Graham Percival) + . Fix GH-15384 (Build fails on Alpine / Musl for amd64). (timwolla) + . Fixed bug GH-15742 (php_hash_sha.h incompatible with C++). (cmb) + +- IMAP: + . Moved to PECL. (Derick Rethans) + +- Intl: + . Added IntlDateFormatter::PATTERN constant. (David Carlier) + . Fixed Numberformatter::__construct when the locale is invalid, now + throws an exception. (David Carlier) + . Added NumberFormatter::ROUND_TOWARD_ZERO and ::ROUND_AWAY_FROM_ZERO as + aliases for ::ROUND_DOWN and ::ROUND_UP. (Jorg Sowa) + . Added NumberFormatter::ROUND_HALFODD. (Ayesh Karunaratne) + . Added PROPERTY_IDS_UNARY_OPERATOR, PROPERTY_ID_COMPAT_MATH_START and + PROPERTY_ID_COMPAT_MATH_CONTINUE constants. (David Carlier) + . Added IntlDateFormatter::getIanaID/intltz_get_iana_id method/function. + (David Carlier) + . Set to C++17 standard for icu 74 and onwards. (David Carlier) + . resourcebundle_get(), ResourceBundle::get(), and accessing offsets on a + ResourceBundle object now throw: + - TypeError for invalid offset types + - ValueError for an empty string + - ValueError if the integer index does not fit in a signed 32 bit integer + . ResourceBundle::get() now has a tentative return type of: + ResourceBundle|array|string|int|null + . Added the new Grapheme function grapheme_str_split. (youkidearitai) + . Added IntlDateFormatter::parseToCalendar. (David Carlier) + . Added SpoofChecker::setAllowedChars to set unicode chars ranges. + (David Carlier) + +- LDAP: + . Added LDAP_OPT_X_TLS_PROTOCOL_MAX/LDAP_OPT_X_TLS_PROTOCOL_TLS1_3 + constants. (StephenWall) + +- LibXML: + . Added LIBXML_RECOVER constant. (nielsdos) + . libxml_set_streams_context() now throws immediately on an invalid context + instead of at the use-site. (nielsdos) + . Added LIBXML_NO_XXE constant. (nielsdos) + +- MBString: + . Added mb_trim, mb_ltrim and mb_rtrim. (Yuya Hamada) + . Added mb_ucfirst and mb_lcfirst. (Yuya Hamada) + . Updated Unicode data tables to Unicode 15.1. (Ayesh Karunaratne) + . Fixed bug GH-15824 (mb_detect_encoding(): Argument $encodings contains + invalid encoding "UTF8"). (Yuya Hamada) + . Updated Unicode data tables to Unicode 16.0. (Ayesh Karunaratne) + +- Mysqli: + . The mysqli_ping() function and mysqli::ping() method are now deprecated, + as the reconnect feature was removed in PHP 8.2. (Kamil Tekiela) + . The mysqli_kill() function and mysqli::kill() method are now deprecated. + If this functionality is needed a SQL "KILL" command can be used instead. + (Kamil Tekiela) + . The mysqli_refresh() function and mysqli::refresh() method are now deprecated. + If this functionality is needed a SQL "FLUSH" command can be used instead. + (Kamil Tekiela) + . Passing explicitly the $mode parameter to mysqli_store_result() has been + deprecated. As the MYSQLI_STORE_RESULT_COPY_DATA constant was only used in + conjunction with this function it has also been deprecated. (Girgias) + +- MySQLnd: + . Fixed bug GH-13440 (PDO quote bottleneck). (nielsdos) + . Fixed bug GH-10599 (Apache crash on Windows when using a self-referencing + anonymous function inside a class with an active mysqli connection). + (nielsdos) + +- Opcache: + . Added large shared segments support for FreeBSD. (David Carlier) + . If JIT is enabled, PHP will now exit with a fatal error on startup in case + of JIT startup initialization issues. (danog) + . Increased the maximum value of opcache.interned_strings_buffer to 32767 on + 64bit archs. (Arnaud) + . Fixed bug GH-13834 (Applying non-zero offset 36 to null pointer in + zend_jit.c). (nielsdos) + . Fixed bug GH-14361 (Deep recursion in zend_cfg.c causes segfault). + (nielsdos) + . Fixed bug GH-14873 (PHP 8.4 min function fails on typed integer). + (nielsdos) + . Fixed bug GH-15490 (Building of callgraph modifies preloaded symbols). + (ilutov) + . Fixed bug GH-15178 (Assertion in tracing JIT on hooks). (ilutov) + . Fixed bug GH-15657 (Segmentation fault in dasm_x86.h). (nielsdos) + . Added opcache_jit_blacklist() function. (Bob) + . Fixed bug GH-16009 (Segmentation fault with frameless functions and + undefined CVs). (nielsdos) + . Fixed bug GH-16186 (Assertion failure in Zend/zend_operators.c). (Arnaud) + . Fixed bug GH-16572 (Incorrect result with reflection in low-trigger JIT). + (nielsdos) + . Fixed GH-16839 (Error on building Opcache JIT for Windows ARM64). (cmb) + +- OpenSSL: + . Fixed bug #80269 (OpenSSL sets Subject wrong with extraattribs parameter). + (Jakub Zelenka) + . Implement request #48520 (openssl_csr_new - allow multiple values in DN). + (Jakub Zelenka) + . Introduced new serial_hex parameter to openssl_csr_sign. (Jakub Zelenka, + Florian Sowade) + . Added X509_PURPOSE_OCSP_HELPER and X509_PURPOSE_TIMESTAMP_SIGN constants. + (Vincent Jardin) + . Bumped minimum required OpenSSL version to 1.1.1. (Ayesh Karunaratne) + . Added compile-time option --with-openssl-legacy-provider to enable legacy + provider. (Adam Saponara) + . Added support for Curve25519 + Curve448 based keys. (Manuel Mausz) + . Fixed bug GH-13343 (openssl_x509_parse should not allow omitted seconds in + UTCTimes). (Jakub Zelenka) + . Bumped minimum required OpenSSL version to 1.1.0. (cmb) + . Implement GH-13514 PASSWORD_ARGON2 from OpenSSL 3.2. (Remi) + +- Output: + . Clear output handler status flags during handler initialization. (haszi) + . Fixed bug with url_rewriter.hosts not used by output_add_rewrite_var(). + (haszi) + +- PCNTL: + . Added pcntl_setns for Linux. (David Carlier) + . Added pcntl_getcpuaffinity/pcntl_setcpuaffinity. (David Carlier) + . Updated pcntl_get_signal_handler signal id upper limit to be + more in line with platforms limits. (David Carlier) + . Added pcntl_getcpu for Linux/FreeBSD/Solaris/Illumos. (David Carlier) + . Added pcntl_getqos_class/pcntl_setqos_class for macOs. (David Carlier) + . Added SIGCKPT/SIGCKPTEXIT constants for DragonFlyBSD. (David Carlier) + . Added FreeBSD's SIGTRAP handling to pcntl_siginfo_to_zval. (David Carlier) + . Added POSIX pcntl_waitid. (Vladimir Vrzić) + . Fixed bug GH-16769: (pcntl_sigwaitinfo aborts on signal value + as reference). (David Carlier) + +- PCRE: + . Upgrade bundled pcre2lib to version 10.43. (nielsdos) + . Add "/r" modifier. (Ayesh) + . Upgrade bundled pcre2lib to version 10.44. (Ayesh) + . Fixed GH-16189 (underflow on offset argument). (David Carlier) + . Fix UAF issues with PCRE after request shutdown. (nielsdos) + +- PDO: + . Fixed setAttribute and getAttribute. (SakiTakamachi) + . Implemented PDO driver-specific subclasses RFC. (danack, kocsismate) + . Added support for PDO driver-specific SQL parsers. (Matteo Beccati) + . Fixed bug GH-14792 (Compilation failure on pdo_* extensions). + (Peter Kokot) + . mysqlnd: support ER_CLIENT_INTERACTION_TIMEOUT. (Appla) + . The internal header php_pdo_int.h is no longer installed; it is not + supposed to be used by PDO drivers. (cmb) + . Fixed bug GH-16167 (Prevent mixing PDO sub-classes with different DSN). + (kocsismate) + . Fixed bug GH-16314 ("Pdo\Mysql object is uninitialized" when opening a + persistent connection). (kocsismate) + +- PDO_DBLIB: + . Fixed setAttribute and getAttribute. (SakiTakamachi) + . Added class Pdo\DbLib. (danack, kocsismate) + +- PDO_Firebird: + . Fixed setAttribute and getAttribute. (SakiTakamachi) + . Feature: Add transaction isolation level and mode settings to pdo_firebird. + (SakiTakamachi) + . Added class Pdo\Firebird. (danack, kocsismate) + . Added Pdo\Firebird::ATTR_API_VERSION. (SakiTakamachi) + . Added getApiVersion() and removed from getAttribute(). + (SakiTakamachi) + . Supported Firebird 4.0 datatypes. (sim1984) + . Support proper formatting of time zone types. (sim1984) + . Fixed GH-15604 (Always make input parameters nullable). (sim1984) + +- PDO_MYSQL: + . Fixed setAttribute and getAttribute. (SakiTakamachi) + . Added class Pdo\Mysql. (danack, kocsismate) + . Added custom SQL parser. (Matteo Beccati) + . Fixed GH-15949 (PDO_MySQL not properly quoting PDO_PARAM_LOB binary + data). (mbeccati, lcobucci) + +- PDO_ODBC: + . Added class Pdo\Odbc. (danack, kocsismate) + +- PDO_PGSQL: + . Fixed GH-12423, DSN credentials being prioritized over the user/password + PDO constructor arguments. (SakiTakamachi) + . Fixed native float support with pdo_pgsql query results. (Yurunsoft) + . Added class Pdo\Pgsql. (danack, kocsismate) + . Retrieve the memory usage of the query result resource. (KentarouTakeda) + . Added Pdo\Pgsql::setNoticeCallBack method to receive DB notices. + (outtersg) + . Added custom SQL parser. (Matteo Beccati) + . Fixed GH-15986 (Double-free due to Pdo\Pgsql::setNoticeCallback()). (cmb, + nielsdos) + . Fixed GH-12940 (Using PQclosePrepared when available instead of + the DEALLOCATE command to free statements resources). (David Carlier) + . Remove PGSQL_ATTR_RESULT_MEMORY_SIZE constant as it is provided by + the new PDO Subclass as Pdo\Pgsql::ATTR_RESULT_MEMORY_SIZE. (Girgias) + +- PDO_SQLITE: + . Added class Pdo\Sqlite. (danack, kocsismate) + . Fixed bug #81227 (PDO::inTransaction reports false when in transaction). + (nielsdos) + . Added custom SQL parser. (Matteo Beccati) + +- PHPDBG: + . array out of bounds, stack overflow handled for segfault handler on windows. + (David Carlier) + . Fixed bug GH-16041 (Support stack limit in phpdbg). (Arnaud) + +- PGSQL: + . Added the possibility to have no conditions for pg_select. (OmarEmaraDev) + . Persistent connections support the PGSQL_CONNECT_FORCE_RENEW flag. + (David Carlier) + . Added pg_result_memory_size to get the query result memory usage. + (KentarouTakeda) + . Added pg_change_password to alter an user's password. (David Carlier) + . Added pg_put_copy_data/pg_put_copy_end to send COPY commands and signal + the end of the COPY. (David Carlier) + . Added pg_socket_poll to poll on the connection. (David Carlier) + . Added pg_jit to get infos on server JIT support. (David Carlier) + . Added pg_set_chunked_rows_size to fetch results per chunk. (David Carlier) + . pg_convert/pg_insert/pg_update/pg_delete ; regexes are now cached. + (David Carlier) + +- Phar: + . Fixed bug GH-12532 (PharData created from zip has incorrect timestamp). + (nielsdos) + +- POSIX: + . Added POSIX_SC_CHILD_MAX and POSIX_SC_CLK_TCK constants. (Jakub Zelenka) + . Updated posix_isatty to set the error number on file descriptors. + (David Carlier) + +- PSpell: + . Moved to PECL. (Derick Rethans) + +- Random: + . Fixed bug GH-15094 (php_random_default_engine() is not C++ conforming). + (cmb) + . lcg_value() is now deprecated. (timwolla) + +- Readline: + . Fixed readline_info, rl_line_buffer_length/rl_len globals on update. + (David Carlier) + . Fixed bug #51558 (Shared readline build fails). (Peter Kokot) + . Fixed UAF with readline_info(). (David Carlier) + +- Reflection: + . Implement GH-12908 (Show attribute name/class in ReflectionAttribute dump). + (nielsdos) + . Make ReflectionGenerator::getFunction() legal after generator termination. + (timwolla) + . Added ReflectionGenerator::isClosed(). (timwolla) + . Fixed bug GH-15718 (Segfault on ReflectionProperty::get{Hook,Hooks}() on + dynamic properties). (DanielEScherzer) + . Fixed bug GH-15694 (ReflectionProperty::isInitialized() is incorrect for + hooked properties). (ilutov) + . Add missing ReflectionProperty::hasHook[s]() methods. (ilutov) + . Add missing ReflectionProperty::isFinal() method. (ilutov) + . Fixed bug GH-16122 (The return value of ReflectionFunction::getNamespaceName() + and ReflectionFunction::inNamespace() for closures is incorrect). (timwolla) + . Fixed bug GH-16162 (No ReflectionProperty::IS_VIRTUAL) (DanielEScherzer) + . Fixed the name of the second parameter of + ReflectionClass::resetAsLazyGhost(). (Arnaud) + +- Session: + . INI settings session.sid_length and session.sid_bits_per_character are now + deprecated. (timwolla) + . Emit warnings for non-positive values of session.gc_divisor and negative values + of session.gc_probability. (Jorg Sowa) + . Fixed bug GH-16590 (UAF in session_encode()). (nielsdos) + +- SimpleXML: + . Fix signature of simplexml_import_dom(). (nielsdos) + +- SNMP: + . Removed the deprecated inet_ntoa call support. (David Carlier) + +- SOAP: + . Add support for clark notation for namespaces in class map. (lxShaDoWxl) + . Mitigate #51561 (SoapServer with a extented class and using sessions, + lost the setPersistence()). (nielsdos) + . Fixed bug #49278 (SoapClient::__getLastResponseHeaders returns NULL if + wsdl operation !has output). (nielsdos) + . Fixed bug #44383 (PHP DateTime not converted to xsd:datetime). (nielsdos) + . Fixed bug GH-11941 (soap with session persistence will silently fail when + "session" built as a shared object). (nielsdos) + . Passing an int to SoapServer::addFunction() is now deprecated. + If all PHP functions need to be provided flatten the array returned by + get_defined_functions(). (Girgias) + . The SOAP_FUNCTIONS_ALL constant is now deprecated. (Girgias) + . Fixed bug #61525 (SOAP functions require at least one space after HTTP + header colon). (nielsdos) + . Implement request #47317 (SoapServer::__getLastResponse()). (nielsdos) + +- Sockets: + . Removed the deprecated inet_ntoa call support. (David Carlier) + . Added the SO_EXECLUSIVEADDRUSE windows constant. (David Carlier) + . Added the SOCK_CONN_DGRAM/SOCK_DCCP netbsd constants. (David Carlier) + . Added multicast group support for ipv4 on FreeBSD. (jonathan@tangential.ca) + . Added the TCP_SYNCNT constant for Linux to set number of attempts to send + SYN packets from the client. (David Carlier) + . Added the SO_EXCLBIND constant for exclusive socket binding on illumos/solaris. + (David Carlier) + . Updated the socket_create_listen backlog argument default value to SOMAXCONN. + (David Carlier) + . Added the SO_NOSIGPIPE constant to control the generation of SIGPIPE for + macOs and FreeBSD. (David Carlier) + . Added SO_LINGER_SEC for macOs, true equivalent of SO_LINGER in other platforms. + (David Carlier) + . Add close-on-exec on socket created with socket_accept on unixes. (David Carlier) + . Added IP_PORTRANGE* constants for BSD systems to control ephemeral port + ranges. (David Carlier) + . Added SOCK_NONBLOCK/SOCK_CLOEXEC constants for socket_create and + socket_create_pair to apply O_NONBLOCK/O_CLOEXEC flags to the + newly created sockets. (David Carlier) + . Added SO_BINDTOIFINDEX to bind a socket to an interface index. + (David Carlier) + +- Sodium: + . Add support for AEGIS-128L and AEGIS-256. (jedisct1) + . Enable AES-GCM on aarch64 with the ARM crypto extensions. (jedisct1) + +- SPL: + . Implement SeekableIterator for SplObjectStorage. (nielsdos) + . The SplFixedArray::__wakeup() method has been deprecated as it implements + __serialize() and __unserialize() which need to be overwritten instead. + (TysonAndre) + . Passing a non-empty string for the $escape parameter of: + - SplFileObject::setCsvControl() + - SplFileObject::fputcsv() + - SplFileObject::fgetcsv() + is now deprecated. (Girgias) + +- Standard: + . Implement GH-12188 (Indication for the int size in phpinfo()). (timwolla) + . Partly fix GH-12143 (Incorrect round() result for 0.49999999999999994). + (timwolla) + . Fix GH-12252 (round(): Validate the rounding mode). (timwolla) + . Increase the default BCrypt cost to 12. (timwolla) + . Fixed bug GH-12592 (strcspn() odd behaviour with NUL bytes and empty mask). + (nielsdos) + . Removed the deprecated inet_ntoa call support. (David Carlier) + . Cast large floats that are within int range to int in number_format so + the precision is not lost. (Marc Bennewitz) + . Add support for 4 new rounding modes to the round() function. (Jorg Sowa) + . debug_zval_dump() now indicates whether an array is packed. (Max Semenik) + . Fix GH-12143 (Optimize round). (SakiTakamachi) + . Changed return type of long2ip to string from string|false. (Jorg Sowa) + . Fix GH-12143 (Extend the maximum precision round can handle by one digit). + (SakiTakamachi) + . Added the http_get_last_response_headers() and + http_clear_last_response_headers() that allows retrieving the same content + as the magic $http_response_header variable. + . Add php_base64_encode_ex() API. (Remi) + . Implemented "Raising zero to the power of negative number" RFC. (Jorg Sowa) + . Added array_find(), array_find_key(), array_all(), and array_any(). (josh) + . Change highlight_string() and print_r() return type to string|true. (Ayesh) + . Fix references in request_parse_body() options array. (nielsdos) + . Add RoundingMode enum. (timwolla, saki) + . Unserializing the uppercase 'S' tag is now deprecated. (timwolla) + . Enables crc32 auxiliary detection on OpenBSD. (David Carlier) + . Passing a non-empty string for the $escape parameter of: + - fputcsv() + - fgetcsv() + - str_getcsv() + is now deprecated. (Girgias) + . The str_getcsv() function now throws ValueErrors when the $separator and + $enclosure arguments are not one byte long, or if the $escape is not one + byte long or the empty string. This aligns the behaviour to be identical + to that of fputcsv() and fgetcsv(). (Girgias) + . php_uname() now throws ValueErrors on invalid inputs. (Girgias) + . The "allowed_classes" option for unserialize() now throws TypeErrors and + ValueErrors if it is not an array of class names. (Girgias) + . Implemented GH-15685 (improve proc_open error reporting on Windows). (cmb) + . Add support for backed enums in http_build_query(). (ilutov) + . Fixed bug GH-15982 (Assertion failure with array_find when references are + involved). (nielsdos) + . Fixed parameter names of fpow() to be identical to pow(). (Girgias) + +- Streams: + . Implemented GH-15155 (Stream context is lost when custom stream wrapper is + being filtered). (Quentin Dreyer) + +- Tidy: + . Failures in the constructor now throw exceptions rather than emitting + warnings and having a broken object. (nielsdos) + . Add tidyNode::getNextSibling() and tidyNode::getPreviousSibling(). + (nielsdos) + +- Windows: + . Update the icon of the Windows executables, e.g. php.exe. (Ayesh, + Nurudin Imširović) + . Fixed bug GH-16199 (GREP_HEADER() is broken). (Peter Kokot) + +- XML: + . Added XML_OPTION_PARSE_HUGE parser option. (nielsdos) + . Fixed bug #81481 (xml_get_current_byte_index limited to 32-bit numbers on + 64-bit builds). (nielsdos) + . The xml_set_object() function has been deprecated. (Girgias) + . Passing non-callable strings to the xml_set_*_handler() functions is now + deprecated. (Girgias) + +- XMLReader: + . Declares class constant types. (Ayesh) + . Add XMLReader::fromStream(), XMLReader::fromUri(), XMLReader::fromString(). (nielsdos) + . Fixed bug GH-15123 (var_dump doesn't actually work on XMLReader). + (nielsdos) + +- XMLWriter: + . Add XMLWriter::toStream(), XMLWriter::toUri(), XMLWriter::toMemory(). (nielsdos) + +- XSL: + . Implement request #64137 (XSLTProcessor::setParameter() should allow both + quotes to be used). (nielsdos) + . Implemented "Improve callbacks in ext/dom and ext/xsl" RFC. (nielsdos) + . Added XSLTProcessor::$maxTemplateDepth and XSLTProcessor::$maxTemplateVars. + (nielsdos) + . Fix trampoline leak in xpath callables. (nielsdos) + +- Zip: + . Added ZipArchive::ER_TRUNCATED_ZIP added in libzip 1.11. (Remi) diff --git a/data/releases/8.4/8.4.1/release.json b/data/releases/8.4/8.4.1/release.json new file mode 100644 index 0000000000..d1429dcaed --- /dev/null +++ b/data/releases/8.4/8.4.1/release.json @@ -0,0 +1,24 @@ +{ + "version": "8.4.1", + "date": "21 Nov 2024", + "tags": [ + "security" + ], + "source": [ + { + "filename": "php-8.4.1.tar.gz", + "name": "PHP 8.4.1 (tar.gz)", + "sha256": "c3d1ce4157463ea43004289c01172deb54ce9c5894d8722f4e805461bf9feaec" + }, + { + "filename": "php-8.4.1.tar.bz2", + "name": "PHP 8.4.1 (tar.bz2)", + "sha256": "ef8a270118ed128b765fc31f198c7f4650c8171411b0f6a3a1a3aba11fcacc23" + }, + { + "filename": "php-8.4.1.tar.xz", + "name": "PHP 8.4.1 (tar.xz)", + "sha256": "94c8a4fd419d45748951fa6d73bd55f6bdf0adaefb8814880a67baa66027311f" + } + ] +} \ No newline at end of file diff --git a/data/releases/8.4/8.4.10/announcement.html b/data/releases/8.4/8.4.10/announcement.html new file mode 100644 index 0000000000..921b96c027 --- /dev/null +++ b/data/releases/8.4/8.4.10/announcement.html @@ -0,0 +1,12 @@ +<h1>PHP 8.4.10 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.10. This is a security release.</p> + +<p>Version 8.4.9 was skipped because it was tagged without including security patches.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.10 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.10">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.11 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.11. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.11 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.11">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.12 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.12. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.12 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.12">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.13 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.13. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.13 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.13">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.14 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.14. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.14 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.14">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.15 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.15. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.15 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.15">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.16 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.16. This is a security release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.16 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.4">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.16">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.17 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.17. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.17 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.4">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.17">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.18 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.18. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.18 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.4">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.18">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.19 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.19. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.19 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.4">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.19">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.2 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.2. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.2 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.2">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.20 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.20. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.20 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.4">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.20">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.21 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.21. This is a security release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.21 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.4">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.21">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.3 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.3. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.3 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.3">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.4 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.4. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.4 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.4">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.5 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.5. This is a security release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.5 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.5">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.6 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.6. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.6 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.6">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.7 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.7. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.7 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.7">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.4.8 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.4.8. This is a bug fix release.</p> + +<p>All PHP 8.4 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.4.8 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.4.8">ChangeLog</a>. +</p> \ 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' + <main> + <article>PHP 8.4 is a feature-rich release!</article> + <article class="featured">PHP 8.4 adds new DOM classes that are spec-compliant, keeping the old ones for compatibility.</article> + </main> + HTML, + LIBXML_NOERROR, +); + +$xpath = new DOMXPath($dom); +$node = $xpath->query(".//main/article[not(following-sibling::*)]")[0]; +$classes = explode(" ", $node->className); // Simplified +var_dump(in_array("featured", $classes)); // bool(true) + +============================================== +type: example +format: php +target: >=8.4 + +$dom = Dom\HTMLDocument::createFromString( + <<<'HTML' + <main> + <article>PHP 8.4 is a feature-rich release!</article> + <article class="featured">PHP 8.4 adds new DOM classes that are spec-compliant, keeping the old ones for compatibility.</article> + </main> + HTML, + LIBXML_NOERROR, +); + +$node = $dom->querySelector('main > article:last-child'); +var_dump($node->classList->contains("featured")); // bool(true) diff --git a/data/releases/8.4/highlights/05-object-api.txt b/data/releases/8.4/highlights/05-object-api.txt new file mode 100644 index 0000000000..b62a7420fd --- /dev/null +++ b/data/releases/8.4/highlights/05-object-api.txt @@ -0,0 +1,41 @@ +type: meta +title: Object API for BCMath +rfc: https://wiki.php.net/rfc/support_object_type_in_bcmath + +============================================== +type: about +format: md +lang: en + +New BcMath\Number object enables object-oriented usage and standard +mathematical operators when working with arbitrary precision numbers. + +These objects are immutable and implement the Stringable interface, +so they can be used in string contexts like echo $num. + +============================================== +type: example +format: php +target: <8.4 + +$num1 = '0.12345'; +$num2 = '2'; +$result = bcadd($num1, $num2, 5); + +echo $result; // '2.12345' +var_dump(bccomp($num1, $num2) > 0); // false + + +============================================== +type: example +format: php +target: >=8.4 + +use BcMath\Number; + +$num1 = new Number('0.12345'); +$num2 = new Number('2'); +$result = $num1 + $num2; + +echo $result; // '2.12345' +var_dump($num1 > $num2); // false diff --git a/data/releases/8.4/highlights/06-array-functions.txt b/data/releases/8.4/highlights/06-array-functions.txt new file mode 100644 index 0000000000..86d49b4290 --- /dev/null +++ b/data/releases/8.4/highlights/06-array-functions.txt @@ -0,0 +1,37 @@ +type: meta +title: New array_*() functions +rfc: https://wiki.php.net/rfc/array_find + +============================================== +type: about +format: md +lang: en + +New functions `array_find()`, `array_find_key()`, `array_any()`, and `array_all()` are available. + +============================================== +type: example +format: php +target: <8.4 + +$animal = null; +foreach (['dog', 'cat', 'cow', 'duck', 'goose'] as $value) { + if (str_starts_with($value, 'c')) { + $animal = $value; + break; + } +} + +var_dump($animal); // string(3) "cat" + +============================================== +type: example +format: php +target: >=8.4 + +$animal = array_find( + ['dog', 'cat', 'cow', 'duck', 'goose'], + static fn(string $value): bool => str_starts_with($value, 'c'), +); + +var_dump($animal); // string(3) "cat" diff --git a/data/releases/8.4/highlights/07-pdo-driver-subclass.txt b/data/releases/8.4/highlights/07-pdo-driver-subclass.txt new file mode 100644 index 0000000000..931907d328 --- /dev/null +++ b/data/releases/8.4/highlights/07-pdo-driver-subclass.txt @@ -0,0 +1,47 @@ +type: meta +title: PDO driver specific subclasses +rfc: https://wiki.php.net/rfc/pdo_driver_specific_subclasses + +============================================== +type: about +format: md +lang: en + +New subclasses `Pdo\Dblib`, `Pdo\Firebird`, `Pdo\MySql`, `Pdo\Odbc`, +`Pdo\Pgsql`, and `Pdo\Sqlite` of PDO are available. + +============================================== +type: example +format: php +target: <8.4 + +$connection = new PDO( + 'sqlite:foo.db', + $username, + $password, +); // object(PDO) + +$connection->sqliteCreateFunction( + 'prepend_php', + static fn($string) => "PHP {$string}", +); + +$connection->query('SELECT prepend_php(version) FROM php'); + +============================================== +type: example +format: php +target: >=8.4 + +$connection = PDO::connect( + 'sqlite:foo.db', + $username, + $password, +); // object(Pdo\Sqlite) + +$connection->createFunction( + 'prepend_php', + static fn($string) => "PHP {$string}", +); // Does not exist on a mismatching driver. + +$connection->query('SELECT prepend_php(version) FROM php'); diff --git a/data/releases/8.4/highlights/08-new-priority.txt b/data/releases/8.4/highlights/08-new-priority.txt new file mode 100644 index 0000000000..a453a75727 --- /dev/null +++ b/data/releases/8.4/highlights/08-new-priority.txt @@ -0,0 +1,41 @@ +type: meta +title: new MyClass()->method() without parentheses +rfc: https://wiki.php.net/rfc/new_without_parentheses + +============================================== +type: about +format: md +lang: en + +Properties and methods of a newly instantiated object can now be accessed without +wrapping the new expression in parentheses. + +============================================== +type: example +format: php +target: >=8.4 + +class PhpVersion +{ + public function getVersion(): string + { + return 'PHP 8.3'; + } +} + +var_dump((new PhpVersion())->getVersion()); + +============================================== +type: example +format: php +target: 8.4 + +class PhpVersion +{ + public function getVersion(): string + { + return 'PHP 8.4'; + } +} + +var_dump(new PhpVersion()->getVersion()); diff --git a/data/releases/8.5/8.5.0/announcement.html b/data/releases/8.5/8.5.0/announcement.html new file mode 100644 index 0000000000..e91bbef934 --- /dev/null +++ b/data/releases/8.5/8.5.0/announcement.html @@ -0,0 +1,23 @@ +<h1>PHP 8.5.0 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.5.0. This release marks the latest minor release of the PHP language.</p> + +<p>PHP 8.5 comes with numerous improvements and new features such as:</p> +<ul> + <li>New "URI" extension</li> + <li>New pipe operator (|>)</li> + <li>Clone With</li> + <li>New #[\NoDiscard] attribute</li> + <li>Support for closures, casts, and first class callables in constant expressions</li> + <li>And much much more...</li> +</ul> +<p> + For source downloads of PHP 8.5.0 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, + Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.5.0">ChangeLog</a>. +</p> +<p> + The <a href="https://php.net/manual/en/migration85.php">migration guide</a> is available in the PHP Manual. + Please consult it for the detailed list of new features and backward incompatible changes. +</p> +<p>Kudos to all the contributors and supporters!</p> \ 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 @@ +<h1>PHP 8.5.1 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.5.1. This is a security release.</p> + +<p>All PHP 8.5 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.5.1 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.5">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.5.1">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.5.2 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.5.2. This is a bug fix release.</p> + +<p>All PHP 8.5 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.5.2 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.5">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.5.2">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.5.3 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.5.3. This is a bug fix release.</p> + +<p>All PHP 8.5 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.5.3 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.5">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.5.3">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.5.4 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.5.4. This is a bug fix release.</p> + +<p>All PHP 8.5 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.5.4 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.5">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.5.4">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.5.5 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.5.5. This is a bug fix release.</p> + +<p>All PHP 8.5 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.5.5 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.5">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.5.5">ChangeLog</a>. +</p> \ 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 @@ +<h1>PHP 8.5.6 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.5.6. This is a security release.</p> + +<p>All PHP 8.5 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.5.6 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can also be found <a href="https://www.php.net/downloads.php?os=windows&version=8.5">there</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.5.6">ChangeLog</a>. +</p> \ 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 @@ <?php + +use phpweb\Releases\RMs\ReleaseManagers; + $_SERVER['BASE_PAGE'] = 'downloads.php'; include_once __DIR__ . '/include/prepend.inc'; -include_once __DIR__ . '/include/gpg-keys.inc'; include_once __DIR__ . '/include/version.inc'; // Try to make this page non-cached @@ -200,7 +202,7 @@ function option(string $value, string $desc, $attributes = []): string to verify the tags: </p> -<?php gpg_key_show_keys(true /* activeOnly */); ?> +<?php ReleaseManagers::showKeys(activeOnly: true); ?> <p> <a href="gpg-keys.php"> diff --git a/eol.php b/eol.php index e3eff384a4..797cc2e779 100644 --- a/eol.php +++ b/eol.php @@ -1,8 +1,11 @@ <?php + +use phpweb\Releases\SupportState; +use phpweb\Releases\VersionData; + $_SERVER['BASE_PAGE'] = 'eol.php'; include_once __DIR__ . '/include/prepend.inc'; -include_once __DIR__ . '/include/branches.inc'; // Notes for specific branches can be added here, and will appear in the table. $BRANCH_NOTES = [ @@ -23,6 +26,9 @@ '4.4' => '<a href="https://php-legacy-docs.zend.com/manual/php5/en/migration5">A guide is available for migrating from PHP 4 to 5.0.</a>', ]; +$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. </p> -<table class="standard"> +<table class="standard" style="width: 100%"> <thead> <tr> <th>Branch</th> @@ -46,28 +52,26 @@ </tr> </thead> <tbody> - <?php foreach (get_eol_branches() as $major => $branches): ?> - <?php foreach ($branches as $branch => $detail): ?> - <?php $eolDate = get_branch_security_eol_date($branch) ?> - <?php $eolPeriod = format_interval($eolDate, new DateTime('now')) ?> - <tr> - <td><?php echo htmlspecialchars($branch); ?></td> - <td> - <?php echo $eolDate->format('j M Y') ?> - <br/> - <em>(<?php echo $eolPeriod ?>)</em> - </td> - <td> - <a href="<?php echo htmlspecialchars($detail['link']); ?>"> - <?php echo htmlspecialchars($detail['version']); ?> - </a> - </td> - <td> - <?php echo $BRANCH_NOTES[$branch] ?? ''; ?> - </td> - </tr> - <?php endforeach ?> - <?php endforeach ?> + <?php foreach ($releases as $release) { ?> + <?php $eolDate = $release->securityEOL ?> + <?php $eolPeriod = format_interval($eolDate, new DateTime('now')) ?> + <tr> + <td><?= safe($release->label) ?></td> + <td> + <?= safe($eolDate->format('j M Y')) ?> + <br/> + <em>(<?= safe($eolPeriod) ?>)</em> + </td> + <td> + <?php if ($release->latestRelease) { ?> + <a href="<?= safe($release->latestRelease->announcementUrl); ?>"> + <?= safe($release->latestRelease->label) ?> + </a> + <?php } ?> + </td> + <td><?= $BRANCH_NOTES[$release->label] ?? '' ?></td> + </tr> + <?php } ?> </tbody> </table> diff --git a/gpg-keys.php b/gpg-keys.php index 7cad2a0e6e..d659190a2f 100644 --- a/gpg-keys.php +++ b/gpg-keys.php @@ -1,7 +1,9 @@ <?php + +use phpweb\Releases\RMs\ReleaseManagers; + $_SERVER['BASE_PAGE'] = 'gpg-keys.php'; include_once __DIR__ . '/include/prepend.inc'; -include_once __DIR__ . '/include/gpg-keys.inc'; site_header('GPG Keys'); ?> @@ -14,7 +16,7 @@ verify these tags: </p> -<?php gpg_key_show_keys(false /* activeOnly */); ?> +<?php ReleaseManagers::showKeys(activeOnly: false); ?> <h3 id="keyring" class="content-header">Keyring</h3> diff --git a/images/bg-texture-dark.png b/images/bg-texture-dark.png new file mode 100644 index 0000000000..76f3b3e915 Binary files /dev/null and b/images/bg-texture-dark.png differ diff --git a/images/bg-texture-light.png b/images/bg-texture-light.png new file mode 100644 index 0000000000..7ac2420565 Binary files /dev/null and b/images/bg-texture-light.png differ diff --git a/images/landing/contribute.png b/images/landing/contribute.png new file mode 100644 index 0000000000..07d570ab2c Binary files /dev/null and b/images/landing/contribute.png differ diff --git a/images/landing/docs-translator.png b/images/landing/docs-translator.png new file mode 100644 index 0000000000..1f28200e8f Binary files /dev/null and b/images/landing/docs-translator.png differ diff --git a/images/landing/elephpant.png b/images/landing/elephpant.png new file mode 100644 index 0000000000..dd8d752118 Binary files /dev/null and b/images/landing/elephpant.png differ diff --git a/images/landing/externals-io.svg b/images/landing/externals-io.svg new file mode 100644 index 0000000000..b1480073ef --- /dev/null +++ b/images/landing/externals-io.svg @@ -0,0 +1,4 @@ +<svg width="668" height="557" viewBox="0 0 668 557" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M181.864 46.9095L181.861 46.9119C172.124 53.3236 160.879 63.1449 150.906 72.5985C100.559 80.2947 71.1564 95.394 54.0944 116.509C42.4941 130.864 36.7455 147.829 33.8819 166.702C31.0273 185.515 31.021 206.378 31.0144 228.585L31.0144 228.668L31.0144 228.67L31 238.524V238.527V462.407C31 473.025 35.2439 481.641 43.0817 487.543C50.8492 493.392 61.9632 496.444 75.551 496.444C89.1503 496.444 100.27 493.392 108.04 487.543C115.865 481.652 120.107 473.058 120.123 462.469C120.15 462.13 120.21 461.34 120.299 460.156C120.701 454.85 121.702 441.63 122.99 425.692C124.665 404.94 126.836 379.44 128.834 360.274L128.838 360.235L128.84 360.195C130.441 335.304 137.042 320.677 148.265 314.076C159.668 307.381 176.858 308.5 198 314.259C199.045 314.544 200.098 314.839 201.159 315.145V449.558C201.159 457.782 201.271 464.745 202.316 470.483C203.372 476.277 205.412 481.021 209.407 484.662C213.363 488.268 219.01 490.584 226.855 492.021C231.314 492.838 236.548 493.382 242.686 493.699C244.698 501.393 247.948 506.85 253.013 510.578C258.224 514.412 265.098 516.219 273.796 517.11C282.477 518 293.273 518 306.505 518H306.61H306.705C319.95 518 330.857 518 339.701 517.173C348.556 516.345 355.622 514.67 361.042 511.128C366.546 507.531 370.125 502.162 372.313 494.454C374.482 486.815 375.318 476.77 375.318 463.632V377.847C392.984 381.631 410.429 383.557 427.141 382.527C432.724 382.183 438.205 381.765 443.582 381.273V441.409C443.582 444.893 443.544 448.189 443.509 451.294C443.44 457.257 443.38 462.518 443.611 467.055C443.964 473.971 445 479.694 448.006 484.139C451.067 488.666 455.944 491.549 463.238 493.31C467.631 494.37 472.983 495.043 479.488 495.41C481.529 500.56 484.447 504.411 488.531 507.206C493.736 510.769 500.593 512.447 509.279 513.275C517.955 514.102 528.748 514.102 541.987 514.102H542.085H542.191C555.424 514.102 566.023 514.102 574.407 513.274C582.801 512.445 589.3 510.764 594.132 507.159C599.036 503.501 601.937 498.084 603.624 490.44C605.3 482.846 605.825 472.837 605.825 459.734V318.74C626.341 296.56 637 269.032 637 236.726C637 186.783 620.768 143.997 589.924 113.125L588.51 114.538L589.924 113.124C556.307 79.4833 506.341 61.8291 445.663 61.8135C444.884 61.8051 415.327 61.5318 324.53 63.9126C319.267 57.2257 313.22 51.8265 306.383 47.7549C281.81 33.1198 256.907 41.6846 254.092 42.7273L254.091 42.7277C250.893 43.9147 247.513 45.335 244.028 46.9243C239.689 44.2648 235.17 42.1824 230.473 40.6876L230.473 40.6875C204.824 32.5305 184.184 45.3889 181.864 46.9095Z" stroke="#c0c0c0" fill="white" stroke-width="8"/> +<circle cx="136" cy="185" r="22" fill="#EB5757"/> +</svg> diff --git a/images/landing/php-bugs.png b/images/landing/php-bugs.png new file mode 100644 index 0000000000..e3f3004315 Binary files /dev/null and b/images/landing/php-bugs.png differ diff --git a/images/logos/community-phpdevelopers-discord.webp b/images/logos/community-phpdevelopers-discord.webp new file mode 100644 index 0000000000..057318a64f Binary files /dev/null and b/images/logos/community-phpdevelopers-discord.webp differ diff --git a/images/logos/composer.png b/images/logos/composer.png new file mode 100644 index 0000000000..e0782d0593 Binary files /dev/null and b/images/logos/composer.png differ diff --git a/images/logos/github_invertocat_white.svg b/images/logos/github_invertocat_white.svg new file mode 100644 index 0000000000..527ba11c50 --- /dev/null +++ b/images/logos/github_invertocat_white.svg @@ -0,0 +1,10 @@ +<svg width="98" height="96" viewBox="0 0 98 96" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_730_27136)"> +<path d="M41.4395 69.3848C28.8066 67.8535 19.9062 58.7617 19.9062 46.9902C19.9062 42.2051 21.6289 37.0371 24.5 33.5918C23.2559 30.4336 23.4473 23.7344 24.8828 20.959C28.7109 20.4805 33.8789 22.4902 36.9414 25.2656C40.5781 24.1172 44.4062 23.543 49.0957 23.543C53.7852 23.543 57.6133 24.1172 61.0586 25.1699C64.0254 22.4902 69.2891 20.4805 73.1172 20.959C74.457 23.543 74.6484 30.2422 73.4043 33.4961C76.4668 37.1328 78.0937 42.0137 78.0937 46.9902C78.0937 58.7617 69.1934 67.6621 56.3691 69.2891C59.623 71.3945 61.8242 75.9883 61.8242 81.252L61.8242 91.2051C61.8242 94.0762 64.2168 95.7031 67.0879 94.5547C84.4102 87.9512 98 70.6289 98 49.1914C98 22.1074 75.9883 6.69539e-07 48.9043 4.309e-07C21.8203 1.92261e-07 -1.9479e-07 22.1074 -4.3343e-07 49.1914C-6.20631e-07 70.4375 13.4941 88.0469 31.6777 94.6504C34.2617 95.6074 36.75 93.8848 36.75 91.3008L36.75 83.6445C35.4102 84.2188 33.6875 84.6016 32.1562 84.6016C25.8398 84.6016 22.1074 81.1563 19.4277 74.7441C18.375 72.1602 17.2266 70.6289 15.0254 70.3418C13.877 70.2461 13.4941 69.7676 13.4941 69.1934C13.4941 68.0449 15.4082 67.1836 17.3223 67.1836C20.0977 67.1836 22.4902 68.9063 24.9785 72.4473C26.8926 75.2227 28.9023 76.4668 31.2949 76.4668C33.6875 76.4668 35.2187 75.6055 37.4199 73.4043C39.0469 71.7773 40.291 70.3418 41.4395 69.3848Z" fill="white"/> +</g> +<defs> +<clipPath id="clip0_730_27136"> +<rect width="98" height="96" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/images/logos/php-foundation.svg b/images/logos/php-foundation.svg new file mode 100644 index 0000000000..cf5b3a6942 --- /dev/null +++ b/images/logos/php-foundation.svg @@ -0,0 +1,11 @@ +<svg width="500" height="500" viewBox="0 0 500 500" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_2102_108137)"> +<rect width="500" height="500" fill="#6B57FF"/> +<path d="M96.64 190.87H83.62V184H116.98V190.87H104.02V226.12H96.64V190.87ZM139.471 194.56C141.671 194.56 143.611 195.04 145.291 196C146.971 196.96 148.281 198.35 149.221 200.17C150.161 201.99 150.631 204.16 150.631 206.68V226H143.491V207.73C143.491 205.63 142.911 203.95 141.751 202.69C140.591 201.43 139.031 200.8 137.071 200.8C135.711 200.8 134.501 201.11 133.441 201.73C132.381 202.35 131.561 203.22 130.981 204.34C130.401 205.46 130.111 206.74 130.111 208.18V226H122.971V184H129.961V193.48L129.901 199.18V200.29C130.861 198.41 132.171 196.99 133.831 196.03C135.491 195.05 137.371 194.56 139.471 194.56ZM187.186 212.56H163.756C163.956 214.16 164.446 215.57 165.226 216.79C166.006 218.01 167.006 218.96 168.226 219.64C169.446 220.3 170.806 220.63 172.306 220.63C174.066 220.63 175.556 220.37 176.776 219.85C177.996 219.33 178.936 218.58 179.596 217.6H186.646C186.326 219.1 185.536 220.55 184.276 221.95C183.016 223.35 181.336 224.5 179.236 225.4C177.136 226.28 174.736 226.72 172.036 226.72C169.036 226.72 166.336 226.03 163.936 224.65C161.556 223.27 159.696 221.36 158.356 218.92C157.016 216.46 156.346 213.69 156.346 210.61C156.346 207.57 157.026 204.83 158.386 202.39C159.746 199.95 161.616 198.04 163.996 196.66C166.396 195.26 169.076 194.56 172.036 194.56C175.076 194.56 177.736 195.25 180.016 196.63C182.316 198.01 184.086 199.92 185.326 202.36C186.566 204.78 187.186 207.53 187.186 210.61V212.56ZM172.066 200.47C169.906 200.47 168.086 201.11 166.606 202.39C165.146 203.67 164.216 205.41 163.816 207.61H179.866C179.506 205.41 178.656 203.67 177.316 202.39C175.996 201.11 174.246 200.47 172.066 200.47ZM207.281 226V184H225.041C227.921 184 230.451 184.53 232.631 185.59C234.811 186.65 236.491 188.15 237.671 190.09C238.871 192.01 239.471 194.24 239.471 196.78C239.471 199.34 238.861 201.6 237.641 203.56C236.441 205.52 234.731 207.04 232.511 208.12C230.311 209.18 227.741 209.71 224.801 209.71H214.631V226H207.281ZM224.651 203.44C226.831 203.44 228.571 202.85 229.871 201.67C231.171 200.47 231.821 198.86 231.821 196.84C231.821 194.84 231.171 193.25 229.871 192.07C228.571 190.89 226.831 190.3 224.651 190.3H214.631V203.44H224.651ZM253.303 226H245.953V184H253.303V201.16H272.443V184H279.793V226H272.443V208.03H253.303V226ZM290.485 226V184H308.245C311.125 184 313.655 184.53 315.835 185.59C318.015 186.65 319.695 188.15 320.875 190.09C322.075 192.01 322.675 194.24 322.675 196.78C322.675 199.34 322.065 201.6 320.845 203.56C319.645 205.52 317.935 207.04 315.715 208.12C313.515 209.18 310.945 209.71 308.005 209.71H297.835V226H290.485ZM307.855 203.44C310.035 203.44 311.775 202.85 313.075 201.67C314.375 200.47 315.025 198.86 315.025 196.84C315.025 194.84 314.375 193.25 313.075 192.07C311.775 190.89 310.035 190.3 307.855 190.3H297.835V203.44H307.855ZM94.69 296H87.34V254H115.36V260.87H94.69V272.42H114.16V279.29H94.69V296ZM135.721 296.72C132.661 296.72 129.901 296.03 127.441 294.65C124.981 293.27 123.041 291.36 121.621 288.92C120.221 286.48 119.521 283.72 119.521 280.64C119.521 277.56 120.221 274.8 121.621 272.36C123.041 269.92 124.981 268.01 127.441 266.63C129.921 265.25 132.691 264.56 135.751 264.56C138.811 264.56 141.571 265.25 144.031 266.63C146.491 268.01 148.421 269.92 149.821 272.36C151.221 274.8 151.921 277.56 151.921 280.64C151.921 283.72 151.221 286.48 149.821 288.92C148.421 291.36 146.491 293.27 144.031 294.65C141.571 296.03 138.801 296.72 135.721 296.72ZM135.781 290.3C137.441 290.3 138.931 289.9 140.251 289.1C141.591 288.28 142.631 287.14 143.371 285.68C144.131 284.22 144.511 282.54 144.511 280.64C144.511 278.74 144.131 277.06 143.371 275.6C142.611 274.12 141.561 272.98 140.221 272.18C138.901 271.36 137.411 270.95 135.751 270.95C134.091 270.95 132.591 271.36 131.251 272.18C129.911 272.98 128.851 274.12 128.071 275.6C127.311 277.06 126.931 278.74 126.931 280.64C126.931 282.54 127.311 284.22 128.071 285.68C128.851 287.14 129.911 288.28 131.251 289.1C132.591 289.9 134.101 290.3 135.781 290.3ZM178.25 265.28H185.39V296H178.43V291.2C177.47 293 176.16 294.37 174.5 295.31C172.84 296.25 170.96 296.72 168.86 296.72C166.66 296.72 164.72 296.24 163.04 295.28C161.36 294.32 160.05 292.93 159.11 291.11C158.17 289.29 157.7 287.12 157.7 284.6V265.28H164.81V283.49C164.81 285.71 165.37 287.43 166.49 288.65C167.63 289.85 169.22 290.45 171.26 290.45C172.62 290.45 173.83 290.14 174.89 289.52C175.95 288.88 176.77 288 177.35 286.88C177.95 285.76 178.25 284.48 178.25 283.04V265.28ZM210.545 264.56C212.745 264.56 214.685 265.04 216.365 266C218.065 266.96 219.385 268.35 220.325 270.17C221.265 271.99 221.735 274.16 221.735 276.68V296H214.595V277.79C214.595 275.57 214.025 273.86 212.885 272.66C211.765 271.44 210.185 270.83 208.145 270.83C206.785 270.83 205.575 271.15 204.515 271.79C203.455 272.41 202.625 273.28 202.025 274.4C201.445 275.52 201.155 276.8 201.155 278.24V296H194.045V265.28H200.975V270.08C201.935 268.28 203.245 266.91 204.905 265.97C206.565 265.03 208.445 264.56 210.545 264.56ZM252.2 254H259.31V296H252.2V291.41C251.04 293.09 249.58 294.4 247.82 295.34C246.08 296.26 244.13 296.72 241.97 296.72C239.25 296.72 236.78 296.03 234.56 294.65C232.36 293.25 230.62 291.33 229.34 288.89C228.08 286.43 227.45 283.68 227.45 280.64C227.45 277.6 228.08 274.86 229.34 272.42C230.6 269.96 232.33 268.04 234.53 266.66C236.75 265.26 239.22 264.56 241.94 264.56C244.12 264.56 246.08 265.02 247.82 265.94C249.58 266.86 251.04 268.17 252.2 269.87V254ZM243.53 290.33C245.11 290.33 246.52 289.98 247.76 289.28C249.02 288.58 250.03 287.6 250.79 286.34C251.57 285.06 252.04 283.58 252.2 281.9V279.38C252.04 277.7 251.57 276.23 250.79 274.97C250.03 273.69 249.02 272.7 247.76 272C246.52 271.3 245.11 270.95 243.53 270.95C241.83 270.95 240.32 271.36 239 272.18C237.7 272.98 236.68 274.12 235.94 275.6C235.22 277.06 234.86 278.74 234.86 280.64C234.86 282.54 235.22 284.23 235.94 285.71C236.68 287.17 237.7 288.31 239 289.13C240.32 289.93 241.83 290.33 243.53 290.33ZM280.089 264.56C282.589 264.56 284.789 265.01 286.689 265.91C288.589 266.79 290.069 268.07 291.129 269.75C292.189 271.41 292.719 273.38 292.719 275.66V296H285.819V291.62C284.879 293.28 283.579 294.55 281.919 295.43C280.259 296.29 278.289 296.72 276.009 296.72C274.009 296.72 272.219 296.35 270.639 295.61C269.059 294.85 267.829 293.8 266.949 292.46C266.069 291.1 265.629 289.56 265.629 287.84C265.629 286.2 266.049 284.69 266.889 283.31C267.749 281.91 268.939 280.77 270.459 279.89C271.979 279.01 273.689 278.47 275.589 278.27L283.749 277.43C284.369 277.37 284.849 277.14 285.189 276.74C285.549 276.34 285.729 275.77 285.729 275.03C285.709 273.57 285.159 272.39 284.079 271.49C282.999 270.59 281.599 270.14 279.879 270.14C278.739 270.14 277.699 270.34 276.759 270.74C275.839 271.12 275.099 271.64 274.539 272.3C273.979 272.96 273.649 273.69 273.549 274.49H266.499C266.699 272.57 267.409 270.86 268.629 269.36C269.869 267.86 271.479 266.69 273.459 265.85C275.459 264.99 277.669 264.56 280.089 264.56ZM278.259 291.35C279.739 291.35 281.039 291.07 282.159 290.51C283.299 289.93 284.179 289.12 284.799 288.08C285.419 287.04 285.729 285.85 285.729 284.51V281.78L277.299 282.74C275.979 282.88 274.909 283.33 274.089 284.09C273.289 284.85 272.889 285.83 272.889 287.03C272.889 288.31 273.389 289.35 274.389 290.15C275.389 290.95 276.679 291.35 278.259 291.35ZM311.815 296C310.035 296 308.455 295.64 307.075 294.92C305.715 294.2 304.655 293.19 303.895 291.89C303.155 290.59 302.785 289.09 302.785 287.39L302.755 271.43H297.355L297.385 265.28H300.745C301.505 265.28 302.115 265.05 302.575 264.59C303.035 264.11 303.265 263.5 303.265 262.76V257.81H309.895V265.28H317.275L317.245 271.43H309.895V286.49C309.895 287.47 310.205 288.28 310.825 288.92C311.465 289.54 312.275 289.85 313.255 289.85H317.245V296H311.815ZM330.853 296H323.713V265.28H330.853V296ZM323.383 260.78V254H331.123V260.78H323.383ZM353.514 296.72C350.454 296.72 347.694 296.03 345.234 294.65C342.774 293.27 340.834 291.36 339.414 288.92C338.014 286.48 337.314 283.72 337.314 280.64C337.314 277.56 338.014 274.8 339.414 272.36C340.834 269.92 342.774 268.01 345.234 266.63C347.714 265.25 350.484 264.56 353.544 264.56C356.604 264.56 359.364 265.25 361.824 266.63C364.284 268.01 366.214 269.92 367.614 272.36C369.014 274.8 369.714 277.56 369.714 280.64C369.714 283.72 369.014 286.48 367.614 288.92C366.214 291.36 364.284 293.27 361.824 294.65C359.364 296.03 356.594 296.72 353.514 296.72ZM353.574 290.3C355.234 290.3 356.724 289.9 358.044 289.1C359.384 288.28 360.424 287.14 361.164 285.68C361.924 284.22 362.304 282.54 362.304 280.64C362.304 278.74 361.924 277.06 361.164 275.6C360.404 274.12 359.354 272.98 358.014 272.18C356.694 271.36 355.204 270.95 353.544 270.95C351.884 270.95 350.384 271.36 349.044 272.18C347.704 272.98 346.644 274.12 345.864 275.6C345.104 277.06 344.724 278.74 344.724 280.64C344.724 282.54 345.104 284.22 345.864 285.68C346.644 287.14 347.704 288.28 349.044 289.1C350.384 289.9 351.894 290.3 353.574 290.3ZM392.713 264.56C394.913 264.56 396.853 265.04 398.533 266C400.233 266.96 401.553 268.35 402.493 270.17C403.433 271.99 403.903 274.16 403.903 276.68V296H396.763V277.79C396.763 275.57 396.193 273.86 395.053 272.66C393.933 271.44 392.353 270.83 390.313 270.83C388.953 270.83 387.743 271.15 386.683 271.79C385.623 272.41 384.793 273.28 384.193 274.4C383.613 275.52 383.323 276.8 383.323 278.24V296H376.213V265.28H383.143V270.08C384.103 268.28 385.413 266.91 387.073 265.97C388.733 265.03 390.613 264.56 392.713 264.56Z" fill="white"/> +</g> +<defs> +<clipPath id="clip0_2102_108137"> +<rect width="500" height="500" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/images/logos/phpc-discord.png b/images/logos/phpc-discord.png new file mode 100644 index 0000000000..7a79320cc7 Binary files /dev/null and b/images/logos/phpc-discord.png differ diff --git a/images/logos/reddit.png b/images/logos/reddit.png new file mode 100644 index 0000000000..9ce7ce2541 Binary files /dev/null and b/images/logos/reddit.png differ diff --git a/images/supported-versions.php b/images/supported-versions.php index af69352412..f80a33a585 100644 --- a/images/supported-versions.php +++ b/images/supported-versions.php @@ -1,167 +1,18 @@ <?php -include_once __DIR__ . '/../include/prepend.inc'; -include_once __DIR__ . '/../include/branches.inc'; - -// Sizing constants. -$margin_left = 80; -$margin_right = 50; -$header_height = 24; -$year_width = 120; -$branch_height = 30; -$footer_height = 24; - -function branches_to_show() { - // Basically: show all 5.3+ branches with EOL dates > min_date(). - $branches = []; - - // Flatten out the majors. - foreach (get_all_branches() as $major_branches) { - foreach ($major_branches as $branch => $version) { - if (version_compare($branch, '5.3', 'ge') && get_branch_security_eol_date($branch) > min_date()) { - $branches[$branch] = $version; - } - } - } - - ksort($branches); - return $branches; -} - -function min_date(): DateTime -{ - $now = new DateTime('January 1'); - return $now->sub(new DateInterval('P3Y')); -} - -function max_date(): DateTime -{ - $now = new DateTime('January 1'); - return $now->add(new DateInterval('P5Y')); -} - -function date_horiz_coord(DateTime $date) { - $diff = $date->diff(min_date()); - if (!$diff->invert) { - return $GLOBALS['margin_left']; - } - return $GLOBALS['margin_left'] + ($diff->days / (365.24 / $GLOBALS['year_width'])); -} - -$branches = branches_to_show(); -$i = 0; -foreach ($branches as $branch => $version) { - $branches[$branch]['top'] = $header_height + ($branch_height * $i++); -} - -if (!isset($non_standalone)) { - header('Content-Type: image/svg+xml'); - echo '<?xml version="1.0"?>'; -} - -$years = iterator_to_array(new DatePeriod(min_date(), new DateInterval('P1Y'), max_date())); -$width = $margin_left + $margin_right + ((count($years) - 1) * $year_width); -$height = $header_height + $footer_height + (count($branches) * $branch_height); -?> -<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 <?php echo $width ?> <?php echo $height ?>" width="<?php echo $width ?>" height="<?php echo $height ?>"> - <style type="text/css"> - <![CDATA[ - @import url(/fonts/Fira/fira.css); - text { - fill: #333; - font-family: var(--font-family-sans-serif); - font-size: <?php echo (2 / 3) * $header_height; ?>px; - } +use phpweb\Releases\Util\SupportTimelineSvgGenerator; +use phpweb\Releases\Util\TimelineSvgConfig; - g.eol rect, - .branches rect.eol { - fill: #f33; - } - - g.eol text { - fill: white; - } - - g.security rect, - .branches rect.security { - fill: #f93; - } - - g.stable rect, - .branches rect.stable { - fill: #9c9; - } - - .branch-labels text { - dominant-baseline: central; - text-anchor: middle; - } - - .today line { - stroke: #333; - stroke-dasharray: 7,7; - stroke-width: 3px; - } - - .today text { - fill: #333; - text-anchor: middle; - } - - .years line { - stroke: black; - } - - .years text { - text-anchor: middle; - } - ]]> - </style> - - <!-- Branch labels --> - <g class="branch-labels"> - <?php foreach ($branches as $branch => $version): ?> - <g class="<?php echo get_branch_support_state($branch) ?>"> - <rect x="0" y="<?php echo $version['top'] ?>" width="<?php echo 0.5 * $margin_left ?>" height="<?php echo $branch_height ?>" /> - <text x="<?php echo 0.25 * $margin_left ?>" y="<?php echo $version['top'] + (0.5 * $branch_height) ?>"> - <?php echo htmlspecialchars($branch) ?> - </text> - </g> - <?php endforeach ?> - </g> - - <!-- Branch blocks --> - <g class="branches"> - <?php foreach ($branches as $branch => $version): ?> - <?php - $x_release = date_horiz_coord(get_branch_release_date($branch)); - $x_bug = date_horiz_coord(get_branch_bug_eol_date($branch)); - $x_eol = date_horiz_coord(get_branch_security_eol_date($branch)); - ?> - <rect class="stable" x="<?php echo $x_release ?>" y="<?php echo $version['top'] ?>" width="<?php echo $x_bug - $x_release ?>" height="<?php echo $branch_height ?>" /> - <rect class="security" x="<?php echo $x_bug ?>" y="<?php echo $version['top'] ?>" width="<?php echo $x_eol - $x_bug ?>" height="<?php echo $branch_height ?>" /> - <?php endforeach ?> - </g> +include_once __DIR__ . '/../include/prepend.inc'; +include_once __DIR__ . '/../include/branches.inc'; - <!-- Year lines --> - <g class="years"> - <?php foreach ($years as $date): ?> - <line x1="<?php echo date_horiz_coord($date) ?>" y1="<?php echo $header_height ?>" x2="<?php echo date_horiz_coord($date) ?>" y2="<?php echo $header_height + (count($branches) * $branch_height) ?>" /> - <text x="<?php echo date_horiz_coord($date) ?>" y="<?php echo 0.8 * $header_height; ?>"> - <?php echo $date->format('j M Y') ?> - </text> - <?php endforeach ?> - </g> - <!-- Today --> - <g class="today"> - <?php - $now = new DateTime(); - $x = date_horiz_coord($now); - ?> - <line x1="<?php echo $x ?>" y1="<?php echo $header_height ?>" x2="<?php echo $x ?>" y2="<?php echo $header_height + (count($branches) * $branch_height) ?>" /> - <text x="<?php echo $x ?>" y="<?php echo $header_height + (count($branches) * $branch_height) + (0.8 * $footer_height) ?>"> - <?php echo 'Today: ' . $now->format('j M Y') ?> - </text> - </g> -</svg> +header('Content-Type: image/svg+xml'); +echo '<?xml version="1.0"?>'; +echo SupportTimelineSvgGenerator::drawSvg( + releases: SupportTimelineSvgGenerator::getDefaultReleasesToShow(), + config: new TimelineSvgConfig( + minDate: SupportTimelineSvgGenerator::getDefaultMinimumReleaseDate(), + maxDate: SupportTimelineSvgGenerator::getDefaultMaximumReleaseDate(), + ), +); diff --git a/include/branch-meta.inc b/include/branch-meta.inc new file mode 100644 index 0000000000..12bf5a1664 --- /dev/null +++ b/include/branch-meta.inc @@ -0,0 +1,91 @@ +<?php + +return [ + '8.5' => [ + 'features' => [ + [ + 'title' => 'URI Extension', + 'about' => 'PHP 8.5 adds a built-in URI extension to parse, normalize, and handle URLs following RFC 3986 and WHATWG URL standards.', + ], + [ + 'title' => 'Pipe Operator', + 'about' => 'The |> operator enables chaining callables left-to-right, passing values smoothly through multiple functions without intermediary variables.', + ], + [ + 'title' => 'Clone With', + 'about' => 'Clone objects and update properties with the new clone() syntax, making the "with-er" pattern simple for readonly classes.', + ], + [ + 'title' => '#[\NoDiscard] Attribute', + 'about' => 'The #[\NoDiscard] attribute warns when a return value isn’t used, helping prevent mistakes and improving overall API safety.', + ], + [ + 'title' => 'Closures and First-Class Callables in Constant Expressions', + 'about' => 'Static closures and first-class callables can now be used in constant expressions, such as attribute parameters.', + ], + [ + 'title' => 'Persistent cURL Share Handles', + 'about' => 'Handles can now be persisted across multiple PHP requests, avoiding the cost of repeated connection initialization to the same hosts.', + ], + ], + ], + '8.4' => [ + 'support_label' => 'Supported', + 'features' => [ + [ + 'title' => 'Property Hooks', + 'short' => 'Property Hooks allow intercepting properties', + ], + [ + 'title' => 'Asymmetric Property Visibility', + 'short' => 'Asymmetric Visibility for get and set', + ], + [ + 'title' => '#[Derpeciated] Attribute', + 'short' => '#[Depreciated] attribute signals removal intent', + ], + [ + 'title' => 'Additional Array Functions', + 'short' => 'New array lookup and query options', + ], + ], + ], + '8.3' => [ + 'support_label' => 'Security Support', + 'features' => [ + [ + 'title' => 'Typed Class Constants', + 'short' => 'Class constants can now be typed', + ], + [ + 'title' => 'Dynamic Class Constants', + 'about' => 'Class constants can now be accessed via dynamic calls', + ], + [ + 'title' => 'Readonly Deep Cloning', + 'short' => 'Enhanced deep cloning of readonly instances', + ], + [ + 'title' => 'Randomizer Improvements', + 'short' => 'Generate random strings from provided character sets', + ], + ], + ], + '8.2' => [ + 'support_label' => 'Security Support', + 'features' => [ + [ + 'title' => 'Readonly classes', + 'short' => 'Entire classes can now be marked Readonly', + ], + [ + 'title' => 'Disjunction Normal Form Types', + 'short' => 'Improved type support with Disjunction Normal Forms', + ], + [ + 'title' => 'Improved Standalone Types', + 'short' => 'Null, true and false are now usable as types', + ], + ], + ], +]; diff --git a/include/branch-overrides.inc b/include/branch-overrides.inc new file mode 100644 index 0000000000..b22a14cf7b --- /dev/null +++ b/include/branch-overrides.inc @@ -0,0 +1,40 @@ +<?php + +/* Branch overrides. For situations where we've changed the exact dates for a + * branch's active support and security fix EOLs, these can be reflected here. + * + * Supported keys are: + * - stable: the end of active support (usually two years after release). + * - security: the end of security support (usually release + 3 years). + */ +return [ + /* 3.0 is here because version_compare() can't handle the only version in + * $OLDRELEASES, and it saves another special case in + * get_branch_security_eol_date(). */ + '3.0' => [ + 'security' => '2000-10-20', + ], + '5.3' => [ + 'stable' => '2013-07-11', + 'security' => '2014-08-14', + ], + '5.4' => [ + 'stable' => '2014-09-14', + 'security' => '2015-09-03', + ], + '5.5' => [ + 'stable' => '2015-07-10', + 'security' => '2016-07-21', + ], + '5.6' => [ + 'stable' => '2017-01-19', + 'security' => '2018-12-31', + ], + '7.0' => [ + 'stable' => '2018-01-04', + 'security' => '2019-01-10', + ], + '8.4' => [ + 'date' => '2024-11-21', + ], +]; diff --git a/include/branches.inc b/include/branches.inc index deb1f79841..fe10f81de4 100644 --- a/include/branches.inc +++ b/include/branches.inc @@ -3,52 +3,34 @@ include_once __DIR__ . '/releases.inc'; include_once __DIR__ . '/version.inc'; -/* Branch overrides. For situations where we've changed the exact dates for a - * branch's active support and security fix EOLs, these can be reflected here. - * - * Supported keys are: - * - stable: the end of active support (usually two years after release). - * - security: the end of security support (usually release + 3 years). - */ -$BRANCHES = [ - /* 3.0 is here because version_compare() can't handle the only version in - * $OLDRELEASES, and it saves another special case in - * get_branch_security_eol_date(). */ - '3.0' => [ - 'security' => '2000-10-20', - ], - '5.3' => [ - 'stable' => '2013-07-11', - 'security' => '2014-08-14', - ], - '5.4' => [ - 'stable' => '2014-09-14', - 'security' => '2015-09-03', - ], - '5.5' => [ - 'stable' => '2015-07-10', - 'security' => '2016-07-21', - ], - '5.6' => [ - 'stable' => '2017-01-19', - 'security' => '2018-12-31', - ], - '7.0' => [ - 'stable' => '2018-01-04', - 'security' => '2019-01-10', - ], - '8.4' => [ - 'date' => '2024-11-21', - ], -]; - /* Time to keep EOLed branches in the array returned by get_active_branches(), * which is used on the front page download links and the supported versions * page. (Currently 28 days.) */ $KEEP_EOL = new DateInterval('P28D'); -function format_interval($from, DateTime $to) { +function get_branch_overrides(): array +{ + static $cache = null; + return $cache ??= require __DIR__ . '/branch-overrides.inc'; +} + +function get_releases(): array +{ + static $cache = null; + return $cache ??= require __DIR__ . '/version.inc'; +} + +function get_old_releases(): array +{ + static $cache = null; + return $cache ??= require __DIR__ . '/releases.inc'; +} + +function format_interval($from, DateTime|DateTimeImmutable $to) { try { + $from = ($from instanceof DateTimeImmutable) ? DateTime::createFromImmutable($from): $from; + $to = ($to instanceof DateTimeImmutable) ? DateTime::createFromImmutable($to) : $to; + $from_obj = $from instanceof DateTime ? $from : new DateTime($from); $diff = $to->diff($from_obj); @@ -98,53 +80,16 @@ function version_number_to_branch(string $version): ?string { return null; } -function get_all_branches() { - $branches = []; - - foreach ($GLOBALS['OLDRELEASES'] as $major => $releases) { - foreach ($releases as $version => $release) { - $branch = version_number_to_branch($version); - - if ($branch) { - if (!isset($branches[$major][$branch]) || version_compare($version, $branches[$major][$branch]['version'], 'gt')) { - $branches[$major][$branch] = $release; - $branches[$major][$branch]['version'] = $version; - } - } - } - } - - foreach ($GLOBALS['RELEASES'] as $major => $releases) { - foreach ($releases as $version => $release) { - $branch = version_number_to_branch($version); - - if ($branch) { - if (!isset($branches[$major][$branch]) || version_compare($version, $branches[$major][$branch]['version'], 'gt')) { - $branches[$major][$branch] = $release; - $branches[$major][$branch]['version'] = $version; - } - } - } - } - - krsort($branches); - foreach ($branches as &$branch) { - krsort($branch); - } - - return $branches; -} - function get_active_branches($include_recent_eols = true) { $branches = []; $now = new DateTime(); - foreach ($GLOBALS['RELEASES'] as $major => $releases) { + foreach (get_releases() as $major => $releases) { foreach ($releases as $version => $release) { $branch = version_number_to_branch($version); if ($branch) { - $threshold = get_branch_security_eol_date($branch); + $threshold = null; // get_branch_security_eol_date($branch); if ($threshold === null) { // No EOL date available, assume it is ancient. continue; @@ -167,277 +112,54 @@ function get_active_branches($include_recent_eols = true) { return $branches; } -/* If you provide an array to $always_include, note that the version numbers - * must be in $RELEASES _and_ must be the full version number, not the branch: - * ie provide array('5.3.29'), not array('5.3'). */ -function get_eol_branches($always_include = null) { - $always_include = $always_include ?: []; - $branches = []; - $now = new DateTime(); - - // Gather the last release on each branch into a convenient array. - foreach ($GLOBALS['OLDRELEASES'] as $major => $releases) { - foreach ($releases as $version => $release) { - $branch = version_number_to_branch($version); - - if ($branch) { - if (!isset($branches[$major][$branch]) || version_compare($version, $branches[$major][$branch]['version'], 'gt')) { - $branches[$major][$branch] = [ - 'date' => strtotime($release['date']), - 'link' => "/releases#$version", - 'version' => $version, - ]; - } - } - } - } - - /* Exclude releases from active branches, where active is defined as "in - * the $RELEASES array and not explicitly marked as EOL there". */ - foreach ($GLOBALS['RELEASES'] as $major => $releases) { - foreach ($releases as $version => $release) { - $branch = version_number_to_branch($version); - - if ($branch) { - if ($now < get_branch_security_eol_date($branch)) { - /* This branch isn't EOL: remove it from our array. */ - if (isset($branches[$major][$branch])) { - unset($branches[$major][$branch]); - } - } else { - /* Add the release information to the EOL branches array, since it - * should be newer than the information we got from $OLDRELEASES. */ - $always_include[] = $version; - } - } - } - } - - // Include any release in the always_include list that's in $RELEASES. - if ($always_include) { - foreach ($always_include as $version) { - $parts = explode('.', $version); - $major = $parts[0]; - - if (isset($GLOBALS['RELEASES'][$major][$version])) { - $release = $GLOBALS['RELEASES'][$major][$version]; - $branch = version_number_to_branch($version); - - if ($branch) { - $branches[$major][$branch] = [ - 'date' => strtotime($release['source'][0]['date']), - 'link' => "/downloads#v$version", - 'version' => $version, - ]; - } - } - } - } - - krsort($branches); - foreach ($branches as &$branch) { - krsort($branch); - } - - return $branches; -} - -/* $branch is expected to have at least two components: MAJOR.MINOR or - * MAJOR.MINOR.REVISION (the REVISION will be ignored if provided). This will - * return either null (if no release exists on the given branch), or the usual - * version metadata from $RELEASES for a single release. */ -function get_initial_release($branch) { - $branch = version_number_to_branch($branch); - if (!$branch) { - return null; - } - $major = substr($branch, 0, strpos($branch, '.')); - - if (isset($GLOBALS['OLDRELEASES'][$major]["$branch.0"])) { - return $GLOBALS['OLDRELEASES'][$major]["$branch.0"]; - } - - if(isset($GLOBALS['BRANCHES'][$branch])) { - return $GLOBALS['BRANCHES'][$branch]; - } - - /* If there's only been one release on the branch, it won't be in - * $OLDRELEASES yet, so let's check $RELEASES. */ - if (isset($GLOBALS['RELEASES'][$major]["$branch.0"])) { - // Fake a date like we have on the oldreleases array. - $release = $GLOBALS['RELEASES'][$major]["$branch.0"]; - $release['date'] = $release['source'][0]['date']; - return $release; - } - - // Shrug. - return null; -} - -function get_final_release($branch) { - $branch = version_number_to_branch($branch); - if (!$branch) { - return null; - } - $major = substr($branch, 0, strpos($branch, '.')); - - $last = "$branch.0"; - foreach ($GLOBALS['OLDRELEASES'][$major] as $version => $release) { - if (version_number_to_branch($version) == $branch && version_compare($version, $last, '>')) { - $last = $version; - } - } - - if (isset($GLOBALS['OLDRELEASES'][$major][$last])) { - return $GLOBALS['OLDRELEASES'][$major][$last]; - } - - /* If there's only been one release on the branch, it won't be in - * $OLDRELEASES yet, so let's check $RELEASES. */ - if (isset($GLOBALS['RELEASES'][$major][$last])) { - // Fake a date like we have on the oldreleases array. - $release = $GLOBALS['RELEASES'][$major][$last]; - $release['date'] = $release['source'][0]['date']; - return $release; - } - - // Shrug. - return null; -} - -function get_branch_bug_eol_date($branch): ?DateTime -{ - if (isset($GLOBALS['BRANCHES'][$branch]['stable'])) { - return new DateTime($GLOBALS['BRANCHES'][$branch]['stable']); - } - - $date = get_branch_release_date($branch); - - $date = $date?->add(new DateInterval('P2Y')); - - // Versions before 8.2 do not extend the release cycle to the end of the year - if (version_compare($branch, '8.2', '<')) { - return $date; - } - - // Extend the release cycle to the end of the year - return $date?->setDate($date->format('Y'), 12, 31); -} - -function get_branch_security_eol_date($branch): ?DateTime -{ - if (isset($GLOBALS['BRANCHES'][$branch]['security'])) { - return new DateTime($GLOBALS['BRANCHES'][$branch]['security']); - } - - /* Versions before 5.3 are based solely on the final release date in - * $OLDRELEASES. */ - if (version_compare($branch, '5.3', '<')) { - $release = get_final_release($branch); - - return $release ? new DateTime($release['date']) : null; - } - - $date = get_branch_release_date($branch); - - // Versions before 8.1 have 3-year support since the initial release - if (version_compare($branch, '8.1', '<')) { - return $date?->add(new DateInterval('P3Y')); - } - - $date = $date?->add(new DateInterval('P4Y')); - - // Extend the release cycle to the end of the year - return $date?->setDate($date->format('Y'), 12, 31); -} - -function get_branch_release_date($branch): ?DateTime +function show_source_releases() { - $initial = get_initial_release($branch); - - return isset($initial['date']) ? new DateTime($initial['date']) : null; -} - -function get_branch_support_state($branch) { - $initial = get_branch_release_date($branch); - $bug = get_branch_bug_eol_date($branch); - $security = get_branch_security_eol_date($branch); - - if ($initial && $bug && $security) { - $now = new DateTime(); - - if ($now >= $security) { - return 'eol'; - } - - if ($now >= $bug) { - return 'security'; - } - - if ($now >= $initial) { - return 'stable'; - } - - return 'future'; - } - - return null; -} - -function compare_version(array $arrayA, string $versionB) -{ - $arrayB = version_array($versionB, count($arrayA)); - - foreach ($arrayA as $index => $componentA) { - $componentA = $arrayA[$index]; - $componentB = $arrayB[$index]; - if ($componentA != $componentB) { - return $componentA > $componentB ? 1 : -1; - } - } - - return 0; -} - -function version_array(string $version, ?int $length = null) -{ - $versionArray = array_map( - 'intval', - explode('.', $version), - ); - - if (is_int($length)) { - $versionArray = count($versionArray) < $length - ? array_pad($versionArray, $length, 0) - : array_slice( - $versionArray, - 0, - $length, - ); - } - - return $versionArray; -} - -function get_current_release_for_branch(int $major, ?int $minor): ?string { - global $RELEASES, $OLDRELEASES; - - $prefix = "{$major}."; - if ($minor !== null) { - $prefix .= "{$minor}."; - } - - foreach (($RELEASES[$major] ?? []) as $version => $_) { - if (!strncmp($prefix, $version, strlen($prefix))) { - return $version; - } - } - - foreach (($OLDRELEASES[$major] ?? []) as $version => $_) { - if (!strncmp($prefix, $version, strlen($prefix))) { - return $version; - } - } - - return null; + $SHOW_COUNT = 4; + + $current_uri = htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES, 'UTF-8'); + + $i = 0; foreach (get_releases() as $MAJOR => $major_releases): /* major releases loop start */ + $releases = array_slice($major_releases, 0, $SHOW_COUNT); + ?> + <a id="v<?php echo $MAJOR; ?>"></a> + <?php foreach ($releases as $v => $a): ?> + <?php $mver = substr($v, 0, strrpos($v, '.')); ?> + <?php $stable = $i++ === 0 ? "Current Stable" : "Old Stable"; ?> + + <h3 id="v<?php echo $v; ?>" class="title"> + <span class="release-state"><?php echo $stable; ?></span> + PHP <?php echo $v; ?> + (<a href="/ChangeLog-<?php echo $MAJOR; ?>.php#<?php echo urlencode($v); ?>" class="changelog">Changelog</a>) + </h3> + <div class="content-box"> + + <ul> + <?php foreach ($a['source'] as $rel): ?> + <li> + <?php download_link($rel['filename'], $rel['filename']); ?> + <span class="releasedate"><?php echo date('d M Y', strtotime($rel['date'])); ?></span> + <?php + if (isset($rel['md5'])) echo '<span class="md5sum">', $rel['md5'], '</span>'; + if (isset($rel['sha256'])) echo '<span class="sha256">', $rel['sha256'], '</span>'; + ?> + <?php if (isset($rel['note']) && $rel['note']): ?> + <p> + <strong>Note:</strong> + <?php echo $rel['note']; ?> + </p> + <?php endif; ?> + </li> + <?php endforeach; ?> + <li> + <a href="/downloads.php?os=windows&osvariant=windows-downloads&version=<?php echo urlencode($mver); ?>"> + Windows downloads + </a> + </li> + </ul> + + <a href="<?php echo $current_uri; ?>#gpg-<?php echo $mver; ?>">GPG Keys for PHP <?php echo $mver; ?></a> + </div> +<?php endforeach; ?> +<?php endforeach; /* major releases loop end */ ?> + <?php } diff --git a/include/communities.inc b/include/communities.inc new file mode 100644 index 0000000000..ff347e0a12 --- /dev/null +++ b/include/communities.inc @@ -0,0 +1,28 @@ +<?php + +return [ + [ + 'title' => 'Reddit', + 'about' => 'Reddit has an active PHP community discussing the language and its ecosystem.', + 'image' => '/images/logos/reddit.png', + 'href' => 'https://www.reddit.com/r/PHP/', + ], + [ + 'title' => '"PHP Community" Discord', + 'about' => 'Join thousands of users on Discord talking about PHP.', + 'image' => '/images/logos/phpc-discord.png', + 'href' => 'https://discord.phpc.social/', + ], + [ + 'title' => 'Official Mailing Lists', + 'about' => 'Help and guidance, as well as proposals & discussions on the future of the language.', + 'image' => '/images/logos/new-php-logo.png', + 'href' => '/mailing-lists.php', + ], + [ + 'title' => '"PHP Developers" Discord', + 'about' => 'Born in 2018, it is the first community on Discord dedicated to PHP developers. Open for both experts and apprentices.', + 'image' => '/images/logos/community-phpdevelopers-discord.webp', + 'href' => 'https://discord.gg/php-developers-484326318851358720', + ] +]; diff --git a/include/development-links.inc b/include/development-links.inc new file mode 100644 index 0000000000..21e30dc56c --- /dev/null +++ b/include/development-links.inc @@ -0,0 +1,46 @@ +<?php + +return [ + [ + 'title' => 'PHP on Github', + 'about' => 'Browse and contribute to the source code behind the PHP engine and infrastructure.', + 'image' => '/images/logos/github_invertocat_white.svg', + 'href' => 'https://github.com/php', + 'href_label' => 'Visit GitHub', + ], + [ + 'title' => 'RFCs / Language Proposals', + 'about' => 'Requests for Comments are the mechanism PHP internals uses to propose language changes.', + 'image' => 'https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/PHP-logo.svg/500px-PHP-logo.svg.png', + 'href' => 'https://wiki.php.net/rfc', + 'href_label' => 'View Proposals', + ], + [ + 'title' => 'PHP Internals', + 'about' => 'Browse discussions from PHP Internals mailing list about current and future enhancements.', + 'image' => '/images/logos/new-php-logo.png', + 'href' => 'https://news-web.php.net/php.internals', + 'href_label' => 'Browse Mailing List', + ], + [ + 'title' => 'Get Involved', + 'about' => 'Find ways to contribute to the PHP engine, documentation and more.', + 'image' => '/images/landing/contribute.png', + 'href' => '/get-involved.php', + 'href_label' => 'Get Involved', + ], + [ + 'title' => 'Submit a Bug Report', + 'about' => 'Found a bug in the PHP runtime? Help us out by submitting it to our issue tracker.', + 'image' => '/images/landing/php-bugs.png', + 'href' => 'https://github.com/php/php-src/issues', + 'href_label' => 'Browse & Submit Issues', + ], + [ + 'title' => 'Documentation Translation', + 'about' => 'Help our team translate our documentation into multiple languages.', + 'image' => '/images/landing/docs-translator.png', + 'href' => 'https://doc.php.net/guide/', + 'href_label' => 'Learn About Translation', + ] +]; diff --git a/include/footer.inc b/include/footer.inc index faa7305d68..7ddcb50a4f 100644 --- a/include/footer.inc +++ b/include/footer.inc @@ -1,4 +1,7 @@ - </section><!-- layout-content --> +<?php if (!isset($config['include_section']) || $config['include_section']) { ?> +</section><!-- layout-content --> +<?php } ?> + <?php if (!empty($config['spanning-content'])) { echo "<div class='spanning-content'>"; diff --git a/include/gpg-keys.inc b/include/gpg-keys.inc deleted file mode 100644 index 7a4bb6ad2c..0000000000 --- a/include/gpg-keys.inc +++ /dev/null @@ -1,251 +0,0 @@ -<?php -require __DIR__ . '/branches.inc'; - -// GPG keys used for signing releases. - -function gpg_key_get(string $rm): ?string { - switch ($rm) { - case 'ab': - return - "pub 2048R/9C0D5763 2015-06-09 [expires: 2024-06-06]\n" . - " Key fingerprint = 1A4E 8B72 77C4 2E53 DBA9 C7B9 BCAA 30EA 9C0D 5763\n" . - "uid Anatol Belski <ab@php.net>"; - - case 'bukka': - return - "pub ed25519 2021-04-10 [SC]\n" . - " C28D937575603EB4ABB725861C0779DC5C0A9DE4\n" . - "uid [ultimate] Jakub Zelenka <bukka@php.net>\n" . - "uid [ultimate] Jakub Zelenka <jakub.openssl@gmail.com>\n" . - "uid [ultimate] Jakub Zelenka <jakub.zelenka@gmail.com>\n" . - "sub cv25519 2021-04-10 [E]"; - - case "calvinb": - return - "pub ed25519 2024-04-17 [SC]\n" . - " 9D7F 99A0 CB8F 05C8 A695 8D62 56A9 7AF7 600A 39A6\n" . - "uid [ultimate] Calvin Buckley (PHP) <calvinb@php.net>\n" . - "sub cv25519 2024-04-17 [E]"; - - case 'carusogabriel-old': - return - "pub rsa4096 2020-05-09 [SC] [expires: 2024-05-08]\n" . - " BFDD D286 4282 4F81 18EF 7790 9B67 A5C1 2229 118F\n" . - "uid [ultimate] Gabriel Caruso (Release Manager) <carusogabriel@php.net>\n" . - "sub rsa4096 2020-05-09 [E] [expires: 2024-05-08]"; - - case 'carusogabriel-new': - return - "pub rsa4096 2022-08-30 [SC] [expires: 2024-08-29]\n" . - " 2C16 C765 DBE5 4A08 8130 F1BC 4B9B 5F60 0B55 F3B4\n" . - "uid [ultimate] Gabriel Caruso <carusogabriel@php.net>\n" . - "sub rsa4096 2022-08-30 [E] [expires: 2024-08-29]"; - - case 'cmb': - return - "pub rsa4096/118BCCB6 2018-06-05 [SC] [expires: 2022-06-04]\n" . - " Key fingerprint = CBAF 69F1 73A0 FEA4 B537 F470 D66C 9593 118B CCB6\n" . - "uid Christoph M. Becker <cmb@php.net>"; - - case 'daniels': - return - "pub rsa4096 2025-06-08 [SCEA]\n" . - " D95C 03BC 702B E951 5344 AE33 74E4 4BC9 0677 01A5\n" . - "uid [ultimate] Daniel Scherzer (for PHP) <daniels@php.net>"; - - case 'davey': - return - "pub 4096R/7BD5DCD0 2016-05-07\n" . - " Key fingerprint = A917 B1EC DA84 AEC2 B568 FED6 F50A BC80 7BD5 DCD0\n" . - "uid Davey Shafik <davey@php.net>"; - - case 'derick': - return - "sec rsa4096 2019-06-11 [SC] [expires: 2029-06-08]\n" . - " 5A52880781F755608BF815FC910DEB46F53EA312\n" . - "uid [ultimate] Derick Rethans <gpg@derickrethans.nl>\n" . - "uid [ultimate] Derick Rethans <derick@derickrethans.nl>\n" . - "uid [ultimate] Derick Rethans (GitHub) <github@derickrethans.nl>\n" . - "uid [ultimate] Derick Rethans (PHP) <derick@php.net>\n" . - "ssb rsa4096 2019-06-11 [E] [expires: 2029-06-08]"; - - case 'dsp': - return - "pub 4096R/7267B52D 2012-03-20 [expires: 2016-03-19]\n" . - " Key fingerprint = 0B96 609E 270F 565C 1329 2B24 C13C 70B8 7267 B52D\n" . - "uid David Soria Parra <dsp@php.net>"; - - case 'edorian': - return - "pub ed25519 2025-06-08 [SC]\n" . - " 49D9 AF6B C72A 80D6 6917 19C8 AA23 F5BE 9C70 97D4\n" . - "uid [ultimate] Volker Dusch <edorian@php.net>\n" . - "sub cv25519 2025-06-08 [E]"; - - case 'ericmann': - return - "pub rsa4096 2016-11-25 [SC]\n" . - " AFD8 691F DAED F03B DF6E 4605 63F1 5A9B 7153 76CA\n" . - "uid [ultimate] Eric A Mann <eric@sixthree.me>\n" . - "uid [ultimate] Eric A Mann <eric@eamann.com>\n" . - "uid [ultimate] Eric A Mann <eric@eam.me>\n" . - "uid [ultimate] Eric Mann <ericmann@php.net>\n" . - "sub rsa4096 2016-11-25 [S]\n" . - "sub rsa4096 2016-11-25 [E]\n" . - "sub rsa4096 2016-11-25 [A]"; - - case 'johannes': - return - "pub 2048R/FC9C83D7 2012-03-18 [expires: 2017-03-17]\n" . - " Key fingerprint = 0A95 E9A0 2654 2D53 835E 3F3A 7DEC 4E69 FC9C 83D7\n" . - "uid Johannes Schlüter <johannes@schlueters.de>\n" . - "uid Johannes Schlüter <johannes@php.net>"; - - case 'jpauli': - return - "pub 2048R/90D90EC1 2013-07-18 [expire : 2016-07-17]\n" . - " Key fingerprint = 0BD7 8B5F 9750 0D45 0838 F95D FE85 7D9A 90D9 0EC1\n" . - "uid Julien Pauli <jpauli@php.net>"; - - case 'krakjoe': - return - "pub 2048R/31CBD89E 2016-12-08\n" . - " Key fingerprint = 5289 95BF EDFB A719 1D46 839E F9BA 0ADA 31CB D89E\n" . - "uid Joe Watkins <krakjoe@php.net>"; - - case 'mbeccati': - return - "pub ed25519 2026-04-16 [SC]\n" . - " 0168 95DE 9A47 5111 D537 A6E6 9134 FF30 BC5A 99B5\n" . - "uid [ full ] Matteo Beccati <mbeccati@php.net>\n" . - "sub cv25519 2026-04-16 [E]"; - - case 'patrickallaert': - return - "pub rsa4096 2021-04-01 [SC]\n" . - " F1F6 9223 8FBC 1666 E5A5 CCD4 199F 9DFE F6FF BAFD\n" . - "uid [ultimate] Patrick Allaert <patrickallaert@php.net>\n" . - "sub rsa4096 2021-04-01 [E]"; - - case 'petk': - return - "pub rsa4096 2019-05-29 [SC] [expires: 2021-05-28]\n" . - " 4267 0A7F E4D0 441C 8E46 3234 9E4F DC07 4A4E F02D\n" . - "uid [ultimate] Peter Kokot <petk@php.net>\n" . - "sub rsa4096 2019-05-29 [E] [expires: 2021-05-28]"; - - case 'pierrick': - return - "pub rsa4096 2021-04-01 [SC]\n" . - " 1198 C011 7593 497A 5EC5 C199 286A F1F9 8974 69DC\n" . - "uid [ultimate] Pierrick Charron <pierrick@php.net>\n" . - "sub rsa4096 2021-04-01 [E]"; - - case 'pollita': - return - "pub 4096R/70D12172 2017-04-14 [expires: 2024-04-21]\n" . - " Key fingerprint = 1729 F839 38DA 44E2 7BA0 F4D3 DBDB 3974 70D1 2172\n" . - "uid Sara Golemon <pollita@php.net>"; - - case 'ramsey': - return - "pub rsa4096 2021-04-26 [SC] [expires: 2025-11-24]\n" . - " 39B6 4134 3D8C 104B 2B14 6DC3 F9C3 9DC0 B969 8544\n" . - "uid [ultimate] Ben Ramsey <ramsey@php.net>\n" . - "sub rsa4096 2021-04-26 [E] [expires: 2025-11-24]"; - - case 'remi': - return - "pub 4096R/EE5AF27F 2017-05-24 [expires: 2024-05-22]\n" . - " Key fingerprint = B1B4 4D8F 021E 4E2D 6021 E995 DC9F F8D3 EE5A F27F\n" . - "uid Remi Collet <remi@php.net>"; - - case 'saki': - return - "pub rsa4096 2024-05-20 [SC]\n" . - " 0616 E93D 95AF 4712 43E2 6761 7704 26E1 7EBB B3DD\n" . - "uid [ultimate] Saki Takamachi (for php.net) <saki@php.net>\n" . - "sub rsa4096 2024-05-20 [E]"; - - case 'sergey': - return - "pub rsa4096 2021-03-26 [SC] [expires: 2030-03-26]\n" . - " E609 13E4 DF20 9907 D8E3 0D96 659A 97C9 CF2A 795A\n" . - "uid [ultimate] Sergey Panteleev <sergey@php.net>\n" . - "uid [ultimate] Sergey Panteleev <sergey@s-panteleev.ru>\n" . - "uid [ultimate] Sergey Panteleev <sergey@sergeypanteleev.com>\n" . - "sub rsa4096 2021-03-26 [E] [expires: 2025-03-26]"; - - case 'stas': - return - "pub 2048D/5DA04B5D 2012-03-19\n" . - " Key fingerprint = F382 5282 6ACD 957E F380 D39F 2F79 56BC 5DA0 4B5D\n" . - "uid Stanislav Malyshev (PHP key) <smalyshev@gmail.com>\n" . - "uid Stanislav Malyshev (PHP key) <stas@php.net>\n" . - "uid Stanislav Malyshev (PHP key) <smalyshev@sugarcrm.com>"; - - case 'svpernova09': - return - "pub rsa4096 2026-04-16 [SC] [expires: 2031-04-15]\n" . - " 5CFF 17B6 4DC1 C244 F5D0 EAC3 E435 35E2 EB19 010E\n" . - "uid [ full ] Joe Ferguson (PHP) <svpernova09@php.net>\n" . - "sub rsa4096 2026-04-16 [E] [expires: 2031-04-15]"; - - case 'tyrael': - return - "pub 2048R/33CFC8B3 2014-01-14 [expires: 2020-01-13]\n" . - " Key fingerprint = 6E4F 6AB3 21FD C07F 2C33 2E3A C2BF 0BC4 33CF C8B3\n" . - "uid Ferenc Kovacs <tyrael@php.net>"; - - default: - return null; - } -} - -function gpg_key_get_branches(bool $activeOnly): array { - $branches = [ - '8.6' => ['daniels', 'mbeccati', 'svpernova09'], - '8.5' => ['pierrick', 'edorian', 'daniels'], - '8.4' => ['ericmann', 'calvinb', 'saki'], - '8.3' => ['pierrick', 'ericmann', 'bukka'], - '8.2' => ['pierrick', 'ramsey', 'sergey'], - '8.1' => ['krakjoe', 'ramsey', 'patrickallaert'], - '8.0' => ['pollita', 'carusogabriel-old', 'carusogabriel-new', 'ramsey'], - '7.4' => ['derick', 'petk'], - '7.3' => ['cmb', 'stas'], - '7.2' => ['pollita', 'remi', 'cmb'], - '7.1' => ['davey', 'krakjoe', 'pollita'], - '7.0' => ['ab', 'tyrael'], - '5.6' => ['tyrael', 'jpauli'], - '5.5' => ['jpauli', 'dsp', 'stas'], - '5.4' => ['stas'], - '5.3' => ['dsp', 'johannes'], - ]; - - if (!$activeOnly) { return $branches; } - - $active = get_active_branches(); - return array_filter($branches, function ($branch) use ($active) { - [$major] = explode('.', $branch, 2); - return isset($active[$major][$branch]); - }, ARRAY_FILTER_USE_KEY); -} - -function gpg_key_show_keys(bool $activeOnly): void { - foreach (gpg_key_get_branches($activeOnly) as $branch => $rms) { - $keys = array_filter( - array_map(function ($rm) { return gpg_key_get($rm); }, $rms), - function ($key) { return $key !== null; }); - if (empty($keys)) { continue; } - - $branch = htmlentities($branch, ENT_QUOTES, 'UTF-8'); - $keys = htmlentities(implode("\n\n", $keys), ENT_QUOTES, 'UTF-8'); - - echo "<h3 id='gpg-$branch' class='content-header'>PHP $branch</h3>\n"; - echo "<div class='content-box'>\n"; - echo " <pre>\n"; - echo $keys, "\n"; - echo " </pre>\n"; - echo "</div>\n\n\n"; - } -} diff --git a/include/header.inc b/include/header.inc index 8dc0076126..63581c25bd 100644 --- a/include/header.inc +++ b/include/header.inc @@ -1,9 +1,13 @@ <?php + +use phpweb\Themes\Assets; + $css_files = [ '/fonts/Fira/fira.css', '/fonts/Font-Awesome/css/fontello.css', '/styles/theme-base.css', '/styles/theme-medium.css', + '/styles/theme-gst.css', ]; if (isset($config['css'])) { @@ -65,19 +69,15 @@ if (!isset($config["languages"])) { <title><?php echo $title ?> - $modified): ?> - - - - - - - - + + + + + - - + + @@ -96,11 +96,11 @@ if (!isset($config["languages"])) { $modified): ?> - + $modified): ?> - + @@ -125,7 +125,7 @@ if (!isset($config["languages"])) { - +
- + ', 'intro' => '', ), - 82 => + 82 => array ( 'title' => 'PHP 7.1.24 Released', 'id' => 'http://php.net/archive/2018.php#id2018-11-08-3', 'published' => '2018-11-08T15:28:08+00:00', 'updated' => '2018-11-08T15:28:08+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-11-08-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-11-08-3', 'rel' => 'via', @@ -4422,12 +4441,12 @@ the upgrade ), 'content' => '

PHP 7.1.24 Release Announcement

- +

The PHP development team announces the immediate availability of PHP 7.1.24. This is a bugfix release.

- +

All PHP 7.1 users are encouraged to upgrade to this version.

- +

For source downloads of PHP 7.1.24 please visit our downloads page, Windows source and binaries can be found on windows.php.net/download/. The list of changes is recorded in the ChangeLog. @@ -4437,34 +4456,34 @@ the upgrade 'intro' => '

PHP 7.1.24 Release Announcement

The PHP development team announces the immediate availability of PHP 7.1.24. This is a bugfix release.

… read full article

', ), - 83 => + 83 => array ( 'title' => 'PHP 7.2.12 Released', 'id' => 'http://php.net/archive/2018.php#id2018-11-08-2', 'published' => '2018-11-08T10:28:15+00:00', 'updated' => '2018-11-08T10:28:15+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-11-08-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-11-08-2', 'rel' => 'via', @@ -4486,29 +4505,29 @@ the upgrade 'intro' => '

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.

… read full article

', ), - 84 => + 84 => array ( 'title' => 'PHP 7.3.0RC5 Released', 'id' => 'http://php.net/archive/2018.php#id2018-11-08-1', 'published' => '2018-11-08T11:11:26+01:00', 'updated' => '2018-11-08T11:11:26+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-11-08-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-11-08-1', 'rel' => 'via', @@ -4567,29 +4586,29 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

… read full article

', ), - 85 => + 85 => array ( 'title' => 'PHP 7.3.0RC4 Released', 'id' => 'http://php.net/archive/2018.php#id2018-10-25-1', 'published' => '2018-10-25T11:07:32+02:00', 'updated' => '2018-10-25T11:07:32+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-10-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-10-25-1', 'rel' => 'via', @@ -4648,37 +4667,37 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

… read full article

', ), - 86 => + 86 => array ( 'title' => 'International PHP Conference 2019 - Spring Edition', 'id' => 'http://php.net/archive/2018.php#id2018-10-12-2', 'published' => '2018-10-12T16:20:54-04:00', 'updated' => '2018-10-12T16:20:54-04:00', 'finalTeaserDate' => '2019-06-03', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-10-12-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -4718,37 +4737,37 @@ the upgrade ', 'intro' => '

The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.

All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the webinale taking place at the same time.

… read full article

', ), - 87 => + 87 => array ( 'title' => 'Longhorn PHP 2019 CFP is open!', 'id' => 'http://php.net/archive/2018.php#id2018-10-12-1', 'published' => '2018-10-12T18:08:06+00:00', 'updated' => '2018-10-12T18:08:06+00:00', 'finalTeaserDate' => '2018-12-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-10-12-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.longhornphp.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.longhornphp.com/', @@ -4767,34 +4786,34 @@ the upgrade ', 'intro' => '

Longhorn PHP is back for another exciting weekend of fun and learning!

At Longhorn PHP you\'ll get to learn from and alongside a diverse group of developers from all over the region, country, and even the globe. The conference will consist of a tutorial day with in-depth workshops, followed by two main conference days with multiple tracks of traditional 1 hour sessions, and new 30 minute sessions! Register now to take the next step toward leveling up your development career!

… read full article

', ), - 88 => + 88 => array ( 'title' => 'PHP 7.1.23 Released', 'id' => 'http://php.net/archive/2018.php#id2018-10-11-3', 'published' => '2018-10-11T14:11:47+00:00', 'updated' => '2018-10-11T14:11:47+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-10-11-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-10-11-3', 'rel' => 'via', @@ -4816,34 +4835,34 @@ the upgrade 'intro' => '

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.

… read full article

', ), - 89 => + 89 => array ( 'title' => 'PHP 7.2.11 Released', 'id' => 'http://php.net/archive/2018.php#id2018-10-11-2', 'published' => '2018-10-11T14:11:19+00:00', 'updated' => '2018-10-11T14:11:19+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-10-11-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-10-11-2', 'rel' => 'via', @@ -4865,29 +4884,29 @@ the upgrade 'intro' => '

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.

… read full article

', ), - 90 => + 90 => array ( 'title' => 'PHP 7.3.0RC3 Released', 'id' => 'http://php.net/archive/2018.php#id2018-10-11-1', 'published' => '2018-10-11T13:47:50+02:00', 'updated' => '2018-10-11T13:47:50+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-10-11-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-10-11-1', 'rel' => 'via', @@ -4946,29 +4965,29 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

… read full article

', ), - 91 => + 91 => array ( 'title' => 'PHP 7.3.0RC2 Released', 'id' => 'http://php.net/archive/2018.php#id2018-09-28-1', 'published' => '2018-09-28T10:31:16+02:00', 'updated' => '2018-09-28T10:31:16+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-09-28-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-09-28-1', 'rel' => 'via', @@ -5027,34 +5046,34 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

… read full article

', ), - 92 => + 92 => array ( 'title' => 'PHP 5.6.38 Released', 'id' => 'http://php.net/archive/2018.php#id2018-09-13-5', 'published' => '2018-09-13T19:56:28+02:00', 'updated' => '2018-09-13T19:56:28+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-09-13-5', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-09-13-5', 'rel' => 'via', @@ -5083,34 +5102,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

', ), - 93 => + 93 => array ( 'title' => 'PHP 7.1.22 Released', 'id' => 'http://php.net/archive/2018.php#id2018-09-13-4', 'published' => '2018-09-13T13:21:55+00:00', 'updated' => '2018-09-13T13:21:55+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-09-13-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-09-13-4', 'rel' => 'via', @@ -5140,34 +5159,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

', ), - 94 => + 94 => array ( 'title' => 'PHP 7.0.32 Released', 'id' => 'http://php.net/archive/2018.php#id2018-09-13-3', 'published' => '2018-09-13T13:00:00+01:00', 'updated' => '2018-09-13T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-09-13-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-09-13-3', 'rel' => 'via', @@ -5196,29 +5215,29 @@ the upgrade The list of changes is recorded in the ChangeLog.

', ), - 95 => + 95 => array ( 'title' => 'PHP 7.3.0RC1 Released', 'id' => 'http://php.net/archive/2018.php#id2018-09-13-2', 'published' => '2018-09-13T10:57:40+02:00', 'updated' => '2018-09-13T10:57:40+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-09-13-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-09-13-2', 'rel' => 'via', @@ -5277,34 +5296,34 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

… read full article

', ), - 96 => + 96 => array ( 'title' => 'PHP 7.2.10 Released', 'id' => 'http://php.net/archive/2018.php#id2018-09-13-1', 'published' => '2018-09-13T08:44:08+00:00', 'updated' => '2018-09-13T08:44:08+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-09-13-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-09-13-1', 'rel' => 'via', @@ -5326,37 +5345,37 @@ the upgrade 'intro' => '

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.

… read full article

', ), - 97 => + 97 => array ( 'title' => 'PHP Day Curitiba 2018', 'id' => 'http://php.net/archive/2018.php#id2018-09-03-1', 'published' => '2018-09-03T21:49:30+00:00', 'updated' => '2018-09-03T21:49:30+00:00', 'finalTeaserDate' => '2018-10-06', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-09-03-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.phpdaycuritiba.com.br', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpdaycuritiba.com.br', @@ -5384,29 +5403,29 @@ the upgrade
  • Free Admission + Coffee-break + A lot of networking
  • … read full article

    ', ), - 98 => + 98 => array ( 'title' => 'PHP 7.3.0.beta3 Released', 'id' => 'http://php.net/archive/2018.php#id2018-08-30-1', 'published' => '2018-08-30T17:37:34+02:00', 'updated' => '2018-08-30T17:37:34+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-08-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-08-30-1', 'rel' => 'via', @@ -5465,37 +5484,37 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

    … read full article

    ', ), - 99 => + 99 => array ( 'title' => 'PHP UK Conference 2019 CFP is Open', 'id' => 'http://php.net/archive/2018.php#id2018-08-28-1', 'published' => '2018-08-28T19:02:06+00:00', 'updated' => '2018-08-28T19:02:06+00:00', 'finalTeaserDate' => '2018-08-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-08-28-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.co.uk', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.co.uk', @@ -5516,37 +5535,37 @@ the upgrade ', 'intro' => '

    Dates announced for PHP UK 2019

    We are pleased to announce that PHP UK is back in 2019 for our 14th annual conference. As always PHP UK will feature an optional workshop day followed by two days of amazing talks, plentiful networking opportunities and great social events.

    … read full article

    ', ), - 100 => + 100 => array ( 'title' => 'Cascadia PHP', 'id' => 'http://php.net/archive/2018.php#id2018-08-21-1', 'published' => '2018-08-21T22:29:36+00:00', 'updated' => '2018-08-21T22:29:36+00:00', 'finalTeaserDate' => '2018-09-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-08-21-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.cascadiaphp.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.cascadiaphp.com/', @@ -5559,34 +5578,34 @@ the upgrade ', 'intro' => '
    ', ), - 101 => + 101 => array ( 'title' => 'PHP 7.1.21 Released', 'id' => 'http://php.net/archive/2018.php#id2018-08-17-1', 'published' => '2018-08-17T14:52:00+00:00', 'updated' => '2018-08-17T14:52:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-08-17-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-08-17-1', 'rel' => 'via', @@ -5615,34 +5634,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 102 => + 102 => array ( 'title' => 'PHP 7.2.9 Released', 'id' => 'http://php.net/archive/2018.php#id2018-08-16-3', 'published' => '2018-08-16T19:14:25+00:00', 'updated' => '2018-08-16T19:14:25+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-08-16-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-08-16-2', 'rel' => 'via', @@ -5664,37 +5683,37 @@ the upgrade 'intro' => '

    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.

    … read full article

    ', ), - 103 => + 103 => array ( 'title' => 'php[world] 2018', 'id' => 'http://php.net/archive/2018.php#id2018-08-16-2', 'published' => '2018-08-16T14:31:44+00:00', 'updated' => '2018-08-16T14:31:44+00:00', 'finalTeaserDate' => '2018-11-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-08-16-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/', @@ -5714,29 +5733,29 @@ the upgrade ', 'intro' => '

    We are excited to announce the 5th annual php[world] conference, produced by the publishers of php[architect] magazine. As always, it is taking place over two days in November (14th-15th) in the Washington D.C. area.

    This year we have streamlined our event schedule to add in even more content for you! 40 sessions, 6 workshops, and 12 birds of a feather sessions are waiting for you at this year\'s php[world] conference.

    … read full article

    ', ), - 104 => + 104 => array ( 'title' => 'PHP 7.3.0.beta2 Released', 'id' => 'http://php.net/archive/2018.php#id2018-08-16-1', 'published' => '2018-08-16T14:11:38+02:00', 'updated' => '2018-08-16T14:11:38+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-08-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-08-16-1', 'rel' => 'via', @@ -5795,37 +5814,37 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

    … read full article

    ', ), - 105 => + 105 => array ( 'title' => 'SunshinePHP 2019 CFP Started', 'id' => 'http://php.net/archive/2018.php#id2018-08-14-1', 'published' => '2018-08-14T00:00:01+00:00', 'updated' => '2018-08-14T12:23:00+00:00', 'finalTeaserDate' => '2018-09-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-08-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://sunshinephp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://sunshinephp.com', @@ -5842,37 +5861,37 @@ the upgrade ', 'intro' => '

    We are happy to announce the CFP for SunshinePHP 2019 has launched at https://cfp.sunshinephp.com where we will accept talk submissions until September 15th, 2018.

    SunshinePHP hit it\'s 7th year and will happen from February 7th to 9th, 2019 in sunny Miami, Florida. As one of the largest community conferences in the U.S. there is no doubt the schedule will be amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.

    … read full article

    ', ), - 106 => + 106 => array ( 'title' => 'Northeast PHP Boston 2018', 'id' => 'http://php.net/archive/2018.php#id2018-08-09-1', 'published' => '2018-08-09T21:41:10-04:00', 'updated' => '2018-08-09T21:41:10-04:00', 'finalTeaserDate' => '2018-09-19', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-08-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2018.northeastphp.org/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2018.northeastphp.org/', @@ -5889,29 +5908,29 @@ the upgrade ', 'intro' => '

    Join us September 19-21 for this year\'s PHP, Web Development, and UX Conference by Northeast PHP. We\'re returning to Boston and will be hosted at Wayfair HQ in historic Copley Square.

    Our schedule has been announced and this year\'s has another great lineup of talks for the PHP community, including a security hackathon, IBM sponsored event night, keynote by PJ Hagerty, and a full day workshop covering application development using containers by Red Hat.

    … read full article

    ', ), - 107 => + 107 => array ( 'title' => 'PHP 7.3.0.beta1 Released', 'id' => 'http://php.net/archive/2018.php#id2018-08-02-1', 'published' => '2018-08-02T11:44:58+02:00', 'updated' => '2018-08-02T11:44:58+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-08-02-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-08-02-1', 'rel' => 'via', @@ -5969,34 +5988,34 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

    … read full article

    ', ), - 108 => + 108 => array ( 'title' => 'PHP 7.1.20 Released', 'id' => 'http://php.net/archive/2018.php#id2018-07-20-2', 'published' => '2018-07-20T08:13:03+00:00', 'updated' => '2018-07-20T08:13:03+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-07-20-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-07-20-2', 'rel' => 'via', @@ -6027,34 +6046,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 109 => + 109 => array ( 'title' => 'PHP 5.6.37 Released', 'id' => 'http://php.net/archive/2018.php#id2018-07-20-1', 'published' => '2018-07-20T04:41:46+02:00', 'updated' => '2018-07-20T04:41:46+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-07-20-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-07-20-1', 'rel' => 'via', @@ -6083,34 +6102,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 110 => + 110 => array ( 'title' => 'PHP 7.0.31 Released', 'id' => 'http://php.net/archive/2018.php#id2018-07-19-3', 'published' => '2018-07-19T13:00:00+01:00', 'updated' => '2018-07-19T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-07-19-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-07-19-2', 'rel' => 'via', @@ -6139,34 +6158,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 111 => + 111 => array ( 'title' => 'PHP 7.2.8 Released', 'id' => 'http://php.net/archive/2018.php#id2018-07-19-2', 'published' => '2018-07-19T09:42:31+00:00', 'updated' => '2018-07-19T09:42:31+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-07-19-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-07-19-2', 'rel' => 'via', @@ -6188,29 +6207,29 @@ the upgrade 'intro' => '

    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.

    … read full article

    ', ), - 112 => + 112 => array ( 'title' => 'PHP 7.3.0alpha4 Released', 'id' => 'http://php.net/archive/2018.php#id2018-07-19-1', 'published' => '2018-07-19T11:02:21+02:00', 'updated' => '2018-07-19T11:02:21+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-07-19-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-07-19-1', 'rel' => 'via', @@ -6266,29 +6285,29 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

    … read full article

    ', ), - 113 => + 113 => array ( 'title' => 'PHP 7.3.0 alpha 3 Released', 'id' => 'http://php.net/archive/2018.php#id2018-07-05-1', 'published' => '2018-07-05T11:41:41+02:00', 'updated' => '2018-07-05T11:41:41+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-07-05-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-07-05-1', 'rel' => 'via', @@ -6344,37 +6363,37 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

    … read full article

    ', ), - 114 => + 114 => array ( 'title' => 'ZendCon & OpenEnterprise 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-26-1', 'published' => '2018-06-26T08:41:29+00:00', 'updated' => '2018-06-26T08:41:29+00:00', 'finalTeaserDate' => '2018-10-01', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-26-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.zendcon.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.zendcon.com', @@ -6395,37 +6414,37 @@ the upgrade business leaders, strategists, and developers will assemble to discuss case studies and best practices around the application of PHP and open source to transform business.

    ', ), - 115 => + 115 => array ( 'title' => 'SymfonyCon Lisbon 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-25-4', 'published' => '2018-06-25T14:46:40+02:00', 'updated' => '2018-06-25T14:46:40+02:00', 'finalTeaserDate' => '2018-12-06', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-25-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://lisbon2018.symfony.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://lisbon2018.symfony.com/', @@ -6454,37 +6473,37 @@ the upgrade serious work around Symfony and its environment, then sharing this very special Portuguese atmosphere... And of course, celebrate the community reunion!

    ', ), - 116 => + 116 => array ( 'title' => 'SymfonyLive Berlin 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-25-3', 'published' => '2018-06-25T13:29:40+02:00', 'updated' => '2018-06-25T13:29:40+02:00', 'finalTeaserDate' => '2018-10-24', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-25-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://berlin2018.live.symfony.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://berlin2018.live.symfony.com/', @@ -6503,37 +6522,37 @@ the upgrade 26th of October there will be two workshop days and a conference day with two tracks.

    Symfony German-speaking fans, don\'t miss the opportunity to attend inspiring and exciting talks and hands-on workshops!

    ', ), - 117 => + 117 => array ( 'title' => 'SymfonyLive USA 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-25-2', 'published' => '2018-06-25T13:17:59+02:00', 'updated' => '2018-06-25T13:17:59+02:00', 'finalTeaserDate' => '2018-10-11', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-25-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://usa2018.live.symfony.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://usa2018.live.symfony.com/', @@ -6557,34 +6576,34 @@ the upgrade from October 11th-12th. We are excited to return to the city by the bay and host the American Symfony community.

    … read full article

    ', ), - 118 => + 118 => array ( 'title' => 'PHP 7.1.19 Released', 'id' => 'http://php.net/archive/2018.php#id2018-06-25-1', 'published' => '2018-06-25T07:02:15+00:00', 'updated' => '2018-06-25T07:02:15+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-06-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-06-25-1', 'rel' => 'via', @@ -6613,34 +6632,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 119 => + 119 => array ( 'title' => 'PHP 7.2.7 Released', 'id' => 'http://php.net/archive/2018.php#id2018-06-21-2', 'published' => '2018-06-21T15:12:22+00:00', 'updated' => '2018-06-21T15:12:22+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-06-21-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-06-21-2', 'rel' => 'via', @@ -6662,29 +6681,29 @@ the upgrade 'intro' => '

    The PHP development team announces the immediate availability of PHP 7.2.7. This is a primarily a bugfix release which includes a segfault fix for opcache.

    PHP 7.2 users are encouraged to upgrade to this version.

    … read full article

    ', ), - 120 => + 120 => array ( 'title' => 'PHP 7.3.0 alpha 2 Released', 'id' => 'http://php.net/archive/2018.php#id2018-06-21-1', 'published' => '2018-06-21T11:46:20+02:00', 'updated' => '2018-06-21T11:46:20+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-06-21-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-06-21-1', 'rel' => 'via', @@ -6740,37 +6759,37 @@ the upgrade Windows sources and binaries can be found on windows.php.net/qa/.

    … read full article

    ', ), - 121 => + 121 => array ( 'title' => 'SymfonyLive London 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-18-1', 'published' => '2018-06-18T10:37:31+02:00', 'updated' => '2018-06-18T10:37:31+02:00', 'finalTeaserDate' => '2018-09-28', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-18-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://london2018.live.symfony.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://london2018.live.symfony.com/', @@ -6794,37 +6813,37 @@ the upgrade professionals will meet at Westminster, for SymfonyLive London 2018.

    … read full article

    ', ), - 122 => + 122 => array ( 'title' => 'php Central Europe Conference 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-14-1', 'published' => '2018-06-14T20:49:21+02:00', 'updated' => '2018-06-14T20:49:21+02:00', 'finalTeaserDate' => '2018-06-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cfp.phpce.eu/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cfp.phpce.eu/', @@ -6855,37 +6874,37 @@ the upgrade ', 'intro' => '

    New season and new challenges! As conference organisers we understand perfectly that you can stay with peleton only when you focus on development. That is why phpCE, as an event aimed at a wide group of PHP programmers from Central Europe, leaves Poland for the first time. We are stronger than before thanks to the organisers of Brno PHP Conference and volunteers from the Pehapkaři group. Together we have been working for the success of this year’s edition and we are inviting you to Prague.

    Our Special Guest this year will be Rasmus Lerdorf, The PHP Language Creator.

    … read full article

    ', ), - 123 => + 123 => array ( 'title' => 'php[world] 2018 - Call for Speakers', 'id' => 'http://php.net/archive/2018.php#id2018-06-13-1', 'published' => '2018-06-13T12:00:51+00:00', 'updated' => '2018-06-13T12:00:51+00:00', 'finalTeaserDate' => '2018-07-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-13-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/', @@ -6929,37 +6948,37 @@ the upgrade Ideas surrounding the entire software life cycle are often big hits for our attendees. Finally, we do welcome non-technical proposals that will appeal to a developer audience.

    … read full article

    ', ), - 124 => + 124 => array ( 'title' => 'LaravelConf Taiwan 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-11-1', 'published' => '2018-06-11T11:00:00+00:00', 'updated' => '2018-06-11T11:00:00+00:00', 'finalTeaserDate' => '2018-07-08', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-11-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://laravelconf.tw/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://laravelconf.tw/', @@ -6978,29 +6997,29 @@ the upgrade ', 'intro' => '

    As the biggest PHP and Laravel community in Taiwan, we are proud to announce LaravelConf Taiwan will take place on July 8, 2018.

    Come and enjoy inspirational talks and making friends with enthusiastic developers like you!

    … read full article

    ', ), - 125 => + 125 => array ( 'title' => 'PHP 7.3.0 alpha 1 Released', 'id' => 'http://php.net/archive/2018.php#id2018-06-07-1', 'published' => '2018-06-07T18:36:37+00:00', 'updated' => '2018-06-07T18:36:37+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-06-07-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-06-07-1', 'rel' => 'via', @@ -7047,37 +7066,37 @@ the upgrade PHP Wiki.

    For source downloads of PHP 7.3.0 Alpha 1 please visit the download page.

    … read full article

    ', ), - 126 => + 126 => array ( 'title' => 'PHPSC Conference 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-06-3', 'published' => '2018-06-06T13:14:56-03:00', 'updated' => '2018-06-06T13:14:56-03:00', 'finalTeaserDate' => '2018-06-09', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-06-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://conf.phpsc.com.br', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://conf.phpsc.com.br', @@ -7098,37 +7117,37 @@ the upgrade ', 'intro' => '

    The Santa Catarina PHP user group (PHPSC) announce the 8th edition of the PHPSC Conference, taking place on June 8-9th, 2018 in Florianópolis, Brazil.

    This Conference aims to discuss best practices in PHP technology and related areas such as design, development techniques, database, open source, agile methodologies, design patterns, etc.

    … read full article

    ', ), - 127 => + 127 => array ( 'title' => 'Madison PHP Conference 2018', 'id' => 'http://php.net/archive/2018.php#id2018-06-06-2', 'published' => '2018-06-06T20:10:02+00:00', 'updated' => '2018-06-06T20:10:02+00:00', 'finalTeaserDate' => '2018-06-01', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-06-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.MadisonPHPConference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.MadisonPHPConference.com', @@ -7143,36 +7162,36 @@ the upgrade ', 'intro' => '

    Join us on Friday, November 2nd, 2018 for a full day of tutorials followed by multiple tracks of amazing talks on Saturday, November 3rd, 2018. Now in its sixth year, Madison PHP Conference in Madison, Wisconsin, USA focuses on PHP, related web technologies, and professional development - everything you need to energize your career. This event is organized by the locally-run Madison PHP user group and is designed to offer something for attendees at all skill levels. Madison PHP Conference 2018 will be two days of networking, learning, sharing, and great fun!

    The Call for Papers will be open until May 31st, 2018. Madison PHP Conference offers reimbursement for travel and accommodations. To view the full speaker package and to submit a talk, please visit: https://cfp.MadisonPHPConference.com.

    ', ), - 128 => + 128 => array ( 'title' => 'Southeast PHP Conference', 'id' => 'http://php.net/archive/2018.php#id2018-06-06-1', 'published' => '2018-06-06T11:02:22+00:00', 'finalTeaserDate' => '2018-06-06', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-06-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://southeastphp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://southeastphp.com', @@ -7187,34 +7206,34 @@ the upgrade ', 'intro' => '

    Southeast PHP is a two-day, regional PHP conference that brings the community together to learn and grow. We\'re bringing the community conference to Nashville, TN which hasn\'t had a conference since the old PHP Community Conference back in 2011! We will have two full days of amazing talks from members of our community talking about security, framework-less php, deployment and more!

    The conference is scheduled to run August 16th - August 17th, at the beautiful Hotel Preston. We welcome developers and enthusiasts of all skill levels to come join us while we discuss the latest trends and technologies in our industry. You can use the code `SOUTHEAST` to reserve a room today!

    … read full article

    ', ), - 129 => + 129 => array ( 'title' => 'PHP 7.1.18 Released', 'id' => 'http://php.net/archive/2018.php#id2018-05-25-1', 'published' => '2018-05-25T12:43:22+00:00', 'updated' => '2018-05-25T12:43:22+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-05-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-05-25-1', 'rel' => 'via', @@ -7243,34 +7262,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 130 => + 130 => array ( 'title' => 'PHP 7.2.6 Released', 'id' => 'http://php.net/archive/2018.php#id2018-05-24-1', 'published' => '2018-05-24T21:55:35+00:00', 'updated' => '2018-05-24T21:55:35+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-05-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-05-24-1', 'rel' => 'via', @@ -7292,37 +7311,37 @@ the upgrade 'intro' => '

    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.

    … read full article

    ', ), - 131 => + 131 => array ( 'title' => 'phpDay 2018', 'id' => 'http://php.net/archive/2018.php#id2018-05-02-1', 'published' => '2018-05-02T14:39:18+02:00', 'updated' => '2018-05-02T14:39:18+02:00', 'finalTeaserDate' => '2018-05-11', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-05-02-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2018.phpday.it/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2018.phpday.it/', @@ -7339,37 +7358,37 @@ the upgrade ', 'intro' => '

    The Italian PHP user group GrUSP is pleased to announce the 15th edition of phpday, taking place on May 11-12th, 2018 in Verona, Italy.

    It is the first historic Italian conference dedicated solely to PHP development, technologies and management. It is aimed to IT managers, developers and innovators. Each year it renews the opportunity to link to new business partners.

    … read full article

    ', ), - 132 => + 132 => array ( 'title' => 'ZendCon & OpenEnterprise 2018 - Call for Speakers', 'id' => 'http://php.net/archive/2018.php#id2018-04-29-1', 'published' => '2018-04-29T08:41:29+00:00', 'updated' => '2018-04-29T08:41:29+00:00', 'finalTeaserDate' => '2018-05-25', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-04-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.zendcon.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.zendcon.com', @@ -7384,34 +7403,34 @@ the upgrade ', 'intro' => '

    The Call For Papers for ZendCon & OpenEnterprise 2018 is now open!

    ZendCon & OpenEnterprise is the premier open source conference designed to teach and share practical experiences from the front lines of business critical and enterprise environments, giving you the opportunity to speak in front of technical business leaders, strategists, and developers seeking the best knowledge around the operational advantages of open source. This is your chance to tell everyone what you’ve learned and enrich our community of enterprise technology practitioners.

    … read full article

    ', ), - 133 => + 133 => array ( 'title' => 'PHP 5.6.36 Released', 'id' => 'http://php.net/archive/2018.php#id2018-04-26-4', 'published' => '2018-04-26T13:29:24-07:00', 'updated' => '2018-04-26T13:29:24-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-04-26-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-04-26-4', 'rel' => 'via', @@ -7440,34 +7459,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 134 => + 134 => array ( 'title' => 'PHP 7.1.17 Released', 'id' => 'http://php.net/archive/2018.php#id2018-04-26-3', 'published' => '2018-04-26T16:11:23+00:00', 'updated' => '2018-04-26T16:11:23+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-04-26-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-04-26-3', 'rel' => 'via', @@ -7496,34 +7515,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 135 => + 135 => array ( 'title' => 'PHP 7.0.30 Released', 'id' => 'http://php.net/archive/2018.php#id2018-04-26-2', 'published' => '2018-04-26T13:00:00+01:00', 'updated' => '2018-04-26T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-04-26-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-04-26-2', 'rel' => 'via', @@ -7552,34 +7571,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 136 => + 136 => array ( 'title' => 'PHP 7.2.5 Released', 'id' => 'http://php.net/archive/2018.php#id2018-04-26-1', 'published' => '2018-04-26T09:12:18+00:00', 'updated' => '2018-04-26T09:12:18+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-04-26-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-04-26-1', 'rel' => 'via', @@ -7601,37 +7620,37 @@ the upgrade 'intro' => '

    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.

    … read full article

    ', ), - 137 => + 137 => array ( 'title' => 'Mid-Atlantic Developer Conference', 'id' => 'http://php.net/archive/2018.php#id2018-04-25-1', 'published' => '2018-04-25T19:31:27+00:00', 'updated' => '2018-04-25T19:31:27+00:00', 'finalTeaserDate' => '2018-07-13', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-04-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.middevcon.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.middevcon.com/', @@ -7650,37 +7669,37 @@ the upgrade ', 'intro' => '

    We are excited to announce the schedule for the 1st annual Mid-Atlantic Developer Conference taking place this summer on July 13-14 near Baltimore, MD.

    This is a brand new polyglot developer event designed to bring together programmers from the region for two full days of learning. We\'ve put together an electic set of sessions and workshops for you. You\'ll recognize some names from the PHP community, as well as see brand new speakers at this event. We are including sessions on Caching, Hiring, Polymer, Bots, Security, Encryption, SVG, WebAssembly, GraphQL, Accessibility, Mentorship, Augmented Reality, Testing, AWS, Docker, Troubleshooting, Gherkin, Ethereum, Health and much more!

    … read full article

    ', ), - 138 => + 138 => array ( 'title' => 'International PHP Conference 2018 - Fall Edition', 'id' => 'http://php.net/archive/2018.php#id2018-04-23-1', 'published' => '2018-04-23T09:44:54-04:00', 'updated' => '2018-04-23T09:44:54-04:00', 'finalTeaserDate' => '2018-10-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-04-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -7719,37 +7738,37 @@ the upgrade ', 'intro' => '

    The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.

    All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the International JavaScript Conference taking place at the same time.

    … read full article

    ', ), - 139 => + 139 => array ( 'title' => 'CoderCruise 2018 - The Bahamas!', 'id' => 'http://php.net/archive/2018.php#id2018-04-11-1', 'published' => '2018-04-11T13:40:58+00:00', 'updated' => '2018-04-11T13:40:58+00:00', 'finalTeaserDate' => '2018-08-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-04-11-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.codercruise.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.codercruise.com/', @@ -7766,37 +7785,37 @@ the upgrade ', 'intro' => '

    The team behind the original php[cruise] is once again bringing a conference to the open seas. CoderCruise 2018 is be a premiere conference experience, giving you have an exclusive connection to your fellow community members. It is setting sail from Ft. Lauderdale on August 30th for an extended weekend 5-day cruise that also visits Half Moon Cay and Nassau!

    This year we\'ve managed to negotiate a much cheaper overall rate for our participants, starting as low as $410 per person (including the 5-day cruise, food, drink, the conference, and all taxes and fees wrapped into one package!)

    … read full article

    ', ), - 140 => + 140 => array ( 'title' => 'PHP Developer Days 2018 • Dresden, Germany', 'id' => 'http://php.net/archive/2018.php#id2018-04-09-1', 'published' => '2018-04-09T16:29:11+00:00', 'updated' => '2018-04-09T16:29:11+00:00', 'finalTeaserDate' => '2018-09-21', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-04-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2018.phpdd.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2018.phpdd.org', @@ -7812,37 +7831,37 @@ the upgrade ', 'intro' => '

    The 4th annual PHP community event – September 21st & 22nd in Dresden, Germany

    The PHP USERGROUP DRESDEN e.V. is proud to host an international 2-day event with workshops, a single track conference and awesome side events.

    … read full article

    ', ), - 141 => + 141 => array ( 'title' => 'PHPConf.Asia 2018 - Call for Speakers', 'id' => 'http://php.net/archive/2018.php#id2018-04-08-1', 'published' => '2018-04-08T19:09:50+00:00', 'updated' => '2018-04-08T19:09:50+00:00', 'finalTeaserDate' => '2018-06-02', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-04-08-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2018.phpconf.asia', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2018.phpconf.asia', @@ -7858,34 +7877,34 @@ the upgrade ', 'intro' => '

    Announcing PHPConf.Asia 2018 - The Pan-Asian PHP Conference - CFP Opens Now

    The third pan-Asian PHP conference will take place between 26th to 29th September 2018 in Singapore - the Garden City of the East! This is a single track, 2 days Conference (27th to 28th September 2018). Followed by 1 day of Tutorials on 29th September 2018.

    … read full article

    ', ), - 142 => + 142 => array ( 'title' => 'PHP 7.1.16 Released', 'id' => 'http://php.net/archive/2018.php#id2018-03-30-2', 'published' => '2018-03-30T05:35:50+00:00', 'updated' => '2018-03-30T05:35:50+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-03-30-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-30-2', 'rel' => 'via', @@ -7914,37 +7933,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 143 => + 143 => array ( 'title' => 'The 6th Annual China PHP Conference', 'id' => 'http://php.net/archive/2018.php#id2018-03-30-1', 'published' => '2018-03-30T10:00:21+00:00', 'updated' => '2018-03-30T10:00:21+00:00', 'finalTeaserDate' => '2018-05-19', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-03-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-30-1', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpconchina.com', @@ -7963,34 +7982,34 @@ the upgrade ', 'intro' => '

    The 6th Annual China PHP Conference – May 19 to 20, Shanghai

    We will be hosting a 2-day event filled with high quality, technical sessions about PHP Core, PHP High Performance, PHP Engineering, AI and Blockchain more.

    … read full article

    ', ), - 144 => + 144 => array ( 'title' => 'PHP 5.6.35 Released', 'id' => 'http://php.net/archive/2018.php#id2018-03-29-3', 'published' => '2018-03-29T16:26:07-07:00', 'updated' => '2018-03-29T16:26:07-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-03-29-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-29-3', 'rel' => 'via', @@ -8019,34 +8038,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 145 => + 145 => array ( 'title' => 'PHP 7.2.4 Released', 'id' => 'http://php.net/archive/2018.php#id2018-03-29-2', 'published' => '2018-03-29T10:58:52+00:00', 'updated' => '2018-03-29T10:58:52+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-03-29-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-29-2', 'rel' => 'via', @@ -8068,34 +8087,34 @@ the upgrade 'intro' => '

    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.

    … read full article

    ', ), - 146 => + 146 => array ( 'title' => 'PHP 7.0.29 Released', 'id' => 'http://php.net/archive/2018.php#id2018-03-29-1', 'published' => '2018-03-29T13:00:00+01:00', 'updated' => '2018-03-29T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-03-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-29-1', 'rel' => 'via', @@ -8124,37 +8143,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 147 => + 147 => array ( 'title' => 'International PHP Conference 2018 - Call for Papers', 'id' => 'http://php.net/archive/2018.php#id2018-03-23-1', 'published' => '2018-03-23T15:44:54-04:00', 'updated' => '2018-03-23T15:44:54-04:00', 'finalTeaserDate' => '2018-04-18', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-03-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://callforpapers.sandsmedia.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://callforpapers.sandsmedia.com', @@ -8192,37 +8211,37 @@ the upgrade 'intro' => '

    IPC Spring will take place in June 4th to 8th in Berlin and we are looking very much forward to it!
    But at the same time we are already preparing for the fall edition of IPC 2018, that is going to take place together with the international JavaScript Conference again. The conferenceís date is October 15th to 19th and the location will be Munich again.

    The International PHP Conference is the worldís first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. Internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies.

    … read full article

    ', ), - 148 => + 148 => array ( 'title' => 'Darkmira Tour PHP 2018', 'id' => 'http://php.net/archive/2018.php#id2018-03-13-1', 'published' => '2018-03-13T11:35:08-03:00', 'updated' => '2018-03-13T11:35:08-03:00', 'finalTeaserDate' => '2018-04-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-03-13-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://php.darkmiratour.rocks/2018', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://php.darkmiratour.rocks/2018', @@ -8238,34 +8257,34 @@ the upgrade ', 'intro' => '

    With a lot of PHP\'s Rockstars, Darkmira Tour PHP 2018 is a conference focused on security and quality in PHP\'s ecosystems, in Brazil\'s capital in April 14-15. During the two days of Darkmira, you can interact with all the 400 participants along the coffee breaks, demonstrations and networking, and learn a lot about the PHP\'s ecosystems!

    For more information, visit https://php.darkmiratour.rocks/2018.

    ', ), - 149 => + 149 => array ( 'title' => 'PHP 7.1.15 Released', 'id' => 'http://php.net/archive/2018.php#id2018-03-02-1', 'published' => '2018-03-02T05:54:19+00:00', 'updated' => '2018-03-02T05:54:19+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-03-02-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-02-1', 'rel' => 'via', @@ -8294,37 +8313,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 150 => + 150 => array ( 'title' => 'PHPDetroit Conference 2018 - Call for Papers', 'id' => 'http://php.net/archive/2018.php#id2018-03-01-5', 'published' => '2018-03-01T19:09:18+00:00', 'updated' => '2018-03-01T19:09:18+00:00', 'finalTeaserDate' => '2018-03-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-03-01-5', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cfp.phpdetroit.io', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cfp.phpdetroit.io', @@ -8340,37 +8359,37 @@ the upgrade ', 'intro' => '

    We\'re happy to announce that the Call for Papers has commenced for PHPDetroit 2018. We will be accepting submissions through March 22nd, 2018.

    The conference will consist of a tutorial day featuring 4 separate 3-4 hour tutorials, 2 in the morning, and 2 in the afternoon, followed by 2 days of 1 hour sessions. We\'re also having an opening keynote on the first conference day, and a closing keynote on the last day. We\'re inviting world-class PHP speakers from around the world to submit their best talks to put together an event that will forever be remembered.

    … read full article

    ', ), - 151 => + 151 => array ( 'title' => 'PHPDetroit Conference 2018', 'id' => 'http://php.net/archive/2018.php#id2018-03-01-4', 'published' => '2018-03-01T18:53:16+00:00', 'updated' => '2018-03-01T18:53:16+00:00', 'finalTeaserDate' => '2018-07-26', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-03-01-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpdetroit.io', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpdetroit.io', @@ -8385,34 +8404,34 @@ the upgrade ', 'intro' => '

    PHPDetroit is a three-day, regional PHP conference that brings the community together to learn and grow. We\'re preceding the conference with a 2 track tutorial day that will feature 4 sessions covering various topics. We will also be running an UnCon alongside the main tracks on Friday and Saturday, where attendees can share unscheduled talks.

    The conference is scheduled to run July 26th - July 28th, at the beautiful Detroit Marriott Livonia. We welcome developers and enthusiasts of all skill levels to come join us while we discuss the latest trends and technologies in our industry.

    … read full article

    ', ), - 152 => + 152 => array ( 'title' => 'PHP 5.6.34 Released', 'id' => 'http://php.net/archive/2018.php#id2018-03-01-3', 'published' => '2018-03-01T15:48:47-08:00', 'updated' => '2018-03-01T15:48:47-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-03-01-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-01-3', 'rel' => 'via', @@ -8441,34 +8460,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 153 => + 153 => array ( 'title' => 'PHP 7.2.3 Released', 'id' => 'http://php.net/archive/2018.php#id2018-03-01-2', 'published' => '2018-03-01T19:43:30+00:00', 'updated' => '2018-03-01T19:43:30+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-03-01-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-01-2', 'rel' => 'via', @@ -8490,34 +8509,34 @@ the upgrade 'intro' => '

    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.

    … read full article

    ', ), - 154 => + 154 => array ( 'title' => 'PHP 7.0.28 Released', 'id' => 'http://php.net/archive/2018.php#id2018-03-01-1', 'published' => '2018-03-01T11:45:00+01:00', 'updated' => '2018-03-01T11:45:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-03-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-03-01-1', 'rel' => 'via', @@ -8546,37 +8565,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 155 => + 155 => array ( 'title' => 'CakeFest 2018 Nashville, The Official CakePHP Conference', 'id' => 'http://php.net/archive/2018.php#id2018-02-26-1', 'published' => '2018-02-26T12:21:11+00:00', 'updated' => '2018-02-26T12:21:11+00:00', 'finalTeaserDate' => '2018-06-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-02-26-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cakefest.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cakefest.org', @@ -8620,37 +8639,37 @@ the upgrade will be an event not to miss.

    … read full article

    ', ), - 156 => + 156 => array ( 'title' => 'Northeast PHP 2018 Boston - Call for Speakers', 'id' => 'http://php.net/archive/2018.php#id2018-02-22-1', 'published' => '2018-02-22T22:41:47-05:00', 'updated' => '2018-02-22T22:41:47-05:00', 'finalTeaserDate' => '2018-04-11', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-02-22-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://cfp.northeastphp.org/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://cfp.northeastphp.org/', @@ -8663,37 +8682,37 @@ the upgrade ', 'intro' => '

    The team at Northeast PHP is excited to annouce that we\'re returning to Boston, September 19-21 2018, and the Call for Speakers is now open until April 11.

    We\'re pleased to announce our conference, the 2018 Web Development and UX Conference by Northeast PHP, where community members come together to learn and share information about the latest trends and technologies in professional PHP development, User Experience design, and Web Technologies.

    … read full article

    ', ), - 157 => + 157 => array ( 'title' => 'Mid-Atlantic Developer Conference - Call for Speakers', 'id' => 'http://php.net/archive/2018.php#id2018-02-16-1', 'published' => '2018-02-16T13:07:48+00:00', 'updated' => '2018-02-16T13:07:48+00:00', 'finalTeaserDate' => '2018-03-31', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-02-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.middevcon.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.middevcon.com/', @@ -8710,37 +8729,37 @@ the upgrade ', 'intro' => '

    Mid-Atlantic Dev Con is a brand new polyglot event taking place July 13th and 14th, 2018 near Baltimore, MD. It is designed to bring together programmers from the region for two full days of learning from each other and building a stronger regional community. We are currently hosting an open Call for Speakers, which will end on March 31st at Midnight UTC!

    We are looking for a broad range of submissions covering a wide range of topics that are of interest to today’s computer developers. This means not only programming topics, such as various sessions on PHP, but also broader topics related to development such as: deployment, DevOps, databases, caching, performance, scalability, APIs, etc — We also are looking for non-technical proposals that will appeal to a tech audience: open source, leadership, mentoring, health, work-life balance, management, customer service, and more!

    … read full article

    ', ), - 158 => + 158 => array ( 'title' => 'ConFoo: THE web development conference you don’t want to miss!', 'id' => 'http://php.net/archive/2018.php#id2018-02-14-1', 'published' => '2018-02-14T17:46:24+00:00', 'updated' => '2018-02-14T17:46:24+00:00', 'finalTeaserDate' => '2018-03-07', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-02-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://confoo.ca/en/yul2018', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://confoo.ca/en/yul2018', @@ -8768,37 +8787,37 @@ the upgrade ', 'intro' => '

    ConFoo is a multi-technology conference specifically crafted for web developers. With 150+ presentations by local and international speakers, this conference offers outstanding diversity of content to expand your knowledge, increase your productivity and boost your development skills.

    See you in Montreal on March 7-8-9!

    … read full article

    ', ), - 159 => + 159 => array ( 'title' => 'php[tek] 2018', 'id' => 'http://php.net/archive/2018.php#id2018-02-07-2', 'published' => '2018-02-07T17:27:41+00:00', 'updated' => '2018-02-07T17:27:41+00:00', 'finalTeaserDate' => '2018-05-31', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-02-07-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://tek.phparch.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://tek.phparch.com/', @@ -8824,37 +8843,37 @@ the upgrade ', 'intro' => '

    We are excited to announce the full schedule for the 13th annual php[tek], the premier PHP conference experience. The 2018 edition will be better than ever, now taking place in Downtown Atlanta, GA. The main conference is two days: May 31 and June 1, while we will have a workshop day on May 30, and a day of Training Classes on May 29th.

    There is an amazing list of sessions that have been put together for you, including:

    … read full article

    ', ), - 160 => + 160 => array ( 'title' => 'WavePHP 2018 - Call for Speakers', 'id' => 'http://php.net/archive/2018.php#id2018-02-06-1', 'published' => '2018-02-06T17:20:49+00:00', 'updated' => '2018-02-06T17:20:49+00:00', 'finalTeaserDate' => '2018-02-28', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-02-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-02-06-1', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.wavephp.com/', @@ -8871,37 +8890,37 @@ the upgrade ', 'intro' => '', ), - 161 => + 161 => array ( 'title' => 'PHP Experience 2018', 'id' => 'http://php.net/archive/2018.php#id2018-02-01-3', 'published' => '2018-02-01T10:20:29-02:00', 'updated' => '2018-02-01T10:20:29-02:00', 'finalTeaserDate' => '2018-03-05', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-02-01-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://eventos.imasters.com.br/phpexperience/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://eventos.imasters.com.br/phpexperience/', @@ -8918,34 +8937,34 @@ the upgrade ', 'intro' => '

    With big names from PHP community, the sixth edition of PHP Experience brings together about 1200 PHP developers in São Paulo/SP - Brazil from March 05 to 06, 2018.

    In two days of content we will have: international keynotes, three tracks, in addition to several actions to exchange experiences and networking.

    … read full article

    ', ), - 162 => + 162 => array ( 'title' => 'PHP 7.1.14 Released', 'id' => 'http://php.net/archive/2018.php#id2018-02-01-2', 'published' => '2018-02-01T14:54:13+00:00', 'updated' => '2018-02-01T14:54:13+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-02-01-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-02-01-2', 'rel' => 'via', @@ -8968,29 +8987,29 @@ the upgrade 7.1.14. This is a bugfix release. Several bugs were fixed in this release.

    All PHP 7.1 users are encouraged to upgrade to this version.

    … read full article

    ', ), - 163 => + 163 => array ( 'title' => 'PHP 7.2.2 Released', 'id' => 'http://php.net/archive/2018.php#id2018-02-01-1', 'published' => '2018-02-01T09:12:34+00:00', 'updated' => '2018-02-01T09:12:34+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-02-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-02-01-1', 'rel' => 'via', @@ -9012,37 +9031,37 @@ the upgrade 'intro' => '

    The PHP development team announces the immediate availability of PHP 7.2.2. This is a bugfix release, with several bug fixes included.

    All PHP 7.2 users are encouraged to upgrade to this version.

    … read full article

    ', ), - 164 => + 164 => array ( 'title' => 'CoderCruise 2018 - Call for Speakers', 'id' => 'http://php.net/archive/2018.php#id2018-01-31-1', 'published' => '2018-01-31T21:00:37+00:00', 'updated' => '2018-01-31T21:00:37+00:00', 'finalTeaserDate' => '2018-02-28', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-01-31-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.codercruise.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.codercruise.com/', @@ -9055,37 +9074,37 @@ the upgrade ', 'intro' => '
    ', ), - 165 => + 165 => array ( 'title' => 'Dutch PHP Conference 2018 – Call for Papers', 'id' => 'http://php.net/archive/2018.php#id2018-01-09-2', 'published' => '2018-01-09T13:35:18+00:00', 'updated' => '2018-01-09T13:35:18+00:00', 'finalTeaserDate' => '2018-01-28', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-01-09-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cfp.phpconference.nl/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cfp.phpconference.nl/', @@ -9102,37 +9121,37 @@ the upgrade ', 'intro' => '
    ', ), - 166 => + 166 => array ( 'title' => 'Dutch PHP Conference 2018', 'id' => 'http://php.net/archive/2018.php#id2018-01-09-1', 'published' => '2018-01-09T13:30:36+00:00', 'updated' => '2018-01-09T13:30:36+00:00', 'finalTeaserDate' => '2018-06-07', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2018-01-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.phpconference.nl/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.phpconference.nl/', @@ -9151,34 +9170,34 @@ the upgrade ', 'intro' => '
    ', ), - 167 => + 167 => array ( 'title' => 'PHP 5.6.33 Released', 'id' => 'http://php.net/archive/2018.php#id2018-01-04-4', 'published' => '2018-01-04T12:21:10-08:00', 'updated' => '2018-01-04T12:21:10-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-01-04-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-01-04-4', 'rel' => 'via', @@ -9207,34 +9226,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 168 => + 168 => array ( 'title' => 'PHP 7.1.13 Released', 'id' => 'http://php.net/archive/2018.php#id2018-01-04-3', 'published' => '2018-01-04T15:27:53+00:00', 'updated' => '2018-01-04T15:27:53+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-01-04-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-01-04-3', 'rel' => 'via', @@ -9257,34 +9276,34 @@ the upgrade 7.1.13. This is a security release. Several security bugs were fixed in this release.

    All PHP 7.1 users are encouraged to upgrade to this version.

    … read full article

    ', ), - 169 => + 169 => array ( 'title' => 'PHP 7.2.1 Released', 'id' => 'http://php.net/archive/2018.php#id2018-01-04-2', 'published' => '2018-01-04T15:26:15+00:00', 'updated' => '2018-01-04T15:26:15+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-01-04-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-01-04-2', 'rel' => 'via', @@ -9308,34 +9327,34 @@ the upgrade 7.2.1. This is a security release. Several security bugs were fixed in this release.

    All PHP 7.2 users are encouraged to upgrade to this version.

    … read full article

    ', ), - 170 => + 170 => array ( 'title' => 'PHP 7.0.27 Released', 'id' => 'http://php.net/archive/2018.php#id2018-01-04-1', 'published' => '2018-01-04T15:00:00+01:00', 'updated' => '2018-01-04T15:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2018-01-04-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2018.php#id2018-01-04-1', 'rel' => 'via', @@ -9373,37 +9392,37 @@ the upgrade is a good time to plan the migration to PHP 7.1 or 7.2.

    … read full article

    ', ), - 171 => + 171 => array ( 'title' => 'PHP Serbia Conference 2018', 'id' => 'http://php.net/archive/2017.php#id2017-12-23-1', 'published' => '2017-12-23T21:54:52+01:00', 'updated' => '2017-12-23T21:54:52+01:00', 'finalTeaserDate' => '2018-05-25', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-12-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://conf2018.phpsrbija.rs', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://conf2018.phpsrbija.rs', @@ -9420,34 +9439,34 @@ the upgrade ', 'intro' => '

    "PHP Srbija" is happy to announce a brand new PHP Serbia Conference 2018!

    This year\'s edition features Workshop Day prior to the main 2-day event of awesome talks on PHP and related technologies presented by best speakers from all over the globe.

    … read full article

    ', ), - 172 => + 172 => array ( 'title' => 'PHP 7.2.0 Released', 'id' => 'http://php.net/archive/2017.php#id2017-11-30-1', 'published' => '2017-11-30T10:04:21+00:00', 'updated' => '2017-11-30T10:04:21+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-11-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-11-30-1', 'rel' => 'via', @@ -9485,34 +9504,34 @@ the upgrade 'intro' => '

    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

    … read full article

    ', ), - 173 => + 173 => array ( 'title' => 'PHP 7.1.12 Released', 'id' => 'http://php.net/archive/2017.php#id2017-11-24-1', 'published' => '2017-11-24T06:02:50+00:00', 'updated' => '2017-11-24T06:02:50+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-11-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-11-24-1', 'rel' => 'via', @@ -9541,34 +9560,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 174 => + 174 => array ( 'title' => 'PHP 7.0.26 Released', 'id' => 'http://php.net/archive/2017.php#id2017-11-23-2', 'published' => '2017-11-23T13:00:00+01:00', 'updated' => '2017-11-23T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-11-23-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-11-23-2', 'rel' => 'via', @@ -9597,37 +9616,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 175 => + 175 => array ( 'title' => 'PHPKonf Istanbul PHP Conference 2018 - Call for Papers', 'id' => 'http://php.net/archive/2017.php#id2017-11-22-2', 'published' => '2017-11-22T09:00:00+00:00', 'updated' => '2017-11-22T09:00:00+00:00', 'finalTeaserDate' => '2018-01-31', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-11-22-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cfp.phpkonf.org/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cfp.phpkonf.org/', @@ -9646,37 +9665,37 @@ the upgrade ', 'intro' => '

    PHPKonf 2018 is an annual PHP oriented conference in Istanbul, Turkey and will take place on Sunday, 20th of May, 2018.

    The call for papers for the PHPKonf 2018 Istanbul PHP conference is open! If you have a burning desire to hold forth about PHP, DevOps, databases, JavaScript, or any other web development topics, we want to see your proposals. Call for Papers is open only from November 20, 2017 to January 31, 2018, so hurry. An added benefit: we will cover your travel and hotel.

    … read full article

    ', ), - 176 => + 176 => array ( 'title' => 'International PHP Conference 2018 - spring edition', 'id' => 'http://php.net/archive/2017.php#id2017-11-22-1', 'published' => '2017-11-22T09:54:24+01:00', 'updated' => '2017-11-22T09:54:24+01:00', 'finalTeaserDate' => '2018-06-04', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-11-22-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -9715,37 +9734,37 @@ the upgrade ', 'intro' => '

    The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.

    All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the webinale \'18 taking place at the same time.

    … read full article

    ', ), - 177 => + 177 => array ( 'title' => 'php[tek] 2018 : Call for Speakers', 'id' => 'http://php.net/archive/2017.php#id2017-11-20-1', 'published' => '2017-11-20T21:55:38+00:00', 'updated' => '2017-11-20T21:55:38+00:00', 'finalTeaserDate' => '2017-12-29', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-11-20-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://tek.phparch.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://tek.phparch.com/', @@ -9771,37 +9790,37 @@ the upgrade ', 'intro' => '', ), - 178 => + 178 => array ( 'title' => 'Longhorn PHP 2018', 'id' => 'http://php.net/archive/2017.php#id2017-11-16-1', 'published' => '2017-11-16T04:42:00+00:00', 'updated' => '2017-11-16T04:42:00+00:00', 'finalTeaserDate' => '2018-04-19', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-11-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.longhornphp.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.longhornphp.com/', @@ -9819,34 +9838,34 @@ the upgrade ', 'intro' => '

    The Austin PHP Meetup, the longest-running tech meetup in Texas’ capital, is excited to announce a brand-new PHP conference: Longhorn PHP. 2018 will be the inaugural year for Longhorn PHP, which follows in the tradition of the now-retired Lone Star PHP conference in Dallas.

    At Longhorn PHP you’ll get to learn from and alongside a diverse group of developers from all over the region, country, and even the globe. The conference will consist of one tutorial day with in-depth workshops, and two main conference days with multiple tracks of traditional 1 hour sessions. Register now to take the next step toward leveling up your development career!

    … read full article

    ', ), - 179 => + 179 => array ( 'title' => 'PHP 7.2.0RC6 Released', 'id' => 'http://php.net/archive/2017.php#id2017-11-09-1', 'published' => '2017-11-09T13:57:49+00:00', 'updated' => '2017-11-09T13:57:49+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-11-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-11-09-1', 'rel' => 'via', @@ -9891,37 +9910,37 @@ the upgrade and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 180 => + 180 => array ( 'title' => 'SunshinePHP 2018 Conference', 'id' => 'http://php.net/archive/2017.php#id2017-11-08-1', 'published' => '2017-11-08T00:00:01+00:00', 'updated' => '2017-11-15T09:40:00+00:00', 'finalTeaserDate' => '2018-12-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-11-08-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://sunshinephp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://sunshinephp.com', @@ -9955,37 +9974,37 @@ the upgrade ', 'intro' => '

    In February 2018 come to Miami, Florida and escape the cold to learn more about PHP and speak with other developers, like you, to see what others are doing. The SunshinePHP 2018 speaker list has been announced, and we\'ve assembled a great line-up with the most current PHP related topics for you.

    Topics include:

    … read full article

    ', ), - 181 => + 181 => array ( 'title' => 'International PHP Conference Spring Edition 2018 - Call for Papers', 'id' => 'http://php.net/archive/2017.php#id2017-11-06-1', 'published' => '2017-11-06T11:44:54-04:00', 'updated' => '2017-11-06T11:44:54-04:00', 'finalTeaserDate' => '2017-11-06', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-11-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://callforpapers.sandsmedia.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://callforpapers.sandsmedia.com', @@ -10017,34 +10036,34 @@ the upgrade ', 'intro' => '
    ', ), - 182 => + 182 => array ( 'title' => 'PHP 7.1.11 Released', 'id' => 'http://php.net/archive/2017.php#id2017-10-27-1', 'published' => '2017-10-27T05:52:49+00:00', 'updated' => '2017-10-27T05:52:49+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-10-27-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-10-27-1', 'rel' => 'via', @@ -10073,34 +10092,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 183 => + 183 => array ( 'title' => 'PHP 5.6.32 Released', 'id' => 'http://php.net/archive/2017.php#id2017-10-26-3', 'published' => '2017-10-26T13:32:22-07:00', 'updated' => '2017-10-26T13:32:22-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-10-26-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-10-26-3', 'rel' => 'via', @@ -10129,34 +10148,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 184 => + 184 => array ( 'title' => 'PHP 7.2.0 Release Candidate 5 Released', 'id' => 'http://php.net/archive/2017.php#id2017-10-26-2', 'published' => '2017-10-26T16:26:36+00:00', 'updated' => '2017-10-26T16:26:36+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-10-26-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-10-26-2', 'rel' => 'via', @@ -10203,34 +10222,34 @@ the upgrade and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 185 => + 185 => array ( 'title' => 'PHP 7.0.25 Released', 'id' => 'http://php.net/archive/2017.php#id2017-10-26-1', 'published' => '2017-10-26T13:00:00+01:00', 'updated' => '2017-10-26T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-10-26-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-10-26-1', 'rel' => 'via', @@ -10259,37 +10278,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 186 => + 186 => array ( 'title' => 'ScotlandPHP', 'id' => 'http://php.net/archive/2017.php#id2017-10-19-1', 'published' => '2017-10-19T17:46:40+00:00', 'updated' => '2017-10-19T17:46:40+00:00', 'finalTeaserDate' => '2017-11-04', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-10-19-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://conference.scotlandphp.co.uk/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://conference.scotlandphp.co.uk/', @@ -10327,29 +10346,29 @@ the upgrade ', 'intro' => '

    Scotland\'s Original and Best PHP Conference

    Saturday 4th November 2017, EICC, Edinburgh

    … read full article

    ', ), - 187 => + 187 => array ( 'title' => 'PHP 7.2.0 Release Candidate 4 Released', 'id' => 'http://php.net/archive/2017.php#id2017-10-12-1', 'published' => '2017-10-12T11:46:49+02:00', 'updated' => '2017-10-12T11:46:49+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-10-12-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-10-12-1', 'rel' => 'via', @@ -10396,34 +10415,34 @@ the upgrade and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 188 => + 188 => array ( 'title' => 'PHP 7.1.10 Release Announcement', 'id' => 'http://php.net/archive/2017.php#id2017-09-29-1', 'published' => '2017-09-29T08:10:14+00:00', 'updated' => '2017-09-29T08:10:14+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-29-1', 'rel' => 'via', @@ -10452,29 +10471,29 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 189 => + 189 => array ( 'title' => 'PHP 7.2.0 Release Candidate 3 Released', 'id' => 'http://php.net/archive/2017.php#id2017-09-28-2', 'published' => '2017-09-28T12:58:56+02:00', 'updated' => '2017-09-28T12:58:56+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-28-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-28-2', 'rel' => 'via', @@ -10521,34 +10540,34 @@ the upgrade and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 190 => + 190 => array ( 'title' => 'PHP 7.0.24 Released', 'id' => 'http://php.net/archive/2017.php#id2017-09-28-2', 'published' => '2017-09-28T13:00:00+01:00', 'updated' => '2017-09-28T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-28-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-28-2', 'rel' => 'via', @@ -10577,34 +10596,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 191 => + 191 => array ( 'title' => 'PHP 7.2.0 Release Candidate 2 Released', 'id' => 'http://php.net/archive/2017.php#id2017-09-14-1', 'published' => '2017-09-14T16:07:16+00:00', 'updated' => '2017-09-14T16:07:16+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-14-1', 'rel' => 'via', @@ -10651,37 +10670,37 @@ the upgrade and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 192 => + 192 => array ( 'title' => 'PHP North West 2017 (PHPNW17)', 'id' => 'http://php.net/archive/2017.php#id2017-09-13-1', 'published' => '2017-09-13T19:00:00+00:00', 'updated' => '2017-09-13T19:00:00+00:00', 'finalTeaserDate' => '2017-09-29', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-09-13-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://conference.phpnw.org.uk/phpnw17/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://conference.phpnw.org.uk/phpnw17/', @@ -10698,34 +10717,34 @@ the upgrade ', 'intro' => '

    One of the largest and most popular PHP Conferences in Europe, PHPNW17 is a long-running community-based conference, held in Manchester, UK and run on a not-for-profit basis. It is overwhelmingly supported by industry leaders, code experts, web developers and businesses across the world. This year, we are celebrating our 10th conference year, and we aim to be bigger and better than ever before.

    The PHPNW Conference has a reputation within the PHP community as a "go to" conference due to its inspiring content, friendly atmosphere and networking opportunities. Our delegates come to our Conference because they are specifically interested in new technologies and ways to improve their skills through our tutorials and talks, as well as the awesome (unofficial) corridor track!

    … read full article

    ', ), - 193 => + 193 => array ( 'title' => 'PHP 7.1.9 Released', 'id' => 'http://php.net/archive/2017.php#id2017-09-01-1', 'published' => '2017-09-01T06:31:35+00:00', 'updated' => '2017-09-01T06:31:35+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-09-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-09-01-1', 'rel' => 'via', @@ -10754,29 +10773,29 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 194 => + 194 => array ( 'title' => 'PHP 7.2.0 Release Candidate 1 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-31-1', 'published' => '2017-08-31T10:53:58+02:00', 'updated' => '2017-08-31T10:53:58+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-31-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-31-1', 'rel' => 'via', @@ -10823,34 +10842,34 @@ the upgrade and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 195 => + 195 => array ( 'title' => 'PHP 7.0.23 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-31-2', 'published' => '2017-08-31T13:00:00+01:00', 'updated' => '2017-08-31T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-31-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-31-2', 'rel' => 'via', @@ -10879,29 +10898,29 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 196 => + 196 => array ( 'title' => 'PHP 7.2.0 Beta 3 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-17-1', 'published' => '2017-08-17T10:17:44+02:00', 'updated' => '2017-08-17T10:17:44+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-17-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-17-1', 'rel' => 'via', @@ -10948,37 +10967,37 @@ the upgrade bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 197 => + 197 => array ( 'title' => 'SunshinePHP 2018 CFP Started', 'id' => 'http://php.net/archive/2017.php#id2017-08-16-1', 'published' => '2017-08-16T00:00:01+00:00', 'updated' => '2017-08-16T12:23:00+00:00', 'finalTeaserDate' => '2017-09-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-08-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://sunshinephp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://sunshinephp.com', @@ -10995,37 +11014,37 @@ the upgrade ', 'intro' => '

    We are happy to announce the CFP for SunshinePHP 2018 has launched at https://cfp.sunshinephp.com where we will accept talk submissions until September 30th, 2017.

    SunshinePHP hit it\'s 6th year and will happen from February 8th to 10th, 2018 in sunny Miami, Florida. As one of the largest community conferences in the U.S. there is no doubt the schedule will be amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.

    … read full article

    ', ), - 198 => + 198 => array ( 'title' => 'Midwest PHP Call for Papers', 'id' => 'http://php.net/archive/2017.php#id2017-08-13-1', 'published' => '2017-08-13T19:56:28+00:00', 'updated' => '2017-08-13T19:56:28+00:00', 'finalTeaserDate' => '2017-11-20', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-08-13-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2018.midwestphp.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2018.midwestphp.org', @@ -11051,34 +11070,34 @@ the upgrade 'intro' => '

    The Minnesota PHP User Group is proud to announce that the Call for Papers for the Midwest PHP 2018 Conference is now open through November 20, 2017. Abstracts can be submitted to https://cfp.midwestphp.org. Whether you are a seasoned speaker or someone just looking to speak at your first conference, we want to see your submissions.

    This year\'s speaker package includes:

    … read full article

    ', ), - 199 => + 199 => array ( 'title' => 'PHP 7.1.8 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-03-3', 'published' => '2017-08-03T14:35:42+00:00', 'updated' => '2017-08-03T14:35:42+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-03-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-03-3', 'rel' => 'via', @@ -11107,34 +11126,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 200 => + 200 => array ( 'title' => 'PHP 7.2.0 Beta 2 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-03-2', 'published' => '2017-08-03T12:48:35+00:00', 'updated' => '2017-08-03T12:48:35+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-03-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-03-2', 'rel' => 'via', @@ -11181,34 +11200,34 @@ the upgrade bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 201 => + 201 => array ( 'title' => 'PHP 7.0.22 Released', 'id' => 'http://php.net/archive/2017.php#id2017-08-03-1', 'published' => '2017-08-03T13:00:00+01:00', 'updated' => '2017-08-03T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-08-03-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-08-03-1', 'rel' => 'via', @@ -11237,37 +11256,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 202 => + 202 => array ( 'title' => 'Calling all proposals for PHPBenelux Conference 2018', 'id' => 'http://php.net/archive/2017.php#id2017-07-31-1', 'published' => '2017-07-31T11:25:07+02:00', 'updated' => '2017-07-31T11:25:07+02:00', 'finalTeaserDate' => '2017-10-02', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-07-31-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cfp.phpbenelux.eu/?utm_source=php_net&utm_medium=phpbnl18_logo&utm_campaign=phpbnl18&utm_term=php%2Bconference%2Bcfp&utm_content=cfp_announcement', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cfp.phpbenelux.eu/?utm_source=php_net&utm_medium=phpbnl18_logo&utm_campaign=phpbnl18&utm_term=php%2Bconference%2Bcfp&utm_content=cfp_announcement', @@ -11282,34 +11301,34 @@ the upgrade ', 'intro' => '

    PHPBenelux Conference is an annual PHP oriented conference in Antwerp, Belgium and will take place on January 26 & 27 2018. We offer two days of stellar tutorials and talks, epic social events and a lineup of the best local and international businesses involved with PHP.

    We like to invite speakers to submit their tutorials and talks at PHPBenelux CfP. Speakers have until Monday, October 2, 2017 to submit their proposals.

    … read full article

    ', ), - 203 => + 203 => array ( 'title' => 'PHP 7.2.0 Beta 1 Released', 'id' => 'http://php.net/archive/2017.php#id2017-07-20-1', 'published' => '2017-07-20T12:00:00+00:00', 'updated' => '2017-07-21T02:21:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-07-20-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-07-20-1', 'rel' => 'via', @@ -11366,37 +11385,37 @@ the upgrade bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 204 => + 204 => array ( 'title' => 'php[world] 2017', 'id' => 'http://php.net/archive/2017.php#id2017-07-10-1', 'published' => '2017-07-10T17:14:04-04:00', 'updated' => '2017-07-10T17:14:04-04:00', 'finalTeaserDate' => '2017-11-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-07-10-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/?paref=phpnet&utm_campaign=phpnet', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/?paref=phpnet&utm_campaign=phpnet', @@ -11415,37 +11434,37 @@ the upgrade ', 'intro' => '

    From the publishers of php[architect] magazine comes the 4th annual php[world] conference! As always this November in the Washington D.C. area.

    This year a number of changes have been made based upon attendee feedback, the biggest being an over 50% a drop in cost, with tickets available now as low as $325. The conference also is now just 2 days long, running on November 15th & 16th, and includes workshops as well as regular sessions.

    … read full article

    ', ), - 205 => + 205 => array ( 'title' => 'php Central Europe Conference 2017', 'id' => 'http://php.net/archive/2017.php#id2017-07-07-1', 'published' => '2017-07-07T00:04:38+02:00', 'updated' => '2017-07-07T00:04:38+02:00', 'finalTeaserDate' => '2017-07-31', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-07-07-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2017.phpce.eu/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2017.phpce.eu/', @@ -11491,34 +11510,34 @@ the upgrade ', 'intro' => '

    phpCE is a first edition of the community conference for PHP programmers and enthusiasts. The meeting was stablished by merging two nation-wide events: PHPCon Poland and Brno PHP Conference. This edition will take place in the Ossa Congress & Spa Hotel near Rawa Mazowicka, Poland on November 3rd - 5th.

    The unique feature of the php Central Europe Conference is three-path split of agenda, according to difficulty level of talks: Relaxing, Intermediate and Geek. Submitting a talk you must point a proper level and suggest the Program Committee, which one do you prefer. In general, talks given in the Relaxing path should be done in native language of hosting country (Polish this year).

    … read full article

    ', ), - 206 => + 206 => array ( 'title' => 'PHP 5.6.31 Released', 'id' => 'http://php.net/archive/2017.php#id2017-07-06-4', 'published' => '2017-07-06T15:03:21-07:00', 'updated' => '2017-07-06T15:03:21-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-07-06-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-07-06-4', 'rel' => 'via', @@ -11547,34 +11566,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 207 => + 207 => array ( 'title' => 'PHP 7.1.7 Released', 'id' => 'http://php.net/archive/2017.php#id2017-07-06-3', 'published' => '2017-07-06T17:35:10+00:00', 'updated' => '2017-07-06T17:35:10+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-07-06-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-07-06-3', 'rel' => 'via', @@ -11603,29 +11622,29 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 208 => + 208 => array ( 'title' => 'PHP 7.2.0 Alpha 3 Released', 'id' => 'http://php.net/archive/2017.php#id2017-07-06-2', 'published' => '2017-07-06T12:25:08+02:00', 'updated' => '2017-07-06T12:25:08+02:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-07-06-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-07-06-2', 'rel' => 'via', @@ -11661,34 +11680,34 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 209 => + 209 => array ( 'title' => 'PHP 7.0.21 Released', 'id' => 'http://php.net/archive/2017.php#id2017-07-06-1', 'published' => '2017-07-06T13:00:00+01:00', 'updated' => '2017-07-06T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-07-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-07-06-1', 'rel' => 'via', @@ -11717,37 +11736,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 210 => + 210 => array ( 'title' => 'PHP Developer Day 2017', 'id' => 'http://php.net/archive/2017.php#id2017-06-29-1', 'published' => '2017-06-29T17:24:31+02:00', 'updated' => '2017-06-29T17:24:31+02:00', 'finalTeaserDate' => '2017-09-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpug-dresden.org/en/phpdd17.html', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpug-dresden.org/en/phpdd17.html', @@ -11789,30 +11808,30 @@ the upgrade We have 6 talks covering the following topics:

    … read full article

    ', ), - 211 => + 211 => array ( 'title' => 'Forum PHP 2017', 'id' => 'http://php.net/archive/2017.php#id2017-06-23-1', 'published' => '2017-06-23T14:33:24+00:00', 'updated' => '2017-06-23T14:33:24+00:00', 'finalTeaserDate' => '2017-10-27', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-23-1', 'rel' => 'via', @@ -11839,34 +11858,34 @@ the upgrade pros and PHP lovers.

    … read full article

    ', ), - 212 => + 212 => array ( 'title' => 'PHP 7.2.0 Alpha 2 Released', 'id' => 'http://php.net/archive/2017.php#id2017-06-22-1', 'published' => '2017-06-22T11:00:00+00:00', 'updated' => '2017-06-22T11:00:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-06-22-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-22-1', 'rel' => 'via', @@ -11902,37 +11921,37 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 213 => + 213 => array ( 'title' => 'LaravelConf Taiwan 2017', 'id' => 'http://php.net/archive/2017.php#id2017-06-17-1', 'published' => '2017-06-17T18:48:00+00:00', 'updated' => '2017-06-17T18:48:00+00:00', 'finalTeaserDate' => '2017-07-01', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-17-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://laravelconf.tw/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://laravelconf.tw/', @@ -11961,37 +11980,37 @@ the upgrade ', 'intro' => '

    The first Laravel conference in Taiwan awaits you at LaravelConf Taiwan 2017 at Taipei, Taiwan.

    LaravelConf Taiwan 2017 is for anyone who is passionate about building web-application, or anyone who is trying to make better experience on teamwork.

    … read full article

    ', ), - 214 => + 214 => array ( 'title' => 'ZendCon 2017', 'id' => 'http://php.net/archive/2017.php#id2017-06-14-1', 'published' => '2017-06-14T00:00:01+00:00', 'updated' => '2017-09-13T19:06:00+01:00', 'finalTeaserDate' => '2017-09-01', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://zendcon.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://zendcon.com', @@ -12013,37 +12032,37 @@ the upgrade ', 'intro' => '

    With over 250 million PHP applications driven by a global community of more than 5 million active developers and all enterprises adopting open source software, ZendCon 2017 brings you a curated selection of the best experts, training, and networking opportunities to embrace this vast ecosystem.

    Take advantage of unique opportunities to attend a wide variety of in-depth technical sessions, participate in exhibit hall activities, and connect with experts. Learn about the best in enterprise PHP and open source development, focusing on the latest for PHP 7, the evolution of frameworks and tools, API excellence, and innovation on many open source technologies related to the web.

    … read full article

    ', ), - 215 => + 215 => array ( 'title' => 'International PHP Conference 2017 - fall edition', 'id' => 'http://php.net/archive/2017.php#id2017-06-09-1', 'published' => '2017-06-09T09:54:24+01:00', 'updated' => '2017-06-09T09:54:24+01:00', 'finalTeaserDate' => '2017-06-23', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -12082,34 +12101,34 @@ the upgrade ', 'intro' => '

    The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.

    All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the International JavaScript Conference taking place at the same time.

    … read full article

    ', ), - 216 => + 216 => array ( 'title' => 'PHP 7.1.6 Released', 'id' => 'http://php.net/archive/2017.php#id2017-06-08-3', 'published' => '2017-06-08T19:40:06+00:00', 'updated' => '2017-06-08T19:40:06+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-06-08-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-08-3', 'rel' => 'via', @@ -12129,34 +12148,34 @@ the upgrade ', 'intro' => '
    ', ), - 217 => + 217 => array ( 'title' => 'PHP 7.2.0 Alpha 1 Released', 'id' => 'http://php.net/archive/2017.php#id2017-06-08-2', 'published' => '2017-06-08T17:03:24+00:00', 'updated' => '2017-07-13T10:02:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-06-08-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-08-2', 'rel' => 'via', @@ -12192,34 +12211,34 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 218 => + 218 => array ( 'title' => 'PHP 7.0.20 Released', 'id' => 'http://php.net/archive/2017.php#id2017-06-08-1', 'published' => '2017-06-08T13:00:00+01:00', 'updated' => '2017-06-08T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-06-08-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-08-1', 'rel' => 'via', @@ -12248,37 +12267,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 219 => + 219 => array ( 'title' => 'China PHP Developer Conference', 'id' => 'http://php.net/archive/2017.php#id2017-06-06-1', 'published' => '2017-06-06T19:36:21+00:00', 'updated' => '2017-06-06T19:36:21+00:00', 'finalTeaserDate' => '2017-06-10', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-06-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-06-06-1', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://php2017.devlink.cn/', @@ -12294,37 +12313,37 @@ the upgrade ', 'intro' => '

    China PHP Developer Conference which organized by the DevLink will hold in Beijing on June 10th and 11th.

    After “The High Performance PHP”, It’s the another global developer interchange activity that DevLink hosts.

    … read full article

    ', ), - 220 => + 220 => array ( 'title' => 'The 5th Annual China PHP Conference ', 'id' => 'http://php.net/archive/2017.php#id2017-05-22-1', 'published' => '2017-05-22T11:50:21+00:00', 'updated' => '2017-05-22T11:50:21+00:00', 'finalTeaserDate' => '2017-06-17', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-05-22-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-05-22-1', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpconchina.com/', @@ -12342,37 +12361,37 @@ the upgrade ', 'intro' => '

    The 5th Annual China PHP Conference – June 17 to 18, Shanghai

    We will be hosting a 2-days event filled with high quality, technical sessions about PHP Core, PHP High Performance, PHP Engineering, and MySQL 5.7/8.0 more.

    … read full article

    ', ), - 221 => + 221 => array ( 'title' => 'DevCOnf 2017', 'id' => 'http://php.net/archive/2017.php#id2017-05-18-1', 'published' => '2017-05-18T13:43:56+00:00', 'updated' => '2017-05-18T13:43:56+00:00', 'finalTeaserDate' => '2017-06-17', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-05-18-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://devconf.ru', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://devconf.ru', @@ -12427,37 +12446,37 @@ the upgrade This year the conference will take place in Izmaylovo.

    … read full article

    ', ), - 222 => + 222 => array ( 'title' => 'php[world] 2017: Call for Speakers', 'id' => 'http://php.net/archive/2017.php#id2017-05-16-1', 'published' => '2017-05-16T18:08:03-04:00', 'updated' => '2017-05-16T18:08:03-04:00', 'finalTeaserDate' => '2017-06-23', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-05-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com', @@ -12486,34 +12505,34 @@ the upgrade ', 'intro' => '

    The teams at php[architect] and One for All Events are excited to announce we have opened up our Call for Speakers for the 4th annual edition of php[world].

    This year we are refactoring php[world] into a more focused PHP conference concentrating on providing our attendees deep-dive content which teach core lessons about PHP. We also want talks covering advanced topics in applications and frameworks built in PHP (such as Drupal, WordPress, Laravel, Symfony, and Magento). We encourage submissions on technologies crucial to modern Web development such as HTML5, JavaScript, and emerging technologies. Ideas surrounding the entire software life cycle are often big hits for our attendees. Finally, we do welcome non-technical proposals that will appeal to a developer audience.

    … read full article

    ', ), - 223 => + 223 => array ( 'title' => 'PHP 7.1.5 Released', 'id' => 'http://php.net/archive/2017.php#id2017-05-11-2', 'published' => '2017-05-11T17:44:29+00:00', 'updated' => '2017-05-11T12:03:00-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-05-11-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-05-11-2', 'rel' => 'via', @@ -12542,34 +12561,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 224 => + 224 => array ( 'title' => 'PHP 7.0.19 Released', 'id' => 'http://php.net/archive/2017.php#id2017-05-11-1', 'published' => '2017-05-11T13:00:00+01:00', 'updated' => '2017-05-11T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-05-11-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-05-11-1', 'rel' => 'via', @@ -12598,37 +12617,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 225 => + 225 => array ( 'title' => 'International PHP Conference 2017 Fall - Call for Papers', 'id' => 'http://php.net/archive/2017.php#id2017-05-09-1', 'published' => '2017-05-09T15:44:54-04:00', 'updated' => '2017-05-09T15:44:54-04:00', 'finalTeaserDate' => '2017-05-09', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-05-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://callforpapers.sandsmedia.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://callforpapers.sandsmedia.com', @@ -12691,37 +12710,37 @@ the upgrade ', 'intro' => '
    ', ), - 226 => + 226 => array ( 'title' => 'Dutch PHP Conference 2017', 'id' => 'http://php.net/archive/2017.php#id2017-04-14-1', 'published' => '2017-04-14T13:21:13+00:00', 'updated' => '2017-04-14T13:21:13+00:00', 'finalTeaserDate' => '2017-06-29', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-04-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.phpconference.nl/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.phpconference.nl/', @@ -12769,37 +12788,37 @@ the upgrade presenters can respond to individual questions, and as a result places are limited.

    … read full article

    ', ), - 227 => + 227 => array ( 'title' => 'ConFoo Vancouver 2017 Calling for Papers', 'id' => 'http://php.net/archive/2017.php#id2017-04-13-3', 'published' => '2017-04-13T15:58:29-04:00', 'updated' => '2017-04-13T15:58:29-04:00', 'finalTeaserDate' => '2017-05-08', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-04-13-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://confoo.ca/en/yvr2017/call-for-papers', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://confoo.ca/en/yvr2017/call-for-papers', @@ -12816,34 +12835,34 @@ the upgrade ', 'intro' => '

    Want to get your web development ideas in front of a live audience? The call for papers for the ConFoo Vancouver 2017 web developer conference is open! If you have a burning desire to hold forth about PHP, databases, JavaScript, or any other web development topics, we want to see your proposals. The window is open only from April 10 to May 8, 2017, so hurry. An added benefit: If your proposal is selected and you live outside of the Vancouver area, we will cover your travel and hotel.

    You’ll have 45 minutes for the talk, with 35 minutes for your topic and 10 minutes for Q&A. We can’t wait to see your proposals!

    … read full article

    ', ), - 228 => + 228 => array ( 'title' => 'PHP 7.1.4 Released', 'id' => 'http://php.net/archive/2017.php#id2017-04-13-2', 'published' => '2017-04-13T16:12:01+00:00', 'updated' => '2017-04-13T16:12:01+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-04-13-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-04-13-2', 'rel' => 'via', @@ -12872,34 +12891,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 229 => + 229 => array ( 'title' => 'PHP 7.0.18 Released', 'id' => 'http://php.net/archive/2017.php#id2017-04-13-1', 'published' => '2017-04-13T13:00:00+01:00', 'updated' => '2017-04-13T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-04-13-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-04-13-1', 'rel' => 'via', @@ -12928,37 +12947,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 230 => + 230 => array ( 'title' => 'PNWPHP 2017 CfP', 'id' => 'http://php.net/archive/2017.php#id2017-03-30-2', 'published' => '2017-03-30T07:49:46-04:00', 'updated' => '2017-03-30T07:49:46-04:00', 'finalTeaserDate' => '2017-05-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-03-30-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.pnwphp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.pnwphp.com', @@ -12975,37 +12994,37 @@ the upgrade ', 'intro' => '

    We are happy to announce the dates for *Pacific Northwest PHP Conference (PNWPHP) 2017 are September 7-9, and will held at University of Washington in Seattle! The CFP site - http://cfp.pnwphp.com - has launched, where talk submissions will accepted through May 15th, 2017.

    The Pacific Northwest PHP Conference is a 3-day event in Seattle, Washington for PHP and Web developers. Our past conferences have included world renown speakers from the PHP community, about a wide range of topics — from APIs and CMS to unit testing and version control

    … read full article

    ', ), - 231 => + 231 => array ( 'title' => 'Northeast PHP Conference CfP', 'id' => 'http://php.net/archive/2017.php#id2017-03-30-1', 'published' => '2017-03-30T07:40:09-04:00', 'updated' => '2017-03-30T07:40:09-04:00', 'finalTeaserDate' => '2017-04-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-03-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2017.northeastphp.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2017.northeastphp.org', @@ -13029,34 +13048,34 @@ the upgrade The conference will take place August 9-11, and Early Bird Tickets are now available.

    ', ), - 232 => + 232 => array ( 'title' => 'PHP 7.1.3 Released', 'id' => 'http://php.net/archive/2017.php#id2017-03-16-2', 'published' => '2017-03-16T15:34:44+00:00', 'updated' => '2017-03-16T15:34:44+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-03-16-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-03-16-2', 'rel' => 'via', @@ -13085,34 +13104,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 233 => + 233 => array ( 'title' => 'PHP 7.0.17 Released', 'id' => 'http://php.net/archive/2017.php#id2017-03-16-1', 'published' => '2017-03-16T13:00:00+01:00', 'updated' => '2017-03-16T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-03-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-03-16-1', 'rel' => 'via', @@ -13141,37 +13160,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 234 => + 234 => array ( 'title' => 'PHP Unicorn Conference (Online)', 'id' => 'http://php.net/archive/2017.php#id2017-03-15-1', 'published' => '2017-03-15T02:45:21+00:00', 'updated' => '2017-03-15T02:45:21+00:00', 'finalTeaserDate' => '2017-04-19', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-03-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.phpunicorn.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpunicorn.com', @@ -13200,37 +13219,37 @@ the upgrade It is true there are many great PHP conferences happening around the world and you should go to as many as can, but if you have a hard time getting to one or can’t spare the time, why not let the conference come to you? The PHP Unicorn Conference comes streaming right to your computer, wherever in the world you might be.

    … read full article

    ', ), - 235 => + 235 => array ( 'title' => 'ZendCon 2017 CFP Started', 'id' => 'http://php.net/archive/2017.php#id2017-03-14-1', 'published' => '2017-03-14T00:00:01+00:00', 'updated' => '2017-03-14T12:23:00+00:00', 'finalTeaserDate' => '2017-04-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-03-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://zendcon.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://zendcon.com', @@ -13254,37 +13273,37 @@ the upgrade ', 'intro' => '

    We are happy to announce the CFP for ZendCon 2017 has launched at https://cfp.zendcon.com where we will accept talk submissions until April 14th, 2017.

    With over 250 million PHP applications driven by a global community of more than 5 million active developers and all enterprises adopting open source software, ZendCon 2017 brings you a curated selection of the best experts, training, and networking opportunities to embrace this vast ecosystem.

    … read full article

    ', ), - 236 => + 236 => array ( 'title' => 'Conferência PHPRS 2017', 'id' => 'http://php.net/archive/2017.php#id2017-03-04-1', 'published' => '2017-03-04T16:33:51-03:00', 'updated' => '2017-03-04T16:33:51-03:00', 'finalTeaserDate' => '2017-05-12', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-03-04-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://conf.phprs.com.br/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://conf.phprs.com.br/', @@ -13302,37 +13321,37 @@ the upgrade ', 'intro' => '

    An event for the PHP Developer community of Rio Grande do Sul, focused on professional growth, exchange of experiences and networking. Strengthening language and the labor market.

    From May 12 to 13, 2017, in Porto Alegre / RS-Brazil, the first day will be held workshops and the second lectures.

    … read full article

    ', ), - 237 => + 237 => array ( 'title' => 'Madison PHP Conference 2017', 'id' => 'http://php.net/archive/2017.php#id2017-02-24-1', 'published' => '2017-02-24T16:59:19+00:00', 'updated' => '2017-02-24T16:59:19+00:00', 'finalTeaserDate' => '2017-09-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-02-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2017.madisonphpconference.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.madisonphpconference.com/', @@ -13352,37 +13371,37 @@ the upgrade ', 'intro' => '

    Join us on Friday, September 22nd, 2017 for a full day of tutorials followed by three tracks of amazing talks on Saturday, September 23rd, 2017. Now in its fifth year, Madison PHP Conference in Madison, Wisconsin, USA focuses on PHP, related web technologies, and professional development - everything you need to energize your career. This event is organized by the locally-run Madison PHP user group and is designed to offer something for attendees at all skill levels. Madison PHP Conference 2017 will be two days of networking, learning, sharing, and great fun!

    The Call for Papers will be open until April 30th, 2017. Madison PHP Conference offers reimbursement for travel and accommodations. To view the full speaker package and to submit a talk, please visit: http://cfp.madisonphpconference.com.

    … read full article

    ', ), - 238 => + 238 => array ( 'title' => 'Madison PHP Conference 2017', 'id' => 'http://php.net/archive/2017.php#id2017-02-24-1', 'published' => '2017-02-24T16:59:19+00:00', 'updated' => '2017-02-24T16:59:19+00:00', 'finalTeaserDate' => '2017-09-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-02-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2017.madisonphpconference.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.madisonphpconference.com/', @@ -13396,42 +13415,42 @@ the upgrade ', 'intro' => '

    Join us on Friday, September 22nd, 2017 for a full day of tutorials followed by three tracks of amazing talks on Saturday, September 23rd, 2017. Now in its fifth year, Madison PHP Conference in Madison, Wisconsin, USA focuses on PHP, related web technologies, and professional development - everything you need to energize your career. This event is organized by the locally-run Madison PHP user group and is designed to offer something for attendees at all skill levels. Madison PHP Conference 2017 will be two days of networking, learning, sharing, and great fun!

    ', ), - 239 => + 239 => array ( 'title' => 'CakeFest 2017 NYC, the Official CakePHP Conference', 'id' => 'http://php.net/archive/2017.php#id2017-02-21-1', 'published' => '2017-02-21T09:19:04+00:00', 'updated' => '2017-02-21T09:19:04+00:00', 'finalTeaserDate' => '2017-06-08', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), - 1 => + 1 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-02-21-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cakefest.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cakefest.org', @@ -13472,34 +13491,34 @@ the upgrade will be an event not to miss.

    … read full article

    ', ), - 240 => + 240 => array ( 'title' => 'PHP 7.1.2 Released', 'id' => 'http://php.net/archive/2017.php#id2017-02-17-1', 'published' => '2017-02-17T06:00:25+00:00', 'updated' => '2017-02-17T06:00:25+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-02-17-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-02-17-1', 'rel' => 'via', @@ -13528,34 +13547,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 241 => + 241 => array ( 'title' => 'PHP 7.0.16 Released', 'id' => 'http://php.net/archive/2017.php#id2017-02-16-1', 'published' => '2017-02-16T13:00:00+01:00', 'updated' => '2017-02-16T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-02-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-02-16-1', 'rel' => 'via', @@ -13584,37 +13603,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 242 => + 242 => array ( 'title' => 'PHP Experience 2017', 'id' => 'http://php.net/archive/2017.php#id2017-02-15-1', 'published' => '2017-02-15T02:35:13+00:00', 'updated' => '2017-02-15T02:35:13+00:00', 'finalTeaserDate' => '2017-03-27', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-02-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpexperience2017.imasters.com.br/?paref=phpnet&utm_campaign=phpnet', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpexperience2017.imasters.com.br/?paref=phpnet&utm_campaign=phpnet', @@ -13626,37 +13645,37 @@ the upgrade ', 'intro' => '
    ', ), - 243 => + 243 => array ( 'title' => 'php[tek] 2017: Atlanta', 'id' => 'http://php.net/archive/2017.php#id2017-01-23-1', 'published' => '2017-01-23T08:25:57-05:00', 'updated' => '2017-01-23T08:25:57-05:00', 'finalTeaserDate' => '2017-05-24', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-01-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://tek.phparch.com/?paref=phpnet&utm_campaign=phpnet', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://tek.phparch.com/?paref=phpnet&utm_campaign=phpnet', @@ -13680,34 +13699,34 @@ the upgrade ', 'intro' => '
    ', ), - 244 => + 244 => array ( 'title' => 'PHP 5.6.30 Released', 'id' => 'http://php.net/archive/2017.php#id2017-01-19-3', 'published' => '2017-01-19T13:30:25-08:00', 'updated' => '2017-01-19T13:30:25-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-01-19-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-01-19-3', 'rel' => 'via', @@ -13757,34 +13776,34 @@ the upgrade

    ', ), - 245 => + 245 => array ( 'title' => 'PHP 7.0.15 Released', 'id' => 'http://php.net/archive/2017.php#id2017-01-19-2', 'published' => '2017-01-19T13:00:00+01:00', 'updated' => '2017-01-19T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-01-19-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-01-19-2', 'rel' => 'via', @@ -13813,34 +13832,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 246 => + 246 => array ( 'title' => 'PHP 7.1.1 Released', 'id' => 'http://php.net/archive/2017.php#id2017-01-19-1', 'published' => '2017-01-19T09:56:45+00:00', 'updated' => '2017-01-19T09:56:45+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2017-01-19-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2017.php#id2017-01-19-1', 'rel' => 'via', @@ -13869,37 +13888,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 247 => + 247 => array ( 'title' => 'PHPKonf: Istanbul PHP Conference 2017', 'id' => 'http://php.net/archive/2017.php#id2017-12-27-1', 'published' => '2017-03-27T18:00:00+00:00', 'updated' => '2017-03-27T18:00:00+00:00', 'finalTeaserDate' => '2017-05-20', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2017-12-27-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpkonf.org/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpkonf.org/', @@ -13914,42 +13933,42 @@ the upgrade ', 'intro' => '

    Istanbul PHP User Group is proud to announce that the PHPKonf 2017! We\'ll host some of the best speakers, awesome talk topics, latest technologies, and up to date news in PHP. Join us on 20th of May for a multi-track conference in ancient city Istanbul! We’ve something for every level of PHP developer with 1 keynotes, 14 talks.

    http://phpkonf.org
    ', ), - 248 => + 248 => array ( 'title' => 'PHPSerbia Conference 2017', 'id' => 'http://php.net/archive/2016.php#id2016-12-20-1', 'published' => '2016-12-20T13:08:01+00:00', 'updated' => '2016-12-20T13:08:01+00:00', 'finalTeaserDate' => '2017-05-27', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), - 1 => + 1 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-12-20-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://conf2017.phpsrbija.rs/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://conf2017.phpsrbija.rs', @@ -13966,34 +13985,34 @@ the upgrade ', 'intro' => '

    Conference that delivers high-value technical content about PHP and related web technologies, architecture, best practices and testing. Two days of amazing talks by some of the most prominent experts and professionals in the PHP world in a comfortable and professional setting.

    At PHPSerbia Conference, you’ll have the unique opportunity to learn about the latest development trends and innovations, as well as to network with fellow attendees and the speakers.

    … read full article

    ', ), - 249 => + 249 => array ( 'title' => 'PHP 5.6.29 Released', 'id' => 'http://php.net/archive/2016.php#id2016-12-08-2', 'published' => '2016-12-08T19:00:37-08:00', 'updated' => '2016-12-08T19:00:37-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-12-08-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-12-08-2', 'rel' => 'via', @@ -14022,34 +14041,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 250 => + 250 => array ( 'title' => 'PHP 7.0.14 Released', 'id' => 'http://php.net/archive/2016.php#id2016-12-08-1', 'published' => '2016-12-08T13:00:00+01:00', 'updated' => '2016-12-08T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-12-08-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-12-08-1', 'rel' => 'via', @@ -14078,37 +14097,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 251 => + 251 => array ( 'title' => 'CoderCruise', 'id' => 'http://php.net/archive/2016.php#id2016-12-07-1', 'published' => '2016-12-07T14:31:23-05:00', 'updated' => '2016-12-07T14:31:23-05:00', 'finalTeaserDate' => '2017-01-06', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-12-07-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://www.codercruise.com/?paref=phpnet&utm_campaign=phpnet', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://www.codercruise.com/?paref=phpnet&utm_campaign=phpnet', @@ -14123,34 +14142,34 @@ the upgrade ', 'intro' => '

    CoderCruise is the spiritual successor to php[cruise] that was run in 2016. The PHP community had so much fun that we decided we needed to expand the idea to the greater web tech community! This will be a 7-day cruise out of the port of New Orleans that will include 3 days of conference (while at sea) and 3 days at the ports of Montego Bay, Grand Cayman, and Cozumel. Yes, you read that right. This is a conference on a cruise ship.

    We currently have our Call for Speakers open until January 6th, 2017. For CoderCruise we are looking for submissions covering a wide range of web technology topics including coding, design, content, and more. Given the scope of this conference, emphasis will be given to talks that appeal to all web technologists regardless of their programming language of choice (or lack thereof). We also welcome non-technical proposals that will appeal to a tech audience, and most importantly of all, we would love to have family-friendly sessions designed to teach kids to code or use related technologies.

    ', ), - 252 => + 252 => array ( 'title' => 'PHP 7.1.0 Released', 'id' => 'http://php.net/archive/2016.php#id2016-12-01-3', 'published' => '2016-12-01T17:55:05+00:00', 'updated' => '2016-12-01T17:55:05+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-12-01-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-12-01-3', 'rel' => 'via', @@ -14181,37 +14200,37 @@ the upgrade ', 'intro' => '

    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

    … read full article

    ', ), - 253 => + 253 => array ( 'title' => 'PHP South Coast 2017 - CFP opened', 'id' => 'http://php.net/archive/2016.php#id2016-12-01-2', 'published' => '2016-12-01T22:48:54+00:00', 'updated' => '2016-12-01T22:48:54+00:00', 'finalTeaserDate' => '2017-01-31', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-12-01-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2017.phpsouthcoast.co.uk/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2017.phpsouthcoast.co.uk/', @@ -14224,37 +14243,37 @@ the upgrade ', 'intro' => '', ), - 254 => + 254 => array ( 'title' => 'Web Summer Camp 2017', 'id' => 'http://php.net/archive/2016.php#id2016-12-01-1', 'published' => '2016-12-01T14:20:42+00:00', 'updated' => '2016-12-01T14:20:42+00:00', 'finalTeaserDate' => '2017-03-31', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-12-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2017.websummercamp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2017.websummercamp.com', @@ -14283,37 +14302,37 @@ the upgrade http://2016.websummercamp.com/PHP

    ', ), - 255 => + 255 => array ( 'title' => 'International PHP Conference 2017', 'id' => 'http://php.net/archive/2016.php#id2016-11-24-1', 'published' => '2016-11-24T09:54:24+01:00', 'updated' => '2016-11-24T09:54:24+01:00', 'finalTeaserDate' => '2016-12-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-11-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -14353,37 +14372,37 @@ the upgrade ', 'intro' => '

    The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.

    All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the webinale \'17 taking place at the same time.

    … read full article

    ', ), - 256 => + 256 => array ( 'title' => 'php[tek] 2017 — Call for Speakers', 'id' => 'http://php.net/archive/2016.php#id2016-11-11-1', 'published' => '2016-11-11T16:01:34-05:00', 'updated' => '2016-11-11T16:01:34-05:00', 'finalTeaserDate' => '2016-12-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-11-11-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://tek.phparch.com/?paref=phpnet&utm_campaign=phpnet', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://tek.phparch.com/?paref=phpnet&utm_campaign=phpnet', @@ -14413,34 +14432,34 @@ the upgrade ', 'intro' => '

    The 12th annual edition of php[tek], the longest running community focused PHP conference, will be taking place May 24-26, 2017 in Atlanta! We have opened up our Call for Speakers and look forward to seeing all the amazing proposals that you will submit to us.

    This year we hope for a broad range of topics to share with our attendees. Besides core PHP matters such as PHP7, Security, and Testing, we want talks on the technologies crucial to modern Web development as well such as HTML5, JavaScript, mobile development, and emerging technologies. We also welcome non-technical proposals that will appeal to a developer audience.

    … read full article

    ', ), - 257 => + 257 => array ( 'title' => 'PHP 5.6.28 Released', 'id' => 'http://php.net/archive/2016.php#id2016-11-10-3', 'published' => '2016-11-10T19:24:41+00:00', 'updated' => '2016-11-10T19:24:41+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-11-10-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-11-10-3', 'rel' => 'via', @@ -14469,34 +14488,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 258 => + 258 => array ( 'title' => 'PHP 7.1.0 Release Candidate 6 Released', 'id' => 'http://php.net/archive/2016.php#id2016-11-10-2', 'published' => '2016-11-10T17:00:00+00:00', 'updated' => '2016-11-10T17:00:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-11-10-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-11-10-2', 'rel' => 'via', @@ -14532,34 +14551,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 259 => + 259 => array ( 'title' => 'PHP 7.0.13 Released', 'id' => 'http://php.net/archive/2016.php#id2016-11-10-1', 'published' => '2016-11-10T13:00:00+01:00', 'updated' => '2016-11-10T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-11-10-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-11-10-1', 'rel' => 'via', @@ -14588,37 +14607,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 260 => + 260 => array ( 'title' => 'International PHP Conference 2017 - Call for Papers', 'id' => 'http://php.net/archive/2016.php#id2016-11-02-1', 'published' => '2016-11-02T15:44:54-04:00', 'updated' => '2016-11-02T15:44:54-04:00', 'finalTeaserDate' => '2016-11-02', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-11-02-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://callforpapers.sandsmedia.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://callforpapers.sandsmedia.com', @@ -14647,37 +14666,37 @@ the upgrade ', 'intro' => '
    ', ), - 261 => + 261 => array ( 'title' => 'SunshinePHP 2017 Schedule Announced', 'id' => 'http://php.net/archive/2016.php#id2016-11-01-1', 'published' => '2016-11-01T00:00:01+00:00', 'updated' => '2016-11-01T12:23:00+00:00', 'finalTeaserDate' => '2016-11-01', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-11-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://sunshinephp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://sunshinephp.com', @@ -14698,37 +14717,37 @@ the upgrade ', 'intro' => '

    We are pleased to announce the 2017 SunshinePHP Schedule. Our highly diverse lineup of 45 speakers will be delivering 5 keynotes, 8 in-depth 3-hour tutorials, and 40 talks 1-hour in length over this 3 day event.

    SunshinePHP hit it\'s 5th year and will happen from February 2nd to 4th, 2017 in sunny Miami, Florida. As one of the largest community conferences in the U.S. the schedule is amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.

    … read full article

    ', ), - 262 => + 262 => array ( 'title' => 'ConFoo Vancouver & Montreal', 'id' => 'http://php.net/archive/2016.php#id2016-10-28-1', 'published' => '2016-10-28T12:22:24-04:00', 'updated' => '2016-10-28T12:22:24-04:00', 'finalTeaserDate' => '2016-12-05', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-10-28-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://confoo.ca/en', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://confoo.ca/en', @@ -14747,34 +14766,34 @@ the upgrade ', 'intro' => '

    We recently released the presentations for ConFoo Montreal. This giant conference will be held on March 8-10, 2017.

    It\'s also the last chance to get tickets for ConFoo Vancouver, held on December 5-7, 2016.

    … read full article

    ', ), - 263 => + 263 => array ( 'title' => 'PHP 7.1.0 Release Candidate 5 Released', 'id' => 'http://php.net/archive/2016.php#id2016-10-27-1', 'published' => '2016-10-27T15:00:00+00:00', 'updated' => '2016-10-27T15:00:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-10-27-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-10-27-1', 'rel' => 'via', @@ -14814,37 +14833,37 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 264 => + 264 => array ( 'title' => 'PhpConference Brasil 2016', 'id' => 'http://php.net/archive/2016.php#id2016-10-26-1', 'published' => '2016-10-26T10:22:11-02:00', 'updated' => '2016-10-26T10:22:11-02:00', 'finalTeaserDate' => '2016-12-07', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-10-26-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.phpconference.com.br/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpconference.com.br/', @@ -14885,34 +14904,34 @@ the upgrade The 11th edition of PhpConference Brasil will happen between December 7th (Wednesday) and December 11th (Sunday).

    … read full article

    ', ), - 265 => + 265 => array ( 'title' => 'PHP 7.1.0 Release Candidate 4 Released', 'id' => 'http://php.net/archive/2016.php#id2016-10-19-1', 'published' => '2016-10-19T14:00:00+00:00', 'updated' => '2016-10-19T14:00:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-10-19-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-10-19-1', 'rel' => 'via', @@ -14952,37 +14971,37 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 266 => + 266 => array ( 'title' => 'Midwest PHP 2017 Conference Call for Papers is Open', 'id' => 'http://php.net/archive/2016.php#id2016-10-18-1', 'published' => '2016-10-18T10:46:00-06:00', 'updated' => '2016-10-18T10:46:00-06:00', 'finalTeaserDate' => '2016-11-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-10-18-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2017.midwestphp.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2017.midwestphp.org', @@ -15014,34 +15033,34 @@ the upgrade is launching into its fifth year at the Radisson Blu at Mall of America on March 17-18. With the growth of the Midwest PHP conference this is the one conference you cannot afford to miss in 2017.

    … read full article

    ', ), - 267 => + 267 => array ( 'title' => 'PHP 5.6.27 Released', 'id' => 'http://php.net/archive/2016.php#id2016-10-14-1', 'published' => '2016-10-14T21:29:35+00:00', 'updated' => '2016-10-14T21:29:35+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-10-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-10-14-1', 'rel' => 'via', @@ -15070,34 +15089,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 268 => + 268 => array ( 'title' => 'PHP 7.0.12 Released', 'id' => 'http://php.net/archive/2016.php#id2016-10-13-1', 'published' => '2016-10-13T23:00:00+01:00', 'updated' => '2016-10-13T23:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-10-13-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-10-13-1', 'rel' => 'via', @@ -15126,34 +15145,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 269 => + 269 => array ( 'title' => 'PHP 7.1.0 Release Candidate 3 Released', 'id' => 'http://php.net/archive/2016.php#id2016-09-29-1', 'published' => '2016-09-29T17:46:09+00:00', 'updated' => '2016-09-29T17:46:09+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-09-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-09-29-1', 'rel' => 'via', @@ -15193,37 +15212,37 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 270 => + 270 => array ( 'title' => 'PHP UK Conference 2017 Call for Papers', 'id' => 'http://php.net/archive/2016.php#id2016-09-22-2', 'published' => '2016-09-22T09:00:00+00:00', 'updated' => '2016-09-22T09:00:00+00:00', 'finalTeaserDate' => '2016-10-17', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-09-22-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpconference.co.uk', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpconference.co.uk', @@ -15251,34 +15270,34 @@ the upgrade Open until: October 17th 2016 6pm GMT

    The PHP UK Conference 2017 Call for Papers is now open!

    … read full article

    ', ), - 271 => + 271 => array ( 'title' => 'PHP 7.1.0 Release Candidate 2 Released', 'id' => 'http://php.net/archive/2016.php#id2016-09-16-2', 'published' => '2016-09-16T23:33:30+00:00', 'updated' => '2016-09-16T23:33:30+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-09-16-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-09-16-2', 'rel' => 'via', @@ -15318,34 +15337,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 272 => + 272 => array ( 'title' => 'PHP 5.6.26 is released', 'id' => 'http://php.net/archive/2016.php#id2016-09-16-1', 'published' => '2016-09-16T06:39:08+00:00', 'updated' => '2016-09-16T06:39:08+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-09-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-09-16-1', 'rel' => 'via', @@ -15374,34 +15393,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 273 => + 273 => array ( 'title' => 'PHP 7.0.11 Released', 'id' => 'http://php.net/archive/2016.php#id2016-09-15-1', 'published' => '2016-09-15T13:00:00+01:00', 'updated' => '2016-09-15T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-09-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-09-15-1', 'rel' => 'via', @@ -15430,37 +15449,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 274 => + 274 => array ( 'title' => 'php[world] 2016', 'id' => 'http://php.net/archive/2016.php#id2016-09-09-1', 'published' => '2016-09-09T08:05:18-04:00', 'updated' => '2016-09-09T08:05:18-04:00', 'finalTeaserDate' => '2016-11-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-09-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/?paref=phpnet&utm_campaign=phpnet', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/?paref=phpnet&utm_campaign=phpnet', @@ -15487,37 +15506,37 @@ the upgrade ', 'intro' => '

    The team behind php[architect] magazine are excited to announce the full schedule for our Fall conference: php[world] 2016 coming up from November 14-18 in Washington, D.C.

    This conference will be our biggest yet, featuring 60 sessions, 10 workshops, and 5 one and two-day training classes. Not to mention 5 amazing keynotes from leaders in the PHP community, and a special keynote by developers from NPR Radio to talk about their experiences with PHP.

    … read full article

    ', ), - 275 => + 275 => array ( 'title' => 'PHPBenelux Conference 2017 CfP Opened', 'id' => 'http://php.net/archive/2016.php#id2016-09-06-1', 'published' => '2016-09-06T01:53:15+02:00', 'updated' => '2016-09-06T01:53:15+02:00', 'finalTeaserDate' => '2016-10-02', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-09-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cfp.phpbenelux.eu/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cfp.phpbenelux.eu/', @@ -15539,34 +15558,34 @@ the upgrade We like to invite speakers to submit their tutorials and talks at PHPBenelux CFP. Follow us on Twitter or like us on Facebook to stay updated with news from the PHPBenelux crew.

    ', ), - 276 => + 276 => array ( 'title' => 'PHP 7.1.0 Release Candidate 1 Released', 'id' => 'http://php.net/archive/2016.php#id2016-09-01-1', 'published' => '2016-09-01T15:18:32+00:00', 'updated' => '2016-09-01T15:18:32+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-09-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-09-01-1', 'rel' => 'via', @@ -15606,37 +15625,37 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 277 => + 277 => array ( 'title' => 'ScotlandPHP 2016', 'id' => 'http://php.net/archive/2016.php#id2016-08-27-1', 'published' => '2016-08-27T12:14:42+00:00', 'updated' => '2016-08-29T20:00:00+01:00', 'finalTeaserDate' => '2016-10-29', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-08-27-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://conference.scotlandphp.co.uk', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://conference.scotlandphp.co.uk', @@ -15674,37 +15693,37 @@ the upgrade and bookended by keynotes from world class speakers: Anthony Ferrara and Jessica Rose.

    … read full article

    ', ), - 278 => + 278 => array ( 'title' => 'ConFoo Montreal 2017 Calling for Papers', 'id' => 'http://php.net/archive/2016.php#id2016-08-22-2', 'published' => '2016-08-22T16:50:54-04:00', 'updated' => '2016-08-22T16:50:54-04:00', 'finalTeaserDate' => '2016-09-20', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-08-22-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://confoo.ca/en/yul2017/call-for-papers', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://confoo.ca/en/yul2017/call-for-papers', @@ -15719,37 +15738,37 @@ the upgrade ', 'intro' => '
    ', ), - 279 => + 279 => array ( 'title' => 'Bulgaria PHP Conference 2016', 'id' => 'http://php.net/archive/2016.php#id2016-08-22-1', 'published' => '2016-08-22T18:00:00+03:00', 'updated' => '2016-08-22T18:00:00+03:00', 'finalTeaserDate' => '2016-10-07', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-08-22-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.bgphp.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.bgphp.org', @@ -15778,34 +15797,34 @@ the upgrade ', 'intro' => '

    Bulgaria PHP Conference is the premier PHP conference, gathering PHP and frontend developers and engineers from all around Europe. Co-organized by the Bulgaria PHP User Group and SiteGround web hosting, the conference is bringing internationally renowned experts from the PHP industry to talk about APIs, Frameworks, Security, Testing, Continuous Integration, and much more!

    Highlights:

    … read full article

    ', ), - 280 => + 280 => array ( 'title' => 'PHP 7.1.0 Beta 3 Released', 'id' => 'http://php.net/archive/2016.php#id2016-08-18-3', 'published' => '2016-08-18T23:10:34+00:00', 'updated' => '2016-08-18T23:10:34+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-08-18-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-08-18-3', 'rel' => 'via', @@ -15845,34 +15864,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 281 => + 281 => array ( 'title' => 'PHP 5.6.25 is released', 'id' => 'http://php.net/archive/2016.php#id2016-08-18-2', 'published' => '2016-08-18T16:43:25-07:00', 'updated' => '2016-08-19T13:19:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-08-18-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-08-18-2', 'rel' => 'via', @@ -15901,34 +15920,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 282 => + 282 => array ( 'title' => 'PHP 7.0.10 Released', 'id' => 'http://php.net/archive/2016.php#id2016-08-18-1', 'published' => '2016-08-18T23:59:00+01:00', 'updated' => '2016-08-18T23:59:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-08-18-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-08-18-1', 'rel' => 'via', @@ -15957,37 +15976,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 283 => + 283 => array ( 'title' => 'SunshinePHP 2017 CFP Started', 'id' => 'http://php.net/archive/2016.php#id2016-08-16-2', 'published' => '2016-08-16T00:00:01+00:00', 'updated' => '2016-08-16T12:23:00+00:00', 'finalTeaserDate' => '2016-09-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-08-16-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://sunshinephp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://sunshinephp.com', @@ -16004,37 +16023,37 @@ the upgrade ', 'intro' => '

    We are happy to announce the CFP for SunshinePHP 2017 has launched at https://cfp.sunshinephp.com where we will accept talk submissions until September 30th, 2016.

    SunshinePHP hit it\'s 5th year and will happen from February 2nd to 4th, 2017 in sunny Miami, Florida. As one of the largest community conferences in the U.S. there is no doubt the schedule will be amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.

    … read full article

    ', ), - 284 => + 284 => array ( 'title' => 'ZendCon 2016', 'id' => 'http://php.net/archive/2016.php#id2016-08-16-1', 'published' => '2016-08-16T00:00:01+00:00', 'updated' => '2016-08-16T12:23:00+00:00', 'finalTeaserDate' => '2016-10-18', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-08-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://zendcon.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://zendcon.com', @@ -16053,34 +16072,34 @@ the upgrade ', 'intro' => '

    With over 250 million PHP applications and websites driven by a global community of more than 5 million active developers, ZendCon 2016 brings you a curated selection of the best experts, training, and networking opportunities to help you become a PHP authority.

    In its 12th year, ZendCon offers authoritative sessions, in-depth technical tutorials, exhibit hall activities, and informal opportunities to spotlight the best in enterprise PHP development, the latest for PHP 7, and innovations on many open source technologies related to the web.

    … read full article

    ', ), - 285 => + 285 => array ( 'title' => 'PHP 7.1.0 Beta 2 Released', 'id' => 'http://php.net/archive/2016.php#id2016-08-04-1', 'published' => '2016-08-04T09:00:07+00:00', 'updated' => '2016-08-04T09:00:07+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-08-04-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-08-04-1', 'rel' => 'via', @@ -16120,37 +16139,37 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 286 => + 286 => array ( 'title' => 'Early Bird Ticket Sale for PHPConf.Asia 2016', 'id' => 'http://php.net/archive/2016.php#id2016-07-24-1', 'published' => '2016-07-24T14:38:59+08:00', 'updated' => '2016-07-24T14:38:59+08:00', 'finalTeaserDate' => '2016-08-24', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-07-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2016.phpconf.asia', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2016.phpconf.asia', @@ -16167,34 +16186,34 @@ the upgrade ', 'intro' => '

    PHPConf.Asia 2016 is happening in Singapore on 22-24 August 2016. Tutorial Day on 22 Aug. 2 day single track conference on 23 and 24 August.

    Keynote Speakers: Davey Shafik (@dshafik) and Samantha Quiñones (@ieatkillerbees)

    … read full article

    ', ), - 287 => + 287 => array ( 'title' => 'PHP 5.6.24 is released', 'id' => 'http://php.net/archive/2016.php#id2016-07-21-4', 'published' => '2016-07-21T19:49:46+00:00', 'updated' => '2016-07-21T19:49:46+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-07-21-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-07-21-4', 'rel' => 'via', @@ -16225,34 +16244,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 288 => + 288 => array ( 'title' => 'PHP 5.5.38 is released', 'id' => 'http://php.net/archive/2016.php#id2016-07-21-2', 'published' => '2016-07-21T16:01:29+00:00', 'updated' => '2016-07-21T16:01:29+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-07-21-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-07-21-2', 'rel' => 'via', @@ -16280,34 +16299,34 @@ the upgrade some security related bugs.

    All PHP 5.5 users are encouraged to upgrade to this version.

    … read full article

    ', ), - 289 => + 289 => array ( 'title' => 'PHP 7.0.9 Released', 'id' => 'http://php.net/archive/2016.php#id2016-07-21-3', 'published' => '2016-07-21T13:00:00+01:00', 'updated' => '2016-07-21T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-07-21-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-07-21-3', 'rel' => 'via', @@ -16336,34 +16355,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 290 => + 290 => array ( 'title' => 'PHP 7.1.0 Beta 1 Released', 'id' => 'http://php.net/archive/2016.php#id2016-07-21-1', 'published' => '2016-07-21T09:32:07+00:00', 'updated' => '2016-07-21T09:32:07+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-07-21-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-07-21-1', 'rel' => 'via', @@ -16416,34 +16435,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 291 => + 291 => array ( 'title' => 'PHP 7.1.0 Alpha 3 Released', 'id' => 'http://php.net/archive/2016.php#id2016-07-07-1', 'published' => '2016-07-07T19:40:54+00:00', 'updated' => '2016-07-07T19:40:54+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-07-07-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-07-07-1', 'rel' => 'via', @@ -16508,34 +16527,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 292 => + 292 => array ( 'title' => 'PHP 7.1.0 Alpha 2 Released', 'id' => 'http://php.net/archive/2016.php#id2016-06-24-1', 'published' => '2016-06-27T16:00:00+00:00', 'updated' => '2016-06-27T16:00:00+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-24-1', 'rel' => 'via', @@ -16574,34 +16593,34 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 293 => + 293 => array ( 'title' => 'PHP 5.5.37 is released', 'id' => 'http://php.net/archive/2016.php#id2016-06-23-3', 'published' => '2016-06-23T18:11:22+00:00', 'updated' => '2016-06-23T18:11:22+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-23-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-23-3', 'rel' => 'via', @@ -16630,34 +16649,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 294 => + 294 => array ( 'title' => 'PHP 5.6.23 is released', 'id' => 'http://php.net/archive/2016.php#id2016-06-23-2', 'published' => '2016-06-23T17:36:17+00:00', 'updated' => '2016-06-23T17:36:17+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-23-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-23-2', 'rel' => 'via', @@ -16686,34 +16705,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 295 => + 295 => array ( 'title' => 'PHP 7.0.8 Released', 'id' => 'http://php.net/archive/2016.php#id2016-06-23-1', 'published' => '2016-06-23T13:00:00+01:00', 'updated' => '2016-06-23T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-23-1', 'rel' => 'via', @@ -16742,37 +16761,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 296 => + 296 => array ( 'title' => 'International PHP Conference 2016 - fall edition', 'id' => 'http://php.net/archive/2016.php#id2016-06-15-1', 'published' => '2016-06-15T09:54:24+01:00', 'updated' => '2016-06-15T09:54:24+01:00', 'finalTeaserDate' => '2016-10-23', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-06-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -16818,34 +16837,34 @@ the upgrade ', 'intro' => '

    The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.

    All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the WebTechCon taking place at the same time.

    … read full article

    ', ), - 297 => + 297 => array ( 'title' => 'PHP 7.1.0 Alpha 1 Released', 'id' => 'http://php.net/archive/2016.php#id2016-06-09-1', 'published' => '2016-06-09T12:39:55-04:00', 'updated' => '2016-06-09T12:39:55-04:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-06-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-06-09-1', 'rel' => 'via', @@ -16922,37 +16941,37 @@ the upgrade THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 298 => + 298 => array ( 'title' => 'DevConf 2016', 'id' => 'http://php.net/archive/2016.php#id2016-06-06-1', 'published' => '2016-06-06T09:10:08+00:00', 'updated' => '2016-06-06T09:10:08+00:00', 'finalTeaserDate' => '2016-06-17', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-06-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://devconf.ru', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://devconf.ru', @@ -16997,37 +17016,37 @@ the upgrade This year the conference will take place in Skolkovo Moscow School of Management.

    … read full article

    ', ), - 299 => + 299 => array ( 'title' => 'Madison PHP Conference 2016 Call For Papers', 'id' => 'http://php.net/archive/2016.php#id2016-06-03-1', 'published' => '2016-06-03T21:05:00-04:00', 'updated' => '2016-06-03T21:05:00-04:00', 'finalTeaserDate' => '2016-06-20', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-06-03-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2016.madisonphpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2016.madisonphpconference.com/', @@ -17047,37 +17066,37 @@ the upgrade Join us on Friday, September 30th, 2016 for a full day of tutorials followed by a three tracks of talks on Saturday, October 1st, 2016. Madison PHP Conference in Madison, Wisconsin focuses on PHP and related web technologies. This event is organized by Madison PHP and is designed to offer something to attendees at all skill levels. It will be two days of networking, learning, sharing, and great fun!

    ', ), - 300 => + 300 => array ( 'title' => 'php[world] 2016 Call for Speakers', 'id' => 'http://php.net/archive/2016.php#id2016-06-02-1', 'published' => '2016-06-02T11:36:27-04:00', 'updated' => '2016-06-02T11:36:27-04:00', 'finalTeaserDate' => '2016-06-24', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-06-02-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/', @@ -17104,37 +17123,37 @@ the upgrade

    Now in its 3rd year, php[world] is the conference designed to bring the entire world of PHP together in one place, with dedicated tracks for the biggest applications and frameworks in the PHP community such as WordPress, Drupal, Magento, Joomla!, Symfony, Zend Framework, CakePHP, and Laravel.

    … read full article

    ', ), - 301 => + 301 => array ( 'title' => 'The 4th Annual China PHP Conference', 'id' => 'http://php.net/archive/2016.php#id2016-05-30-1', 'published' => '2016-05-30T15:53:21+00:00', 'updated' => '2016-05-30T15:53:21+00:00', 'finalTeaserDate' => '2016-06-25', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-05-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-05-30-1', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpconchina.com/', @@ -17153,34 +17172,34 @@ the upgrade ', 'intro' => '

    The 4th Annual China PHP Conference – June 25 to 26, Shanghai

    We will be hosting a 2-days event filled with high quality, technical sessions about PHP Core, PHP High Performance, PHP Engineering, and PHP more.

    … read full article

    ', ), - 302 => + 302 => array ( 'title' => 'PHP 5.6.22 is available', 'id' => 'http://php.net/archive/2016.php#id2016-05-26-3', 'published' => '2016-05-26T12:59:08-07:00', 'updated' => '2016-05-26T12:59:08-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-05-26-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-05-26-3', 'rel' => 'via', @@ -17211,34 +17230,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 303 => + 303 => array ( 'title' => 'PHP 5.5.36 is available', 'id' => 'http://php.net/archive/2016.php#id2016-05-26-2', 'published' => '2016-05-26T12:50:50+00:00', 'updated' => '2016-05-26T12:50:50+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-05-26-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-05-26-2', 'rel' => 'via', @@ -17269,34 +17288,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 304 => + 304 => array ( 'title' => 'PHP 7.0.7 Released', 'id' => 'http://php.net/archive/2016.php#id2016-05-26-1', 'published' => '2016-05-26T13:00:00+01:00', 'updated' => '2016-05-26T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-05-26-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-05-26-1', 'rel' => 'via', @@ -17327,37 +17346,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 305 => + 305 => array ( 'title' => 'ConFoo Vancouver 2016 Calling for Papers', 'id' => 'http://php.net/archive/2016.php#id2016-05-12-1', 'published' => '2016-05-12T20:03:15-04:00', 'updated' => '2016-05-12T20:03:15-04:00', 'finalTeaserDate' => '2016-06-06', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-05-12-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://confoo.ca/en/yvr2016', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://confoo.ca/en/yvr2016', @@ -17372,42 +17391,42 @@ the upgrade ', 'intro' => '
    ', ), - 306 => + 306 => array ( 'title' => 'Announcing PHPConf.Asia 2016. CFP Opens Now!', 'id' => 'http://php.net/archive/2016.php#id2016-05-02-2', 'published' => '2016-05-02T00:28:11+08:00', 'updated' => '2016-05-02T00:28:11+08:00', 'finalTeaserDate' => '2016-08-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), - 1 => + 1 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-05-02-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://2016.phpconf.asia', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://2016.phpconf.asia', @@ -17423,34 +17442,34 @@ the upgrade ', 'intro' => '

    Announcing PHPConf.Asia 2016 - The Pan-Asian PHP Conference - CFP Opens Now

    The second pan-Asian PHP conference will take place between 22nd and 24th August 2016 in Singapore - the Garden City of the East! Monday, 22nd August 2016 will be a Tutorial day. Followed by 2 days of Conference.

    … read full article

    ', ), - 307 => + 307 => array ( 'title' => 'PHP 7.0.6 Released', 'id' => 'http://php.net/archive/2016.php#id2016-04-29-1', 'published' => '2016-04-29T02:30:00+01:00', 'updated' => '2016-04-29T02:30:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-04-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-04-29-1', 'rel' => 'via', @@ -17483,34 +17502,34 @@ the upgrade
  • CVE-2016-3074
  • … read full article

    ', ), - 308 => + 308 => array ( 'title' => 'PHP 5.6.21 is available', 'id' => 'http://php.net/archive/2016.php#id2016-04-28-2', 'published' => '2016-04-28T16:04:29-07:00', 'updated' => '2016-04-28T16:04:29-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-04-28-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-04-28-2', 'rel' => 'via', @@ -17536,34 +17555,34 @@ the upgrade All PHP 5.6 users are encouraged to upgrade to this version.

    … read full article

    ', ), - 309 => + 309 => array ( 'title' => 'PHP 5.5.35 Release', 'id' => 'http://php.net/archive/2016.php#id2016-04-28-1', 'published' => '2016-04-28T19:57:38+00:00', 'updated' => '2016-04-28T19:57:38+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-04-28-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-04-28-1', 'rel' => 'via', @@ -17589,37 +17608,37 @@ the upgrade All PHP 5.5 users are encouraged to upgrade to this version.

    … read full article

    ', ), - 310 => + 310 => array ( 'title' => 'phpDay 2016', 'id' => 'http://php.net/archive/2016.php#id2016-04-18-1', 'published' => '2016-04-18T10:35:47+02:00', 'updated' => '2016-04-18T10:35:47+02:00', 'finalTeaserDate' => '2016-05-13', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-04-18-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2016.phpday.it/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2016.phpday.it/', @@ -17637,37 +17656,37 @@ the upgrade ', 'intro' => '
    ', ), - 311 => + 311 => array ( 'title' => 'CakeFest 2016 - The CakePHP Conference', 'id' => 'http://php.net/archive/2016.php#id2016-04-05-1', 'published' => '2016-04-05T11:30:00+00:00', 'updated' => '2016-04-05T11:30:00+00:00', 'finalTeaserDate' => '2016-05-26', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-04-05-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://cakefest.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://cakefest.org', @@ -17710,34 +17729,34 @@ the upgrade who love code.

    That\'s why we ask you join us at CakeFest 2016 which will be running from May 26th till May 29th, and experience open source at it\'s very best! As always, CakeFest will consist of a two day workshop (At beginner and advanced levels) and a two day conference. This year we are in the beautiful city of Amsterdam, Netherlands.

    … read full article

    ', ), - 312 => + 312 => array ( 'title' => 'PHP 5.6.20 is available', 'id' => 'http://php.net/archive/2016.php#id2016-03-31-4', 'published' => '2016-03-31T16:28:02-07:00', 'updated' => '2016-03-31T16:28:02-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-03-31-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-31-4', 'rel' => 'via', @@ -17766,37 +17785,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 313 => + 313 => array ( 'title' => 'PHPSerbia Conference 2016', 'id' => 'http://php.net/archive/2016.php#id2016-03-31-3', 'published' => '2016-03-31T20:00:00+02:00', 'updated' => '2016-03-31T22:00:00+02:00', 'finalTeaserDate' => '2016-05-27', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-03-31-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://conf2016.phpsrbija.rs', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://conf2016.phpsrbija.rs', @@ -17813,34 +17832,34 @@ the upgrade ', 'intro' => '

    Conference that delivers high-value technical content about PHP and related web technologies, architecture, best practices and testing. Two days of amazing talks by some of the most prominent experts and professionals in the PHP world in a comfortable and professional setting.

    At PHPSerbia Conference, you’ll have the unique opportunity to learn about the latest development trends and innovations, as well as to network with fellow attendees and the speakers.

    … read full article

    ', ), - 314 => + 314 => array ( 'title' => 'PHP 5.5.34 is available', 'id' => 'http://php.net/archive/2016.php#id2016-03-31-2', 'published' => '2016-03-31T12:58:50+00:00', 'updated' => '2016-03-31T12:58:50+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-03-31-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-31-2', 'rel' => 'via', @@ -17869,34 +17888,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 315 => + 315 => array ( 'title' => 'PHP 7.0.5 Released', 'id' => 'http://php.net/archive/2016.php#id2016-03-31-1', 'published' => '2016-03-31T13:00:00+01:00', 'updated' => '2016-03-31T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-03-31-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-31-1', 'rel' => 'via', @@ -17927,37 +17946,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 316 => + 316 => array ( 'title' => 'China PHP conference 2016', 'id' => 'http://php.net/archive/2016.php#id2016-03-30-1', 'published' => '2016-03-30T15:53:21+00:00', 'updated' => '2016-03-30T15:53:21+00:00', 'finalTeaserDate' => '2016-05-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-03-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-30-1', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://devlink.cn', @@ -17975,30 +17994,30 @@ the upgrade ', 'intro' => '

    DevLink is pleased to announce the China PHP Conference 2016.

    DevLink is a group dedicated to helping developers continuous improvement. China PHP Conference 2016 face to senior PHP programmers, found for better communication in China. It will be held on 5.14-5.15 2016 for a two-days in Beijing, and we have invited Rasums Lerdorf, Xinchen Hui and other best PHP experts as speakers. There\'re over 10 topics foucus on PHP performance optimization in the Alibaba double-11 events; PHP development of big data analysis; Swoole cluster development, and SOA applications programming; upgraded to PHP7 experience of enterprise application.

    … read full article

    ', ), - 317 => + 317 => array ( 'title' => 'PHPTour 2016', 'id' => 'http://php.net/archive/2016.php#id2016-03-15-1', 'published' => '2016-03-15T09:54:21+00:00', 'updated' => '2016-03-15T09:54:21+00:00', 'finalTeaserDate' => '2016-05-23', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-03-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-15-1', 'rel' => 'via', @@ -18021,34 +18040,34 @@ the upgrade 'intro' => '

    After Nantes, Lille, Lyon,and Luxembourg-City, this year the PHP Tour, the itinerant conference organized by the French PHP users group, goes to Clermont-Ferrand, a lovely city surrounded by volcanoes. Helped by Clermont\'ech, a local developers organization, AFUP is happy to welcome you on May 23rd and 24th at the Polydome convention centre.

    This year, part of the program will focus on performance. "The big don\'t eat the little, the fast eat the slow" (Eberhard von Kuenheim, BMW)

    … read full article

    ', ), - 318 => + 318 => array ( 'title' => 'PHP 5.6.19 is available', 'id' => 'http://php.net/archive/2016.php#id2016-03-03-3', 'published' => '2016-03-03T14:27:37-08:00', 'updated' => '2016-03-03T14:27:37-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-03-03-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-03-3', 'rel' => 'via', @@ -18078,34 +18097,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 319 => + 319 => array ( 'title' => 'PHP 5.5.33 is available', 'id' => 'http://php.net/archive/2016.php#id2016-03-03-2', 'published' => '2016-03-03T12:04:41+00:00', 'updated' => '2016-03-03T12:04:41+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-03-03-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-03-2', 'rel' => 'via', @@ -18135,34 +18154,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 320 => + 320 => array ( 'title' => 'PHP 7.0.4 Released', 'id' => 'http://php.net/archive/2016.php#id2016-03-03-1', 'published' => '2016-03-03T13:00:00+01:00', 'updated' => '2016-03-03T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-03-03-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-03-03-1', 'rel' => 'via', @@ -18193,37 +18212,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 321 => + 321 => array ( 'title' => 'PHPKonf: Istanbul PHP Conference 2016', 'id' => 'http://php.net/archive/2016.php#id2016-03-01-1', 'published' => '2016-03-01T09:00:00+00:00', 'updated' => '2016-03-01T09:00:00+00:00', 'finalTeaserDate' => '2016-05-21', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-03-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpkonf.org/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpkonf.org/', @@ -18238,37 +18257,37 @@ the upgrade ', 'intro' => '

    Istanbul PHP User Group is proud to announce that the PHPKonf 2016! We\'ll host some of the best speakers, awesome talk topics, latest technologies, and up to date news in PHP. Join us on 21st/22nd of May for a two day, double track conference in ancient city Istanbul! We’ve something for every level of PHP developer with 2 keynotes, 28 talks and 2 panels.

    http://phpkonf.org
    ', ), - 322 => + 322 => array ( 'title' => 'php[tek] 2016', 'id' => 'http://php.net/archive/2016.php#id2016-02-18-1', 'published' => '2016-02-18T14:47:35-05:00', 'updated' => '2016-02-18T14:47:35-05:00', 'finalTeaserDate' => '2016-05-23', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-02-18-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://tek.phparch.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://tek.phparch.com', @@ -18305,37 +18324,37 @@ the upgrade — running from May 23th-27th.

    This year we have moved the conference to a bigger venue, in St. Louis, in order to expand this year and for years to come.

    … read full article

    ', ), - 323 => + 323 => array ( 'title' => 'Midwest PHP 2016 Conference', 'id' => 'http://php.net/archive/2016.php#id2016-02-16-1', 'published' => '2016-02-16T10:46:00-06:00', 'updated' => '2016-02-16T10:46:00-06:00', 'finalTeaserDate' => '2016-03-05', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-02-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2016.midwestphp.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2016.midwestphp.org', @@ -18372,34 +18391,34 @@ the upgrade http://2016.midwestphp.org/register and we look forward to seeing you there.

    … read full article

    ', ), - 324 => + 324 => array ( 'title' => 'PHP 5.6.18 is available', 'id' => 'http://php.net/archive/2016.php#id2016-02-04-3', 'published' => '2016-02-04T12:08:37-08:00', 'updated' => '2016-02-04T12:08:37-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-02-04-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-02-04-3', 'rel' => 'via', @@ -18428,34 +18447,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 325 => + 325 => array ( 'title' => 'PHP 5.5.32 is available', 'id' => 'http://php.net/archive/2016.php#id2016-02-04-2', 'published' => '2016-02-04T10:39:10+00:00', 'updated' => '2016-02-04T10:39:10+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-02-04-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-02-04-2', 'rel' => 'via', @@ -18484,34 +18503,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 326 => + 326 => array ( 'title' => 'PHP 7.0.3 Released', 'id' => 'http://php.net/archive/2016.php#id2016-02-04-1', 'published' => '2016-02-04T13:00:00+01:00', 'updated' => '2016-02-04T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-02-04-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-02-04-1', 'rel' => 'via', @@ -18542,37 +18561,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 327 => + 327 => array ( 'title' => 'NortheastPHP Conference CfP Opens', 'id' => 'http://php.net/archive/2016.php#id2016-01-30-1', 'published' => '2016-01-30T04:50:46-05:00', 'updated' => '2016-01-30T04:50:46-05:00', 'finalTeaserDate' => '2016-03-31', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-01-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2016.northeastphp.org/call-for-papers/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2016.northeastphp.org/call-for-papers/', @@ -18593,37 +18612,37 @@ the upgrade ', 'intro' => '

    The team at NortheastPHP is excited to annouce that the Call for Speakers is open for our 2016 conference.

    This 5th annual conference that is focused on community is moving to Charlottetown, Prince Edward Island! We have a number of other updates that will be announced in the coming months as well.

    … read full article

    ', ), - 328 => + 328 => array ( 'title' => 'International PHP Conference 2016', 'id' => 'http://php.net/archive/2016.php#id2016-01-25-1', 'published' => '2016-01-25T09:54:24+01:00', 'updated' => '2016-01-25T09:54:24+01:00', 'finalTeaserDate' => '2016-05-29', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2016-01-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -18672,34 +18691,34 @@ the upgrade ', 'intro' => '

    The International PHP Conference is the world\'s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born - the IPC signifies knowledge transfer at highest level.

    All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the webinale taking place at the same time.

    … read full article

    ', ), - 329 => + 329 => array ( 'title' => 'PHP 5.6.17 is available', 'id' => 'http://php.net/archive/2016.php#id2016-01-07-3', 'published' => '2016-01-07T09:44:28-08:00', 'updated' => '2016-01-07T09:44:28-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-01-07-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-01-07-3', 'rel' => 'via', @@ -18728,34 +18747,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 330 => + 330 => array ( 'title' => 'PHP 5.5.31 is available', 'id' => 'http://php.net/archive/2016.php#id2016-01-07-2', 'published' => '2016-01-07T11:59:59+00:00', 'updated' => '2016-01-07T11:59:59+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-01-07-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-01-07-2', 'rel' => 'via', @@ -18784,34 +18803,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 331 => + 331 => array ( 'title' => 'PHP 7.0.2 Released', 'id' => 'http://php.net/archive/2016.php#id2016-01-07-1', 'published' => '2016-01-07T13:00:00+01:00', 'updated' => '2016-01-07T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2016-01-07-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2016.php#id2016-01-07-1', 'rel' => 'via', @@ -18840,34 +18859,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 332 => + 332 => array ( 'title' => 'PHP 7.0.1 Released', 'id' => 'http://php.net/archive/2015.php#id2015-12-17-1', 'published' => '2015-12-17T15:30:00+01:00', 'updated' => '2015-12-17T15:30:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-12-17-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-12-17-1', 'rel' => 'via', @@ -18896,37 +18915,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 333 => + 333 => array ( 'title' => 'php[tek] 2016 Call for Speakers', 'id' => 'http://php.net/archive/2015.php#id2015-12-16-1', 'published' => '2015-12-16T13:33:38+00:00', 'updated' => '2015-12-16T13:33:38+00:00', 'finalTeaserDate' => '2016-01-16', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-12-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://tek.phparch.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://tek.phparch.com/', @@ -18951,34 +18970,34 @@ the upgrade ', 'intro' => '

    The team at php[architect] is excited to annouce that the Call for Speakers is open for php[tek] 2016.

    This 11th annual conference that is focused on community is this year moving to a bigger venue in Saint Louis so that we can expand and give our attendees some elbow room! We have a number of other updates that will be announced in the coming months as well.

    … read full article

    ', ), - 334 => + 334 => array ( 'title' => 'PHP 7.0.0 Released', 'id' => 'http://php.net/archive/2015.php#id2015-12-03-1', 'published' => '2015-12-03T22:30:00+01:00', 'updated' => '2015-12-03T22:30:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-12-03-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-12-03-1', 'rel' => 'via', @@ -19042,37 +19061,37 @@ the upgrade and new features such as

    … read full article

    ', ), - 335 => + 335 => array ( 'title' => 'php[cruise]', 'id' => 'http://php.net/archive/2015.php#id2015-12-01-1', 'published' => '2015-12-01T18:12:59+00:00', 'updated' => '2015-12-01T18:12:59+00:00', 'finalTeaserDate' => '2016-07-17', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-12-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://cruise.phparch.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://cruise.phparch.com/', @@ -19108,34 +19127,34 @@ the upgrade any questions don’t hesitate to contact us.

    … read full article

    ', ), - 336 => + 336 => array ( 'title' => 'PHP 5.6.16 is available', 'id' => 'http://php.net/archive/2015.php#id2015-11-26-2', 'published' => '2015-11-26T14:18:28-08:00', 'updated' => '2015-11-26T14:18:28-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-11-26-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-11-26-2', 'rel' => 'via', @@ -19166,34 +19185,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 337 => + 337 => array ( 'title' => 'PHP 7.0.0 RC 8 Released', 'id' => 'http://php.net/archive/2015.php#id2015-11-26-1', 'published' => '2015-11-26T13:00:00+01:00', 'updated' => '2015-11-26T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-11-26-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-11-26-1', 'rel' => 'via', @@ -19261,34 +19280,34 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 338 => + 338 => array ( 'title' => 'PHP 7.0.0 RC 7 Released', 'id' => 'http://php.net/archive/2015.php#id2015-11-12-1', 'published' => '2015-11-12T13:00:00+01:00', 'updated' => '2015-11-12T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-11-12-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-11-12-1', 'rel' => 'via', @@ -19357,34 +19376,34 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 339 => + 339 => array ( 'title' => 'PHP 5.6.15 is available', 'id' => 'http://php.net/archive/2015.php#id2015-10-29-2', 'published' => '2015-10-29T23:18:58-07:00', 'updated' => '2015-10-29T23:18:58-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-10-29-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-10-29-2', 'rel' => 'via', @@ -19415,34 +19434,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 340 => + 340 => array ( 'title' => 'PHP 7.0.0 RC 6 Released', 'id' => 'http://php.net/archive/2015.php#id2015-10-29-1', 'published' => '2015-10-29T13:00:00+01:00', 'updated' => '2015-10-29T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-10-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-10-29-1', 'rel' => 'via', @@ -19509,37 +19528,37 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 341 => + 341 => array ( 'title' => 'PhpConference Brasil 2015', 'id' => 'http://php.net/archive/2015.php#id2015-10-15-3', 'published' => '2015-10-15T22:00:00-03:00', 'updated' => '2015-10-15T22:00:00-03:00', 'finalTeaserDate' => '2015-12-02', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-10-15-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpconference.com.br', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpconference.com.br', @@ -19584,34 +19603,34 @@ the upgrade wednesday, december 2nd, and ending on december 6th - on a beach!

    … read full article

    ', ), - 342 => + 342 => array ( 'title' => 'PHP 7.0.0 RC 5 Released', 'id' => 'http://php.net/archive/2015.php#id2015-10-15-2', 'published' => '2015-10-15T13:00:00+01:00', 'updated' => '2015-10-15T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-10-15-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-10-15-2', 'rel' => 'via', @@ -19678,37 +19697,37 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 343 => + 343 => array ( 'title' => 'PHP Frameworks Day 2015', 'id' => 'http://php.net/archive/2015.php#id2015-10-15-1', 'published' => '2015-10-15T12:05:32-04:00', 'updated' => '2015-10-15T12:05:32-04:00', 'finalTeaserDate' => '2015-10-19', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-10-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://frameworksdays.com/event/php-frameworks-day-2015', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://frameworksdays.com/event/php-frameworks-day-2015', @@ -19741,37 +19760,37 @@ the upgrade ', 'intro' => '

    #fwdays invites everybody interested in PHP topic to attend PHP Frameworks Day 2015 conference on October 17.

    This is the third time PHP Frameworks Day is being held and each time it grows and becomes more interesting! Watch how we spent PHP Frameworks Day 2014.

    … read full article

    ', ), - 344 => + 344 => array ( 'title' => 'SunshinePHP 2016', 'id' => 'http://php.net/archive/2015.php#id2015-10-07-1', 'published' => '2015-10-07T12:05:32-04:00', 'updated' => '2015-10-07T12:05:32-04:00', 'finalTeaserDate' => '2016-02-04', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-10-07-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2016.sunshinephp.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2016.sunshinephp.com', @@ -19794,34 +19813,34 @@ the upgrade ', 'intro' => '

    WooHoo! SunshinePHP has hit it\'s 4th year and will happen from February 4th - 6th, 2016 in sunny Miami, Florida.

    As one of the largest community conferences in the U.S. our call for papers ended with 600+ submissions, so there is no doubt the schedule will be amazing this year. We will have a full tutorial day featuring 3-hour sessions followed by 2 days of 1-hour talks and inspirational keynotes.

    … read full article

    ', ), - 345 => + 345 => array ( 'title' => 'PHP 5.6.14 is available', 'id' => 'http://php.net/archive/2015.php#id2015-10-01-3', 'published' => '2015-10-01T16:32:14-07:00', 'updated' => '2015-10-01T16:32:14-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-10-01-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-10-01-3', 'rel' => 'via', @@ -19850,34 +19869,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 346 => + 346 => array ( 'title' => 'PHP 5.5.30 is available', 'id' => 'http://php.net/archive/2015.php#id2015-10-01-2', 'published' => '2015-10-01T15:44:13+00:00', 'updated' => '2015-10-01T15:44:13+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-10-01-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-10-01-2', 'rel' => 'via', @@ -19906,34 +19925,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 347 => + 347 => array ( 'title' => 'PHP 7.0.0 RC 4 Released', 'id' => 'http://php.net/archive/2015.php#id2015-10-01-1', 'published' => '2015-10-01T13:00:00+01:00', 'updated' => '2015-10-01T13:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-10-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-10-01-1', 'rel' => 'via', @@ -20000,42 +20019,42 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 348 => + 348 => array ( 'title' => 'PHPBenelux Conference 2016', 'id' => 'http://php.net/archive/2015.php#id2015-09-30-1', 'published' => '2015-09-30T09:56:51-04:00', 'updated' => '2015-09-30T09:56:51-04:00', 'finalTeaserDate' => '2015-10-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), - 1 => + 1 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-09-30-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://conference.phpbenelux.eu/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://conference.phpbenelux.eu/', @@ -20082,34 +20101,34 @@ the upgrade hallway tracks between and after the sessions.

    … read full article

    ', ), - 349 => + 349 => array ( 'title' => 'PHP 7.0.0 RC 3 Released', 'id' => 'http://php.net/archive/2015.php#id2015-09-17-2', 'published' => '2015-09-17T12:30:00+01:00', 'updated' => '2015-09-17T12:30:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-09-17-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-09-17-2', 'rel' => 'via', @@ -20181,37 +20200,37 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 350 => + 350 => array ( 'title' => 'PHPConf Taiwan 2015', 'id' => 'http://php.net/archive/2015.php#id2015-09-15-1', 'published' => '2015-09-15T16:25:12+00:00', 'updated' => '2015-09-30T09:09:09+01:00', 'finalTeaserDate' => '2015-10-09', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-09-15-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2015.phpconf.tw', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2015.phpconf.tw', @@ -20225,37 +20244,37 @@ the upgrade ', 'intro' => '

    We are honored to announce PHPConf Taiwan 2015 will be held in Taipei, Taiwan on Oct. 9th. As the biggest PHP event in Taiwan, PHPConf attracts hundreds of developers and users in Taiwan to share their knowledge on PHP. This year, to celebrate the 20th anniversary of the invention of PHP and the release of PHP 7, Mr. Rasmus Lerdorf, creator of PHP, and Mr. Xinchen Hui, member from the PHP core developer team, are invited to be our keynote speakers. In addition, we also invited well-known developers in Taiwan to share their expertise and experience at PHPConf. The two-track agenda covers various topics, including Big Data, horizontal extension, software architecture, ORM and Async I/O… etc.

    For ticketing and other information, please visit http://2015.phpconf.tw. We look forward to seeing you in Taipei this October!

    ', ), - 351 => + 351 => array ( 'title' => 'PHPConf.Asia 2015', 'id' => 'http://php.net/archive/2015.php#id2015-09-04-5', 'published' => '2015-09-04T11:29:00+08:00', 'updated' => '2015-09-04T11:29:00+08:00', 'finalTeaserDate' => '2015-09-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-09-04-5', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpconf.asia', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpconf.asia', @@ -20274,34 +20293,34 @@ the upgrade ', 'intro' => '

    Join us at PHPConf.Asia 2015 - The First Pan-Asian PHP Conference

    The inaugural pan-Asian PHP conference will take place on 22 & 23 September 2015 in Singapore - the Garden City of the East! Come and meet with the fastest growing PHP communities in Asia. More than 200 attendees are expected in this single track conference.

    … read full article

    ', ), - 352 => + 352 => array ( 'title' => 'PHP 5.4.45 Released', 'id' => 'http://php.net/archive/2015.php#id2015-09-04-4', 'published' => '2015-09-04T12:37:46-07:00', 'updated' => '2015-09-04T12:37:46-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-09-04-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-09-04-4', 'rel' => 'via', @@ -20334,34 +20353,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    … read full article

    ', ), - 353 => + 353 => array ( 'title' => 'PHP 5.5.29 is available', 'id' => 'http://php.net/archive/2015.php#id2015-09-04-3', 'published' => '2015-09-04T16:00:38+00:00', 'updated' => '2015-09-04T16:00:38+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-09-04-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-09-04-3', 'rel' => 'via', @@ -20391,34 +20410,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 354 => + 354 => array ( 'title' => 'PHP 5.6.13 is available', 'id' => 'http://php.net/archive/2015.php#id2015-09-04-2', 'published' => '2015-09-04T08:40:46-07:00', 'updated' => '2015-09-04T08:40:46-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-09-04-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-09-04-2', 'rel' => 'via', @@ -20449,34 +20468,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 355 => + 355 => array ( 'title' => 'PHP 7.0.0 RC 2 Released', 'id' => 'http://php.net/archive/2015.php#id2015-09-04-1', 'published' => '2015-09-04T11:30:00+01:00', 'updated' => '2015-09-04T11:30:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-09-04-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-09-04-1', 'rel' => 'via', @@ -20542,37 +20561,37 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 356 => + 356 => array ( 'title' => 'International PHP Conference 2015', 'id' => 'http://php.net/archive/2015.php#id2015-08-31-1', 'published' => '2015-08-31T11:33:03+02:00', 'updated' => '2015-08-31T11:33:03+02:00', 'finalTeaserDate' => '2015-10-25', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-08-31-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://phpconference.com', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://phpconference.com', @@ -20622,34 +20641,34 @@ the upgrade ', 'intro' => '

    The International PHP Conference is the world’s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. At the IPC, internationally renowned experts from the PHP industry meet up with PHP users and developers from large and small companies. Here is the place where concepts emerge and ideas are born – the IPC signifies knowledge transfer at highest level.

    All delegates of the International PHP Conference have, in addition to PHP program, free access to the entire range of the WebTechCon taking place at the same time.

    … read full article

    ', ), - 357 => + 357 => array ( 'title' => 'PHP 7.0.0 RC 1 Released', 'id' => 'http://php.net/archive/2015.php#id2015-08-21-1', 'published' => '2015-08-21T10:10:00+01:00', 'updated' => '2015-08-21T10:10:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-08-21-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-08-21-1', 'rel' => 'via', @@ -20715,34 +20734,34 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 358 => + 358 => array ( 'title' => 'PHP 5.6.12 is available', 'id' => 'http://php.net/archive/2015.php#id2015-08-06-4', 'published' => '2015-08-06T23:30:25-07:00', 'updated' => '2015-08-06T23:30:25-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-08-06-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-08-06-4', 'rel' => 'via', @@ -20771,34 +20790,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 359 => + 359 => array ( 'title' => 'PHP 5.5.28 Released', 'id' => 'http://php.net/archive/2015.php#id2015-08-06-3', 'published' => '2015-08-06T21:59:41-07:00', 'updated' => '2015-08-06T21:59:41-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-08-06-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-08-06-3', 'rel' => 'via', @@ -20836,34 +20855,34 @@ the upgrade PHP 5.5 users that need further bugfixes are encouraged to upgrade to PHP 5.6.

    … read full article

    ', ), - 360 => + 360 => array ( 'title' => 'PHP 5.4.44 Released', 'id' => 'http://php.net/archive/2015.php#id2015-08-06-2', 'published' => '2015-08-06T21:58:57-07:00', 'updated' => '2015-08-06T21:58:57-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-08-06-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-08-06-2', 'rel' => 'via', @@ -20894,34 +20913,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    … read full article

    ', ), - 361 => + 361 => array ( 'title' => 'PHP 7.0.0 Beta 3 Released', 'id' => 'http://php.net/archive/2015.php#id2015-08-06-1', 'published' => '2015-08-06T17:20:00+01:00', 'updated' => '2015-08-06T17:20:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-08-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-08-06-1', 'rel' => 'via', @@ -20987,34 +21006,34 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 362 => + 362 => array ( 'title' => 'PHP 7.0.0 Beta 2 Released', 'id' => 'http://php.net/archive/2015.php#id2015-07-24-1', 'published' => '2015-07-24T02:40:00+01:00', 'updated' => '2015-07-24T02:00:40+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-07-24-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-07-24-1', 'rel' => 'via', @@ -21080,34 +21099,34 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 363 => + 363 => array ( 'title' => 'PHP 7.0.0 Beta 1 Released', 'id' => 'http://php.net/archive/2015.php#id2015-07-10-4', 'published' => '2015-07-10T23:30:00+01:00', 'updated' => '2015-07-10T23:30:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-07-10-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-07-10-4', 'rel' => 'via', @@ -21177,34 +21196,34 @@ the upgrade and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 364 => + 364 => array ( 'title' => 'PHP 5.6.11 is available', 'id' => 'http://php.net/archive/2015.php#id2015-07-10-3', 'published' => '2015-07-10T02:52:09-07:00', 'updated' => '2015-07-10T02:52:09-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-07-10-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-07-10-3', 'rel' => 'via', @@ -21232,34 +21251,34 @@ the upgrade The list of changes is recorded in the ChangeLog.

    ', ), - 365 => + 365 => array ( 'title' => 'PHP 5.5.27 released', 'id' => 'http://php.net/archive/2015.php#id2015-07-10-2', 'published' => '2015-07-10T09:24:47+00:00', 'updated' => '2015-07-10T09:24:47+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-07-10-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-07-10-2', 'rel' => 'via', @@ -21297,34 +21316,34 @@ the upgrade PHP 5.5 users that need further bugfixes are encouraged to upgrade to PHP 5.6.

    … read full article

    ', ), - 366 => + 366 => array ( 'title' => 'PHP 5.4.43 Released', 'id' => 'http://php.net/archive/2015.php#id2015-07-09-1', 'published' => '2015-07-09T21:09:50-07:00', 'updated' => '2015-07-09T21:09:50-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-07-09-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-07-09-1', 'rel' => 'via', @@ -21356,37 +21375,37 @@ the upgrade The list of changes is recorded in the ChangeLog.

    … read full article

    ', ), - 367 => + 367 => array ( 'title' => 'Pacific Northwest PHP Conference 2015', 'id' => 'http://php.net/archive/2015.php#id2015-07-10-1', 'published' => '2015-07-10T02:00:00+01:00', 'updated' => '2015-07-10T02:00:00+01:00', 'finalTeaserDate' => '2015-07-20', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-07-10-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.pnwphp.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.pnwphp.com/', @@ -21413,37 +21432,37 @@ the upgrade For tickets and more information: http://www.pnwphp.com/.

    ', ), - 368 => + 368 => array ( 'title' => 'PHPKonf İstanbul PHP Conference 2015', 'id' => 'http://php.net/archive/2015.php#id2015-07-04-1', 'published' => '2015-07-04T10:00:00+00:00', 'updated' => '2015-07-04T10:00:00+00:00', 'finalTeaserDate' => '2015-07-25', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-07-04-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpkonf.org/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpkonf.org/', @@ -21458,37 +21477,37 @@ the upgrade ', 'intro' => '

    İstanbul PHP User Group is proud to announce that the PHPKonf 2015! We\'ll host some of the best speakers, awesome talk topics, latest technologies, and up to date news in PHP. Join us on 25/26 of July for a two day, double track conference in ancient city Istanbul! We’ve something for every level of PHP developer with 2 keynotes, 29 talks and 2 panels.

    http://phpkonf.org
    ', ), - 369 => + 369 => array ( 'title' => 'php[world] 2015 Schedule Announced', 'id' => 'http://php.net/archive/2015.php#id2015-06-29-1', 'published' => '2015-06-29T15:58:16+00:00', 'updated' => '2015-06-29T15:58:16+00:00', 'finalTeaserDate' => '2015-11-16', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-06-29-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/', @@ -21510,37 +21529,37 @@ the upgrade ', 'intro' => '

    The team at php[architect] is excited to announce the schedule for php[world] 2015! As always our conference is designed to bring all the various PHP communities together in one place to learn from each other. We will have separate tracks for PHP, Drupal, WordPress, Magento, Joomla!, Zend Framework, Symfony, Laravel, and CakePHP.

    This year we are expanding the conference to 6 concurrent sessions so that we can cover even more material. Join us for this very unique event from November 16th through November 20th.

    … read full article

    ', ), - 370 => + 370 => array ( 'title' => 'AFUP ForumPHP 2015', 'id' => 'http://php.net/archive/2015.php#id2015-06-27-1', 'published' => '2015-06-27T09:03:03+00:00', 'updated' => '2015-06-27T09:03:03+00:00', 'finalTeaserDate' => '2015-08-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-06-27-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.afup.org/pages/forumphp2015/appel-a-conferenciers-en.php', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.afup.org/pages/forumphp2015/appel-a-conferenciers-en.php', @@ -21560,34 +21579,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in ', 'intro' => '

    Come and join us at Forum PHP 2015, our annual conference gathering all PHP and Open Source communities, pros and PHP lovers.

    This year, the event will be held at Beffroi de Montrouge, on November, 23rd and 24th.

    … read full article

    ', ), - 371 => + 371 => array ( 'title' => 'PHP 7.0.0 Alpha 2 Released', 'id' => 'http://php.net/archive/2015.php#id2015-06-25-1', 'published' => '2015-06-25T12:00:00+01:00', 'updated' => '2015-06-25T12:00:00+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-06-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-06-25-1', 'rel' => 'via', @@ -21654,42 +21673,42 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 372 => + 372 => array ( 'title' => 'Madison PHP Conference 2015', 'id' => 'http://php.net/archive/2015.php#id2015-06-23-1', 'published' => '2015-06-23T11:00:00+00:00', 'updated' => '2015-06-23T11:00:00+00:00', 'finalTeaserDate' => '2015-11-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), - 1 => + 1 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-06-23-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.madisonphpconference.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.madisonphpconference.com/', @@ -21704,37 +21723,37 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in ', 'intro' => '

    Join us on Saturday, November 14th, 2015 for a one day, three track conference in Madison, Wisconsin, USA that focuses on PHP and related web technologies. This event is organized by Madison PHP and is designed to offer something to attendees at all skill levels. It will be a day of networking, learning, sharing, and great fun!

    Our Call for Papers is open until August 4th, 2015:
    http://cfp.madisonphpconference.com/

    ', ), - 373 => + 373 => array ( 'title' => 'ZendCon 2015', 'id' => 'http://php.net/archive/2015.php#id2015-06-19-1', 'published' => '2015-06-19T10:00:00+00:00', 'updated' => '2015-06-19T10:00:00+00:00', 'finalTeaserDate' => '2015-10-19', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-06-19-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.zendcon.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.zendcon.com/', @@ -21751,34 +21770,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in ', 'intro' => '

    Announcing ZendCon 2015, the global PHP conference, happening at the exciting Hard Rock Hotel & Casino in Las Vegas, Nevada. It will start with a full day of tutorials on October 19th and then continue with inspirational keynotes and breakout sessions through the 22nd.

    The conference will feature many of the top developers and speakers in the PHP space to deliver dedicated tracks centered around Zend Framework, Symfony, Laravel, WordPress, Joomla!, Drupal, and Magento. We will also host additional tracks for PHP best practices, PHP architecture, IBM i, and PHP 7.

    … read full article

    ', ), - 374 => + 374 => array ( 'title' => 'PHP 5.4.42 Released', 'id' => 'http://php.net/archive/2015.php#id2015-06-11-4', 'published' => '2015-06-11T20:43:05-07:00', 'updated' => '2015-06-11T20:43:05-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-06-11-4', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-06-11-4', 'rel' => 'via', @@ -21809,34 +21828,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 375 => + 375 => array ( 'title' => 'PHP 7.0.0 Alpha 1 Released', 'id' => 'http://php.net/archive/2015.php#id2015-06-11-3', 'published' => '2015-06-11T23:24:10+01:00', 'updated' => '2015-06-12T17:07:56+01:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), - 1 => + 1 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-06-11-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-06-11-3', 'rel' => 'via', @@ -21898,34 +21917,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in and report any bugs and incompatibilities in the bug tracking system.

    THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

    … read full article

    ', ), - 376 => + 376 => array ( 'title' => 'PHP 5.6.10 is available', 'id' => 'http://php.net/archive/2015.php#id2015-06-11-2', 'published' => '2015-06-11T11:34:42-07:00', 'updated' => '2015-06-11T11:34:42-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-06-11-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-06-11-2', 'rel' => 'via', @@ -21956,34 +21975,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 377 => + 377 => array ( 'title' => 'PHP 5.5.26 is available', 'id' => 'http://php.net/archive/2015.php#id2015-06-11-1', 'published' => '2015-06-11T15:39:10+00:00', 'updated' => '2015-06-11T15:39:10+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-06-11-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-06-11-1', 'rel' => 'via', @@ -22014,42 +22033,42 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 378 => + 378 => array ( 'title' => 'PHP Barcelona Conference 2015', 'id' => 'http://php.net/archive/2015.php#id2015-06-01-1', 'published' => '2015-06-01T23:45:28-04:00', 'updated' => '2015-06-01T23:45:28-04:00', 'finalTeaserDate' => '2015-10-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), - 1 => + 1 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-06-01-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2015.phpconference.es/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2015.phpconference.es/', @@ -22064,37 +22083,37 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in ', 'intro' => '

    The PHP Barcelona User Group is proud to announce that the PHP Barcelona Conference is back! This year we are preparing a bigger event in the heart of a glamorous city. 2 days, 30th - 31st October, one track with amazing and stunning talks.

    We opened the call for papers that will end on the 30th September 2015 — 2015.phpconference.es/call-for-papers. So what are you waiting for, go, submit your paper! We offer attractive packages to speakers who want to enroll! Come and join us! :)

    ', ), - 379 => + 379 => array ( 'title' => 'php[world] 2015 Call for Speakers', 'id' => 'http://php.net/archive/2015.php#id2015-05-27-3', 'published' => '2015-05-27T23:48:38-04:00', 'updated' => '2015-05-27T23:48:38-04:00', 'finalTeaserDate' => '2015-06-06', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-05-27-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'https://world.phparch.com/call-for-papers/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'https://world.phparch.com/call-for-papers/', @@ -22112,42 +22131,42 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in ', 'intro' => '

    The team at php[architect] is once again running php[world]. The original conference designed to bring the whole world of PHP together in one place. With dedicated tracks for WordPress, Drupal, Joomla!, Magneto, Laravel, Symfony, Zend Framework, and CakePHP!

    The Call for Speakers is currently open, but only until June 6th, so get those submissions in soon! We are interested in sessions on any framework, application, or general PHP topics. We especially want to see sessions that are designed to encourage people to mingle and be exposed to other PHP communities that they don\'t interact with on a daily basis.

    … read full article

    ', ), - 380 => + 380 => array ( 'title' => 'PHP Craft Johannesburg', 'id' => 'http://php.net/archive/2015.php#id2015-05-27-2', 'published' => '2015-05-27T23:45:28-04:00', 'updated' => '2015-05-27T23:45:28-04:00', 'finalTeaserDate' => '2015-06-17', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), - 1 => + 1 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-05-27-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://phpsouthafrica.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://phpsouthafrica.com/', @@ -22163,37 +22182,37 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in ', 'intro' => '

    Our 2nd Annual PHP Craft Conference will be hosted in Johannesburg South Africa. 2 Days of fantastic content presented by local and international speakers.

    Our Call for Papers now open and will close 17th June 2015. We hope to see some great topics covering fancy new tools and/or best Practice — www.phpsouthafrica.com

    ', ), - 381 => + 381 => array ( 'title' => 'China PHP Conference 2015', 'id' => 'http://php.net/archive/2015.php#id2015-05-27-1', 'published' => '2015-05-27T23:36:31-04:00', 'updated' => '2015-05-27T23:36:31-04:00', 'finalTeaserDate' => '2015-06-06', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-05-27-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.phpconchina.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpconchina.com/', @@ -22215,37 +22234,37 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in ', 'intro' => '

    China PHP Conference 2015

    3rd Annual China PHP Conference – June 6 to 7, Beijing and July 11 to 12, Shanghai

    … read full article

    ', ), - 382 => + 382 => array ( 'title' => 'DevConf 2015', 'id' => 'http://www.php.net/archive/2015.php#id2015-05-25-1', 'published' => '2015-05-25T16:57:52+00:00', 'updated' => '2015-05-25T16:57:52+00:00', 'finalTeaserDate' => '2015-06-20', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-05-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://devconf.ru', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://devconf.ru', @@ -22285,34 +22304,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in combining several language-specific conferences under one roof.

    … read full article

    ', ), - 383 => + 383 => array ( 'title' => 'PHP 5.6.9 is available', 'id' => 'http://php.net/archive/2015.php#id2015-05-14-3', 'published' => '2015-05-14T23:20:57-07:00', 'updated' => '2015-05-14T23:20:57-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-05-14-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-05-14-3', 'rel' => 'via', @@ -22341,34 +22360,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 384 => + 384 => array ( 'title' => 'PHP 5.4.41 Released', 'id' => 'http://php.net/archive/2015.php#id2015-05-14-2', 'published' => '2015-05-14T21:35:21-07:00', 'updated' => '2015-05-14T21:35:21-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-05-14-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-05-14-2', 'rel' => 'via', @@ -22397,34 +22416,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 385 => + 385 => array ( 'title' => 'PHP 5.5.25 is available', 'id' => 'http://php.net/archive/2015.php#id2015-05-14-1', 'published' => '2015-05-14T17:06:54+00:00', 'updated' => '2015-05-14T17:06:54+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-05-14-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-05-14-1', 'rel' => 'via', @@ -22453,42 +22472,42 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 386 => + 386 => array ( 'title' => '2015 Northeast PHP Conference', 'id' => 'http://php.net/archive/2015.php#id2015-05-06-1', 'published' => '2015-05-06T00:32:35+02:00', 'updated' => '2015-07-23T21:13:00+02:00', 'finalTeaserDate' => '2015-08-23', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), - 1 => + 1 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-05-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2015.northeastphp.org', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2015.northeastphp.org', @@ -22517,34 +22536,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in We’ve got all the rockstars from our industry in one place just for you! With talks ranging from starting to work in the industry to expanding your skill set as an experienced user; we have sessions for everyone!

    … read full article

    ', ), - 387 => + 387 => array ( 'title' => 'PHP 5.4.40 Released', 'id' => 'http://php.net/archive/2015.php#id2015-04-16-3', 'published' => '2015-04-16T13:43:02-07:00', 'updated' => '2015-04-16T13:43:02-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-04-16-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-04-16-3', 'rel' => 'via', @@ -22575,34 +22594,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 388 => + 388 => array ( 'title' => 'PHP 5.6.8 is available', 'id' => 'http://php.net/archive/2015.php#id2015-04-16-2', 'published' => '2015-04-16T10:50:30-07:00', 'updated' => '2015-04-16T10:50:30-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-04-16-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-04-16-2', 'rel' => 'via', @@ -22631,34 +22650,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 389 => + 389 => array ( 'title' => 'PHP 5.5.24 is available', 'id' => 'http://php.net/archive/2015.php#id2015-04-16-1', 'published' => '2015-04-16T15:25:09+00:00', 'updated' => '2015-04-16T15:25:09+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-04-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-04-16-1', 'rel' => 'via', @@ -22687,34 +22706,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 390 => + 390 => array ( 'title' => 'PHP 5.6.7 is available', 'id' => 'http://php.net/archive/2015.php#id2015-03-20-2', 'published' => '2015-03-20T04:21:46-07:00', 'updated' => '2015-03-20T04:21:46-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-03-20-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-03-20-2', 'rel' => 'via', @@ -22744,34 +22763,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 391 => + 391 => array ( 'title' => 'PHP 5.5.23 is available', 'id' => 'http://php.net/archive/2015.php#id2015-03-20-1', 'published' => '2015-03-20T09:11:37+00:00', 'updated' => '2015-03-20T09:11:37+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-03-20-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-03-20-1', 'rel' => 'via', @@ -22800,34 +22819,34 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 392 => + 392 => array ( 'title' => 'PHP 5.4.39 Released', 'id' => 'http://php.net/archive/2015.php#id2015-03-19-2', 'published' => '2015-03-19T23:01:55-07:00', 'updated' => '2015-03-19T23:01:55-07:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-03-19-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-03-19-2', 'rel' => 'via', @@ -22856,37 +22875,37 @@ In 1995, Rasmus Lerdorf started creating PHP. 20 years later, 80% of websites in The list of changes is recorded in the ChangeLog.

    ', ), - 393 => + 393 => array ( 'title' => 'PHP Tour Luxembourg', 'id' => 'http://php.net/archive/2015.php#id2015-03-19-1', 'published' => '2015-03-19T15:33:43+00:00', 'updated' => '2015-03-19T15:33:43+00:00', 'finalTeaserDate' => '2015-05-12', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-03-19-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.afup.org/pages/phptourluxembourg2015/apropos-en.php', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.afup.org/pages/phptourluxembourg2015/apropos-en.php', @@ -22906,37 +22925,37 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop ', 'intro' => '

    For the first time, the PHP Tour will take place outside of France: AFUP and the locale branch of Luxembourg will welcome you at the Abbey of Neumünster, a historical venue in the heart of Luxembourg City. English speakers? Come and join us, many talks will be proposed in english.

    AFUP, The French PHP usergroup, is glad to announce that the fourth edition of the PHP Tour will be held in Luxembourg City on May 12 & 13, 2015. PHP experts will share their advanced knowledge and experience with developers, decision makers and companies, during keynotes, sessions and workshops.

    … read full article

    ', ), - 394 => + 394 => array ( 'title' => 'Italian phpDay 2015', 'id' => 'http://php.net/archive/2015.php#id2015-03-18-1', 'published' => '2015-03-18T19:55:00+01:00', 'updated' => '2015-03-18T19:55:00+01:00', 'finalTeaserDate' => '2015-05-15', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-03-18-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2015.phpday.it/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2015.phpday.it/', @@ -22951,42 +22970,42 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop ', 'intro' => '

    The Italian PHP user group GrUSP is pleased to announce the 12th edition of the Italian phpDay (http://www.phpday.it/) conference, taking place on May 15th and 16th, 2015 in Verona.

    phpDay is the first historic Italian conference dedicated solely to PHP development, technologies and management. It is aimed to IT managers, developers and innovators. Each year it renews the opportunity to link to new business partners.

    ', ), - 395 => + 395 => array ( 'title' => 'Bulgaria PHP Conference', 'id' => 'http://php.net/archive/2015.php#id2015-02-25-3', 'published' => '2015-02-25T12:53:27+01:00', 'updated' => '2015-02-25T12:53:27+01:00', 'finalTeaserDate' => '2015-03-16', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), - 1 => + 1 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-02-25-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://bgphp.org/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://bgphp.org/', @@ -23003,37 +23022,37 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop ', 'intro' => '

    The Bulgaria PHP Conference is an event organized by the local PHP user group: @bgphp. This is going to be our first conference but nonetheless we have attracted a number of prominent international and local speakers (http://www.bgphp.org/confirmed-speakers/). We expect 450 attendees from Bulgaria, the Balkans region, Europe, and other parts of the world. We welcome a diverse crowd of PHP developers who want to learn new things and share their passion for code.

    Bulgaria is one of the fastest growing IT regions. A lot of international companies outsource their IT departments in the country. The PHP community is large and actively travels abroad to attend international summits of all kinds. The official language of the conference is English and all talks and sessions will be in English. Attendees and sponsors will be pleasantly surprised by the affordability of all services in the country. Hotel accommodation, food and even the tickets for the event are quite affordable, given the high quality of service you’ll get in return.

    … read full article

    ', ), - 396 => + 396 => array ( 'title' => 'Lone Star PHP 2015', 'id' => 'http://php.net/archive/2015.php#id2015-02-25-2', 'published' => '2015-02-25T11:21:44+01:00', 'updated' => '2015-02-25T11:21:44+01:00', 'finalTeaserDate' => '2015-04-16', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-02-25-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://lonestarphp.com/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://lonestarphp.com/', @@ -23048,37 +23067,37 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop ', 'intro' => '

    Welcome back to Lone Star PHP for another great year! We\'re in our fifth year and we\'re making things better all the time. This year\'s event will provide all of the great PHP speakers and content you\'ve come to expect from Lone Star PHP. This year we are introducing the Training Day. Training Day will provide a more hands-on experience for all that attend. There\'ll be plenty of time to spend with the local PHP community too through after-parties and other events.

    Thanks to the generous support of our sponsors year after year we\'re able to present this conference at minimal cost to our attendees, opening up attendance to many who could not normally justify the cost of similar events. We couldn\'t do it without their support and we hope that this year you\'ll help us share this experience with the community. With the amazing feedback we receive each year from our attendees and sponsors we continue to improve our event to keep our place as the best php community conference around.

    ', ), - 397 => + 397 => array ( 'title' => 'SOLIDay 2015', 'id' => 'http://php.net/archive/2015.php#id2015-02-25-1', 'published' => '2015-02-25T11:14:34+01:00', 'updated' => '2015-02-25T11:14:34+01:00', 'finalTeaserDate' => '2015-05-30', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-02-25-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://soliday.phpsrbija.rs/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://soliday.phpsrbija.rs/', @@ -23093,34 +23112,34 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop ', 'intro' => '

    Conference about software architecture, best programming practices and design patterns.

    PHP Serbia will be organizing a big event on May 30, 2015 – SOLIDay conference. Nicely coined name, huh? It will be one of the major events in the region, on which you will have opportunity to attend presentations of world-famous PHP experts and professionals, on topic of OOP principles, design patterns, software architecture, frameworks and similar. Whether you are a novice, intermediate or advanced developer, join us on this conference and expand, improve or simply refresh your knowledge of this important topic.

    ', ), - 398 => + 398 => array ( 'title' => 'PHP 5.6.6 is available', 'id' => 'http://php.net/archive/2015.php#id2015-02-19-2', 'published' => '2015-02-19T12:43:52-08:00', 'updated' => '2015-02-19T12:43:52-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-02-19-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-02-19-2', 'rel' => 'via', @@ -23149,34 +23168,34 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop The list of changes is recorded in the ChangeLog.

    ', ), - 399 => + 399 => array ( 'title' => 'PHP 5.5.22 is available', 'id' => 'http://php.net/archive/2015.php#id2015-02-19-1', 'published' => '2015-02-19T12:45:19+00:00', 'updated' => '2015-02-19T12:45:19+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-02-19-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-02-19-1', 'rel' => 'via', @@ -23205,34 +23224,34 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop The list of changes is recorded in the ChangeLog.

    ', ), - 400 => + 400 => array ( 'title' => 'PHP 5.4.38 Released', 'id' => 'http://php.net/archive/2015.php#id2015-02-18-1', 'published' => '2015-02-18T23:56:18-08:00', 'updated' => '2015-02-18T23:56:18-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-02-18-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-02-18-1', 'rel' => 'via', @@ -23261,34 +23280,34 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop The list of changes is recorded in the ChangeLog.

    ', ), - 401 => + 401 => array ( 'title' => 'PHP 5.4.37 Released', 'id' => 'http://php.net/archive/2015.php#id2015-01-22-3', 'published' => '2015-01-22T20:20:52-08:00', 'updated' => '2015-01-22T20:20:52-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-01-22-3', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-01-22-3', 'rel' => 'via', @@ -23320,34 +23339,34 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop The list of changes is recorded in the ChangeLog.

    ', ), - 402 => + 402 => array ( 'title' => 'PHP 5.6.5 is available', 'id' => 'http://php.net/archive/2015.php#id2015-01-22-2', 'published' => '2015-01-22T12:31:59-08:00', 'updated' => '2015-01-22T12:31:59-08:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-01-22-2', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-01-22-2', 'rel' => 'via', @@ -23376,34 +23395,34 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop The list of changes is recorded in the ChangeLog.

    ', ), - 403 => + 403 => array ( 'title' => 'PHP 5.5.21 is released', 'id' => 'http://php.net/archive/2015.php#id2015-01-22-1', 'published' => '2015-01-22T16:04:04+00:00', 'updated' => '2015-01-22T16:04:04+00:00', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'frontpage', 'label' => 'PHP.net frontpage news', ), - 1 => + 1 => array ( 'term' => 'releases', 'label' => 'New PHP release', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/index.php#id2015-01-22-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://php.net/archive/2015.php#id2015-01-22-1', 'rel' => 'via', @@ -23432,37 +23451,37 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop The list of changes is recorded in the ChangeLog.

    ', ), - 404 => + 404 => array ( 'title' => 'Dutch PHP Conference 2015', 'id' => 'http://php.net/archive/2015.php#id2015-01-16-1', 'published' => '2015-01-16T10:07:58+01:00', 'updated' => '2015-01-16T10:07:58+01:00', 'finalTeaserDate' => '2015-02-22', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'cfp', 'label' => 'Call for Papers', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-01-16-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://www.phpconference.nl/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://www.phpconference.nl/', @@ -23477,37 +23496,37 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop ', 'intro' => '

    We\'re back! And we are glad to announce that we’ll be organising the 9th edition of the Dutch PHP Conference, which will be held in Amsterdam from 25th to 27th June 2015. Thursday 25th will be the tutorial day and June 26th and 27th will be the main conference days.

    Speakers, the call for papers is now open! We’re looking for high-quality, technical sessions from speakers who can cover advanced topics and keep our demanding audience inspired. The call for papers is open until February 22nd. You can send in as many proposals as you like, so start submitting your talks.

    … read full article

    ', ), - 405 => + 405 => array ( 'title' => 'Midwest PHP 2015', 'id' => 'http://php.net/archive/2015.php#id2015-01-10-1', 'published' => '2015-01-10T05:09:25+01:00', 'updated' => '2015-01-10T05:09:25+01:00', 'finalTeaserDate' => '2015-03-14', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-01-10-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://2015.midwestphp.org/', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://2015.midwestphp.org/', @@ -23520,37 +23539,37 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop ', 'intro' => '

    Midwest PHP is taking over beautiful Minneapolis once again this year, bringing leading experts from around the world to talk about APIs, Frameworks, Security, Version Control, Testing, Continuous Integration, and much more! Midwest PHP welcomes developers of all levels and encourages diversity - we promise there will be something for everyone. So join us March 14-15th for great talks, great people, and of course great food! Register today at http://www.midwestphp.org

    ', ), - 406 => + 406 => array ( 'title' => 'ConFoo 2015 - Become a Master', 'id' => 'http://php.net/archive/2015.php#id2015-01-06-1', 'published' => '2015-01-06T18:15:50+00:00', 'updated' => '2015-01-06T18:15:50+00:00', 'finalTeaserDate' => '2015-02-18', - 'category' => + 'category' => array ( - 0 => + 0 => array ( 'term' => 'conferences', 'label' => 'Conference announcement', ), ), - 'link' => + 'link' => array ( - 0 => + 0 => array ( 'href' => 'http://php.net/conferences/index.php#id2015-01-06-1', 'rel' => 'alternate', 'type' => 'text/html', ), - 1 => + 1 => array ( 'href' => 'http://confoo.ca', 'rel' => 'via', 'type' => 'text/html', ), ), - 'newsImage' => + 'newsImage' => array ( 'xmlns' => 'http://php.net/ns/news', 'link' => 'http://confoo.ca', @@ -23569,4 +23588,4 @@ Presentation length is 45 minutes which includes question time. 3 hours workshop ', 'intro' => '

    We want you to learn as much as possible during the three days of conference. We do that through quality and variety of both content and speakers, as well as creating a fun and friendly atmosphere.

    We have presentations for any level, from beginner to advanced. You\'ll learn about the backend and frontend, web and mobile, information systems and games, hard and soft skills, as well as many related topics.

    … read full article

    ', ), -); \ No newline at end of file +); diff --git a/include/releases-comparisons.inc b/include/releases-comparisons.inc new file mode 100644 index 0000000000..83cd531274 --- /dev/null +++ b/include/releases-comparisons.inc @@ -0,0 +1,1482 @@ + + array ( + 0 => + array ( + 'title' => 'Readonly Classes', + 'about' => NULL, + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/readonly_classes', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.2', + 'target' => '<8.2', + 'format' => 'php', + 'body' => 'class BlogData +{ + public readonly string $title; + + public readonly Status $status; + + public function __construct(string $title, Status $status) + { + $this->title = $title; + $this->status = $status; + } +}', + ), + 1 => + array ( + 'label' => 'PHP 8.2 or Later', + 'target' => '>=8.2', + 'format' => 'php', + 'body' => 'readonly class BlogData +{ + public string $title; + + public Status $status; + + public function __construct(string $title, Status $status) + { + $this->title = $title; + $this->status = $status; + } +}', + ), + ), + ), + 1 => + array ( + 'title' => 'Disjunctive Normal Form (DNF) Types', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/dnf_types', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.2', + 'target' => '<8.2', + 'format' => 'php', + 'body' => 'class Foo { + public function bar(mixed $entity) { + if ((($entity instanceof A) && ($entity instanceof B)) || ($entity === null)) { + return $entity; + } + + throw new Exception(\'Invalid entity\'); + } +}', + ), + 1 => + array ( + 'label' => 'PHP 8.2 or Later', + 'target' => '>=8.2', + 'format' => 'php', + 'body' => 'class Foo { + public function bar((A&B)|null $entity) { + return $entity; + } +}', + ), + ), + ), + 2 => + array ( + 'title' => 'Allow null, false, and true as stand-alone types', + 'about' => NULL, + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/null-false-standalone-types', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.2', + 'target' => '<8.2', + 'format' => 'php', + 'body' => 'class Falsy +{ + public function almostFalse(): bool { /* ... */ *} + + public function almostTrue(): bool { /* ... */ *} + + public function almostNull(): string|null { /* ... */ *} +}', + ), + 1 => + array ( + 'label' => 'PHP 8.2 or Later', + 'target' => '>=8.2', + 'format' => 'php', + 'body' => 'class Falsy +{ + public function alwaysFalse(): false { /* ... */ *} + + public function alwaysTrue(): true { /* ... */ *} + + public function alwaysNull(): null { /* ... */ *} +}', + ), + ), + ), + 3 => + array ( + 'title' => 'New "Random" extension', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/rng_extension', + 1 => 'https://wiki.php.net/rfc/random_extension_improvement', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'PHP 8.2 or Later', + 'target' => '>=8.2', + 'format' => 'php', + 'body' => '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(); +}', + ), + ), + ), + 4 => + array ( + 'title' => 'Constants in traits', + 'about' => 'You cannot access the constant through the name of the trait, but, you can +access the constant through the class that uses the trait.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/constants_in_traits', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'PHP 8.2 or Later', + 'target' => '>=8.2', + 'format' => 'php', + 'body' => 'trait Foo +{ + public const CONSTANT = 1; +} + +class Bar +{ + use Foo; +} + +var_dump(Bar::CONSTANT); // 1 +var_dump(Foo::CONSTANT); // Error', + ), + ), + ), + 5 => + array ( + 'title' => 'Deprecate dynamic properties RFC Doc', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/deprecate_dynamic_properties', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'PHP 8.2 or Later', + 'target' => '>=8.2', + 'format' => 'php', + 'body' => 'class User +{ + public $name; +} + +$user = new User(); +$user->last_name = \'Doe\'; + +$user = new stdClass(); +$user->last_name = \'Doe\';', + ), + 1 => + array ( + 'label' => '8.2 or Later', + 'target' => '8.2', + 'format' => 'php', + 'body' => 'class User +{ + public $name; +} + +$user = new User(); +$user->last_name = \'Doe\'; // Deprecated notice + +$user = new stdClass(); +$user->last_name = \'Doe\'; // Still allowed', + ), + ), + ), + ), + '8.3' => + array ( + 0 => + array ( + 'title' => 'Typed class constants RFC', + 'about' => NULL, + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/typed_class_constants', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.3', + 'target' => '<8.3', + 'format' => 'php', + 'body' => '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 = []; +}', + ), + 1 => + array ( + 'label' => 'PHP 8.3 or Later', + 'target' => '>=8.3', + 'format' => 'php', + 'body' => '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', + ), + ), + ), + 1 => + array ( + 'title' => 'Dynamic class constant fetch', + 'about' => NULL, + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/dynamic_class_constant_fetch', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.3', + 'target' => '<8.3', + 'format' => 'php', + 'body' => 'class Foo { + const PHP = \'PHP 8.2\'; +} + +$searchableConstant = \'PHP\'; + +var_dump(constant(Foo::class . "::{$searchableConstant}"));', + ), + 1 => + array ( + 'label' => 'PHP 8.3 or Later', + 'target' => '>=8.3', + 'format' => 'php', + 'body' => 'class Foo { + const PHP = \'PHP 8.2\'; +} + +$searchableConstant = \'PHP\'; + +var_dump(constant(Foo::class . "::{$searchableConstant}"));', + ), + ), + ), + 2 => + array ( + 'title' => 'New #[\\Override] attribute', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/marking_overriden_methods', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.3', + 'target' => '<8.3', + 'format' => 'php', + 'body' => '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).', + ), + 1 => + array ( + 'label' => 'PHP 8.3 or Later', + 'target' => '>=8.3', + 'format' => 'php', + 'body' => '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', + ), + ), + ), + 3 => + array ( + 'title' => 'Deep-cloning of readonly properties', + 'about' => 'readonly properties may now be modified once within the magic __clone +method to enable deep-cloning of readonly properties.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/readonly_amendments', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.3', + 'target' => '<8.3', + 'format' => 'php', + 'body' => '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', + ), + 1 => + array ( + 'label' => 'PHP 8.3 or Later', + 'target' => '>=8.3', + 'format' => 'php', + 'body' => '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\';', + ), + ), + ), + 4 => + array ( + 'title' => 'New json_validate() function', + 'about' => '`json_validate()` allows to check if a string is syntactically valid JSON, +while being more efficient than `json_decode()`.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/json_validate', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.3', + 'target' => '<8.3', + 'format' => 'php', + 'body' => 'function json_validate(string $string): bool { + json_decode($string); + + return json_last_error() === JSON_ERROR_NONE; +} + +var_dump(json_validate(\'{ "test": { "foo": "bar" } }\')); // true', + ), + 1 => + array ( + 'label' => 'PHP 8.3 or Later', + 'target' => '>=8.3', + 'format' => 'php', + 'body' => 'var_dump(json_validate(\'{ "test": { "foo": "bar" } }\')); // true', + ), + ), + ), + 5 => + array ( + 'title' => 'New Randomizer::getBytesFromString() method', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/randomizer_additions#getbytesfromstring', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.3', + 'target' => '<8.3', + 'format' => 'php', + 'body' => '// 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;', + ), + 1 => + array ( + 'label' => 'PHP 8.3 or Later', + 'target' => '>=8.3', + 'format' => 'php', + 'body' => '// 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;', + ), + ), + ), + 6 => + array ( + 'title' => 'New Randomizer::getFloat() and Randomizer::nextFloat() methods', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/randomizer_additions#getfloat', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.3', + 'target' => '<8.3', + 'format' => 'plain', + 'body' => '// 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;', + ), + 1 => + array ( + 'label' => 'PHP 8.3 or Later', + 'target' => '>=8.3', + 'format' => 'php', + 'body' => '$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;', + ), + ), + ), + 7 => + array ( + 'title' => 'Command line linter supports multiple files', + 'about' => 'The command line linter now accepts variadic input for filenames to lint', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://github.com/php/php-src/issues/10024', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.3', + 'target' => '<8.3', + 'format' => 'plain', + 'body' => 'php -l foo.php bar.php +No syntax errors detected in foo.php', + ), + 1 => + array ( + 'label' => 'PHP 8.3 or Later', + 'target' => '>=8.3', + 'format' => 'plain', + 'body' => 'php -l foo.php bar.php +No syntax errors detected in foo.php +No syntax errors detected in bar.php', + ), + ), + ), + ), + '8.4' => + array ( + 0 => + array ( + 'title' => 'Property Hooks', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/property-hooks', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.4', + 'target' => '<8.4', + 'format' => 'php', + 'body' => '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', + ), + 1 => + array ( + 'label' => 'PHP 8.4 or Later', + 'target' => '>=8.4', + 'format' => 'php', + 'body' => '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', + ), + ), + ), + 1 => + array ( + 'title' => 'Asymmetric Visibility', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/asymmetric-visibility-v2', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.4', + 'target' => '<8.4', + 'format' => 'php', + 'body' => '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();', + ), + 1 => + array ( + 'label' => 'PHP 8.4 or Later', + 'target' => '>=8.4', + 'format' => 'php', + 'body' => '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();', + ), + ), + ), + 2 => + array ( + 'title' => '#[\\Depreciated] Attribute', + 'about' => 'The new `#[\\Deprecated]` attribute makes PHP’s existing deprecation mechanism available to +user-defined functions, methods, and class constants.', + 'short' => NULL, + 'rfs' => + array ( + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.4', + 'target' => '<8.4', + 'format' => 'php', + 'body' => '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();', + ), + 1 => + array ( + 'label' => 'PHP 8.4 or Later', + 'target' => '>=8.4', + 'format' => 'php', + 'body' => '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();', + ), + ), + ), + 3 => + array ( + 'title' => 'New ext-dom features and HTML5 support', + 'about' => '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.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/dom_additions_84', + 1 => 'https://wiki.php.net/rfc/domdocument_html5_parser', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.4', + 'target' => '<8.4', + 'format' => 'php', + 'body' => '$dom = new DOMDocument(); +$dom->loadHTML( + <<<\'HTML\' +
    +
    PHP 8.4 is a feature-rich release!
    + +
    + HTML, + LIBXML_NOERROR, +); + +$xpath = new DOMXPath($dom); +$node = $xpath->query(".//main/article[not(following-sibling::*)]")[0]; +$classes = explode(" ", $node->className); // Simplified +var_dump(in_array("featured", $classes)); // bool(true)', + ), + 1 => + array ( + 'label' => 'PHP 8.4 or Later', + 'target' => '>=8.4', + 'format' => 'php', + 'body' => '$dom = Dom\\HTMLDocument::createFromString( + <<<\'HTML\' +
    +
    PHP 8.4 is a feature-rich release!
    + +
    + HTML, + LIBXML_NOERROR, +); + +$node = $dom->querySelector(\'main > article:last-child\'); +var_dump($node->classList->contains("featured")); // bool(true)', + ), + ), + ), + 4 => + array ( + 'title' => 'Object API for BCMath', + 'about' => 'New BcMath\\Number object enables object-oriented usage and standard +mathematical operators when working with arbitrary precision numbers. + +These objects are immutable and implement the Stringable interface, +so they can be used in string contexts like echo $num.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/support_object_type_in_bcmath', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.4', + 'target' => '<8.4', + 'format' => 'php', + 'body' => '$num1 = \'0.12345\'; +$num2 = \'2\'; +$result = bcadd($num1, $num2, 5); + +echo $result; // \'2.12345\' +var_dump(bccomp($num1, $num2) > 0); // false', + ), + 1 => + array ( + 'label' => 'PHP 8.4 or Later', + 'target' => '>=8.4', + 'format' => 'php', + 'body' => 'use BcMath\\Number; + +$num1 = new Number(\'0.12345\'); +$num2 = new Number(\'2\'); +$result = $num1 + $num2; + +echo $result; // \'2.12345\' +var_dump($num1 > $num2); // false', + ), + ), + ), + 5 => + array ( + 'title' => 'New array_*() functions', + 'about' => 'New functions `array_find()`, `array_find_key()`, `array_any()`, and `array_all()` are available.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/array_find', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.4', + 'target' => '<8.4', + 'format' => 'php', + 'body' => '$animal = null; +foreach ([\'dog\', \'cat\', \'cow\', \'duck\', \'goose\'] as $value) { + if (str_starts_with($value, \'c\')) { + $animal = $value; + break; + } +} + +var_dump($animal); // string(3) "cat"', + ), + 1 => + array ( + 'label' => 'PHP 8.4 or Later', + 'target' => '>=8.4', + 'format' => 'php', + 'body' => '$animal = array_find( + [\'dog\', \'cat\', \'cow\', \'duck\', \'goose\'], + static fn(string $value): bool => str_starts_with($value, \'c\'), +); + +var_dump($animal); // string(3) "cat"', + ), + ), + ), + 6 => + array ( + 'title' => 'PDO driver specific subclasses', + 'about' => 'New subclasses `Pdo\\Dblib`, `Pdo\\Firebird`, `Pdo\\MySql`, `Pdo\\Odbc`, +`Pdo\\Pgsql`, and `Pdo\\Sqlite` of PDO are available.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/pdo_driver_specific_subclasses', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.4', + 'target' => '<8.4', + 'format' => 'php', + 'body' => '$connection = new PDO( + \'sqlite:foo.db\', + $username, + $password, +); // object(PDO) + +$connection->sqliteCreateFunction( + \'prepend_php\', + static fn($string) => "PHP {$string}", +); + +$connection->query(\'SELECT prepend_php(version) FROM php\');', + ), + 1 => + array ( + 'label' => 'PHP 8.4 or Later', + 'target' => '>=8.4', + 'format' => 'php', + 'body' => '$connection = PDO::connect( + \'sqlite:foo.db\', + $username, + $password, +); // object(Pdo\\Sqlite) + +$connection->createFunction( + \'prepend_php\', + static fn($string) => "PHP {$string}", +); // Does not exist on a mismatching driver. + +$connection->query(\'SELECT prepend_php(version) FROM php\');', + ), + ), + ), + 7 => + array ( + 'title' => 'new MyClass()->method() without parentheses', + 'about' => 'Properties and methods of a newly instantiated object can now be accessed without +wrapping the new expression in parentheses.', + 'short' => NULL, + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/new_without_parentheses', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'PHP 8.4 or Later', + 'target' => '>=8.4', + 'format' => 'php', + 'body' => 'class PhpVersion +{ + public function getVersion(): string + { + return \'PHP 8.3\'; + } +} + +var_dump((new PhpVersion())->getVersion());', + ), + 1 => + array ( + 'label' => '8.4 or Later', + 'target' => '8.4', + 'format' => 'php', + 'body' => 'class PhpVersion +{ + public function getVersion(): string + { + return \'PHP 8.4\'; + } +} + +var_dump(new PhpVersion()->getVersion());', + ), + ), + ), + ), + '8.5' => + array ( + 0 => + array ( + 'title' => 'URI Extension', + 'about' => '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.', + 'short' => 'PHP 8.5 adds a built-in URI extension to parse, normalize, and handle URLs +following _RFC 3986_ and _WHATWG URL_ standards.', + 'rfs' => + array ( + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.4', + 'target' => '<8.4', + 'format' => 'php', + 'body' => '$components = parse_url(\'https://php.net/releases/8.4/en.php\'); + +var_dump($components[\'host\']); +// string(7) "php.net"', + ), + 1 => + array ( + 'label' => 'PHP 8.5 or Later', + 'target' => '>=8.5', + 'format' => 'php', + 'body' => 'use Uri\\Rfc3986\\Uri; + +$uri = new Uri(\'https://php.net/releases/8.5/en.php\'); + +var_dump($uri->getHost()); +// string(7) "php.net"', + ), + ), + ), + 1 => + array ( + 'title' => 'Pipe Operator', + 'about' => '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.', + 'short' => 'The `|>` operator enables chaining callables left-to-right, passing values smoothly through +multiple functions without intermediary variables.', + 'rfs' => + array ( + ), + 'examples' => + array ( + 0 => + array ( + 'label' => '8.4 or Later', + 'target' => '8.4', + 'format' => 'php', + 'body' => '$title = \' PHP 8.5 Released \'; + +$slug = strtolower( + str_replace(\'.\', \'\', + str_replace(\' \', \'-\', + trim($title) + ) + ) +); + +var_dump($slug); +// string(15) "php-85-released"', + ), + 1 => + array ( + 'label' => 'PHP 8.5 or Later', + 'target' => '>=8.5', + 'format' => 'php', + 'body' => '$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"', + ), + ), + ), + 2 => + array ( + 'title' => 'Clone With', + 'about' => NULL, + 'short' => 'Clone objects and update properties with the new `clone()` syntax, making the "with-er" pattern simple for `readonly` +classes.', + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/clone_with_v2', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Example', + 'target' => '', + 'format' => 'php', + 'body' => '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);', + ), + 1 => + array ( + 'label' => 'PHP 8.5 or Later', + 'target' => '>=8.5', + 'format' => 'php', + 'body' => '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);', + ), + ), + ), + 3 => + array ( + 'title' => '#[\\NoDiscard] Attribute', + 'about' => '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.', + 'short' => 'The #[\\NoDiscard] attribute warns when a return value isn\'t used, helping prevent mistakes and improving +overall API safety.', + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/marking_return_value_as_important', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.5', + 'target' => '<8.5', + 'format' => 'php', + 'body' => 'function getPhpVersion(): string +{ + return \'PHP 8.4\'; +} + +getPhpVersion(); // No warning', + ), + 1 => + array ( + 'label' => 'PHP 8.5 or Later', + 'target' => '>=8.5', + 'format' => 'php', + 'body' => '#[\\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)', + ), + ), + ), + 4 => + array ( + 'title' => 'Closures and First-Class Callables in Constant Expressions', + 'about' => '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.', + 'short' => 'Static closures can now be used in constant expressions, especially useful in attributes.', + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/closures_in_const_expr', + 1 => 'https://wiki.php.net/rfc/fcc_in_const_expr', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.5', + 'target' => '<8.5', + 'format' => 'php', + 'body' => 'final class PostsController +{ + #[AccessControl( + new Expression(\'request.user === post.getAuthor()\'), + )] + public function update( + Request $request, + Post $post, + ): Response { + // ... + } +}', + ), + 1 => + array ( + 'label' => 'PHP 8.5 or Later', + 'target' => '>=8.5', + 'format' => 'php', + 'body' => 'final class PostsController +{ + #[AccessControl(static function ( + Request $request, + Post $post, + ): bool { + return $request->user === $post->getAuthor(); + })] + public function update( + Request $request, + Post $post, + ): Response { + // ... + } +}', + ), + ), + ), + 5 => + array ( + 'title' => 'Array First / Last Functions', + 'about' => '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).', + 'short' => 'New array helper functions are available for common functionality', + 'rfs' => + array ( + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.5', + 'target' => '<8.5', + 'format' => 'php', + 'body' => '$lastEvent = $events === [] + ? null + : $events[array_key_last($events)];', + ), + 1 => + array ( + 'label' => 'PHP 8.5 or Later', + 'target' => '>=8.5', + 'format' => 'php', + 'body' => '$lastEvent = array_last($events);', + ), + ), + ), + 6 => + array ( + 'title' => 'Persistent cURL Share Handles', + 'about' => 'Handles can now be persisted across multiple PHP requests, avoiding the cost of repeated +connection initialization to the same hosts.', + 'short' => 'Handles can now be persisted across multiple PHP requests, avoiding the cost of repeated +connection initialization to the same hosts.', + 'rfs' => + array ( + 0 => 'https://wiki.php.net/rfc/curl_share_persistence', + 1 => 'https://wiki.php.net/rfc/curl_share_persistence_improvement', + ), + 'examples' => + array ( + 0 => + array ( + 'label' => 'Before PHP 8.5', + 'target' => '<8.5', + 'format' => 'php', + 'body' => ' +$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);', + ), + 1 => + array ( + 'label' => 'PHP 8.5 or Later', + 'target' => '>=8.5', + 'format' => 'php', + 'body' => '$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);', + ), + ), + ), + ), +); \ No newline at end of file diff --git a/include/releases.inc b/include/releases.inc index ea262decd9..d8a071b3a3 100644 --- a/include/releases.inc +++ b/include/releases.inc @@ -1,35 +1,35 @@ +return array ( + 8 => array ( - '8.4.21' => + '8.4.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_21.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '07 May 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.21.tar.gz', 'name' => 'PHP 8.4.21 (tar.gz)', 'sha256' => 'db96ee0a8e5ee7b73a4913a2aeddc162ba2ef16cd34b9347b5b9a6150e1f8e48', 'date' => '07 May 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.21.tar.bz2', 'name' => 'PHP 8.4.21 (tar.bz2)', 'sha256' => '5e0bd287f3be35bf57c211b010527ae5e10a88170f96e64d336044eb5faef430', 'date' => '07 May 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.21.tar.xz', 'name' => 'PHP 8.4.21 (tar.xz)', @@ -39,34 +39,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.5.6' => + '8.5.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_5_6.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '07 May 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.5.6.tar.gz', 'name' => 'PHP 8.5.6 (tar.gz)', 'sha256' => '169aaa21c2834b38df8e39169f43bc5bea8d4059a816cfbc59be08fc2bae60cd', 'date' => '07 May 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.5.6.tar.bz2', 'name' => 'PHP 8.5.6 (tar.bz2)', 'sha256' => '4457240f65f0c59a620920d66cdab1b12100a431e03ad9febe38b13a1b25957f', 'date' => '07 May 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.5.6.tar.xz', 'name' => 'PHP 8.5.6 (tar.xz)', @@ -76,33 +76,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.5.5' => + '8.5.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_5_5.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '09 Apr 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.5.5.tar.gz', 'name' => 'PHP 8.5.5 (tar.gz)', 'sha256' => '276279f637a875a514346b332bba6d8b06c036cf7979a858e5c55f72c4874884', 'date' => '09 Apr 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.5.5.tar.bz2', 'name' => 'PHP 8.5.5 (tar.bz2)', 'sha256' => 'ee262beff61c431965d1f97192854b36208adeac38983c3498bb3500ae87283c', 'date' => '09 Apr 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.5.5.tar.xz', 'name' => 'PHP 8.5.5 (tar.xz)', @@ -112,34 +112,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.30' => + '8.2.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_30.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Dec 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.30.tar.gz', 'name' => 'PHP 8.2.30 (tar.gz)', 'sha256' => 'a0fa6673ba4b0c8335fbab08afb7c2e13a3791f2b5a0928c7ad3d7ad872edf26', 'date' => '18 Dec 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.30.tar.bz2', 'name' => 'PHP 8.2.30 (tar.bz2)', 'sha256' => '104820b6c8fc959dde4b3342135f42bdabf246e86918a16381a17d8447c866fa', 'date' => '18 Dec 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.30.tar.xz', 'name' => 'PHP 8.2.30 (tar.xz)', @@ -149,33 +149,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.20' => + '8.4.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_20.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '09 Apr 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.20.tar.gz', 'name' => 'PHP 8.4.20 (tar.gz)', 'sha256' => 'a2def5d534d57c6a0236f2265de7537608af871900a4f7955eff463e9e38247d', 'date' => '09 Apr 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.20.tar.bz2', 'name' => 'PHP 8.4.20 (tar.bz2)', 'sha256' => 'ce25d2610a5f9522ac8f53fbb7b8280b5c021991e9bd9137068c9c629d9ffb56', 'date' => '09 Apr 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.20.tar.xz', 'name' => 'PHP 8.4.20 (tar.xz)', @@ -185,33 +185,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.30' => + '8.3.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_30.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '15 Jan 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.30.tar.gz', 'name' => 'PHP 8.3.30 (tar.gz)', 'sha256' => 'e587dc95fb7f62730299fa7b36b6e4f91e6708aaefa2fff68a0098d320c16386', 'date' => '15 Jan 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.30.tar.bz2', 'name' => 'PHP 8.3.30 (tar.bz2)', 'sha256' => '800b7b6ed50b73c8ee7844ee5f2f7cc612faa7875a0aa7c4529e8ed5866a5030', 'date' => '15 Jan 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.30.tar.xz', 'name' => 'PHP 8.3.30 (tar.xz)', @@ -221,33 +221,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.19' => + '8.4.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_19.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '12 Mar 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.19.tar.gz', 'name' => 'PHP 8.4.19 (tar.gz)', 'sha256' => '9e862435ffb533dc5b0eb486170a74e5f7c8095e8eb8819a2ff5aad430292a18', 'date' => '12 Mar 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.19.tar.bz2', 'name' => 'PHP 8.4.19 (tar.bz2)', 'sha256' => 'bceb7798ed37b442fe523ae7ef345ccc2231db0b022d30735c2e378d3254a0d4', 'date' => '12 Mar 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.19.tar.xz', 'name' => 'PHP 8.4.19 (tar.xz)', @@ -257,33 +257,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.5.4' => + '8.5.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_5_4.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '12 Mar 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.5.4.tar.gz', 'name' => 'PHP 8.5.4 (tar.gz)', 'sha256' => '4fef7f44eff3c18e329504cb0d3eb30b41cf54e2db05cb4ebe8b78fc37d38ce1', 'date' => '12 Mar 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.5.4.tar.bz2', 'name' => 'PHP 8.5.4 (tar.bz2)', 'sha256' => '2ac929a29a6b7ef4b8acec981a417b91bdf7f548f597df665cc56ab9ea95fc75', 'date' => '12 Mar 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.5.4.tar.xz', 'name' => 'PHP 8.5.4 (tar.xz)', @@ -293,33 +293,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.5.3' => + '8.5.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_5_3.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '12 Feb 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.5.3.tar.gz', 'name' => 'PHP 8.5.3 (tar.gz)', 'sha256' => '402654d99b4beda602d4daec4f1cd39aafdacf5923e3e947da87392826660146', 'date' => '12 Feb 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.5.3.tar.bz2', 'name' => 'PHP 8.5.3 (tar.bz2)', 'sha256' => 'fc5ecabc183ceb64d9fca3dcd387bd29b2b67448326af998fde003124916823b', 'date' => '12 Feb 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.5.3.tar.xz', 'name' => 'PHP 8.5.3 (tar.xz)', @@ -329,33 +329,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.18' => + '8.4.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_18.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '12 Feb 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.18.tar.gz', 'name' => 'PHP 8.4.18 (tar.gz)', 'sha256' => '79636f2890976e7507123988c4750e592a6eb35cd407bfa7d2bb35ad15af3a06', 'date' => '12 Feb 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.18.tar.bz2', 'name' => 'PHP 8.4.18 (tar.bz2)', 'sha256' => '586b32d92cebcfbca495c5f6ad1a33640553d0a9c0bfd2e6715334d959cf9858', 'date' => '12 Feb 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.18.tar.xz', 'name' => 'PHP 8.4.18 (tar.xz)', @@ -365,33 +365,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.5.2' => + '8.5.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_5_2.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '15 Jan 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.5.2.tar.gz', 'name' => 'PHP 8.5.2 (tar.gz)', 'sha256' => '379ccccefcc85f28286444cf01bc0db017c79d513417267f5bb1d804b8428c22', 'date' => '15 Jan 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.5.2.tar.bz2', 'name' => 'PHP 8.5.2 (tar.bz2)', 'sha256' => 'f7efdeccc3a810b18920692306536b99a3ba86610dbd0795a296cf77d3fb3a06', 'date' => '15 Jan 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.5.2.tar.xz', 'name' => 'PHP 8.5.2 (tar.xz)', @@ -401,33 +401,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.17' => + '8.4.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_17.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '15 Jan 2026', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.17.tar.gz', 'name' => 'PHP 8.4.17 (tar.gz)', 'sha256' => 'aa0efeb7b47adff31e10bed1fc4ffcd4c0b5a4d41ab0bacfbb549c584939ee90', 'date' => '15 Jan 2026', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.17.tar.bz2', 'name' => 'PHP 8.4.17 (tar.bz2)', 'sha256' => 'ea67d83d72dd6f3abaaeae7f532f78fd12192861d96aba8e9eca3b2ddade42d2', 'date' => '15 Jan 2026', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.17.tar.xz', 'name' => 'PHP 8.4.17 (tar.xz)', @@ -437,34 +437,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.5.1' => + '8.5.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_5_1.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Dec 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.5.1.tar.gz', 'name' => 'PHP 8.5.1 (tar.gz)', 'sha256' => '915492958081409a5e3ef99df969bcfa5b33bdf9517bd077991747e17fa2c1b7', 'date' => '18 Dec 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.5.1.tar.bz2', 'name' => 'PHP 8.5.1 (tar.bz2)', 'sha256' => '55f428c426e7241752ea9afff160bb64c32a9321cbd6d17d1c145b8df8823737', 'date' => '18 Dec 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.5.1.tar.xz', 'name' => 'PHP 8.5.1 (tar.xz)', @@ -474,34 +474,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.29' => + '8.3.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_29.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Dec 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.29.tar.gz', 'name' => 'PHP 8.3.29 (tar.gz)', 'sha256' => '8565fa8733c640b60da5ab4944bf2d4081f859915b39e29b3af26cf23443ed97', 'date' => '18 Dec 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.29.tar.bz2', 'name' => 'PHP 8.3.29 (tar.bz2)', 'sha256' => 'c7337212e655325d499ea8108fa76f69ddde2fff7cb0fad36aa63eed540cb8a5', 'date' => '18 Dec 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.29.tar.xz', 'name' => 'PHP 8.3.29 (tar.xz)', @@ -511,34 +511,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.16' => + '8.4.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_16.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Dec 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.16.tar.gz', 'name' => 'PHP 8.4.16 (tar.gz)', 'sha256' => '8e35d24f148ea7c2a93e9b9bcc329e8bf78b5bb922f3723a727c74c19d184e98', 'date' => '18 Dec 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.16.tar.bz2', 'name' => 'PHP 8.4.16 (tar.bz2)', 'sha256' => '6c48c65eba6a2f7a102925d08772239b1f45110aed2187fdd81b933ed439c692', 'date' => '18 Dec 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.16.tar.xz', 'name' => 'PHP 8.4.16 (tar.xz)', @@ -548,34 +548,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.34' => + '8.1.34' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_34.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Dec 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.34.tar.gz', 'name' => 'PHP 8.1.34 (tar.gz)', 'sha256' => '3c5b060ec8e0d5dd1d8237823f3161cc8bc5342aab3c46893eba9857759c4bfa', 'date' => '18 Dec 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.34.tar.bz2', 'name' => 'PHP 8.1.34 (tar.bz2)', 'sha256' => '98e0a08a0fae37d08dfcca2f5ff6664863097dde4b1d360af2acc8c3542f2a0f', 'date' => '18 Dec 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.34.tar.xz', 'name' => 'PHP 8.1.34 (tar.xz)', @@ -585,34 +585,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.33' => + '8.1.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_33.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '3 Jul 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.33.tar.gz', 'name' => 'PHP 8.1.33 (tar.gz)', 'sha256' => 'ee33568a0e2be0b722b3f9a88cecc578316b66b25c90cd0a4f3b1a5cdc3cd826', 'date' => '3 Jul 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.33.tar.bz2', 'name' => 'PHP 8.1.33 (tar.bz2)', 'sha256' => 'b6553451841c1a569865d7fdc83024621ee4434cd8fbfeb0a31588ac9c70685f', 'date' => '3 Jul 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.33.tar.xz', 'name' => 'PHP 8.1.33 (tar.xz)', @@ -622,34 +622,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.15' => + '8.4.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_15.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '20 Nov 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.15.tar.gz', 'name' => 'PHP 8.4.15 (tar.gz)', 'sha256' => '51d23c98073c1e88c98c12b175736a11316cd3d4753f8d060934e53e5a9945c3', 'date' => '20 Nov 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.15.tar.bz2', 'name' => 'PHP 8.4.15 (tar.bz2)', 'sha256' => 'b7155bdd498d60d63e4bc320dc224863976d31b5bd9339699726c961255a3197', 'date' => '20 Nov 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.15.tar.xz', 'name' => 'PHP 8.4.15 (tar.xz)', @@ -659,34 +659,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.29' => + '8.2.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_29.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '3 Jul 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.29.tar.gz', 'name' => 'PHP 8.2.29 (tar.gz)', 'sha256' => '0b27d330769d4bc67b1d8864347c38744b289664a946919c3ddb2235d326b3cd', 'date' => '3 Jul 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.29.tar.bz2', 'name' => 'PHP 8.2.29 (tar.bz2)', 'sha256' => '51979e8d198cbade2aad4ffe9f53dd3f04f9602d3089e5979985e058ade4267c', 'date' => '3 Jul 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.29.tar.xz', 'name' => 'PHP 8.2.29 (tar.xz)', @@ -696,33 +696,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.28' => + '8.3.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_28.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '20 Nov 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.28.tar.gz', 'name' => 'PHP 8.3.28 (tar.gz)', 'sha256' => '2f7dda35bbef2842ec61510aaefe52c78361a61f9cfabd99a7789204d6383d9f', 'date' => '20 Nov 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.28.tar.bz2', 'name' => 'PHP 8.3.28 (tar.bz2)', 'sha256' => 'd5b385ee351ec463c85d47eeb53b51156f3483eaf3ff43a7ad5080c2b6d4c557', 'date' => '20 Nov 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.28.tar.xz', 'name' => 'PHP 8.3.28 (tar.xz)', @@ -732,34 +732,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.5.0' => + '8.5.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_5_0.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '20 Nov 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.5.0.tar.gz', 'name' => 'PHP 8.5.0 (tar.gz)', 'sha256' => 'dc3651369c9b63320dd4ea8e272c6a23f18e50f67c13d10ee368c86961dbd10f', 'date' => '20 Nov 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.5.0.tar.bz2', 'name' => 'PHP 8.5.0 (tar.bz2)', 'sha256' => 'cd16cb045b34a6cec6a83008e1b335f365c7a832fcc483df82308664c6d021f9', 'date' => '20 Nov 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.5.0.tar.xz', 'name' => 'PHP 8.5.0 (tar.xz)', @@ -769,34 +769,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.14' => + '8.4.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_14.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '23 Oct 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.14.tar.gz', 'name' => 'PHP 8.4.14 (tar.gz)', 'sha256' => '40341f3e03a36d48facdb6cc2ec600ff887a1af9a5e5fee0b40f40b61488afae', 'date' => '23 Oct 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.14.tar.bz2', 'name' => 'PHP 8.4.14 (tar.bz2)', 'sha256' => 'f2139ce4cb7a6c5643ee98caa34e5c32ba841c2ba293e34a3d0357faa84bb3e7', 'date' => '23 Oct 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.14.tar.xz', 'name' => 'PHP 8.4.14 (tar.xz)', @@ -806,33 +806,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.27' => + '8.3.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_27.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '23 Oct 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.27.tar.gz', 'name' => 'PHP 8.3.27 (tar.gz)', 'sha256' => 'bf189e30f81e11526690b1c82e4fb8b286b607cd7afaf4bf27a39003d8f3246f', 'date' => '23 Oct 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.27.tar.bz2', 'name' => 'PHP 8.3.27 (tar.bz2)', 'sha256' => 'a1dd2b51b437c0a6337e019004778a8ef253db4e9aff7d48d88798ca91b7e2a4', 'date' => '23 Oct 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.27.tar.xz', 'name' => 'PHP 8.3.27 (tar.xz)', @@ -842,33 +842,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.26' => + '8.3.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_26.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '25 Sep 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.26.tar.gz', 'name' => 'PHP 8.3.26 (tar.gz)', 'sha256' => 'c96dac9745db9216a299007d144b593f4e4e7d95b4618b2a9591e5e5585200d5', 'date' => '25 Sep 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.26.tar.bz2', 'name' => 'PHP 8.3.26 (tar.bz2)', 'sha256' => '721b63d5349f131f5097537b3be6ba6801e2d8e6faba1f1f2ea95b4fd62e7525', 'date' => '25 Sep 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.26.tar.xz', 'name' => 'PHP 8.3.26 (tar.xz)', @@ -878,34 +878,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.13' => + '8.4.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_13.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '25 Sep 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.13.tar.gz', 'name' => 'PHP 8.4.13 (tar.gz)', 'sha256' => 'ba323619b322125dbd7bf09eefbd572863797359c7d127f986c58a71c872d531', 'date' => '25 Sep 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.13.tar.bz2', 'name' => 'PHP 8.4.13 (tar.bz2)', 'sha256' => '85181ddca7b3e03f148521b043bd62411950d468c667db6400479f1b10812194', 'date' => '25 Sep 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.13.tar.xz', 'name' => 'PHP 8.4.13 (tar.xz)', @@ -915,33 +915,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.25' => + '8.3.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_25.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '28 Aug 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.25.tar.gz', 'name' => 'PHP 8.3.25 (tar.gz)', 'sha256' => '86711e98eccffb637dc319f0cdcde9188c1710633910beb1a3cbb3ae5ecc2e05', 'date' => '28 Aug 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.25.tar.bz2', 'name' => 'PHP 8.3.25 (tar.bz2)', 'sha256' => '06e54791e11192f089e4d20c716f25bddcebdde951b570b555edfb5988a8b71a', 'date' => '28 Aug 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.25.tar.xz', 'name' => 'PHP 8.3.25 (tar.xz)', @@ -951,34 +951,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.12' => + '8.4.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_12.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '28 Aug 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.12.tar.gz', 'name' => 'PHP 8.4.12 (tar.gz)', 'sha256' => '4963b0d3a6ca8a391317d1b80309c2cfdebf4318b131ff8e7d19e3ab79da9104', 'date' => '28 Aug 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.12.tar.bz2', 'name' => 'PHP 8.4.12 (tar.bz2)', 'sha256' => '2ebd5382eb090d603087da649ed21de64b079616bc9a02abbc532b89b17e3468', 'date' => '28 Aug 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.12.tar.xz', 'name' => 'PHP 8.4.12 (tar.xz)', @@ -988,33 +988,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.24' => + '8.3.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_24.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '31 Jul 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.24.tar.gz', 'name' => 'PHP 8.3.24 (tar.gz)', 'sha256' => 'b827c512b59270c3dc7e19614314fc345022c423e6443c960746310792d0de82', 'date' => '31 Jul 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.24.tar.bz2', 'name' => 'PHP 8.3.24 (tar.bz2)', 'sha256' => 'e4e12da490746924624c91406b60b31967e4d7bdeabbab9e8cb5354884ee9964', 'date' => '31 Jul 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.24.tar.xz', 'name' => 'PHP 8.3.24 (tar.xz)', @@ -1024,34 +1024,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.11' => + '8.4.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_11.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '31 Jul 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.11.tar.gz', 'name' => 'PHP 8.4.11 (tar.gz)', 'sha256' => '422548cd8cf14ab0264ba510d3586476b0e77a3272356ba486bc82e706dc6cc8', 'date' => '31 Jul 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.11.tar.bz2', 'name' => 'PHP 8.4.11 (tar.bz2)', 'sha256' => '2c39c75b54df89b01195b72ad0ee1fcd490c71db18bc52bcd61fb2ffb57b26fa', 'date' => '31 Jul 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.11.tar.xz', 'name' => 'PHP 8.4.11 (tar.xz)', @@ -1061,34 +1061,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.10' => + '8.4.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_10.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '3 Jul 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.10.tar.gz', 'name' => 'PHP 8.4.10 (tar.gz)', 'sha256' => 'bd25c40ece60d1b3c879c11f517d335b8d6a872174c32ebb088b9494d8bb2cf2', 'date' => '3 Jul 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.10.tar.bz2', 'name' => 'PHP 8.4.10 (tar.bz2)', 'sha256' => '8815d10659cde5f03be4d169205d62b7b29ed0edc7cdd84b6384cda0310c3108', 'date' => '3 Jul 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.10.tar.xz', 'name' => 'PHP 8.4.10 (tar.xz)', @@ -1098,34 +1098,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.23' => + '8.3.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_23.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '3 Jul 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.23.tar.gz', 'name' => 'PHP 8.3.23 (tar.gz)', 'sha256' => 'ac9f3d6e9bcf1d5c4d66d2d954f89852c17fd4c5eba5811a3a8db08f38c908c7', 'date' => '3 Jul 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.23.tar.bz2', 'name' => 'PHP 8.3.23 (tar.bz2)', 'sha256' => '05488f7b967d90a50932f0674dc356e1b795f522f0298b5ce24b680de233c2d4', 'date' => '3 Jul 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.23.tar.xz', 'name' => 'PHP 8.3.23 (tar.xz)', @@ -1135,33 +1135,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.22' => + '8.3.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_22.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '5 Jun 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.22.tar.gz', 'name' => 'PHP 8.3.22 (tar.gz)', 'sha256' => '8fc57c9df455354679e4a127defb60e1af8718ece4cd4827e500f5c7f2449103', 'date' => '5 Jun 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.22.tar.bz2', 'name' => 'PHP 8.3.22 (tar.bz2)', 'sha256' => '99133e2cda2af37baa79db17d8efd414628f14a02ec75f1418a0aa3f6aa6673b', 'date' => '5 Jun 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.22.tar.xz', 'name' => 'PHP 8.3.22 (tar.xz)', @@ -1171,34 +1171,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.32' => + '8.1.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_32.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '13 Mar 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.32.tar.gz', 'name' => 'PHP 8.1.32 (tar.gz)', 'sha256' => '4846836d1de27dbd28e89180f073531087029a77e98e8e019b7b2eddbdb1baff', 'date' => '13 Mar 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.32.tar.bz2', 'name' => 'PHP 8.1.32 (tar.bz2)', 'sha256' => 'a04fdd3df05f948df8a8f2c5d27ab54c1f43822c525f31fd20c19a282452d07c', 'date' => '13 Mar 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.32.tar.xz', 'name' => 'PHP 8.1.32 (tar.xz)', @@ -1208,34 +1208,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.28' => + '8.2.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_28.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '13 Mar 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.28.tar.gz', 'name' => 'PHP 8.2.28 (tar.gz)', 'sha256' => '3318300888de5023720cc84efad5e005e53f30b5f0072fae65a750dabcaf6ec3', 'date' => '13 Mar 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.28.tar.bz2', 'name' => 'PHP 8.2.28 (tar.bz2)', 'sha256' => '2919cc1b92190a58dc17904b92e626600b96ce49a4c72e77513786a4406acce5', 'date' => '13 Mar 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.28.tar.xz', 'name' => 'PHP 8.2.28 (tar.xz)', @@ -1245,33 +1245,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.8' => + '8.4.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_8.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '5 Jun 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.8.tar.gz', 'name' => 'PHP 8.4.8 (tar.gz)', 'sha256' => '26d5ae014925b7dee3a61ec02422795f008fbb3a36f9355edaee2d9d78b89b07', 'date' => '5 Jun 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.8.tar.bz2', 'name' => 'PHP 8.4.8 (tar.bz2)', 'sha256' => '36569c64dd1499e570c436603b641eee7cde4af576af786597d0ee711b3a3a8a', 'date' => '5 Jun 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.8.tar.xz', 'name' => 'PHP 8.4.8 (tar.xz)', @@ -1281,33 +1281,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.21' => + '8.3.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_21.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '8 May 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.21.tar.gz', 'name' => 'PHP 8.3.21 (tar.gz)', 'sha256' => 'e7f1748c1fa3d2bf8ef2e00508bd62325ba68c3b830b253bc561225a9ba5457d', 'date' => '8 May 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.21.tar.bz2', 'name' => 'PHP 8.3.21 (tar.bz2)', 'sha256' => 'd0769e6e11cfa6c59a16de241668be8c7f31a729950a8d06190dfad2d8622b04', 'date' => '8 May 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.21.tar.xz', 'name' => 'PHP 8.3.21 (tar.xz)', @@ -1317,33 +1317,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.7' => + '8.4.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_7.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '8 May 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.7.tar.gz', 'name' => 'PHP 8.4.7 (tar.gz)', 'sha256' => 'fd2be3b9320184e856426e01bd1a428110776ea8e976c3fb6b65808d03fc886a', 'date' => '8 May 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.7.tar.bz2', 'name' => 'PHP 8.4.7 (tar.bz2)', 'sha256' => '6eccb1b06a4dd9cea314dbe70c762d3d4765471cb6ebf925b9da308978bff988', 'date' => '8 May 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.7.tar.xz', 'name' => 'PHP 8.4.7 (tar.xz)', @@ -1353,33 +1353,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.20' => + '8.3.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_20.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '10 Apr 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.20.tar.gz', 'name' => 'PHP 8.3.20 (tar.gz)', 'sha256' => '515ed37529df6b7f569ba68d505713bce23a93a58471dedac4ecfd17c44e5650', 'date' => '10 Apr 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.20.tar.bz2', 'name' => 'PHP 8.3.20 (tar.bz2)', 'sha256' => '36b4e6a323cd45673a54f296e9d2666b7f5df57641031c77c4fd8137bc4ebeb3', 'date' => '10 Apr 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.20.tar.xz', 'name' => 'PHP 8.3.20 (tar.xz)', @@ -1389,33 +1389,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.6' => + '8.4.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_6.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '10 Apr 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.6.tar.gz', 'name' => 'PHP 8.4.6 (tar.gz)', 'sha256' => '49be0f2f45c9b07c9b921d023bf28b1fc781700c829869725681300e72e3faa8', 'date' => '10 Apr 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.6.tar.bz2', 'name' => 'PHP 8.4.6 (tar.bz2)', 'sha256' => '9cf2734509b603f6589617ab52a9712a03e0fe059951cddd2d4623df4bf7c6c6', 'date' => '10 Apr 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.6.tar.xz', 'name' => 'PHP 8.4.6 (tar.xz)', @@ -1425,34 +1425,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.5' => + '8.4.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_5.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '13 Mar 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.5.tar.gz', 'name' => 'PHP 8.4.5 (tar.gz)', 'sha256' => 'f05530d350f1ffe279e097c2af7a8d78cab046ef99d91f6b3151b06f0ab05d05', 'date' => '13 Mar 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.5.tar.bz2', 'name' => 'PHP 8.4.5 (tar.bz2)', 'sha256' => '9378c78887d0cd7462fc5c17f2de30c852f20f79d28795e2573fe3250d39436e', 'date' => '13 Mar 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.5.tar.xz', 'name' => 'PHP 8.4.5 (tar.xz)', @@ -1462,34 +1462,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.19' => + '8.3.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_19.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '13 Mar 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.19.tar.gz', 'name' => 'PHP 8.3.19 (tar.gz)', 'sha256' => 'bb21d1a5eb9a8b27668b2926fa9279a5878bb6fdee55450621f7865e062dcf3a', 'date' => '13 Mar 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.19.tar.bz2', 'name' => 'PHP 8.3.19 (tar.bz2)', 'sha256' => 'ad6902a2a02f94ec3e9982069e2668bba3ce47e2f6bbbab95eb6b7db7bf3d350', 'date' => '13 Mar 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.19.tar.xz', 'name' => 'PHP 8.3.19 (tar.xz)', @@ -1499,33 +1499,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.27' => + '8.2.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_27.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '19 Dec 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.27.tar.gz', 'name' => 'PHP 8.2.27 (tar.gz)', 'sha256' => '179cc901760d478ffd545d10702ebc2a1270d8c13471bdda729d20055140809a', 'date' => '19 Dec 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.27.tar.bz2', 'name' => 'PHP 8.2.27 (tar.bz2)', 'sha256' => '6e57dbaf769a7f3deb4f0f48b8c535e671cc0a18022ed7f6ff23b50e941d4b60', 'date' => '19 Dec 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.27.tar.xz', 'name' => 'PHP 8.2.27 (tar.xz)', @@ -1535,34 +1535,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.31' => + '8.1.31' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_31.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '21 Nov 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.31.tar.gz', 'name' => 'PHP 8.1.31 (tar.gz)', 'sha256' => '618923b407c4575bfee085f00c4aaa16a5cc86d4b1eb893c0f352d61541bbfb1', 'date' => '21 Nov 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.31.tar.bz2', 'name' => 'PHP 8.1.31 (tar.bz2)', 'sha256' => '0b39828b345151caf1b795d9f4b923c9887231776c33076dfc9d90a44390d0dc', 'date' => '21 Nov 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.31.tar.xz', 'name' => 'PHP 8.1.31 (tar.xz)', @@ -1572,33 +1572,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.4' => + '8.4.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_4.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '13 Feb 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.4.tar.gz', 'name' => 'PHP 8.4.4 (tar.gz)', 'sha256' => '719551f50a81961f802aa9102bf4a1a0b5a315074330ab37bc8035a15f4be71b', 'date' => '13 Feb 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.4.tar.bz2', 'name' => 'PHP 8.4.4 (tar.bz2)', 'sha256' => '192a325fd3ca09b6c528dd6014ee07d803c3162514d4bb0d3e0981d00ac700ec', 'date' => '13 Feb 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.4.tar.xz', 'name' => 'PHP 8.4.4 (tar.xz)', @@ -1608,33 +1608,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.17' => + '8.3.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_17.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '13 Feb 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.17.tar.gz', 'name' => 'PHP 8.3.17 (tar.gz)', 'sha256' => 'e2bbeca5fa62ff27d6ba6241619cf92a80e5346556be187aa962b91bd0eb9df1', 'date' => '13 Feb 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.17.tar.bz2', 'name' => 'PHP 8.3.17 (tar.bz2)', 'sha256' => '4e034dca7ab16fc6062c8c53067528f4ecaa246bf22310e6841f7008094264ac', 'date' => '13 Feb 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.17.tar.xz', 'name' => 'PHP 8.3.17 (tar.xz)', @@ -1644,33 +1644,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.16' => + '8.3.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_16.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '16 Jan 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.16.tar.gz', 'name' => 'PHP 8.3.16 (tar.gz)', 'sha256' => '61441627dca50cf0173e3f054ffe8c4f5db6552555c43cab87a8ecacfd201c7e', 'date' => '16 Jan 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.16.tar.bz2', 'name' => 'PHP 8.3.16 (tar.bz2)', 'sha256' => 'e9208218cbdcb816834b6c5ed8ddc5748fb12ff777cf9e0e03bb4896276608b6', 'date' => '16 Jan 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.16.tar.xz', 'name' => 'PHP 8.3.16 (tar.xz)', @@ -1680,33 +1680,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.3' => + '8.4.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_3.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '16 Jan 2025', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.3.tar.gz', 'name' => 'PHP 8.4.3 (tar.gz)', 'sha256' => '45b88555b31487401b42c8bd36f2c45d84992bc93ae4c1a23d93bb3347984ecb', 'date' => '16 Jan 2025', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.3.tar.bz2', 'name' => 'PHP 8.4.3 (tar.bz2)', 'sha256' => 'd6b12379d1f1df216d1932840a31b14fed1e0fc7e8db1e9d1795f75a1e75ead9', 'date' => '16 Jan 2025', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.3.tar.xz', 'name' => 'PHP 8.4.3 (tar.xz)', @@ -1716,33 +1716,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.2' => + '8.4.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_2.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '19 Dec 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.2.tar.gz', 'name' => 'PHP 8.4.2 (tar.gz)', 'sha256' => '5d3cf82a7f4cafdcfc4f3d98f3e3ee81077ae57c709a5613cbff5834d78a7747', 'date' => '19 Dec 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.2.tar.bz2', 'name' => 'PHP 8.4.2 (tar.bz2)', 'sha256' => 'ef4fe9921b885ce3b047792ab60260eaf657e22812be511d19d0e45edf984783', 'date' => '19 Dec 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.2.tar.xz', 'name' => 'PHP 8.4.2 (tar.xz)', @@ -1752,33 +1752,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.15' => + '8.3.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_15.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '19 Dec 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.15.tar.gz', 'name' => 'PHP 8.3.15 (tar.gz)', 'sha256' => '67073c3c9c56c86461e0715d9e1806af5ddffe8e6e2eb9781f7923bbb5bd67fa', 'date' => '19 Dec 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.15.tar.bz2', 'name' => 'PHP 8.3.15 (tar.bz2)', 'sha256' => 'b1675a4ff730b5811b8e6a7687488c42e835e156a99776aa3e6f017abda3be98', 'date' => '19 Dec 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.15.tar.xz', 'name' => 'PHP 8.3.15 (tar.xz)', @@ -1788,34 +1788,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.4.1' => + '8.4.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_4_1.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '21 Nov 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.4.1.tar.gz', 'name' => 'PHP 8.4.1 (tar.gz)', 'sha256' => 'c3d1ce4157463ea43004289c01172deb54ce9c5894d8722f4e805461bf9feaec', 'date' => '21 Nov 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.4.1.tar.bz2', 'name' => 'PHP 8.4.1 (tar.bz2)', 'sha256' => 'ef8a270118ed128b765fc31f198c7f4650c8171411b0f6a3a1a3aba11fcacc23', 'date' => '21 Nov 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.4.1.tar.xz', 'name' => 'PHP 8.4.1 (tar.xz)', @@ -1825,34 +1825,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.14' => + '8.3.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_14.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '21 Nov 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.14.tar.gz', 'name' => 'PHP 8.3.14 (tar.gz)', 'sha256' => 'e4ee602c31e2f701c9f0209a2902dd4802727431246a9155bf56dda7bcf7fb4a', 'date' => '21 Nov 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.14.tar.bz2', 'name' => 'PHP 8.3.14 (tar.bz2)', 'sha256' => 'f56fa669ce4c01452a2921f40034d779d8c2b97d0749493ad4781813b9221cf8', 'date' => '21 Nov 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.14.tar.xz', 'name' => 'PHP 8.3.14 (tar.xz)', @@ -1862,34 +1862,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.26' => + '8.2.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_26.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '21 Nov 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.26.tar.gz', 'name' => 'PHP 8.2.26 (tar.gz)', 'sha256' => '04e47b46b347ed6404dcc9e9989486710b075eafc8490500fd271aeeac5d83cb', 'date' => '21 Nov 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.26.tar.bz2', 'name' => 'PHP 8.2.26 (tar.bz2)', 'sha256' => 'be57c347d451c905bcb4336832a864d9928dd0e20989b872705fea0ba6476c6b', 'date' => '21 Nov 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.26.tar.xz', 'name' => 'PHP 8.2.26 (tar.xz)', @@ -1899,34 +1899,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.30' => + '8.1.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_30.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '26 Sep 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.30.tar.gz', 'name' => 'PHP 8.1.30 (tar.gz)', 'sha256' => '80addd302b7e9708e0d106779c3827520eccaf14af1149174b51da33d63e6af7', 'date' => '26 Sep 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.30.tar.bz2', 'name' => 'PHP 8.1.30 (tar.bz2)', 'sha256' => 'cb1625e5ac49b91037477e3e7767bb0624343971aeb992f4791b618af571d23e', 'date' => '26 Sep 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.30.tar.xz', 'name' => 'PHP 8.1.30 (tar.xz)', @@ -1936,33 +1936,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.13' => + '8.3.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_13.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '24 Oct 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.13.tar.gz', 'name' => 'PHP 8.3.13 (tar.gz)', 'sha256' => 'ffe34317d2688ed3161809c90ca4135c84ebfdfd12a46880a264d7d1e1d7739a', 'date' => '24 Oct 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.13.tar.bz2', 'name' => 'PHP 8.3.13 (tar.bz2)', 'sha256' => 'c7791c82e1a554ccaf84a40ba71cc1417ba9af67fb5b39780837fd7c7eb6f124', 'date' => '24 Oct 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.13.tar.xz', 'name' => 'PHP 8.3.13 (tar.xz)', @@ -1972,33 +1972,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.25' => + '8.2.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_25.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '24 Oct 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.25.tar.gz', 'name' => 'PHP 8.2.25 (tar.gz)', 'sha256' => '7fe7ba6e3e66cd0e61cfa95341e6aefc8790030a7867333f54aef5fb78aad18b', 'date' => '24 Oct 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.25.tar.bz2', 'name' => 'PHP 8.2.25 (tar.bz2)', 'sha256' => '07b41c5e96c60c096510e45f02f818414d11bdd0d5da1b6840ddba2ba7289401', 'date' => '24 Oct 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.25.tar.xz', 'name' => 'PHP 8.2.25 (tar.xz)', @@ -2008,34 +2008,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.24' => + '8.2.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_24.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '26 Sep 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.24.tar.gz', 'name' => 'PHP 8.2.24 (tar.gz)', 'sha256' => '5d26441969279a594e404bb9f2e17b6f74bb10606fe05911e739137673ae6c4c', 'date' => '26 Sep 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.24.tar.bz2', 'name' => 'PHP 8.2.24 (tar.bz2)', 'sha256' => '4cc76ec644eee97d17c92bfe8d0e84714fedf299a538b7dfadc0639dd0dc432f', 'date' => '26 Sep 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.24.tar.xz', 'name' => 'PHP 8.2.24 (tar.xz)', @@ -2045,34 +2045,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.12' => + '8.3.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_12.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '26 Sep 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.12.tar.gz', 'name' => 'PHP 8.3.12 (tar.gz)', 'sha256' => '7090e551e05b26384546345d6a162c71b74550febf75bdfd16dfd1f0cfa8647c', 'date' => '26 Sep 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.12.tar.bz2', 'name' => 'PHP 8.3.12 (tar.bz2)', 'sha256' => '807633496ccdb370a8905458db82bd67366e98a6d59728914b797b87e9caecbf', 'date' => '26 Sep 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.12.tar.xz', 'name' => 'PHP 8.3.12 (tar.xz)', @@ -2082,34 +2082,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.29' => + '8.1.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_29.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '06 Jun 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.29.tar.gz', 'name' => 'PHP 8.1.29 (tar.gz)', 'sha256' => '8b2609bf1d3173aa38269a9af21532c65f730aadd3051f9aae011eea9e246de5', 'date' => '06 Jun 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.29.tar.bz2', 'name' => 'PHP 8.1.29 (tar.bz2)', 'sha256' => '87a60313263f2f533f180e719272ca5e47cd9884d4ec3c93720198eaffae0827', 'date' => '06 Jun 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.29.tar.xz', 'name' => 'PHP 8.1.29 (tar.xz)', @@ -2119,33 +2119,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.23' => + '8.2.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_23.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '29 Aug 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.23.tar.gz', 'name' => 'PHP 8.2.23 (tar.gz)', 'sha256' => 'f5cb5f0e063bcc632c60a8f26af63b19d5f924f1fc54b4471d88cfaa865d6917', 'date' => '29 Aug 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.23.tar.bz2', 'name' => 'PHP 8.2.23 (tar.bz2)', 'sha256' => 'f7c90cda7a3c1de01f3bfb7b469d52dec9eba2f3b83320836004f9c2eecae26b', 'date' => '29 Aug 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.23.tar.xz', 'name' => 'PHP 8.2.23 (tar.xz)', @@ -2155,33 +2155,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.11' => + '8.3.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_11.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '29 Aug 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.11.tar.gz', 'name' => 'PHP 8.3.11 (tar.gz)', 'sha256' => 'b93a69af83a1302543789408194bd1ae9829e116e784d578778200f20f1b72d4', 'date' => '29 Aug 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.11.tar.bz2', 'name' => 'PHP 8.3.11 (tar.bz2)', 'sha256' => '6640e2455080a89adc41d4e57bb04f8c2bfb7eec627fe199af973bff34d7f0ee', 'date' => '29 Aug 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.11.tar.xz', 'name' => 'PHP 8.3.11 (tar.xz)', @@ -2191,33 +2191,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.10' => + '8.3.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_10.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '01 Aug 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.10.tar.gz', 'name' => 'PHP 8.3.10 (tar.gz)', 'sha256' => 'd0b4dd5ff465053248fd28dacf2fe0bed79deaaef657890cecb6bfcb73996dcd', 'date' => '01 Aug 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.10.tar.bz2', 'name' => 'PHP 8.3.10 (tar.bz2)', 'sha256' => 'e584199c350b46343c37069bb9cc20ad893cb04c747c899ef1b05eadc0eea3b0', 'date' => '01 Aug 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.10.tar.xz', 'name' => 'PHP 8.3.10 (tar.xz)', @@ -2227,33 +2227,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.22' => + '8.2.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_22.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '01 Aug 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.22.tar.gz', 'name' => 'PHP 8.2.22 (tar.gz)', 'sha256' => '44197016c9eeed5c50523e20eb44adc4dd9d84ac08bdf9e46077e775d467d7d0', 'date' => '01 Aug 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.22.tar.bz2', 'name' => 'PHP 8.2.22 (tar.bz2)', 'sha256' => '5aae5964c60533185f9be928cf7d79a13393cc5560cedf1f4b977944cc76a585', 'date' => '01 Aug 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.22.tar.xz', 'name' => 'PHP 8.2.22 (tar.xz)', @@ -2263,33 +2263,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.21' => + '8.2.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_21.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Jul 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.21.tar.gz', 'name' => 'PHP 8.2.21 (tar.gz)', 'sha256' => '0c6323699309a4d2e71057f01bc071b199f240973c349287b667a3ab36a496c6', 'date' => '04 Jul 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.21.tar.bz2', 'name' => 'PHP 8.2.21 (tar.bz2)', 'sha256' => 'f9876fe7d4d96d41aced199b58a1f7ae7b6655ddc92673135feded7f6939d77f', 'date' => '04 Jul 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.21.tar.xz', 'name' => 'PHP 8.2.21 (tar.xz)', @@ -2299,33 +2299,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.9' => + '8.3.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_9.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Jul 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.9.tar.gz', 'name' => 'PHP 8.3.9 (tar.gz)', 'sha256' => 'f484dec6ee005c83f899af02fc021e1bc3b1d7b3f143ca062ef66b0fcee96566', 'date' => '04 Jul 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.9.tar.bz2', 'name' => 'PHP 8.3.9 (tar.bz2)', 'sha256' => '96edc6d82b7503a6650541fc477abd5456df28dfaa8c9388ff9e31d9fe1e3112', 'date' => '04 Jul 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.9.tar.xz', 'name' => 'PHP 8.3.9 (tar.xz)', @@ -2335,34 +2335,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.8' => + '8.3.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_8.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '06 Jun 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.8.tar.gz', 'name' => 'PHP 8.3.8 (tar.gz)', 'sha256' => '0ebed9f1471871cf131e504629f3947f2acd38a655cc31b036f99efd0e3dbdeb', 'date' => '06 Jun 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.8.tar.bz2', 'name' => 'PHP 8.3.8 (tar.bz2)', 'sha256' => 'f4a6cb005ae117aba86c2044932cf563899a2e977ac09781aa74b2161ddc563b', 'date' => '06 Jun 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.8.tar.xz', 'name' => 'PHP 8.3.8 (tar.xz)', @@ -2372,34 +2372,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.20' => + '8.2.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_20.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '06 Jun 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.20.tar.gz', 'name' => 'PHP 8.2.20 (tar.gz)', 'sha256' => '05a4365f7bc6475ac4fef65dde13886913dbc0036e63895d369c1fc6e8206107', 'date' => '06 Jun 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.20.tar.bz2', 'name' => 'PHP 8.2.20 (tar.bz2)', 'sha256' => '5dec6fa61c7b9c47aa1d76666be651f2642ed2bcf6cd8638c57e3571ce2aac61', 'date' => '06 Jun 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.20.tar.xz', 'name' => 'PHP 8.2.20 (tar.xz)', @@ -2409,33 +2409,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.19' => + '8.2.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_19.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '09 May 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.19.tar.gz', 'name' => 'PHP 8.2.19 (tar.gz)', 'sha256' => '8bfdd20662b41a238a5acd84fab3e05c36a685fcb56e6d8ac18eeb87057ab2bc', 'date' => '09 May 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.19.tar.bz2', 'name' => 'PHP 8.2.19 (tar.bz2)', 'sha256' => '3c18f7ce51b7c7b26b797e1f97079d386b30347eb04e817f5e6c8e9b275e2a6a', 'date' => '09 May 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.19.tar.xz', 'name' => 'PHP 8.2.19 (tar.xz)', @@ -2445,33 +2445,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.7' => + '8.3.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_7.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '09 May 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.7.tar.gz', 'name' => 'PHP 8.3.7 (tar.gz)', 'sha256' => '2e11d10b651459a8767401e66b5d70e3b048e446579fcdeb0b69bcba789af8c4', 'date' => '09 May 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.7.tar.bz2', 'name' => 'PHP 8.3.7 (tar.bz2)', 'sha256' => '01c20cde1c5a5696651875ed22f507849679fba740f8c421616b7d43d7f797da', 'date' => '09 May 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.7.tar.xz', 'name' => 'PHP 8.3.7 (tar.xz)', @@ -2481,34 +2481,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.28' => + '8.1.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_28.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '11 Apr 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.28.tar.gz', 'name' => 'PHP 8.1.28 (tar.gz)', 'sha256' => 'a2a9d853f4a4c9ff8631da5dc3a6cec5ab083ef37a214877b0240dcfcdfdefea', 'date' => '11 Apr 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.28.tar.bz2', 'name' => 'PHP 8.1.28 (tar.bz2)', 'sha256' => '8be450096e0153c47d75384e7dd595cc897f1d53ce0060708ce9589bcc3141ee', 'date' => '11 Apr 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.28.tar.xz', 'name' => 'PHP 8.1.28 (tar.xz)', @@ -2518,34 +2518,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.6' => + '8.3.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_6.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '11 Apr 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.6.tar.gz', 'name' => 'PHP 8.3.6 (tar.gz)', 'sha256' => '39695f5bd107892e36fd2ed6b3d3a78140fd4b05d556d6c6531a921633cacb5f', 'date' => '11 Apr 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.6.tar.bz2', 'name' => 'PHP 8.3.6 (tar.bz2)', 'sha256' => '6324b1ddd8eb3025b041034b88dc2bc0b4819b0022129eeaeba37e47803108bc', 'date' => '11 Apr 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.6.tar.xz', 'name' => 'PHP 8.3.6 (tar.xz)', @@ -2555,34 +2555,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.18' => + '8.2.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_18.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '11 Apr 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.18.tar.gz', 'name' => 'PHP 8.2.18 (tar.gz)', 'sha256' => 'b934ca7e8c82945c5cbf0aa2a3f66727eb5b5098e551819e1b090572d6a51ead', 'date' => '11 Apr 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.18.tar.bz2', 'name' => 'PHP 8.2.18 (tar.bz2)', 'sha256' => 'ca0b07c254200320f518ac5b3df540a9cf14d866f3c93edc3013b52e06fac796', 'date' => '11 Apr 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.18.tar.xz', 'name' => 'PHP 8.2.18 (tar.xz)', @@ -2592,33 +2592,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.27' => + '8.1.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_27.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '21 Dec 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.27.tar.gz', 'name' => 'PHP 8.1.27 (tar.gz)', 'sha256' => '9aa5d7a29389d799885d90740932697006d5d0f55d1def67678e0c14f6ab7b2d', 'date' => '21 Dec 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.27.tar.bz2', 'name' => 'PHP 8.1.27 (tar.bz2)', 'sha256' => 'a15fd73ea44f2df30b07d24786e07d1948b0ea3eed0b8b845735d500dc28bff1', 'date' => '21 Dec 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.27.tar.xz', 'name' => 'PHP 8.1.27 (tar.xz)', @@ -2628,33 +2628,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.4' => + '8.3.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_4.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '14 Mar 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.4.tar.gz', 'name' => 'PHP 8.3.4 (tar.gz)', 'sha256' => '0e2801e47fb1b92d2743204fcf650ce2fcad1a13ef7a44fe05738101a383e4a2', 'date' => '14 Mar 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.4.tar.bz2', 'name' => 'PHP 8.3.4 (tar.bz2)', 'sha256' => '3c5caf18e0c0a243aaec913a39ecb092043195adde4c3fc42e945da5b9277695', 'date' => '14 Mar 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.4.tar.xz', 'name' => 'PHP 8.3.4 (tar.xz)', @@ -2664,33 +2664,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.17' => + '8.2.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_17.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '14 Mar 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.17.tar.gz', 'name' => 'PHP 8.2.17 (tar.gz)', 'sha256' => '1d8ab98e1c09518c672c5afcbef0e61f9003173c7638fc686461ae670d12742e', 'date' => '14 Mar 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.17.tar.bz2', 'name' => 'PHP 8.2.17 (tar.bz2)', 'sha256' => '191316c203267d96160b47d22f955d4dc11793de8a5f327e0c2a76275a6894ea', 'date' => '14 Mar 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.17.tar.xz', 'name' => 'PHP 8.2.17 (tar.xz)', @@ -2700,33 +2700,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.3' => + '8.3.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_3.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '15 Feb 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.3.tar.gz', 'name' => 'PHP 8.3.3 (tar.gz)', 'sha256' => '61285ae17a93d172c9f2ebfe4280058d05bda17cadab705ca5b51ba3e6f3a5ac', 'date' => '15 Feb 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.3.tar.bz2', 'name' => 'PHP 8.3.3 (tar.bz2)', 'sha256' => 'aafb613ba79594a23fe722f8e90ad473300610bf80e74b8aa52da9cac2dc4e2a', 'date' => '15 Feb 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.3.tar.xz', 'name' => 'PHP 8.3.3 (tar.xz)', @@ -2736,33 +2736,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.16' => + '8.2.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_16.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '15 Feb 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.16.tar.gz', 'name' => 'PHP 8.2.16 (tar.gz)', 'sha256' => '62a92ef7c2c6f44b12e459d8f3d649aa8ebac5e05845f7479fe55a7580cd2dd0', 'date' => '15 Feb 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.16.tar.bz2', 'name' => 'PHP 8.2.16 (tar.bz2)', 'sha256' => '2658c1b8935ab6b53a7f209354602761ab07066e66920bc472b8815fd1b43f71', 'date' => '15 Feb 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.16.tar.xz', 'name' => 'PHP 8.2.16 (tar.xz)', @@ -2772,33 +2772,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.15' => + '8.2.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_15.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '18 Jan 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.15.tar.gz', 'name' => 'PHP 8.2.15 (tar.gz)', 'sha256' => 'f9390d23708c65f428e868583dce7ab4a69e88ab6f377137a56643076f966b8f', 'date' => '18 Jan 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.15.tar.bz2', 'name' => 'PHP 8.2.15 (tar.bz2)', 'sha256' => '50c3e220b7aa63a85716233c902eb44cc0a4667ed0b8335722ae2391b1355e7a', 'date' => '18 Jan 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.15.tar.xz', 'name' => 'PHP 8.2.15 (tar.xz)', @@ -2808,33 +2808,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.2' => + '8.3.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_2.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '18 Jan 2024', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.2.tar.gz', 'name' => 'PHP 8.3.2 (tar.gz)', 'sha256' => 'decf0f51e5415b21fb6350753e45b6c3be5cc0868e4ec561e5c89326c8e6ef16', 'date' => '18 Jan 2024', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.2.tar.bz2', 'name' => 'PHP 8.3.2 (tar.bz2)', 'sha256' => '582b3c837a8d952efffe274a5e49706c43a88c162830c2a8c358089fe7449284', 'date' => '18 Jan 2024', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.2.tar.xz', 'name' => 'PHP 8.3.2 (tar.xz)', @@ -2844,33 +2844,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.14' => + '8.2.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_14.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '21 Dec 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.14.tar.gz', 'name' => 'PHP 8.2.14 (tar.gz)', 'sha256' => '4c1fbb55a10ece7f4532feba9f3f88b9b211c11320742977588738374c03255f', 'date' => '21 Dec 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.14.tar.bz2', 'name' => 'PHP 8.2.14 (tar.bz2)', 'sha256' => 'f871e131333d60ae6c537b1adddbc2aea54c436c562af986fb8309c060040b9e', 'date' => '21 Dec 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.14.tar.xz', 'name' => 'PHP 8.2.14 (tar.xz)', @@ -2880,33 +2880,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.1' => + '8.3.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_1.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '21 Dec 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.1.tar.gz', 'name' => 'PHP 8.3.1 (tar.gz)', 'sha256' => '2b10218b5e81915d1708ab4b6351362d073556ec73a790553c61fd89c119924e', 'date' => '21 Dec 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.1.tar.bz2', 'name' => 'PHP 8.3.1 (tar.bz2)', 'sha256' => 'c40fae9197fa68a532f6a062c316dafe3b04c545136b54b9ead4932fc26c6ae1', 'date' => '21 Dec 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.1.tar.xz', 'name' => 'PHP 8.3.1 (tar.xz)', @@ -2916,33 +2916,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.13' => + '8.2.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_13.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '23 Nov 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.13.tar.gz', 'name' => 'PHP 8.2.13 (tar.gz)', 'sha256' => '6a194038f5a9e46d8f70a9d59c072c3b08d6edbdd8e304096e24ccf2225bcf1b', 'date' => '23 Nov 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.13.tar.bz2', 'name' => 'PHP 8.2.13 (tar.bz2)', 'sha256' => '66529f43b213131e6b253c5602bef05f049458d21292730fccd63b48a06d67ba', 'date' => '23 Nov 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.13.tar.xz', 'name' => 'PHP 8.2.13 (tar.xz)', @@ -2952,33 +2952,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.26' => + '8.1.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_26.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '23 Nov 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.26.tar.gz', 'name' => 'PHP 8.1.26 (tar.gz)', 'sha256' => 'd954cecfc3d294c2fccbe2b1a6bef784ce0d6c5d44a9e28f8a527e092825f2cb', 'date' => '23 Nov 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.26.tar.bz2', 'name' => 'PHP 8.1.26 (tar.bz2)', 'sha256' => '83bde249c84aa1a043a8c8d0eea09345c2cae69b9784cdf02229fc916fbb9ea0', 'date' => '23 Nov 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.26.tar.xz', 'name' => 'PHP 8.1.26 (tar.xz)', @@ -2988,33 +2988,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.3.0' => + '8.3.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_3_0.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '23 Nov 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.3.0.tar.gz', 'name' => 'PHP 8.3.0 (tar.gz)', 'sha256' => '557ae14650f1d1984d3213e3fcd8d93a5f11418b3f8026d3a2d5022251163951', 'date' => '23 Nov 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.3.0.tar.bz2', 'name' => 'PHP 8.3.0 (tar.bz2)', 'sha256' => 'de67d0833d42b196e5a66fa1a332f45e296cbe8e9472e9256b2a071c34dc5ed6', 'date' => '23 Nov 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.3.0.tar.xz', 'name' => 'PHP 8.3.0 (tar.xz)', @@ -3024,34 +3024,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.30' => + '8.0.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_30.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '03 Aug 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.30.tar.gz', 'name' => 'PHP 8.0.30 (tar.gz)', 'sha256' => '449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c', 'date' => '03 Aug 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.30.tar.bz2', 'name' => 'PHP 8.0.30 (tar.bz2)', 'sha256' => '98a9cb6a0e27a6950cdf4b26dcac48f2be2d936d5224a502f066cf3d4cf19b92', 'date' => '03 Aug 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.30.tar.xz', 'name' => 'PHP 8.0.30 (tar.xz)', @@ -3061,33 +3061,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.25' => + '8.1.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_25.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '26 Oct 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.25.tar.gz', 'name' => 'PHP 8.1.25 (tar.gz)', 'sha256' => '1a8c59d6b3eccb404c229e947558d2bf1220c3dec0b0036690fadc07f39934ab', 'date' => '26 Oct 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.25.tar.bz2', 'name' => 'PHP 8.1.25 (tar.bz2)', 'sha256' => 'a86a88c1840c1bc832bcfd2fbec3b8a1942c8314da5dff53f09f9c98d0c12e8a', 'date' => '26 Oct 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.25.tar.xz', 'name' => 'PHP 8.1.25 (tar.xz)', @@ -3097,33 +3097,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.12' => + '8.2.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_12.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '26 Oct 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.12.tar.gz', 'name' => 'PHP 8.2.12 (tar.gz)', 'sha256' => 'b2b74a91f5fac14ce10ece0ac210f6f5d72f4367a3cb638e80d117d183750a21', 'date' => '26 Oct 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.12.tar.bz2', 'name' => 'PHP 8.2.12 (tar.bz2)', 'sha256' => '704325f56b1b4c17f9f951e1ffef5c64e148896053f34e2626152cbaa2f05893', 'date' => '26 Oct 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.12.tar.xz', 'name' => 'PHP 8.2.12 (tar.xz)', @@ -3133,33 +3133,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.24' => + '8.1.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_24.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '28 Sep 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.24.tar.gz', 'name' => 'PHP 8.1.24 (tar.gz)', 'sha256' => 'd6001a5c16765cd1897609fc71ff083e35db9a28c8874a1ff191cdebe80a6460', 'date' => '28 Sep 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.24.tar.bz2', 'name' => 'PHP 8.1.24 (tar.bz2)', 'sha256' => 'b0ae5804a9ad53a7e28d0a32629495f816f935b10830c71f4ec15827185a73c9', 'date' => '28 Sep 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.24.tar.xz', 'name' => 'PHP 8.1.24 (tar.xz)', @@ -3169,33 +3169,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.11' => + '8.2.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_11.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '28 Sep 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.11.tar.gz', 'name' => 'PHP 8.2.11 (tar.gz)', 'sha256' => '48b1b41279a678a4d4afcd0b256ed921ebf2a91febb0634fdc4449b91c75799f', 'date' => '28 Sep 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.11.tar.bz2', 'name' => 'PHP 8.2.11 (tar.bz2)', 'sha256' => '38192daeffabf4af6c427bf17ac1f82565d9c7522e0dbd32215162944434b28b', 'date' => '28 Sep 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.11.tar.xz', 'name' => 'PHP 8.2.11 (tar.xz)', @@ -3205,33 +3205,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.23' => + '8.1.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_23.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '31 Aug 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.23.tar.gz', 'name' => 'PHP 8.1.23 (tar.gz)', 'sha256' => 'ec5330b3978edc8fe2f78830720505bf69d12542622b5cddccee63ae3a0e5b58', 'date' => '31 Aug 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.23.tar.bz2', 'name' => 'PHP 8.1.23 (tar.bz2)', 'sha256' => '929a62785177da892ddffca074bab2f1ff578473a0d4adb915c12f5f3e34ec1b', 'date' => '31 Aug 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.23.tar.xz', 'name' => 'PHP 8.1.23 (tar.xz)', @@ -3241,33 +3241,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.10' => + '8.2.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_10.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '31 Aug 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.10.tar.gz', 'name' => 'PHP 8.2.10 (tar.gz)', 'sha256' => '7e3e277d6eab652616f90bc7c75991179c0512953933ceba27496fb5514f7e78', 'date' => '31 Aug 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.10.tar.bz2', 'name' => 'PHP 8.2.10 (tar.bz2)', 'sha256' => 'cc9834e8f1b613d7677af8843c3651e9829abca8ebfe9079251d0d85d9a0aa3e', 'date' => '31 Aug 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.10.tar.xz', 'name' => 'PHP 8.2.10 (tar.xz)', @@ -3277,34 +3277,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.22' => + '8.1.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_22.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '03 Aug 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.22.tar.gz', 'name' => 'PHP 8.1.22 (tar.gz)', 'sha256' => 'f5140e94b139b4adec4b29c337537b7b6f1ef023197eb32be909e724e3da157a', 'date' => '03 Aug 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.22.tar.bz2', 'name' => 'PHP 8.1.22 (tar.bz2)', 'sha256' => '992354e382c6c618d01ed4be06beea8dec3178b14153df64d3c8c48b85e9fbc2', 'date' => '03 Aug 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.22.tar.xz', 'name' => 'PHP 8.1.22 (tar.xz)', @@ -3314,34 +3314,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.9' => + '8.2.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_9.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '03 Aug 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.9.tar.gz', 'name' => 'PHP 8.2.9 (tar.gz)', 'sha256' => '5fac52041335cacfb5845aeff2303f92403925338a0285f2e160feebcb840f04', 'date' => '03 Aug 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.9.tar.bz2', 'name' => 'PHP 8.2.9 (tar.bz2)', 'sha256' => '48460b994ae7eb5096a310f44d13e865de1771104d4a550d53072be58a6f176c', 'date' => '03 Aug 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.9.tar.xz', 'name' => 'PHP 8.2.9 (tar.xz)', @@ -3351,33 +3351,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.8' => + '8.2.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_8.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '06 Jul 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.8.tar.gz', 'name' => 'PHP 8.2.8 (tar.gz)', 'sha256' => '6419b74e9b675c8d5a1afd2788c4d7996a19bbe2be409716ccb2067897af9df1', 'date' => '06 Jul 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.8.tar.bz2', 'name' => 'PHP 8.2.8 (tar.bz2)', 'sha256' => '995ed4009c7917c962d31837a1a3658f36d4af4f357b673c97ffdbe6403f8517', 'date' => '06 Jul 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.8.tar.xz', 'name' => 'PHP 8.2.8 (tar.xz)', @@ -3387,34 +3387,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.29' => + '8.0.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_29.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '08 Jun 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.29.tar.gz', 'name' => 'PHP 8.0.29 (tar.gz)', 'sha256' => 'db6ee08df5706365f624cde1cffb20ad6de1effe59d7e886337213a09f2e2684', 'date' => '08 Jun 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.29.tar.bz2', 'name' => 'PHP 8.0.29 (tar.bz2)', 'sha256' => '4801a1f0e17170286723ab54acd045ac78a9656021d56f104a64543eec922e12', 'date' => '08 Jun 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.29.tar.xz', 'name' => 'PHP 8.0.29 (tar.xz)', @@ -3424,33 +3424,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.21' => + '8.1.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_21.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '06 Jul 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.21.tar.gz', 'name' => 'PHP 8.1.21 (tar.gz)', 'sha256' => 'a95f8d35924aa5705ad07a70dc994bf41b5d45126ecdec7aaad6edfbe5e1c37f', 'date' => '06 Jul 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.21.tar.bz2', 'name' => 'PHP 8.1.21 (tar.bz2)', 'sha256' => '6ea49e8335d632177f56b507160aa151c7b020185789a9c14859fce5d4a0776d', 'date' => '06 Jul 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.21.tar.xz', 'name' => 'PHP 8.1.21 (tar.xz)', @@ -3460,34 +3460,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.20' => + '8.1.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_20.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '08 Jun 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.20.tar.gz', 'name' => 'PHP 8.1.20 (tar.gz)', 'sha256' => 'b7d3e2a0c5bed37bb39e4627550d0ee5a4a600042b83c63037b0f5f84793cbe6', 'date' => '08 Jun 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.20.tar.bz2', 'name' => 'PHP 8.1.20 (tar.bz2)', 'sha256' => '55578587514a2707500f85319e57c0d4df9b8803cdb26566595ac4bf459dc4dd', 'date' => '08 Jun 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.20.tar.xz', 'name' => 'PHP 8.1.20 (tar.xz)', @@ -3497,34 +3497,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.7' => + '8.2.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_7.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '08 Jun 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.7.tar.gz', 'name' => 'PHP 8.2.7 (tar.gz)', 'sha256' => '7046f939f0e5116285341d55c06af1d50907e107ac2c70defc32ef880f88cde4', 'date' => '08 Jun 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.7.tar.bz2', 'name' => 'PHP 8.2.7 (tar.bz2)', 'sha256' => '5bfb2a35c67921bdcadd5c90cb290ad7537d24da113a5e8bc2d646b02de7488f', 'date' => '08 Jun 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.7.tar.xz', 'name' => 'PHP 8.2.7 (tar.xz)', @@ -3534,33 +3534,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.19' => + '8.1.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_19.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '11 May 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.19.tar.gz', 'name' => 'PHP 8.1.19 (tar.gz)', 'sha256' => '0ebb6b0ecf5d8e355c2f1362807f9b73c6e803d496c5ad3e4fb00be989988372', 'date' => '11 May 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.19.tar.bz2', 'name' => 'PHP 8.1.19 (tar.bz2)', 'sha256' => '64207207fda30be926a2ef1f66ff266bf1fdc7e03339bc99fbba0a1245e4279b', 'date' => '11 May 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.19.tar.xz', 'name' => 'PHP 8.1.19 (tar.xz)', @@ -3570,33 +3570,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.6' => + '8.2.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_6.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '11 May 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.6.tar.gz', 'name' => 'PHP 8.2.6 (tar.gz)', 'sha256' => '1b8463df1f180ed39475cfcded1ff106242ccb823f99c9fc1a407c0b76afa2c8', 'date' => '11 May 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.6.tar.bz2', 'name' => 'PHP 8.2.6 (tar.bz2)', 'sha256' => '44a70c52f537662c10d91eedbf51fd765c9961be6ba2508ed63bf7a26cdd3100', 'date' => '11 May 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.6.tar.xz', 'name' => 'PHP 8.2.6 (tar.xz)', @@ -3606,34 +3606,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.28' => + '8.0.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_28.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '14 Feb 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.28.tar.gz', 'name' => 'PHP 8.0.28 (tar.gz)', 'sha256' => '7432184eae01e4e8e39f03f80e8ec0ca2c8bfebc56e9a7b983541ca8805df22f', 'date' => '14 Feb 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.28.tar.bz2', 'name' => 'PHP 8.0.28 (tar.bz2)', 'sha256' => '9d5e74935c900e3b9c7b6bc740596b71933630eb9f63717c0c4923d8c788c62e', 'date' => '14 Feb 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.28.tar.xz', 'name' => 'PHP 8.0.28 (tar.xz)', @@ -3643,33 +3643,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.18' => + '8.1.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_18.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '13 Apr 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.18.tar.gz', 'name' => 'PHP 8.1.18 (tar.gz)', 'sha256' => '8b6b12902e7d6bdf68668acc067b4d75a3c504722f768098c5f80c7d7bfd2563', 'date' => '13 Apr 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.18.tar.bz2', 'name' => 'PHP 8.1.18 (tar.bz2)', 'sha256' => 'd2ac30d6b574fca594fe0cc01c0693e23585b27443e342b0aab07274cde4416e', 'date' => '13 Apr 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.18.tar.xz', 'name' => 'PHP 8.1.18 (tar.xz)', @@ -3679,33 +3679,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.5' => + '8.2.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_5.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '13 Apr 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.5.tar.gz', 'name' => 'PHP 8.2.5 (tar.gz)', 'sha256' => '8974dea2507155471660b13a0bcbdc165ac778eeb845a7dbd65d5ffb92738c0a', 'date' => '13 Apr 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.5.tar.bz2', 'name' => 'PHP 8.2.5 (tar.bz2)', 'sha256' => 'e5a80663cca4f6044ad86a489798147c7af037eca96f6cd357ab36d28cb63757', 'date' => '13 Apr 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.5.tar.xz', 'name' => 'PHP 8.2.5 (tar.xz)', @@ -3715,33 +3715,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.17' => + '8.1.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_17.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '16 Mar 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.17.tar.gz', 'name' => 'PHP 8.1.17 (tar.gz)', 'sha256' => 'ef270156291d90a80ce83d68eee812f301cf5e48836a0ff6fd2931913f8e25c5', 'date' => '16 Mar 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.17.tar.bz2', 'name' => 'PHP 8.1.17 (tar.bz2)', 'sha256' => 'f4fb298a0eb091f944ecebac57b76daae768a970c2f51610a5ab24f34d8c0caf', 'date' => '16 Mar 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.17.tar.xz', 'name' => 'PHP 8.1.17 (tar.xz)', @@ -3751,33 +3751,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.4' => + '8.2.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_4.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '16 Mar 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.4.tar.gz', 'name' => 'PHP 8.2.4 (tar.gz)', 'sha256' => 'cee7748015a2ddef1739d448b980b095dccd09ed589cf1b6c6ee2d16f5e73c50', 'date' => '16 Mar 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.4.tar.bz2', 'name' => 'PHP 8.2.4 (tar.bz2)', 'sha256' => '79186f94bd510db86e31e535dd448277a1eb92a87878303a1ead44602d8b1197', 'date' => '16 Mar 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.4.tar.xz', 'name' => 'PHP 8.2.4 (tar.xz)', @@ -3787,34 +3787,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.3' => + '8.2.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_3.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '14 Feb 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.3.tar.gz', 'name' => 'PHP 8.2.3 (tar.gz)', 'sha256' => '7c475bcbe61d28b6878604b1b6f387f39d1a63b5f21fa8156fd7aa615d43e259', 'date' => '14 Feb 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.3.tar.bz2', 'name' => 'PHP 8.2.3 (tar.bz2)', 'sha256' => '87bb58865f38f5e2941813029152cea2102fe2961bb4d68b88f831ddd0548d0f', 'date' => '14 Feb 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.3.tar.xz', 'name' => 'PHP 8.2.3 (tar.xz)', @@ -3824,34 +3824,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.16' => + '8.1.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_16.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '14 Feb 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.16.tar.gz', 'name' => 'PHP 8.1.16 (tar.gz)', 'sha256' => 'a929fb9ed3bc364a5dea4f64954e8aaaa3408b87df04d7c6f743a190f5594e84', 'date' => '14 Feb 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.16.tar.bz2', 'name' => 'PHP 8.1.16 (tar.bz2)', 'sha256' => 'cd9f0ea14d82d9455587a49a0b6c802a7b8d8ff79703f9f48b17db010fb633ce', 'date' => '14 Feb 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.16.tar.xz', 'name' => 'PHP 8.1.16 (tar.xz)', @@ -3861,33 +3861,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.15' => + '8.1.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_15.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '02 Feb 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.15.tar.gz', 'name' => 'PHP 8.1.15 (tar.gz)', 'sha256' => '4035236180efac535ff4f22db9ef3195672f31e3e0aa88f89c38ac0715beca3b', 'date' => '02 Feb 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.15.tar.bz2', 'name' => 'PHP 8.1.15 (tar.bz2)', 'sha256' => '18da0a94228f4207f8b9e3e23e881f2b74d0d6caefb908bdb5863d4a01035cc6', 'date' => '02 Feb 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.15.tar.xz', 'name' => 'PHP 8.1.15 (tar.xz)', @@ -3897,33 +3897,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.2' => + '8.2.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_2.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '02 Feb 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.2.tar.gz', 'name' => 'PHP 8.2.2 (tar.gz)', 'sha256' => 'd82dda50356cebf6b6e14dbb576b14bc8b85f0f4476a787f0f50611f11eb37d2', 'date' => '02 Feb 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.2.tar.bz2', 'name' => 'PHP 8.2.2 (tar.bz2)', 'sha256' => 'f5223a5274eda8b40c19e47de0de4678c65d64401ccf710e2464962eb8136804', 'date' => '02 Feb 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.2.tar.xz', 'name' => 'PHP 8.2.2 (tar.xz)', @@ -3933,34 +3933,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.27' => + '8.0.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_27.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '05 Jan 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.27.tar.gz', 'name' => 'PHP 8.0.27 (tar.gz)', 'sha256' => 'fe2376faaf91c28ead89a36e118c177f4a8c9a7280a189b97265da1af1f4d305', 'date' => '05 Jan 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.27.tar.bz2', 'name' => 'PHP 8.0.27 (tar.bz2)', 'sha256' => '5fd882b14377c158c1b55cc6ace91fb8c19b77c596d5831ad124fbbbc902dbc8', 'date' => '05 Jan 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.27.tar.xz', 'name' => 'PHP 8.0.27 (tar.xz)', @@ -3970,34 +3970,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.14' => + '8.1.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_14.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '05 Jan 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.14.tar.gz', 'name' => 'PHP 8.1.14 (tar.gz)', 'sha256' => '4755af2563ad187ceaf4a3632359c55e3f3be4050e0299e0f713bbb5e0531965', 'date' => '05 Jan 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.14.tar.bz2', 'name' => 'PHP 8.1.14 (tar.bz2)', 'sha256' => '14ca99333dd604a504a2368946485ac35d379c4da96d28dc515d7eb502dffa32', 'date' => '05 Jan 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.14.tar.xz', 'name' => 'PHP 8.1.14 (tar.xz)', @@ -4007,34 +4007,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.1' => + '8.2.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_1.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '05 Jan 2023', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.1.tar.gz', 'name' => 'PHP 8.2.1 (tar.gz)', 'sha256' => '6d7b1b8feb14fd1c65a2bc9d0f72c75589a61a946566cf9c3bf9536a5530b635', 'date' => '05 Jan 2023', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.1.tar.bz2', 'name' => 'PHP 8.2.1 (tar.bz2)', 'sha256' => '75d6f8f365993ec0d1d9c6281d4557e6feec5a26194a468b8b01459d177efb29', 'date' => '05 Jan 2023', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.1.tar.xz', 'name' => 'PHP 8.2.1 (tar.xz)', @@ -4044,33 +4044,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.26' => + '8.0.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_26.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '24 Nov 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.26.tar.gz', 'name' => 'PHP 8.0.26 (tar.gz)', 'sha256' => '3c83a7355a640b2ba436b8202e8597df8f9daadee1ec9241729ece8e578d21cd', 'date' => '24 Nov 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.26.tar.bz2', 'name' => 'PHP 8.0.26 (tar.bz2)', 'sha256' => '6df87af96f275a75889ece6e3fe4a13abd93a767a9992863bdc0e90f1e887ee7', 'date' => '24 Nov 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.26.tar.xz', 'name' => 'PHP 8.0.26 (tar.xz)', @@ -4080,33 +4080,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.2.0' => + '8.2.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_2_0.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '08 Dec 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.2.0.tar.gz', 'name' => 'PHP 8.2.0 (tar.gz)', 'sha256' => '435c4c2439db648cdf34236f7cd459f93f943fb788b66723a033610d4a059fc6', 'date' => '08 Dec 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.2.0.tar.bz2', 'name' => 'PHP 8.2.0 (tar.bz2)', 'sha256' => '1bf4fca663f93d9e0b4909bd6eae0583a1ce383e7f05df126f28f272fa1fd51a', 'date' => '08 Dec 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.2.0.tar.xz', 'name' => 'PHP 8.2.0 (tar.xz)', @@ -4116,33 +4116,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.13' => + '8.1.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_13.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '24 Nov 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.13.tar.gz', 'name' => 'PHP 8.1.13 (tar.gz)', 'sha256' => 'eed1981ce9999d807cb139a9d463ae54bbeda2a57a9a28ad513badf5b99b0073', 'date' => '24 Nov 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.13.tar.bz2', 'name' => 'PHP 8.1.13 (tar.bz2)', 'sha256' => '93fcfdfaaa3d094a0fdb18ce08d20f20d526ee3f07a146a8a8ec82ce00b237ca', 'date' => '24 Nov 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.13.tar.xz', 'name' => 'PHP 8.1.13 (tar.xz)', @@ -4152,34 +4152,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.25' => + '8.0.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_25.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '27 Oct 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.25.tar.gz', 'name' => 'PHP 8.0.25 (tar.gz)', 'sha256' => '349a2b5a01bfccbc9af8afdf183e57bed3349706a084f3c4694aa4c7ff7cb2e9', 'date' => '27 Oct 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.25.tar.bz2', 'name' => 'PHP 8.0.25 (tar.bz2)', 'sha256' => '09d716bceb5b3db76d9023b10c1681ebbe040e51f4c18dfd35f9ff8b73bbcf8c', 'date' => '27 Oct 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.25.tar.xz', 'name' => 'PHP 8.0.25 (tar.xz)', @@ -4189,34 +4189,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.12' => + '8.1.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_12.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '27 Oct 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.12.tar.gz', 'name' => 'PHP 8.1.12 (tar.gz)', 'sha256' => 'e0e7c823c9f9aa4c021f5e34ae1a7acafc2a9f3056ca60eb70a8af8f33da3fdf', 'date' => '27 Oct 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.12.tar.bz2', 'name' => 'PHP 8.1.12 (tar.bz2)', 'sha256' => 'f87d73e917facf78de7bcde53fc2faa4d4dbe0487a9406e1ab68c8ae8f33eb03', 'date' => '27 Oct 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.12.tar.xz', 'name' => 'PHP 8.1.12 (tar.xz)', @@ -4226,34 +4226,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.11' => + '8.1.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_11.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '29 Sep 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.11.tar.gz', 'name' => 'PHP 8.1.11 (tar.gz)', 'sha256' => '3660e8408321149f5d382bb8eeb9ea7b12ea8dd7ea66069da33f6f7383750ab2', 'date' => '29 Sep 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.11.tar.bz2', 'name' => 'PHP 8.1.11 (tar.bz2)', 'sha256' => 'af6250b18b4403b6eeff9b4a02786ac86a12a208141f6f65478f79256f47f246', 'date' => '29 Sep 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.11.tar.xz', 'name' => 'PHP 8.1.11 (tar.xz)', @@ -4263,34 +4263,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.24' => + '8.0.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_24.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '29 Sep 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.24.tar.gz', 'name' => 'PHP 8.0.24 (tar.gz)', 'sha256' => '6020843a2f1ce36745d958b3ca17f3fdc42e78a43899f552ab5dbc509ff19232', 'date' => '29 Sep 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.24.tar.bz2', 'name' => 'PHP 8.0.24 (tar.bz2)', 'sha256' => '908e17cea331d5abb8506b4a89c6392b962e127c391327777c7485eb4b415d43', 'date' => '29 Sep 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.24.tar.xz', 'name' => 'PHP 8.0.24 (tar.xz)', @@ -4300,34 +4300,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.23' => + '8.0.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_23.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '01 Sep 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.23.tar.gz', 'name' => 'PHP 8.0.23 (tar.gz)', 'sha256' => 'a2dd50e9c4a0328d921b6bc914e8b4e6572f94f09867318f88acca5ac4fa76c7', 'date' => '01 Sep 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.23.tar.bz2', 'name' => 'PHP 8.0.23 (tar.bz2)', 'sha256' => '1412db46800a45ced377c2892ec6261b3c412f13dc133bfc998cfb2f147b40cf', 'date' => '01 Sep 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.23.tar.xz', 'name' => 'PHP 8.0.23 (tar.xz)', @@ -4337,33 +4337,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.10' => + '8.1.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_10.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '01 Sep 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.10.tar.gz', 'name' => 'PHP 8.1.10 (tar.gz)', 'sha256' => '3ea4f323109dfbc8d2631d08aa0e08602c1f713678e9dc6c750f081ef49eab0f', 'date' => '01 Sep 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.10.tar.bz2', 'name' => 'PHP 8.1.10 (tar.bz2)', 'sha256' => '2de8e0402285f7c56887defe651922308aded58ba60befcf3b77720209e31f10', 'date' => '01 Sep 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.10.tar.xz', 'name' => 'PHP 8.1.10 (tar.xz)', @@ -4373,33 +4373,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.22' => + '8.0.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_22.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Aug 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.22.tar.gz', 'name' => 'PHP 8.0.22 (tar.gz)', 'sha256' => '56fce7529a9798fd0895bca3539d2a65b9cac5d23ffbdf6338419c62ed083519', 'date' => '04 Aug 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.22.tar.bz2', 'name' => 'PHP 8.0.22 (tar.bz2)', 'sha256' => 'e342918d3ecd422f10032df0ac3ffb0e17f568fad6cf8e232b6f7a6a1fdc3c9c', 'date' => '04 Aug 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.22.tar.xz', 'name' => 'PHP 8.0.22 (tar.xz)', @@ -4409,33 +4409,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.9' => + '8.1.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_9.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Aug 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.9.tar.gz', 'name' => 'PHP 8.1.9 (tar.gz)', 'sha256' => '954cf77f7e0a70dc765e7639acdfdccd164be5cd1bce3dbe9d10c58dca631e76', 'date' => '04 Aug 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.9.tar.bz2', 'name' => 'PHP 8.1.9 (tar.bz2)', 'sha256' => '9ebb0e2e571db6fd5930428dcb2d19ed3e050338ec1f1347c282cae92fc086ff', 'date' => '04 Aug 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.9.tar.xz', 'name' => 'PHP 8.1.9 (tar.xz)', @@ -4445,34 +4445,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.8' => + '8.1.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_8.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '07 Jul 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.8.tar.gz', 'name' => 'PHP 8.1.8 (tar.gz)', 'sha256' => '889d910558d2492f7f2236921b9bcde620674c8b684ec02d126060f8ca45dc8d', 'date' => '07 Jul 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.8.tar.bz2', 'name' => 'PHP 8.1.8 (tar.bz2)', 'sha256' => 'b8815a5a02431453d4261e3598bd1f28516e4c0354f328c12890f257870e4c01', 'date' => '07 Jul 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.8.tar.xz', 'name' => 'PHP 8.1.8 (tar.xz)', @@ -4482,33 +4482,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.21' => + '8.0.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_21.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '07 Jul 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.21.tar.gz', 'name' => 'PHP 8.0.21 (tar.gz)', 'sha256' => '2f51f6e90e2e8efd3a20db08f0dd61d7f8d5a9362f8c7325f1ad28ccea5be0ac', 'date' => '07 Jul 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.21.tar.bz2', 'name' => 'PHP 8.0.21 (tar.bz2)', 'sha256' => '1cb7762d1ffecceaeebafb9f6e24132ca23fb1443cb5630d0fccf53f04cfa126', 'date' => '07 Jul 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.21.tar.xz', 'name' => 'PHP 8.0.21 (tar.xz)', @@ -4518,34 +4518,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.7' => + '8.1.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_7.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '09 Jun 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.7.tar.gz', 'name' => 'PHP 8.1.7 (tar.gz)', 'sha256' => '5f0b422a117633c86d48d028934b8dc078309d4247e7565ea34b2686189abdd8', 'date' => '09 Jun 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.7.tar.bz2', 'name' => 'PHP 8.1.7 (tar.bz2)', 'sha256' => 'b816753eb005511e695d90945c27093c3236cc73db1262656d9fadd73ead7e9d', 'date' => '09 Jun 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.7.tar.xz', 'name' => 'PHP 8.1.7 (tar.xz)', @@ -4555,34 +4555,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.20' => + '8.0.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_20.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '09 Jun 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.20.tar.gz', 'name' => 'PHP 8.0.20 (tar.gz)', 'sha256' => '7e21fd985966264194cde63503b57fd0f0170b32a39bd7af2384c1071b50f164', 'date' => '09 Jun 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.20.tar.bz2', 'name' => 'PHP 8.0.20 (tar.bz2)', 'sha256' => 'cb7666bf67ed9f6c987d4836caf03d4b364537e6a75e56cd5c986760ecc2fdd8', 'date' => '09 Jun 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.20.tar.xz', 'name' => 'PHP 8.0.20 (tar.xz)', @@ -4592,33 +4592,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.19' => + '8.0.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_19.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '12 May 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.19.tar.gz', 'name' => 'PHP 8.0.19 (tar.gz)', 'sha256' => '48e57634d350bcab4745d25d9d94ffa474649bf4f7e879fad163226c0d107bb5', 'date' => '12 May 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.19.tar.bz2', 'name' => 'PHP 8.0.19 (tar.bz2)', 'sha256' => 'eba0e67fdaf6904b2e4b84e064be0a0d61b2cb64a23f81a0ca9b1a51bc3a8330', 'date' => '12 May 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.19.tar.xz', 'name' => 'PHP 8.0.19 (tar.xz)', @@ -4628,33 +4628,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.6' => + '8.1.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_6.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '12 May 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.6.tar.gz', 'name' => 'PHP 8.1.6 (tar.gz)', 'sha256' => 'e847745fd66fc8c57fac993a609fefcded93fddccd225f0620a26bb5ae5753c3', 'date' => '12 May 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.6.tar.bz2', 'name' => 'PHP 8.1.6 (tar.bz2)', 'sha256' => '7b353304b7407554f70d3e101a226a1fc22decae5c4c42ed270c4e389bfa1b66', 'date' => '12 May 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.6.tar.xz', 'name' => 'PHP 8.1.6 (tar.xz)', @@ -4664,33 +4664,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.5' => + '8.1.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_5.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '14 Apr 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.5.tar.gz', 'name' => 'PHP 8.1.5 (tar.gz)', 'sha256' => '44d637627746082395d5d3d3d6ae7d71e780b82a8d55a0228887158c4316bf11', 'date' => '14 Apr 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.5.tar.bz2', 'name' => 'PHP 8.1.5 (tar.bz2)', 'sha256' => '827de56771c3ab8313a069812f15f6ec49989d510aebd0dce180839c6d8d6ff3', 'date' => '14 Apr 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.5.tar.xz', 'name' => 'PHP 8.1.5 (tar.xz)', @@ -4700,33 +4700,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.18' => + '8.0.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_18.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '14 Apr 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.18.tar.gz', 'name' => 'PHP 8.0.18 (tar.gz)', 'sha256' => 'cd980f5a2f422362f8c52d314ed25140c6f472877c5442c4f3304205f54e192a', 'date' => '14 Apr 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.18.tar.bz2', 'name' => 'PHP 8.0.18 (tar.bz2)', 'sha256' => '826ee34881a1c349678d4f7cc55ff9141fa1411344e4bb8f95d0f9223bceb55a', 'date' => '14 Apr 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.18.tar.xz', 'name' => 'PHP 8.0.18 (tar.xz)', @@ -4736,33 +4736,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.17' => + '8.0.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_17.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '17 Mar 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.17.tar.gz', 'name' => 'PHP 8.0.17 (tar.gz)', 'sha256' => 'bdbd792901c156c4d1710c9d266732d3c17f6ff63850d6660b9d8d3411188424', 'date' => '17 Mar 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.17.tar.bz2', 'name' => 'PHP 8.0.17 (tar.bz2)', 'sha256' => '52811ee2dde71660ca32737a4ac696c24591eb22e846dd8e09ee77122660283f', 'date' => '17 Mar 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.17.tar.xz', 'name' => 'PHP 8.0.17 (tar.xz)', @@ -4772,33 +4772,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.4' => + '8.1.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_4.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '17 Mar 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.4.tar.gz', 'name' => 'PHP 8.1.4 (tar.gz)', 'sha256' => 'a9951c1c8fd5d2eefde28de0f646c344eb61d751319d220713a6da26f986abde', 'date' => '17 Mar 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.4.tar.bz2', 'name' => 'PHP 8.1.4 (tar.bz2)', 'sha256' => 'b3f688cb69758523838b8e7f509aaef0152133d9b84a84a0b7cf68eeafc1df76', 'date' => '17 Mar 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.4.tar.xz', 'name' => 'PHP 8.1.4 (tar.xz)', @@ -4808,34 +4808,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.3' => + '8.1.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_3.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '17 Feb 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.3.tar.gz', 'name' => 'PHP 8.1.3 (tar.gz)', 'sha256' => '92d74f5a4af7de90cef6cda65bd0c341dc9a1027b32f70e7b8861f6f68a38bb2', 'date' => '17 Feb 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.3.tar.bz2', 'name' => 'PHP 8.1.3 (tar.bz2)', 'sha256' => '354c4e2c506046eca812d1fc2526884a2f54b5e3d20ef0ede919a69eb232d0be', 'date' => '17 Feb 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.3.tar.xz', 'name' => 'PHP 8.1.3 (tar.xz)', @@ -4845,34 +4845,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.16' => + '8.0.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_16.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '17 Feb 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.16.tar.gz', 'name' => 'PHP 8.0.16 (tar.gz)', 'sha256' => 'ce0ea32ff9c5af18cfb70197b40caf55824400dc8d5b4258a783ec9168baa5b1', 'date' => '17 Feb 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.16.tar.bz2', 'name' => 'PHP 8.0.16 (tar.bz2)', 'sha256' => 'f49f8181ee29463a0d23a0c65969e92d58fee8ac564df917cff58e48d65e1849', 'date' => '17 Feb 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.16.tar.xz', 'name' => 'PHP 8.0.16 (tar.xz)', @@ -4882,33 +4882,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.2' => + '8.1.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_2.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '20 Jan 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.2.tar.gz', 'name' => 'PHP 8.1.2 (tar.gz)', 'sha256' => '9992409c0543e0c8e89914f7307e1485a08c057091146e4731565b59065f8bde', 'date' => '20 Jan 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.2.tar.bz2', 'name' => 'PHP 8.1.2 (tar.bz2)', 'sha256' => '913dc7dd4388427fa33ea4ac89834e856ff5394f4218eace260a3a279f5b53a9', 'date' => '20 Jan 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.2.tar.xz', 'name' => 'PHP 8.1.2 (tar.xz)', @@ -4918,33 +4918,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.15' => + '8.0.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_15.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '20 Jan 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.15.tar.gz', 'name' => 'PHP 8.0.15 (tar.gz)', 'sha256' => '47f0be6188b05390bb457eb1968ea19463acada79650afc35ec763348d5c2370', 'date' => '20 Jan 2022', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.15.tar.bz2', 'name' => 'PHP 8.0.15 (tar.bz2)', 'sha256' => '881171c90aba746d28df768f3d99fa3261999e506415be4c7352078a64fe59dc', 'date' => '20 Jan 2022', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.15.tar.xz', 'name' => 'PHP 8.0.15 (tar.xz)', @@ -4954,33 +4954,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.1' => + '8.1.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_1.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '16 Dec 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.1.tar.gz', 'name' => 'PHP 8.1.1 (tar.gz)', 'sha256' => '4e4cf3f843a5111f6c55cd21de8f26834ea3cd4a5be77c88357cbcec4a2d671d', 'date' => '16 Dec 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.1.tar.bz2', 'name' => 'PHP 8.1.1 (tar.bz2)', 'sha256' => '8f8bc9cad6cd124edc111f7db0a109745e2f638770a101b3c22a2953f7a9b40e', 'date' => '16 Dec 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.1.tar.xz', 'name' => 'PHP 8.1.1 (tar.xz)', @@ -4990,33 +4990,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.14' => + '8.0.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_14.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '16 Dec 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.14.tar.gz', 'name' => 'PHP 8.0.14 (tar.gz)', 'sha256' => 'e67ebd8c4c77247ad1fa88829e5b95d51a19edf3d87814434de261e20a63ea20', 'date' => '16 Dec 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.14.tar.bz2', 'name' => 'PHP 8.0.14 (tar.bz2)', 'sha256' => 'bb381fdf4817ad7c24c23ea7f77cad68dceb86eb3ac1a37acedadf8ad0a0cd4b', 'date' => '16 Dec 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.14.tar.xz', 'name' => 'PHP 8.0.14 (tar.xz)', @@ -5026,33 +5026,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.1.0' => + '8.1.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_1_0.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '25 Nov 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.1.0.tar.gz', 'name' => 'PHP 8.1.0 (tar.gz)', 'sha256' => '848705043ea4a6e022246ae12a1bff6afcf5c73ea98c6ac4d2108d6028c5c125', 'date' => '25 Nov 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.1.0.tar.bz2', 'name' => 'PHP 8.1.0 (tar.bz2)', 'sha256' => '0725ed2baea125496a898455d501a77460218b2a0cfad773fa9322f491b82b61', 'date' => '25 Nov 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.1.0.tar.xz', 'name' => 'PHP 8.1.0 (tar.xz)', @@ -5062,34 +5062,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.13' => + '8.0.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_13.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Nov 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.13.tar.gz', 'name' => 'PHP 8.0.13 (tar.gz)', 'sha256' => 'b4c2d27c954e1b0d84fd4bfef4d252e154ba479e7db11abd89358f2164ee7cc8', 'date' => '18 Nov 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.13.tar.bz2', 'name' => 'PHP 8.0.13 (tar.bz2)', 'sha256' => 'c2419d7ba4395f44747043f4e6f5b47fa08125705fb9f88377e453068a815836', 'date' => '18 Nov 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.13.tar.xz', 'name' => 'PHP 8.0.13 (tar.xz)', @@ -5099,34 +5099,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.12' => + '8.0.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_12.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '21 Oct 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.12.tar.gz', 'name' => 'PHP 8.0.12 (tar.gz)', 'sha256' => 'a5b78f04a89d3b401465febf449c7ea9de48681f92803dd8dc2bf922812d572b', 'date' => '21 Oct 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.12.tar.bz2', 'name' => 'PHP 8.0.12 (tar.bz2)', 'sha256' => 'b4886db1df322dc8fb128d8b34ae7e94f6fc682ecb29ff4f5a591d4de9feadbf', 'date' => '21 Oct 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.12.tar.xz', 'name' => 'PHP 8.0.12 (tar.xz)', @@ -5136,34 +5136,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.11' => + '8.0.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_11.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '23 Sep 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.11.tar.gz', 'name' => 'PHP 8.0.11 (tar.gz)', 'sha256' => 'c6a461f57b4bcb46cd4dec443253b1e2e8e981466f1280093322b7864afe8be7', 'date' => '23 Sep 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.11.tar.bz2', 'name' => 'PHP 8.0.11 (tar.bz2)', 'sha256' => '70ed874285e4010c1e2e8937bfb56b13b9ed1b3789dcaf274b793b00c1f4403a', 'date' => '23 Sep 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.11.tar.xz', 'name' => 'PHP 8.0.11 (tar.xz)', @@ -5173,34 +5173,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.10' => + '8.0.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_10.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '26 Aug 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.10.tar.gz', 'name' => 'PHP 8.0.10 (tar.gz)', 'sha256' => '4612dca9afe8148801648839175ab588097ace66658c6859e9f283ecdeaf84b3', 'date' => '26 Aug 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.10.tar.bz2', 'name' => 'PHP 8.0.10 (tar.bz2)', 'sha256' => 'c94547271410900845b084ec2bcb3466af363eeca92cb24bd611dcbdc26f1587', 'date' => '26 Aug 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.10.tar.xz', 'name' => 'PHP 8.0.10 (tar.xz)', @@ -5210,33 +5210,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.9' => + '8.0.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_9.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '29 Jul 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.9.tar.gz', 'name' => 'PHP 8.0.9 (tar.gz)', 'sha256' => '1f0d72e90ab6ad0ae13329a96b281f71bc592563ce4e3a4c816b8da4b5854fb4', 'date' => '29 Jul 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.9.tar.bz2', 'name' => 'PHP 8.0.9 (tar.bz2)', 'sha256' => '6ac8edebd295ddc43fb010653c43ccf203cd7cdc40981b210ed5275994040806', 'date' => '29 Jul 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.9.tar.xz', 'name' => 'PHP 8.0.9 (tar.xz)', @@ -5246,33 +5246,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.8' => + '8.0.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_8.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '01 Jul 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.8.tar.gz', 'name' => 'PHP 8.0.8 (tar.gz)', 'sha256' => '084a1e8020e86fb99b663d195fd9ac98a9f37dfcb9ecb5c159054cdb8f388945', 'date' => '01 Jul 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.8.tar.bz2', 'name' => 'PHP 8.0.8 (tar.bz2)', 'sha256' => '14bd77d71a98943e14b324da83e31b572781df583cda9650a184fae3214cd16f', 'date' => '01 Jul 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.8.tar.xz', 'name' => 'PHP 8.0.8 (tar.xz)', @@ -5282,33 +5282,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.7' => + '8.0.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_7.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '03 Jun 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.7.tar.gz', 'name' => 'PHP 8.0.7 (tar.gz)', 'sha256' => '1e7462455bec8062ef3fc7c74f1f496417cb80aa374ce11edb35015de248c3c1', 'date' => '03 Jun 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.7.tar.bz2', 'name' => 'PHP 8.0.7 (tar.bz2)', 'sha256' => '72b2f2c96f35748b1d6e8a71af4ead439b17129aefe611eb0baf1bd313635f79', 'date' => '03 Jun 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.7.tar.xz', 'name' => 'PHP 8.0.7 (tar.xz)', @@ -5318,33 +5318,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.6' => + '8.0.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_6.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '06 May 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.6.tar.gz', 'name' => 'PHP 8.0.6 (tar.gz)', 'sha256' => '51a3dcea6deb8ab82ad035d15baa7f5398980f576ac1968313ef149f7cf20100', 'date' => '06 May 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.6.tar.bz2', 'name' => 'PHP 8.0.6 (tar.bz2)', 'sha256' => '26a8a9dad66012039deb0bcf151c6e22ab1e4b6a91508383ff705da41289526e', 'date' => '06 May 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.6.tar.xz', 'name' => 'PHP 8.0.6 (tar.xz)', @@ -5354,33 +5354,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.5' => + '8.0.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_5.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '29 Apr 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.5.tar.gz', 'name' => 'PHP 8.0.5 (tar.gz)', 'sha256' => '50aeac6fe9c2b5577d534369392ebb89c3e7a342b20ef538832b1df996cccb2a', 'date' => '29 Apr 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.5.tar.bz2', 'name' => 'PHP 8.0.5 (tar.bz2)', 'sha256' => '195d934febefaac3b19ac586679149759324a434411ae8aca6f7d87553ef08e0', 'date' => '29 Apr 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.5.tar.xz', 'name' => 'PHP 8.0.5 (tar.xz)', @@ -5390,33 +5390,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.3' => + '8.0.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_3.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '4 Mar 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.3.tar.gz', 'name' => 'PHP 8.0.3 (tar.gz)', 'sha256' => 'e7ecfee901e0843377b64b2d8124132eae75bdb71a2675ba7c5c038d6592383d', 'date' => '4 Mar 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.3.tar.bz2', 'name' => 'PHP 8.0.3 (tar.bz2)', 'sha256' => '95f8621d9e34f822d2583564c358598dff7346241f839bfa319bbf65bf2eb012', 'date' => '4 Mar 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.3.tar.xz', 'name' => 'PHP 8.0.3 (tar.xz)', @@ -5426,33 +5426,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.2' => + '8.0.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_2.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Feb 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.2.tar.gz', 'name' => 'PHP 8.0.2 (tar.gz)', 'sha256' => 'cc17a32f76beb5f405da39a548218b3b6736710884fcd761838098553df149da', 'date' => '04 Feb 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.2.tar.bz2', 'name' => 'PHP 8.0.2 (tar.bz2)', 'sha256' => '000fa89e3eae317c0b17ee048229cd68a38a3b0fef72c558681fd004057ba3e6', 'date' => '04 Feb 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.2.tar.xz', 'name' => 'PHP 8.0.2 (tar.xz)', @@ -5462,33 +5462,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.1' => + '8.0.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_1.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '07 Jan 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.1.tar.gz', 'name' => 'PHP 8.0.1 (tar.gz)', 'sha256' => 'f1fee0429aa2cce6bc5df5d7e65386e266b0aab8a5fad7882d10eb833d2f5376', 'date' => '07 Jan 2021', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.1.tar.bz2', 'name' => 'PHP 8.0.1 (tar.bz2)', 'sha256' => 'c44e76af40d133de64564f9caf5daec52bbe84c1ccb4e4500a62233d614ebdee', 'date' => '07 Jan 2021', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.1.tar.xz', 'name' => 'PHP 8.0.1 (tar.xz)', @@ -5498,33 +5498,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '8.0.0' => + '8.0.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/8_0_0.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '26 Nov 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-8.0.0.tar.gz', 'name' => 'PHP 8.0.0 (tar.gz)', 'sha256' => '3ed7b48d64357d3e8fa9e828dbe7416228f84105b8290c2f9779cd66be31ea71', 'date' => '26 Nov 2020', ), - 1 => + 1 => array ( 'filename' => 'php-8.0.0.tar.bz2', 'name' => 'PHP 8.0.0 (tar.bz2)', 'sha256' => '5e832dc37eabf444410b4ea6fb3d66b72e44e7407a3b49caa5746edcf71b9d09', 'date' => '26 Nov 2020', ), - 2 => + 2 => array ( 'filename' => 'php-8.0.0.tar.xz', 'name' => 'PHP 8.0.0 (tar.xz)', @@ -5535,36 +5535,36 @@ $OLDRELEASES = array ( 'museum' => false, ), ), - 7 => + 7 => array ( - '7.4.33' => + '7.4.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_33.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '03 Nov 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.33.tar.gz', 'name' => 'PHP 7.4.33 (tar.gz)', 'sha256' => '5a2337996f07c8a097e03d46263b5c98d2c8e355227756351421003bea8f463e', 'date' => '03 Nov 2022', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.33.tar.bz2', 'name' => 'PHP 7.4.33 (tar.bz2)', 'sha256' => '4e8117458fe5a475bf203128726b71bcbba61c42ad463dffadee5667a198a98a', 'date' => '03 Nov 2022', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.33.tar.xz', 'name' => 'PHP 7.4.33 (tar.xz)', @@ -5574,34 +5574,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.32' => + '7.4.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_32.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '29 Sep 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.32.tar.gz', 'name' => 'PHP 7.4.32 (tar.gz)', 'sha256' => '197e3372afd69694eb6b230838305eb9e1cbe5db272e0fa3bbe0d38e329a95bc', 'date' => '29 Sep 2022', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.32.tar.bz2', 'name' => 'PHP 7.4.32 (tar.bz2)', 'sha256' => '9b4c3c21ffbb4f35d7b865dbf88538bba1742335248ae1cc2afc303d456e3aa6', 'date' => '29 Sep 2022', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.32.tar.xz', 'name' => 'PHP 7.4.32 (tar.xz)', @@ -5611,34 +5611,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.30' => + '7.4.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_30.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '09 Jun 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.30.tar.gz', 'name' => 'PHP 7.4.30 (tar.gz)', 'sha256' => 'e37ea37e0f79109351ac615da85eb7c2c336101fc5bc802ee79a124a4310dc10', 'date' => '09 Jun 2022', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.30.tar.bz2', 'name' => 'PHP 7.4.30 (tar.bz2)', 'sha256' => 'b601bb12e53720469b60ea816776cac1c0696b09888a11ad2379b2eee835386e', 'date' => '09 Jun 2022', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.30.tar.xz', 'name' => 'PHP 7.4.30 (tar.xz)', @@ -5648,34 +5648,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.29' => + '7.4.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_29.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '14 Apr 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.29.tar.gz', 'name' => 'PHP 7.4.29 (tar.gz)', 'sha256' => 'f73f89873bb9447cb99eb4863cf0a0deab4481cb8acf7552c0e70647e6885854', 'date' => '14 Apr 2022', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.29.tar.bz2', 'name' => 'PHP 7.4.29 (tar.bz2)', 'sha256' => '7dde58a02b225c25130c6e2ae2cbba7254bb0340f7fe17291478176d866f9482', 'date' => '14 Apr 2022', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.29.tar.xz', 'name' => 'PHP 7.4.29 (tar.xz)', @@ -5685,34 +5685,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.28' => + '7.4.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_28.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '17 Feb 2022', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.28.tar.gz', 'name' => 'PHP 7.4.28 (tar.gz)', 'sha256' => 'a04014cd1646b90547907e2e0ac5371594533960de317b6c7ac70bcb42db92fb', 'date' => '17 Feb 2022', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.28.tar.bz2', 'name' => 'PHP 7.4.28 (tar.bz2)', 'sha256' => '2085086a863444b0e39547de1a4969fd1c40a0c188eb58fab2938b649b0c4b58', 'date' => '17 Feb 2022', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.28.tar.xz', 'name' => 'PHP 7.4.28 (tar.xz)', @@ -5722,33 +5722,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.27' => + '7.4.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_27.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '16 Dec 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.27.tar.gz', 'name' => 'PHP 7.4.27 (tar.gz)', 'sha256' => '564fd5bc9850370db0cb4058d9087f2f40177fa4921ce698a375416db9ab43ca', 'date' => '16 Dec 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.27.tar.bz2', 'name' => 'PHP 7.4.27 (tar.bz2)', 'sha256' => '184aaef313fbf28c9987f6aa07b655cd1b0eae9e7e17061775a3e7d880185563', 'date' => '16 Dec 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.27.tar.xz', 'name' => 'PHP 7.4.27 (tar.xz)', @@ -5758,34 +5758,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.26' => + '7.4.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_26.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Nov 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.26.tar.gz', 'name' => 'PHP 7.4.26 (tar.gz)', 'sha256' => '890a7e730f96708a68a77b19fd57fec33cc81573f7249111c870edac42b91a72', 'date' => '18 Nov 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.26.tar.bz2', 'name' => 'PHP 7.4.26 (tar.bz2)', 'sha256' => 'd68b88a8f8a437648affcc7793e5e062fa0ec5171f7fd0af385b12c78b1c004d', 'date' => '18 Nov 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.26.tar.xz', 'name' => 'PHP 7.4.26 (tar.xz)', @@ -5795,34 +5795,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.33' => + '7.3.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_33.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Nov 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.33.tar.gz', 'name' => 'PHP 7.3.33 (tar.gz)', 'sha256' => '9a369c32c6f52036b0a890f290327f148a1904ee66aa56e2c9a7546da6525ec8', 'date' => '18 Nov 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.33.tar.bz2', 'name' => 'PHP 7.3.33 (tar.bz2)', 'sha256' => 'f412487d7d953437e7978a0d7b6ec99bf4a85cf3378014438a8577b89535451a', 'date' => '18 Nov 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.33.tar.xz', 'name' => 'PHP 7.3.33 (tar.xz)', @@ -5832,34 +5832,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.32' => + '7.3.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_32.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '28 Oct 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.32.tar.gz', 'name' => 'PHP 7.3.32 (tar.gz)', 'sha256' => '4739160cbd8f5d4529429ac01e181cba9705a515666002e76e4e34891c034fcb', 'date' => '28 Oct 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.32.tar.bz2', 'name' => 'PHP 7.3.32 (tar.bz2)', 'sha256' => '7c158b306e53434f1e0a88647aa561814308aaff8713ed7d237ed8f1399c216f', 'date' => '28 Oct 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.32.tar.xz', 'name' => 'PHP 7.3.32 (tar.xz)', @@ -5869,34 +5869,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.25' => + '7.4.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_25.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '21 Oct 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.25.tar.gz', 'name' => 'PHP 7.4.25 (tar.gz)', 'sha256' => '3b2632252c933cac489a20f68b8f4ab769e5a0a3bf22b6ef47427aff6922e31f', 'date' => '21 Oct 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.25.tar.bz2', 'name' => 'PHP 7.4.25 (tar.bz2)', 'sha256' => '27992570caf3e2e5323ab7b37853c44c1529b1d31ea94d9776efa91d5a781313', 'date' => '21 Oct 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.25.tar.xz', 'name' => 'PHP 7.4.25 (tar.xz)', @@ -5906,34 +5906,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.31' => + '7.3.31' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_31.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '23 Sep 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.31.tar.gz', 'name' => 'PHP 7.3.31 (tar.gz)', 'sha256' => '57ca37b08d3eed4cadc3976e78b0f51d0305bb6e60333f6e8c76e8aee07c3f0f', 'date' => '23 Sep 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.31.tar.bz2', 'name' => 'PHP 7.3.31 (tar.bz2)', 'sha256' => '6951f78524684f439186fe039ab14fb2459cea8f47ac829a159724a283f7f32b', 'date' => '23 Sep 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.31.tar.xz', 'name' => 'PHP 7.3.31 (tar.xz)', @@ -5943,34 +5943,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.24' => + '7.4.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_24.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '23 Sep 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.24.tar.gz', 'name' => 'PHP 7.4.24 (tar.gz)', 'sha256' => '8cc1758cf7ff45428c17641b1be84cd917a2909ba40c770f06a814d8b7f36333', 'date' => '23 Sep 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.24.tar.bz2', 'name' => 'PHP 7.4.24 (tar.bz2)', 'sha256' => 'f50e32b788864349041f19e31dcc65b1fcc65bc19122918f607526432edf2f32', 'date' => '23 Sep 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.24.tar.xz', 'name' => 'PHP 7.4.24 (tar.xz)', @@ -5980,34 +5980,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.23' => + '7.4.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_23.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '26 Aug 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.23.tar.gz', 'name' => 'PHP 7.4.23 (tar.gz)', 'sha256' => '2aaa481678ad4d2992e7bcf161e0e98c7268f4979f7ca8b3d97dd6de19c205d6', 'date' => '26 Aug 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.23.tar.bz2', 'name' => 'PHP 7.4.23 (tar.bz2)', 'sha256' => 'd1e094fe6e4f832e0a64be9c69464ba5d593fb216f914efa8bbb084e0a7a5727', 'date' => '26 Aug 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.23.tar.xz', 'name' => 'PHP 7.4.23 (tar.xz)', @@ -6017,34 +6017,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.30' => + '7.3.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_30.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '26 Aug 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.30.tar.gz', 'name' => 'PHP 7.3.30 (tar.gz)', 'sha256' => '3810a9b631eb7f236ecf02b9a78bab8d957b6cfdb1646a29e3b34e01d36c0510', 'date' => '26 Aug 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.30.tar.bz2', 'name' => 'PHP 7.3.30 (tar.bz2)', 'sha256' => 'ccc532e660761df9b5509b9b913d2dc049b0a9954108fe212aeeb8bc2556b502', 'date' => '26 Aug 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.30.tar.xz', 'name' => 'PHP 7.3.30 (tar.xz)', @@ -6054,33 +6054,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.22' => + '7.4.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_22.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '29 Jul 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.22.tar.gz', 'name' => 'PHP 7.4.22 (tar.gz)', 'sha256' => '4ca2642b99a822237d7f84dc19682be702ad0e2d5d282f7646d84b746d454e34', 'date' => '29 Jul 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.22.tar.bz2', 'name' => 'PHP 7.4.22 (tar.bz2)', 'sha256' => '5022bbca661bc1ab5dfaee72873bcd0f0980d9dd34f980a682029496f51caae1', 'date' => '29 Jul 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.22.tar.xz', 'name' => 'PHP 7.4.22 (tar.xz)', @@ -6090,34 +6090,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.29' => + '7.3.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_29.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '01 Jul 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.29.tar.gz', 'name' => 'PHP 7.3.29 (tar.gz)', 'sha256' => 'ba4de3955b0cbd33baee55a83568acc4347605e210a54b5654e4c1e09b544659', 'date' => '01 Jul 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.29.tar.bz2', 'name' => 'PHP 7.3.29 (tar.bz2)', 'sha256' => 'a83a2878140bd86935f0046bbfe92672c8ab688fbe4ccf9704add6b9605ee4d0', 'date' => '01 Jul 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.29.tar.xz', 'name' => 'PHP 7.3.29 (tar.xz)', @@ -6127,33 +6127,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.21' => + '7.4.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_21.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '01 Jul 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.21.tar.gz', 'name' => 'PHP 7.4.21 (tar.gz)', 'sha256' => '4b9623accbe4b8923a801212f371f784069535009185e7bf7e4dec66bbea61db', 'date' => '01 Jul 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.21.tar.bz2', 'name' => 'PHP 7.4.21 (tar.bz2)', 'sha256' => '36ec6102e757e2c2b7742057a700bbff77c76fa0ccbe9c860398c3d24e32822a', 'date' => '01 Jul 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.21.tar.xz', 'name' => 'PHP 7.4.21 (tar.xz)', @@ -6163,33 +6163,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.20' => + '7.4.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_20.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '03 Jun 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.20.tar.gz', 'name' => 'PHP 7.4.20 (tar.gz)', 'sha256' => '84b09e4617e960b36dfa15fdbf2e3cd7141a2e877216ea29391b12ae86963cf4', 'date' => '03 Jun 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.20.tar.bz2', 'name' => 'PHP 7.4.20 (tar.bz2)', 'sha256' => '0ada6bc635e530fa7a4eb55e639dc070077108e5c9885f750b47007fd267b634', 'date' => '03 Jun 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.20.tar.xz', 'name' => 'PHP 7.4.20 (tar.xz)', @@ -6199,34 +6199,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.28' => + '7.3.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_28.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '29 Apr 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.28.tar.gz', 'name' => 'PHP 7.3.28 (tar.gz)', 'sha256' => '1f0d9b94e1b11518ffabd19b646c2fee95ea42ca9cd8d337f8d07986fdceede1', 'date' => '29 Apr 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.28.tar.bz2', 'name' => 'PHP 7.3.28 (tar.bz2)', 'sha256' => '8f636e644594388436ea05ff34c9eb135e6dc119c1130199e9488d5795439964', 'date' => '29 Apr 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.28.tar.xz', 'name' => 'PHP 7.3.28 (tar.xz)', @@ -6236,33 +6236,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.19' => + '7.4.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_19.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '06 May 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.19.tar.gz', 'name' => 'PHP 7.4.19 (tar.gz)', 'sha256' => 'd7062457ba9f8334ab8ae7e4fea8efe27e2506763551b25db9e6ab9beea8ed6f', 'date' => '06 May 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.19.tar.bz2', 'name' => 'PHP 7.4.19 (tar.bz2)', 'sha256' => '25d09b8145b284d870431c1b40aba7944e4bf1836278538f8e29780e7f85ddea', 'date' => '06 May 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.19.tar.xz', 'name' => 'PHP 7.4.19 (tar.xz)', @@ -6272,33 +6272,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.18' => + '7.4.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_18.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '29 Apr 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.18.tar.gz', 'name' => 'PHP 7.4.18 (tar.gz)', 'sha256' => '31a8a4a6e7d641f014749cef21421a6d1c9aaba6dce884e181a3370a8e69a04d', 'date' => '29 Apr 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.18.tar.bz2', 'name' => 'PHP 7.4.18 (tar.bz2)', 'sha256' => '2e455932e9c6f5889b1dc879f36fdd5744eaf1ff572b1b778958cbb8f5c1842f', 'date' => '29 Apr 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.18.tar.xz', 'name' => 'PHP 7.4.18 (tar.xz)', @@ -6308,33 +6308,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.16' => + '7.4.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_16.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Mar 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.16.tar.gz', 'name' => 'PHP 7.4.16 (tar.gz)', 'sha256' => 'ef2d2b463fc3444895ec599337b663a8832c6ade148d9832417e59aa2b9e93da', 'date' => '04 Mar 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.16.tar.bz2', 'name' => 'PHP 7.4.16 (tar.bz2)', 'sha256' => '85710f007cfd0fae94e13a02a3a036f4e81ef43693260cae8a2e1ca93659ce3e', 'date' => '04 Mar 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.16.tar.xz', 'name' => 'PHP 7.4.16 (tar.xz)', @@ -6344,34 +6344,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.27' => + '7.3.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_27.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '04 Feb 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.27.tar.gz', 'name' => 'PHP 7.3.27 (tar.gz)', 'sha256' => '4b7b9bd0526ad3f2c8d6fd950ea7b0ab2478b5b09755c6a620a4f3bcfbf59154', 'date' => '04 Feb 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.27.tar.bz2', 'name' => 'PHP 7.3.27 (tar.bz2)', 'sha256' => '9d2006f5e835acf5e408e34d8050a4935f2121ab18bda42775a27ed59bdae003', 'date' => '04 Feb 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.27.tar.xz', 'name' => 'PHP 7.3.27 (tar.xz)', @@ -6381,33 +6381,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.15' => + '7.4.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_15.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Feb 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.15.tar.gz', 'name' => 'PHP 7.4.15 (tar.gz)', 'sha256' => 'c7403988b69212335dec79e869abe9dbb23d60ea7f6eb16fd6ff99ed6b5f1c87', 'date' => '04 Feb 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.15.tar.bz2', 'name' => 'PHP 7.4.15 (tar.bz2)', 'sha256' => '1bd7be0293446c3d3cbe3c9fae6045119af0798fb0869db61932796dc23a7757', 'date' => '04 Feb 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.15.tar.xz', 'name' => 'PHP 7.4.15 (tar.xz)', @@ -6417,33 +6417,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.14' => + '7.4.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_14.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '07 Jan 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.14.tar.gz', 'name' => 'PHP 7.4.14 (tar.gz)', 'sha256' => 'd359183e2436f4ab30b70d4fbd881b5705a46b2e68cc6069fe91cd63d6e98e13', 'date' => '07 Jan 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.14.tar.bz2', 'name' => 'PHP 7.4.14 (tar.bz2)', 'sha256' => '6889ca0605adee3aa7077508cd79fcef1dbd88461cdf25e7c1a86997b8d0a1f6', 'date' => '07 Jan 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.14.tar.xz', 'name' => 'PHP 7.4.14 (tar.xz)', @@ -6453,34 +6453,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.26' => + '7.3.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_26.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '07 Jan 2021', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.26.tar.gz', 'name' => 'PHP 7.3.26 (tar.gz)', 'sha256' => '2b55c2a54d1825e7c3feaf44cf42cdf782b8d5c611314172fbf8e234960b6a99', 'date' => '07 Jan 2021', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.26.tar.bz2', 'name' => 'PHP 7.3.26 (tar.bz2)', 'sha256' => '371e5a7c8154fd3c52b14baace5f7d04c4bbb8e841d356c54a2b6a688db39d4e', 'date' => '07 Jan 2021', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.26.tar.xz', 'name' => 'PHP 7.3.26 (tar.xz)', @@ -6490,33 +6490,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.25' => + '7.3.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_25.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '26 Nov 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.25.tar.gz', 'name' => 'PHP 7.3.25 (tar.gz)', 'sha256' => '097c7a2a2f9189b33799d79ee5a8aac68a4d72696c1cd69c66ef5d0941ce28ad', 'date' => '26 Nov 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.25.tar.bz2', 'name' => 'PHP 7.3.25 (tar.bz2)', 'sha256' => '69315a4daa91e3b07c90eef86fe205c8812c4ac5ce119c9953ecc9f42e7702fb', 'date' => '26 Nov 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.25.tar.xz', 'name' => 'PHP 7.3.25 (tar.xz)', @@ -6526,33 +6526,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.13' => + '7.4.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_13.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '26 Nov 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.13.tar.gz', 'name' => 'PHP 7.4.13 (tar.gz)', 'sha256' => '0865cff41e7210de2537bcd5750377cfe09a9312b9b44c1a166cf372d5204b8f', 'date' => '26 Nov 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.13.tar.bz2', 'name' => 'PHP 7.4.13 (tar.bz2)', 'sha256' => '15a339857e11c92eb47fddcd0dfe8aaa951a9be7c57ab7230ccd497465a31fda', 'date' => '26 Nov 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.13.tar.xz', 'name' => 'PHP 7.4.13 (tar.xz)', @@ -6562,34 +6562,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.34' => + '7.2.34' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_34.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '01 Oct 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.34.tar.gz', 'name' => 'PHP 7.2.34 (tar.gz)', 'sha256' => '8b2777c741e83f188d3ca6d8e98ece7264acafee86787298fae57e05d0dddc78', 'date' => '01 Oct 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.34.tar.bz2', 'name' => 'PHP 7.2.34 (tar.bz2)', 'sha256' => '0e5816d668a2bb14aca68cef8c430430bd86c3c5233f6c427d1a54aac127abcf', 'date' => '01 Oct 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.34.tar.xz', 'name' => 'PHP 7.2.34 (tar.xz)', @@ -6599,34 +6599,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.24' => + '7.3.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_24.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '29 Oct 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.24.tar.bz2', 'name' => 'PHP 7.3.24 (tar.bz2)', 'sha256' => '55b7afbb2037b0f8fefc481a85f8df4f7a278b4b7f0ed9f674c50ec389cca598', 'date' => '29 Oct 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.24.tar.gz', 'name' => 'PHP 7.3.24 (tar.gz)', 'sha256' => 'ac06577e2aeb69d4bed3c1532ed84a548f01399e5481c144c3e61d146be8ced6', 'date' => '29 Oct 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.24.tar.xz', 'name' => 'PHP 7.3.24 (tar.xz)', @@ -6636,33 +6636,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.12' => + '7.4.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_12.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '29 Oct 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.12.tar.bz2', 'name' => 'PHP 7.4.12 (tar.bz2)', 'sha256' => '6e6f73cc239edfc462b56a45724019691f85b57b7492e1eb5b4b60f7faa19967', 'date' => '29 Oct 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.12.tar.gz', 'name' => 'PHP 7.4.12 (tar.gz)', 'sha256' => 'f056d74409a71f17218f76538c6a2d7b59ee99db9db7685fa0ab9cd0d4c0f286', 'date' => '29 Oct 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.12.tar.xz', 'name' => 'PHP 7.4.12 (tar.xz)', @@ -6672,33 +6672,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.11' => + '7.4.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_11.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '01 Oct 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.11.tar.bz2', 'name' => 'PHP 7.4.11 (tar.bz2)', 'sha256' => '5408f255243bd2292f3fbc2fafc27a2ec083fcd852902728f2ba9a3ea616b8c5', 'date' => '01 Oct 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.11.tar.gz', 'name' => 'PHP 7.4.11 (tar.gz)', 'sha256' => 'b4fae5c39ca1eedf5597071996d9c85d0674b83f5003126c39b7b44bbfbcd821', 'date' => '01 Oct 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.11.tar.xz', 'name' => 'PHP 7.4.11 (tar.xz)', @@ -6708,34 +6708,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.23' => + '7.3.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_23.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '01 Oct 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.23.tar.bz2', 'name' => 'PHP 7.3.23 (tar.bz2)', 'sha256' => 'fd6666ad4605508042c6964151379475daea36c43e03b11b1e79d4ae6b04c04c', 'date' => '01 Oct 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.23.tar.gz', 'name' => 'PHP 7.3.23 (tar.gz)', 'sha256' => 'a21094b9ba2d8fe7fa5838e6566e30cf4bfaf2c8a6dce90ff707c45d0d8d494d', 'date' => '01 Oct 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.23.tar.xz', 'name' => 'PHP 7.3.23 (tar.xz)', @@ -6745,34 +6745,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.22' => + '7.3.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_22.php', ), - 'tags' => + 'tags' => array ( 0 => '', ), 'date' => '03 Sep 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.22.tar.bz2', 'name' => 'PHP 7.3.22 (tar.bz2)', 'sha256' => 'c790b8172520b2ff773d6cf80774ea0a678a2f16e8ee6b11d68802094448689e', 'date' => '03 Sep 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.22.tar.gz', 'name' => 'PHP 7.3.22 (tar.gz)', 'sha256' => '759426cb4054e3f23316c39710faff0bb8063fd0ea50fc2c5efa590429af1a22', 'date' => '03 Sep 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.22.tar.xz', 'name' => 'PHP 7.3.22 (tar.xz)', @@ -6782,33 +6782,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.10' => + '7.4.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_10.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '03 Sep 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.10.tar.bz2', 'name' => 'PHP 7.4.10 (tar.bz2)', 'sha256' => 'e90bfc9ed98d24e53b51ffd4eb636cf5cd9d71ed7c6f8e4b6e9981e9882174e7', 'date' => '03 Sep 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.10.tar.gz', 'name' => 'PHP 7.4.10 (tar.gz)', 'sha256' => 'e720f1286f895ca37f1c75a2ca338ad2f2456664d7097298167181b25b212feb', 'date' => '03 Sep 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.10.tar.xz', 'name' => 'PHP 7.4.10 (tar.xz)', @@ -6818,34 +6818,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.33' => + '7.2.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_33.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '06 Aug 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.33.tar.bz2', 'name' => 'PHP 7.2.33 (tar.bz2)', 'sha256' => '03dda3a3a0c8befc9b381bc9cf4638d13862783fc7b8aef43fdd4431ab85854d', 'date' => '06 Aug 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.33.tar.gz', 'name' => 'PHP 7.2.33 (tar.gz)', 'sha256' => '97bb6b88ddfa44f36c4fc84a1a718faef476f61b532d26ea29e3e9f6cd79d839', 'date' => '06 Aug 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.33.tar.xz', 'name' => 'PHP 7.2.33 (tar.xz)', @@ -6855,34 +6855,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.9' => + '7.4.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_9.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '06 Aug 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.9.tar.bz2', 'name' => 'PHP 7.4.9 (tar.bz2)', 'sha256' => '2e270958a4216480da7886743438ccc92b6acf32ea96fefda88d07e0a5095deb', 'date' => '06 Aug 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.9.tar.gz', 'name' => 'PHP 7.4.9 (tar.gz)', 'sha256' => 'c0c657b5769bc463f5f028b1f4fef8814d98ecf3459a402a9e30d41d68b2323e', 'date' => '06 Aug 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.9.tar.xz', 'name' => 'PHP 7.4.9 (tar.xz)', @@ -6892,34 +6892,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.21' => + '7.3.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_21.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '06 Aug 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.21.tar.bz2', 'name' => 'PHP 7.3.21 (tar.bz2)', 'sha256' => 'dbb0ea39e7e4b3814d6d1dd3ac5983aed6c38cdf55464645da11a8b134a9f7a7', 'date' => '06 Aug 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.21.tar.gz', 'name' => 'PHP 7.3.21 (tar.gz)', 'sha256' => 'f5d6e136768522edd025c4a97b9b6a98a2fda20b68445cbc5ca2efce1e73c7d0', 'date' => '06 Aug 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.21.tar.xz', 'name' => 'PHP 7.3.21 (tar.xz)', @@ -6929,34 +6929,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.8' => + '7.4.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_8.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '09 Jul 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.8.tar.bz2', 'name' => 'PHP 7.4.8 (tar.bz2)', 'sha256' => '6a48d3a605c003b088984ceb53be5df1e698b8b35ddacadd12fe50f49c0e8062', 'date' => '09 Jul 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.8.tar.gz', 'name' => 'PHP 7.4.8 (tar.gz)', 'sha256' => '649f6bcdb60dc38d5edd7f3a7b2905d15d88c1d13e40307e8972ede347cea6ba', 'date' => '09 Jul 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.8.tar.xz', 'name' => 'PHP 7.4.8 (tar.xz)', @@ -6966,34 +6966,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.20' => + '7.3.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_20.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '09 Jul 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.20.tar.bz2', 'name' => 'PHP 7.3.20 (tar.bz2)', 'sha256' => 'c6ed7894911acfe075381c01b07745d92e9259fac510a849f742edb6b95c89de', 'date' => '09 Jul 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.20.tar.gz', 'name' => 'PHP 7.3.20 (tar.gz)', 'sha256' => 'd0579b8a6bcdd5e1ae334d83261f2389b0d3d4fd54cc808e20a5031121f97d87', 'date' => '09 Jul 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.20.tar.xz', 'name' => 'PHP 7.3.20 (tar.xz)', @@ -7003,34 +7003,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.32' => + '7.2.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_32.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '09 Jul 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.32.tar.bz2', 'name' => 'PHP 7.2.32 (tar.bz2)', 'sha256' => '715c0a4274ad17ce449cd0f16b8a7428936e3ba80002d0948a8699a6f75d98a7', 'date' => '09 Jul 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.32.tar.gz', 'name' => 'PHP 7.2.32 (tar.gz)', 'sha256' => 'b3aabb99e574c407dd58ad071fc52e27c489608fe06f1330d688d0fb7349089c', 'date' => '09 Jul 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.32.tar.xz', 'name' => 'PHP 7.2.32 (tar.xz)', @@ -7040,33 +7040,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.7' => + '7.4.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_7.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '11 June 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.7.tar.bz2', 'name' => 'PHP 7.4.7 (tar.bz2)', 'sha256' => '800e0d01f359c8ec41540925c0d4a24c34d5f21ef6addd6d82ff4a52be23d87a', 'date' => '11 June 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.7.tar.gz', 'name' => 'PHP 7.4.7 (tar.gz)', 'sha256' => 'a554a510190e726ebe7157fb00b4aceabdb50c679430510a3b93cbf5d7546e44', 'date' => '11 June 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.7.tar.xz', 'name' => 'PHP 7.4.7 (tar.xz)', @@ -7076,34 +7076,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.31' => + '7.2.31' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_31.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '14 May 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.31.tar.bz2', 'name' => 'PHP 7.2.31 (tar.bz2)', 'sha256' => '1ba7559745d704f39764a5deb002eb94f5cb8d9aaa219a6b8b32b94174e8a700', 'date' => '14 May 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.31.tar.gz', 'name' => 'PHP 7.2.31 (tar.gz)', 'sha256' => '796837831ccebf00dc15921ed327cfbac59177da41b33044d9a6c7134cdd250c', 'date' => '14 May 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.31.tar.xz', 'name' => 'PHP 7.2.31 (tar.xz)', @@ -7113,33 +7113,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.19' => + '7.3.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_19.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '11 Jun 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.19.tar.bz2', 'name' => 'PHP 7.3.19 (tar.bz2)', 'sha256' => '0d9c1e31e29fb46ff660b48051d169d50cb0285e611d16591449d578320d34a5', 'date' => '11 Jun 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.19.tar.gz', 'name' => 'PHP 7.3.19 (tar.gz)', 'sha256' => '809126b46d62a1a06c2d5a0f9d7ba61aba40e165f24d2d185396d0f9646d3280', 'date' => '11 Jun 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.19.tar.xz', 'name' => 'PHP 7.3.19 (tar.xz)', @@ -7149,34 +7149,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.6' => + '7.4.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_6.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '14 May 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.6.tar.bz2', 'name' => 'PHP 7.4.6 (tar.bz2)', 'sha256' => 'a6ed9475695d2056322a3f2c00fee61a122a7fce138a0e25694320c5dd1d2348', 'date' => '14 May 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.6.tar.gz', 'name' => 'PHP 7.4.6 (tar.gz)', 'sha256' => '2a37bab4e308c4e3867083137b7cce4a3f1d996ae231b383c1a83609cec3fed0', 'date' => '14 May 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.6.tar.xz', 'name' => 'PHP 7.4.6 (tar.xz)', @@ -7186,34 +7186,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.18' => + '7.3.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_18.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '14 May 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.18.tar.bz2', 'name' => 'PHP 7.3.18 (tar.bz2)', 'sha256' => '749d21f65deb57153b575f846705f5db54732c6b672e80612b29dcf1a53be8a4', 'date' => '14 May 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.18.tar.gz', 'name' => 'PHP 7.3.18 (tar.gz)', 'sha256' => '3211d5d6ea8a27c2794498a551bf26e334bc2b986741971809c9bb650eaa47a3', 'date' => '14 May 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.18.tar.xz', 'name' => 'PHP 7.3.18 (tar.xz)', @@ -7223,34 +7223,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.5' => + '7.4.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_5.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '16 Apr 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.5.tar.bz2', 'name' => 'PHP 7.4.5 (tar.bz2)', 'sha256' => '39daa533d5b63c3394da711dc12867dd76c2ec31c940bbba16f14e577df13d6f', 'date' => '16 Apr 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.5.tar.gz', 'name' => 'PHP 7.4.5 (tar.gz)', 'sha256' => '1ef619411b0bd68c0fbfd2a6c622ad6bc524d0bceb8476fb9807a23a0fe9a343', 'date' => '16 Apr 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.5.tar.xz', 'name' => 'PHP 7.4.5 (tar.xz)', @@ -7260,34 +7260,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.17' => + '7.3.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_17.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '16 Apr 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.17.tar.bz2', 'name' => 'PHP 7.3.17 (tar.bz2)', 'sha256' => 'd83e90d9024c999f209933732ed4e1d0e7295a67c66ab79490898ea0a4a29709', 'date' => '16 Apr 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.17.tar.gz', 'name' => 'PHP 7.3.17 (tar.gz)', 'sha256' => '0dd484382b8f17dfa8afd44236a5ccf374e1f03de06ef826ebcbda98eadc7bda', 'date' => '16 Apr 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.17.tar.xz', 'name' => 'PHP 7.3.17 (tar.xz)', @@ -7297,34 +7297,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.30' => + '7.2.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_30.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '16 Apr 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.30.tar.bz2', 'name' => 'PHP 7.2.30 (tar.bz2)', 'sha256' => 'c4cf5c9debe8fd8def0a933231cf2fa3a8bdd22555ae57e825bfac6a87a712bf', 'date' => '16 Apr 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.30.tar.gz', 'name' => 'PHP 7.2.30 (tar.gz)', 'sha256' => 'daa53d22510b0fd433904d1c3de460746860a974b776f727ac8acecb44e16e2f', 'date' => '16 Apr 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.30.tar.xz', 'name' => 'PHP 7.2.30 (tar.xz)', @@ -7334,34 +7334,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.29' => + '7.2.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_29.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '19 Mar 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.29.tar.bz2', 'name' => 'PHP 7.2.29 (tar.bz2)', 'sha256' => 'eaa1f5503f2bf0c8569ec4ae80ffd8ca8cbc260f01c2503dd0e83dfc9cf0b923', 'date' => '19 Mar 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.29.tar.gz', 'name' => 'PHP 7.2.29 (tar.gz)', 'sha256' => 'ea5c96309394a03a38828cc182058be0c09dde1f00f35809622c2d05c50ee890', 'date' => '19 Mar 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.29.tar.xz', 'name' => 'PHP 7.2.29 (tar.xz)', @@ -7371,34 +7371,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.4' => + '7.4.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_4.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '19 Mar 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.4.tar.bz2', 'name' => 'PHP 7.4.4 (tar.bz2)', 'sha256' => '308e8f4182ec8a2767b0b1b8e1e7c69fb149b37cfb98ee4a37475e082fa9829f', 'date' => '19 Mar 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.4.tar.gz', 'name' => 'PHP 7.4.4 (tar.gz)', 'sha256' => '1581b3e10c7854597e1086937d5753cdf92d132865c06a50aed4f4f407138616', 'date' => '19 Mar 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.4.tar.xz', 'name' => 'PHP 7.4.4 (tar.xz)', @@ -7408,34 +7408,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.16' => + '7.3.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_16.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '19 Mar 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.16.tar.bz2', 'name' => 'PHP 7.3.16 (tar.bz2)', 'sha256' => 'b8072d526a283182963b03960b7982392daa43cb31131eca4cf0b996764a042e', 'date' => '19 Mar 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.16.tar.gz', 'name' => 'PHP 7.3.16 (tar.gz)', 'sha256' => 'a01ae4f6baf427413c28f8cfddbae86aeff61cdb88658e75404f2d93d98e3255', 'date' => '19 Mar 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.16.tar.xz', 'name' => 'PHP 7.3.16 (tar.xz)', @@ -7445,34 +7445,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.3' => + '7.4.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_3.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '20 Feb 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.3.tar.bz2', 'name' => 'PHP 7.4.3 (tar.bz2)', 'sha256' => 'c1517ba49578fb2dcc64c73a3edc76d4fc507c4a7ac639981584cc7d3b4c6d14', 'date' => '20 Feb 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.3.tar.gz', 'name' => 'PHP 7.4.3 (tar.gz)', 'sha256' => '58e421a1dba10da8542a014535cac77a78f0271afb901cc2bd363b881895a9ed', 'date' => '20 Feb 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.3.tar.xz', 'name' => 'PHP 7.4.3 (tar.xz)', @@ -7482,34 +7482,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.28' => + '7.2.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_28.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '20 Feb 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.28.tar.bz2', 'name' => 'PHP 7.2.28 (tar.bz2)', 'sha256' => '7c953a5b79db3d8d45c65014aef382a48e1c3435cf0c2574e942957f0cdd52a3', 'date' => '20 Feb 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.28.tar.gz', 'name' => 'PHP 7.2.28 (tar.gz)', 'sha256' => 'ed5fede7602ccd8d1294b4e4aef7f92f4e3af58ab040bd349264b3f5dbef3261', 'date' => '20 Feb 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.28.tar.xz', 'name' => 'PHP 7.2.28 (tar.xz)', @@ -7519,34 +7519,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.15' => + '7.3.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_15.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '20 Feb 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.15.tar.bz2', 'name' => 'PHP 7.3.15 (tar.bz2)', 'sha256' => '8dbe1507ea0035f4211faa0db80fe95f39df0e39d8408223820fe9123487043d', 'date' => '20 Feb 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.15.tar.gz', 'name' => 'PHP 7.3.15 (tar.gz)', 'sha256' => 'c606dd09de2edff1e6b6c5b9f0076214a59f6f1a3272e15d681ed16257737ef6', 'date' => '20 Feb 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.15.tar.xz', 'name' => 'PHP 7.3.15 (tar.xz)', @@ -7556,34 +7556,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.2' => + '7.4.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_2.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '23 Jan 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.2.tar.bz2', 'name' => 'PHP 7.4.2 (tar.bz2)', 'sha256' => '02909974be9c70814ed5652a6bdae9c74220d41c1e5ed5ad921e15d028f8e816', 'date' => '23 Jan 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.2.tar.gz', 'name' => 'PHP 7.4.2 (tar.gz)', 'sha256' => 'e1b8dbf561ac1d871362054ff4cd62dca5e19c8c896567996525dda7c4b320f9', 'date' => '23 Jan 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.2.tar.xz', 'name' => 'PHP 7.4.2 (tar.xz)', @@ -7593,34 +7593,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.14' => + '7.3.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_14.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '23 Jan 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.14.tar.bz2', 'name' => 'PHP 7.3.14 (tar.bz2)', 'sha256' => 'b9dfcbbbc929ce67995f976de8636c5f46804593ecae6e110509329b9dc6c272', 'date' => '18 Dec 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.14.tar.gz', 'name' => 'PHP 7.3.14 (tar.gz)', 'sha256' => '6aff532a380b0f30c9e295b67dc91d023fee3b0ae14b4771468bf5dda4cbf108', 'date' => '18 Dec 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.14.tar.xz', 'name' => 'PHP 7.3.14 (tar.xz)', @@ -7630,34 +7630,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.27' => + '7.2.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_27.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '23 Jan 2020', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.27.tar.bz2', 'name' => 'PHP 7.2.27 (tar.bz2)', 'sha256' => '5bc0695b171b870ceb083c5432c6a758d3dbd3830a0cf6cf35bd9b283a627049', 'date' => '23 Jan 2020', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.27.tar.gz', 'name' => 'PHP 7.2.27 (tar.gz)', 'sha256' => 'e00ace5e89cb162cba0aebd17144541e1c4d965589155a44ca706d9f9c5a8981', 'date' => '23 Jan 2020', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.27.tar.xz', 'name' => 'PHP 7.2.27 (tar.xz)', @@ -7667,34 +7667,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.13' => + '7.3.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_13.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Dec 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.13.tar.bz2', 'name' => 'PHP 7.3.13 (tar.bz2)', 'sha256' => '5c7b89062814f3c3953d1518f63ed463fd452929e3a37110af4170c5d23267bc', 'date' => '18 Dec 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.13.tar.gz', 'name' => 'PHP 7.3.13 (tar.gz)', 'sha256' => '9cf835416a3471d7e6615e9288e76813d55ffaf60e0aa9ce74884a7c228cb6dd', 'date' => '18 Dec 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.13.tar.xz', 'name' => 'PHP 7.3.13 (tar.xz)', @@ -7704,34 +7704,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.26' => + '7.2.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_26.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '18 Dec 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.26.tar.bz2', 'name' => 'PHP 7.2.26 (tar.bz2)', 'sha256' => 'f36d86eecf57ff919d6f67b064e1f41993f62e3991ea4796038d8d99c74e847b', 'date' => '18 Dec 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.26.tar.gz', 'name' => 'PHP 7.2.26 (tar.gz)', 'sha256' => 'e97d0636478bb519cd955a0c17b7970cf173063a840a83fc4afb75c22bc1bf08', 'date' => '18 Dec 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.26.tar.xz', 'name' => 'PHP 7.2.26 (tar.xz)', @@ -7741,33 +7741,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.1' => + '7.4.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_1.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '18 Dec 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.1.tar.bz2', 'name' => 'PHP 7.4.1 (tar.bz2)', 'sha256' => '6b1ca0f0b83aa2103f1e454739665e1b2802b90b3137fc79ccaa8c242ae48e4e', 'date' => '18 Dec 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.1.tar.gz', 'name' => 'PHP 7.4.1 (tar.gz)', 'sha256' => '67265d6bd48d828f4725964f71ca5c76c3da63b0d07bec5ec4e5acfdd3708073', 'date' => '18 Dec 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.1.tar.xz', 'name' => 'PHP 7.4.1 (tar.xz)', @@ -7777,33 +7777,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.25' => + '7.2.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_25.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '21 Nov 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.25.tar.bz2', 'name' => 'PHP 7.2.25 (tar.bz2)', 'sha256' => '7cb336b1ed0f9d87f46bbcb7b3437ee252d0d5060c0fb1a985adb6cbc73a6b9e', 'date' => '21 Nov 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.25.tar.gz', 'name' => 'PHP 7.2.25 (tar.gz)', 'sha256' => 'b2cb1bd46454d33b2c65c2fd559f464cd14e57dd47b953adf5caa77fdf0de52b', 'date' => '21 Nov 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.25.tar.xz', 'name' => 'PHP 7.2.25 (tar.xz)', @@ -7813,33 +7813,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.12' => + '7.3.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_12.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '21 Nov 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.12.tar.bz2', 'name' => 'PHP 7.3.12 (tar.bz2)', 'sha256' => 'd317b029f991410578cc38ba4b76c9f764ec29c67e7124e1fec57bceb3ad8c39', 'date' => '21 Nov 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.12.tar.gz', 'name' => 'PHP 7.3.12 (tar.gz)', 'sha256' => 'd617e5116f8472a628083f448ebe4afdbc4ac013c9a890b08946649dcbe61b34', 'date' => '21 Nov 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.12.tar.xz', 'name' => 'PHP 7.3.12 (tar.xz)', @@ -7849,33 +7849,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.4.0' => + '7.4.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_4_0.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '28 Nov 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.4.0.tar.bz2', 'name' => 'PHP 7.4.0 (tar.bz2)', 'sha256' => 'bf206be96a39e643180013df39ddcd0493966692a2422c4b7d3355b6a15a01c0', 'date' => '28 Nov 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.4.0.tar.gz', 'name' => 'PHP 7.4.0 (tar.gz)', 'sha256' => '004a1a8176176ee1b5c112e73d705977507803f425f9e48cb4a84f42b22abf22', 'date' => '28 Nov 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.4.0.tar.xz', 'name' => 'PHP 7.4.0 (tar.xz)', @@ -7885,34 +7885,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.1.33' => + '7.1.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_33.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '24 Oct 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.33.tar.bz2', 'name' => 'PHP 7.1.33 (tar.bz2)', 'sha256' => '95a5e5f2e2b79b376b737a82d9682c91891e60289fa24183463a2aca158f4f4b', 'date' => '24 Oct 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.33.tar.gz', 'name' => 'PHP 7.1.33 (tar.gz)', 'sha256' => '0055f368ffefe51d5a4483755bd17475e88e74302c08b727952831c5b2682ea2', 'date' => '24 Oct 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.33.tar.xz', 'name' => 'PHP 7.1.33 (tar.xz)', @@ -7922,34 +7922,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.24' => + '7.2.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_24.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '24 Oct 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.24.tar.bz2', 'name' => 'PHP 7.2.24 (tar.bz2)', 'sha256' => 'a079934db63068bbcc9bbd2e7b916b9891fc97719862697e5f954c639984f603', 'date' => '24 Oct 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.24.tar.gz', 'name' => 'PHP 7.2.24 (tar.gz)', 'sha256' => '01baf7a34c856d2c552121fbad7296a8cde18389ce83db32f18252bc1cee4dd6', 'date' => '24 Oct 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.24.tar.xz', 'name' => 'PHP 7.2.24 (tar.xz)', @@ -7959,34 +7959,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.11' => + '7.3.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_11.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '24 Oct 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.11.tar.bz2', 'name' => 'PHP 7.3.11 (tar.bz2)', 'sha256' => '92d1ff4b13c7093635f1ec338a5e6891ca99b10e65fbcadd527e5bb84d11b5e7', 'date' => '24 Oct 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.11.tar.gz', 'name' => 'PHP 7.3.11 (tar.gz)', 'sha256' => '8f385f5bdf9193791f6c0f6303f518f3c324b6655ac108fdb3c426da7f3cf4d4', 'date' => '24 Oct 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.11.tar.xz', 'name' => 'PHP 7.3.11 (tar.xz)', @@ -7996,34 +7996,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.1.32' => + '7.1.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_32.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '29 Aug 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.32.tar.bz2', 'name' => 'PHP 7.1.32 (tar.bz2)', 'sha256' => 'd7c7a1adddc75ac17f63349e966db25930b6b3ce736640349bea9e10909cab7a', 'date' => '29 Aug 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.32.tar.gz', 'name' => 'PHP 7.1.32 (tar.gz)', 'sha256' => '6e51a2fc610352438b2a1c40310468a1e2b5baf2fff43be77f9f408a9111590c', 'date' => '29 Aug 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.32.tar.xz', 'name' => 'PHP 7.1.32 (tar.xz)', @@ -8033,34 +8033,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.10' => + '7.3.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_10.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '26 Sep 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.10.tar.bz2', 'name' => 'PHP 7.3.10 (tar.bz2)', 'sha256' => '506dd871c0fb8f00f872f53dd3b1dfa5f23a9edb4dfc521e5669c78a78c45448', 'date' => '26 Sep 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.10.tar.gz', 'name' => 'PHP 7.3.10 (tar.gz)', 'sha256' => 'fb670723a9b8fda31c89529f27e0dda289d8af4b6ce9f152c8010876639c0fb4', 'date' => '26 Sep 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.10.tar.xz', 'name' => 'PHP 7.3.10 (tar.xz)', @@ -8070,33 +8070,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.23' => + '7.2.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_23.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '26 Sep 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.23.tar.bz2', 'name' => 'PHP 7.2.23 (tar.bz2)', 'sha256' => 'a17af3643d29d7e730f977e3776dc3e325d5ca00b361e41dbfc2368ebad5430d', 'date' => '26 Sep 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.23.tar.gz', 'name' => 'PHP 7.2.23 (tar.gz)', 'sha256' => 'b32b426c84ff45154d6c11f00aff433bcac831a5c0a09bf0297075eefaea8fcc', 'date' => '26 Sep 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.23.tar.xz', 'name' => 'PHP 7.2.23 (tar.xz)', @@ -8106,34 +8106,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.22' => + '7.2.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_22.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '29 Aug 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.22.tar.bz2', 'name' => 'PHP 7.2.22 (tar.bz2)', 'sha256' => 'c10a9883b586ada5ef1149f2571625b27efdcc3e70a04fbb9121979633b0f08a', 'date' => '29 Aug 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.22.tar.gz', 'name' => 'PHP 7.2.22 (tar.gz)', 'sha256' => '6e2ccc77484c27971d4550b7071a57b79bc910bfb2d4a74a57ae2c18b78c3dc7', 'date' => '29 Aug 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.22.tar.xz', 'name' => 'PHP 7.2.22 (tar.xz)', @@ -8143,34 +8143,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.9' => + '7.3.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_9.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '29 Aug 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.9.tar.bz2', 'name' => 'PHP 7.3.9 (tar.bz2)', 'sha256' => 'a39c9709a8c9eb7ea8ac4933ef7a78b92f7e5735a405c8b8e42ee39541d963c4', 'date' => '29 Aug 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.9.tar.gz', 'name' => 'PHP 7.3.9 (tar.gz)', 'sha256' => '5ecc1b1ad7228ed2e99a970c45358871644fcab1d9fd079a7b129326a7bde42d', 'date' => '29 Aug 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.9.tar.xz', 'name' => 'PHP 7.3.9 (tar.xz)', @@ -8180,34 +8180,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.1.31' => + '7.1.31' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_31.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '01 Aug 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.31.tar.bz2', 'name' => 'PHP 7.1.31 (tar.bz2)', 'sha256' => '767573c2b732e78cc647602ec61fc948941a941a4071db59b522cf5e076825dd', 'date' => '01 Aug 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.31.tar.gz', 'name' => 'PHP 7.1.31 (tar.gz)', 'sha256' => 'ea0558735653b9ce63e9cea41dd8f0d0b90dba6c39d39dd9a6aad5cc58b0bdfc', 'date' => '01 Aug 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.31.tar.xz', 'name' => 'PHP 7.1.31 (tar.xz)', @@ -8217,34 +8217,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.21' => + '7.2.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_21.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '01 Aug 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.21.tar.bz2', 'name' => 'PHP 7.2.21 (tar.bz2)', 'sha256' => '343183a1be8336670171885c761d57ffcae99cbbcf1db43da7cb5565056b14ef', 'date' => '01 Aug 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.21.tar.gz', 'name' => 'PHP 7.2.21 (tar.gz)', 'sha256' => '8327682bee4a8fd2edf5bbfcc393d986b945bec433fc74458d05e766701b313c', 'date' => '01 Aug 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.21.tar.xz', 'name' => 'PHP 7.2.21 (tar.xz)', @@ -8254,34 +8254,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.8' => + '7.3.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_8.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '01 Aug 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.8.tar.bz2', 'name' => 'PHP 7.3.8 (tar.bz2)', 'sha256' => 'd566c630175d9fa84a98d3c9170ec033069e9e20c8d23dea49ae2a976b6c76f5', 'date' => '01 Aug 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.8.tar.gz', 'name' => 'PHP 7.3.8 (tar.gz)', 'sha256' => '31af3eff3337fb70733c9b02a3444c3dae662ecab20aeec7fdc3c42e22071490', 'date' => '01 Aug 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.8.tar.xz', 'name' => 'PHP 7.3.8 (tar.xz)', @@ -8291,34 +8291,34 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.1.30' => + '7.1.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_30.php', ), - 'tags' => + 'tags' => array ( 0 => 'security', ), 'date' => '30 May 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.30.tar.bz2', 'name' => 'PHP 7.1.30 (tar.bz2)', 'sha256' => '664850774fca19d2710b9aa35e9ae91214babbde9cd8d27fd3479cc97171ecb3', 'date' => '30 May 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.30.tar.gz', 'name' => 'PHP 7.1.30 (tar.gz)', 'sha256' => 'a604edf85d5dfc28e6ff3016dad3954c50b93db69afc42295178b4fdf42e026c', 'date' => '30 May 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.30.tar.xz', 'name' => 'PHP 7.1.30 (tar.xz)', @@ -8328,33 +8328,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.20' => + '7.2.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_20.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Jul 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.20.tar.bz2', 'name' => 'PHP 7.2.20 (tar.bz2)', 'sha256' => '9fb829e54e54c483ae8892d1db0f7d79115cc698f2f3591a8a5e58d9410dca84', 'date' => '04 Jul 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.20.tar.gz', 'name' => 'PHP 7.2.20 (tar.gz)', 'sha256' => 'd1dbf6f299514c9aa55b2995928b798b27c21811a0447f0688993cdf36be0749', 'date' => '04 Jul 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.20.tar.xz', 'name' => 'PHP 7.2.20 (tar.xz)', @@ -8364,33 +8364,33 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.3.7' => + '7.3.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_7.php', ), - 'tags' => + 'tags' => array ( ), 'date' => '04 Jul 2019', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.7.tar.bz2', 'name' => 'PHP 7.3.7 (tar.bz2)', 'sha256' => 'c3608fa7114642725854119ccffe722f42fc7c31e5e4c00d5cb4cb1a0d16bf18', 'date' => '04 Jul 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.7.tar.gz', 'name' => 'PHP 7.3.7 (tar.gz)', 'sha256' => '4230bbc862df712b013369de94b131eddea1e5e946a8c5e286b82d441c313328', 'date' => '04 Jul 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.7.tar.xz', 'name' => 'PHP 7.3.7 (tar.xz)', @@ -8400,29 +8400,29 @@ $OLDRELEASES = array ( ), 'museum' => false, ), - '7.2.19' => + '7.2.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/19.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.19.tar.bz2', 'name' => 'PHP 7.2.19 (tar.bz2)', 'sha256' => 'ebd0b1f375fe07ed4925acc213d2f5ef76a61bd5de174e7b666b98421a90a099', 'date' => '30 May 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.19.tar.gz', 'name' => 'PHP 7.2.19 (tar.gz)', 'sha256' => '1cd2266a058f3224d3cba594540045542606996f026eeef96747f27f6b3d22b6', 'date' => '30 May 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.19.tar.xz', 'name' => 'PHP 7.2.19 (tar.xz)', @@ -8432,34 +8432,34 @@ $OLDRELEASES = array ( ), 'date' => '30 May 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.3.6' => + '7.3.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.6.tar.bz2', 'name' => 'PHP 7.3.6 (tar.bz2)', 'sha256' => '1e5ac8700154835c0910e3a814517da9b87bb4a82cc7011fea1a82096b6f6f77', 'date' => '30 May 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.6.tar.gz', 'name' => 'PHP 7.3.6 (tar.gz)', 'sha256' => '72fbf223ff8659a61eed08eebffb4ede0256e7a69d2151ae24affa5377b70bb8', 'date' => '30 May 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.6.tar.xz', 'name' => 'PHP 7.3.6 (tar.xz)', @@ -8469,34 +8469,34 @@ $OLDRELEASES = array ( ), 'date' => '30 May 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.29' => + '7.1.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_29.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.29.tar.bz2', 'name' => 'PHP 7.1.29 (tar.bz2)', 'sha256' => '8528d17efe82662dc740d96ddb32217f4e161a597d709f19571b0c82fbb88335', 'date' => '02 May 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.29.tar.gz', 'name' => 'PHP 7.1.29 (tar.gz)', 'sha256' => 'bdd0e1707100c8b87f1be516f5b95a26e3eb4114d4316eaf0663bf292ead35bb', 'date' => '02 May 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.29.tar.xz', 'name' => 'PHP 7.1.29 (tar.xz)', @@ -8506,34 +8506,34 @@ $OLDRELEASES = array ( ), 'date' => '02 May 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.18' => + '7.2.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_18.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.18.tar.bz2', 'name' => 'PHP 7.2.18 (tar.bz2)', 'sha256' => 'fa1a27b12d1173207e81e798a48d4a7f77ba897f5c5200ac0b5d62aa8b4c4b72', 'date' => '02 May 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.18.tar.gz', 'name' => 'PHP 7.2.18 (tar.gz)', 'sha256' => '48aeb291814f3cd3ba03c52e79e8e61896d0271fd4c228198f80a072e568f84b', 'date' => '02 May 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.18.tar.xz', 'name' => 'PHP 7.2.18 (tar.xz)', @@ -8543,34 +8543,34 @@ $OLDRELEASES = array ( ), 'date' => '30 May 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.3.5' => + '7.3.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_5.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.5.tar.bz2', 'name' => 'PHP 7.3.5 (tar.bz2)', 'sha256' => '4380b80ef98267c3823c3416eb05f7729ba7a33de6b3d14ec96013215d62c35e', 'date' => '02 May 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.5.tar.gz', 'name' => 'PHP 7.3.5 (tar.gz)', 'sha256' => 'c953749b7f3310a3a74f920ef698f6d1c04636d11656ac9ffb3ab10d34e30e1e', 'date' => '02 May 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.5.tar.xz', 'name' => 'PHP 7.3.5 (tar.xz)', @@ -8580,34 +8580,34 @@ $OLDRELEASES = array ( ), 'date' => '02 May 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.28' => + '7.1.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_28.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.28.tar.bz2', 'name' => 'PHP 7.1.28 (tar.bz2)', 'sha256' => '739e8733fe1fc5e69e6226da6dba7a31bacfd2e3871ad2c97a792638f22c54c9', 'date' => '04 Apr 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.28.tar.gz', 'name' => 'PHP 7.1.28 (tar.gz)', 'sha256' => '4df587338d4c5dfe27050c7ac72a6b7583ecaee9d3fbfc03427667a86e081999', 'date' => '04 Apr 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.28.tar.xz', 'name' => 'PHP 7.1.28 (tar.xz)', @@ -8617,34 +8617,34 @@ $OLDRELEASES = array ( ), 'date' => '02 May 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.17' => + '7.2.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_17.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.17.tar.bz2', 'name' => 'PHP 7.2.17 (tar.bz2)', 'sha256' => '91a811ab6f6d7acb312159cf6b0a3cffe968676fdebf042e9253245cc6094f75', 'date' => '04 Apr 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.17.tar.gz', 'name' => 'PHP 7.2.17 (tar.gz)', 'sha256' => 'e1c6c2553cdb7edbfa65b89e259690ed01b31b12d57349c90b6ed00a410f62b5', 'date' => '04 Apr 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.17.tar.xz', 'name' => 'PHP 7.2.17 (tar.xz)', @@ -8654,34 +8654,34 @@ $OLDRELEASES = array ( ), 'date' => '02 May 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.3.4' => + '7.3.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_4.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.4.tar.bz2', 'name' => 'PHP 7.3.4 (tar.bz2)', 'sha256' => '2e2c3d8212c83649e443b61efffbd03df4b9edd0f9c7a679081fe4cb2da12b78', 'date' => '04 Apr 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.4.tar.gz', 'name' => 'PHP 7.3.4 (tar.gz)', 'sha256' => 'dd41ecf43fe1172030f41d2581909457a0af7bd137a057c3874e0b0f3c2e8761', 'date' => '04 Apr 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.4.tar.xz', 'name' => 'PHP 7.3.4 (tar.xz)', @@ -8691,34 +8691,34 @@ $OLDRELEASES = array ( ), 'date' => '04 Apr 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.27' => + '7.1.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_27.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.27.tar.bz2', 'name' => 'PHP 7.1.27 (tar.bz2)', 'sha256' => 'dad7ecd30941911528e471c555a01911a68aa9219696bfc1e005f8b669f4ec4b', 'date' => '07 Mar 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.27.tar.gz', 'name' => 'PHP 7.1.27 (tar.gz)', 'sha256' => '353b9ed341048388cc95e6fa6dab587eee44a3d4d297989aa297936090864357', 'date' => '07 Mar 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.27.tar.xz', 'name' => 'PHP 7.1.27 (tar.xz)', @@ -8728,34 +8728,34 @@ $OLDRELEASES = array ( ), 'date' => '07 Mar 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.16' => + '7.2.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_16.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.16.tar.bz2', 'name' => 'PHP 7.2.16 (tar.bz2)', 'sha256' => '2c0ad10053d58694cd14323248ecd6d9ba71d2733d160973c356ad01d09e7f38', 'date' => '07 Mar 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.16.tar.gz', 'name' => 'PHP 7.2.16 (tar.gz)', 'sha256' => 'fb95e0bb69caba1dfd3bbac4eeef7a0485e5ea3d6191d35ad5657e18243aa02d', 'date' => '07 Mar 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.16.tar.xz', 'name' => 'PHP 7.2.16 (tar.xz)', @@ -8765,34 +8765,34 @@ $OLDRELEASES = array ( ), 'date' => '04 Apr 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.3.3' => + '7.3.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_3.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.3.tar.bz2', 'name' => 'PHP 7.3.3 (tar.bz2)', 'sha256' => '61969e943adfea79701a34b8e701edd3f95be829d16601a4aabeb05f83023ce6', 'date' => '07 Mar 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.3.tar.gz', 'name' => 'PHP 7.3.3 (tar.gz)', 'sha256' => '9bde40cbf8608ae9c595a6643a02cf0c692c131e2b3619af3fd2af8425d8e677', 'date' => '07 Mar 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.3.tar.xz', 'name' => 'PHP 7.3.3 (tar.xz)', @@ -8802,34 +8802,34 @@ $OLDRELEASES = array ( ), 'date' => '07 Mar 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.26' => + '7.1.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_26.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.26.tar.bz2', 'name' => 'PHP 7.1.26 (tar.bz2)', 'sha256' => '5b351ca86bc7e4600778aaf1d61ab9e4e38864efa86ab4cc4d5b02ea7f542ae6', 'date' => '10 Jan 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.26.tar.gz', 'name' => 'PHP 7.1.26 (tar.gz)', 'sha256' => '069315d3c3f964fd165bbbb3c2fc56005813e2cf97bed05055318dcc4e775328', 'date' => '10 Jan 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.26.tar.xz', 'name' => 'PHP 7.1.26 (tar.xz)', @@ -8839,34 +8839,34 @@ $OLDRELEASES = array ( ), 'date' => '10 Jan 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.15' => + '7.2.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_15.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.15.tar.bz2', 'name' => 'PHP 7.2.15 (tar.bz2)', 'sha256' => 'c93e7616946a463911818c7e9f9e21276c7793fb8c7cb15877188dd0546d0554', 'date' => '07 Feb 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.15.tar.gz', 'name' => 'PHP 7.2.15 (tar.gz)', 'sha256' => '9b13bde9f5a32d6f6bdb8b911bb55bb818d0c4073538f8dc48aa2deb560f55a3', 'date' => '07 Feb 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.15.tar.xz', 'name' => 'PHP 7.2.15 (tar.xz)', @@ -8877,29 +8877,29 @@ $OLDRELEASES = array ( 'date' => '07 Mar 2019', 'museum' => false, ), - '7.3.2' => + '7.3.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_2.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.2.tar.bz2', 'name' => 'PHP 7.3.2 (tar.bz2)', 'sha256' => '946f50dacbd2f61e643bb737021cbe8b1816e780ee7ad3e0cd999a1892ab0add', 'date' => '07 Feb 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.2.tar.gz', 'name' => 'PHP 7.3.2 (tar.gz)', 'sha256' => '4597294b00edc1c63a021b6c7838eb43384f62eeb9e392f0b91c38a3c090f499', 'date' => '07 Feb 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.2.tar.xz', 'name' => 'PHP 7.3.2 (tar.xz)', @@ -8910,29 +8910,29 @@ $OLDRELEASES = array ( 'date' => '07 Feb 2019', 'museum' => false, ), - '7.2.14' => + '7.2.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_14.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.14.tar.bz2', 'name' => 'PHP 7.2.14 (tar.bz2)', 'sha256' => 'f56132d248c7bf1e0efc8a680a4b598d6ff73fc6b9c84b5d7b539ad8db7a6597', 'date' => '10 Jan 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.14.tar.gz', 'name' => 'PHP 7.2.14 (tar.gz)', 'sha256' => '87e13d80b0c3a66bd463d1cb47dc101335884a0d192ab924f547f8aed7f70c08', 'date' => '10 Jan 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.14.tar.xz', 'name' => 'PHP 7.2.14 (tar.xz)', @@ -8942,34 +8942,34 @@ $OLDRELEASES = array ( ), 'date' => '07 Feb 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.3.1' => + '7.3.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_1.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.1.tar.bz2', 'name' => 'PHP 7.3.1 (tar.bz2)', 'sha256' => 'afef2b0cd7f2641274a1a0aabe67e30f2334970d7c530382dfa9d79cfe74388e', 'date' => '10 Jan 2019', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.1.tar.gz', 'name' => 'PHP 7.3.1 (tar.gz)', 'sha256' => '8006211f7a041dde22fffedc416d142e0ebf22066014077ca936d7e6f655ead5', 'date' => '10 Jan 2019', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.1.tar.xz', 'name' => 'PHP 7.3.1 (tar.xz)', @@ -8979,34 +8979,34 @@ $OLDRELEASES = array ( ), 'date' => '10 Jan 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.33' => + '7.0.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_33.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.33.tar.bz2', 'name' => 'PHP 7.0.33 (tar.bz2)', 'sha256' => '4933ea74298a1ba046b0246fe3771415c84dfb878396201b56cb5333abe86f07', 'date' => '06 Dec 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.33.tar.gz', 'name' => 'PHP 7.0.33 (tar.gz)', 'sha256' => 'd71a6ecb6b13dc53fed7532a7f8f949c4044806f067502f8fb6f9facbb40452a', 'date' => '06 Dec 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.33.tar.xz', 'name' => 'PHP 7.0.33 (tar.xz)', @@ -9016,34 +9016,34 @@ $OLDRELEASES = array ( ), 'date' => '10 Jan 2019', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.25' => + '7.1.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_25.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.25.tar.bz2', 'name' => 'PHP 7.1.25 (tar.bz2)', 'sha256' => '002cdc880ac7cfaede2c389204d366108847db0f3ac72edf1ba95c0577f9aaac', 'date' => '06 Dec 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.25.tar.gz', 'name' => 'PHP 7.1.25 (tar.gz)', 'sha256' => '7dc40e202140e8b4fb3d992c15a68d98dc06b805e6b218497d260abbe51f5958', 'date' => '06 Dec 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.25.tar.xz', 'name' => 'PHP 7.1.25 (tar.xz)', @@ -9053,34 +9053,34 @@ $OLDRELEASES = array ( ), 'date' => '06 Dec 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.3.0' => + '7.3.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_3_0.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.3.0.tar.bz2', 'name' => 'PHP 7.3.0 (tar.bz2)', 'sha256' => '7a267daec9969a997c5c8028c350229646748e0fcc71e2f2dbb157ddcee87c67', 'date' => '06 Dec 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.3.0.tar.gz', 'name' => 'PHP 7.3.0 (tar.gz)', 'sha256' => '391bd0f91d9bdd01ab47ef9607bad8c65e35bc9bb098fb7777b2556e2c847b11', 'date' => '06 Dec 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.3.0.tar.xz', 'name' => 'PHP 7.3.0 (tar.xz)', @@ -9091,29 +9091,29 @@ $OLDRELEASES = array ( 'date' => '06 Dec 2018', 'museum' => false, ), - '7.2.13' => + '7.2.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_13.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.13.tar.bz2', 'name' => 'PHP 7.2.13 (tar.bz2)', 'sha256' => '5b4a46fb76491bcd3eee1213773382e570f6ecf9b22d623b24e2822298b3e92d', 'date' => '06 Dec 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.13.tar.gz', 'name' => 'PHP 7.2.13 (tar.gz)', 'sha256' => 'e563cee406b1ec96649c22ed2b35796cfe4e9aa9afa6eab6be4cf2fe5d724744', 'date' => '06 Dec 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.13.tar.xz', 'name' => 'PHP 7.2.13 (tar.xz)', @@ -9123,34 +9123,34 @@ $OLDRELEASES = array ( ), 'date' => '06 Dec 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.32' => + '7.0.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_32.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.32.tar.bz2', 'name' => 'PHP 7.0.32 (tar.bz2)', 'sha256' => '56e8d8cf9c08178afa8663589805f83bdb01634efd98131977038e24066492e1', 'date' => '13 Sep 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.32.tar.gz', 'name' => 'PHP 7.0.32 (tar.gz)', 'sha256' => '08d13389f611ec55f3b9164347a97e410099238a3dd85946e556a288ce366fbe', 'date' => '13 Sep 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.32.tar.xz', 'name' => 'PHP 7.0.32 (tar.xz)', @@ -9160,34 +9160,34 @@ $OLDRELEASES = array ( ), 'date' => '13 Sep 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.24' => + '7.1.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_24.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.24.tar.bz2', 'name' => 'PHP 7.1.24 (tar.bz2)', 'sha256' => '66de24e73c7f6006f090c1b187d6b218c8fa6a513acca4ff5c14b695a7391e0b', 'date' => '08 Nov 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.24.tar.gz', 'name' => 'PHP 7.1.24 (tar.gz)', 'sha256' => '1e780b1af3eeb8fba9e5af6205c960184a0c3a0ef091aaa192e7b7d6b67405d0', 'date' => '08 Nov 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.24.tar.xz', 'name' => 'PHP 7.1.24 (tar.xz)', @@ -9198,29 +9198,29 @@ $OLDRELEASES = array ( 'date' => '08 Nov 2018', 'museum' => false, ), - '7.2.12' => + '7.2.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_12.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.12.tar.bz2', 'name' => 'PHP 7.2.12 (tar.bz2)', 'sha256' => 'b724c4c20347b6105be109d98cc395a610174e8aadb506c82e8cb645b65ef6b6', 'date' => '08 Nov 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.12.tar.gz', 'name' => 'PHP 7.2.12 (tar.gz)', 'sha256' => 'd7cabdf4e51db38121daf0d494dc074743b24b6c79e592037eeedd731f1719dd', 'date' => '08 Nov 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.12.tar.xz', 'name' => 'PHP 7.2.12 (tar.xz)', @@ -9231,29 +9231,29 @@ $OLDRELEASES = array ( 'date' => '08 Nov 2018', 'museum' => false, ), - '7.1.23' => + '7.1.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_23.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.23.tar.bz2', 'name' => 'PHP 7.1.23 (tar.bz2)', 'sha256' => '2d79aa86d8f0faa760a712a1d7be50b57838a9770c1dff34020876630c2ecc4b', 'date' => '11 Oct 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.23.tar.gz', 'name' => 'PHP 7.1.23 (tar.gz)', 'sha256' => 'b839a4de32e6770d10b87c2495c070d09277fe61008804b2992466f0dcc5f0fa', 'date' => '11 Oct 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.23.tar.xz', 'name' => 'PHP 7.1.23 (tar.xz)', @@ -9264,29 +9264,29 @@ $OLDRELEASES = array ( 'date' => '11 Oct 2018', 'museum' => false, ), - '7.2.11' => + '7.2.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_11.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.11.tar.bz2', 'name' => 'PHP 7.2.11 (tar.bz2)', 'sha256' => '4a0d7f402d07966b37a600796283f4ca4079d955d96d5bec024dd02009d8b4c5', 'date' => '11 Oct 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.11.tar.gz', 'name' => 'PHP 7.2.11 (tar.gz)', 'sha256' => '180c63a9647c0a50d438b6bd5c7a8e7a11bceee8ad613a59d3ef15151fc158d4', 'date' => '11 Oct 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.11.tar.xz', 'name' => 'PHP 7.2.11 (tar.xz)', @@ -9297,29 +9297,29 @@ $OLDRELEASES = array ( 'date' => '11 Oct 2018', 'museum' => false, ), - '7.1.22' => + '7.1.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_22.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.22.tar.bz2', 'name' => 'PHP 7.1.22 (tar.bz2)', 'sha256' => 'c8e91f19c8aa810ae95f228ff31cf0e4805cb89f4c10870ee12c85491b26e763', 'date' => '13 Sep 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.22.tar.gz', 'name' => 'PHP 7.1.22 (tar.gz)', 'sha256' => '1d275115593a33315647094a5a4ee9bd73c7960c08686cee35dc2e683a68b157', 'date' => '13 Sep 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.22.tar.xz', 'name' => 'PHP 7.1.22 (tar.xz)', @@ -9329,34 +9329,34 @@ $OLDRELEASES = array ( ), 'date' => '13 Sep 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.10' => + '7.2.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_10.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.10.tar.bz2', 'name' => 'PHP 7.2.10 (tar.bz2)', 'sha256' => '01b6129a0921a1636b07da9bc598a876669e45a462cef4b5844fc26862dbda9d', 'date' => '13 Sep 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.10.tar.gz', 'name' => 'PHP 7.2.10 (tar.gz)', 'sha256' => 'd2d908b49b6005e65dcc46cdc986603a19b7ff103119fce8ddd4648586d430a4', 'date' => '13 Sep 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.10.tar.xz', 'name' => 'PHP 7.2.10 (tar.xz)', @@ -9366,34 +9366,34 @@ $OLDRELEASES = array ( ), 'date' => '13 Sep 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.21' => + '7.1.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_21.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.21.tar.bz2', 'name' => 'PHP 7.1.21 (tar.bz2)', 'sha256' => 'c2409c574bde23763b48a96b93922f530156df044585ff60108bce7b27b19580', 'date' => '17 Aug 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.21.tar.gz', 'name' => 'PHP 7.1.21 (tar.gz)', 'sha256' => '4b448ba9b3c81b88543c1e1fbef465391fecd64d7f19a744df26e9923295dd00', 'date' => '17 Aug 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.21.tar.xz', 'name' => 'PHP 7.1.21 (tar.xz)', @@ -9404,29 +9404,29 @@ $OLDRELEASES = array ( 'date' => '13 Sep 2018', 'museum' => false, ), - '7.0.31' => + '7.0.31' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_31.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.31.tar.bz2', 'name' => 'PHP 7.0.31 (tar.bz2)', 'sha256' => '7e8bd73eced6e679a179d39571e8fee6c83e51c86f43338f65c2dc88c1106b91', 'date' => '19 Jul 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.31.tar.gz', 'name' => 'PHP 7.0.31 (tar.gz)', 'sha256' => '182f36e5709837158bd4970ce57fe80735bdf79025133c00d6ad882d1c4d98dd', 'date' => '19 Jul 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.31.tar.xz', 'name' => 'PHP 7.0.31 (tar.xz)', @@ -9436,34 +9436,34 @@ $OLDRELEASES = array ( ), 'date' => '19 Jul 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.9' => + '7.2.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.9.tar.bz2', 'name' => 'PHP 7.2.9 (tar.bz2)', 'sha256' => 'e9e3aaa6c317b7fea78246a758b017544366049d2789ad5a44fe9398464c53a8', 'date' => '16 Aug 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.9.tar.gz', 'name' => 'PHP 7.2.9 (tar.gz)', 'sha256' => '23fcc1e4d10e06ddfdbc1163a8f0d147a7813467273f7946eb0de1b825d1d3e6', 'date' => '16 Aug 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.9.tar.xz', 'name' => 'PHP 7.2.9 (tar.xz)', @@ -9474,29 +9474,29 @@ $OLDRELEASES = array ( 'date' => '16 Aug 2018', 'museum' => false, ), - '7.1.20' => + '7.1.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_20.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.20.tar.bz2', 'name' => 'PHP 7.1.20 (tar.bz2)', 'sha256' => '3a1b476c88fb81254ea572e891a1d65053ab54068348e00c75e8b54fae691d45', 'date' => '19 Jul 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.20.tar.gz', 'name' => 'PHP 7.1.20 (tar.gz)', 'sha256' => '77a2091f4ab50367a6c68274a0d92e0da9ecdbf428b280c9836c5c6d512da450', 'date' => '19 Jul 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.20.tar.xz', 'name' => 'PHP 7.1.20 (tar.xz)', @@ -9506,34 +9506,34 @@ $OLDRELEASES = array ( ), 'date' => '16 Aug 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.8' => + '7.2.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.8.tar.bz2', 'name' => 'PHP 7.2.8 (tar.bz2)', 'sha256' => '1f8068f520a60fff3db19be1b849f0c02a33a0fd8b34b7ae05556ef682187ee6', 'date' => '19 Jul 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.8.tar.gz', 'name' => 'PHP 7.2.8 (tar.gz)', 'sha256' => 'a0cb9bf2f78498fc090eb553df03cdacc198785dec0818efa7a1804c2b7a8722', 'date' => '19 Jul 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.8.tar.xz', 'name' => 'PHP 7.2.8 (tar.xz)', @@ -9543,34 +9543,34 @@ $OLDRELEASES = array ( ), 'date' => '19 Jul 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.19' => + '7.1.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_19.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.19.tar.bz2', 'name' => 'PHP 7.1.19 (tar.bz2)', 'sha256' => '13c43e7be3040ad53f192b0770c7ed99e5b3e348dfc6674666179d557fd770f3', 'date' => '21 Jun 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.19.tar.gz', 'name' => 'PHP 7.1.19 (tar.gz)', 'sha256' => 'e1ae477b72bed02cdcb04f0157b8f8767bd4f6030416ae06408b4f6d85ee66a1', 'date' => '21 Jun 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.19.tar.xz', 'name' => 'PHP 7.1.19 (tar.xz)', @@ -9581,29 +9581,29 @@ $OLDRELEASES = array ( 'date' => '21 Jun 2018', 'museum' => false, ), - '7.0.30' => + '7.0.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_30.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.30.tar.bz2', 'name' => 'PHP 7.0.30 (tar.bz2)', 'sha256' => '213f38400c239b8fab2f6f59d6f4d4bd463d0a75bd4edf723dd4d5fea8850b50', 'date' => '26 Apr 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.30.tar.gz', 'name' => 'PHP 7.0.30 (tar.gz)', 'sha256' => '54e7615205123b940b996300bf99c707c2317b6b78388061a204b23ab3388a26', 'date' => '26 Apr 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.30.tar.xz', 'name' => 'PHP 7.0.30 (tar.xz)', @@ -9613,34 +9613,34 @@ $OLDRELEASES = array ( ), 'date' => '26 Apr 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.7' => + '7.2.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_7.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.7.tar.bz2', 'name' => 'PHP 7.2.7 (tar.bz2)', 'sha256' => 'cc81675a96af4dd18d8ffc02f26a36c622abadf86af7ecfea7bcde8d3c96d5a3', 'date' => '21 Jun 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.7.tar.gz', 'name' => 'PHP 7.2.7 (tar.gz)', 'sha256' => '014f0560cfa22e6301b0024a6fd888c3612a0dc102ff355fa2b49544d16d43b1', 'date' => '21 Jun 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.7.tar.xz', 'name' => 'PHP 7.2.7 (tar.xz)', @@ -9651,29 +9651,29 @@ $OLDRELEASES = array ( 'date' => '21 Jun 2018', 'museum' => false, ), - '7.1.18' => + '7.1.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_18.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.18.tar.bz2', 'name' => 'PHP 7.1.18 (tar.bz2)', 'sha256' => '580e375515ede831a6d82e13c0ec25dd08b225c6d87dfc24d7cd5f3bd542bf8e', 'date' => '24 May 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.18.tar.gz', 'name' => 'PHP 7.1.18 (tar.gz)', 'sha256' => '07c24ae4dd59d81d3dc0ce89025ae667979150e2ee0e9e30dd89e04e31d510fb', 'date' => '24 May 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.18.tar.xz', 'name' => 'PHP 7.1.18 (tar.xz)', @@ -9684,29 +9684,29 @@ $OLDRELEASES = array ( 'date' => '24 May 2018', 'museum' => false, ), - '7.2.6' => + '7.2.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.6.tar.bz2', 'name' => 'PHP 7.2.6 (tar.bz2)', 'sha256' => 'ae5d3e8ada80b9d293d0c8bd643d07c2d988538ff1052a3f7144c6b0cd0ff2c3', 'date' => '24 May 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.6.tar.gz', 'name' => 'PHP 7.2.6 (tar.gz)', 'sha256' => 'a9f30daf6af82ac02e692465cfd65b04a60d56106c961926e264d2621d313f0e', 'date' => '24 May 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.6.tar.xz', 'name' => 'PHP 7.2.6 (tar.xz)', @@ -9717,29 +9717,29 @@ $OLDRELEASES = array ( 'date' => '24 May 2018', 'museum' => false, ), - '7.1.17' => + '7.1.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_17.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.17.tar.bz2', 'name' => 'PHP 7.1.17 (tar.bz2)', 'sha256' => 'e124e3ac552c50f3890ed981d07b2ee473cac961885e75186ded0bbb5b78dbcf', 'date' => '26 Apr 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.17.tar.gz', 'name' => 'PHP 7.1.17 (tar.gz)', 'sha256' => 'aba44265bf814a020282afa63321323e1f81da61bd7318ab2b941857a15cb144', 'date' => '26 Apr 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.17.tar.xz', 'name' => 'PHP 7.1.17 (tar.xz)', @@ -9749,34 +9749,34 @@ $OLDRELEASES = array ( ), 'date' => '26 Apr 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.5' => + '7.2.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_5.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.5.tar.bz2', 'name' => 'PHP 7.2.5 (tar.bz2)', 'sha256' => 'f3820efa8efa79628b6e1b5b2f8c1b04c08d32e6721fa1654039ce5f89796031', 'date' => '26 Apr 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.5.tar.gz', 'name' => 'PHP 7.2.5 (tar.gz)', 'sha256' => 'c198aedd4cd16db0803e0ef955036722a1f4ce9ad3827546709fac05f1567ba5', 'date' => '26 Apr 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.5.tar.xz', 'name' => 'PHP 7.2.5 (tar.xz)', @@ -9786,34 +9786,34 @@ $OLDRELEASES = array ( ), 'date' => '26 Apr 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.16' => + '7.1.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_16.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.16.tar.bz2', 'name' => 'PHP 7.1.16 (tar.bz2)', 'sha256' => '348e2af9c7c0f327a57a972674078777dfde189e2598acbcb8618b9645b0e7e5', 'date' => '29 Mar 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.16.tar.gz', 'name' => 'PHP 7.1.16 (tar.gz)', 'sha256' => 'c8e6fed5b350b29a5b9eaa9fce7c5e8618629346e9a58212f3dc380046065442', 'date' => '29 Mar 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.16.tar.xz', 'name' => 'PHP 7.1.16 (tar.xz)', @@ -9823,34 +9823,34 @@ $OLDRELEASES = array ( ), 'date' => '29 Mar 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.29' => + '7.0.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_29.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.29.tar.bz2', 'name' => 'PHP 7.0.29 (tar.bz2)', 'sha256' => '989142d5c5ff7a11431254f9c1995235bad61a3364b99c966e11e06aa10d3fbc', 'date' => '29 Mar 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.29.tar.gz', 'name' => 'PHP 7.0.29 (tar.gz)', 'sha256' => '5efe45e345f967cb20f9ff92cd514753872a65feffea1bf311c71864344bd8e8', 'date' => '29 Mar 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.29.tar.xz', 'name' => 'PHP 7.0.29 (tar.xz)', @@ -9860,34 +9860,34 @@ $OLDRELEASES = array ( ), 'date' => '29 Mar 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.4' => + '7.2.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_4.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.4.tar.bz2', 'name' => 'PHP 7.2.4 (tar.bz2)', 'sha256' => '11658a0d764dc94023b9fb60d4b5eb75d438ad17981efe70abb0d0d09a447ef3', 'date' => '29 Mar 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.4.tar.gz', 'name' => 'PHP 7.2.4 (tar.gz)', 'sha256' => '58e28e978baea0fe9009432bcb436934eaacccfdcb5f5409c7526431a595857b', 'date' => '29 Mar 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.4.tar.xz', 'name' => 'PHP 7.2.4 (tar.xz)', @@ -9897,34 +9897,34 @@ $OLDRELEASES = array ( ), 'date' => '29 Mar 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.15' => + '7.1.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_15.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.15.tar.bz2', 'name' => 'PHP 7.1.15 (tar.bz2)', 'sha256' => 'e117a54738e9485de5fc75673d39dbe937dd87f0f9cc9e281960ef9b961adcbd', 'date' => '1 Mar 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.15.tar.gz', 'name' => 'PHP 7.1.15 (tar.gz)', 'sha256' => '0669c68a52cbd2f1cfa83354918ed03b0bcaa34ed9bafaee7dfd343461b881d4', 'date' => '1 Mar 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.15.tar.xz', 'name' => 'PHP 7.1.15 (tar.xz)', @@ -9934,34 +9934,34 @@ $OLDRELEASES = array ( ), 'date' => '1 Mar 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.3' => + '7.2.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_3.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.3.tar.bz2', 'name' => 'PHP 7.2.3 (tar.bz2)', 'sha256' => '4a735aac0ba764dd8208ea29007d3916396c5292e003ba8d3bec49edcdd5bf92', 'date' => '1 Mar 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.3.tar.gz', 'name' => 'PHP 7.2.3 (tar.gz)', 'sha256' => '5dc98f2266db40c5e4d9b5edf5e29e2449e819fff8321a07eb3830cf0b104bbb', 'date' => '1 Mar 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.3.tar.xz', 'name' => 'PHP 7.2.3 (tar.xz)', @@ -9971,34 +9971,34 @@ $OLDRELEASES = array ( ), 'date' => '1 Mar 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.28' => + '7.0.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_28.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.28.tar.bz2', 'name' => 'PHP 7.0.28 (tar.bz2)', 'sha256' => 'ae5491b4613f3710e3d09e688ba3d30d3acc1112c7b96a8703663b8a95063c7f', 'date' => '01 Mar 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.28.tar.gz', 'name' => 'PHP 7.0.28 (tar.gz)', 'sha256' => 'cd2fd94feb0d5809ffb9d900138643fa74e70656436e5f2595b03239dd97aa9c', 'date' => '01 Mar 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.28.tar.xz', 'name' => 'PHP 7.0.28 (tar.xz)', @@ -10008,34 +10008,34 @@ $OLDRELEASES = array ( ), 'date' => '01 Mar 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.14' => + '7.1.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_14.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.14.tar.bz2', 'name' => 'PHP 7.1.14 (tar.bz2)', 'sha256' => '63b2fd139ed7656756b0fa290bc42f8fff854723c3d2710a700e646370c581f4', 'date' => '1 Feb 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.14.tar.gz', 'name' => 'PHP 7.1.14 (tar.gz)', 'sha256' => '8c7360209d255ee46d388bdcd43ef1a2d14b370c331be30ea628ece18a1e7683', 'date' => '1 Feb 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.14.tar.xz', 'name' => 'PHP 7.1.14 (tar.xz)', @@ -10046,29 +10046,29 @@ $OLDRELEASES = array ( 'date' => '1 Feb 2018', 'museum' => false, ), - '7.2.2' => + '7.2.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_2.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.2.tar.bz2', 'name' => 'PHP 7.2.2 (tar.bz2)', 'sha256' => 'f841ac58e17471f2241ea892b34edb01dc9b93ad9f661ffe4e3f1f476a8f4aee', 'date' => '1 Feb 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.2.tar.gz', 'name' => 'PHP 7.2.2 (tar.gz)', 'sha256' => '5963df05fec21927c03fe9f7bf379be2d1eacde6c0f9dcde6143c7133e55abd4', 'date' => '1 Feb 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.2.tar.xz', 'name' => 'PHP 7.2.2 (tar.xz)', @@ -10079,29 +10079,29 @@ $OLDRELEASES = array ( 'date' => '1 Feb 2018', 'museum' => false, ), - '7.0.27' => + '7.0.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_27.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.27.tar.bz2', 'name' => 'PHP 7.0.27 (tar.bz2)', 'sha256' => '99fa2563bb4c4c1cde9febe87cfe97324227d7b4b8828f2e936e507127394131', 'date' => '04 Jan 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.27.tar.gz', 'name' => 'PHP 7.0.27 (tar.gz)', 'sha256' => '809c0181e970dd17c6a6cabbf64518e719c7253e7490f8e1279bc1e1fbdf7996', 'date' => '04 Jan 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.27.tar.xz', 'name' => 'PHP 7.0.27 (tar.xz)', @@ -10111,34 +10111,34 @@ $OLDRELEASES = array ( ), 'date' => '04 Jan 2018', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.2.1' => + '7.2.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_1.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.1.tar.bz2', 'name' => 'PHP 7.2.1 (tar.bz2)', 'sha256' => 'fe06793f268a4dd29cbc5f4ef415f01e786877152b02221ad7d18dbb6864eb79', 'date' => '4 Jan 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.1.tar.gz', 'name' => 'PHP 7.2.1 (tar.gz)', 'sha256' => '8ecb2950571054a00687ccbd023874a4a075ccd1e2ec3dc00fc25ef589a77dba', 'date' => '4 Jan 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.1.tar.xz', 'name' => 'PHP 7.2.1 (tar.xz)', @@ -10149,29 +10149,29 @@ $OLDRELEASES = array ( 'date' => '4 Jan 2018', 'museum' => false, ), - '7.1.13' => + '7.1.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_13.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.13.tar.bz2', 'name' => 'PHP 7.1.13 (tar.bz2)', 'sha256' => '35fda51d2d44600940185fd5818d336a79e77ab3c98e2bd075091f2f91cf98a1', 'date' => '4 Jan 2018', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.13.tar.gz', 'name' => 'PHP 7.1.13 (tar.gz)', 'sha256' => '12fcbf59c9eb9af215ef38815d5da39b9d74549092c34b0dfc31442699740ce9', 'date' => '4 Jan 2018', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.13.tar.xz', 'name' => 'PHP 7.1.13 (tar.xz)', @@ -10182,29 +10182,29 @@ $OLDRELEASES = array ( 'date' => '4 Jan 2018', 'museum' => false, ), - '7.2.0' => + '7.2.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_2_0.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.2.0.tar.bz2', 'name' => 'PHP 7.2.0 (tar.bz2)', 'sha256' => '2bfefae4226b9b97879c9d33078e50bdb5c17f45ff6e255951062a529720c64a', 'date' => '30 Nov 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.2.0.tar.gz', 'name' => 'PHP 7.2.0 (tar.gz)', 'sha256' => '801876abd52e0dc58a44701344252035fd50702d8f510cda7fdb317ab79897bc', 'date' => '30 Nov 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.2.0.tar.xz', 'name' => 'PHP 7.2.0 (tar.xz)', @@ -10215,29 +10215,29 @@ $OLDRELEASES = array ( 'date' => '30 Nov 2017', 'museum' => false, ), - '7.1.12' => + '7.1.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_12.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.12.tar.bz2', 'name' => 'PHP 7.1.12 (tar.bz2)', 'sha256' => 'f9ce3361ab99dce8f3f2fba663695ac9b18a3579bc8014dc280368d1577d87c4', 'date' => '23 Nov 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.12.tar.gz', 'name' => 'PHP 7.1.12 (tar.gz)', 'sha256' => '188c67d8e424ce7a6fe93475aa64f53182c1d80ca3ac99439651ca91569d969c', 'date' => '23 Nov 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.12.tar.xz', 'name' => 'PHP 7.1.12 (tar.xz)', @@ -10248,29 +10248,29 @@ $OLDRELEASES = array ( 'date' => '23 Nov 2017', 'museum' => false, ), - '7.0.26' => + '7.0.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_26.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.26.tar.bz2', 'name' => 'PHP 7.0.26 (tar.bz2)', 'sha256' => '2590d722f7b23b6a903c5a00cf04e7ee728df79d10ae473e3a81ba41588509a7', 'date' => '23 Nov 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.26.tar.gz', 'name' => 'PHP 7.0.26 (tar.gz)', 'sha256' => '04c345f7c9e3f1cd02f275bfec893a4e0290e724073f2f3d7282a219128b537c', 'date' => '23 Nov 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.26.tar.xz', 'name' => 'PHP 7.0.26 (tar.xz)', @@ -10281,29 +10281,29 @@ $OLDRELEASES = array ( 'date' => '23 Nov 2017', 'museum' => false, ), - '7.1.11' => + '7.1.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_11.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.11.tar.bz2', 'name' => 'PHP 7.1.11 (tar.bz2)', 'sha256' => '7646d7de701fc969e3305eeeb2eddda3d46af6a88ee20ef4a47270c447228573', 'date' => '26 Oct 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.11.tar.gz', 'name' => 'PHP 7.1.11 (tar.gz)', 'sha256' => 'de41b2c166bc5ec8ea96a337d4dd675c794f7b115a8a47bb04595c03dbbdf425', 'date' => '26 Oct 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.11.tar.xz', 'name' => 'PHP 7.1.11 (tar.xz)', @@ -10314,29 +10314,29 @@ $OLDRELEASES = array ( 'date' => '26 Oct 2017', 'museum' => false, ), - '7.0.25' => + '7.0.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_25.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.25.tar.bz2', 'name' => 'PHP 7.0.25 (tar.bz2)', 'sha256' => '95a24d96d126a196e1550e394182b43a6460cdd2026f1a77bef01e422415cc25', 'date' => '26 Oct 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.25.tar.gz', 'name' => 'PHP 7.0.25 (tar.gz)', 'sha256' => '081b46bf588d38c636fd6cd1dab8855b6b3e171550d1e65f770f53aede594ee7', 'date' => '26 Oct 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.25.tar.xz', 'name' => 'PHP 7.0.25 (tar.xz)', @@ -10346,34 +10346,34 @@ $OLDRELEASES = array ( ), 'date' => '26 Oct 2017', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.10' => + '7.1.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_10.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.10.tar.bz2', 'name' => 'PHP 7.1.10 (tar.bz2)', 'sha256' => '0ee51b9b1ae7eca3e9558f772ce20cbacd1f76420009b3af630c87027f9a41af', 'date' => '28 Sep 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.10.tar.gz', 'name' => 'PHP 7.1.10 (tar.gz)', 'sha256' => 'edc6a7c3fe89419525ce51969c5f48610e53613235bbef255c3a4db33b458083', 'date' => '28 Sep 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.10.tar.xz', 'name' => 'PHP 7.1.10 (tar.xz)', @@ -10384,29 +10384,29 @@ $OLDRELEASES = array ( 'date' => '28 Sep 2017', 'museum' => false, ), - '7.0.24' => + '7.0.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_24.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.24.tar.bz2', 'name' => 'PHP 7.0.24 (tar.bz2)', 'sha256' => '9bf91982694f178821c0aaf03563a20494873ece6933e2eeecfd76f325bdcf19', 'date' => '28 Sep 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.24.tar.gz', 'name' => 'PHP 7.0.24 (tar.gz)', 'sha256' => '151015b578c14a4ab47d1e5894b36c85cf5655237599b805a08d106fe18a8c8e', 'date' => '28 Sep 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.24.tar.xz', 'name' => 'PHP 7.0.24 (tar.xz)', @@ -10417,29 +10417,29 @@ $OLDRELEASES = array ( 'date' => '28 Sep 2017', 'museum' => false, ), - '7.1.9' => + '7.1.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.9.tar.bz2', 'name' => 'PHP 7.1.9 (tar.bz2)', 'sha256' => '314dcc10dfdd7c4443edb4fe1e133a44f2b2a8351be8c9eb6ab9222d45fd9bae', 'date' => '31 Aug 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.9.tar.gz', 'name' => 'PHP 7.1.9 (tar.gz)', 'sha256' => '499c31ad19b2ff553ae686ebf53749aa2351af7d955ee9f1986f144089561a4b', 'date' => '31 Aug 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.9.tar.xz', 'name' => 'PHP 7.1.9 (tar.xz)', @@ -10450,29 +10450,29 @@ $OLDRELEASES = array ( 'date' => '31 Aug 2017', 'museum' => false, ), - '7.0.23' => + '7.0.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_23.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.23.tar.bz2', 'name' => 'PHP 7.0.23 (tar.bz2)', 'sha256' => '6fe94cefc7d2c60ee2c1648b977beed756ad9cd0a7e4ea8bb8cf521d9355a09c', 'date' => '31 Aug 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.23.tar.gz', 'name' => 'PHP 7.0.23 (tar.gz)', 'sha256' => 'd511089ecaf386f3ab752efba76558c03558afa6b5b3fe71d84881c76644b466', 'date' => '31 Aug 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.23.tar.xz', 'name' => 'PHP 7.0.23 (tar.xz)', @@ -10483,29 +10483,29 @@ $OLDRELEASES = array ( 'date' => '31 Aug 2017', 'museum' => false, ), - '7.1.8' => + '7.1.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.8.tar.bz2', 'name' => 'PHP 7.1.8 (tar.bz2)', 'sha256' => '7064a00a9450565190890c7a4be04e646e0be73b2e0f8c46ae34419f343ca2f8', 'date' => '03 Aug 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.8.tar.gz', 'name' => 'PHP 7.1.8 (tar.gz)', 'sha256' => '63517b3264f7cb17fb58e1ce60a6cd8903160239b7cf568d52024e9cf4d6cb04', 'date' => '03 Aug 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.8.tar.xz', 'name' => 'PHP 7.1.8 (tar.xz)', @@ -10516,29 +10516,29 @@ $OLDRELEASES = array ( 'date' => '03 Aug 2017', 'museum' => false, ), - '7.0.22' => + '7.0.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_22.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.22.tar.bz2', 'name' => 'PHP 7.0.22 (tar.bz2)', 'sha256' => '88e0b27f69abdd12ecde81f000c5a9ea479af7218456ea7f6557edb43c6dfdde', 'date' => '03 Aug 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.22.tar.gz', 'name' => 'PHP 7.0.22 (tar.gz)', 'sha256' => '04292eaea0eeb75e9b6a36a3db8e90a3d43f939646fd9d7d1e083e5b70884383', 'date' => '03 Aug 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.22.tar.xz', 'name' => 'PHP 7.0.22 (tar.xz)', @@ -10549,29 +10549,29 @@ $OLDRELEASES = array ( 'date' => '03 Aug 2017', 'museum' => false, ), - '7.1.7' => + '7.1.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_7.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.7.tar.bz2', 'name' => 'PHP 7.1.7 (tar.bz2)', 'sha256' => '079b6792987f38dc485f92258c04f9e02dedd593f9d260ebe725343f812d1ff8', 'date' => '06 Jul 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.7.tar.gz', 'name' => 'PHP 7.1.7 (tar.gz)', 'sha256' => 'e0dbab8da601ee5119368d6f93dc1a86ad53b799d2f8c1209d6b827a2b259f92', 'date' => '06 Jul 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.7.tar.xz', 'name' => 'PHP 7.1.7 (tar.xz)', @@ -10581,34 +10581,34 @@ $OLDRELEASES = array ( ), 'date' => '06 Jul 2017', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.21' => + '7.0.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_21.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.21.tar.bz2', 'name' => 'PHP 7.0.21 (tar.bz2)', 'sha256' => '2ba133c392de6f86aacced8c54e0adefd1c81d3840ac323b9926b8ed3dc6231f', 'date' => '06 Jul 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.21.tar.gz', 'name' => 'PHP 7.0.21 (tar.gz)', 'sha256' => 'f2f05f629dd02c75834ddf033916bd5ff92a720602839d81fd8b6d90e37b6225', 'date' => '06 Jul 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.21.tar.xz', 'name' => 'PHP 7.0.21 (tar.xz)', @@ -10618,34 +10618,34 @@ $OLDRELEASES = array ( ), 'date' => '06 Jul 2017', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.6' => + '7.1.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.6.tar.bz2', 'name' => 'PHP 7.1.6 (tar.bz2)', 'sha256' => '6e3576ca77672a18461a4b089c5790647f1b2c19f82e4f5e94c962609aabffcf', 'date' => '08 Jun 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.6.tar.gz', 'name' => 'PHP 7.1.6 (tar.gz)', 'sha256' => '7ff8c01af791c7e499ee77e1b82e4b1d56e379efe1f706b1203d48751481fd9f', 'date' => '08 Jun 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.6.tar.xz', 'name' => 'PHP 7.1.6 (tar.xz)', @@ -10656,29 +10656,29 @@ $OLDRELEASES = array ( 'date' => '08 Jun 2017', 'museum' => false, ), - '7.0.20' => + '7.0.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_20.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.20.tar.bz2', 'name' => 'PHP 7.0.20 (tar.bz2)', 'sha256' => 'cdfddfe01cc615218e333e34a1c761c9ef8fdf5199b27617264a02705eda7fc3', 'date' => '08 Jun 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.20.tar.gz', 'name' => 'PHP 7.0.20 (tar.gz)', 'sha256' => 'b44947f0c1926928d5c2f176506b878c32b5cd09ce3b5b52bbbecf4328ab812d', 'date' => '08 Jun 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.20.tar.xz', 'name' => 'PHP 7.0.20 (tar.xz)', @@ -10689,29 +10689,29 @@ $OLDRELEASES = array ( 'date' => '08 Jun 2017', 'museum' => false, ), - '7.1.5' => + '7.1.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_5.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.5.tar.bz2', 'name' => 'PHP 7.1.5 (tar.bz2)', 'sha256' => '28eaa4784f1bd8b7dc71206dc8c4375510199432dc17af6906b14d16b3058697', 'date' => '11 May 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.5.tar.gz', 'name' => 'PHP 7.1.5 (tar.gz)', 'sha256' => 'f7ff8039f5c3a7da4d62a3cce6378280224acfa27ab5a5bee25b7439bce01c17', 'date' => '11 May 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.5.tar.xz', 'name' => 'PHP 7.1.5 (tar.xz)', @@ -10722,29 +10722,29 @@ $OLDRELEASES = array ( 'date' => '11 May 2017', 'museum' => false, ), - '7.0.19' => + '7.0.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_19.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.19.tar.bz2', 'name' => 'PHP 7.0.19 (tar.bz2)', 'sha256' => '0f3ac0afc02aec22f6b1659045da9287453e9309439d0499622bc8e94a7f7d59', 'date' => '11 May 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.19.tar.gz', 'name' => 'PHP 7.0.19 (tar.gz)', 'sha256' => '4b4120acdbb8cbf5f7a18625c2eb5cdd2fdb4fc69a4831bc7ffdfd1ee78b1ce0', 'date' => '11 May 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.19.tar.xz', 'name' => 'PHP 7.0.19 (tar.xz)', @@ -10755,29 +10755,29 @@ $OLDRELEASES = array ( 'date' => '11 May 2017', 'museum' => false, ), - '7.1.4' => + '7.1.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_4.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.4.tar.bz2', 'name' => 'PHP 7.1.4 (tar.bz2)', 'sha256' => '39bf697836e2760b3a44ea322e9e5f1f5b1f07abeb0111f6495eff7538e25805', 'date' => '13 Apr 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.4.tar.gz', 'name' => 'PHP 7.1.4 (tar.gz)', 'sha256' => 'ed0006c86de503684dde04c6dd811ea2354a3b6d10ebd9f0cb103dcd28f0e70f', 'date' => '13 Apr 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.4.tar.xz', 'name' => 'PHP 7.1.4 (tar.xz)', @@ -10788,29 +10788,29 @@ $OLDRELEASES = array ( 'date' => '13 Apr 2017', 'museum' => false, ), - '7.0.18' => + '7.0.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_18.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.18.tar.bz2', 'name' => 'PHP 7.0.18 (tar.bz2)', 'sha256' => 'b20cc63d507032b39d8bb14cb64784e460b0e47997e90a8704b703bcbb233fd1', 'date' => '13 Apr 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.18.tar.gz', 'name' => 'PHP 7.0.18 (tar.gz)', 'sha256' => 'e0fb336749d72e6c9cfcebb9b48497f004fa99f93b68c21cb3eb657053665e1d', 'date' => '13 Apr 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.18.tar.xz', 'name' => 'PHP 7.0.18 (tar.xz)', @@ -10821,29 +10821,29 @@ $OLDRELEASES = array ( 'date' => '13 Apr 2017', 'museum' => false, ), - '7.1.3' => + '7.1.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_3.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.3.tar.bz2', 'name' => 'PHP 7.1.3 (tar.bz2)', 'sha256' => 'c145924d91b7a253eccc31f8d22f15b61589cd24d78105e56240c1bb6413b94f', 'date' => '16 Mar 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.3.tar.gz', 'name' => 'PHP 7.1.3 (tar.gz)', 'sha256' => '4bfadd0012b966eced448497272150ffeede13136a961aacb9e71553b8e929ec', 'date' => '16 Mar 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.3.tar.xz', 'name' => 'PHP 7.1.3 (tar.xz)', @@ -10854,29 +10854,29 @@ $OLDRELEASES = array ( 'date' => '16 Mar 2017', 'museum' => false, ), - '7.0.17' => + '7.0.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_17.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.17.tar.bz2', 'name' => 'PHP 7.0.17 (tar.bz2)', 'sha256' => 'aee503926b96d807692fac3e0fd64e3259788f5139819a983152679cb6e91d4b', 'date' => '30 Mar 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.17.tar.gz', 'name' => 'PHP 7.0.17 (tar.gz)', 'sha256' => '1f42ffe9895dad746baf4a0e8d81f2272f55fdef66cf298ac911d8791ceb1e80', 'date' => '30 Mar 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.17.tar.xz', 'name' => 'PHP 7.0.17 (tar.xz)', @@ -10887,29 +10887,29 @@ $OLDRELEASES = array ( 'date' => '30 Mar 2017', 'museum' => false, ), - '7.1.2' => + '7.1.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_2.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.2.tar.bz2', 'name' => 'PHP 7.1.2 (tar.bz2)', 'sha256' => 'e0f2214e2366434ee231156ba70cfefd0c59790f050d8727a3f1dc2affa67004', 'date' => '16 Feb 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.2.tar.gz', 'name' => 'PHP 7.1.2 (tar.gz)', 'sha256' => 'e6773217c9c719ca22abb104ae3d437d53daceaf31faf2e5eeb1f9f5028005d8', 'date' => '16 Feb 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.2.tar.xz', 'name' => 'PHP 7.1.2 (tar.xz)', @@ -10920,29 +10920,29 @@ $OLDRELEASES = array ( 'date' => '16 Feb 2017', 'museum' => false, ), - '7.0.16' => + '7.0.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_16.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.16.tar.bz2', 'name' => 'PHP 7.0.16 (tar.bz2)', 'sha256' => '83c5f57575dc0feca563af529d6f1d60183bf9c2c13e98a6da131fbd0a3597ab', 'date' => '16 Feb 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.16.tar.gz', 'name' => 'PHP 7.0.16 (tar.gz)', 'sha256' => 'bc6709dc7612957d0533c09c9c8a9c2e7c4fd9d64e697707bb1b39670eab61d4', 'date' => '16 Feb 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.16.tar.xz', 'name' => 'PHP 7.0.16 (tar.xz)', @@ -10953,29 +10953,29 @@ $OLDRELEASES = array ( 'date' => '16 Feb 2017', 'museum' => false, ), - '7.1.1' => + '7.1.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_1.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.1.tar.bz2', 'name' => 'PHP 7.1.1 (tar.bz2)', 'sha256' => 'd791d39d7b54ec42441a05a5f06d68a495647d843210e3ae4f2c6adb99c675bc', 'date' => '19 Jan 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.1.tar.gz', 'name' => 'PHP 7.1.1 (tar.gz)', 'sha256' => 'c136279d539c3c2c25176bf149c14913670e79bb27ee6b73e1cd69003985a70d', 'date' => '19 Jan 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.1.tar.xz', 'name' => 'PHP 7.1.1 (tar.xz)', @@ -10986,29 +10986,29 @@ $OLDRELEASES = array ( 'date' => '19 Jan 2017', 'museum' => false, ), - '7.0.15' => + '7.0.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_15.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.15.tar.bz2', 'name' => 'PHP 7.0.15 (tar.bz2)', 'sha256' => 'a8c8f947335683fa6dd1b7443ed70f2a42bc33e8b6c215f139138cee89e47dd9', 'date' => '19 Jan 2017', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.15.tar.gz', 'name' => 'PHP 7.0.15 (tar.gz)', 'sha256' => 'c24324c6d4bf27e8bc1d12da0aae4f15a43c8374f681e23e9b1e67f5b719c3a6', 'date' => '19 Jan 2017', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.15.tar.xz', 'name' => 'PHP 7.0.15 (tar.xz)', @@ -11018,34 +11018,34 @@ $OLDRELEASES = array ( ), 'date' => '19 Jan 2017', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.14' => + '7.0.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_14.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.14.tar.bz2', 'name' => 'PHP 7.0.14 (tar.bz2)', 'sha256' => 'fbc4369a0d42b55fd1ce75eb4f3d17b012da754a67567d8e3288fbfbb7490534', 'date' => '08 Dec 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.14.tar.gz', 'name' => 'PHP 7.0.14 (tar.gz)', 'sha256' => '320cfd2184e7252d3d77eae5d5474554fa04ab9fbee7c6094c07e8bd3b5b632b', 'date' => '08 Dec 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.14.tar.xz', 'name' => 'PHP 7.0.14 (tar.xz)', @@ -11055,34 +11055,34 @@ $OLDRELEASES = array ( ), 'date' => '08 Dec 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.1.0' => + '7.1.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_1_0.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.1.0.tar.bz2', 'name' => 'PHP 7.1.0 (tar.bz2)', 'sha256' => '68bcfd7deed5b3474d81dec9f74d122058327e2bed0ac25bbc9ec70995228e61', 'date' => '01 Dec 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.1.0.tar.gz', 'name' => 'PHP 7.1.0 (tar.gz)', 'sha256' => '9e84c5b13005c56374730edf534fe216f6a2e63792a9703d4b894e770bbccbae', 'date' => '01 Dec 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.1.0.tar.xz', 'name' => 'PHP 7.1.0 (tar.xz)', @@ -11093,29 +11093,29 @@ $OLDRELEASES = array ( 'date' => '01 Dec 2016', 'museum' => false, ), - '7.0.13' => + '7.0.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_13.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.13.tar.bz2', 'name' => 'PHP 7.0.13 (tar.bz2)', 'sha256' => 'd090bb523812117ec0c08d8f0b5c5f0616aa7a29a2eeee0374efe53a7cfe88c1', 'date' => '10 Nov 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.13.tar.gz', 'name' => 'PHP 7.0.13 (tar.gz)', 'sha256' => 'c8d8cf1b29e7f7e89be9ee64f453cb7ef6d20e1d13a83cba037bd654ef2da42c', 'date' => '10 Nov 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.13.tar.xz', 'name' => 'PHP 7.0.13 (tar.xz)', @@ -11125,34 +11125,34 @@ $OLDRELEASES = array ( ), 'date' => '10 Nov 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.12' => + '7.0.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_12.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.12.tar.bz2', 'name' => 'PHP 7.0.12 (tar.bz2)', 'sha256' => '38c47294fe8fb239b0230dc63a93c3e4044f472ab93b5dff8b65feb4103a6a27', 'date' => '13 Oct 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.12.tar.gz', 'name' => 'PHP 7.0.12 (tar.gz)', 'sha256' => 'c4693cc363b4bbc7224294cc94faf3598e616cbe8540dd6975f68c7d3c52682f', 'date' => '13 Oct 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.12.tar.xz', 'name' => 'PHP 7.0.12 (tar.xz)', @@ -11162,34 +11162,34 @@ $OLDRELEASES = array ( ), 'date' => '13 Oct 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.11' => + '7.0.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_11.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.11.tar.bz2', 'name' => 'PHP 7.0.11 (tar.bz2)', 'sha256' => 'f99b729dc1149858844b18af1e8c0de6dd1cdfdd52e22fbb4de2aa78bf9bf7f1', 'date' => '15 Sep 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.11.tar.gz', 'name' => 'PHP 7.0.11 (tar.gz)', 'sha256' => '02d27b5d140dbad8d400a95af808e1e9ce87aa8d2a2100870734ba26e6700d79', 'date' => '15 Sep 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.11.tar.xz', 'name' => 'PHP 7.0.11 (tar.xz)', @@ -11199,34 +11199,34 @@ $OLDRELEASES = array ( ), 'date' => '15 Sep 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.10' => + '7.0.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_10.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.10.tar.bz2', 'name' => 'PHP 7.0.10 (tar.bz2)', 'sha256' => '8055bbe5a736986931c0c6a08b765d6d778271ec7d2d56c50a1ad259ec09f6de', 'date' => '18 Aug 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.10.tar.gz', 'name' => 'PHP 7.0.10 (tar.gz)', 'sha256' => '46216e05db09c0fffbf832e3b64f3722ccbdd6d4ae16d9791e41adf0a4b00641', 'date' => '18 Aug 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.10.tar.xz', 'name' => 'PHP 7.0.10 (tar.xz)', @@ -11236,34 +11236,34 @@ $OLDRELEASES = array ( ), 'date' => '18 Aug 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.9' => + '7.0.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.9.tar.bz2', 'name' => 'PHP 7.0.9 (tar.bz2)', 'sha256' => '2ee6968b5875f2f38700c58a189aad859a6a0b85fc337aa102ec2dc3652c3b7b', 'date' => '21 Jul 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.9.tar.gz', 'name' => 'PHP 7.0.9 (tar.gz)', 'sha256' => '93895a6a610c94751c890e5ee91a7f4bc0eae476b95fe30425d13f7ae88753d5', 'date' => '21 Jul 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.9.tar.xz', 'name' => 'PHP 7.0.9 (tar.xz)', @@ -11273,34 +11273,34 @@ $OLDRELEASES = array ( ), 'date' => '21 Jul 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.8' => + '7.0.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.8.tar.bz2', 'name' => 'PHP 7.0.8 (tar.bz2)', 'sha256' => '66dc7ba388490e07b1313fe3a06b1fa822e1310585fe29f4909995f131e27c8d', 'date' => '23 Jun 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.8.tar.gz', 'name' => 'PHP 7.0.8 (tar.gz)', 'sha256' => '1f024fa6d87594b99fa312e3185c357dcffa42e07d21c726f41d1fa6f773720b', 'date' => '23 Jun 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.8.tar.xz', 'name' => 'PHP 7.0.8 (tar.xz)', @@ -11310,34 +11310,34 @@ $OLDRELEASES = array ( ), 'date' => '23 Jun 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.7' => + '7.0.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_7.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.7.tar.bz2', 'name' => 'PHP 7.0.7 (tar.bz2)', 'sha256' => '474f2925c4782b94016e3afbb17b14ff9cc6f4fdb6f6e231b36a378bb18a3d1a', 'date' => '26 May 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.7.tar.gz', 'name' => 'PHP 7.0.7 (tar.gz)', 'sha256' => '66282ff4a9f88fe9607d9574e15bf335885b964245591a1740adb3f79c514a67', 'date' => '26 May 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.7.tar.xz', 'name' => 'PHP 7.0.7 (tar.xz)', @@ -11347,34 +11347,34 @@ $OLDRELEASES = array ( ), 'date' => '26 May 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.6' => + '7.0.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.6.tar.bz2', 'name' => 'PHP 7.0.6 (tar.bz2)', 'sha256' => '14ddf192a9965c858c1e742a61456be2f34a4db87556172c0d76f08de96329b7', 'date' => '28 Apr 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.6.tar.gz', 'name' => 'PHP 7.0.6 (tar.gz)', 'sha256' => 'f6b47cb3e02530d96787ae5c7888aefbd1db6ae4164d68b88808ee6f4da94277', 'date' => '28 Apr 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.6.tar.xz', 'name' => 'PHP 7.0.6 (tar.xz)', @@ -11384,34 +11384,34 @@ $OLDRELEASES = array ( ), 'date' => '28 Apr 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.5' => + '7.0.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_5.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.5.tar.bz2', 'name' => 'PHP 7.0.5 (tar.bz2)', 'sha256' => '2c09af7fe64537ea795f098b9b542ead407ef83f7cdc65b3787115ccbbb51de9', 'date' => '31 Mar 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.5.tar.gz', 'name' => 'PHP 7.0.5 (tar.gz)', 'sha256' => 'f9d93419031b4df663fc48f03b8a833545de8776225e46637563e2be6029908d', 'date' => '31 Mar 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.5.tar.xz', 'name' => 'PHP 7.0.5 (tar.xz)', @@ -11421,34 +11421,34 @@ $OLDRELEASES = array ( ), 'date' => '31 Mar 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.4' => + '7.0.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_4.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.4.tar.bz2', 'name' => 'PHP 7.0.4 (tar.bz2)', 'sha256' => 'a246c503709c189ba8e1e22ed2cb22abc27da43a997ff1b3318e181baf529dcc', 'date' => '03 Mar 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.4.tar.gz', 'name' => 'PHP 7.0.4 (tar.gz)', 'sha256' => 'f6cdac2fd37da0ac0bbcee0187d74b3719c2f83973dfe883d5cde81c356fe0a8', 'date' => '03 Mar 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.4.tar.xz', 'name' => 'PHP 7.0.4 (tar.xz)', @@ -11458,34 +11458,34 @@ $OLDRELEASES = array ( ), 'date' => '03 Mar 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.3' => + '7.0.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_3.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.3.tar.bz2', 'name' => 'PHP 7.0.3 (tar.bz2)', 'sha256' => '826823d754f09c779222a99becf9c53a4dc719dba2d777aca7807c6ca68e6fc6', 'date' => '04 Feb 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.3.tar.gz', 'name' => 'PHP 7.0.3 (tar.gz)', 'sha256' => '5521df8db153aba35c90cf1a1829106b6bbdac32425216d440f9cc29f00a7c08', 'date' => '04 Feb 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.3.tar.xz', 'name' => 'PHP 7.0.3 (tar.xz)', @@ -11495,34 +11495,34 @@ $OLDRELEASES = array ( ), 'date' => '04 Feb 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.2' => + '7.0.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_2.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.2.tar.bz2', 'name' => 'PHP 7.0.2 (tar.bz2)', 'sha256' => '9b1b75fbd9c92c6b0003b234e550965038826d11ea1f430bf279964da9da2236', 'date' => '07 Jan 2016', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.2.tar.gz', 'name' => 'PHP 7.0.2 (tar.gz)', 'sha256' => '040198aef3dc5f17c253c1282160aabc6a05ca0b18b3d6fc9213970363083412', 'date' => '07 Jan 2016', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.2.tar.xz', 'name' => 'PHP 7.0.2 (tar.xz)', @@ -11532,34 +11532,34 @@ $OLDRELEASES = array ( ), 'date' => '07 Jan 2016', 'museum' => false, - 'tags' => + 'tags' => array ( 0 => 'security', ), ), - '7.0.1' => + '7.0.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_1.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.1.tar.bz2', 'name' => 'PHP 7.0.1 (tar.bz2)', 'sha256' => '04ce3bd1da001397b342c2219a5093be9ecbbc97f022e1e6a0ec2fedc3d93e42', 'date' => '17 Dec 2015', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.1.tar.gz', 'name' => 'PHP 7.0.1 (tar.gz)', 'sha256' => 'd12aaba2bead056322aa53bd5fbe762b27a42d37f451cd42ff2e7a549ca21dbf', 'date' => '17 Dec 2015', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.1.tar.xz', 'name' => 'PHP 7.0.1 (tar.xz)', @@ -11570,29 +11570,29 @@ $OLDRELEASES = array ( 'date' => '17 Dec 2015', 'museum' => false, ), - '7.0.0' => + '7.0.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/7_0_0.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-7.0.0.tar.bz2', 'name' => 'PHP 7.0.0 (tar.bz2)', 'sha256' => 'a92a54306832167a39f7c0ec00524fc6f3f7d985c806caa7632561d0ddedfcea', 'date' => '03 Dec 2015', ), - 1 => + 1 => array ( 'filename' => 'php-7.0.0.tar.gz', 'name' => 'PHP 7.0.0 (tar.gz)', 'sha256' => 'd6ae7b4a2e5c43a9945a97e83b6b3adfb7d0df0b91ef78b647a6dffefaa9c71b', 'date' => '03 Dec 2015', ), - 2 => + 2 => array ( 'filename' => 'php-7.0.0.tar.xz', 'name' => 'PHP 7.0.0 (tar.xz)', @@ -11604,31 +11604,31 @@ $OLDRELEASES = array ( 'museum' => false, ), ), - 5 => + 5 => array ( - '5.6.40' => + '5.6.40' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_40.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.40.tar.bz2', 'name' => 'PHP 5.6.40 (tar.bz2)', 'sha256' => 'ffd025d34623553ab2f7fd8fb21d0c9e6f9fa30dc565ca03a1d7b763023fba00', 'date' => '10 Jan 2019', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.40.tar.gz', 'name' => 'PHP 5.6.40 (tar.gz)', 'sha256' => '56fb9878d12fdd921f6a0897e919f4e980d930160e154cbde2cc6d9206a27cac', 'date' => '10 Jan 2019', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.40.tar.xz', 'name' => 'PHP 5.6.40 (tar.xz)', @@ -11639,29 +11639,29 @@ $OLDRELEASES = array ( 'date' => '10 Jan 2019', 'museum' => false, ), - '5.6.39' => + '5.6.39' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_39.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.39.tar.bz2', 'name' => 'PHP 5.6.39 (tar.bz2)', 'sha256' => 'b3db2345f50c010b01fe041b4e0f66c5aa28eb325135136f153e18da01583ad5', 'date' => '06 Dec 2018', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.39.tar.gz', 'name' => 'PHP 5.6.39 (tar.gz)', 'sha256' => '127b122b7d6c7f3c211c0ffa554979370c3131196137404a51a391d8e2e9c7bb', 'date' => '06 Dec 2018', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.39.tar.xz', 'name' => 'PHP 5.6.39 (tar.xz)', @@ -11672,29 +11672,29 @@ $OLDRELEASES = array ( 'date' => '06 Dec 2018', 'museum' => false, ), - '5.6.38' => + '5.6.38' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_38.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.38.tar.bz2', 'name' => 'PHP 5.6.38 (tar.bz2)', 'sha256' => 'd65b231bbdd63be4439ef5ced965cfd63e62983429dbd4dfcfb49981593ebc03', 'date' => '13 Sep 2018', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.38.tar.gz', 'name' => 'PHP 5.6.38 (tar.gz)', 'sha256' => '3b74d46cd79a45cce90c8059e09d8bd0beeb5de562cbb0cb42f96ff8fa665fd4', 'date' => '13 Sep 2018', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.38.tar.xz', 'name' => 'PHP 5.6.38 (tar.xz)', @@ -11705,29 +11705,29 @@ $OLDRELEASES = array ( 'date' => '13 Sep 2018', 'museum' => false, ), - '5.6.37' => + '5.6.37' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_37.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.37.tar.bz2', 'name' => 'PHP 5.6.37 (tar.bz2)', 'sha256' => '886ad63d05d94ea3e54322691aadea0cf1d4bcdb4450b02fe300e5b570788b23', 'date' => '19 Jul 2018', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.37.tar.gz', 'name' => 'PHP 5.6.37 (tar.gz)', 'sha256' => 'b7ec077f35ef3a8cdd33c29124140b1761111a1429878b4c463bb20d2a31b184', 'date' => '19 Jul 2018', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.37.tar.xz', 'name' => 'PHP 5.6.37 (tar.xz)', @@ -11738,29 +11738,29 @@ $OLDRELEASES = array ( 'date' => '19 Jul 2018', 'museum' => false, ), - '5.6.36' => + '5.6.36' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_36.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.36.tar.bz2', 'name' => 'PHP 5.6.36 (tar.bz2)', 'sha256' => '626a0e3f5d8a0e686a2b930f0dd3a0601fe3dcb5e43dd0e8c3fab631e64e172a', 'date' => '26 Apr 2018', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.36.tar.gz', 'name' => 'PHP 5.6.36 (tar.gz)', 'sha256' => '06086a8b6a9964ef8009c4d9176b4eeb0c564ea39c1213f015e24f3466d2d69f', 'date' => '26 Apr 2018', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.36.tar.xz', 'name' => 'PHP 5.6.36 (tar.xz)', @@ -11771,29 +11771,29 @@ $OLDRELEASES = array ( 'date' => '26 Apr 2018', 'museum' => false, ), - '5.6.35' => + '5.6.35' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_35.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.35.tar.bz2', 'name' => 'PHP 5.6.35 (tar.bz2)', 'sha256' => 'ee78a7e9ca21d8ea394d037c55effff477a49dbae31c7753c547036f5bd73b92', 'date' => '29 Mar 2018', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.35.tar.gz', 'name' => 'PHP 5.6.35 (tar.gz)', 'sha256' => 'dd0242304f510d48a5216dd2f5796bcf59e8e18366658259aaf205e1d63abf71', 'date' => '29 Mar 2018', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.35.tar.xz', 'name' => 'PHP 5.6.35 (tar.xz)', @@ -11804,29 +11804,29 @@ $OLDRELEASES = array ( 'date' => '29 Mar 2018', 'museum' => false, ), - '5.6.34' => + '5.6.34' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_34.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.34.tar.bz2', 'name' => 'PHP 5.6.34 (tar.bz2)', 'sha256' => 'e19f499d8cee4b0b0780361ecb6a00c41654772a754803ab9ea866b8d47cf2cd', 'date' => '01 Mar 2018', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.34.tar.gz', 'name' => 'PHP 5.6.34 (tar.gz)', 'sha256' => 'de28251ef6d7eb945eb7b770ff668b9f978d9adad52a8c763f6ee409a96732ea', 'date' => '01 Mar 2018', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.34.tar.xz', 'name' => 'PHP 5.6.34 (tar.xz)', @@ -11837,29 +11837,29 @@ $OLDRELEASES = array ( 'date' => '01 Mar 2018', 'museum' => false, ), - '5.6.33' => + '5.6.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_33.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.33.tar.bz2', 'name' => 'PHP 5.6.33 (tar.bz2)', 'sha256' => '07f696a9761dcd839e2045c95c3a4d2ffb52c54417477cca9d30a14975b831cc', 'date' => '04 Jan 2018', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.33.tar.gz', 'name' => 'PHP 5.6.33 (tar.gz)', 'sha256' => 'bedfac81cfaa25961812a1aec458c4109411a14991b43a416343ffb830b8da6a', 'date' => '04 Jan 2018', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.33.tar.xz', 'name' => 'PHP 5.6.33 (tar.xz)', @@ -11870,29 +11870,29 @@ $OLDRELEASES = array ( 'date' => '04 Jan 2018', 'museum' => false, ), - '5.6.32' => + '5.6.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_32.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.32.tar.bz2', 'name' => 'PHP 5.6.32 (tar.bz2)', 'sha256' => '3ee44e7a5fa42b563652b3ea0d3487bc236fcc9e5ea74b583775cab867abcb51', 'date' => '26 Oct 2017', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.32.tar.gz', 'name' => 'PHP 5.6.32 (tar.gz)', 'sha256' => '7bef1ae8cd633df5b9c5964262d276d2dc21acbfcd94022d1e2084d199315df4', 'date' => '26 Oct 2017', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.32.tar.xz', 'name' => 'PHP 5.6.32 (tar.xz)', @@ -11903,29 +11903,29 @@ $OLDRELEASES = array ( 'date' => '26 Oct 2017', 'museum' => false, ), - '5.6.31' => + '5.6.31' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_31.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.31.tar.bz2', 'name' => 'PHP 5.6.31 (tar.bz2)', 'sha256' => '8f397169cb65f0539f3bcb04060f97770d73e19074a37bd2c58b98ebf6ecb10f', 'date' => '06 Jul 2017', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.31.tar.gz', 'name' => 'PHP 5.6.31 (tar.gz)', 'sha256' => '6687ed2f09150b2ad6b3780ff89715891f83a9c331e69c90241ef699dec4c43f', 'date' => '06 Jul 2017', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.31.tar.xz', 'name' => 'PHP 5.6.31 (tar.xz)', @@ -11936,29 +11936,29 @@ $OLDRELEASES = array ( 'date' => '06 Jul 2017', 'museum' => false, ), - '5.6.30' => + '5.6.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_30.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.30.tar.bz2', 'name' => 'PHP 5.6.30 (tar.bz2)', 'sha256' => 'a105c293fa1dbff118b5b0ca74029e6c461f8c78f49b337a2a98be9e32c27906', 'date' => '19 Jan 2017', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.30.tar.gz', 'name' => 'PHP 5.6.30 (tar.gz)', 'sha256' => '8bc7d93e4c840df11e3d9855dcad15c1b7134e8acf0cf3b90b932baea2d0bde2', 'date' => '19 Jan 2017', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.30.tar.xz', 'name' => 'PHP 5.6.30 (tar.xz)', @@ -11969,29 +11969,29 @@ $OLDRELEASES = array ( 'date' => '19 Jan 2017', 'museum' => false, ), - '5.6.29' => + '5.6.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_29.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.29.tar.bz2', 'name' => 'PHP 5.6.29 (tar.bz2)', 'sha256' => '499b844c8aa7be064c111692e51a093ba94e54d2d9abb01e70ea76183a1825bb', 'date' => '08 Dec 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.29.tar.gz', 'name' => 'PHP 5.6.29 (tar.gz)', 'sha256' => '0b1b939129a7286c5a474ac2cf845b979477f26dff36639e04022def9e252574', 'date' => '08 Dec 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.29.tar.xz', 'name' => 'PHP 5.6.29 (tar.xz)', @@ -12002,29 +12002,29 @@ $OLDRELEASES = array ( 'date' => '08 Dec 2016', 'museum' => false, ), - '5.6.28' => + '5.6.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_28.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.28.tar.bz2', 'name' => 'PHP 5.6.28 (tar.bz2)', 'sha256' => 'c55ea3f4aad5a0b65631d01c4468930fd981ad208ffcd242acdf731bcb47548f', 'date' => '10 Nov 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.28.tar.gz', 'name' => 'PHP 5.6.28 (tar.gz)', 'sha256' => '27a47ac15e0868d51181d3909cfe3c63ae9b643a3ab40dc30a75b5b500bce500', 'date' => '10 Nov 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.28.tar.xz', 'name' => 'PHP 5.6.28 (tar.xz)', @@ -12035,29 +12035,29 @@ $OLDRELEASES = array ( 'date' => '10 Nov 2016', 'museum' => false, ), - '5.6.27' => + '5.6.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_27.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.27.tar.bz2', 'name' => 'PHP 5.6.27 (tar.bz2)', 'sha256' => '3b77d3a067b6e9cc7bb282d4d5b0e6eeb0623a828bb0479241e3b030446f2a3c', 'date' => '13 Oct 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.27.tar.gz', 'name' => 'PHP 5.6.27 (tar.gz)', 'sha256' => '3e6cecec615907587a2b35fa8e7f915f038034dc57530734c2b94d381e664a1a', 'date' => '13 Oct 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.27.tar.xz', 'name' => 'PHP 5.6.27 (tar.xz)', @@ -12068,29 +12068,29 @@ $OLDRELEASES = array ( 'date' => '13 Oct 2016', 'museum' => false, ), - '5.6.26' => + '5.6.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_26.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.26.tar.bz2', 'name' => 'PHP 5.6.26 (tar.bz2)', 'sha256' => 'd47aab8083a4284b905777e1b45dd7735adc53be827b29f896684750ac8b6236', 'date' => '15 Sep 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.26.tar.gz', 'name' => 'PHP 5.6.26 (tar.gz)', 'sha256' => 'f76b6cc23739d9dabf875aee57d91ae73f15e88ddf78803369b8b4728b19b924', 'date' => '15 Sep 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.26.tar.xz', 'name' => 'PHP 5.6.26 (tar.xz)', @@ -12101,29 +12101,29 @@ $OLDRELEASES = array ( 'date' => '15 Sep 2016', 'museum' => false, ), - '5.6.25' => + '5.6.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_25.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.25.tar.bz2', 'name' => 'PHP 5.6.25 (tar.bz2)', 'sha256' => '58ce6032aced7f3e42ced492bd9820e5b3f2a3cd3ef71429aa92fd7b3eb18dde', 'date' => '18 Aug 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.25.tar.gz', 'name' => 'PHP 5.6.25 (tar.gz)', 'sha256' => '733f1c811d51c2d4031a0c058dc94d09d03858d781ca2eb2cce78853bc76db58', 'date' => '18 Aug 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.25.tar.xz', 'name' => 'PHP 5.6.25 (tar.xz)', @@ -12134,29 +12134,29 @@ $OLDRELEASES = array ( 'date' => '18 Aug 2016', 'museum' => false, ), - '5.6.24' => + '5.6.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_24.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.24.tar.bz2', 'name' => 'PHP 5.6.24 (tar.bz2)', 'sha256' => 'bf23617ec3ed0a125ec8bde2b7bca9d3804b2ff4df8de192890c84dc9fac38c6', 'date' => '21 Jul 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.24.tar.gz', 'name' => 'PHP 5.6.24 (tar.gz)', 'sha256' => '5f8b2e4e00360fee6eb1b89447266ae45993265955bd1ea9866270d75cdb6ec1', 'date' => '21 Jul 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.24.tar.xz', 'name' => 'PHP 5.6.24 (tar.xz)', @@ -12167,29 +12167,29 @@ $OLDRELEASES = array ( 'date' => '21 Jul 2016', 'museum' => false, ), - '5.5.38' => + '5.5.38' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_38.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.38.tar.bz2', 'name' => 'PHP 5.5.38 (tar.bz2)', 'sha256' => '473c81ebb2e48ca468caee031762266651843d7227c18a824add9b07b9393e38', 'date' => '21 Jul 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.38.tar.gz', 'name' => 'PHP 5.5.38 (tar.gz)', 'sha256' => '4f458c9b504269615715a62f182b7c2f89bb8284f484befc221b56a1571b506e', 'date' => '21 Jul 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.38.tar.xz', 'name' => 'PHP 5.5.38 (tar.xz)', @@ -12200,29 +12200,29 @@ $OLDRELEASES = array ( 'date' => '21 Jul 2016', 'museum' => false, ), - '5.6.23' => + '5.6.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_23.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.23.tar.bz2', 'name' => 'PHP 5.6.23 (tar.bz2)', 'sha256' => 'facd280896d277e6f7084b60839e693d4db68318bfc92085d3dc0251fd3558c7', 'date' => '23 Jun 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.23.tar.gz', 'name' => 'PHP 5.6.23 (tar.gz)', 'sha256' => '5f2274a13970887e8c81500c2afe292d51c3524d1a06554b0a87c74ce0a24ffe', 'date' => '23 Jun 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.23.tar.xz', 'name' => 'PHP 5.6.23 (tar.xz)', @@ -12233,29 +12233,29 @@ $OLDRELEASES = array ( 'date' => '23 Jun 2016', 'museum' => false, ), - '5.5.37' => + '5.5.37' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_37.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.37.tar.bz2', 'name' => 'PHP 5.5.37 (tar.bz2)', 'sha256' => 'd2380ebe46caf17f2c4cd055867d00a82e6702dc5f62dc29ce864a5742905d88', 'date' => '23 Jun 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.37.tar.gz', 'name' => 'PHP 5.5.37 (tar.gz)', 'sha256' => '7cef04b549fdbe00c26dc785b6ba10439672a1596db518fc46632ecba45f44b9', 'date' => '23 Jun 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.37.tar.xz', 'name' => 'PHP 5.5.37 (tar.xz)', @@ -12266,29 +12266,29 @@ $OLDRELEASES = array ( 'date' => '23 Jun 2016', 'museum' => false, ), - '5.5.36' => + '5.5.36' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_36.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.36.tar.bz2', 'name' => 'PHP 5.5.36 (tar.bz2)', 'sha256' => '2484edfaa3de606d74f927b55c5206f51b1ae24ea8e428aa9fc15474c7bb71bb', 'date' => '26 May 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.36.tar.gz', 'name' => 'PHP 5.5.36 (tar.gz)', 'sha256' => 'ef829f9a9600a858e2363533b80c4e4773505bdc8ea3692d703fc893f267728a', 'date' => '26 May 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.36.tar.xz', 'name' => 'PHP 5.5.36 (tar.xz)', @@ -12299,29 +12299,29 @@ $OLDRELEASES = array ( 'date' => '26 May 2016', 'museum' => false, ), - '5.6.22' => + '5.6.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_22.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.22.tar.bz2', 'name' => 'PHP 5.6.22 (tar.bz2)', 'sha256' => '90da8a80cc52fa699cf2bfa4c6fa737c772df7c92b81ef483460aa3b1e9f88c6', 'date' => '26 May 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.22.tar.gz', 'name' => 'PHP 5.6.22 (tar.gz)', 'sha256' => '4ce0f58c3842332c4e3bb2ec1c936c6817294273abaa37ea0ef7ca2a68cf9b21', 'date' => '26 May 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.22.tar.xz', 'name' => 'PHP 5.6.22 (tar.xz)', @@ -12332,29 +12332,29 @@ $OLDRELEASES = array ( 'date' => '26 May 2016', 'museum' => false, ), - '5.6.21' => + '5.6.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_21.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.21.tar.bz2', 'name' => 'PHP 5.6.21 (tar.bz2)', 'sha256' => 'b4ed7ab574b689fd6d6494fde954826c06efc85c505e017b8d776c7c7f479590', 'date' => '28 Apr 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.21.tar.gz', 'name' => 'PHP 5.6.21 (tar.gz)', 'sha256' => '5997668c1f6f2d86a59cf75cc86b4a94687884614dec481fad7e13a76b70fcd5', 'date' => '28 Apr 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.21.tar.xz', 'name' => 'PHP 5.6.21 (tar.xz)', @@ -12365,29 +12365,29 @@ $OLDRELEASES = array ( 'date' => '28 Apr 2016', 'museum' => false, ), - '5.5.35' => + '5.5.35' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_35.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.35.tar.bz2', 'name' => 'PHP 5.5.35 (tar.bz2)', 'sha256' => '2d648dd648e820fd64693ce72f9bf07064d147220e594e39fb9f6310238258d7', 'date' => '28 Apr 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.35.tar.gz', 'name' => 'PHP 5.5.35 (tar.gz)', 'sha256' => '21e10a49c62ab34a7edc976af686a952e70142f19135ca8da67758e1c8c3df30', 'date' => '28 Apr 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.35.tar.xz', 'name' => 'PHP 5.5.35 (tar.xz)', @@ -12398,29 +12398,29 @@ $OLDRELEASES = array ( 'date' => '31 Mar 2016', 'museum' => false, ), - '5.6.20' => + '5.6.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_20.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.20.tar.bz2', 'name' => 'PHP 5.6.20 (tar.bz2)', 'sha256' => '5ac7bf7caec7a79b18cf458e786fd1609ad2da771224b80bc15cc6f01b22bf1f', 'date' => '31 Mar 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.20.tar.gz', 'name' => 'PHP 5.6.20 (tar.gz)', 'sha256' => '9a7ec6e1080ee93dcbe7df3e49ea1c3c3da5fc2258aff763f39ab3786baf8d56', 'date' => '31 Mar 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.20.tar.xz', 'name' => 'PHP 5.6.20 (tar.xz)', @@ -12431,29 +12431,29 @@ $OLDRELEASES = array ( 'date' => '31 Mar 2016', 'museum' => false, ), - '5.5.34' => + '5.5.34' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_34.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.34.tar.bz2', 'name' => 'PHP 5.5.34 (tar.bz2)', 'sha256' => 'af88884416a92619de842ad0fd23f7f7e8140efb0b9194f98a38a78781e5851c', 'date' => '31 Mar 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.34.tar.gz', 'name' => 'PHP 5.5.34 (tar.gz)', 'sha256' => '0e573b406441294b233e35e1f2e12d7896d68457e3e10bf6e1f4825e75271cca', 'date' => '31 Mar 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.34.tar.xz', 'name' => 'PHP 5.5.34 (tar.xz)', @@ -12464,29 +12464,29 @@ $OLDRELEASES = array ( 'date' => '31 Mar 2016', 'museum' => false, ), - '5.6.19' => + '5.6.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_19.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.19.tar.bz2', 'name' => 'PHP 5.6.19 (tar.bz2)', 'sha256' => '2a24a3f84971680ac0a4c71050067de4f76ee235aa4a041fae21bfa69975c168', 'date' => '03 Mar 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.19.tar.gz', 'name' => 'PHP 5.6.19 (tar.gz)', 'sha256' => 'fce49cddac9337f0c83afbafac5acfb82ba9f876a5a880c88240feac8c9b7a22', 'date' => '03 Mar 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.19.tar.xz', 'name' => 'PHP 5.6.19 (tar.xz)', @@ -12497,29 +12497,29 @@ $OLDRELEASES = array ( 'date' => '03 Mar 2016', 'museum' => false, ), - '5.5.33' => + '5.5.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_33.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.33.tar.bz2', 'name' => 'PHP 5.5.33 (tar.bz2)', 'sha256' => 'c490b1ed4df596b48eb68f630d89ca512945e2650840e7dace1119cc7e600aa9', 'date' => '03 Mar 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.33.tar.gz', 'name' => 'PHP 5.5.33 (tar.gz)', 'sha256' => 'd2747bcf2cc94f652ac216f522904863a22042c66fabcf82ad7449d261d7a45b', 'date' => '03 Mar 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.33.tar.xz', 'name' => 'PHP 5.5.33 (tar.xz)', @@ -12530,29 +12530,29 @@ $OLDRELEASES = array ( 'date' => '03 Mar 2016', 'museum' => false, ), - '5.6.18' => + '5.6.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_18.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.18.tar.bz2', 'name' => 'PHP 5.6.18 (tar.bz2)', 'sha256' => 'c3cd4a29a9562309d36e2b128407d6eaa5c7dde590d2b1a464457383e517f4ed', 'date' => '04 Feb 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.18.tar.gz', 'name' => 'PHP 5.6.18 (tar.gz)', 'sha256' => '76da4150dc2da86b7b63b1aad3c20d1d11964796251ac0dd4d26d0a3f5045015', 'date' => '04 Feb 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.18.tar.xz', 'name' => 'PHP 5.6.18 (tar.xz)', @@ -12563,29 +12563,29 @@ $OLDRELEASES = array ( 'date' => '04 Feb 2016', 'museum' => false, ), - '5.5.32' => + '5.5.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_32.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.32.tar.bz2', 'name' => 'PHP 5.5.32 (tar.bz2)', 'sha256' => 'b0f2c108db8e05db9f6366aaba9a754fd0ee31f3f86ee889561b608dfd6e92ee', 'date' => '04 Feb 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.32.tar.gz', 'name' => 'PHP 5.5.32 (tar.gz)', 'sha256' => '419aa62a68a640192799928a29e5cd4cd5b965458223bea2b3209a68c3e95989', 'date' => '04 Feb 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.32.tar.xz', 'name' => 'PHP 5.5.32 (tar.xz)', @@ -12596,29 +12596,29 @@ $OLDRELEASES = array ( 'date' => '04 Feb 2016', 'museum' => false, ), - '5.6.17' => + '5.6.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_17.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.17.tar.bz2', 'name' => 'PHP 5.6.17 (tar.bz2)', 'sha256' => '77b45f56a1e63e75bb22b42cfb8b438ec4083c59ce774b4d7c1685544b7add3b', 'date' => '07 Jan 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.17.tar.gz', 'name' => 'PHP 5.6.17 (tar.gz)', 'sha256' => 'f5036535651e919415f4b6589391c95e4ff48f2d391818251c45da216791aac8', 'date' => '07 Jan 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.17.tar.xz', 'name' => 'PHP 5.6.17 (tar.xz)', @@ -12629,29 +12629,29 @@ $OLDRELEASES = array ( 'date' => '07 Jan 2016', 'museum' => false, ), - '5.5.31' => + '5.5.31' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_31.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.31.tar.bz2', 'name' => 'PHP 5.5.31 (tar.bz2)', 'sha256' => 'fb4a382b9a9dceb749b7ef047d8251320bc8d371c843714e5b4f4b70d61ba277', 'date' => '07 Jan 2016', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.31.tar.gz', 'name' => 'PHP 5.5.31 (tar.gz)', 'sha256' => '59a4417029ba5497d17ee02b65f419129ecf9ca8a1d864e0bccd5a3d4407a597', 'date' => '07 Jan 2016', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.31.tar.xz', 'name' => 'PHP 5.5.31 (tar.xz)', @@ -12662,29 +12662,29 @@ $OLDRELEASES = array ( 'date' => '07 Jan 2016', 'museum' => false, ), - '5.6.16' => + '5.6.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_16.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.16.tar.bz2', 'name' => 'PHP 5.6.16 (tar.bz2)', 'sha256' => '4fe6f40964c1bfaba05fc144ba20a2cdad33e11685f4f101ea5a48b98bbcd2ae', 'date' => '26 Nov 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.16.tar.gz', 'name' => 'PHP 5.6.16 (tar.gz)', 'sha256' => 'b6618df6b11a275fa28596f1775727679f8492e100f3bd488d8a8bfbfc19349f', 'date' => '26 Nov 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.16.tar.xz', 'name' => 'PHP 5.6.16 (tar.xz)', @@ -12695,29 +12695,29 @@ $OLDRELEASES = array ( 'date' => '26 Nov 2015', 'museum' => false, ), - '5.5.30' => + '5.5.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_30.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.30.tar.bz2', 'name' => 'PHP 5.5.30 (tar.bz2)', 'sha256' => 'e7332a713cecdd1cb44a1b1336739885c9789f633f0f51236b25e48ab03c3b29', 'date' => '01 Oct 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.30.tar.gz', 'name' => 'PHP 5.5.30 (tar.gz)', 'sha256' => '8ad57f4317391354e66c83d26752f67515b2e923277eb97b2b420dfeff3c1007', 'date' => '01 Oct 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.30.tar.xz', 'name' => 'PHP 5.5.30 (tar.xz)', @@ -12728,29 +12728,29 @@ $OLDRELEASES = array ( 'date' => '01 Oct 2015', 'museum' => false, ), - '5.6.15' => + '5.6.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_15.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.15.tar.bz2', 'name' => 'PHP 5.6.15 (tar.bz2)', 'sha256' => '11a0645c4d4b749e256da1e0d6df89dd886b5b06b83c914d942653661dbd1c38', 'date' => '29 Oct 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.15.tar.gz', 'name' => 'PHP 5.6.15 (tar.gz)', 'sha256' => 'bb2d4c226a4897b7c3659c2538a87aef7ec104f58f5ae930a263dd77fb8ebc40', 'date' => '29 Oct 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.15.tar.xz', 'name' => 'PHP 5.6.15 (tar.xz)', @@ -12761,29 +12761,29 @@ $OLDRELEASES = array ( 'date' => '29 Oct 2015', 'museum' => false, ), - '5.6.14' => + '5.6.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_14.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.14.tar.bz2', 'name' => 'PHP 5.6.14 (tar.bz2)', 'sha256' => '36f295f11641c1839a5df00e693f685fd134c65e8a1d46e8ee0abae8662b2eb0', 'date' => '01 Oct 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.14.tar.gz', 'name' => 'PHP 5.6.14 (tar.gz)', 'sha256' => '29baf7ffca644f7f8e86028c40275b9e460342bdf9562d45f8f0498899cb738d', 'date' => '01 Oct 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.14.tar.xz', 'name' => 'PHP 5.6.14 (tar.xz)', @@ -12794,29 +12794,29 @@ $OLDRELEASES = array ( 'date' => '01 Oct 2015', 'museum' => false, ), - '5.6.13' => + '5.6.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_13.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.13.tar.bz2', 'name' => 'PHP 5.6.13 (tar.bz2)', 'sha256' => '6358837c9cbab41b91ede59dbf0670ae0fb925a1369ecbc1a44a27212420f893', 'date' => '03 Sep 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.13.tar.gz', 'name' => 'PHP 5.6.13 (tar.gz)', 'sha256' => '92acc6c067f5e015a6881b4119eafec10eca11722e810f2c2083f72e17119bcf', 'date' => '03 Sep 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.13.tar.xz', 'name' => 'PHP 5.6.13 (tar.xz)', @@ -12827,29 +12827,29 @@ $OLDRELEASES = array ( 'date' => '03 Sep 2015', 'museum' => false, ), - '5.5.29' => + '5.5.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_29.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.29.tar.bz2', 'name' => 'PHP 5.5.29 (tar.bz2)', 'sha256' => 'fbcee579ecc77cad6960a541116aee669cf145c2cd9a54bf60503a870843b946', 'date' => '03 Sep 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.29.tar.gz', 'name' => 'PHP 5.5.29 (tar.gz)', 'sha256' => 'c25a4c4eae558cc9899d2994813dd272eafff9466926f30821a83edaafe620a9', 'date' => '03 Sep 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.29.tar.xz', 'name' => 'PHP 5.5.29 (tar.xz)', @@ -12860,29 +12860,29 @@ $OLDRELEASES = array ( 'date' => '03 Sep 2015', 'museum' => false, ), - '5.5.28' => + '5.5.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_28.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.28.tar.bz2', 'name' => 'PHP 5.5.28 (tar.bz2)', 'sha256' => '197d2c572e030c177e53d3763d59ac6d363d7c78dc22e6cc1e2ac65573d9c2f3', 'date' => '06 Aug 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.28.tar.gz', 'name' => 'PHP 5.5.28 (tar.gz)', 'sha256' => '6084f25a39ab2f79ade46bf0258a1cd6c9bbb09a106b40dd996dbdf8cd3b08f2', 'date' => '06 Aug 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.28.tar.xz', 'name' => 'PHP 5.5.28 (tar.xz)', @@ -12893,29 +12893,29 @@ $OLDRELEASES = array ( 'date' => '06 Aug 2015', 'museum' => false, ), - '5.6.12' => + '5.6.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_12.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.12.tar.bz2', 'name' => 'PHP 5.6.12 (tar.bz2)', 'sha256' => '6f27104272af7b2a996f85e4100fac627630fbdaf39d7bd263f16cf529c8853a', 'date' => '06 Aug 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.12.tar.gz', 'name' => 'PHP 5.6.12 (tar.gz)', 'sha256' => '7799b42606c1770d1ad90bfc7521d2b6c294c4c27dcf1a206dee562533b4f984', 'date' => '06 Aug 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.12.tar.xz', 'name' => 'PHP 5.6.12 (tar.xz)', @@ -12926,29 +12926,29 @@ $OLDRELEASES = array ( 'date' => '06 Aug 2015', 'museum' => false, ), - '5.6.11' => + '5.6.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_11.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.11.tar.bz2', 'name' => 'PHP 5.6.11 (tar.bz2)', 'sha256' => 'bd6b260816764c267244749ead07482120dbf8d1920ebbbb0dcb2aa411033866', 'date' => '10 Jul 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.11.tar.gz', 'name' => 'PHP 5.6.11 (tar.gz)', 'sha256' => '85916b46c0d1f2a5315c84fb2773293f4084c3676ba4ed420d0432cbb60ff9d8', 'date' => '10 Jul 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.11.tar.xz', 'name' => 'PHP 5.6.11 (tar.xz)', @@ -12959,29 +12959,29 @@ $OLDRELEASES = array ( 'date' => '10 Jul 2015', 'museum' => false, ), - '5.5.27' => + '5.5.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_27.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.27.tar.bz2', 'name' => 'PHP 5.5.27 (tar.bz2)', 'sha256' => 'c4b4c6a534c0ca67a9ae39bec4f51e52d13e820135dd016eae230e15337e1f70', 'date' => '09 Jul 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.27.tar.gz', 'name' => 'PHP 5.5.27 (tar.gz)', 'sha256' => '57cc716ebb37a62654c154582e48a282055b08ce91995c79b0be41b9940237f0', 'date' => '09 Jul 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.27.tar.xz', 'name' => 'PHP 5.5.27 (tar.xz)', @@ -12992,29 +12992,29 @@ $OLDRELEASES = array ( 'date' => '09 Jul 2015', 'museum' => false, ), - '5.6.10' => + '5.6.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_10.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.10.tar.bz2', 'name' => 'PHP 5.6.10 (tar.bz2)', 'sha256' => '0a579c81c724ea41815eee0caa8ea7d8eeb302458519d8cc4fc5b055577c8c45', 'date' => '11 Jun 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.10.tar.gz', 'name' => 'PHP 5.6.10 (tar.gz)', 'sha256' => '7759d6e178be524085e1482921748c14d11cbd0a133ba8aabb96c391ce7ed3fc', 'date' => '11 Jun 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.10.tar.xz', 'name' => 'PHP 5.6.10 (tar.xz)', @@ -13025,29 +13025,29 @@ $OLDRELEASES = array ( 'date' => '11 Jun 2015', 'museum' => false, ), - '5.5.26' => + '5.5.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_26.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.26.tar.bz2', 'name' => 'PHP 5.5.26 (tar.bz2)', 'sha256' => '816afffdb03ff4c542bc172a2f77f9c69b817df82d60cce05c1b4f578c2c926e', 'date' => '11 Jun 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.26.tar.gz', 'name' => 'PHP 5.5.26 (tar.gz)', 'sha256' => 'bee980d433bab99d07ee2bf6f2dcb87d746e49d57adec7d0ce7edb39306695ec', 'date' => '11 Jun 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.26.tar.xz', 'name' => 'PHP 5.5.26 (tar.xz)', @@ -13058,29 +13058,29 @@ $OLDRELEASES = array ( 'date' => '11 Jun 2015', 'museum' => false, ), - '5.6.9' => + '5.6.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.9.tar.bz2', 'name' => 'PHP 5.6.9 (tar.bz2)', 'sha256' => '19d3b87b7b8bba3be24cf6d757d16b723a98881c3af8d15469fd25501e9abcb9', 'date' => '14 May 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.9.tar.gz', 'name' => 'PHP 5.6.9 (tar.gz)', 'sha256' => '49527ba66357fe65bcd463dfb8dcff1b8879419f88b3c334f50696a2aceacb87', 'date' => '14 May 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.9.tar.xz', 'name' => 'PHP 5.6.9 (tar.xz)', @@ -13091,29 +13091,29 @@ $OLDRELEASES = array ( 'date' => '14 May 2015', 'museum' => false, ), - '5.5.25' => + '5.5.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_25.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.25.tar.bz2', 'name' => 'PHP 5.5.25 (tar.bz2)', 'sha256' => '68df37e725ddd05675c0df906041038127938ecc52113a54d10e1e4029262c63', 'date' => '14 May 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.25.tar.gz', 'name' => 'PHP 5.5.25 (tar.gz)', 'sha256' => 'c9397f60bff139e0df441c5e2766108c5bc7ad690de136eb9f5b2f9bbf771240', 'date' => '14 May 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.25.tar.xz', 'name' => 'PHP 5.5.25 (tar.xz)', @@ -13124,29 +13124,29 @@ $OLDRELEASES = array ( 'date' => '14 May 2015', 'museum' => false, ), - '5.6.8' => + '5.6.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.8.tar.bz2', 'name' => 'PHP 5.6.8 (tar.bz2)', 'sha256' => '0af0045745d61eeb74a3ea744529a2481b27cb689da720e6c0250675043724e4', 'date' => '16 Apr 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.8.tar.gz', 'name' => 'PHP 5.6.8 (tar.gz)', 'sha256' => 'c5b1c75c5671c239473eb611129f33ac432a55a1c341990b70009a2aa3b8dbc3', 'date' => '16 Apr 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.8.tar.xz', 'name' => 'PHP 5.6.8 (tar.xz)', @@ -13157,29 +13157,29 @@ $OLDRELEASES = array ( 'date' => '16 Apr 2015', 'museum' => false, ), - '5.5.24' => + '5.5.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_24.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.24.tar.bz2', 'name' => 'PHP 5.5.24 (tar.bz2)', 'sha256' => '801b5cf2e0c01b07314d4ac3c8a7c28d524bdd8263ebdd0e33a99008251316a2', 'date' => '16 Apr 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.24.tar.gz', 'name' => 'PHP 5.5.24 (tar.gz)', 'sha256' => '43e6b83fe8151f8d2062ca4da915312fc92e47789801049231c705a8b29b05bc', 'date' => '16 Apr 2015', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.24.tar.xz', 'name' => 'PHP 5.5.24 (tar.xz)', @@ -13190,29 +13190,29 @@ $OLDRELEASES = array ( 'date' => '16 Apr 2015', 'museum' => false, ), - '5.6.7' => + '5.6.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_7.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.7.tar.bz2', 'name' => 'PHP 5.6.7 (tar.bz2)', 'date' => '19 Mar 2015', 'sha256' => '02954fb74c61a7879d48ebdcd4ecb78aa0056f4215ca9b096232de28eb8f17bc', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.7.tar.gz', 'name' => 'PHP 5.6.7 (tar.gz)', 'date' => '19 Mar 2015', 'sha256' => '11398540a582c876f5e070207231afde975eb49bb2eeae20b052e8ca325c0f47', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.7.tar.xz', 'name' => 'PHP 5.6.7 (tar.xz)', @@ -13223,29 +13223,29 @@ $OLDRELEASES = array ( 'date' => '19 Mar 2015', 'museum' => false, ), - '5.5.23' => + '5.5.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_23.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.23.tar.bz2', 'name' => 'PHP 5.5.23 (tar.bz2)', 'date' => '20 Feb 2015', 'sha256' => 'a99ab264dcd40181baa9defeaa4b21eb2c20d4e9316b904cc05f628762e6ada7', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.23.tar.gz', 'name' => 'PHP 5.5.23 (tar.gz)', 'date' => '20 Feb 2015', 'sha256' => 'bf1246d4aca5b1a4e26f5cea273565ad3ee4607f20b7f28a508e3cab1a4d0c82', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.23.tar.xz', 'name' => 'PHP 5.5.23 (tar.xz)', @@ -13256,29 +13256,29 @@ $OLDRELEASES = array ( 'date' => '20 Feb 2015', 'museum' => false, ), - '5.6.6' => + '5.6.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.6.tar.bz2', 'name' => 'PHP 5.6.6 (tar.bz2)', 'date' => '19 Feb 2015', 'sha256' => '09625c9b65e0c8198dc76995a35f0feec0e13ea4489526e64a00954b12adbb4c', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.6.tar.gz', 'name' => 'PHP 5.6.6 (tar.gz)', 'date' => '19 Feb 2015', 'sha256' => '164fb27bab0a0ca4902bc67d5f5638e43466c88153aee3b54546d8ec682ec03b', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.6.tar.xz', 'name' => 'PHP 5.6.6 (tar.xz)', @@ -13289,29 +13289,29 @@ $OLDRELEASES = array ( 'date' => '19 Feb 2015', 'museum' => false, ), - '5.5.22' => + '5.5.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_22.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.22.tar.bz2', 'name' => 'PHP 5.5.22 (tar.bz2)', 'date' => '20 Feb 2015', 'sha256' => 'c218c184bef2905bc79fcdda6040f3d1738261395fb706396935d1c6f6e162bb', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.22.tar.gz', 'name' => 'PHP 5.5.22 (tar.gz)', 'date' => '20 Feb 2015', 'sha256' => 'cb6174e1e74de233ec7b461302f823a7eacf7bcc946d347486c930e53f2b7db7', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.22.tar.xz', 'name' => 'PHP 5.5.22 (tar.xz)', @@ -13322,29 +13322,29 @@ $OLDRELEASES = array ( 'date' => '20 Feb 2015', 'museum' => false, ), - '5.6.5' => + '5.6.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_5.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.5.tar.bz2', 'name' => 'PHP 5.6.5 (tar.bz2)', 'date' => '22 Jan 2015', 'sha256' => 'adab4c0775512a5ca0ae74e08efdc941d92529b75283e0f44d3f53822cdfd06d', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.5.tar.gz', 'name' => 'PHP 5.6.5 (tar.gz)', 'date' => '22 Jan 2015', 'sha256' => 'f67c480bcf2f6f703ec8d8a772540f4a518f766b08d634d7a919402c13a636cf', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.5.tar.xz', 'name' => 'PHP 5.6.5 (tar.xz)', @@ -13355,29 +13355,29 @@ $OLDRELEASES = array ( 'date' => '22 Jan 2015', 'museum' => false, ), - '5.5.21' => + '5.5.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_21.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.21.tar.bz2', 'name' => 'PHP 5.5.21 (tar.bz2)', 'date' => '22 Jan 2015', 'sha256' => '62e9429975c4ca5d7067a5052d5388fbf2ac8c51eeee581d59b04cc5a8da83fe', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.21.tar.gz', 'name' => 'PHP 5.5.21 (tar.gz)', 'date' => '22 Jan 2015', 'sha256' => '45adba5b4d2519f6174b85fd5b07a77389f397603d84084bdd26c44b3d7dc8af', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.21.tar.xz', 'name' => 'PHP 5.5.21 (tar.xz)', @@ -13388,29 +13388,29 @@ $OLDRELEASES = array ( 'date' => '22 Jan 2015', 'museum' => false, ), - '5.6.4' => + '5.6.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_4.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.4.tar.bz2', 'name' => 'PHP 5.6.4 (tar.bz2)', 'date' => '18 Dec 2014', 'sha256' => '576f9001b612f5ddc22f447311bbec321e2c959b6a52259d664c4ba04ef044f1', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.4.tar.gz', 'name' => 'PHP 5.6.4 (tar.gz)', 'date' => '18 Dec 2014', 'sha256' => '9c318f10af598e3d0b306a00860cfeb13c34024a9032a59ff53e3cd3c7791e97', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.4.tar.xz', 'name' => 'PHP 5.6.4 (tar.xz)', @@ -13421,29 +13421,29 @@ $OLDRELEASES = array ( 'date' => '18 Dec 2014', 'museum' => false, ), - '5.5.20' => + '5.5.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_20.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.20.tar.bz2', 'name' => 'PHP 5.5.20 (tar.bz2)', 'date' => '18 Dec 2014', 'sha256' => 'f28a150d1cd8991bd1a41dce4fdff4e343d1dbe01a48b9b44bea74532ce0391a', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.20.tar.gz', 'name' => 'PHP 5.5.20 (tar.gz)', 'date' => '18 Dec 2014', 'sha256' => '7454e4f2dba3b08b2c88bb178e7bf704ed100f3d7ab6b83ea5046a6e4acb7295', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.20.tar.xz', 'name' => 'PHP 5.5.20 (tar.xz)', @@ -13454,29 +13454,29 @@ $OLDRELEASES = array ( 'date' => '18 Dec 2014', 'museum' => false, ), - '5.6.3' => + '5.6.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_3.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.3.tar.bz2', 'name' => 'PHP 5.6.3 (tar.bz2)', 'date' => '13 Nov 2014', 'sha256' => '8986b20124d14430d795165e47801ef065a38d5855bea39d0d47b13ab9ad4009', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.3.tar.gz', 'name' => 'PHP 5.6.3 (tar.gz)', 'date' => '13 Nov 2014', 'sha256' => '7ac79fe7ef50c2d5893375f5d8854909337adf1632e42bb08b36b66a0d8016a7', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.3.tar.xz', 'name' => 'PHP 5.6.3 (tar.xz)', @@ -13487,29 +13487,29 @@ $OLDRELEASES = array ( 'date' => '13 Nov 2014', 'museum' => false, ), - '5.5.19' => + '5.5.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_19.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.19.tar.bz2', 'name' => 'PHP 5.5.19 (tar.bz2)', 'date' => '13 Nov 2014', 'sha256' => '4366dbb904cba8c8dd32224ac9408495d20aecaed86a871d78df420f5a23bbff', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.19.tar.gz', 'name' => 'PHP 5.5.19 (tar.gz)', 'date' => '13 Nov 2014', 'sha256' => '8d39f224424f37644da913353f1e773c20b7fc55bb3cc81526c18f91d1d6394e', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.19.tar.xz', 'name' => 'PHP 5.5.19 (tar.xz)', @@ -13520,29 +13520,29 @@ $OLDRELEASES = array ( 'date' => '13 Nov 2014', 'museum' => false, ), - '5.6.2' => + '5.6.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_2.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.2.tar.bz2', 'name' => 'PHP 5.6.2 (tar.bz2)', 'date' => '16 Oct 2014', 'sha256' => '671dcf1f636410c63bb9eb015c4c180d904f5436f81217be0adbf52da9becdb5', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.2.tar.gz', 'name' => 'PHP 5.6.2 (tar.gz)', 'date' => '16 Oct 2014', 'sha256' => '4bb316831979317caf738bb9e2c590bf3b7951ce60c69b9ca33f26069d9a2f39', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.2.tar.xz', 'name' => 'PHP 5.6.2 (tar.xz)', @@ -13553,29 +13553,29 @@ $OLDRELEASES = array ( 'date' => '16 Oct 2014', 'museum' => false, ), - '5.5.18' => + '5.5.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_18.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.18.tar.bz2', 'name' => 'PHP 5.5.18 (tar.bz2)', 'date' => '16 Oct 2014', 'sha256' => 'f974279927b72b672dda4ef4b4362b4847fd3d19ce1d4f2e982230a4e93bb842', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.18.tar.gz', 'name' => 'PHP 5.5.18 (tar.gz)', 'date' => '16 Oct 2014', 'sha256' => '71f6445cc21c944a3b98592193c62e29a58af3fe26d097312502b4fd400286e4', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.18.tar.xz', 'name' => 'PHP 5.5.18 (tar.xz)', @@ -13586,29 +13586,29 @@ $OLDRELEASES = array ( 'date' => '16 Oct 2014', 'museum' => false, ), - '5.6.1' => + '5.6.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_1.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.1.tar.bz2', 'name' => 'PHP 5.6.1 (tar.bz2)', 'date' => '02 Oct 2014', 'sha256' => '82c1ccd17830d697d7a4d75bb60ea12be58fa80b4dba101e97db1a6372ca45f0', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.1.tar.gz', 'name' => 'PHP 5.6.1 (tar.gz)', 'date' => '02 Oct 2014', 'sha256' => 'e34f0ab6b1f431f3115f60094f6d7ded12a90db2361194b8ef9e6eff812db21c', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.1.tar.xz', 'name' => 'PHP 5.6.1 (tar.xz)', @@ -13619,29 +13619,29 @@ $OLDRELEASES = array ( 'date' => '02 Oct 2014', 'museum' => false, ), - '5.5.17' => + '5.5.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_17.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.17.tar.bz2', 'name' => 'PHP 5.5.17 (tar.bz2)', 'date' => '18 Sep 2014', 'sha256' => '5d81db0c8b2a68da05715c363d037922b82a45c966785d64a77482e5c01e4e1b', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.17.tar.gz', 'name' => 'PHP 5.5.17 (tar.gz)', 'date' => '18 Sep 2014', 'sha256' => '657169be88ae70625d97bb94dd29140c2b602f1ba8d5e42ca14a400b63cf4720', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.17.tar.xz', 'name' => 'PHP 5.5.17 (tar.xz)', @@ -13652,29 +13652,29 @@ $OLDRELEASES = array ( 'date' => '18 Sep 2014', 'museum' => false, ), - '5.6.0' => + '5.6.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_6_0.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.6.0.tar.bz2', 'name' => 'PHP 5.6.0 (tar.bz2)', 'date' => '28 Aug 2014', 'sha256' => '097af1be34fc73965e6f8401fd10e73eb56e1969ed4ffd691fb7e91606d0fc09', ), - 1 => + 1 => array ( 'filename' => 'php-5.6.0.tar.gz', 'name' => 'PHP 5.6.0 (tar.gz)', 'date' => '28 Aug 2014', 'sha256' => '284b85376c630a6a7163e5278d64b8526fa1324fe5fd5d21174b54e2c056533f', ), - 2 => + 2 => array ( 'filename' => 'php-5.6.0.tar.xz', 'name' => 'PHP 5.6.0 (tar.xz)', @@ -13685,29 +13685,29 @@ $OLDRELEASES = array ( 'date' => '28 Aug 2014', 'museum' => false, ), - '5.5.16' => + '5.5.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_16.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.16.tar.bz2', 'name' => 'PHP 5.5.16 (tar.bz2)', 'date' => '21 Aug 2014', 'sha256' => 'a1d7c4556a80bed744a348211b33bc35303edd56dd0a34e0a75a948c879cc5f6', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.16.tar.gz', 'name' => 'PHP 5.5.16 (tar.gz)', 'date' => '21 Aug 2014', 'sha256' => 'cdea80ab1b0466f4656b46155e341b700799e78569a5cc582eeaededb448086c', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.16.tar.xz', 'name' => 'PHP 5.5.16 (tar.xz)', @@ -13718,29 +13718,29 @@ $OLDRELEASES = array ( 'date' => '21 Aug 2014', 'museum' => false, ), - '5.5.15' => + '5.5.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_15.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.15.tar.bz2', 'name' => 'PHP 5.5.15 (tar.bz2)', 'date' => '24 Jul 2014', 'sha256' => '00f24226b12fee27e332383b6304f1b9ed3f4d9173dd728a68c5c3f5a59b8ba7', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.15.tar.gz', 'name' => 'PHP 5.5.15 (tar.gz)', 'date' => '24 Jul 2014', 'sha256' => '578febd686018401c4857699b29502b1aecaf82bf43525d810867f583961ac6e', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.15.tar.xz', 'name' => 'PHP 5.5.15 (tar.xz)', @@ -13751,22 +13751,22 @@ $OLDRELEASES = array ( 'date' => '24 Jul 2014', 'museum' => false, ), - '5.5.14' => + '5.5.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_14.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.14.tar.bz2', 'name' => 'PHP 5.5.14 (tar.bz2)', 'date' => '26 Jun 2014', 'sha256' => 'df5a057877f827549e0a60b43fb01e4bd440814bcf04fbd70bacbddf74482610', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.14.tar.gz', 'name' => 'PHP 5.5.14 (tar.gz)', @@ -13777,22 +13777,22 @@ $OLDRELEASES = array ( 'date' => '26 Jun 2014', 'museum' => false, ), - '5.5.13' => + '5.5.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_13.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.13.tar.bz2', 'name' => 'PHP 5.5.13 (tar.bz2)', 'date' => '29 May 2014', 'sha256' => 'e58a4a754eb18d2d8b1a120cad5cce4ed24a7db5d49eca5830a40e4c8ca78b9c', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.13.tar.gz', 'name' => 'PHP 5.5.13 (tar.gz)', @@ -13803,22 +13803,22 @@ $OLDRELEASES = array ( 'date' => '29 May 2014', 'museum' => false, ), - '5.5.12' => + '5.5.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_12.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.12.tar.bz2', 'name' => 'PHP 5.5.12 (tar.bz2)', 'date' => '30 Apr 2014', 'sha256' => '519ee29e28532782676f3d8e31a808ffbfee383e0279ccc8cbd2b12ed53c2335', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.12.tar.gz', 'name' => 'PHP 5.5.12 (tar.gz)', @@ -13829,22 +13829,22 @@ $OLDRELEASES = array ( 'date' => '30 Apr 2014', 'museum' => false, ), - '5.5.11' => + '5.5.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_11.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.11.tar.bz2', 'name' => 'PHP 5.5.11 (tar.bz2)', 'date' => '3 Apr 2014', 'sha256' => '60e14c255f2a461a7a26639b84a2fc448cc2f91c8dead0e9fd00cd8ba27a2e96', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.11.tar.gz', 'name' => 'PHP 5.5.11 (tar.gz)', @@ -13855,22 +13855,22 @@ $OLDRELEASES = array ( 'date' => '3 Apr 2014', 'museum' => false, ), - '5.5.10' => + '5.5.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_10.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.10.tar.bz2', 'name' => 'PHP 5.5.10 (tar.bz2)', 'date' => '6 Mar 2014', 'sha256' => 'bb34e61f8e6f56c612867bfe85d144d5045cd5e44497539bc126a4e8c6795419', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.10.tar.gz', 'name' => 'PHP 5.5.10 (tar.gz)', @@ -13881,29 +13881,29 @@ $OLDRELEASES = array ( 'date' => '6 Mar 2014', 'museum' => false, ), - '5.5.9' => + '5.5.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.9.tar.bz2', 'name' => 'PHP 5.5.9 (tar.bz2)', 'date' => '6 Feb 2014', 'sha256' => '9d1dea5195e2bcd928416130a6e19173d02bd36fb76c382522bf145c458fbed3', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.9.tar.gz', 'name' => 'PHP 5.5.9 (tar.gz)', 'date' => '6 Feb 2014', 'sha256' => 'ec1bf0cb3be80240049dbd92c272d4bf242a614fa5f9dcc42a15adb5fd01ccde', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.9.tar.xz', 'name' => 'PHP 5.5.9 (tar.xz)', @@ -13914,22 +13914,22 @@ $OLDRELEASES = array ( 'date' => '6 Feb 2014', 'museum' => false, ), - '5.5.8' => + '5.5.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.8.tar.bz2', 'name' => 'PHP 5.5.8 (tar.bz2)', 'date' => '9 Jan 2014', 'sha256' => '6d5f45659d13383fc8429f185cc9da0b30c7bb72dcae9baf568f0511eb7f8b68', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.8.tar.gz', 'name' => 'PHP 5.5.8 (tar.gz)', @@ -13940,29 +13940,29 @@ $OLDRELEASES = array ( 'date' => '9 Jan 2014', 'museum' => false, ), - '5.5.7' => + '5.5.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_7.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.7.tar.bz2', 'name' => 'PHP 5.5.7 (tar.bz2)', 'date' => '12 Dec 2013', 'sha256' => '2cb9425ef514b984dd233097d82a66f4623b9bf48f2ef265bc7ba25d697d6008', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.7.tar.gz', 'name' => 'PHP 5.5.7 (tar.gz)', 'date' => '12 Dec 2013', 'sha256' => '7b954338d7dd538ef6fadbc110e6a0f50d0b39dabec2c12a7f000c17332591b8', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.7.tar.xz', 'name' => 'PHP 5.5.7 (tar.xz)', @@ -13973,36 +13973,36 @@ $OLDRELEASES = array ( 'date' => '12 Dec 2013', 'museum' => false, ), - '5.5.6' => + '5.5.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.6.tar.bz2', 'name' => 'PHP 5.5.6 (tar.bz2)', 'date' => '14 Nov 2013', 'sha256' => 'a9b7d291199d7e6b90ef1d78eb791d738944d66856e76bde9463ce2645b0e4a4', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.6.tar.gz', 'name' => 'PHP 5.5.6 (tar.gz)', 'date' => '14 Nov 2013', 'sha256' => '01f9c45154d4c9a47a825aa662bd64493082bd57dafdc720cf899ee194220a67', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.6.tar.xz', 'name' => 'PHP 5.5.6 (tar.xz)', 'date' => '14 Nov 2013', 'sha256' => '3235a5c15e8fc55498dd80fe43f4aecc51dba35a7fc916aee7ef12d4e1f8767a', ), - 3 => + 3 => array ( 'link' => 'http://windows.php.net/download/#php-5.5', 'name' => 'Windows 5.5.6 binaries and source', @@ -14011,36 +14011,36 @@ $OLDRELEASES = array ( 'date' => '14 Nov 2013', 'museum' => false, ), - '5.5.5' => + '5.5.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_5.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.5.tar.bz2', 'name' => 'PHP 5.5.5 (tar.bz2)', 'date' => '17 Oct 2013', 'sha256' => 'a400b324ae288eb0c9285e550fe5fd7f92c0f4e126496c3b05f9041da6cc04de', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.5.tar.gz', 'name' => 'PHP 5.5.5 (tar.gz)', 'date' => '17 Oct 2013', 'sha256' => '483ff2370fa3a8863e6b023383c4bcfcc3ba462137c30c5fc75043e1755b7d17', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.5.tar.xz', 'name' => 'PHP 5.5.5 (tar.xz)', 'date' => '17 Oct 2013', 'sha256' => '82cc9c88b946354bfe629917a85ed33d8cfc901460d432a75f823667d94f29ee', ), - 3 => + 3 => array ( 'link' => 'http://windows.php.net/download/#php-5.5', 'name' => 'Windows 5.5.5 binaries and source', @@ -14049,36 +14049,36 @@ $OLDRELEASES = array ( 'date' => '17 Oct 2013', 'museum' => false, ), - '5.5.4' => + '5.5.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_4.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.4.tar.bz2', 'name' => 'PHP 5.5.4 (tar.bz2)', 'md5' => '456f2eb1ee36f2a277bd4cc778e720eb', 'date' => '19 Sep 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.4.tar.gz', 'name' => 'PHP 5.5.4 (tar.gz)', 'md5' => 'bf842770ac64a47ff599f463e6cf1334', 'date' => '19 Sep 2013', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.4.tar.xz', 'name' => 'PHP 5.5.4 (tar.xz)', 'md5' => '32c1dc56701d21def91a39a312392b54', 'date' => '19 Sep 2013', ), - 3 => + 3 => array ( 'link' => 'http://windows.php.net/download/#php-5.5', 'name' => 'Windows 5.5.4 binaries and source', @@ -14087,36 +14087,36 @@ $OLDRELEASES = array ( 'date' => '19 Sep 2013', 'museum' => true, ), - '5.5.3' => + '5.5.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_3.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.3.tar.bz2', 'name' => 'PHP 5.5.3 (tar.bz2)', 'md5' => '886b08ee6865d654911a6bb02ae98ee8', 'date' => '22 Aug 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.3.tar.gz', 'name' => 'PHP 5.5.3 (tar.gz)', 'md5' => 'a5dfdd41ccf539942db966310f7429da', 'date' => '22 Aug 2013', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.3.tar.xz', 'name' => 'PHP 5.5.3 (tar.xz)', 'md5' => '437e98144ef014dfab0922a9eed36853', 'date' => '22 Aug 2013', ), - 3 => + 3 => array ( 'link' => 'http://windows.php.net/download/#php-5.5', 'name' => 'Windows 5.5.3 binaries and source', @@ -14125,36 +14125,36 @@ $OLDRELEASES = array ( 'date' => '22 Aug 2013', 'museum' => true, ), - '5.5.2' => + '5.5.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_2.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.2.tar.bz2', 'name' => 'PHP 5.5.2 (tar.bz2)', 'md5' => 'caf7f4d86514a568fb3c8021b096a9f0', 'date' => '15 Aug 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.2.tar.gz', 'name' => 'PHP 5.5.2 (tar.gz)', 'md5' => '2a90884749f97868071538098b3debc1', 'date' => '15 Aug 2013', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.2.tar.xz', 'name' => 'PHP 5.5.2 (tar.xz)', 'md5' => '95c6d7a4c36c475b10447954dea056a5', 'date' => '15 Aug 2013', ), - 3 => + 3 => array ( 'link' => 'http://windows.php.net/download/#php-5.5', 'name' => 'Windows 5.5.2 binaries and source', @@ -14163,36 +14163,36 @@ $OLDRELEASES = array ( 'date' => '15 Aug 2013', 'museum' => true, ), - '5.5.1' => + '5.5.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_1.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.1.tar.bz2', 'name' => 'PHP 5.5.1 (tar.bz2)', 'md5' => 'e6520ba8f86e03451f1e9226ca2be681', 'date' => '18 Jul 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.1.tar.gz', 'name' => 'PHP 5.5.1 (tar.gz)', 'md5' => 'a7d9598c0e60b47960b8e803e51c4309', 'date' => '18 Jul 2013', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.1.tar.xz', 'name' => 'PHP 5.5.1 (tar.xz)', 'md5' => '365403c216d22255c3aa57fe54944f8e', 'date' => '18 Jul 2013', ), - 3 => + 3 => array ( 'link' => 'http://windows.php.net/download/#php-5.5', 'name' => 'Windows 5.5.1 binaries and source', @@ -14201,36 +14201,36 @@ $OLDRELEASES = array ( 'date' => '18 Jul 2013', 'museum' => true, ), - '5.5.0' => + '5.5.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_5_0.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.5.0.tar.bz2', 'name' => 'PHP 5.5.0 (tar.bz2)', 'md5' => 'daf2d54e79def9fd0fb2ac7dfcefb7f3', 'date' => '20 Jun 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.5.0.tar.gz', 'name' => 'PHP 5.5.0 (tar.gz)', 'md5' => '79c4e7a8cb0f8e2e072120775b92c523', 'date' => '20 Jun 2013', ), - 2 => + 2 => array ( 'filename' => 'php-5.5.0.tar.xz', 'name' => 'PHP 5.5.0 (tar.xz)', 'md5' => 'c7df0cb28cfff4e277fd9cd9b73cebfb', 'date' => '20 Jun 2013', ), - 3 => + 3 => array ( 'link' => 'http://windows.php.net/download/#php-5.5', 'name' => 'Windows 5.5.0 binaries and source', @@ -14239,29 +14239,29 @@ $OLDRELEASES = array ( 'date' => '20 Jun 2013', 'museum' => true, ), - '5.4.45' => + '5.4.45' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_45.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.45.tar.bz2', 'name' => 'PHP 5.4.45 (tar.bz2)', 'sha256' => '4e0d28b1554c95cfaea6fa2b64aac85433f158ce72bb571bcd5574f98f4c6582', 'date' => '03 Sep 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.45.tar.gz', 'name' => 'PHP 5.4.45 (tar.gz)', 'sha256' => '25bc4723955f4e352935258002af14a14a9810b491a19400d76fcdfa9d04b28f', 'date' => '03 Sep 2015', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.45 binaries and source', @@ -14270,29 +14270,29 @@ $OLDRELEASES = array ( 'date' => '03 Sep 2015', 'museum' => false, ), - '5.4.44' => + '5.4.44' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_44.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.44.tar.bz2', 'name' => 'PHP 5.4.44 (tar.bz2)', 'sha256' => '8dd59e5ce9248cf36ac3de5412a518b8b24c01ace6c46ce3d12e4ce981a3856d', 'date' => '06 Aug 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.44.tar.gz', 'name' => 'PHP 5.4.44 (tar.gz)', 'sha256' => '1799998e48da3d8f34722840628e18789e26ea21741d4e498ade6749b3266602', 'date' => '06 Aug 2015', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.44 binaries and source', @@ -14301,29 +14301,29 @@ $OLDRELEASES = array ( 'date' => '06 Aug 2015', 'museum' => false, ), - '5.4.43' => + '5.4.43' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_43.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.43.tar.bz2', 'name' => 'PHP 5.4.43 (tar.bz2)', 'sha256' => '25d7724fb00ad1b520f5bad2173717031153d0a8e3de2c75e7a084c76f8ecd6b', 'date' => '09 Jul 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.43.tar.gz', 'name' => 'PHP 5.4.43 (tar.gz)', 'sha256' => 'cfc2176adc05f009666ecfab4a1cc66cc546c5d071245b2a048b3d113f67a2af', 'date' => '09 Jul 2015', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.43 binaries and source', @@ -14332,29 +14332,29 @@ $OLDRELEASES = array ( 'date' => '09 Jul 2015', 'museum' => false, ), - '5.4.42' => + '5.4.42' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_42.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.42.tar.bz2', 'name' => 'PHP 5.4.42 (tar.bz2)', 'sha256' => '6285b2e64bfaa69e5d983d7d981b4f254f5259ad3fd591ca832722a4cc1ae0f9', 'date' => '11 Jun 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.42.tar.gz', 'name' => 'PHP 5.4.42 (tar.gz)', 'sha256' => 'f0b40c097a6f11c4c2f5078d34f50fb9428d79b9e9821117bd7d6cca6af78d11', 'date' => '11 Jun 2015', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.42 binaries and source', @@ -14363,29 +14363,29 @@ $OLDRELEASES = array ( 'date' => '11 Jun 2015', 'museum' => false, ), - '5.4.41' => + '5.4.41' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_41.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.41.tar.bz2', 'name' => 'PHP 5.4.41 (tar.bz2)', 'sha256' => '5bc4b45a1280ff80a3cf5b8563716f325cfd0121d7fd25aa54d56ff38b3b8272', 'date' => '14 May 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.41.tar.gz', 'name' => 'PHP 5.4.41 (tar.gz)', 'sha256' => '638cf19c865bc4eba2a4bab8952116a62691d1a72e1e2c9a9a2aadee92d1ce2e', 'date' => '14 May 2015', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.41 binaries and source', @@ -14394,29 +14394,29 @@ $OLDRELEASES = array ( 'date' => '14 May 2015', 'museum' => false, ), - '5.4.40' => + '5.4.40' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_40.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.40.tar.bz2', 'name' => 'PHP 5.4.40 (tar.bz2)', 'sha256' => '4898ffe8ac3ccb2d8cc94f7d76a9ea0414d954f5d4479895ddfccdc2e158a51a', 'date' => '16 Apr 2015', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.40.tar.gz', 'name' => 'PHP 5.4.40 (tar.gz)', 'sha256' => '663f5d06cd648e81ba4f2d6ad621bb580d83de70240c832dae527c97954da33d', 'date' => '16 Apr 2015', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.40 binaries and source', @@ -14425,29 +14425,29 @@ $OLDRELEASES = array ( 'date' => '16 Apr 2015', 'museum' => false, ), - '5.4.39' => + '5.4.39' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_39.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.39.tar.bz2', 'name' => 'PHP 5.4.39 (tar.bz2)', 'date' => '19 Mar 2015', 'sha256' => '7ceb76538e709c74533210ae41148d5c01c330ac8a73220954bbc4fcae69d77e', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.39.tar.gz', 'name' => 'PHP 5.4.39 (tar.gz)', 'date' => '19 Mar 2015', 'sha256' => '9af5d2c3782aa94b7336401755dc44b62dc4ea881bf5e39540a4c7181b54d945', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.39 binaries and source', @@ -14456,29 +14456,29 @@ $OLDRELEASES = array ( 'date' => '19 Mar 2015', 'museum' => false, ), - '5.4.38' => + '5.4.38' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_38.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.38.tar.bz2', 'name' => 'PHP 5.4.38 (tar.bz2)', 'date' => '19 Feb 2015', 'sha256' => 'abf37db0cfadc9bb814f9df35f6aa966ad63f4f4c4475e432ec625568a5d3e88', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.38.tar.gz', 'name' => 'PHP 5.4.38 (tar.gz)', 'date' => '19 Feb 2015', 'sha256' => 'e694b7265f314f73c9df43538e0e54e2495cb72252e8a91c1aec66ffcf47241f', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.38 binaries and source', @@ -14487,29 +14487,29 @@ $OLDRELEASES = array ( 'date' => '19 Feb 2015', 'museum' => false, ), - '5.4.37' => + '5.4.37' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_37.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.37.tar.bz2', 'name' => 'PHP 5.4.37 (tar.bz2)', 'date' => '22 Jan 2015', 'sha256' => '857bf6675eeb0ae9c3cd6f9ccdb2a9b7bf89dcfda7f0a80857638fe023f3a8ad', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.37.tar.gz', 'name' => 'PHP 5.4.37 (tar.gz)', 'date' => '22 Jan 2015', 'sha256' => '6bf3b3ebefa600cfb6dd7f2678f23b17a958e82e8ce2d012286818d7c36dfd31', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.37 binaries and source', @@ -14518,29 +14518,29 @@ $OLDRELEASES = array ( 'date' => '22 Jan 2015', 'museum' => false, ), - '5.4.36' => + '5.4.36' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_36.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.36.tar.bz2', 'name' => 'PHP 5.4.36 (tar.bz2)', 'date' => '18 Dec 2014', 'sha256' => 'b0951608c3e8afb978a624c7f79a889980210f5258f666c1d997bd6491e13241', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.36.tar.gz', 'name' => 'PHP 5.4.36 (tar.gz)', 'date' => '18 Dec 2014', 'sha256' => 'e11851662222765d6ab6e671adc983c657d5358a183856b43a5bad0c612d2959', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.36 binaries and source', @@ -14549,29 +14549,29 @@ $OLDRELEASES = array ( 'date' => '18 Dec 2014', 'museum' => false, ), - '5.4.35' => + '5.4.35' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_35.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.35.tar.bz2', 'name' => 'PHP 5.4.35 (tar.bz2)', 'date' => '13 Nov 2014', 'sha256' => '8cdb4265cd0f778befacd1e6b5939ec23315fff38400e17e77a36e4c55b9746b', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.35.tar.gz', 'name' => 'PHP 5.4.35 (tar.gz)', 'date' => '13 Nov 2014', 'sha256' => '7ecab4ebb880b6d4f68bd4e3e49d837d4704fe26d81dc992b17b74151ee950a7', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.35 binaries and source', @@ -14580,29 +14580,29 @@ $OLDRELEASES = array ( 'date' => '13 Nov 2014', 'museum' => false, ), - '5.4.34' => + '5.4.34' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_34.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.34.tar.bz2', 'name' => 'PHP 5.4.34 (tar.bz2)', 'date' => '16 Oct 2014', 'sha256' => '57d4ea10f0c18b096a7c8fd0a98dcbe40c8f4dc94453fd3ca0a10e35fb2f8234', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.34.tar.gz', 'name' => 'PHP 5.4.34 (tar.gz)', 'date' => '16 Oct 2014', 'sha256' => 'c8d909062ad7616cedb54dc03d85b40d40f6d4adce986ec8cabd9b8b94872096', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.34 binaries and source', @@ -14611,29 +14611,29 @@ $OLDRELEASES = array ( 'date' => '16 Oct 2014', 'museum' => false, ), - '5.4.33' => + '5.4.33' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_33.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.33.tar.bz2', 'name' => 'PHP 5.4.33 (tar.bz2)', 'sha256' => '1a75b2d0835e74b8886cd3980d9598a0e06691441bb7f91d19b74c2278e40bb5', 'date' => '18 Sep 2014', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.33.tar.gz', 'name' => 'PHP 5.4.33 (tar.gz)', 'sha256' => '74e542dd2f15ebbc123738a71e867d57d2996a6edb40e6ac62fcf5ab85763d19', 'date' => '18 Sep 2014', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.33 binaries and source', @@ -14642,29 +14642,29 @@ $OLDRELEASES = array ( 'date' => '18 Sep 2014', 'museum' => false, ), - '5.4.32' => + '5.4.32' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_32.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.32.tar.bz2', 'name' => 'PHP 5.4.32 (tar.bz2)', 'date' => '21 Aug 2014', 'sha256' => '26d0717669a098f18cd22dc3ae8282101d38508054500c26775ddcc26ca7c826', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.32.tar.gz', 'name' => 'PHP 5.4.32 (tar.gz)', 'date' => '21 Aug 2014', 'sha256' => '80ebdf34f91b8e1d516080363804137177368777aa9ecffee600f2957e8b0f94', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.32 binaries and source', @@ -14673,29 +14673,29 @@ $OLDRELEASES = array ( 'date' => '21 Aug 2014', 'museum' => false, ), - '5.4.31' => + '5.4.31' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_31.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.31.tar.bz2', 'name' => 'PHP 5.4.31 (tar.bz2)', 'date' => '24 Jul 2014', 'sha256' => '5e8e491431fd1d99df925d762b05da05c80b02cb38c9b3db616e8894a307914d', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.31.tar.gz', 'name' => 'PHP 5.4.31 (tar.gz)', 'date' => '24 Jul 2014', 'sha256' => '332f62e4f751482d40ad08544ee97e004170d0382c84d01ce8efe405d0972f66', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.31 binaries and source', @@ -14704,29 +14704,29 @@ $OLDRELEASES = array ( 'date' => '24 Jul 2014', 'museum' => false, ), - '5.4.30' => + '5.4.30' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_30.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.30.tar.bz2', 'name' => 'PHP 5.4.30 (tar.bz2)', 'date' => '26 Jun 2014', 'sha256' => '32b83644e42d57388d6e5ec700c3502cde5f5e1207395b1e361e4cb2ce496ce6', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.30.tar.gz', 'name' => 'PHP 5.4.30 (tar.gz)', 'date' => '26 Jun 2014', 'sha256' => 'c17da64890b728bdc146bdc69b37085412d4e2585fac98848ac2e824bb564c85', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.30 binaries and source', @@ -14735,29 +14735,29 @@ $OLDRELEASES = array ( 'date' => '26 Jun 2014', 'museum' => false, ), - '5.4.29' => + '5.4.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_29.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.29.tar.bz2', 'name' => 'PHP 5.4.29 (tar.bz2)', 'date' => '29 May 2014', 'sha256' => '62ce3ca063cf04f6065eeac82117e43b44e20487bc0a0a8d05436e17a0b1e2a7', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.29.tar.gz', 'name' => 'PHP 5.4.29 (tar.gz)', 'date' => '29 May 2014', 'sha256' => '9fa51d3e44783802ea51b910719ad524a8994524f7cf7307f683fe89191bc401', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.29 binaries and source', @@ -14766,29 +14766,29 @@ $OLDRELEASES = array ( 'date' => '29 May 2014', 'museum' => false, ), - '5.4.28' => + '5.4.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_28.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.28.tar.bz2', 'name' => 'PHP 5.4.28 (tar.bz2)', 'date' => '2 May 2014', 'sha256' => '3fe780e5179e90c4d37276e79acc0d0692f1bc0911985af694b92c664c0ef3c4', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.28.tar.gz', 'name' => 'PHP 5.4.28 (tar.gz)', 'date' => '2 May 2014', 'sha256' => '5140292c94a0301db7a807e6b3aadf6ee966346d0005aa3d15464bd4c595a786', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.28 binaries and source', @@ -14797,29 +14797,29 @@ $OLDRELEASES = array ( 'date' => '2 May 2014', 'museum' => false, ), - '5.4.27' => + '5.4.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_27.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.27.tar.bz2', 'name' => 'PHP 5.4.27 (tar.bz2)', 'date' => '3 Apr 2014', 'sha256' => '09dcc44cded735e1cf1b1b9f2749d1a0fd90e03378b6a70364a662f4740e61e2', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.27.tar.gz', 'name' => 'PHP 5.4.27 (tar.gz)', 'date' => '3 Apr 2014', 'sha256' => 'a70dc68eeed902f8378fded473d53e4e37be645b941554dcf4237559cbda2bb3', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.27 binaries and source', @@ -14828,29 +14828,29 @@ $OLDRELEASES = array ( 'date' => '3 Apr 2014', 'museum' => false, ), - '5.4.26' => + '5.4.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_26.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.26.tar.bz2', 'name' => 'PHP 5.4.26 (tar.bz2)', 'date' => '6 Mar 2014', 'sha256' => '5053649317b9331df40bd836c976a32b31dbc5c5d68997d3ae01cb90db22d240', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.26.tar.gz', 'name' => 'PHP 5.4.26 (tar.gz)', 'date' => '6 Mar 2014', 'sha256' => 'ec3f902b5e8cbdd660e01e784b537f1210a12182d9bbd62164776075bc097eca', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.26 binaries and source', @@ -14859,29 +14859,29 @@ $OLDRELEASES = array ( 'date' => '6 Mar 2014', 'museum' => false, ), - '5.4.25' => + '5.4.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_25.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.25.tar.bz2', 'name' => 'PHP 5.4.25 (tar.bz2)', 'date' => '6 Feb 2014', 'sha256' => 'b6c18c07c6bf34f75e601b28829d636e44c1c9f4267aac4ed013443c32a2245f', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.25.tar.gz', 'name' => 'PHP 5.4.25 (tar.gz)', 'date' => '6 Feb 2014', 'sha256' => '0c66cec73bfbd31f68c96e5a4d8454599271f0b0462c2ff7dedce4262fda8fe3', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.25 binaries and source', @@ -14890,29 +14890,29 @@ $OLDRELEASES = array ( 'date' => '6 Feb 2014', 'museum' => false, ), - '5.4.24' => + '5.4.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_24.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.24.tar.bz2', 'name' => 'PHP 5.4.24 (tar.bz2)', 'date' => '9 Jan 2014', 'sha256' => '97fe70eddaf5b93969714a551870fe03f6b0a387f85b83a6d63a40a76199a327', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.24.tar.gz', 'name' => 'PHP 5.4.24 (tar.gz)', 'date' => '9 Jan 2014', 'sha256' => 'c64d6e3b428e78b44760167557e26cd16a9f83f449a255e69d5e035bdd7057ed', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.24 binaries and source', @@ -14921,29 +14921,29 @@ $OLDRELEASES = array ( 'date' => '9 Jan 2014', 'museum' => false, ), - '5.4.23' => + '5.4.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_23.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.23.tar.bz2', 'name' => 'PHP 5.4.23 (tar.bz2)', 'date' => '12 Dec 2013', 'sha256' => 'ae7c070fa9b9e16413ef944d910b68f3ba79192eca4010b0af132b8631bd91cc', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.23.tar.gz', 'name' => 'PHP 5.4.23 (tar.gz)', 'date' => '12 Dec 2013', 'sha256' => 'c9add0e59f41298a253bbb9090c47a03064b099120a563ca8ad289e18fcd1ce7', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.23 binaries and source', @@ -14952,29 +14952,29 @@ $OLDRELEASES = array ( 'date' => '12 Dec 2013', 'museum' => false, ), - '5.4.22' => + '5.4.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_22.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.22.tar.bz2', 'name' => 'PHP 5.4.22 (tar.bz2)', 'date' => '14 Nov 2013', 'sha256' => '3b8619b030e372f2b64e3a059d05a3ef3354e81f8a72923ba45475bf222f7cca', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.22.tar.gz', 'name' => 'PHP 5.4.22 (tar.gz)', 'date' => '14 Nov 2013', 'sha256' => 'ca6e52a0ba11e9521c6a26f293a602cdc00cad1adbb4658e35b8d3f41057cbb8', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.22 binaries and source', @@ -14983,29 +14983,29 @@ $OLDRELEASES = array ( 'date' => '14 Nov 2013', 'museum' => false, ), - '5.4.21' => + '5.4.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_21.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.21.tar.bz2', 'name' => 'PHP 5.4.21 (tar.bz2)', 'md5' => '3dcf021e89b039409d0b1c346b936b5f', 'date' => '17 Oct 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.21.tar.gz', 'name' => 'PHP 5.4.21 (tar.gz)', 'md5' => 'cc8da0d18683e3a83b332f264af7ca83', 'date' => '17 Oct 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.21 binaries and source', @@ -15014,29 +15014,29 @@ $OLDRELEASES = array ( 'date' => '17 Oct 2013', 'museum' => true, ), - '5.4.20' => + '5.4.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_20.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.20.tar.bz2', 'name' => 'PHP 5.4.20 (tar.bz2)', 'md5' => 'e25db5592ed14842b4239be9d990cce8', 'date' => '19 Sep 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.20.tar.gz', 'name' => 'PHP 5.4.20 (tar.gz)', 'md5' => 'e505b63ebe383ef9a378467216ba69d4', 'date' => '19 Sep 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.20 binaries and source', @@ -15045,29 +15045,29 @@ $OLDRELEASES = array ( 'date' => '19 Sep 2013', 'museum' => true, ), - '5.4.19' => + '5.4.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_19.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.19.tar.bz2', 'name' => 'PHP 5.4.19 (tar.bz2)', 'md5' => 'f06f99b9872b503758adab5ba7a7e755', 'date' => '22 Aug 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.19.tar.gz', 'name' => 'PHP 5.4.19 (tar.gz)', 'md5' => '9e7ad2494ba3de519328f74267de8342', 'date' => '22 Aug 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.19 binaries and source', @@ -15076,29 +15076,29 @@ $OLDRELEASES = array ( 'date' => '22 Aug 2013', 'museum' => true, ), - '5.4.18' => + '5.4.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_18.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.18.tar.bz2', 'name' => 'PHP 5.4.18 (tar.bz2)', 'md5' => 'b2e185b46b22a48a385cf21a0dc76e65', 'date' => '15 Aug 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.18.tar.gz', 'name' => 'PHP 5.4.18 (tar.gz)', 'md5' => 'd0a3f55deceaec921f45f76d7b4e764b', 'date' => '15 Aug 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.18 binaries and source', @@ -15107,29 +15107,29 @@ $OLDRELEASES = array ( 'date' => '04 Jul 2013', 'museum' => true, ), - '5.4.17' => + '5.4.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_17.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.17.tar.bz2', 'name' => 'PHP 5.4.17 (tar.bz2)', 'md5' => '1e027e99e2a874310fd518e87e3947af', 'date' => '04 Jul 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.17.tar.gz', 'name' => 'PHP 5.4.17 (tar.gz)', 'md5' => 'cc698032dcdcb9ad158edcc90fe798d6', 'date' => '04 Jul 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.17 binaries and source', @@ -15138,29 +15138,29 @@ $OLDRELEASES = array ( 'date' => '04 Jul 2013', 'museum' => true, ), - '5.4.16' => + '5.4.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_16.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.16.tar.bz2', 'name' => 'PHP 5.4.16 (tar.bz2)', 'md5' => '3d2c694d28861d707b2622c3cc941cff', 'date' => '06 Jun 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.16.tar.gz', 'name' => 'PHP 5.4.16 (tar.gz)', 'md5' => '3940a5295872964495f9c56596272d68', 'date' => '06 Jun 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.16 binaries and source', @@ -15169,29 +15169,29 @@ $OLDRELEASES = array ( 'date' => '09 May 2013', 'museum' => true, ), - '5.4.15' => + '5.4.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_15.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.15.tar.bz2', 'name' => 'PHP 5.4.15 (tar.bz2)', 'md5' => '145ea5e845e910443ff1eddb3dbcf56a', 'date' => '09 May 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.15.tar.gz', 'name' => 'PHP 5.4.15 (tar.gz)', 'md5' => '2651b983c18df9d455ec4c69aef45834', 'date' => '09 May 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.15 binaries and source', @@ -15200,29 +15200,29 @@ $OLDRELEASES = array ( 'date' => '09 May 2013', 'museum' => true, ), - '5.4.14' => + '5.4.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_14.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.14.tar.bz2', 'name' => 'PHP 5.4.14 (tar.bz2)', 'md5' => 'cfdc044be2c582991a1fe0967898fa38', 'date' => '11 Apr 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.14.tar.gz', 'name' => 'PHP 5.4.14 (tar.gz)', 'md5' => '08df8196af12bc850409a7bff13bf8f0', 'date' => '11 Apr 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.14 binaries and source', @@ -15231,29 +15231,29 @@ $OLDRELEASES = array ( 'date' => '11 Apr 2013', 'museum' => true, ), - '5.4.13' => + '5.4.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_13.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.13.tar.bz2', 'name' => 'PHP 5.4.13 (tar.bz2)', 'md5' => 'cacd308e978b7cf9ba4993196612ccf7', 'date' => '14 Mar 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.13.tar.gz', 'name' => 'PHP 5.4.13 (tar.gz)', 'md5' => '445025340677d5bfe22eb670d6db6795', 'date' => '14 Mar 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.13 binaries and source', @@ -15262,29 +15262,29 @@ $OLDRELEASES = array ( 'date' => '14 Mar 2013', 'museum' => true, ), - '5.4.12' => + '5.4.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_12.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.12.tar.bz2', 'name' => 'PHP 5.4.12 (tar.bz2)', 'md5' => '5c7b614242ae12e9cacca21c8ab84818', 'date' => '21 Feb 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.12.tar.gz', 'name' => 'PHP 5.4.12 (tar.gz)', 'md5' => '81b20cac4f977b8764ae904302048d84', 'date' => '21 Feb 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.12 binaries and source', @@ -15293,29 +15293,29 @@ $OLDRELEASES = array ( 'date' => '21 Feb 2013', 'museum' => true, ), - '5.4.11' => + '5.4.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_11.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.11.tar.bz2', 'name' => 'PHP 5.4.11 (tar.bz2)', 'md5' => '9975e68c22b86b013b934743ad2d2276', 'date' => '17 Jan 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.11.tar.gz', 'name' => 'PHP 5.4.11 (tar.gz)', 'md5' => '32fa16b3abd5527316c3c076b3395914', 'date' => '17 Jan 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.11 binaries and source', @@ -15324,29 +15324,29 @@ $OLDRELEASES = array ( 'date' => '17 Jan 2013', 'museum' => true, ), - '5.4.10' => + '5.4.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_10.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.10.tar.bz2', 'name' => 'PHP 5.4.10 (tar.bz2)', 'md5' => 'cb716b657a30570b9b468b9e7bc551a1', 'date' => '20 Dec 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.10.tar.gz', 'name' => 'PHP 5.4.10 (tar.gz)', 'md5' => '1e7fbe418658d5433bd315030584c45c', 'date' => '20 Dec 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.10 binaries and source', @@ -15355,29 +15355,29 @@ $OLDRELEASES = array ( 'date' => '20 Dec 2012', 'museum' => true, ), - '5.4.9' => + '5.4.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.9.tar.bz2', 'name' => 'PHP 5.4.9 (tar.bz2)', 'md5' => '076a9f84d861d3f664a2878d5773ba78', 'date' => '22 Nov 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.9.tar.gz', 'name' => 'PHP 5.4.9 (tar.gz)', 'md5' => 'e1ac28e1cf20738f0aeeba8261aa4537', 'date' => '22 Nov 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.9 binaries and source', @@ -15386,29 +15386,29 @@ $OLDRELEASES = array ( 'date' => '22 Nov 2012', 'museum' => true, ), - '5.4.8' => + '5.4.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.8.tar.bz2', 'name' => 'PHP 5.4.8 (tar.bz2)', 'md5' => 'bb8c816a9299be8995255ef70c63b800', 'date' => '18 Oct 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.8.tar.gz', 'name' => 'PHP 5.4.8 (tar.gz)', 'md5' => 'b25b735f342efbfdcdaf00b83189f183', 'date' => '18 Oct 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.8 binaries and source', @@ -15417,29 +15417,29 @@ $OLDRELEASES = array ( 'date' => '18 Oct 2012', 'museum' => true, ), - '5.4.7' => + '5.4.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_7.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.7.tar.bz2', 'name' => 'PHP 5.4.7 (tar.bz2)', 'md5' => '9cd421f1cc8fa8e7f215e44a1b06199f', 'date' => '13 Sep 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.7.tar.gz', 'name' => 'PHP 5.4.7 (tar.gz)', 'md5' => '94661b761dcfdfdd5108e8b12e0dd4f8', 'date' => '13 Sep 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.7 binaries and source', @@ -15448,29 +15448,29 @@ $OLDRELEASES = array ( 'date' => '13 Sep 2012', 'museum' => true, ), - '5.4.6' => + '5.4.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.6.tar.bz2', 'name' => 'PHP 5.4.6 (tar.bz2)', 'md5' => 'c9aa0f4996d1b91ee9e45afcfaeb5d2e', 'date' => '16 Aug 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.6.tar.gz', 'name' => 'PHP 5.4.6 (tar.gz)', 'md5' => 'efe59afb73190c9bd6d50614998ffceb', 'date' => '16 Aug 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.6 binaries and source', @@ -15479,29 +15479,29 @@ $OLDRELEASES = array ( 'date' => '16 Aug 2012', 'museum' => true, ), - '5.4.5' => + '5.4.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_5.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.5.tar.bz2', 'name' => 'PHP 5.4.5 (tar.bz2)', 'md5' => 'ffcc7f4dcf2b79d667fe0c110e6cb724', 'date' => '19 July 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.5.tar.gz', 'name' => 'PHP 5.4.5 (tar.gz)', 'md5' => '51fb5bf974d92359f0606dffc810735a', 'date' => '19 July 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.5 binaries and source', @@ -15510,29 +15510,29 @@ $OLDRELEASES = array ( 'date' => '19 July 2012', 'museum' => true, ), - '5.4.4' => + '5.4.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_4.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.4.tar.bz2', 'name' => 'PHP 5.4.4 (tar.bz2)', 'md5' => '1fd98dc3f6f3805cd67bff12a26ed77f', 'date' => '14 June 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.4.tar.gz', 'name' => 'PHP 5.4.4 (tar.gz)', 'md5' => '8366c3626f2275ab8c7ef5e2d6bc5bd7', 'date' => '14 June 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.4.4 binaries and source', @@ -15541,22 +15541,22 @@ $OLDRELEASES = array ( 'date' => '14 June 2012', 'museum' => true, ), - '5.4.3' => + '5.4.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_3.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.3.tar.bz2', 'name' => 'PHP 5.4.3 (tar.bz2)', 'md5' => '51f9488bf8682399b802c48656315cac', 'date' => '08 May 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.3.tar.gz', 'name' => 'PHP 5.4.3 (tar.gz)', @@ -15567,22 +15567,22 @@ $OLDRELEASES = array ( 'date' => '08 May 2012', 'museum' => true, ), - '5.4.2' => + '5.4.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_2.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.2.tar.bz2', 'name' => 'PHP 5.4.2 (tar.bz2)', 'md5' => '252a6546db3a26260b419a883c875615', 'date' => '03 May 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.2.tar.gz', 'name' => 'PHP 5.4.2 (tar.gz)', @@ -15593,22 +15593,22 @@ $OLDRELEASES = array ( 'date' => '03 May 2012', 'museum' => true, ), - '5.4.1' => + '5.4.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_1.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.1.tar.bz2', 'name' => 'PHP 5.4.1 (tar.bz2)', 'md5' => '5b9529ed89dbc48c498e9693d1af3caf', 'date' => '26 April 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.1.tar.gz', 'name' => 'PHP 5.4.1 (tar.gz)', @@ -15619,22 +15619,22 @@ $OLDRELEASES = array ( 'date' => '26 April 2012', 'museum' => true, ), - '5.4.0' => + '5.4.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_4_0.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.4.0.tar.bz2', 'name' => 'PHP 5.4.0 (tar.bz2)', 'md5' => '04bb6f9d71ea86ba05685439d50db074', 'date' => '01 March 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.4.0.tar.gz', 'name' => 'PHP 5.4.0 (tar.gz)', @@ -15645,36 +15645,36 @@ $OLDRELEASES = array ( 'date' => '01 March 2012', 'museum' => true, ), - '5.3.29' => + '5.3.29' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_29.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.29.tar.bz2', 'name' => 'PHP 5.3.29 (tar.bz2)', 'date' => '14 Aug 2014', 'sha256' => 'c4e1cf6972b2a9c7f2777a18497d83bf713cdbecabb65d3ff62ba441aebb0091', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.29.tar.gz', 'name' => 'PHP 5.3.29 (tar.gz)', 'date' => '14 Aug 2014', 'sha256' => '57cf097de3d6c3152dda342f62b1b2e9c988f4cfe300ccfe3c11f3c207a0e317', ), - 2 => + 2 => array ( 'filename' => 'php-5.3.29.tar.xz', 'name' => 'PHP 5.3.29 (tar.xz)', 'date' => '14 Aug 2014', 'sha256' => '8438c2f14ab8f3d6cd2495aa37de7b559e33b610f9ab264f0c61b531bf0c262d', ), - 3 => + 3 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.29 binaries and source', @@ -15683,29 +15683,29 @@ $OLDRELEASES = array ( 'date' => '14 Aug 2014', 'museum' => false, ), - '5.3.28' => + '5.3.28' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_28.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.28.tar.bz2', 'name' => 'PHP 5.3.28 (tar.bz2)', 'date' => '12 Dec 2013', 'sha256' => '0cac960c651c4fbb3d21cf2f2b279a06e21948fb35a0d1439b97296cac1d8513', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.28.tar.gz', 'name' => 'PHP 5.3.28 (tar.gz)', 'date' => '12 Dec 2013', 'sha256' => 'ace8fde82a4275d6dcec4e15feb047416e1813fea46e159dfd113298371396d0', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.28 binaries and source', @@ -15714,29 +15714,29 @@ $OLDRELEASES = array ( 'date' => '11 Jul 2013', 'museum' => false, ), - '5.3.27' => + '5.3.27' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_27.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.27.tar.bz2', 'name' => 'PHP 5.3.27 (tar.bz2)', 'date' => '11 Jul 2013', 'sha256' => 'e12db21c623b82a2244c4dd9b06bb75af20868c1b748a105a6829a5acc36b287', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.27.tar.gz', 'name' => 'PHP 5.3.27 (tar.gz)', 'date' => '11 Jul 2013', 'sha256' => '5ecd737fc79ad33b5c79a9784c0b4211d211ba682d4d721ac6ce975907a5b12b', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.27 binaries and source', @@ -15745,29 +15745,29 @@ $OLDRELEASES = array ( 'date' => '11 Jul 2013', 'museum' => false, ), - '5.3.26' => + '5.3.26' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_26.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.26.tar.bz2', 'name' => 'PHP 5.3.26 (tar.bz2)', 'md5' => 'd71db8d92edbb48beb5b645b55471139', 'date' => '06 Jun 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.26.tar.gz', 'name' => 'PHP 5.3.26 (tar.gz)', 'md5' => 'a430a48b8939fe1f8915ee38681b0afa', 'date' => '06 Jun 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.26 binaries and source', @@ -15776,29 +15776,29 @@ $OLDRELEASES = array ( 'date' => '06 Jun 2013', 'museum' => true, ), - '5.3.25' => + '5.3.25' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_25.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.25.tar.bz2', 'name' => 'PHP 5.3.25 (tar.bz2)', 'md5' => 'd71db8d92edbb48beb5b645b55471139', 'date' => '09 May 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.25.tar.gz', 'name' => 'PHP 5.3.25 (tar.gz)', 'md5' => 'a430a48b8939fe1f8915ee38681b0afa', 'date' => '09 May 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.25 binaries and source', @@ -15807,29 +15807,29 @@ $OLDRELEASES = array ( 'date' => '09 May 2013', 'museum' => true, ), - '5.3.24' => + '5.3.24' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_24.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.24.tar.bz2', 'name' => 'PHP 5.3.24 (tar.bz2)', 'md5' => '9820604df98c648297dcd31ffb8214e8', 'date' => '11 Apr 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.24.tar.gz', 'name' => 'PHP 5.3.24 (tar.gz)', 'md5' => 'cb0311a6a5ed6ffff8f41f713f9d8e84', 'date' => '11 Apr 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.24 binaries and source', @@ -15838,29 +15838,29 @@ $OLDRELEASES = array ( 'date' => '11 Apr 2013', 'museum' => true, ), - '5.3.23' => + '5.3.23' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_23.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.23.tar.bz2', 'name' => 'PHP 5.3.23 (tar.bz2)', 'md5' => 'ab7bd1dd3bbc8364cb9fcaa2d79fb502', 'date' => '14 Mar 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.23.tar.gz', 'name' => 'PHP 5.3.23 (tar.gz)', 'md5' => '9cd92b0de2b51dcd372f46fa623984f4', 'date' => '14 Mar 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.23 binaries and source', @@ -15869,29 +15869,29 @@ $OLDRELEASES = array ( 'date' => '14 Mar 2013', 'museum' => true, ), - '5.3.22' => + '5.3.22' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_22.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.22.tar.bz2', 'name' => 'PHP 5.3.22 (tar.bz2)', 'md5' => 'bf351426fc7f97aa13914062958a6100', 'date' => '21 Feb 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.22.tar.gz', 'name' => 'PHP 5.3.22 (tar.gz)', 'md5' => '5008d8e70195d933e30bfbae3651b4ed', 'date' => '21 Feb 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.22 binaries and source', @@ -15900,29 +15900,29 @@ $OLDRELEASES = array ( 'date' => '21 Feb 2013', 'museum' => true, ), - '5.3.21' => + '5.3.21' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_21.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.21.tar.bz2', 'name' => 'PHP 5.3.21 (tar.bz2)', 'md5' => '1b214fc19bb5f5c0902ba27c74d5f4a2', 'date' => '17 Jan 2013', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.21.tar.gz', 'name' => 'PHP 5.3.21 (tar.gz)', 'md5' => 'f47fbe3407520e5d9d895168950aa683', 'date' => '17 Jan 2013', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.21 binaries and source', @@ -15931,29 +15931,29 @@ $OLDRELEASES = array ( 'date' => '17 Jan 2013', 'museum' => true, ), - '5.3.20' => + '5.3.20' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_20.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.20.tar.bz2', 'name' => 'PHP 5.3.20 (tar.bz2)', 'md5' => '00241b9e89e93adf3baac32c56211e4e', 'date' => '20 Dec 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.20.tar.gz', 'name' => 'PHP 5.3.20 (tar.gz)', 'md5' => '1e202851bf2ba1ee96d7dc5b48944119', 'date' => '20 Dec 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.20 binaries and source', @@ -15962,29 +15962,29 @@ $OLDRELEASES = array ( 'date' => '20 Dec 2012', 'museum' => true, ), - '5.3.19' => + '5.3.19' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_19.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.19.tar.bz2', 'name' => 'PHP 5.3.19 (tar.bz2)', 'md5' => 'e1d2a3ec7849d4b3032bd1abf1916aa4', 'date' => '22 Nov 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.19.tar.gz', 'name' => 'PHP 5.3.19 (tar.gz)', 'md5' => 'e1bcda4f14bb39ba041297abbf18f8d1', 'date' => '22 Nov 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.4', 'name' => 'Windows 5.3.19 binaries and source', @@ -15993,29 +15993,29 @@ $OLDRELEASES = array ( 'date' => '22 Nov 2012', 'museum' => true, ), - '5.3.18' => + '5.3.18' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_18.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.18.tar.bz2', 'name' => 'PHP 5.3.18 (tar.bz2)', 'md5' => '52539c19d0f261560af3c030143dfa8f', 'date' => '18 Oct 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.18.tar.gz', 'name' => 'PHP 5.3.18 (tar.gz)', 'md5' => 'ff2009aadc7c4d1444f6cd8e45f39a41', 'date' => '18 Oct 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.18 binaries and source', @@ -16024,29 +16024,29 @@ $OLDRELEASES = array ( 'date' => '18 Oct 2012', 'museum' => true, ), - '5.3.17' => + '5.3.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_17.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.17.tar.bz2', 'name' => 'PHP 5.3.17 (tar.bz2)', 'md5' => '29ee79c941ee85d6c1555c176f12f7ef', 'date' => '13 Sep 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.17.tar.gz', 'name' => 'PHP 5.3.17 (tar.gz)', 'md5' => '002e02e36c2cbcada8c49a7e5956d787', 'date' => '13 Sep 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.17 binaries and source', @@ -16055,29 +16055,29 @@ $OLDRELEASES = array ( 'date' => '13 Sep 2012', 'museum' => true, ), - '5.3.16' => + '5.3.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_16.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.16.tar.bz2', 'name' => 'PHP 5.3.16 (tar.bz2)', 'md5' => '99cfd78531643027f60c900e792d21be', 'date' => '16 Aug 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.16.tar.gz', 'name' => 'PHP 5.3.16 (tar.gz)', 'md5' => '59b776edeac2897ebe3712dcc94b6706', 'date' => '16 Aug 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.16 binaries and source', @@ -16086,29 +16086,29 @@ $OLDRELEASES = array ( 'date' => '16 Aug 2012', 'museum' => true, ), - '5.3.15' => + '5.3.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_15.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.15.tar.bz2', 'name' => 'PHP 5.3.15 (tar.bz2)', 'md5' => '5cfcfd0fa4c4da7576f397073e7993cc', 'date' => '19 July 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.15.tar.gz', 'name' => 'PHP 5.3.15 (tar.gz)', 'md5' => '7c885c79a611b89f3a1095fce6eae5c6', 'date' => '19 July 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.15 binaries and source', @@ -16117,29 +16117,29 @@ $OLDRELEASES = array ( 'date' => '19 July 2012', 'museum' => true, ), - '5.3.14' => + '5.3.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_14.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.14.tar.bz2', 'name' => 'PHP 5.3.14 (tar.bz2)', 'md5' => '370be99c5cdc2e756c82c44d774933c8', 'date' => '14 June 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.14.tar.gz', 'name' => 'PHP 5.3.14 (tar.gz)', 'md5' => '148730865242a031a638ee3bab4a9d4d', 'date' => '14 June 2012', ), - 2 => + 2 => array ( 'link' => 'http://windows.php.net/download/#php-5.3', 'name' => 'Windows 5.3.14 binaries and source', @@ -16148,22 +16148,22 @@ $OLDRELEASES = array ( 'date' => '14 June 2012', 'museum' => true, ), - '5.3.13' => + '5.3.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_13.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.13.tar.bz2', 'name' => 'PHP 5.3.13 (tar.bz2)', 'md5' => '370be99c5cdc2e756c82c44d774933c8', 'date' => '08 May 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.13.tar.gz', 'name' => 'PHP 5.3.13 (tar.gz)', @@ -16174,22 +16174,22 @@ $OLDRELEASES = array ( 'date' => '08 May 2012', 'museum' => true, ), - '5.3.12' => + '5.3.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_12.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.12.tar.bz2', 'name' => 'PHP 5.3.12 (tar.bz2)', 'md5' => 'cf02c29be279c506cbd4ffc2819d7c82', 'date' => '03 May 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.12.tar.gz', 'name' => 'PHP 5.3.12 (tar.gz)', @@ -16200,22 +16200,22 @@ $OLDRELEASES = array ( 'date' => '03 May 2012', 'museum' => true, ), - '5.3.11' => + '5.3.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_11.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.11.tar.bz2', 'name' => 'PHP 5.3.11 (tar.bz2)', 'md5' => '5b9529ed89dbc48c498e9693d1af3caf', 'date' => '26 April 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.11.tar.gz', 'name' => 'PHP 5.3.11 (tar.gz)', @@ -16226,22 +16226,22 @@ $OLDRELEASES = array ( 'date' => '26 April 2012', 'museum' => true, ), - '5.3.10' => + '5.3.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_10.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.10.tar.bz2', 'name' => 'PHP 5.3.10 (tar.bz2)', 'md5' => '816259e5ca7d0a7e943e56a3bb32b17f', 'date' => '02 February 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.10.tar.gz', 'name' => 'PHP 5.3.10 (tar.gz)', @@ -16252,22 +16252,22 @@ $OLDRELEASES = array ( 'date' => '02 February 2012', 'museum' => true, ), - '5.3.9' => + '5.3.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.9.tar.bz2', 'name' => 'PHP 5.3.9 (tar.bz2)', 'md5' => 'dd3288ed5c08cd61ac5bf619cb357521', 'date' => '10 January 2012', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.9.tar.gz', 'name' => 'PHP 5.3.9 (tar.gz)', @@ -16278,22 +16278,22 @@ $OLDRELEASES = array ( 'date' => '10 January 2012', 'museum' => true, ), - '5.3.8' => + '5.3.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.8.tar.bz2', 'name' => 'PHP 5.3.8 (tar.bz2)', 'md5' => '704cd414a0565d905e1074ffdc1fadfb', 'date' => '23 August 2011', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.8.tar.gz', 'name' => 'PHP 5.3.8 (tar.gz)', @@ -16304,22 +16304,22 @@ $OLDRELEASES = array ( 'date' => '23 August 2011', 'museum' => true, ), - '5.3.7' => + '5.3.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_7.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.7.tar.bz2', 'name' => 'PHP 5.3.7 (tar.bz2)', 'md5' => '2d47d003c96de4e88863ff38da61af33', 'date' => '18 August 2011', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.7.tar.gz', 'name' => 'PHP 5.3.7 (tar.gz)', @@ -16330,22 +16330,22 @@ $OLDRELEASES = array ( 'date' => '18 August 2011', 'museum' => true, ), - '5.3.6' => + '5.3.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.6.tar.bz2', 'name' => 'PHP 5.3.6 (tar.bz2)', 'md5' => '2286f5a82a6e8397955a0025c1c2ad98', 'date' => '19 March 2011', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.6.tar.gz', 'name' => 'PHP 5.3.6 (tar.gz)', @@ -16356,22 +16356,22 @@ $OLDRELEASES = array ( 'date' => '19 March 2011', 'museum' => true, ), - '5.3.5' => + '5.3.5' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_5.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.5.tar.bz2', 'name' => 'PHP 5.3.5 (tar.bz2)', 'md5' => '8aaf20c95e91f25c5b6a591e5d6d61b9', 'date' => '06 January 2011', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.5.tar.gz', 'name' => 'PHP 5.3.5 (tar.gz)', @@ -16382,22 +16382,22 @@ $OLDRELEASES = array ( 'date' => '06 January 2011', 'museum' => true, ), - '5.3.4' => + '5.3.4' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_4.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.4.tar.bz2', 'name' => 'PHP 5.3.4 (tar.bz2)', 'md5' => '2c069d8f690933e3bf6a8741ed818150', 'date' => '09 December 2010', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.4.tar.gz', 'name' => 'PHP 5.3.4 (tar.gz)', @@ -16408,22 +16408,22 @@ $OLDRELEASES = array ( 'date' => '09 December 2010', 'museum' => true, ), - '5.2.17' => + '5.2.17' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_17.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.17.tar.bz2', 'name' => 'PHP 5.2.17 (tar.bz2)', 'md5' => 'b27947f3045220faf16e4d9158cbfe13', 'date' => '06 January 2011', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.17.tar.gz', 'name' => 'PHP 5.2.17 (tar.gz)', @@ -16434,22 +16434,22 @@ $OLDRELEASES = array ( 'date' => '06 January 2011', 'museum' => true, ), - '5.2.16' => + '5.2.16' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_16.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.16.tar.bz2', 'name' => 'PHP 5.2.16 (tar.bz2)', 'md5' => '3b0bd012bd53bac9a5fefca61eccd5c6', 'date' => '16 December 2010', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.16.tar.gz', 'name' => 'PHP 5.2.16 (tar.gz)', @@ -16460,22 +16460,22 @@ $OLDRELEASES = array ( 'date' => '16 December 2010', 'museum' => true, ), - '5.2.15' => + '5.2.15' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_15.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.15.tar.bz2', 'name' => 'PHP 5.2.15 (tar.bz2)', 'md5' => 'd4ccad187b12835024980a0cea362893', 'date' => '09 December 2010', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.15.tar.gz', 'name' => 'PHP 5.2.15 (tar.gz)', @@ -16486,22 +16486,22 @@ $OLDRELEASES = array ( 'date' => '09 December 2010', 'museum' => true, ), - '5.3.3' => + '5.3.3' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_3.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.3.tar.bz2', 'name' => 'PHP 5.3.3 (tar.bz2)', 'md5' => '21ceeeb232813c10283a5ca1b4c87b48', 'date' => '22 July 2010', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.3.tar.gz', 'name' => 'PHP 5.3.3 (tar.gz)', @@ -16512,22 +16512,22 @@ $OLDRELEASES = array ( 'date' => '22 July 2010', 'museum' => true, ), - '5.2.14' => + '5.2.14' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_14.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.14.tar.bz2', 'name' => 'PHP 5.2.14 (tar.bz2)', 'md5' => '21ceeeb232813c10283a5ca1b4c87b48', 'date' => '22 July 2010', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.14.tar.gz', 'name' => 'PHP 5.2.14 (tar.gz)', @@ -16538,22 +16538,22 @@ $OLDRELEASES = array ( 'date' => '22 July 2010', 'museum' => true, ), - '5.3.2' => + '5.3.2' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_2.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.2.tar.bz2', 'name' => 'PHP 5.3.2 (tar.bz2)', 'md5' => '46f500816125202c48a458d0133254a4', 'date' => '04 Mar 2010', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.2.tar.gz', 'name' => 'PHP 5.3.2 (tar.gz)', @@ -16564,22 +16564,22 @@ $OLDRELEASES = array ( 'date' => '04 Mar 2010', 'museum' => true, ), - '5.2.13' => + '5.2.13' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_13.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.13.tar.bz2', 'name' => 'PHP 5.2.13 (tar.bz2)', 'md5' => 'eb4d0766dc4fb9667f05a68b6041e7d1', 'date' => '25 Feb 2010', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.13.tar.gz', 'name' => 'PHP 5.2.13 (tar.gz)', @@ -16587,9 +16587,9 @@ $OLDRELEASES = array ( 'date' => '25 Feb 2010', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.13-Win32.zip', 'name' => 'PHP 5.2.13 zip package', @@ -16597,7 +16597,7 @@ $OLDRELEASES = array ( 'date' => '25 Feb 2010', 'note' => '', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.13-win32-installer.msi', 'name' => 'PHP 5.2.13 installer', @@ -16605,14 +16605,14 @@ $OLDRELEASES = array ( 'date' => '25 Feb 2010', 'note' => '', ), - 2 => + 2 => array ( 'filename' => 'php-debug-pack-5.2.13-Win32.zip', 'name' => 'PHP 5.2.13 Win32 Debug Pack', 'md5' => 'e3382d5acbb527d21b768766f563a75d', 'date' => '25 Feb 2010', ), - 3 => + 3 => array ( 'filename' => 'php-5.2.13-nts-Win32.zip', 'name' => 'PHP 5.2.13 Non-thread-safe zip package', @@ -16620,14 +16620,14 @@ $OLDRELEASES = array ( 'date' => '25 Feb 2010', 'note' => '', ), - 4 => + 4 => array ( 'filename' => 'php-5.2.13-nts-win32-installer.msi', 'name' => 'PHP 5.2.13 Non-thread-safe installer', 'md5' => 'd0e502db99565afde77b4f58f13fbad2', 'date' => '25 Feb 2010', ), - 5 => + 5 => array ( 'filename' => 'php-debug-pack-5.2.13-nts-Win32.zip', 'name' => 'PHP 5.2.13 Non-thread-safe Win32 Debug Pack', @@ -16638,22 +16638,22 @@ $OLDRELEASES = array ( 'date' => '25 Feb 2010', 'museum' => true, ), - '5.3.1' => + '5.3.1' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_1.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.1.tar.bz2', 'name' => 'PHP 5.3.1 (tar.bz2)', 'md5' => '63e97ad450f0f7259e785100b634c797', 'date' => '19 Nov 2009', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.1.tar.gz', 'name' => 'PHP 5.3.1 (tar.gz)', @@ -16664,22 +16664,22 @@ $OLDRELEASES = array ( 'date' => '19 Nov 2009', 'museum' => true, ), - '5.2.12' => + '5.2.12' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_12.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.12.tar.bz2', 'name' => 'PHP 5.2.12 (tar.bz2)', 'md5' => '5b7077e366c7eeab34da31dd860a1923', 'date' => '17 December 2009', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.12.tar.gz', 'name' => 'PHP 5.2.12 (tar.gz)', @@ -16687,9 +16687,9 @@ $OLDRELEASES = array ( 'date' => '17 December 2009', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.12-Win32.zip', 'name' => 'PHP 5.2.12 zip package', @@ -16697,7 +16697,7 @@ $OLDRELEASES = array ( 'date' => '17 December 2009', 'note' => '', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.12-win32-installer.msi', 'name' => 'PHP 5.2.12 installer', @@ -16705,14 +16705,14 @@ $OLDRELEASES = array ( 'date' => '17 December 2009', 'note' => '', ), - 2 => + 2 => array ( 'filename' => 'php-debug-pack-5.2.12-Win32.zip', 'name' => 'PHP 5.2.12 Win32 Debug Pack', 'md5' => 'b21a5abb9e5bae4c657d0983986c4434', 'date' => '17 December 2009', ), - 3 => + 3 => array ( 'filename' => 'php-5.2.12-nts-Win32.zip', 'name' => 'PHP 5.2.12 Non-thread-safe zip package', @@ -16720,14 +16720,14 @@ $OLDRELEASES = array ( 'date' => '17 December 2009', 'note' => '', ), - 4 => + 4 => array ( 'filename' => 'php-5.2.12-nts-win32-installer.msi', 'name' => 'PHP 5.2.12 Non-thread-safe installer', 'md5' => '418656307a52c99f2175c748da31a9d8', 'date' => '17 December 2009', ), - 5 => + 5 => array ( 'filename' => 'php-debug-pack-5.2.12-nts-Win32.zip', 'name' => 'PHP 5.2.12 Non-thread-safe Win32 Debug Pack', @@ -16738,22 +16738,22 @@ $OLDRELEASES = array ( 'date' => '17 December 2009', 'museum' => true, ), - '5.2.11' => + '5.2.11' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_11.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.11.tar.bz2', 'name' => 'PHP 5.2.11 (tar.bz2)', 'md5' => '286bf34630f5643c25ebcedfec5e0a09', 'date' => '17 September 2009', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.11.tar.gz', 'name' => 'PHP 5.2.11 (tar.gz)', @@ -16761,9 +16761,9 @@ $OLDRELEASES = array ( 'date' => '17 September 2009', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.11-Win32.zip', 'name' => 'PHP 5.2.11 zip package', @@ -16771,7 +16771,7 @@ $OLDRELEASES = array ( 'date' => '17 September 2009', 'note' => '', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.11-win32-installer.msi', 'name' => 'PHP 5.2.11 installer', @@ -16779,14 +16779,14 @@ $OLDRELEASES = array ( 'date' => '17 September 2009', 'note' => '', ), - 2 => + 2 => array ( 'filename' => 'php-debug-pack-5.2.11-Win32.zip', 'name' => 'PHP 5.2.11 Win32 Debug Pack', 'md5' => '38cb1b783dd08dff41f445b582d2ffed', 'date' => '17 September 2009', ), - 3 => + 3 => array ( 'filename' => 'php-5.2.11-nts-Win32.zip', 'name' => 'PHP 5.2.11 Non-thread-safe zip package', @@ -16794,14 +16794,14 @@ $OLDRELEASES = array ( 'date' => '17 September 2009', 'note' => '', ), - 4 => + 4 => array ( 'filename' => 'php-5.2.11-nts-win32-installer.msi', 'name' => 'PHP 5.2.11 Non-thread-safe installer', 'md5' => '4fe1344093e26c2a51a82094bac131ad', 'date' => '17 September 2009', ), - 5 => + 5 => array ( 'filename' => 'php-debug-pack-5.2.11-nts-Win32.zip', 'name' => 'PHP 5.2.11 Non-thread-safe Win32 Debug Pack', @@ -16812,22 +16812,22 @@ $OLDRELEASES = array ( 'date' => '17 September 2009', 'museum' => true, ), - '5.3.0' => + '5.3.0' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_3_0.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.3.0.tar.bz2', 'name' => 'PHP 5.3.0 (tar.bz2)', 'md5' => '846760cd655c98dfd86d6d97c3d964b0', 'date' => '30 June 2009', ), - 1 => + 1 => array ( 'filename' => 'php-5.3.0.tar.gz', 'name' => 'PHP 5.3.0 (tar.gz)', @@ -16838,22 +16838,22 @@ $OLDRELEASES = array ( 'date' => '30 June 2009', 'museum' => true, ), - '5.2.10' => + '5.2.10' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_10.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.10.tar.bz2', 'name' => 'PHP 5.2.10 (tar.bz2)', 'md5' => '15c7b5a87f57332d6fc683528e28247b', 'date' => '18 June 2009', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.10.tar.gz', 'name' => 'PHP 5.2.10 (tar.gz)', @@ -16861,9 +16861,9 @@ $OLDRELEASES = array ( 'date' => '18 June 2009', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.10-Win32.zip', 'name' => 'PHP 5.2.10 zip package', @@ -16871,7 +16871,7 @@ $OLDRELEASES = array ( 'date' => '18 June 2009', 'note' => '', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.10-win32-installer.msi', 'name' => 'PHP 5.2.10 installer', @@ -16879,14 +16879,14 @@ $OLDRELEASES = array ( 'date' => '18 June 2009', 'note' => '', ), - 2 => + 2 => array ( 'filename' => 'php-debug-pack-5.2.10-Win32.zip', 'name' => 'PHP 5.2.10 Win32 Debug Pack', 'md5' => 'f6bdea0e1f71ca46f78e78c86e86606', 'date' => '18 June 2009', ), - 3 => + 3 => array ( 'filename' => 'php-5.2.10-nts-Win32.zip', 'name' => 'PHP 5.2.10 Non-thread-safe zip package', @@ -16894,14 +16894,14 @@ $OLDRELEASES = array ( 'date' => '18 June 2009', 'note' => '', ), - 4 => + 4 => array ( 'filename' => 'php-5.2.10-nts-win32-installer.msi', 'name' => 'PHP 5.2.10 Non-thread-safe installer', 'md5' => 'e341deb2872d3f8f4589593da88bbede', 'date' => '18 June 2009', ), - 5 => + 5 => array ( 'filename' => 'php-debug-pack-5.2.10-nts-Win32.zip', 'name' => 'PHP 5.2.10 Non-thread-safe Win32 Debug Pack', @@ -16912,22 +16912,22 @@ $OLDRELEASES = array ( 'date' => '18 June 2009', 'museum' => true, ), - '5.2.9' => + '5.2.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.9.tar.bz2', 'name' => 'PHP 5.2.9 (tar.bz2)', 'md5' => '280d6cda7f72a4fc6de42fda21ac2db7', 'date' => '26 February 2009', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.9.tar.gz', 'name' => 'PHP 5.2.9 (tar.gz)', @@ -16935,9 +16935,9 @@ $OLDRELEASES = array ( 'date' => '26 February 2009', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.9-2-Win32.zip', 'name' => 'PHP 5.2.9-2 zip package', @@ -16945,7 +16945,7 @@ $OLDRELEASES = array ( 'date' => '8 April 2009', 'note' => 'Updated 9th of April: Added the missing oci8 DLL', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.9-2-win32-installer.msi', 'name' => 'PHP 5.2.9-2 installer', @@ -16953,14 +16953,14 @@ $OLDRELEASES = array ( 'date' => '8 April 2009', 'note' => 'Updated 9th of April: Added the missing oci8 DLL', ), - 2 => + 2 => array ( 'filename' => 'php-debug-pack-5.2.9-2-Win32.zip', 'name' => 'PHP 5.2.9 Win32 Debug Pack', 'md5' => 'b52e9a152e105c7391c832fdfe0fa06f', 'date' => '8 April 2009', ), - 3 => + 3 => array ( 'filename' => 'php-5.2.9-2-nts-Win32.zip', 'name' => 'PHP 5.2.9-2 Non-thread-safe zip package', @@ -16968,7 +16968,7 @@ $OLDRELEASES = array ( 'date' => '8 April 2009', 'note' => 'Updated 9th of April: Added the missing oci8 DLL', ), - 4 => + 4 => array ( 'filename' => 'php-5.2.9-2-nts-win32-installer.msi', 'name' => 'PHP 5.2.9-2 Non-thread-safe installer', @@ -16976,7 +16976,7 @@ $OLDRELEASES = array ( 'date' => '8 April 2009', 'note' => 'Updated 9th of April: Added the missing oci8 DLL', ), - 5 => + 5 => array ( 'filename' => 'php-debug-pack-5.2.9-2-nts-Win32.zip', 'name' => 'PHP 5.2.9 Non-thread-safe Win32 Debug Pack', @@ -16987,22 +16987,22 @@ $OLDRELEASES = array ( 'date' => '26 February 2009', 'museum' => true, ), - '5.2.8' => + '5.2.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.8.tar.bz2', 'name' => 'PHP 5.2.8 (tar.bz2)', 'md5' => '8760a833cf10433d3e72271ab0d0eccf', 'date' => '08 December 2008', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.8.tar.gz', 'name' => 'PHP 5.2.8 (tar.gz)', @@ -17010,9 +17010,9 @@ $OLDRELEASES = array ( 'date' => '08 December 2008', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.8-Win32.zip', 'name' => 'PHP 5.2.8 zip package', @@ -17020,7 +17020,7 @@ $OLDRELEASES = array ( 'date' => '08 December 2008', 'note' => '', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.8-win32-installer.msi', 'name' => 'PHP 5.2.8 installer', @@ -17028,14 +17028,14 @@ $OLDRELEASES = array ( 'date' => '08 December 2008', 'note' => '', ), - 2 => + 2 => array ( 'filename' => 'php-debug-pack-5.2.8-Win32.zip', 'name' => 'PHP 5.2.8 Win32 Debug Pack', 'md5' => 'fabc6e79c1c66dc80320165336b5ed54', 'date' => '08 December 2008', ), - 3 => + 3 => array ( 'filename' => 'php-5.2.8-nts-Win32.zip', 'name' => 'PHP 5.2.8 Non-thread-safe zip package', @@ -17043,14 +17043,14 @@ $OLDRELEASES = array ( 'date' => '08 December 2008', 'note' => '', ), - 4 => + 4 => array ( 'filename' => 'php-5.2.8-nts-win32-installer.msi', 'name' => 'PHP 5.2.8 Non-thread-safe installer', 'md5' => 'd4490964818542c416644b3d67f5b350', 'date' => '08 December 2008', ), - 5 => + 5 => array ( 'filename' => 'php-debug-pack-5.2.8-nts-Win32.zip', 'name' => 'PHP 5.2.8 Non-thread-safe Win32 Debug Pack', @@ -17061,22 +17061,22 @@ $OLDRELEASES = array ( 'date' => '08 December 2008', 'museum' => true, ), - '5.2.6' => + '5.2.6' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_6.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.6.tar.bz2', 'name' => 'PHP 5.2.6 (tar.bz2)', 'md5' => '7380ffecebd95c6edb317ef861229ebd', 'date' => '01 May 2008', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.6.tar.gz', 'name' => 'PHP 5.2.6 (tar.gz)', @@ -17084,9 +17084,9 @@ $OLDRELEASES = array ( 'date' => '01 May 2008', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.6-Win32.zip', 'name' => 'PHP 5.2.6 zip package', @@ -17094,7 +17094,7 @@ $OLDRELEASES = array ( 'date' => '3 May 2008', 'note' => 'Update May 3rd: Added missing XSL and IMAP extension', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.6-win32-installer.msi', 'name' => 'PHP 5.2.6 installer', @@ -17102,7 +17102,7 @@ $OLDRELEASES = array ( 'date' => '6 May 2008', 'note' => 'Update May 6th: Added missing XSL and IMAP extension', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.2.6-Win32.zip', 'name' => 'PECL 5.2.6 Win32 binaries', @@ -17110,7 +17110,7 @@ $OLDRELEASES = array ( 'date' => '3 May 2008', 'note' => 'Update May 3rd: Added missing XSL and IMAP extension', ), - 3 => + 3 => array ( 'filename' => 'php-debug-pack-5.2.6-Win32.zip', 'name' => 'PHP 5.2.6 Win32 Debug Pack', @@ -17118,7 +17118,7 @@ $OLDRELEASES = array ( 'date' => '3 May 2008', 'note' => 'Update May 3rd: Added missing XSL and IMAP extension', ), - 4 => + 4 => array ( 'filename' => 'php-5.2.6-nts-Win32.zip', 'name' => 'PHP 5.2.6 Non-thread-safe zip package', @@ -17126,7 +17126,7 @@ $OLDRELEASES = array ( 'date' => '3 May 2008', 'note' => 'Update May 3rd: Added missing XSL and IMAP extension', ), - 5 => + 5 => array ( 'filename' => 'php-5.2.6-nts-win32-installer.msi', 'name' => 'PHP 5.2.6 Non-thread-safe installer', @@ -17134,7 +17134,7 @@ $OLDRELEASES = array ( 'date' => '6 May 2008', 'note' => 'Update May 6th: Added missing XSL and IMAP extension', ), - 6 => + 6 => array ( 'filename' => 'php-debug-pack-5.2.6-nts-Win32.zip', 'name' => 'PHP 5.2.6 Win32 Debug Pack', @@ -17142,7 +17142,7 @@ $OLDRELEASES = array ( 'date' => '3 May 2008', 'note' => 'Update May 3rd: Added missing XSL and IMAP extension', ), - 7 => + 7 => array ( 'filename' => 'pecl-5.2.6-nts-Win32.zip', 'name' => 'PECL 5.2.6 Non-thread-safe Win32 binaries', @@ -17154,509 +17154,509 @@ $OLDRELEASES = array ( 'date' => '01 May 2008', 'museum' => true, ), - '5.2.5' => + '5.2.5' => array ( 'date' => '08 November 2007', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.5.tar.bz2', 'name' => 'Source (tar.bz2)', 'md5' => '1fe14ca892460b09f06729941a1bb605', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.5.tar.gz', 'name' => 'Source (tar.gz)', 'md5' => '61a0e1661b70760acc77bc4841900b7a', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.5-Win32.zip', 'name' => 'Windows binary', 'md5' => 'a1e31c0d872ab030a2256b1cd6d3b7d1', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.2.5-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.2.5', 'md5' => 'a3553b61c9332d08a5044cf9bf89f2df', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_5.php', ), 'museum' => true, ), - '5.2.4' => + '5.2.4' => array ( 'date' => '30 August 2007', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.4.tar.bz2', 'name' => 'Source (tar.bz2)', 'md5' => '55c97a671fdabf462cc7a82971a656d2', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.4.tar.gz', 'name' => 'Source (tar.gz)', 'md5' => '0826e231c3148b29fd039d7a8c893ad3', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.4-Win32.zip', 'name' => 'Windows binary', 'md5' => '979b8a305b028b296b97ed72322026b2', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.2.4-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.2.4', 'md5' => 'dd98dfe607ceb98e727c394d5bd679fb', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_4.php', ), 'museum' => true, ), - '5.2.3' => + '5.2.3' => array ( 'date' => '31 May 2007', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.3.tar.bz2', 'name' => 'Source (tar.bz2)', 'md5' => 'eb50b751c8e1ced05bd012d5a0e4dec3', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.3.tar.gz', 'name' => 'Source (tar.gz)', 'md5' => 'df79b04d63fc4c1ccb6d8ea58a9cf3ac', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.3-Win32.zip', 'name' => 'Windows binary', 'md5' => 'ff6e5dc212823009e68f26d66d85cbac', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.2.3-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.2.3', 'md5' => '0480ffaf5a5333e83d90d75cece54748', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_3.php', ), 'museum' => true, ), - '5.2.2' => + '5.2.2' => array ( 'date' => '03 May 2007', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.2.tar.bz2', 'name' => 'Source (tar.bz2)', 'md5' => 'd084337867d70b50a10322577be0e44e', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.2.tar.gz', 'name' => 'Source (tar.gz)', 'md5' => '7a920d0096900b2b962b21dc5c55fe3c', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.2-Win32.zip', 'name' => 'Windows binary', 'md5' => '634cf45c34f80dfb1284cabf1bbb1417', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.2.2-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.2.2', 'md5' => '5d206368799dfbac983d83954328ae3a', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_2.php', ), 'museum' => true, ), - '5.2.1' => + '5.2.1' => array ( 'date' => '08 Feb 2007', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.1.tar.bz2', 'name' => 'Source (tar.bz2)', 'md5' => '261218e3569a777dbd87c16a15f05c8d', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.1.tar.gz', 'name' => 'Source (tar.gz)', 'md5' => '604eaee2b834bb037d2c83e53e300d3f', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.1-Win32.zip', 'name' => 'Windows binary', 'md5' => '682dd66fb03c7dd24c522f474e1b04b6', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.2.1-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.2.1', 'md5' => 'dc8b394146faf7effa6f26df02e8e534', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_1.php', ), 'museum' => true, ), - '5.2.0' => + '5.2.0' => array ( 'date' => '02 Nov 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.0.tar.bz2', 'name' => 'Source (tar.bz2)', 'md5' => 'e6029fafcee029edcfa2ceed7a005333', ), - 1 => + 1 => array ( 'filename' => 'php-5.2.0.tar.gz', 'name' => 'Source (tar.gz)', 'md5' => '52d7e8b3d8d7573e75c97340f131f988', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.2.0-Win32.zip', 'name' => 'Windows binary', 'md5' => '910734e96f41190020272d80b82ce553', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.2.0-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.2.0', 'md5' => '638f5997884ae3ce35d2b3ec12f399b2', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_2_0.php', ), 'museum' => true, ), - '5.1.6' => + '5.1.6' => array ( 'date' => '24 Aug 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.6.tar.bz2', 'name' => 'Source (tar.bz2)', ), - 1 => + 1 => array ( 'filename' => 'php-5.1.6.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.6-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.1.6-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.1.6', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_1_6.php', ), 'museum' => true, ), - '5.1.5' => + '5.1.5' => array ( 'date' => '17 Aug 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.5.tar.bz2', 'name' => 'Source (tar.bz2)', ), - 1 => + 1 => array ( 'filename' => 'php-5.1.5.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.5-installer.exe', 'name' => 'Windows installer', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.1.5-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.1.5', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_1_5.php', ), 'museum' => true, ), - '5.1.4' => + '5.1.4' => array ( 'date' => '04 May 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.4.tar.bz2', 'name' => 'Source (tar.bz2)', ), - 1 => + 1 => array ( 'filename' => 'php-5.1.4.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.4-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.1.4-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.1.4-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.1.4', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_1_4.php', ), 'museum' => true, ), - '5.1.3' => + '5.1.3' => array ( 'date' => '02 May 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.3.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.3-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.1.3-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.1.3-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.1.3', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_1_3.php', ), 'museum' => true, ), - '5.1.2' => + '5.1.2' => array ( 'date' => '12 Jan 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.2.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.2-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.1.2-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.1.2-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.1.2', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_1_2.php', ), 'museum' => true, ), - '5.1.1' => + '5.1.1' => array ( 'date' => '28 Nov 2005', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.1.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.1-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.1.1-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.1.1-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.1.1', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_1_1.php', ), 'museum' => true, ), - '5.1.0' => + '5.1.0' => array ( 'date' => '24 Nov 2005', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.0.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.1.0-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.1.0-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/5_1_0.php', ), 'museum' => true, ), - '5.0.5' => + '5.0.5' => array ( 'date' => '05 Sep 2005', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.5.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.5-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.0.5-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.0.5-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.0.5', @@ -17664,195 +17664,195 @@ $OLDRELEASES = array ( ), 'museum' => true, ), - '5.0.4' => + '5.0.4' => array ( 'date' => '31 Mar 2005', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.4.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.4-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.0.4-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.0.4-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.0.4', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/55', ), 'museum' => true, ), - '5.0.3' => + '5.0.3' => array ( 'date' => '15 Dec 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.3.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.3-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.0.3-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.0.3-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.0.3', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/54', ), 'museum' => true, ), - '5.0.2' => + '5.0.2' => array ( 'date' => '23 Sep 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.2.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.2-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.0.2-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.0.2-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.0.2', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/53', ), 'museum' => true, ), - '5.0.1' => + '5.0.1' => array ( 'date' => '12 Aug 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.1.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.1-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'pecl-5.0.1-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.0.1', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/51', ), 'museum' => true, ), - '5.0.0' => + '5.0.0' => array ( 'date' => '13 July 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.0.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-5.0.0-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-5.0.0-installer.exe', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'pecl-5.0.0-Win32.zip', 'name' => 'Collection of PECL modules for PHP 5.0.0', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/50', ), 'museum' => true, ), ), - 4 => + 4 => array ( - '4.4.9' => + '4.4.9' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_9.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.9.tar.bz2', 'name' => 'PHP 4.4.9 (tar.bz2)', 'md5' => '2e3b2a0e27f10cb84fd00e5ecd7a1880', 'date' => '07 August 2008', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.9.tar.gz', 'name' => 'PHP 4.4.9 (tar.gz)', @@ -17860,9 +17860,9 @@ $OLDRELEASES = array ( 'date' => '07 August 2008', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.9-Win32.zip', 'name' => 'PHP 4.4.9 zip package', @@ -17873,22 +17873,22 @@ $OLDRELEASES = array ( 'date' => '07 August 2008', 'museum' => true, ), - '4.4.8' => + '4.4.8' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_8.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.8.tar.bz2', 'name' => 'PHP 4.4.8 (tar.bz2)', 'md5' => 'ed31e77414e0331e787487b53732dbca', 'date' => '03 January 2008', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.8.tar.gz', 'name' => 'PHP 4.4.8 (tar.gz)', @@ -17896,9 +17896,9 @@ $OLDRELEASES = array ( 'date' => '03 January 2008', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.8-Win32.zip', 'name' => 'PHP 4.4.8 zip package', @@ -17909,22 +17909,22 @@ $OLDRELEASES = array ( 'date' => '03 January 2008', 'museum' => true, ), - '4.4.7' => + '4.4.7' => array ( - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_7.php', ), - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.7.tar.bz2', 'name' => 'PHP 4.4.7 (tar.bz2)', 'md5' => '3f21b44d37a57ca3876d3aea713c700d', 'date' => '03 May 2007', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.7.tar.gz', 'name' => 'PHP 4.4.7 (tar.gz)', @@ -17932,9 +17932,9 @@ $OLDRELEASES = array ( 'date' => '03 May 2007', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.7-Win32.zip', 'name' => 'PHP 4.4.7 zip package', @@ -17946,857 +17946,857 @@ $OLDRELEASES = array ( 'date' => '03 May 2007', 'museum' => true, ), - '4.4.6' => + '4.4.6' => array ( 'date' => '01 Mar 2007', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.6.tar.bz2', 'name' => 'Source (tar.bz2)', 'md5' => '5db283824310c87efb18c76b4735c4bd', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.6.tar.gz', 'name' => 'Source (tar.gz)', 'md5' => '07c607fcf12435f0078d72fe0de4e3c0', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.6-Win32.zip', 'name' => 'Windows binary', 'md5' => '486764cefb5f7bde39e95c49b2e38635', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_6.php', ), 'museum' => true, ), - '4.4.5' => + '4.4.5' => array ( 'date' => '14 Feb 2007', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.5.tar.bz2', 'name' => 'Source (tar.bz2)', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.5.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.5-Win32.zip', 'name' => 'Windows binary', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_5.php', ), 'museum' => true, ), - '4.4.4' => + '4.4.4' => array ( 'date' => '17 Aug 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.4.tar.bz2', 'name' => 'Source (tar.bz2)', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.4.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.4-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.4-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_4.php', ), 'museum' => true, ), - '4.4.3' => + '4.4.3' => array ( 'date' => '03 Aug 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.3.tar.bz2', 'name' => 'Source (tar.bz2)', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.3.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.3-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.3-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_3.php', ), 'museum' => true, ), - '4.4.2' => + '4.4.2' => array ( 'date' => '13 Jan 2006', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.2.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.2.tar.bz2', 'name' => 'Source (tar.bz2)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.2-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.2-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_2.php', ), 'museum' => true, ), - '4.4.1' => + '4.4.1' => array ( 'date' => '31 Oct 2005', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.1.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.1.tar.bz2', 'name' => 'Source (tar.bz2)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.1-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.1-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_1.php', ), 'museum' => true, ), - '4.4.0' => + '4.4.0' => array ( 'date' => '11 Jul 2005', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.0.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.0.tar.bz2', 'name' => 'Source (tar.bz2)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.4.0-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.4.0-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_4_0.php', ), 'museum' => true, ), - '4.3.11' => + '4.3.11' => array ( 'date' => '31 Mar 2005', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.11.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.11.tar.bz2', 'name' => 'Source (tar.bz2)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.11-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.11-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_11.php', 'French' => '/releases/4_3_11_fr.php', ), 'museum' => true, ), - '4.3.10' => + '4.3.10' => array ( 'date' => '15 Dec 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.10.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.10.tar.bz2', 'name' => 'Source (tar.bz2)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.10-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.10-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_10.php', 'French' => '/releases/4_3_10_fr.php', ), 'museum' => true, ), - '4.3.9' => + '4.3.9' => array ( 'date' => '22 Sep 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.9.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.9.tar.bz2', 'name' => 'Source (tar.bz2)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.9-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.9-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_9.php', 'French' => '/releases/4_3_9_fr.php', ), 'museum' => true, ), - '4.3.8' => + '4.3.8' => array ( 'date' => '13 July 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.8.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.8-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.8-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_8.php', ), 'museum' => true, ), - '4.3.7' => + '4.3.7' => array ( 'date' => '03 June 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.7.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.7-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.7-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_7.php', 'French' => '/releases/4_3_7_fr.php', ), 'museum' => true, ), - '4.3.6' => + '4.3.6' => array ( 'date' => '15 April 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.6.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.6-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.6-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_6.php', 'French' => '/releases/4_3_6_fr.php', ), 'museum' => true, ), - '4.3.5' => + '4.3.5' => array ( 'date' => '26 March 2004', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.5.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.5-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.5-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_5.php', 'French' => '/releases/4_3_5_fr.php', ), 'museum' => true, ), - '4.3.4' => + '4.3.4' => array ( 'date' => '03 November 2003', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.4.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.4-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.4-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_4.php', 'French' => '/releases/4_3_4_fr.php', ), 'museum' => true, ), - '4.3.3' => + '4.3.3' => array ( 'date' => '25 August 2003', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.3.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.3.tar.bz2', 'name' => 'Source (tar.bz2)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.3-Win32.zip', 'name' => 'Windows binary', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_3.php', 'French' => '/releases/4_3_3_fr.php', ), 'museum' => true, ), - '4.3.2' => + '4.3.2' => array ( 'date' => '29 May 2003', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.2.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.2.tar.bz2', 'name' => 'Source (tar.bz2)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.2-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.2-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_2.php', 'French' => '/releases/4_3_2_fr.php', ), 'museum' => true, ), - '4.3.1' => + '4.3.1' => array ( 'date' => '17 February 2003', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.1.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.1-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.1-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_1.php', ), 'museum' => true, ), - '4.3.0' => + '4.3.0' => array ( 'date' => '27 December 2002', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.0.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.3.0-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.3.0-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_3_0.php', 'French' => '/releases/4_3_0_fr.php', ), 'museum' => true, ), - '4.2.3' => + '4.2.3' => array ( 'date' => '6 September 2002', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.2.3.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.2.3-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.2.3-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/37', ), 'museum' => true, ), - '4.2.2' => + '4.2.2' => array ( 'date' => '22 July 2002', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.2.2.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.2.2-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.2.2-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_2_2.php', 'French' => '/releases/4_2_2_fr.php', ), 'museum' => true, ), - '4.2.1' => + '4.2.1' => array ( 'date' => '13 May 2002', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.2.1.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.2.1-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.2.1-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_2_1.php', 'French' => '/releases/4_2_1_fr.php', ), 'museum' => true, ), - '4.2.0' => + '4.2.0' => array ( 'date' => '22 April 2002', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.2.0.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.2.0-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.2.0-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_2_0.php', 'French' => '/releases/4_2_0_fr.php', ), 'museum' => true, ), - '4.1.2' => + '4.1.2' => array ( 'date' => '12 March 2002', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.1.2.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.1.2-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.1.2-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_1_2_win32.php', ), 'museum' => true, ), - '4.1.1' => + '4.1.1' => array ( 'date' => '26 Dec 2001', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.1.1.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.1.1-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.1.1-installer.exe', 'name' => 'Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_1_1.php', ), 'museum' => true, ), - '4.1.0' => + '4.1.0' => array ( 'date' => '10 Dec 2001', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.1.0.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.1.0-Win32.zip', 'name' => 'Windows binary', ), ), - 'announcement' => + 'announcement' => array ( 'English' => '/releases/4_1_0.php', 'French' => '/releases/4_1_0_fr.php', ), 'museum' => true, ), - '4.0.6' => + '4.0.6' => array ( 'date' => '23 June 2001', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.6.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.6-Win32.zip', 'name' => 'Windows binary', @@ -18804,20 +18804,20 @@ $OLDRELEASES = array ( ), 'museum' => true, ), - '4.0.5' => + '4.0.5' => array ( 'date' => '30 April 2001', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.5.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.5-Win32.zip', 'name' => 'Windows binary', @@ -18825,185 +18825,185 @@ $OLDRELEASES = array ( ), 'museum' => true, ), - '4.0.4' => + '4.0.4' => array ( 'date' => '19 December 2000', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.4.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.0.4pl1.tar.gz', 'name' => '4.0.4pl1 Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.4-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.0.4-installer.zip', 'name' => 'Windows installer', ), - 2 => + 2 => array ( 'filename' => 'php-4.0.4pl1-Win32.zip', 'name' => '4.0.4pl1 Windows binary', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/28', ), 'museum' => true, ), - '4.0.3' => + '4.0.3' => array ( 'date' => '11 October 2000', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.3.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.0.3pl1.tar.gz', 'name' => '4.0.3pl1 Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.3-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.0.3pl1-installer.exe', 'name' => '4.0.3pl1 Windows installer', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/26', 'English (pl1)' => 'https://news-web.php.net/php.announce/27', ), 'museum' => true, ), - '4.0.2' => + '4.0.2' => array ( 'date' => '29 August 2000', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.2.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.2-Win32.zip', 'name' => 'Windows binary', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/24', ), 'museum' => true, ), - '4.0.1' => + '4.0.1' => array ( 'date' => '28 June 2000', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.1.tar.gz', 'name' => 'Source (tar.gz)', ), - 1 => + 1 => array ( 'filename' => 'php-4.0.1pl2.tar.gz', 'name' => '4.0.1pl2 Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.1-Win32.zip', 'name' => 'Windows binary', ), - 1 => + 1 => array ( 'filename' => 'php-4.0.1pl1-Win32.zip', 'name' => '4.0.1pl1 Windows binary', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/23', ), 'museum' => true, ), - '4.0.0' => + '4.0.0' => array ( 'date' => '22 May 2000', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.0.tar.gz', 'name' => 'Source (tar.gz)', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-4.0.0-Win32.zip', 'name' => 'Windows binary', ), ), - 'announcement' => + 'announcement' => array ( 'English' => 'https://news-web.php.net/php.announce/22', ), 'museum' => true, ), ), - 3 => + 3 => array ( - '3.0.x (latest)' => + '3.0.x (latest)' => array ( 'date' => '20 Oct 2000', - 'source' => + 'source' => array ( - 0 => + 0 => array ( 'filename' => 'php-3.0.18.tar.gz', 'name' => 'PHP 3.0.18 Source Code', 'md5' => 'b4b8f7f1151ce66d5f3910a066651133', ), ), - 'windows' => + 'windows' => array ( - 0 => + 0 => array ( 'filename' => 'php-3.0.17-win32.zip', 'name' => 'PHP 3.0.17 Windows binary', diff --git a/include/site.inc b/include/site.inc index aae24537a6..61fa38005c 100644 --- a/include/site.inc +++ b/include/site.inc @@ -244,7 +244,14 @@ if (!isset($_SERVER["HTTPS"]) || $_SERVER["HTTPS"] != "on") { $proto = "https"; } -if ($_SERVER["SERVER_PORT"] != '80' && $_SERVER["SERVER_PORT"] != 443) { +$hostHeader = $hostHeader = $_SERVER["HTTP_HOST"] ?? null; +if ($hostHeader + /* incoming hostname validation logic */ + && preg_match('/^([a-z0-9]([a-z0-9-]*[a-z0-9])?\.)*[a-z0-9]([a-z0-9-]*[a-z0-9])?(?::\d{1,5})?$/i', $hostHeader) +) { + $MYSITE = $proto . '://' . $hostHeader . '/'; + $msite = 'https://' . $hostHeader . '/'; +} elseif ($_SERVER["SERVER_PORT"] != '80' && $_SERVER["SERVER_PORT"] != 443) { $MYSITE = $proto . '://' . $_SERVER["SERVER_NAME"] . ':' . (int)$_SERVER["SERVER_PORT"] . '/'; $msite = 'http://' . $_SERVER["SERVER_NAME"] . ':' . (int)$_SERVER["SERVER_PORT"] . '/'; } else { diff --git a/include/version.inc b/include/version.inc index 511f8e9536..02ad76f5dc 100644 --- a/include/version.inc +++ b/include/version.inc @@ -15,7 +15,7 @@ * ), * ); */ -$RELEASES = (function () { +return (function () { $data = []; /* PHP 8.5 Release */ @@ -91,75 +91,3 @@ $RELEASES = (function () { } return $ret; })(); - -// Get latest release version and info. -function release_get_latest() { - global $RELEASES; - - $version = '0.0.0'; - $current = null; - foreach ($RELEASES as $versions) { - foreach ($versions as $ver => $info) { - if (version_compare($ver, $version) > 0) { - $version = $ver; - $current = $info; - } - } - } - - return [$version, $current]; -} - -function show_source_releases() -{ - global $RELEASES; - - $SHOW_COUNT = 4; - - $current_uri = htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES, 'UTF-8'); - - $i = 0; foreach ($RELEASES as $MAJOR => $major_releases): /* major releases loop start */ - $releases = array_slice($major_releases, 0, $SHOW_COUNT); -?> - - $a): ?> - - - -

    - - PHP - (Changelog) -

    -
    - -
      - -
    • - - - ', $rel['md5'], ''; - if (isset($rel['sha256'])) echo '', $rel['sha256'], ''; - ?> - -

      - Note: - -

      - -
    • - -
    • - - Windows downloads - -
    • -
    - - GPG Keys for PHP -
    - - -"; -foreach ((new NewsHandler())->getFrontPageNews() as $entry) { - $link = preg_replace('~^(http://php.net/|https://www.php.net/)~', '', $entry["id"]); - $id = parse_url($entry["id"], PHP_URL_FRAGMENT); - $date = date_create($entry['updated']); - $date_human = date_format($date, 'd M Y'); - $date_w3c = date_format($date, DATE_W3C); - $content .= << -
    - -

    - {$entry["title"]} -

    -
    -
    - {$entry["content"]} -
    - -NEWSENTRY; + +$latestVersions = VersionData::getSupportedVersions(); +$latestVersion = array_shift($latestVersions); + +function buildNavCard(NavCardItem $card, array $config = []): string +{ + $config = [ + 'cn_card_content' => 'landing-cc-card-content', + 'cn_card_img' => 'landing-cc-card-img', + ...$config, + ]; + + ob_start(); + ?> + id) { ?>id="id) ?>" href="href) ?>" class="gst-cgrid-card landing-card-ovh gst-navcard"> +
    +
    + image) { ?>Graphic of <?= $card->title ?> +
    title) ?>
    +
    + +
    about) ?>
    + + href) { ?> +
    + href_label)?> +
    + +
    +
    + Older News Entries

    '; -$content .= ""; - -$intro = << - -

    A popular general-purpose scripting language that is especially suited to web development.
    Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world.

    -
    - What's new in 8.5 - Download + +/** + * @param NavCardItem[] $cards + */ +function buildNavCards(array $cards, array $config = []): string +{ + return implode('', array_map(fn(NavCardItem $card) => buildNavCard($card, $config), $cards)); +} + +function drawBranchInfo(PointReleaseData $release): void +{ + $now = new DateTime(); + $fmtDate = fn(DateTimeImmutable $date) => ($date < $now) ? 'End of Life' : $date->format('Y-m-d'); + $version = $release->parent; + + ?> +
    +
    + label ?> + · +downloadUri)?> + + Migration Guide +
    +
    +
    +
    + Bugfixes: + bugfixEOL)) ?> +
    +
    + Security: + securityEOL)) ?> +
    +
    +
    -EOF; - -$intro .= "
      \n"; -$active_branches = get_active_branches(); -krsort($active_branches); -foreach ($active_branches as $major => $releases) { - krsort($releases); - foreach ((array)$releases as $release) { - $version = $release['version']; - [$major, $minor, $_] = explode('.', $version); - $intro .= " -
    • $version · Changelog · Upgrading
    • \n"; + getConferences() as $conf) { + $finalTeaserDate = $conf['finalTeaserDate'] ?? null; + if (!$finalTeaserDate) { + continue; + } + + if (DateTimeImmutable::createFromFormat('Y-m-d', $finalTeaserDate) < $now) { + continue; } + + $link = null; + foreach ($conf['link'] ?? [] as $rel) { + if (($conf['rel'] ?? 'alternate') === 'alternate') { + $link = $rel; + } + } + + if ($link) { + $link = str_replace('https://www.php.net', '', $link['href']); + } + + $id = parse_url($conf["id"], PHP_URL_FRAGMENT); + $image = $conf["newsImage"]['content'] ?? null; + if ($image) { + $image = '/images/news/' . $image; + } + + $eventCards[] = new NavCardItem( + title: $conf['title'], + about: $conf['summary'] ?? '', + image: $image, + href: $link ?? '/conferences/', + href_label: 'Explore Event', + ); + + if (count($eventCards) > $MAX_CONFERENCE_CARDS) { + break; + } +} + +$developmentCards = []; +foreach (require __DIR__ . '/include/development-links.inc' as $community) { + $developmentCards[] = new NavCardItem( + title: $community['title'], + about: $community['about'], + image: $community['image'], + href: $community['href'], + href_label: $community['href_label'] ?? 'Visit Community', + ); } -$intro .= "
    \n"; -$intro .= << -EOF; -site_header(NULL, - [ +$heroCards = []; +foreach (require __DIR__ . '/include/landing-heros.inc' as $hero) { + $heroCards[] = new NavCardItem( + title: $hero['title'], + about: $hero['about'], + image: $entry["newsImage"]["content"] ?? '', + href: $hero['href'], + href_label: $hero['href_label'], + id: isset($hero['id']) ? ('hero-' . $hero['id']) : null, + ); +} + +$foundationSponsors = require __DIR__ . '/include/php-foundation-sponsors.inc'; + +ob_start(); +?> +
    +
    +
    +
    +
    +
    + + PHP Elephant logo +
    + + + +
    +
    +
    +
    Fast & Modern
    +
    PHP provides blistering fast performance and a modern developer-focused experience.
    +
    + +
    +
    A Massive Ecosystem
    +
    Leverage over 450,000 existing open source packages for your projects, along with powerful tooling.
    +
    + +
    +
    An Established Community
    +
    Millions of developers and businesses already use PHP to achieve their goals every day.
    +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    + + + + + + + + + + + +
    +
    +
    + logoUrl) { ?> + php + + +
    + latestRelease) ?> +
    + + +
    +
    +
    Major Features
    +
    + majorFeatureDescriptions as $change) { ?> +
    +
    +
    +
    + +
    +
    +
    +
    +
    + +
      + +
    • +
      + PHP version <?= $release->label ?> +
      +
      + latestRelease) ?> +
      +
      + +
      +
      +
      Major Features:
      +
        + majorFeatureDescriptions as $change) { ?> +
      • + +
      +
      +
      + + +
      +
    • + +
    +
    +
    +
    + +
    +
    +
    + PHP Foundation Logo +
    +
    + The PHP Foundation is a collective of people and organizations, united in the mission to ensure the long-term prosperity of the PHP language. +

    +
    + + Learn About the PHP Foundation +  ·  + + Donate Via Open Collective +  ·  + + Donate Via GitHub +
    +
    + +
    +
    The PHP Foundation is grateful for our many sponsors, including:
    + + +
    + +
    +
    + +
    +
    +
    +
    Community
    +
    +
    +
    +
    + +
    Events & Conferences
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    + Composer Logo +
    +
    +
    + PHP has one of the largest collections of open-source libraries in the world. + +

    + Ranging from individual helpers to entire application frameworks, all packages are easily installable via the Composer + package manager. +

    +
    + + Get Composer +  ·  + Browse Package Repository +
    +
    +
    +
    + +
    +
    +
    Language Development
    +
    + +
    +
    +
    +
    + + + + 'PHP: Hypertext Preprocessor', + 'show_section' => false, + 'css' => [ + '/styles/landing.css', + ], + 'js_files' => [ + '/js/landing.js', + ], 'current' => 'home', 'headtags' => [ '', '', ], - 'link' => [ - [ + 'link' => [[ "rel" => "search", "type" => "application/opensearchdescription+xml", "href" => $MYSITE . "phpnetimprovedsearch.src", "title" => "Add PHP.net search", - ], - [ + ], [ "rel" => "alternate", "type" => "application/atom+xml", "href" => $MYSITE . "releases/feed.php", "title" => "PHP Release feed", ], - ], - 'css' => ['home.css'], - 'intro' => $intro, ], + content: $header ); -// Print body of home page. -echo $content; - -// Prepare announcements. -if (is_array($CONF_TEASER)) { - $conftype = [ - 'conference' => 'Upcoming conferences', - 'cfp' => 'Conferences calling for papers', - ]; - $announcements = ""; - foreach ($CONF_TEASER as $category => $entries) { - if ($entries) { - $announcements .= '
    '; - $announcements .= ' ' . $conftype[$category] . ''; - $announcements .= '
      '; - foreach (array_slice($entries, 0, 4) as $url => $title) { - $title = preg_replace("'([A-Za-z0-9])([\s:\-,]*?)call for(.*?)$'i", "$1", $title); - $announcements .= "
    • $title
    • "; - } - $announcements .= '
    '; - $announcements .= '
    '; - } - } -} else { - $announcements = ''; -} - -$SIDEBAR = << - The PHP Foundation -
    -

    The PHP Foundation is a collective of people and organizations, united in the mission to ensure the long-term prosperity of the PHP language. -

    Donate

    -
    -
    -$announcements -

    User Group Events

    -

    Special Thanks

    - - -SIDEBAR_DATA; - -// Print the common footer. -site_footer([ - "atom" => "/feed.atom", // Add a link to the feed at the bottom - 'elephpants' => true, - 'sidebar' => $SIDEBAR, -]); diff --git a/js/common.js b/js/common.js index 86b4862fd5..33c9925b9f 100644 --- a/js/common.js +++ b/js/common.js @@ -879,3 +879,23 @@ function applyTheme(theme) { } applyTheme(savedTheme) + +function shuffleImmutableArray(array) { + const newArray = [...array]; + for (let i = newArray.length - 1; i > 0; i--) { + const j = Math.floor(Math.random() * (i + 1)); + [newArray[i], newArray[j]] = [newArray[j], newArray[i]]; + } + return newArray; +} + +function shuffleDOMChildrenWithLimit(parent, limit) { + const children = Array.from(parent.children); + const replacements = shuffleImmutableArray(children).slice(0, limit); + + while (parent.children.length) { + parent.removeChild(parent.children[0]); + } + + replacements.forEach(n => parent.appendChild(n)); +} diff --git a/js/landing.js b/js/landing.js new file mode 100644 index 0000000000..a50b4f7d8e --- /dev/null +++ b/js/landing.js @@ -0,0 +1,85 @@ +function initInfiniteScroll(parentContainer, speed = 50, setupArgs = {}) { + if (!parentContainer) return null; + + // 1. Extract the fixed width from the data-width attribute + const dataWidth = parentContainer.dataset.width; + if (!dataWidth) { + console.error("InfiniteScroll Error: Missing 'data-width' attribute on the container."); + return null; + } + + const widthNum = parseInt(dataWidth, 10); + const widthStr = `${widthNum}px`; + + // 2. Gather the existing child elements currently inside the parent + const elements = Array.from(parentContainer.children); + if (elements.length === 0) return null; + + // 3. Prepare the parent container styling + parentContainer.style.overflow = 'hidden'; + parentContainer.style.position = 'relative'; + parentContainer.style.width = '100%'; + + // 4. Create the scrolling track + const track = document.createElement('div'); + track.style.display = 'flex'; + track.style.width = 'max-content'; + track.style.willChange = 'transform'; + + // 5. Apply widths and move existing elements into the track + elements.forEach(el => { + el.style.width = widthStr; + el.style.flexShrink = '0'; + track.appendChild(el); // Automatically removes it from parentContainer and places it in track + }); + + // 6. Append the track to the parent container + parentContainer.appendChild(track); + + // 7. Clone elements to ensure a seamless loop with no blank gaps + const parentWidth = parentContainer.offsetWidth || window.innerWidth; + const originalTotalWidth = elements.length * widthNum; + + let currentTrackWidth = originalTotalWidth; + while (currentTrackWidth < parentWidth + originalTotalWidth) { + elements.forEach(el => { + const clone = el.cloneNode(true); + clone.style.width = widthStr; + clone.style.flexShrink = '0'; + track.appendChild(clone); + }); + currentTrackWidth += originalTotalWidth; + } + + // 8. Generate a unique CSS keyframe animation dynamically + const animationName = `infiniteScroll_${Math.random().toString(36).substr(2, 9)}`; + const styleNode = document.createElement('style'); + styleNode.textContent = ` + @keyframes ${animationName} { + 0% { transform: translateX(0); } + 100% { transform: translateX(-${originalTotalWidth}px); } + } + `; + document.head.appendChild(styleNode); + + // 9. Apply the animation (speed is pixels per second) + const duration = originalTotalWidth / speed; + track.style.animation = `${animationName} ${duration}s linear infinite`; + + // 10. Return playback and cleanup controls + const tools = { + pause: () => track.style.animationPlayState = 'paused', + play: () => track.style.animationPlayState = 'running', + destroy: () => { + // Puts original elements back and cleans up the DOM + elements.forEach(el => parentContainer.appendChild(el)); + track.remove(); + styleNode.remove(); + } + }; + + parentContainer.addEventListener('mouseenter', () => tools.pause()); + parentContainer.addEventListener('mouseleave', () => tools.play()); + + return tools; +} diff --git a/js/sandbox.js b/js/sandbox.js new file mode 100644 index 0000000000..5c9768426a --- /dev/null +++ b/js/sandbox.js @@ -0,0 +1,41 @@ +import phpBinary from "./php-web.mjs"; + +export class PHPSandbox { + constructor(templateFiles) { + this.templateFiles = templateFiles; + } + + async execute(files) { + let buffer = []; + let initializing = true; + + files = {...files, ...this.templateFiles}; + + const php = await phpBinary({ + print(data) { + if (initializing) { + return; + } + + console.log('output', data); + + buffer.push(data); + } + }); + + for (const [filename, content] of Object.entries(files)) { + const dir = filename.substring(0, filename.lastIndexOf('/')); + if (dir) { + php.FS_createPath('/', dir, true, true); + } + + php.FS.writeFile('/' + filename, content); + } + + initializing = false; + php.ccall("phpw_run", null, ["string"], ['require "boot.php";']); + + return JSON.parse(buffer.join("")); + } +} + diff --git a/mirror-info.php b/mirror-info.php index d70f72eed1..d461377ed3 100644 --- a/mirror-info.php +++ b/mirror-info.php @@ -13,18 +13,20 @@ $mirror_stats = (int) (isset($_SERVER['MIRROR_STATS']) && $_SERVER['MIRROR_STATS'] == '1'); // SHA256 check last release file (identifies rsync setup problems) -[, $latest] = release_get_latest(); -$dist = $latest['source'][0]; -$filename = __DIR__ . "/distributions/{$dist['filename']}"; -if (!file_exists($filename)) { - $hash_ok = 0; -} elseif (isset($dist['sha256']) && - function_exists('hash_file') && - in_array('sha256', hash_algos(), true)) { - $hash_ok = (int)(hash_file('sha256', $filename) === $dist['sha256']); -} else { - $hash_ok = 0; -} +//[, $latest] = release_get_latest(); +//$dist = $latest['source'][0]; +//$filename = __DIR__ . "/distributions/{$dist['filename']}"; +//if (!file_exists($filename)) { +// $hash_ok = 0; +//} elseif (isset($dist['sha256']) && +// function_exists('hash_file') && +// in_array('sha256', hash_algos(), true)) { +// $hash_ok = (int)(hash_file('sha256', $filename) === $dist['sha256']); +//} else { +// $hash_ok = 0; +//} +// todo: Investigate if this can be replaced with auto-built data +$hash_ok = 1; // Does this mirror have sqlite? // Gets all available sqlite versions for possible future sqlite wrapper diff --git a/phpstan.neon b/phpstan.neon new file mode 100644 index 0000000000..83a739abc7 --- /dev/null +++ b/phpstan.neon @@ -0,0 +1,16 @@ +parameters: + level: 8 + + # The paths PHPStan should analyze + paths: + - ./src + - ./include + + excludePaths: + - /var + + scanDirectories: + - ./ + + editorUrlTitle: '%%relFile%%:%%line%%' + editorUrl: 'phpstorm://open?file=%%file%%&line=%%line%%' diff --git a/releases/4_1_0.php b/releases/4_1_0.php deleted file mode 100644 index 39b8474d15..0000000000 --- a/releases/4_1_0.php +++ /dev/null @@ -1,168 +0,0 @@ - - -

    PHP 4.1.0 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:

    -
      -
    • A new input interface for improved security (read below)
    • -
    • Highly improved performance in general
    • -
    • - Revolutionary performance and stability improvements under - Windows. The multithreaded server modules under Windows (ISAPI, - Apache, etc.) perform as much as 30 times faster under load! We - want to thank Brett Brewer and his team in Microsoft for working - with us to improve PHP for Windows. -
    • -
    • - Versioning support for extensions. Right now it's barely being - used, but the infrastructure was put in place to support separate - version numbers for different extensions. The negative side effect - is that loading extensions that were built against old versions of - PHP will now result in a crash, instead of in a nice clear message. - Make sure you only use extensions built with PHP 4.1.0. -
    • -
    • Turn-key output compression support
    • -
    • LOTS of fixes and new functions
    • -
    - -

    - 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. -

    - -
    - -

    SECURITY: NEW INPUT MECHANISM

    - -

    - First and foremost, it's important to stress that regardless of - anything you may read in the following lines, PHP 4.1.0 still - supports the old input mechanisms from older versions. - Old applications should go on working fine without modification! -

    - -

    Now that we have that behind us, let's move on :)

    - -

    - For various reasons, PHP setups which rely on register_globals - being on (i.e., on form, server and environment variables becoming - a part of the global namespace, automatically) are very often - exploitable to various degrees. For example, the piece of code: -

    - -');?> - -

    - May be exploitable, as remote users can simply pass on 'authenticated' - as a form variable, and then even if authenticate_user() returns false, - $authenticated will actually be set to true. While this looks like a - simple example, in reality, quite a few PHP applications ended up being - exploitable by things related to this misfeature. -

    - -

    - While it is quite possible to write secure code in PHP, we felt that the - fact that PHP makes it too easy to write insecure code was bad, and we've - decided to attempt a far-reaching change, and deprecate register_globals. - Obviously, because the vast majority of the PHP code in the world relies - on the existence of this feature, we have no plans to actually remove it - from PHP anytime in the foreseeable future, but we've decided to encourage - people to shut it off whenever possible. -

    - -

    - To help users build PHP applications with register_globals being off, - we've added several new special variables that can be used instead of the - old global variables. There are 7 new special arrays: -

    - -
      -
    • $_GET - contains form variables sent through GET
    • -
    • $_POST - contains form variables sent through POST
    • -
    • $_COOKIE - contains HTTP cookie variables
    • -
    • $_SERVER - contains server variables (e.g., REMOTE_ADDR)
    • -
    • $_ENV - contains the environment variables
    • -
    • - $_REQUEST - a merge of the GET variables, POST variables and Cookie variables. - In other words - all the information that is coming from the user, - and that from a security point of view, cannot be trusted. -
    • -
    • $_SESSION - contains HTTP variables registered by the session module
    • -
    - -

    - Now, other than the fact that these variables contain this special information, - they're also special in another way - they're automatically global in any - scope. This means that you can access them anywhere, without having to - 'global' them first. For example: -

    - -');?> - -

    - would work fine! We hope that this fact would ease the pain in migrating - old code to new code a bit, and we're confident it's going to make writing - new code easier. Another neat trick is that creating new entries in the - $_SESSION array will automatically register them as session variables, as - if you called session_register(). This trick is limited to the session - module only - for example, setting new entries in $_ENV will - not perform an implicit putenv(). -

    - -

    - PHP 4.1.0 still defaults to have register_globals set to on. It's a - transitional version, and we encourage application authors, especially - public ones which are used by a wide audience, to change their applications - to work in an environment where register_globals is set to off. Of course, - they should take advantage of the new features supplied in PHP 4.1.0 that - make this transition much easier. -

    - -

    - As of the next semi-major version of PHP, new installations of PHP will - default to having register_globals set to off. No worries! Existing - installations, which already have a php.ini file that has register_globals - set to on, will not be affected. Only when you install PHP on a brand new - machine (typically, if you're a brand new user), will this affect you, and - then too - you can turn it on if you choose to. -

    - -

    - Note: Some of these arrays had old names, e.g. $HTTP_GET_VARS. These names - still work, but we encourage users to switch to the new shorter, and - auto-global versions. -

    - -

    - Thanks go to Shaun Clowes (shaun at securereality dot com dot au) for - pointing out this problem and for analyzing it. -

    - - diff --git a/releases/4_1_0_fr.php b/releases/4_1_0_fr.php deleted file mode 100644 index 04c16a721d..0000000000 --- a/releases/4_1_0_fr.php +++ /dev/null @@ -1,192 +0,0 @@ - "fr"]); -?> - -

    Annonce de publication de PHP 4.1.0

    - -

    - Après un long processus "QA", PHP 4.1.0 est enfin sorti!
    - [ English Version ] -

    - -

    - PHP 4.1.0 inclut beaucoup d'améliorations importantes: -

    -
      -
    • Une nouvelle interface d'entrée en général (voir plus bas)
    • -
    • Perfomance grandement accrue en général
    • -
    • - Sous Windows une stabilité et une performance révolutionnaire. Les - modules serveur multi-thread sous windows (ISAPI, Apache, etc...) - s'exécute jusqu'à 30 fois plus rapidement sous la charge! Nous - voulons remercier Brett Brewer et son équipe chez Microsoft pour - son travail avec nous pour améliorer PHP pour Windows. -
    • -
    • - Gestion des versions pour les extensions. A l'heure actuelle, ceci - est très peu utilisé, l'infrastructure était mise en place pour le - support séparé des numéros de versions pour différentes extensions. - L'effet de bord négatif est que le faite de charger des extensions - avec une ancienne version de PHP résultait d'un crash, à la place - d'un message correct et claire. Soyez sûrs que vous utilisez - seulement des extensions intégrées à PHP 4.1.0. -
    • -
    • Support "Turn-Key" de la compression des sorties
    • -
    • BEAUCOUP de corrections et de nouvelles fonctions
    • -
    - -

    - Comme certains l'ont noté, cette version est quelque peu historique, - comme c'est la première fois dans l'histoire que nous incrémentons - le numéro du milieu ! - Les deux principales raisons à cela sont d'un côté les changements sans - précédent de la nouvelle interface d'entrée, et de l'autre l'incompatibilité - des modules dus au support des versions. -

    - -

    - Ce qui suit concerne une description du nouveau mécanisme d'entrée. - Pour une liste complète des changements voir le - ChangeLog. -

    - -
    - -

    SECURITE: NOUVEAU MECANISME D'ENTREE

    - -

    - Avant tout, il est important de signaler que, sans tenir compte de ce - que vous pourriez lire dans les lignes qui suivent, PHP 4.1.0 gère - encore les anciens mécanismes d'entrée des anciennes versions. - D'anciennes applications devraient bien fonctionner sans modifications ! -

    - -

    Passsons à la suite mainenant que cela est dit :)

    - -

    - Pour différentes raisons, PHP qui se repose sur register_globals ON - (ex. sur les formulaires, les variables serveur et d'environnement - deviennent partie de la portée globale d'un script [namespace], et - ce automatiquement) sont très souvent exploitable à des degrés - divers. Par exemple le code suivant: -

    - -');?> - -

    - Peut être exploitable de la manière suivante, des utilisateurs - distants peuvent simplement passer 'authenticated' comme variable - d'un formulaire et même si authenticate_user() retourne false, - $authentiticated va actuellement contenir true. Ce"la semble etre un - exemple très simple, mais en réalité, bien des applications PHP - sont exploitable par ce dysfonctionnement. -

    - -

    - Tandis qu'il est parfaitement possible d'écrire du code PHP - sécurisé, nous sentions que le fait que PHP permette, de manière beaucoup - trop facile, d'écrire du code PHP non sécurisé n'était pas - acceptable, et nous avons décidé de tenter un changement très grand - et de rendre caduque register_globals. - Evidemment, à cause de la grande majorité de code PHP dans le monde se - reposant sur l'existence de cette fonctionnalité, nous ne la supprimerons - jamais, mais nous avons décidés d'encourager les utilisateurs de ne plus - l'utiliser à chaque fois que cela est possible. -

    - -

    - Afin d'aider les utilisateurs à construire des applications PHP avec - register_globals à Off, nous avons ajouté quelques nouvelles - variables spéciales, variables qui peuvent être utilisées à la place - des anciennes variables globales. Il y a 7 nouveaux tableaux spéciaux: -

    - -
      -
    • $_GET - contient les variables passées par la méthode GET
    • -
    • $_POST - contient les variables passées par la méthode POST
    • -
    • $_COOKIE - contient les variables HTTP cookie
    • -
    • $_SERVER - contient les variables serveur (par ex. REMOTE_ADDR)
    • -
    • $_ENV - contient les variables d'environnement
    • -
    • - $_REQUEST - Une fusion des variables GET. POST, COOKIE. En d'autres - termes toutes les informations qui arrivent de l'utilisateur, - et qui d'un point de vue purement sécuritaire, ne sont pas sûres -
    • -
    • - $_SESSION - contient toutes les variables HTTP enregistrées par le - module des sessions -
    • -
    - -

    - Maintenant, entre autre le fait que ces variables contiennent ces - informations spéciales, elles sont aussi automatiquement globales - dans toutes les portées. Cela signifie que vous pouvez y accéder - de n'importe où, sans avoir à les déclarer en globales. Par exemple: -

    - -');?> - -

    - va fonctionner très bien! Nous espérons que cela va faciliter la tâche - durant la migration de vieux code vers le nouveau, et nous sommes sûrs - que cela vous simplifiera l'écriture de nouveaux codes. - Une autre astuce est que le fait de créer de nouvelles entrées dans - $_SESSION va automatiquement les enregistrer comme variables de session, - comme si vous auriez appelé session_register(). Cette astuce est limitée - uniquement au module de gestion de session - par exemple, créer de - nouvelles entrés dans $_ENV ne va pas exécuter un put_env() - implicite. -

    - -

    - PHP 4.1.0 doit toujours avoir register_globals mis a On par défaut. - C'est une version de transition, et nous encourageons les auteurs - d'applications, spécialement les applications publiques qui sont utilisées - par une large audience, de changer leurs applications pour fonctionner - avec un environnement où register_globals est à Off. Il est clair - qu'ils devraient profiter des nouvelles fonctionnalités fournies - avec PHP 4.1.0 qui font que cette transition est plus aisée. -

    - -

    - Dans la prochaine version "semi majeure" de PHP, de nouvelles installations - de PHP devrait avoir register_globals mis à Off par défaut. Ne vous en - faites pas! Les installations existantes, qui ont déjà un fichier php.ini - qui a register_globals à On, ne vont pas être affectées. Cela vous - affectera seulement si vous installez PHP sur une nouvelle machine - (typiquement si vous êtes un nouvel utilisateur), et si vous le désirez - vous pourrez toujours le mettre à On. -

    - -

    - Note: Certains de ces tableaux ont d'anciens noms, exemple : $HTTP_GET_VARS. - Ces noms fonctionnent toujours, mais nous encourageons les utilisateurs - de migrer vers le nouveaux noms, plus courts et qui sont des versions - automatiquement globales. -

    - -

    - Les remerciements vont à Shaun Clowes (shaun at securereality dot com dot au) - pour avoir révélé ce problème et avoir aidé - à l'analyser. -

    - -

    - French translation is available courtesy of Pierre-Alain Joye - (pierre-alain dot joye at wanadoo dot fr). -

    - - diff --git a/releases/4_1_1.php b/releases/4_1_1.php deleted file mode 100644 index bbbc8d6dfe..0000000000 --- a/releases/4_1_1.php +++ /dev/null @@ -1,63 +0,0 @@ - - -

    PHP 4.1.1 Release Announcement

    - -

    - 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:

    - -
      -
    • - Fixed incompatibility with Windows .NET / IIS 6 - may improve stability - under other versions of IIS. (Zeev) -
    • -
    • - Fixed bug that caused crashes or error notices on shutdown on threaded - platforms. (Zeev) -
    • -
    • Fixed several crash bugs in the xslt extension. (Markus, Derick)
    • -
    • - Fixed problem with dbase not returning very large (larger than long) - integers properly. (Vlad) -
    • -
    • Fixed several bugs and memleaks in the domxml extension. (Markus)
    • -
    • - Fixed bug in gmmktime() which was one hour off during standard time - - bug #9878. Patch by bfoddy@mediaone.net. (jmoore) -
    • -
    • Fixed bug in gmdate() timezone handling on Windows - bug #13885. (jmoore)
    • -
    • Fixed several crash bugs in the mcrypt extension. (Derick)
    • -
    • - Made the mcrypt extension compile with the libmcrypt 2.2 series again. - (Sterling) -
    • -
    • - Fixed a bug where the is_file() family of functions would in-correctly give - an error when they were given filenames that didn't exist. (Sterling) -
    • -
    • - Fixed a bug in the strtotime() function where it was incorrectly recognizing - GMT +0100 and GMT -0100. (Derick) -
    • -
    - - diff --git a/releases/4_1_2_win32.php b/releases/4_1_2_win32.php deleted file mode 100644 index d3ec735981..0000000000 --- a/releases/4_1_2_win32.php +++ /dev/null @@ -1,55 +0,0 @@ - - -

    PHP 4.1.2 Windows (Win32) Release Announcement

    - -

    - Due to an issue with the Windows binary allowing any user to read or - execute the contents of a file directly from the PHP binary, we have - delayed the 4.1.2 release of PHP for Windows to allow for this fix. - This release also fixes the file upload security problem. -

    - -

    - With this new release, we introduce 2 new php.ini settings, which - MUST be set to make the binary work. It's worth - noting, at this point, that this particular fix only applies to - the CGI binary. The SAPI module will still work as expected, - and it's use is encouraged. -

    - -

    The new settings are:

    -
      -
    • cgi.force_redirect 0|1
    • -
    • cgi.redirect_status_env ENV_VAR_NAME
    • -
    - -

    WebServers affected by this vulnerability

    - -

    - It is known that Apache (any version) and iPlanet servers are - vulnerable to this issue, however Microsoft IIS is not. Since - cgi.force_redirect takes a value of either 1 or 0, (on or off) - you should set it to 1 if you are running Apache or iPlanet - servers, and to 0 for IIS. If you are unsure of which you need, - set it to 1 and see if your scripts execute. You will need to - stop and restart your server when you change your php.ini file, - for the changes to have effect. -

    -

    - If cgi.force_redirect is turned on, and you are not running under - Apache or Netscape (iPlanet) web servers, you MAY need to set an - environment variable name that PHP will look for to know it is OK - to continue execution. Setting this variable MAY cause security - issues, so check what you are doing first. -

    - -

    - More information can be found here - relating to the form upload exploit that caused the release of 4.1.2 initially. -

    - - diff --git a/releases/4_2_0.php b/releases/4_2_0.php deleted file mode 100644 index 81a94d2ea8..0000000000 --- a/releases/4_2_0.php +++ /dev/null @@ -1,83 +0,0 @@ - - -

    PHP 4.2.0 Release Announcement

    - -

    - After an orderly QA process, PHP 4.2.0 is out!
    - [ Version Française ] -

    - -

    External variables

    - -

    - 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:

    - - - -

    Compatibility

    - -

    - 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 -

    - -

    Improvements

    - -

    PHP 4.2.0 includes several improvements:

    - -
      -
    • - External variables (from the environment, the HTTP request, cookies or - the web server) are no longer registered as global variables -
    • -
    • Overhaul of the sockets extension
    • -
    • Highly improved performance with file uploads
    • -
    • - The satellite and mailparse extensions were moved to PECL and are no longer - bundled with the official PHP release -
    • -
    • The posix extension has been cleaned up
    • -
    • iconv handling has been improved
    • -
    • - Output buffering support, which was introduced in PHP 4.1.0 has - been stabilized -
    • -
    • Improved performance and stability of the domxml extension
    • -
    • New multibyte regular expression support
    • -
    • LOTS of fixes and new functions
    • -
    - -

    - For a full list of changes in PHP 4.2.0, - see the ChangeLog. -

    - - diff --git a/releases/4_2_0_fr.php b/releases/4_2_0_fr.php deleted file mode 100644 index 80fb718f14..0000000000 --- a/releases/4_2_0_fr.php +++ /dev/null @@ -1,91 +0,0 @@ - "fr"]); -?> - -

    Annonce de publication de PHP 4.2.0

    - -

    [ English Version ]

    - -

    - Après avoir passé avec succès le processus - qualité, PHP 4.2.0 est officiellement publié! -

    - -

    Variables externes

    - -

    - Le changement le plus important de PHP 4.2.0 concerne la gestion des - variables. Les variables externes (issues de l'environnement d'exécution, - des requêtes HTTP, des cookies ou du serveur web) ne sont plus enregistrées - dans l'environnement d'exécution global par défaut. - La méthode recommandée pour accéder aux variables - externes est d'utiliser les nouveaux tableaux globaux, introduits en - PHP 4.1.0. Pour plus d'informations sur ces modifications: -

    - - -

    Compatibilité

    - -

    - L'ASF (Apache Software Foundation) a récemment publié sa première - version publique d'Apache 2. PHP 4.2.0 dispose du support - EXPERIMENTAL d'Apache 2. Vous pouvez compiler un module - DSO pour Apache 2 avec l'option --with-apxs2. Nous recommandons - de ne pas utiliser cette combinaison en environnement de - production. -

    -

    - Il manque encore à PHP 4.2.0 des fonctionnalités clés - sur MacOSX et sur Darwin. PHP n'est donc pas officiellement - supporté par le PHP group sur ces plates-formes. Spécifiquement, - compiler PHP comme module Apache dynamiquement chargé n'est pas - encore supporté. PHP 4.3.0, dont la publication est prévue pour - Août 2002, sera la première version qui supportera officiellement - Mac OS X. Cette version, aussi bien pour les futures versions de - Mac OS X et Apache, sera totalement synchronisé avec les autres - plates-formes PHP. -

    - -

    Améliorations

    - -

    PHP 4.2.0 inclut de nombreuses innovations:

    -
      -
    • - Les variables externes (issues de l'environnement - d'exécution, des requêtes HTTP, des cookies ou du serveur web) - ne sont plus enregistrées dans l'environnement d'exécution - global par défaut. - -
    • -
    • Remise en état générale de l'extension socket
    • -
    • Performances révolutionnaires des uploads de fichiers
    • -
    • - Les extensions satellite (corba) et mailparse ont été placées sous PECL, - et ne sont plus fournies directement avec la distribution officielle de PHP. -
    • -
    • L'extension POSIX a été nettoyée
    • -
    • L'extension iconv a été améliorée
    • -
    • - Le support de la bufferisation d'affichage, introduite en PHP 4.1.0, - a été stabilisée. -
    • -
    • - Gain de performance notable et amélioration de la - stabilité de l'extension domxml -
    • -
    • Support des expressions régulières multi-octets
    • -
    • ENORMMENT de corrections, et de nouvelles fonctions.
    • -
    - -

    - Pour une liste complète de changements en PHP 4.2.0, voyez le fichier - NEWS, dans la distribution. -

    - - diff --git a/releases/4_2_1.php b/releases/4_2_1.php deleted file mode 100644 index 2d9ab46a9f..0000000000 --- a/releases/4_2_1.php +++ /dev/null @@ -1,65 +0,0 @@ - - -

    PHP 4.2.1 Release Announcement

    - -

    [ Version Française ]

    - -

    Bugfix release

    - -

    - This bug fix release solves a few bugs found in PHP 4.2.0. - PHP 4.2.1 includes the following fixes: -

    - -
      -
    • Fix for the MySQL extension not be able to connect to a MySQL server.
    • -
    • Fix for a crash in the COM extension when using an outproc server.
    • -
    • Fix for SID logic in the session extension.
    • -
    • - Fixes for the mbstring extension, including SJIS directory - name handling and mb_output_buffer(). -
    • -
    • - Fix for a bug in socket_select() that could cause unexpected behavior when - using a statement like $w = $e = array($sock); -
    • -
    • Almost full DOM compliance for the domxml extension, and fixes for several functions.
    • -
    • Safe_mode checks for show_source(), parse_ini_file() and rmdir().
    • -
    - -

    - For a full list of changes in PHP 4.2.1, see the - ChangeLog. -

    - -

    Compatibility

    - -

    - 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. -

    - -

    External variables

    - -

    - 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: -

    - - - - diff --git a/releases/4_2_1_fr.php b/releases/4_2_1_fr.php deleted file mode 100644 index 0ab53a1520..0000000000 --- a/releases/4_2_1_fr.php +++ /dev/null @@ -1,77 +0,0 @@ - "fr"]); -?> - -

    Annonce de publication de PHP 4.2.1

    - -

    [ English Version ]

    - -

    Version mineure de correction de bugs

    - -

    - Cette version intermédiaire corrige quelques bugs - trouvés dans PHP 4.2.0. PHP 4.2.1 inclut les - améliorations suivantes: -

    - -
      -
    • - Correction de l'extension MySQL qui n'arrivait pas - à se connecter au serveur MySQL. -
    • -
    • - Correction de l'extension COM qui crashait lors de - l'utilisation d'un serveur outproc. -
    • -
    • Correction du fonctionnement du SID des sessions.
    • -
    • - Correction de l'extension mbstring, incluant le support des noms - de dossiers SJIS et mb_output_buffer(). -
    • -
    • - Correction d'un bug dans socket_select() qui cause un - comportement inattendu lors de commandes comme - $w = $e = array($sock); -
    • -
    • - Compatibilité presque totale avec l'extension domxml, et - corrections de nombreuses fonctions. -
    • -
    • Le safe mode protège show_source(), parse_ini_file() et rmdir().
    • -
    - -

    - Pour une liste complète des modifications de PHP 4.2.1, voyez le fichier - ChangeLog. -

    - -

    Compatibilité

    - -

    - PHP 4.2.1 dispose aussi d'une compatibilité améliorée - (mais toujours expérimentale) avec Apache 2. Nous ne - recommandons pas son utilisation dans un environnement de - production. Testez-le intensivement, et rapportez tous les bugs dans le - système. -

    - -

    Variables externes

    - -

    - Nous attirons votre attention sur l'évolution majeure de PHP 4.2.0 concernant - l'utilisation des variables. Les variables externes (celles d'environnement - ou du serveur web, les requêtes HTTP, les cookies) ne sont plus enregistrées - par défaut comme variables globales. La méthode - recommandée pour accéder à ces variables est d'utiliser les - super globales, introduits en PHP 4.1.0. Plus d'informations sur ces modifications: -

    - - - - diff --git a/releases/4_2_2.php b/releases/4_2_2.php deleted file mode 100644 index 7f9b248bd6..0000000000 --- a/releases/4_2_2.php +++ /dev/null @@ -1,100 +0,0 @@ - - -

    - PHP Security Advisory: Vulnerability in PHP versions 4.2.0 and 4.2.1 -

    - -

    [ Version Française ]

    - -
    -
    Issued on:
    -
    July 22, 2002
    -
    Software:
    -
    PHP versions 4.2.0 and 4.2.1
    -
    Platforms:
    -
    All
    -
    - -

    - 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. -

    - -

    Description

    - -

    - 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. -

    - -

    Impact

    - -

    - 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. -

    - -

    Solution

    - -

    - 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. -

    - -

    Workaround

    - -

    - 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. -

    - -

    Credits

    - -

    - 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. -

    - - diff --git a/releases/4_2_2_fr.php b/releases/4_2_2_fr.php deleted file mode 100644 index a9125184d5..0000000000 --- a/releases/4_2_2_fr.php +++ /dev/null @@ -1,104 +0,0 @@ - "fr"]); -?> - -

    -Alerte de sécurité PHP : Vulnérabilité dans -les versions 4.2.0 et 4.2.1 de PHP -

    - -

    [ English Version ]

    - -
    -
    Date:
    -
    22 Juillet 2002
    -
    Logiciel:
    -
    PHP versions 4.2.0 et 4.2.1
    -
    Plates-formes:
    -
    Toutes
    -
    - -

    - Le PHP Group a pris connaissance d'un trou de sécurité sérieux en PHP - version 4.2.0 et 4.2.1. Un intrus pourrait exécuter un code arbitraire sur - le serveur, avec les mêmes privilèges que celui qui exécute le serveur web. - Cette vulnérabilité peut être exploitée pour compromettre le serveur web, - et dans certaines circonstances, obtenir des droits spéciaux. -

    - -

    Description

    - -

    - PHP contient du code qui analyse finement les entêtes des requêtes - HTTP POST. Le code est utilisé pour différencier les variables des - fichiers qui sont envoyés par le navigateur, avec l'encodage - "multipart/form-data". Cet analyseur ne vérifie pas suffisamment - les données d'entrée, ce qui conduit à une - vulnérabilité. -

    - -

    - La vulnérabilité est exploitable par quiconque peut envoyer des requêtes - HTTP POST à un serveur web utilisant PHP versions 4.2.0 et 4.2.1. Des - utilisateurs, locaux ou distants, même derrière un pare-feu, pourraient - obtenir des autorisations indues sur la machine. -

    - -

    Impact

    - -

    - Les utilisateurs, tant locaux que distants, peuvent exploiter cette - vulnérabilité pour compromettre le serveur web, et, dans certaines circonstances, - obtenir des autorisations indues. Jusqu'à présent, seule la plate-forme - IA32 a pu passer les tests de sécurité. Cette vulnérabilité peut être utilisée - sous IA32 pour crasher PHP et, dans la plupart des cas, le serveur web. -

    - -

    Solution

    - -

    - Le PHP Group a publié une nouvelle version PHP version, 4.2.2, qui inclus - une correction pour cette vulnérabilité. Tous les utilisateurs des versions de PHP - affectées sont encouragés à passer à cette nouvelle version. L'URL de - téléchargement est : - http://www.php.net/downloads.php - sous forme de sources (tarballs), exécutable Windows et source patches - pour les versions 4.2.0 et 4.2.1. -

    - -

    Autre solution

    - -

    - Si les applications PHP n'utilisent pas la méthode POST sur un serveur - affecté, il est possible de simplement interdire les requêtes POST sur le - serveur. -

    - -

    - Sous Apache, par exemple, il est possible d'utiliser le code suivant - dans le fichier de configuration principal, ou avec un fichier .htaccess - placé suffisamment près de la racine : -

    - -
    -<Limit POST>
    -   Order deny,allow
    -   Deny from all
    -</Limit>
    -
    - -

    - Notez qu'une autre configuration ou/et un autre fichier .htaccess avec - certains paramètres, peuvent annuler l'effet de l'exemple ci-dessus. -

    - -

    Crédits

    - -

    - Le PHP Group remercie Stefan Esser de e-matters GmbH pour la découverte - de cette vulnérabilité. -

    - - diff --git a/releases/4_3_0.php b/releases/4_3_0.php deleted file mode 100644 index d8897bb9ac..0000000000 --- a/releases/4_3_0.php +++ /dev/null @@ -1,100 +0,0 @@ - - -

    PHP 4.3.0 Release Announcement

    - -

    [ Version Française ]

    - -

    - 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. -

    - -

    Command line interface

    - -

    - 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 -

    - -

    Streams

    - -

    - 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 -

    - -

    New build system

    - -

    - 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. -

    - -

    Improvements

    - -

    PHP 4.3.0 has many improvements and enhancements:

    - -
      -
    • - - GD library is now bundled with the distribution and it is recommended - to always use the bundled version - -
    • -
    • vpopmail and cybermut extensions are moved to PECL
    • -
    • - several deprecated extensions (aspell, ccvs, cybercash, icap) - and SAPIs (fastcgi, fhttpd) are removed -
    • -
    • speed improvements in a variety of string functions
    • -
    • - Apache2 filter is improved, but is still considered experimental - (use with PHP in prefork and not worker (thread) model since many - extensions based on external libraries are not thread safe) -
    • -
    • various security fixes (imap, mysql, mcrypt, file upload, gd, etc)
    • -
    • new SAPI for embedding PHP in other applications (experimental)
    • -
    • much better test suite
    • -
    • significant improvements in dba, gd, pcntl, sybase, and xslt extensions
    • -
    • debug_backtrace() should help with debugging
    • -
    • - error messages now contain URLs linking to pages describing the error or - function in question -
    • -
    • Zend Engine has some fixes and minor performance enhancements
    • -
    • and TONS of other fixes, updates, new functions, etc
    • -
    - -

    - For the full list of changes in PHP 4.3.0, see the - ChangeLog file. -

    - - diff --git a/releases/4_3_0_fr.php b/releases/4_3_0_fr.php deleted file mode 100644 index 8761d1e45f..0000000000 --- a/releases/4_3_0_fr.php +++ /dev/null @@ -1,131 +0,0 @@ - "fr"]); -?> - -

    Annonce de publication de PHP 4.3.0

    - -

    [ English version ]

    - -

    - Après un long et difficile 8 mois de développement et de - test, PHP 4.3.0 est publié! Au vue - des évolutions, du temps consacré et des efforts - consentis, cette version est la plus importante version de la - série des PHP 4.x. Elle contribue largement a améliorer - les capacités de PHP en tant que langage - généraliste de scripts. -

    - -

    Utilisation en ligne de commande

    - -

    - PHP 4.3.0 achève la séparation du mode d'utilisation en - ligne de commande (dit CLI) qui permet de développer des - applications shell ou graphiques (avec PHP-GTK). - La version CLI de PHP est toujours compilées, mais elle n'est - installée que si la version CGI est désactivée - avec l'option --disable-cgi. De plus, vous pouvez utilisez la commande - make install-cli. Sous Windows, la version CLI est - disponible dans le dossier cli. -

    - -

    - CLI dispose de fonctionnalités différentes, par rappot - à la version interfacée avec les serveurs web. Pour - plus de détails, reportez vous à - Utiliser PHP en ligne de commande -

    - -

    Flôts (Streams)

    - -

    - Une nouveauté très importante, mais cachée a été - introduite : les flôts. Les flôts unifient la gestion des pipes, - fichiers, sockets et autres ressources d'entrées/sorties du coeur de - PHP et de ses extensions. -

    -

    - Cela signifie, pour les utilisateurs, est que les fonctions d'entrées/sorties - fonctionnent désormais avec les flôts (c'est à dire presque - toutes), peuvent utiliser des protocoles internes tels que HTTP/HTTPS et FTP/FTPS, - ainsi que des protocoles personnalisés, enregistrés comme tels depuis - les scripts PHP. Pour plus d'informations, voyez: - Liste des protocoles supportés -

    - -

    Nouveaus système de compilation

    - -

    - Cette version du système de compilation de PHP, entre autre choses, remplace - la version récursive lente par un Makefile global, et facilite - l'intégration des librairies connexes. Automake est uniquement - nécessaire pour l'utilitaire aclocal. Le processus de compilation est rendu - plus portable, et moins consommateur de ressources. -

    - -

    Améliorations

    - -

    PHP 4.3.0 propose de nombreuses améliorations et évolutions :

    - -
      -
    • - - La librairie GD est désormais distribué avec PHP, et il est - recommandé d'utiliser cette version - -
    • -
    • - Les extensions vpopmail et cybermut ont été - déplacées vers PECL -
    • -
    • - Plusieurs extensions obsolètes ont été - supprimées (aspell, ccvs, cybercash, icap) et (fastcgi, - fhttpd) -
    • -
    • - Accélération des fonctions de traitement des - channes de caractères -
    • -
    • - Amélioration des filtres Apache2 mais le support d'Apache 2 est - toujours considéré comme expérimental (utilisez PHP - avec le mode prefork et non le mode worker (thread), car de nombreuses - extensions basées sur des librairies externes ne sont pas encore - compatibles avec les threads) -
    • -
    • - Plusieurs corrections de sécurité (imap, mysql, mcrypt, - téléchargement de fichiers, gd, etc...) -
    • -
    • - Nouvelle interface SAPI pour inclure PHP dans d'autres applications - (expérimental) -
    • -
    • suite de test nettement améliorée et complétée
    • -
    • améliorations du support de dba, gd, pcntl, sybase et xslt
    • -
    • debug_backtrace() aide nettement pour le débogage
    • -
    • - les messages d'erreur contiennent des URL faisant référence aux - pages du manuel décrivant ces erreurs, ou bien aux fonctions - utilisées -
    • -
    • - Le Zend Engine a regu des corrections et des améliorations de - performances mineures -
    • -
    • - et des tonnes de corrections, améliorations et - nouvelles fonctions, dors et déjà documentées et - traduites, etc... -
    • -
    - -

    - Pour la liste complète des modifications de PHP 4.3.0, voyez le fichier - d'historique. -

    - - diff --git a/releases/4_3_1.php b/releases/4_3_1.php deleted file mode 100644 index 9ae866e95a..0000000000 --- a/releases/4_3_1.php +++ /dev/null @@ -1,76 +0,0 @@ - - -

    -PHP Security Advisory: CGI vulnerability in PHP version 4.3.0 -

    - -
    -
    Issued on:
    -
    February 17, 2003
    -
    Software:
    -
    PHP version 4.3.0
    -
    Platforms:
    -
    All
    -
    - -

    - The PHP Group has learned of a serious security vulnerability in - the CGI SAPI of PHP version 4.3.0. -

    - -

    Description

    - -

    - 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.) -

    - -

    Impact

    - -

    - 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. -

    - -

    Solution

    - -

    - 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. -

    - -

    Workarounds

    - -

    None.

    - -

    Credits

    - -

    - The PHP Group would like to thank Kosmas Skiadopoulos for discovering - this vulnerability. -

    - - diff --git a/releases/4_3_10.php b/releases/4_3_10.php deleted file mode 100644 index 9aff2fb70d..0000000000 --- a/releases/4_3_10.php +++ /dev/null @@ -1,55 +0,0 @@ - - -

    PHP 4.3.10 Release Announcement

    -

    [ Version Française ]

    -

    -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.

    - -

    Bugfix release

    - -

    - Aside from the above mentioned issues this release includes the following important fixes: -

    - -
      -
    • Possible crash inside ftp_get().
    • -
    • get_current_user() crashes on Windows.
    • -
    • Possible crash in ctype_digit() on large numbers.
    • -
    • Crash when parsing ?getvariable[][.
    • -
    • Possible crash in the curl_getinfo() function.
    • -
    • Double free when openssl_csr_new fails.
    • -
    • Crash when using unknown/unsupported session.save_handler and/or session.serialize_handler.
    • -
    • Prevent infinite recursion in url redirection.
    • -
    • Ensure that temporary files created by GD are removed.
    • -
    • Crash in fgetcsv() with negative length.
    • -
    • Improved performance of the foreach() construct.
    • -
    • Improved number handling on non-English locales.
    • -
    - -

    - For a full list of changes in PHP 4.3.10, see the - ChangeLog. -

    - - diff --git a/releases/4_3_10_fr.php b/releases/4_3_10_fr.php deleted file mode 100644 index 9dc6e5813c..0000000000 --- a/releases/4_3_10_fr.php +++ /dev/null @@ -1,56 +0,0 @@ - - -

    Annonce de publication de PHP 4.3.10

    -

    [ English Version ]

    -

    -L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.10. C'est une version -de maintenance, destinée à corriger une trentaine de bogues -non-critiques et ainsi que plusieurs problèmes de sécurité sérieux. -

    -

    -Cela inclut notamment: -

    -

    -CAN-2004-1018 - shmop_write() écrit hors des limites de la mémoire.
    -CAN-2004-1018 - dépassement de capacité avec pack() et unpack().
    -CAN-2004-1019 - publication possible d'informations, dépassement de capacité dans les index négatif lors de délinéarisation de données.
    -CAN-2004-1020 - addslashes() ne protège pas correctement \0.
    -CAN-2004-1063 - contournement de la directive de dossier d'exécution.
    -CAN-2004-1064 - accès arbitraire à un fichier via une troncature.
    -CAN-2004-1065 - dépassement de capacité avec exif_read_data() sur un long nom de section.
    -magic_quotes_gpc peut mener à la lecture d'un dossier via le téléchargement de fichiers. -

    -

    Tous les utilisateurs sont encouragés à utiliser cette version.

    - -

    Version de correction de bogues

    - -

    -En plus des fonctionnalités ci-dessus, PHP 4.3.9 contient notamment les corrections, ajouts et améliorations suivantes : -

    - -
      -
    • Crash possible dans ftp_get().
    • -
    • get_current_user() crashe sur Windows.
    • -
    • Crash possible avec ctype_digit() pour les grands nombres.
    • -
    • Crash lors de l'analyse de ?getvariable[][.
    • -
    • Crash possible avec curl_getinfo().
    • -
    • Double désallocation lorsque openssl_csr_new() échoue.
    • -
    • Crash lors de l'utilisation d'un session.save_handler et/ou session.serialize_handler non supporté.
    • -
    • Evite les récursions infinies lors des redirections URL.
    • -
    • S'assure que les fichiers temporaires de GD sont bien supprimés.
    • -
    • Crash avec fgetcsv() et une taille négative.
    • -
    • Performances améliorés pour foreach().
    • -
    • Amélioration du support des configurations locales non-anglaises.
    • -
    - -

    - Pour une liste exhaustive des modifications de PHP 4.3.10, voyez - le ChangeLog, en anglais. -

    - - diff --git a/releases/4_3_11.php b/releases/4_3_11.php deleted file mode 100644 index 808755625e..0000000000 --- a/releases/4_3_11.php +++ /dev/null @@ -1,39 +0,0 @@ - - -

    PHP 4.3.11 Release Announcement

    -

    [ Version Française ]

    -

    -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.

    - -

    Bugfix release

    - -
      -
    • Crash in bzopen() if supplied path to non-existent file.
    • -
    • DOM crashing when attribute appended to Document.
    • -
    • unserialize() float problem on non-English locales.
    • -
    • Crash in msg_send() when non-string is stored without being serialized.
    • -
    • Possible infinite loop in imap_mail_compose().
    • -
    • Fixed crash in chunk_split(), when chunklen > strlen.
    • -
    • session_set_save_handler crashes PHP when supplied non-existent object ref.
    • -
    • Memory leak in zend_language_scanner.c.
    • -
    • Compile failures of zend_strtod.c.
    • -
    • Fixed crash in overloaded objects & overload() function.
    • -
    • cURL functions bypass open_basedir.
    • -
    - -

    - For a full list of changes in PHP 4.3.11, see the - ChangeLog. -

    - - diff --git a/releases/4_3_11_fr.php b/releases/4_3_11_fr.php deleted file mode 100644 index 715218c619..0000000000 --- a/releases/4_3_11_fr.php +++ /dev/null @@ -1,36 +0,0 @@ - - -

    Annonce de publication de PHP 4.3.11

    -

    [ English Version ]

    -

    -L'équipe de développement PHP a le plaisir de vous annoncer la publication de PHP 4.3.11. C'est une version de maintenance, destinée à corriger environ 70 bogues non-critiques, plusieurs problèmes avec les extensions exif et fbsql ainsi que les fonctions unserialize(), swf_definepoly() et getimagesize(). -

    -

    -Tous les utilisateurs sont encouragés à utiliser cette version. -

    - -

    Version de correction de bogues

    -
      -
    • Crash avec la fonction bzopen() si le chemin fourni conduit à un fichier inexistant.
    • -
    • Crash de DOM lorsqu'un attribut est ajouté à un objet Document.
    • -
    • Problème d'unserialize() avec les nombres décimaux pour les configurations non-anglaises.
    • -
    • Crash avec msg_send() lorsqu'une variable autre qu'une chaîne est envoyée sans linéarisation.
    • -
    • Boucle infinie potentielle dans imap_mail_compose().
    • -
    • Crash dans chunk_split(), lorsque chunklen est supérieur à la taille de la ligne.
    • -
    • session_set_save_handler fait crasher PHP lorsqu'elle reçoit une référence inexistante sur un objet.
    • -
    • Fuite de mémoire dans zend_language_scanner.c.
    • -
    • Problèmes de compilation dans zend_strtod.c.
    • -
    • Crash dans un objet surchargé avec la fonction overload().
    • -
    • Les fonctions cURL outrepassaient open_basedir.
    • -
    - -

    - Pour une liste exhaustive des modifications de PHP 4.3.11, voyez - le ChangeLog, en anglais. -

    - - diff --git a/releases/4_3_2.php b/releases/4_3_2.php deleted file mode 100644 index 48e099c15e..0000000000 --- a/releases/4_3_2.php +++ /dev/null @@ -1,50 +0,0 @@ - - -

    PHP 4.3.2 Release Announcement

    - -

    [ Version Française ]

    - -

    - 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. -

    - -

    Bugfix release

    - -

    - PHP 4.3.2 contains, among others, following important fixes, additions and improvements: -

    - -
      -
    • Fixes several potentially hazardous integer and buffer overflows.
    • -
    • Fixes for several 64-bit problems.
    • -
    • - New Apache 2.0 SAPI module (sapi/apache2handler, - enabled with --with-apxs2). -
    • -
    • - New session_regenerate_id() function. (Important feature - against malicious session planting). -
    • -
    • Improvements to dba extension.
    • -
    • Improvements to thttpd SAPI module.
    • -
    • Dropped support for GDLIB version 1.x.x (php_gd.dll) on Windows.
    • -
    • An unix man page for CLI version of PHP.
    • -
    • - New "disable_classes" php.ini option to allow administrators to - disable certain classes for security reasons. -
    • -
    • ..and a HUGE amount of other bug fixes!
    • -
    - -

    - For a full list of changes in PHP 4.3.2, see the - ChangeLog. -

    - - diff --git a/releases/4_3_2_fr.php b/releases/4_3_2_fr.php deleted file mode 100644 index bd62af5f7b..0000000000 --- a/releases/4_3_2_fr.php +++ /dev/null @@ -1,55 +0,0 @@ - "fr"]); -?> - -

    Annonce de publication de PHP 4.3.2

    - -

    [ English version ]

    - -

    - Après une longue étape de tests d'assurance Qualité, - PHP 4.3.2 est finalement disponible!
    - Cette version de maintenance résout un grand nombre de bugs trouvés dans - des versions plus anciennes de PHP, et il est recommandé - de faire la mise à jour pour tous les utilisateurs PHP. -

    - -

    Version mineure, corrections de bugs

    - -

    - PHP 4.3.2 contient notamment les corrections, ajouts et améliorations suivantes : -

    - -
      -
    • - Correction de plusieurs problèmes dangereux de dépassement de - capacité avec les entiers. -
    • -
    • Correction de plusieurs problèmes liés aux plate-formes 64-bits.
    • -
    • - Nouveau module SAPI Apache 2.0 (sapi/apache2handler, activé - avec l'option --with-apxs2). -
    • -
    • - Nouvelle fonction session_regenerate_id(). (Fonctionnalité - importante pour contrer les usurpations de sessions). -
    • -
    • Améliorations de l'extension dba.
    • -
    • Amélioration du module thttpd SAPI.
    • -
    • Abandon de GDLIB version 1.x.x (php_gd.dll) sous Windows.
    • -
    • Le manuel man sous Unix pour la version CLI de PHP.
    • -
    • - Nouvelle option "disable_classes" pour permettre aux administrateurs - de désactiver certaines classes pour des raisons de - sécurité. -
    • -
    - -

    - Pour une liste complète des modifications de PHP 4.3.2, reportez-vous au fichier - ChangeLog. -

    - - diff --git a/releases/4_3_3.php b/releases/4_3_3.php deleted file mode 100644 index 93c0f20a4d..0000000000 --- a/releases/4_3_3.php +++ /dev/null @@ -1,47 +0,0 @@ - - -

    PHP 4.3.3 Release Announcement

    - -

    [ Version Française ]

    - -

    - 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. -

    - -

    Bugfix release

    - -

    - PHP 4.3.3 contains, among others, following important fixes, additions and improvements: -

    - -
      -
    • Improved the engine to use POSIX/socket IO where feasible.
    • -
    • Fixed several potentially hazardous integer and buffer overflows.
    • -
    • Fixed corruption of multibyte character including 0x5c as second byte in multipart/form-data.
    • -
    • Fixed each() to be binary safe for keys.
    • -
    • Major improvements to the NSAPI SAPI.
    • -
    • Improvements to the IMAP extension.
    • -
    • Improvements to the InterBase extension.
    • -
    • Added DBA handler 'inifile' to support ini files.
    • -
    • Added long options into CLI & CGI (e.g. --version).
    • -
    • Added a new parameter to preg_match*() that can be used to specify the starting offset in the subject string to match from.
    • -
    • Upgraded the bundled Expat library to version 1.95.6
    • -
    • Upgraded the bundled PCRE library to version 4.3
    • -
    • Upgraded the bundled GD library to version GD 2.0.15
    • - -
    • Over 100 various bug fixes!
    • -
    - -

    - For a full list of changes in PHP 4.3.3, see the - ChangeLog. -

    - - diff --git a/releases/4_3_3_fr.php b/releases/4_3_3_fr.php deleted file mode 100644 index 3a48a9a893..0000000000 --- a/releases/4_3_3_fr.php +++ /dev/null @@ -1,48 +0,0 @@ - - -

    Annonce de publication de PHP 4.3.3

    - -

    [ English version ]

    - -

    -Après avoir suivi un long processus qualité, PHP 4.3.3 est disponible!
    -Cette version de maintenance résout un bon nombre de bugs découverts -dans des versions antérieures de PHP. Elle corrige aussi plusieurs -problèmes de sécurité. Il est vivement recommandé à tous les -utilisateurs d'utiliser cette version aussitôt que possible. -

    - -

    Corrections et nouveautés

    - -

    -PHP 4.3.3 contient la liste suivante et non exhaustive de corrections, -améliorations et ajouts : -

    - -
      -
    • Amélioration du moteur pour utiliser les entrées/sorties Posix et socket lorsque c'est possible.
    • -
    • Corrections de plusieurs problèmes de dépassement de capacité avec les entiers et buffers.
    • -
    • Correction des jeux de caractères multi-octets qui incluent le caractère 0x5c en tant que second octet des formulaires multipart/form-data.
    • -
    • each() est désormais compatible avec les clés binaires.
    • -
    • Améliorations importantes de NSAPI SAPI.
    • -
    • Amélioration de l'interface IMAP.
    • -
    • Amélioration de l'interface Interbase.
    • -
    • Ajout d'un gestionnaire DBA 'infile' pour supporter les fichiers .ini.
    • -
    • Ajout des options longues pour les versions CLI & CGI (i.e. --version).
    • -
    • Ajout de nouveaux paramètres à preg_match*() pour indiquer l'offset de départ dans la recherche de la chaîne.
    • -
    • La librairie Expat distribuée passe en version 1.95.6
    • -
    • La librairie PCRE distribuée passe en version 4.3
    • -
    • La librairie GD distribuée passe en version 2.0.15
    • -
    • Plus de 100 corrections de bugs divers.
    • -
    - -

    - Pour une liste exhaustive des modifications de PHP 4.3.3, voyez - le changelog, en anglais. -

    - - diff --git a/releases/4_3_4.php b/releases/4_3_4.php deleted file mode 100644 index 1e0ab94e1a..0000000000 --- a/releases/4_3_4.php +++ /dev/null @@ -1,39 +0,0 @@ - - -

    PHP 4.3.4 Release Announcement

    - -

    [ Version Française ]

    - -

    - 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. -

    - -

    Bugfix release

    - -

    - PHP 4.3.4 contains, among others, following important fixes, additions and improvements: -

    - -
      -
    • Fixed disk_total_space() and disk_free_space() under FreeBSD.
    • -
    • Fixed FastCGI support on Win32.
    • -
    • Fixed FastCGI being unable to bind to a specific IP.
    • -
    • Fixed several bugs in mail() implementation on win32.
    • -
    • Fixed crashes in a number of functions.
    • -
    • Fixed compile failure on MacOSX 10.3 Panther.
    • - -
    • Over 60 various bug fixes!
    • -
    - -

    - For a full list of changes in PHP 4.3.4, see the - ChangeLog. -

    - - diff --git a/releases/4_3_4_fr.php b/releases/4_3_4_fr.php deleted file mode 100644 index 4f36924454..0000000000 --- a/releases/4_3_4_fr.php +++ /dev/null @@ -1,41 +0,0 @@ - "fr"]); -?> - -

    Annonce de publication de PHP 4.3.4

    - -

    [ English version ]

    - -

    - Après un long processus d'assurance qualité, - PHP 4.3.4 est désormais disponible!
    - C'est une version mineure d'entretien, avec de nombreuses corrections de bogues. - Tous les utilisateurs sont invités à passer à cette nouvelle version. -

    - -

    Version de correction de bogues

    - -

    - PHP 4.3.4 contient notamment les corrections, ajouts et - améliorations suivantes : -

    - -
      -
    • Correction des fonctions disk_total_space() et disk_free_space() sous FreeBSD.
    • -
    • Correction du support FastCGI pour Win32
    • -
    • Correction de FastCGI qui ne pouvait pas utiliser certaines IP spécifiques.
    • -
    • Correction de nombreux bogues de la fonction mail() sous Windows.
    • -
    • Corrections de divers crash pour de nombreuses fonctions.
    • -
    • Correction de problèmes de compilation pour MacOSX 10.3 Panther.
    • - -
    • Plus de 60 corrections!
    • -
    - -

    - Pour la liste exhaustive des modifications de PHP 4.3.4, voyez - le changelog, en anglais. -

    - - diff --git a/releases/4_3_5.php b/releases/4_3_5.php deleted file mode 100644 index d5efd309c2..0000000000 --- a/releases/4_3_5.php +++ /dev/null @@ -1,46 +0,0 @@ - - -

    PHP 4.3.5 Release Announcement

    - -

    [ Version Française ]

    - -

    - 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. -

    - -

    Bugfix release

    - -

    - PHP 4.3.5 contains, among others, following important fixes, additions and improvements: -

    - -
      -
    • Fixed INI leak between Apache virtual hosts.
    • -
    • Fixed crashes inside fgetcsv() and make the function binary safe.
    • -
    • Fixed compilation with early versions of GCC 3.0.
    • -
    • Fixed a bug that prevented feof() from working correctly with sockets.
    • -
    • Improved the matching algorithm inside the get_browser() function.
    • -
    • Fixed resolving of open_basedir on Win32 systems.
    • -
    • Fixed incorrect errors for non-existent directories when safe_mode is enabled.
    • -
    • Bundled OpenSSL dlls on Win32 upgraded to 0.9.7c
    • -
    • Updated bundled PostgreSQL library to version 7.4 in Windows distribution.
    • -
    • Bundled PCRE library upgraded to 4.5
    • -
    • Synchronized bundled GD library with GD 2.0.17
    • -
    • A number of fixes for 64bit systems.
    • - -
    • Aside from the above mentioned fixes, this release resolves over 140 various bugs and implementational problems.
    • -
    - -

    - For a full list of changes in PHP 4.3.5, see the - ChangeLog. -

    - - diff --git a/releases/4_3_5_fr.php b/releases/4_3_5_fr.php deleted file mode 100644 index f4d8fdbadf..0000000000 --- a/releases/4_3_5_fr.php +++ /dev/null @@ -1,46 +0,0 @@ - - -

    Annonce de publication de PHP 4.3.5

    - -

    [ English Version ]

    - -

    -L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.5. C'est une version -de maintenance, destinée à corriger des erreurs, et sans aucun -ajout de fonctionnalité. PHP 4.3.5 est, de loin, la version de PHP -la plus stable, et il est recommandé à tous les utilisateurs -d'adopter cette version dès que possible. -

    - -

    Version de correction de bogues

    - -

    - PHP 4.3.5 contient notamment les corrections, ajouts et améliorations suivantes : -

    - -
      -
    • Correction d'une fuite mémoire liée au fichier INI, sur les hôtes virtuels Apache.
    • -
    • Correction de crashs avec fgetcsv(). La fonction est désormais compatible avec les données binaires.
    • -
    • Correction de la compilation avec les premières versions de GCC 3.0.
    • -
    • Amélioration de l'algorithme d'analyse de la fonction get_browser().
    • -
    • Correction de open_basedir sur Win32.
    • -
    • Correction de messages erronés pour les dossiers inexistants, en mode safe_mode.
    • -
    • Ajout des DLL OpenSSL sur Win32, en version 0.9.7c.
    • -
    • Mise à jour de la bibliothèque PostgreSQL en version 7.4 dans la distribution Windows.
    • -
    • Mise à jour de la bibliothèque PCRE en version 4.5.
    • -
    • Mise à jour de la bibliothèque GD en version 2.0.17.
    • -
    • Corrections de bogues sur les systèmes 64 bits.
    • -
    • En plus de ces corrections, cette version inclut 140 corrections de bogues et problèmes divers.
    • -
    - -

    - Pour une liste exhaustive des modifications de PHP 4.3.5, voyez - le changelog, en anglais. -

    - - diff --git a/releases/4_3_6.php b/releases/4_3_6.php deleted file mode 100644 index 998c9c37aa..0000000000 --- a/releases/4_3_6.php +++ /dev/null @@ -1,43 +0,0 @@ - - -

    PHP 4.3.6 Release Announcement

    - -

    [ Version Française ]

    - -

    - 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. -

    - -

    Bugfix release

    - -

    - Aside from the above mentioned issues this release includes the following important fixes: -

    - -
      -
    • Updated bundled PDFLib library to version 5.0.3p1 in Windows distribution.
    • -
    • Synchronized bundled GD library with GD 2.0.22.
    • -
    • Fixed bugs that prevented building of the GD extension against the external GD library versions 1.2-1.8.
    • -
    • Fixed a bugs resulting in leakage of session settings across requests.
    • -
    • Fixed several daylight savings bugs inside the mktime and strtotime functions.
    • -
    • Fixed a bug that prevented compilation of cURL extension against libcurl 7.11.1
    • -
    • Fixed a number of crashes inside domxml and mssql extensions.
    • - -
    • All in all this release fixes approximately 25 bugs that have been discovered - since the 4.3.5 release.
    • -
    - -

    - For a full list of changes in PHP 4.3.6, see the - ChangeLog. -

    - - diff --git a/releases/4_3_6_fr.php b/releases/4_3_6_fr.php deleted file mode 100644 index df7a861f72..0000000000 --- a/releases/4_3_6_fr.php +++ /dev/null @@ -1,45 +0,0 @@ - - - -

    Annonce de publication de PHP 4.3.6

    - -

    [ English Version ]

    - -

    -L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.6. C'est une version -de maintenance, destinée à corriger deux bogues qui -peuvent conduire à des crashs de PHP si la sécurité threads est activée. -Il est recommandé à tous les utilisateurs d'adopter cette -version dès que possible. -

    - -

    Version de correction de bogues

    - -

    - PHP 4.3.6 contient notamment les corrections, ajouts et améliorations suivantes : -

    - -
      -
    • Mise à jour de la bibliothèque PDFLib en version 5.0.3p1 pour les versions Windows.
    • -
    • Mise à jour de la bibliothèque GD 2.0.22.
    • -
    • Correction d'un bogue qui empêchait la compilation de l'extension GD avec les versions 1.2-1.8 de la librairie externe GD.
    • -
    • Correction d'un bogue avec les sessions : les configurations ne se propageaient pas entre les requêtes.
    • -
    • Correction de plusieurs bogues liés au changement d'heure d'hiver et d'été dans les fonctions mktime et strtotime.
    • -
    • Correction d'un bogue qui empêchait la compilation de l'extension cURL avec libcurl 7.11.1
    • -
    • Correction de plusieurs crashs avec les extensions domxml et mssql.
    • - -
    • Cette version corrige environ 25 bogues qui ont été découverts depuis - la version 4.3.5.
    • -
    - -

    - Pour une liste exhaustive des modifications de PHP 4.3.6, voyez - le changelog, en anglais. -

    - - diff --git a/releases/4_3_7.php b/releases/4_3_7.php deleted file mode 100644 index 12d5ead8d5..0000000000 --- a/releases/4_3_7.php +++ /dev/null @@ -1,42 +0,0 @@ - - -

    PHP 4.3.7 Release Announcement

    - -

    [ Version Française ]

    - -

    - 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. -

    - -

    Bugfix release

    - -

    - Aside from the above mentioned issues this release includes the following important fixes: -

    - -
      -
    • Synchronized bundled GD library with GD 2.0.23.
    • -
    • Fixed a bug that prevented compilation of GD extensions against FreeType 2.1.0-2.1.2.
    • -
    • Fixed thread safety issue with informix connection id.
    • -
    • Fixed incorrect resolving of relative paths by glob() in windows.
    • -
    • Fixed mapping of Greek letters to html entities.
    • -
    • Fixed a bug that caused an on shutdown crash when using PHP with Apache 2.0.49.
    • -
    • Fixed a number of crashes inside pgsql, cpdf and gd extensions.
    • - -
    • All in all this release fixes over 30 bugs that have been discovered and resolved - since the 4.3.6 release.
    • -
    - -

    - For a full list of changes in PHP 4.3.7, see the - ChangeLog. -

    - - diff --git a/releases/4_3_7_fr.php b/releases/4_3_7_fr.php deleted file mode 100644 index 22776d6a95..0000000000 --- a/releases/4_3_7_fr.php +++ /dev/null @@ -1,44 +0,0 @@ - - -

    Annonce de publication de PHP 4.3.7

    - -

    [ English Version ]

    - -

    -L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.7. C'est une version -de maintenance, destinée à corriger des bogues non-critiques, -corriger une vulnérabilité de validation dans les fonctions escapeshellcmd() et -escapeshellarg() sur la plate-forme Windows. Les utilisateurs de PHP sont encouragés -à changer de version aussitôt que possible. -

    - -

    Version de correction de bogues

    - -

    - PHP 4.3.7 contient notamment les corrections, ajouts et améliorations suivantes : -

    - -
      -
    • La bibliothéque GD est maintenant en version 2.0.23.
    • -
    • Correction d'un bogue qui empêchait la compilation de GD avec FreeType 2.1.0-2.1.2.
    • -
    • Correction d'un probléme de sécurité thread avec l'identifiant de connexion informix.
    • -
    • Correction de la résolution de chemin relatifs avec glob() sous Windows.
    • -
    • Correction des entités HTML pour les caractéres grecs.
    • -
    • Correction d'un bug qui causait un crash avec Apache 2.0.49.
    • -
    • Correction de nombreux crashs avec PostGreSQL, CPDF et GD.
    • - -
    • Cette version corrige environ 30 bogues qui ont été découverts depuis - la version 4.3.6.
    • -
    - -

    - Pour une liste exhaustive des modifications de PHP 4.3.7, voyez - le changelog, en anglais. -

    - - diff --git a/releases/4_3_8.php b/releases/4_3_8.php deleted file mode 100644 index 3f590cf1bb..0000000000 --- a/releases/4_3_8.php +++ /dev/null @@ -1,30 +0,0 @@ - - -

    PHP 4.3.8 Release Announcement

    - - - -

    - 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. -

    - -

    Security Fixes release

    - -

    - This release addresses several important security issues. -

    - -

    - For a full list of changes in PHP 4.3.8, see the - ChangeLog. -

    - - diff --git a/releases/4_3_9.php b/releases/4_3_9.php deleted file mode 100644 index d43691b8e4..0000000000 --- a/releases/4_3_9.php +++ /dev/null @@ -1,46 +0,0 @@ - - -

    PHP 4.3.9 Release Announcement

    -

    [ Version Française ]

    -

    - 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. -

    - -

    Bugfix release

    - -

    - Aside from the above mentioned issues this release includes the following important fixes: -

    - -
      -
    • Implemented periodic PCRE compiled regexp cache cleanup, to avoid memory exhaustion
    • -
    • Fixed strip_tags() to correctly handle '\0' characters.
    • -
    • Rewritten UNIX and Windows install help files.
    • -
    • Fixed a file-descriptor leak with phpinfo() and other 'special' URLs.
    • -
    • Fixed possible crash inside php_shutdown_config().
    • -
    • Fixed isset crashes on arrays.
    • -
    • Fixed imagecreatefromstring() crashes with external GD library.
    • -
    • Fixed fgetcsv() parsing of strings ending with escaped enclosures.
    • -
    • Fixed overflow in array_slice(), array_splice(), substr(), substr_replace(), strspn(), strcspn().
    • -
    • Fixed '\0' in Authenticate header passed via safe_mode.
    • -
    • Allow bundled GD to compile against freetype 2.1.2.
    • - - -
    • All in all this release fixes over 50 bugs that have been discovered and resolved - since the 4.3.8 release.
    • -
    - -

    - For a full list of changes in PHP 4.3.9, see the - ChangeLog. -

    - - diff --git a/releases/4_3_9_fr.php b/releases/4_3_9_fr.php deleted file mode 100644 index 75210ebc4e..0000000000 --- a/releases/4_3_9_fr.php +++ /dev/null @@ -1,47 +0,0 @@ - - -

    Annonce de publication de PHP 4.3.9

    -

    [ English Version ]

    -

    -L'équipe de développement PHP a le plaisir de vous annoncer -la publication de PHP 4.3.9. C'est une version -de maintenance, destinée à corriger une cinquantaine de bogues non-critiques, -et corriger le traitement des valeurs GPC. Cette version inclut aussi la possibilité -d'écrire des images GIF via la bibliothèque GD interne. Tous les utilisateurs -sont encouragés à utiliser cette version. -

    - -

    Version de correction de bogues

    - -

    -En plus des fonctionnalités ci-dessus, PHP 4.3.9 contient notamment les corrections, -ajouts et améliorations suivantes : -

    - -
      -
    • Implementation d'un nettoyage périodique du cache de regex PCRE, pour éviter les problèmes de mémoire.
    • -
    • Correction de strip_tags() pour gérer correctement le caractère '\0'.
    • -
    • Réécriture des fichiers d'installation sous UNIX et Windows.
    • -
    • Correction d'une fuite mémoire avec phpinfo() et d'autres URL spéciales.
    • -
    • Correction d'un crash possible avec php_shutdown_config().
    • -
    • Correction d'un crash avec isset() sur les tableaux.
    • -
    • Correction d'un crash avec imagecreatefromstring() et la bibliothèque interne GD.
    • -
    • Correction de fgetcsv(), lors de l'analyse de chaînes avec des séquences protégées.
    • -
    • Correction d'un dépassement de capacité avec array_slice(), array_splice(), substr(), substr_replace(), strspn(), strcspn().
    • -
    • Correction de '\0' dans l'entête Authenticate, passé via le safe_mode.
    • -
    • Compilation de la GD interne avec freetype 2.1.2.
    • - -
    • Cette version corrige environ 50 bogues qui ont été découverts depuis - la version 4.3.8.
    • -
    - -

    - Pour une liste exhaustive des modifications de PHP 4.3.9, voyez - le ChangeLog, en anglais. -

    - - diff --git a/releases/4_4_0.php b/releases/4_4_0.php deleted file mode 100644 index 500fd9b093..0000000000 --- a/releases/4_4_0.php +++ /dev/null @@ -1,47 +0,0 @@ - - -

    PHP 4.4. Release Announcement

    -

    -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. -

    - -

    Bugfix release

    - -
      -
    • Memory corruptions with references.
    • -
    • Small security problem with bundled shtool.
    • -
    - -

    - For a full list of changes in PHP 4.4.0, see the - ChangeLog. -

    - - diff --git a/releases/4_4_1.php b/releases/4_4_1.php deleted file mode 100644 index deab581479..0000000000 --- a/releases/4_4_1.php +++ /dev/null @@ -1,51 +0,0 @@ - - -

    PHP 4.4.1. Release Announcement

    -

    -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: -

      -
    • Fixed a Cross Site Scripting (XSS) - vulnerability in phpinfo() that could - lead f.e. to cookie exposure, when a phpinfo() script is accidently left - on a production server.
    • -
    • Fixed multiple safe_mode/open_basedir bypass vulnerabilities in ext/curl - and ext/gd that could lead to exposure of files normally not accessible due - to safe_mode or open_basedir restrictions.
    • -
    • Fixed a possible $GLOBALS overwrite problem in file upload handling, - extract() and import_request_variables() that could lead to unexpected - security holes in scripts assumed secure. (For more information, see here).
    • -
    • Fixed a problem when a request was terminated due to memory_limit - constraints during certain - parse_str() calls. In some cases - this can result in register_globals being turned on.
    • -
    • Fixed an issue with trailing slashes in allowed basedirs. They were ignored - by open_basedir checks, so that specified basedirs were handled as prefixes - and not as full directory names.
    • -
    • Fixed an issue with calling virtual() - on Apache 2. This allowed bypassing of certain configuration directives - like safe_mode or open_basedir.
    • -
    • Updated to the latest pcrelib to fix a possible integer overflow - vulnerability announced in CAN-2005-2491.
    • -
    -

    -

    -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. -

    - - diff --git a/releases/4_4_2.php b/releases/4_4_2.php deleted file mode 100644 index e84d53a3b7..0000000000 --- a/releases/4_4_2.php +++ /dev/null @@ -1,31 +0,0 @@ - - -

    PHP 4.4.2. Release Announcement

    -

    -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: -

      -
    • Prevent header injection by limiting each header to a single line.
    • -
    • Possible XSS inside error reporting functionality.
    • -
    • Missing safe_mode/open_basedir checks into cURL extension.
    • -
    • Apache 2 regression with sub-request handling on non-Linux systems.
    • -
    • key() and current() regression related to references.
    • -
    -

    -

    -This release also fixes about 30 other defects. -

    -

    - For a full list of changes in PHP 4.4.2, see the - ChangeLog. -

    - - diff --git a/releases/4_4_3.php b/releases/4_4_3.php deleted file mode 100644 index ad07b3ea19..0000000000 --- a/releases/4_4_3.php +++ /dev/null @@ -1,35 +0,0 @@ - - -

    PHP 4.4.3. Release Announcement

    -

    -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: -

      -
    • Disallow certain characters in session names.
    • -
    • Fixed a buffer overflow inside the wordwrap() function.
    • -
    • Prevent jumps to parent directory via the 2nd parameter of the tempnam() function.
    • -
    • Improved safe_mode check for the error_log() function.
    • -
    • Fixed cross-site scripting inside the phpinfo() function.
    • -
    -

    - -

    -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. -

    - - diff --git a/releases/4_4_4.php b/releases/4_4_4.php deleted file mode 100644 index e2ce4fa5fc..0000000000 --- a/releases/4_4_4.php +++ /dev/null @@ -1,35 +0,0 @@ - - -

    PHP 4.4.4 Release Announcement

    -

    -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: -

      -
    • Added missing safe_mode/open_basedir checks inside the error_log(), file_exists(), imap_open() and imap_reopen() functions.
    • -
    • Fixed overflows inside str_repeat() and wordwrap() functions on 64bit systems.
    • -
    • Fixed possible open_basedir/safe_mode bypass in cURL extension.
    • -
    • Fixed overflow in GD extension on invalid GIF images.
    • -
    • Fixed a buffer overflow inside sscanf() function.
    • -
    • Fixed memory_limit restriction on 64 bit system.
    • -
    -

    - -

    -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. -

    - - diff --git a/releases/4_4_5.php b/releases/4_4_5.php deleted file mode 100644 index 4c143df348..0000000000 --- a/releases/4_4_5.php +++ /dev/null @@ -1,55 +0,0 @@ - - -

    PHP 4.4.5 Release Announcement

    -

    -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: -

    -
      -
    • Fixed possible safe_mode & open_basedir bypasses inside the session extension.
    • -
    • Fixed unserialize() abuse on 64 bit systems with certain input strings.
    • -
    • Fixed possible overflows and stack corruptions in the session extension.
    • -
    • Fixed an underflow inside the internal sapi_header_op() function.
    • -
    • Fixed possible overflows inside zip & imap extensions.
    • -
    • Fixed non-validated resource destruction inside the shmop extension.
    • -
    • Fixed a possible overflow in the str_replace() function.
    • -
    • Fixed possible clobbering of super-globals in several code paths.
    • -
    • Fixed a possible information disclosure inside the wddx extension.
    • -
    • Fixed a possible string format vulnerability in *print() functions on 64 bit systems.
    • -
    • Fixed a possible buffer overflow inside ibase_{delete,add,modify}_user() function.
    • -
    • Fixed a string format vulnerability inside the odbc_result_all() function.
    • -
    • Fixed a possible buffer overflow inside mail() function on Windows.
    • -
    - -

    -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. -

    - - diff --git a/releases/4_4_6.php b/releases/4_4_6.php deleted file mode 100644 index 42fa75ec31..0000000000 --- a/releases/4_4_6.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 4.4.6 Release Announcement

    -

    -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. -

    - - diff --git a/releases/4_4_7.php b/releases/4_4_7.php deleted file mode 100644 index d523396682..0000000000 --- a/releases/4_4_7.php +++ /dev/null @@ -1,51 +0,0 @@ - - -

    PHP 4.4.7 Release Announcement

    -

    -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: -

    -
      -
    • Fixed CVE-2007-1001, GD wbmp used with invalid image size (by Ivan Fratric)
    • -
    • Fixed asciiz byte truncation inside mail() (MOPB-33 by Stefan Esser)
    • -
    • Fixed a bug in mb_parse_str() that can be used to activate register_globals (MOPB-26 by Stefan Esser)
    • -
    • Fixed unallocated memory access/double free in in array_user_key_compare() (MOPB-24 by Stefan Esser)
    • -
    • Fixed a double free inside session_regenerate_id() (MOPB-22 by Stefan Esser)
    • -
    • Added missing open_basedir & safe_mode checks to zip:// and bzip:// wrappers. (MOPB-21 by Stefan Esser).
    • -
    • Limit nesting level of input variables with max_input_nesting_level as fix for (MOPB-03 by Stefan Esser)
    • -
    • XSS in phpinfo() (MOPB-8 by Stefan Esser)
    • -
    • Fixed CRLF injection inside ftp_putcmd(). (by loveshell[at]Bug.Center.Team)
    • -
    • Fixed a possible super-global overwrite inside import_request_variables(). (by Stefano Di Paola, Stefan Esser)
    • -
    • Fixed a remotely trigger-able buffer overflow inside bundled libxmlrpc library. (by Stanislav Malyshev)
    • -
    - -

    -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: -

    -
      -
    • About 10 bug fixes.
    • -
    - -

    - For a full list of changes in PHP 4.4.7, see the ChangeLog. -

    - - - diff --git a/releases/4_4_8.php b/releases/4_4_8.php deleted file mode 100644 index 2c122a8475..0000000000 --- a/releases/4_4_8.php +++ /dev/null @@ -1,36 +0,0 @@ - - -

    PHP 4.4.8 Release Announcement

    -

    -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: -

    -
      -
    • Improved fix for MOPB-02-2007.
    • -
    • Fixed an integer overflow inside chunk_split(). Identified by Gerhard Wagner.
    • -
    • Fixed integer overlow in str[c]spn().
    • -
    • Fixed regression in glob when open_basedir is on introduced by #41655 fix.
    • -
    • Fixed money_format() not to accept multiple %i or %n tokens.
    • -
    • Addded "max_input_nesting_level" php.ini option to limit nesting level of input variables. Fix for MOPB-03-2007.
    • -
    • Fixed INFILE LOCAL option handling with MySQL - now not allowed when open_basedir or safe_mode is active.
    • -
    • Fixed session.save_path and error_log values to be checked against open_basedir and safe_mode (CVE-2007-3378).
    • -
    - -

    - For a full list of changes in PHP 4.4.8, see the ChangeLog. -

    - - - diff --git a/releases/4_4_9.php b/releases/4_4_9.php deleted file mode 100644 index 141b091635..0000000000 --- a/releases/4_4_9.php +++ /dev/null @@ -1,32 +0,0 @@ - - -

    PHP 4.4.9 Release Announcement

    -

    -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: -

    -
      -
    • Updated PCRE to version 7.7.
    • -
    • Fixed overflow in memnstr().
    • -
    • Fixed crash in imageloadfont when an invalid font is given.
    • -
    • Fixed open_basedir handling issue in the curl extension.
    • -
    • Fixed mbstring.func_overload set in .htaccess becomes global.
    • -
    - -

    - For a full list of changes in PHP 4.4.9, see the ChangeLog. -

    - - - diff --git a/releases/5_1_0.php b/releases/5_1_0.php deleted file mode 100644 index 0ad76a5fdc..0000000000 --- a/releases/5_1_0.php +++ /dev/null @@ -1,66 +0,0 @@ - - -

    PHP 5.1.0. Release Announcement

    -

    -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: -

    -

    -

      -
    • A complete rewrite of date handling code, with improved timezone support.
    • -
    • Significant performance improvements compared to PHP 5.0.X.
    • -
    • PDO extension is now enabled by default.
    • -
    • Over 30 new functions in various extensions and built-in functionality.
    • -
    • Bundled libraries, PCRE and SQLite upgraded to latest versions.
    • -
    • Over 400 various bug fixes.
    • -
    • PEAR upgraded to version 1.4.5
    • -
    -

    - -

    - 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: -

      -
    • Fixed a Cross Site Scripting (XSS) - vulnerability in phpinfo() that could - lead f.e. to cookie exposure, when a phpinfo() script is accidently left - on a production server.
    • -
    • Fixed multiple safe_mode/open_basedir bypass vulnerabilities in ext/curl - and ext/gd that could lead to exposure of files normally not accessible due - to safe_mode or open_basedir restrictions.
    • -
    • Fixed a possible $GLOBALS overwrite problem in file upload handling, - extract() and import_request_variables() that could lead to unexpected - security holes in scripts assumed secure. (For more information, see here).
    • -
    • Fixed a problem when a request was terminated due to memory_limit - constraints during certain - parse_str() calls. In some cases - this can result in register_globals being turned on.
    • -
    • Fixed an issue with trailing slashes in allowed basedirs. They were ignored - by open_basedir checks, so that specified basedirs were handled as prefixes - and not as full directory names.
    • -
    • Fixed an issue with calling virtual() - on Apache 2. This allowed bypassing of certain configuration directives - like safe_mode or open_basedir.
    • -
    • Updated to the latest pcrelib to fix a possible integer overflow - vulnerability announced in CAN-2005-2491.
    • -
    • Possible header injection in mb_send_mail() function via the "To" address, the first parameter of the function.
    • -
    -

    - -

    -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.

    - - diff --git a/releases/5_1_1.php b/releases/5_1_1.php deleted file mode 100644 index c746291fbd..0000000000 --- a/releases/5_1_1.php +++ /dev/null @@ -1,30 +0,0 @@ - - -

    PHP 5.1.1. Release Announcement

    -

    -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: -

      -
    • Native date class is withdrawn to prevent namespace conflict with PEAR's date package.
    • -
    • Fixed fatal parse error when the last line of the script is a PHP comment.
    • -
    • eval() hangs when the code being evaluated ends with a comment.
    • -
    • Usage of \{$var} in PHP 5.1.0 resulted in the output of {$var} instead of the $var variable's value enclosed in {}.
    • -
    • Fixed inconsistency in the format of PHP_AUTH_DIGEST between Apache 1 and 2 sapis.
    • -
    • Improved safe_mode/open_basedir checks inside the cURL extension.
    • -
    -

    -

    - For a full list of changes in PHP 5.1.1, see the - ChangeLog. -

    - - diff --git a/releases/5_1_2.php b/releases/5_1_2.php deleted file mode 100644 index d4b1841cde..0000000000 --- a/releases/5_1_2.php +++ /dev/null @@ -1,60 +0,0 @@ - - -

    PHP 5.1.2. Release Announcement

    -

    -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: -

      -
    • HTTP Response Splitting has been addressed in ext/session and in the - header() function. Header() can no longer be used to send multiple - response headers in a single call. -
    • -
    • Format string vulnerability in ext/mysqli.
    • -
    • Possible cross-site scripting problems in certain error conditions.
    • -
    -

    - -

    -The feature enhancements include the following notables: -

      -
    • Hash extension was added to core and is now enabled by default. This - extension provides support for most common hashing algorithms without - reliance on 3rd party libraries.
    • -
    • XMLWriter was added and enabled by default.
    • -
    • New OCI8 extension that includes numerous fixes.
    • -
    • PNG compression support added to the GD extension.
    • -
    • Added --enable-gcov configure option to enable C-level code coverage.
    • -
    • getNamespaces() and getDocNamespaces() methods added to SimpleXML extension.
    • -
    -

    - -

    -The release also includes over 85 bug fixes with a focus on: -

      -
    • Correction of the many regressions in the strtotime() function.
    • -
    • Fixes of several crashes, leaks and memory corruptions found in the - imap, pdo, gd, mysqli, mcrypt and soap extensions.
    • -
    • Corrected problems with the usage of SSI and virtual() in the Apache2 SAPI.
    • -
    • Build fixes for iconv and sybase_ct extensions.
    • -
    • Fixed the previously broken Sun(rise|set) functions.
    • -
    • SQLite libraries upgraded to 2.8.17 and 3.2.8 -
    • Win32 binaries now include libxml2-2.6.22 and libxslt-1.1.15.
    • -
    -

    - -

    - For a full list of changes in PHP 5.1.2, see the - ChangeLog. -

    - - diff --git a/releases/5_1_3.php b/releases/5_1_3.php deleted file mode 100644 index 49deee03f4..0000000000 --- a/releases/5_1_3.php +++ /dev/null @@ -1,63 +0,0 @@ - - -

    PHP 5.1.3. Release Announcement

    -

    -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: -

      -
    • Disallow certain characters in session names.
    • -
    • Fixed a buffer overflow inside the wordwrap() function.
    • -
    • Prevent jumps to parent directory via the 2nd parameter of the tempnam() function.
    • -
    • Enforce safe_mode for the source parameter of the copy() function.
    • -
    • Fixed cross-site scripting inside the phpinfo() function.
    • -
    • Fixed offset/length parameter validation inside the substr_compare() function.
    • -
    • Fixed a heap corruption inside the session extension.
    • -
    • Fixed a bug that would allow variable to survive unset().
    • -
    -

    - -

    -The feature enhancements include the following notables: -

      -
    • The use of the var keyword to declare properties no longer raises a deprecation E_STRICT.
    • -
    • FastCGI interface was completely reimplemented.
    • -
    • Multitude of improvements to the SPL, SimpleXML, GD, CURL and Reflection extensions.
    • -
    • Support for many additional date formats added to the strtotime() function.
    • -
    • A number of performance improvements added to the engine and the core extensions.
    • -
    • Added imap_savebody() that allows message body to be written to a file.
    • -
    • Added lchown() and lchgrp() to change user/group ownership of symlinks.
    • -
    • Upgraded bundled PCRE library to version 6.6
    • -
    -

    - -

    -The release also includes over 120 bug fixes with a focus on: -

      -
    • Make auto_globals_jit work without too many INI changes.
    • -
    • Fixed tiger hash algorithm generating wrong results on big endian platforms.
    • -
    • Fixed a number of errors in the SOAP extension.
    • -
    • Fixed recursion handling in the serialize() functionality.
    • -
    • Make is_*() function account of open_basedir restrictions.
    • -
    • Fixed a number of crashes in the DOM and PDO extensions.
    • -
    • Addressed a number of regressions in the strtotime() function.
    • -
    • Make memory_limit work in Win32 systems.
    • -
    • Fixed a deadlock in the sqlite extension caused by the sqlite_fetch_column_types() function.
    • -
    • Fixed memory leaks in the realpath() cache.
    • -
    -

    - -

    - For a full list of changes in PHP 5.1.3, see the - ChangeLog. -

    - - diff --git a/releases/5_1_4.php b/releases/5_1_4.php deleted file mode 100644 index 9ecb4b6306..0000000000 --- a/releases/5_1_4.php +++ /dev/null @@ -1,29 +0,0 @@ - - -

    PHP 5.1.4 Release Announcement

    -

    -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: -

      -
    • Fixed problems with file uploads and the $_POST array handling.
    • -
    • Resolved multiple problems with the FastCGI sapi.
    • -
    • Fixed possible crash in highlight_string().
    • -
    • Fixed cloning of DOM Documents and Noded.
    • -
    • Several fixes to PDO ODBC driver.
    • -
    -

    - -

    - For a full list of changes in PHP 5.1.4, see the - ChangeLog. -

    - - diff --git a/releases/5_1_5.php b/releases/5_1_5.php deleted file mode 100644 index 1b87800981..0000000000 --- a/releases/5_1_5.php +++ /dev/null @@ -1,35 +0,0 @@ - - -

    PHP 5.1.5 Release Announcement

    -

    -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: -

      -
    • Added missing safe_mode/open_basedir checks inside the error_log(), file_exists(), imap_open() and imap_reopen() functions.
    • -
    • Fixed overflows inside str_repeat() and wordwrap() functions on 64bit systems.
    • -
    • Fixed possible open_basedir/safe_mode bypass in cURL extension and with realpath cache.
    • -
    • Fixed overflow in GD extension on invalid GIF images.
    • -
    • Fixed a buffer overflow inside sscanf() function.
    • -
    • Fixed an out of bounds read inside stripos() function.
    • -
    • Fixed memory_limit restriction on 64 bit system.
    • -
    -

    - -

    -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. -

    - - diff --git a/releases/5_1_6.php b/releases/5_1_6.php deleted file mode 100644 index 43d983e835..0000000000 --- a/releases/5_1_6.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.1.6 Release Announcement

    -

    -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. -

    - - diff --git a/releases/5_2_0.php b/releases/5_2_0.php deleted file mode 100644 index ef0de0ff52..0000000000 --- a/releases/5_2_0.php +++ /dev/null @@ -1,63 +0,0 @@ - - -

    PHP 5.2.0 Release Announcement

    -

    -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: -

    -
      -
    • New memory manager for the Zend Engine with improved performance and a more accurate memory usage tracking.
    • -
    • Input filtering extension was added and enabled by default.
    • -
    • JSON extension was added and enabled by default.
    • -
    • ZIP extension for creating and editing zip files was introduced.
    • -
    • Hooks for tracking file upload progress were introduced.
    • -
    • Introduced E_RECOVERABLE_ERROR error mode.
    • -
    • Introduced DateTime and DateTimeZone objects with methods to manipulate date/time information.
    • -
    • Upgraded bundled SQLite, PCRE libraries.
    • -
    • Upgraded OpenSSL, MySQL and PostgreSQL client libraries for Windows installations.
    • -
    • Many performance improvements.
    • -
    • Over 200 bug fixes.
    • -
    -

    -Security Enhancements and Fixes in PHP 5.2.0: -

    -
      -
    • Made PostgreSQL escaping functions in PostgreSQL and PDO extension keep track of character set encoding whenever possible.
    • -
    • Added allow_url_include, set to Off by default to disallow use of URLs for include and require.
    • -
    • Disable realpath cache when open_basedir and safe_mode are being used.
    • -
    • Improved safe_mode enforcement for error_log() function.
    • -
    • Fixed a possible buffer overflow in the underlying code responsible for htmlspecialchars() and htmlentities() functions.
    • -
    • Added missing safe_mode and open_basedir checks for the cURL extension.
    • -
    • Fixed overflow in str_repeat() & wordwrap() functions on 64bit machines.
    • -
    • Fixed handling of long paths inside the tempnam() function.
    • -
    • Fixed safe_mode/open_basedir checks for session.save_path, allowing them to account for extra parameters.
    • -
    • Fixed ini setting overload in the ini_restore() function.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_2_1.php b/releases/5_2_1.php deleted file mode 100644 index 5acc7720b0..0000000000 --- a/releases/5_2_1.php +++ /dev/null @@ -1,69 +0,0 @@ - - -

    PHP 5.2.1 Release Announcement

    -

    -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: -

    -
      -
    • Fixed possible safe_mode & open_basedir bypasses inside the session extension.
    • -
    • Prevent search engines from indexing the phpinfo() page.
    • -
    • Fixed a number of input processing bugs inside the filter extension.
    • -
    • Fixed unserialize() abuse on 64 bit systems with certain input strings.
    • -
    • Fixed possible overflows and stack corruptions in the session extension.
    • -
    • Fixed an underflow inside the internal sapi_header_op() function.
    • -
    • Fixed allocation bugs caused by attempts to allocate negative values in some code paths.
    • -
    • Fixed possible stack overflows inside zip, imap & sqlite extensions.
    • -
    • Fixed several possible buffer overflows inside the stream filters.
    • -
    • Fixed non-validated resource destruction inside the shmop extension.
    • -
    • Fixed a possible overflow in the str_replace() function.
    • -
    • Fixed possible clobbering of super-globals in several code paths.
    • -
    • Fixed a possible information disclosure inside the wddx extension.
    • -
    • Fixed a possible string format vulnerability in *print() functions on 64 bit systems.
    • -
    • Fixed a possible buffer overflow inside mail() and ibase_{delete,add,modify}_user() functions.
    • -
    • Fixed a string format vulnerability inside the odbc_result_all() function.
    • -
    • Memory limit is now enabled by default.
    • -
    • Added internal heap protection.
    • -
    • Extended filter extension support for $_SERVER in CGI and apache2 SAPIs.
    • -
    - -

    -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: -

    -
      -
    • Several performance improvements in the engine, streams API and some Windows specific optimizations.
    • -
    • PDO_MySQL now uses buffered queries by default and emulates prepared statements to bypass limitations of MySQL's prepared statement API.
    • -
    • Many improvements and enhancements to the filter and zip extensions.
    • -
    • Memory limit is now always enabled, this includes Windows builds, with a default limit of 128 megabytes.
    • -
    • Added several performance optimizations using faster Win32 APIs (this change means that PHP no longer supports Windows 98).
    • -
    • FastCGI speed optimized build of PHP for Windows made available for downloading.
    • -
    • Over 180 bug fixes.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_2_10.php b/releases/5_2_10.php deleted file mode 100644 index 02122ae821..0000000000 --- a/releases/5_2_10.php +++ /dev/null @@ -1,50 +0,0 @@ - - -

    PHP 5.2.10 Release Announcement

    -

    -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: -

    -
      -
    • Fixed bug #48378 (exif_read_data() segfaults on certain corrupted .jpeg files). (Pierre)
    • -
    - -

    -Key enhancements in PHP 5.2.10 include: -

    -
      -
    • Added "ignore_errors" option to http fopen wrapper. (David Zulke, Sara)
    • -
    • 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)
    • -
    • 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 bug #47940 (memory leaks in imap_body). (Pierre, Jake Levitt)
    • -
    • Fixed bug #47903 ("@" operator does not work with string offsets). (Felipe)
    • -
    • Fixed bug #47644 (Valid integers are truncated with json_decode()). (Scott)
    • -
    • Fixed bug #47564 (unpacking unsigned long 32bit big endian returns wrong result). (Ilia)
    • -
    • Fixed bug #47365 (ip2long() may allow some invalid values on certain 64bit systems).
    • -
    • Over 100 bug fixes.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_2_11.php b/releases/5_2_11.php deleted file mode 100644 index 7df7b255e4..0000000000 --- a/releases/5_2_11.php +++ /dev/null @@ -1,50 +0,0 @@ - - -

    PHP 5.2.11 Release Announcement

    -

    -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: -

    -
      -
    • Fixed certificate validation inside php_openssl_apply_verification_policy. (Ryan Sleevi, Ilia)
    • -
    • Fixed sanity check for the color index in imagecolortransparent(). (Pierre)
    • -
    • Added missing sanity checks around exif processing. (Ilia)
    • -
    • Fixed bug #44683 (popen crashes when an invalid mode is passed). (Pierre)
    • -
    - -

    -Key enhancements in PHP 5.2.11 include: -

    -
      -
    • Fixed regression in cURL extension that prevented flush of data to output defined as a file handle.
    • -
    • A number of fixes for the FILTER_VALIDATE_EMAIL validation rule
    • -
    • Fixed bug #49361 (wordwrap() wraps incorrectly on end of line boundaries).
    • -
    • Fixed bug #48696 (ldap_read() segfaults with invalid parameters)
    • -
    • Fixed bug #48645 (mb_convert_encoding() doesn't understand hexadecimal html-entities).
    • -
    • Fixed bug #48619 (imap_search ALL segfaults).
    • -
    • Fixed bug #48400 (imap crashes when closing stream opened with OP_PROTOTYPE flag).
    • -
    • Fixed bug #47351 (Memory leak in DateTime).
    • -
    • Over 60 bug fixes.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_2_12.php b/releases/5_2_12.php deleted file mode 100644 index c85ea50700..0000000000 --- a/releases/5_2_12.php +++ /dev/null @@ -1,55 +0,0 @@ - - -

    PHP 5.2.12 Release Announcement

    -

    -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: -

    -
      -
    • Fixed a safe_mode bypass in tempnam() identified by Grzegorz Stachowiak. (CVE-2009-3557, Rasmus)
    • -
    • Fixed a open_basedir bypass in posix_mkfifo() identified by Grzegorz Stachowiak. (CVE-2009-3558, Rasmus)
    • -
    • 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, identified by Bogdan Calin. (CVE-2009-4017, Ilia)
    • -
    • Added protection for $_SESSION from interrupt corruption and improved "session.save_path" check, identified by Stefan Esser. (CVE-2009-4143, Stas)
    • -
    • Fixed bug #49785 (insufficient input string validation of htmlspecialchars()). (CVE-2009-4142, Moriyoshi, hello at iwamot dot com)
    • -
    - -

    -Key enhancements in PHP 5.2.12 include: -

    -
      -
    • 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 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 #50207 (segmentation fault when concatenating very large strings on 64bit linux). (Ilia)
    • -
    • Fixed bug #50162 (Memory leak when fetching timestamp column from Oracle database). (Felipe)
    • -
    • Fixed bug #50006 (Segfault caused by uksort()). (Felipe)
    • -
    • Fixed bug #50005 (Throwing through Reflection modified Exception object makes segmentation fault). (Felipe)
    • -
    • Fixed bug #49174 (crash when extending PDOStatement and trying to set queryString property). (Felipe)
    • -
    • Fixed bug #49098 (mysqli segfault on error). (Rasmus)
    • - -
    • Over 50 other bug fixes.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_2_13.php b/releases/5_2_13.php deleted file mode 100644 index 8402449f1f..0000000000 --- a/releases/5_2_13.php +++ /dev/null @@ -1,48 +0,0 @@ - - -

    PHP 5.2.13 Release Announcement

    -

    -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: -

    -
      -
    • 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 the session extension identified by Grzegorz Stachowiak. (Ilia)
    • -
    • Improved LCG entropy. (Rasmus, Samy Kamkar)
    • -
    - -

    -Key enhancements in PHP 5.2.13 include: -

    -
      -
    • Fixed bug #50940 Custom content-length set incorrectly in Apache sapis. (Brian France, Rasmus)
    • -
    • Fixed bug #50847 (strip_tags() removes all tags greater then 1023 bytes long). (Ilia)
    • -
    • Fixed bug #50661 (DOMDocument::loadXML does not allow UTF-16). (Rob)
    • -
    • Fixed bug #50632 (filter_input() does not return default value if the variable does not exist). (Ilia)
    • -
    • Fixed bug #50540 (Crash while running ldap_next_reference test cases). (Sriram)
    • -
    • Fixed bug #49851 (http wrapper breaks on 1024 char long headers). (Ilia)
    • - -
    • Over 30 other bug fixes.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_2_14.php b/releases/5_2_14.php deleted file mode 100644 index ad0f78486a..0000000000 --- a/releases/5_2_14.php +++ /dev/null @@ -1,60 +0,0 @@ - - -

    PHP 5.2.14 Release Announcement

    -

    -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: -

    -
      - -
    • Rewrote var_export() to use smart_str rather than output buffering, prevents data disclosure if a fatal error occurs.
    • -
    • Fixed a possible interruption array leak in strrchr().(CVE-2010-2484)
    • -
    • Fixed a possible interruption array leak in strchr(), strstr(), substr(), chunk_split(), strtok(), addcslashes(), str_repeat(), trim().
    • -
    • Fixed a possible memory corruption in substr_replace().
    • -
    • Fixed SplObjectStorage unserialization problems (CVE-2010-2225).
    • -
    • Fixed a possible stack exaustion inside fnmatch().
    • -
    • Fixed a NULL pointer dereference when processing invalid XML-RPC requests (Fixes CVE-2010-0397, bug #51288).
    • -
    • Fixed handling of session variable serialization on certain prefix characters.
    • -
    • Fixed a possible arbitrary memory access inside sqlite extension. Reported by Mateusz Kocielski.
    • -
    - -

    -Key enhancements in PHP 5.2.14 include: -

    -
      - -
    • Upgraded bundled PCRE to version 8.02.
    • -
    • Updated timezone database to version 2010.5.
    • -
    • Fixed bug #52238 (Crash when an Exception occured in iterator_to_array).
    • -
    • Fixed bug #52237 (Crash when passing the reference of the property of a non-object).
    • -
    • Fixed bug #52041 (Memory leak when writing on uninitialized variable returned from function).
    • -
    • Fixed bug #51822 (Segfault with strange __destruct() for static class variables).
    • -
    • Fixed bug #51552 (debug_backtrace() causes segmentation fault and/or memory issues).
    • -
    • Fixed bug #49267 (Linking fails for iconv on MacOS: "Undefined symbols: _libiconv").
    • -
    - -

    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 -.

    - - diff --git a/releases/5_2_15.php b/releases/5_2_15.php deleted file mode 100644 index fb8bf9781b..0000000000 --- a/releases/5_2_15.php +++ /dev/null @@ -1,46 +0,0 @@ - - -

    PHP 5.2.15 Release Announcement

    -

    -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: -

    -
      -
    • Fixed extract() to do not overwrite $GLOBALS and $this when using EXTR_OVERWRITE.
    • -
    • Fixed crash in zip extract method (possible CWE-170).
    • -
    • Fixed a possible double free in imap extension.
    • -
    • Fixed possible flaw in open_basedir (CVE-2010-3436).
    • -
    • Fixed NULL pointer dereference in ZipArchive::getArchiveComment. (CVE-2010-3709).
    • -
    • Fixed bug #52929 (Segfault in filter_var with FILTER_VALIDATE_EMAIL with large amount of data).
    • -
    - -

    -Key enhancements in PHP 5.2.15 include: -

    -
      -
    • Fixed bug #47643 (array_diff() takes over 3000 times longer than php 5.2.4).
    • -
    • Fixed bug #44248 (RFC2616 transgression while HTTPS request through proxy with SoapClient object).
    • -
    - -

    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.

    - - diff --git a/releases/5_2_16.php b/releases/5_2_16.php deleted file mode 100644 index 34224cd50d..0000000000 --- a/releases/5_2_16.php +++ /dev/null @@ -1,28 +0,0 @@ - - -

    PHP 5.2.16 Release Announcement

    -

    -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.

    - - diff --git a/releases/5_2_17.php b/releases/5_2_17.php deleted file mode 100644 index ac4a748273..0000000000 --- a/releases/5_2_17.php +++ /dev/null @@ -1,31 +0,0 @@ - - -

    PHP 5.2.17 Release Announcement

    -

    -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: -

    -
      -
    • Fixed bug #53632 (PHP hangs on numeric value 2.2250738585072011e-308). (CVE-2010-4645)
    • -
    - - diff --git a/releases/5_2_2.php b/releases/5_2_2.php deleted file mode 100644 index 46685cb035..0000000000 --- a/releases/5_2_2.php +++ /dev/null @@ -1,62 +0,0 @@ - - -

    PHP 5.2.2 Release Announcement

    -

    -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: -

    -
      -
    • Fixed CVE-2007-1001, GD wbmp used with invalid image size (by Ivan Fratric)
    • -
    • Fixed a header injection via Subject and To parameters to the mail() function (MOPB-34 by Stefan Esser)
    • -
    • Fixed asciiz byte truncation inside mail() (MOPB-33 by Stefan Esser)
    • -
    • Fixed wrong length calculation in unserialize S type (MOPB-29 by Stefan Esser)
    • -
    • Fixed a bug in mb_parse_str() that can be used to activate register_globals (MOPB-26 by Stefan Esser)
    • -
    • Fixed unallocated memory access/double free in in array_user_key_compare() (MOPB-24 by Stefan Esser)
    • -
    • Fixed a double free inside session_regenerate_id() (MOPB-22 by Stefan Esser)
    • -
    • Added missing open_basedir & safe_mode checks to zip:// and bzip:// wrappers. (MOPB-20, MOPB-21 by Stefan Esser).
    • -
    • Fixed substr_compare and substr_count information leak (MOPB-14 by Stefan Esser) (Stas, Ilia)
    • -
    • Limit nesting level of input variables with max_input_nesting_level as fix for (MOPB-03 by Stefan Esser)
    • -
    • Fixed CRLF injection inside ftp_putcmd(). (by loveshell[at]Bug.Center.Team)
    • -
    • Fixed a possible super-global overwrite inside import_request_variables(). (by Stefano Di Paola, Steffan Esser)
    • -
    • Fixed a remotely trigger-able buffer overflow inside make_http_soap_request(). (by Ilia Alshanetsky)
    • -
    • Fixed a buffer overflow inside user_filter_factory_create(). (by Ilia Alshanetsky)
    • -
    • Fixed a remotely trigger-able buffer overflow inside bundled libxmlrpc library. (by Stanislav Malyshev)
    • -
    - -

    -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: -

    -
      -
    • Further improvements to the Memory Manager with the goal of improving realloc() performance.
    • -
    • Bundled GD, SQLite and PCRE libraries were upgraded.
    • -
    • Additional methods were added to SPL's DirectoryIterator and SplFileInfo classes.
    • -
    • Over 120 bug fixes.
    • -
    - -

    -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. -

    - - - diff --git a/releases/5_2_3.php b/releases/5_2_3.php deleted file mode 100644 index 9eab6eee3a..0000000000 --- a/releases/5_2_3.php +++ /dev/null @@ -1,61 +0,0 @@ - - -

    PHP 5.2.3 Release Announcement

    -

    -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: -

    -
      -
    • Fixed an integer overflow inside chunk_split() (by Gerhard Wagner, CVE-2007-2872)
    • -
    • Fixed possible infinite loop in imagecreatefrompng. (by Xavier Roche, CVE-2007-2756)
    • -
    • Fixed ext/filter Email Validation Vulnerability (MOPB-45 by Stefan Esser, CVE-2007-1900)
    • -
    • Fixed bug #41492 (open_basedir/safe_mode bypass inside realpath()) (by bugs dot php dot net at chsc dot dk)
    • -
    • Improved fix for CVE-2007-1887 to work with non-bundled sqlite2 lib.
    • -
    • Added mysql_set_charset() to allow runtime altering of connection encoding.
    • -
    - -

    -The key improvements of PHP 5.2.3 include: -

    -
      -
    • Improved compilation of heredocs and interpolated strings.
    • -
    • Optimized out a couple of per-request syscalls.
    • -
    • Optimized digest generation in md5() and sha1() functions.
    • - -
    • Fixed bug #41236 (Regression in timeout handling of non-blocking SSL connections during reads and writes)
    • -
    • Fixed bug #39542 (Behavior of require/include different to < 5.2.0)
    • -
    • Fixed bug #41293 (Fixed creation of HTTP_RAW_POST_DATA when there is no default post handler)
    • -
    • Fixed bug #41347 (checkdnsrr() segfaults on empty hostname)
    • -
    • Fixed bug #41353 (crash in openssl_pkcs12_read() on invalid input)
    • -
    • Fixed bug #41403 (json_decode cannot decode floats if localeconv decimal_point is not '.')
    • -
    • Fixed bug #41421 (Uncaught exception from a stream wrapper segfaults)
    • -
    • Fixed bug #41504 (json_decode() incorrectly decodes JSON arrays with empty string keys).
    • - -
    • Over 40 bug fixes.
    • -
    - -

    -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. -

    - - - diff --git a/releases/5_2_4.php b/releases/5_2_4.php deleted file mode 100644 index adf5277165..0000000000 --- a/releases/5_2_4.php +++ /dev/null @@ -1,61 +0,0 @@ - - -

    PHP 5.2.4 Release Announcement

    -

    -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: -

    -
      -
    • Fixed a floating point exception inside wordwrap() (Reported by Mattias Bengtsson)
    • -
    • Fixed several integer overflows inside the GD extension (Reported by Mattias Bengtsson)
    • -
    • Fixed size calculation in chunk_split() (Reported by Gerhard Wagner)
    • -
    • Fixed integer overflow in str[c]spn(). (Reported by Mattias Bengtsson)
    • -
    • Fixed money_format() not to accept multiple %i or %n tokens. (Reported by Stanislav Malyshev)
    • -
    • Fixed zend_alter_ini_entry() memory_limit interruption vulnerability. (Reported by Stefan Esser)
    • -
    • Fixed INFILE LOCAL option handling with MySQL extensions not to be allowed when open_basedir or safe_mode is active. (Reported by Mattias Bengtsson)
    • -
    • Fixed session.save_path and error_log values to be checked against open_basedir and safe_mode (CVE-2007-3378) (Reported by Maksymilian Arciemowicz)
    • -
    • Fixed a possible invalid read in glob() win32 implementation (CVE-2007-3806) (Reported by shinnai)
    • -
    • Fixed a possible buffer overflow in php_openssl_make_REQ (Reported by zatanzlatan at hotbrev dot com)
    • -
    • Fixed an open_basedir bypass inside glob() function (Reported by dr at peytz dot dk)
    • -
    • Fixed a possible open_basedir bypass inside session extension when the session file is a symlink (Reported by c dot i dot morris at durham dot ac dot uk)
    • -
    • Improved fix for MOPB-03-2007.
    • -
    • Corrected fix for CVE-2007-2872.
    • -
    - -

    -Key enhancements in PHP 5.2.4 include: -

    -
      -
    • Upgraded PCRE to version 7.2
    • -
    • Added persistent connection status checker to pdo_pgsql.
    • -
    • Fixed oci8 and PDO_OCI extensions to allow configuring with Oracle 11g client libraries.
    • -
    • Fixed bug #41831 (pdo_sqlite prepared statements convert resources to strings).
    • -
    • Fixed bug #41770 (SSL: fatal protocol error due to buffer issues)
    • -
    • Fixed bug #41713 (Persistent memory consumption on win32 since 5.2)
    • - -
    • Over 120 bug fixes.
    • -
    - -

    -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. -

    - - - diff --git a/releases/5_2_5.php b/releases/5_2_5.php deleted file mode 100644 index 5f738cdd6e..0000000000 --- a/releases/5_2_5.php +++ /dev/null @@ -1,53 +0,0 @@ - - -

    PHP 5.2.5 Release Announcement

    -

    -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: -

    -
      -
    • Fixed dl() to only accept filenames. Reported by Laurent Gaffie.
    • -
    • Fixed dl() to limit argument size to MAXPATHLEN (CVE-2007-4887). Reported by Laurent Gaffie.
    • -
    • Fixed htmlentities/htmlspecialchars not to accept partial multibyte sequences. Reported by Rasmus Lerdorf
    • -
    • Fixed possible triggering of buffer overflows inside glibc implementations of the fnmatch(), setlocale() and glob() functions. Reported by Laurent Gaffie.
    • -
    • Fixed "mail.force_extra_parameters" php.ini directive not to be modifiable in .htaccess due to the security implications. Reported by SecurityReason.
    • -
    • Fixed bug #42869 (automatic session id insertion adds sessions id to non-local forms).
    • -
    • Fixed bug #41561 (Values set with php_admin_* in httpd.conf can be overwritten with ini_set()).
    • -
    - -

    -Key enhancements in PHP 5.2.5 include: -

    -
      -
    • Upgraded PCRE to version 7.3
    • -
    • Updated timezone database to version 2007.9
    • -
    • Added ability to control memory consumption between request using ZEND_MM_COMPACT environment variable.
    • -
    • Improved speed of array_intersect_key(), array_intersect_assoc(), array_uintersect_assoc(), array_diff_key(), array_diff_assoc() and array_udiff_assoc() functions
    • -
    • Fixed bug #43139 (PDO ignores ATTR_DEFAULT_FETCH_MODE in some cases with fetchAll())
    • -
    • Fixed bug #42785 (json_encode() formats doubles according to locale rather then following standard syntax)
    • -
    • Fixed bug #42549 (ext/mysql failed to compile with libmysql 3.23)
    • -
    • Over 60 bug fixes.
    • -
    - -

    -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. -

    - - - diff --git a/releases/5_2_6.php b/releases/5_2_6.php deleted file mode 100644 index aadcebfed2..0000000000 --- a/releases/5_2_6.php +++ /dev/null @@ -1,56 +0,0 @@ - - -

    PHP 5.2.6 Release Announcement

    -

    -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: -

    -
      -
    • Fixed possible stack buffer overflow in the FastCGI SAPI identified by Andrei Nigmatulin.
    • -
    • Fixed integer overflow in printf() identified by Maksymilian Aciemowicz.
    • -
    • Fixed security issue detailed in CVE-2008-0599 identified by Ryan Permeh.
    • -
    • Fixed a safe_mode bypass in cURL identified by Maksymilian Arciemowicz.
    • -
    • Properly address incomplete multibyte chars inside escapeshellcmd() identified by Stefan Esser.
    • -
    • Upgraded bundled PCRE to version 7.6
    • -
    - -

    -Key enhancements in PHP 5.2.6 include: -

    -
      -
    • Fixed two possible crashes inside the posix extension.
    • -
    • Fixed bug #44069 (Huge memory usage with concatenation using . instead of .=)
    • -
    • Fixed bug #44141 (private parent constructor callable through static function).
    • -
    • Fixed bug #43589 (a possible infinite loop in bz2_filter.c).
    • -
    • Fixed bug #43450 (Memory leak on some functions with implicit object __toString() call).
    • -
    • Fixed bug #43201 (Crash on using uninitialized vals and __get/__set).
    • -
    • Fixed bug #42978 (mismatch between number of bound params and values causes a crash in pdo_pgsql).
    • -
    • Fixed bug #42937 (__call() method not invoked when methods are called on parent from child class).
    • -
    • Fixed bug #42736 (xmlrpc_server_call_method() crashes).
    • -
    • Fixed bug #42369 (Implicit conversion to string leaks memory).
    • -
    • Fixed bug #41562 (SimpleXML memory issue).
    • -
    • Over 120 bug fixes.
    • -
    - -

    -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. -

    - - - diff --git a/releases/5_2_7.php b/releases/5_2_7.php deleted file mode 100644 index d188648933..0000000000 --- a/releases/5_2_7.php +++ /dev/null @@ -1,54 +0,0 @@ - - -

    PHP 5.2.7 Release Announcement

    -

    -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: -

    -
      -
    • Upgraded PCRE to version 7.8 (Fixes CVE-2008-2371)
    • -
    • Fixed missing initialization of BG(page_uid) and BG(page_gid), reported by Maksymilian Arciemowicz.
    • -
    • Fixed incorrect php_value order for Apache configuration, reported by Maksymilian Arciemowicz.
    • -
    • Fixed a crash inside gd with invalid fonts (Fixes CVE-2008-3658).
    • -
    • Fixed a possible overflow inside memnstr (Fixes CVE-2008-3659).
    • -
    • Fixed security issues detailed in CVE-2008-2665 and CVE-2008-2666.
    • -
    • Fixed bug #45151 (Crash with URI/file..php (filename contains 2 dots)).(Fixes CVE-2008-3660)
    • -
    • Fixed bug #42862 (IMAP toolkit crash: rfc822.c legacy routine buffer overflow). (Fixes CVE-2008-2829)
    • -
    - -

    -Key enhancements in PHP 5.2.7 include: -

    -
      -
    • Fixed several memory leaks inside the readline and sqlite extensions
    • -
    • A number of corrections relating to date parsing inside the date extension
    • -
    • Fixed bugs relating to data retrieval in the PDO extension
    • -
    • A series of crashes in various areas of code were resolved
    • -
    • Several corrections were made to the strip_tags() function in terms of < and <?XML handling
    • -
    • A number of bugs were fixed in extract() function when EXTR_REFS flag is being used
    • -
    • Added the ability to log PHP errors to the SAPI (Ex. Apache log) logging facility
    • -
    • Over 170 bug fixes.
    • -
    - -

    -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. -

    - - - diff --git a/releases/5_2_8.php b/releases/5_2_8.php deleted file mode 100644 index 4e8731caea..0000000000 --- a/releases/5_2_8.php +++ /dev/null @@ -1,27 +0,0 @@ - - -

    PHP 5.2.8 Release Announcement

    -

    -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. -

    - - diff --git a/releases/5_2_9.php b/releases/5_2_9.php deleted file mode 100644 index da895cda43..0000000000 --- a/releases/5_2_9.php +++ /dev/null @@ -1,54 +0,0 @@ - - -

    PHP 5.2.9 Release Announcement

    -

    -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: -

    -
      -
    • 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 crash on extract in zip when files or directories entry names contain a relative path. (Pierre)
    • -
    • Fixed explode() behavior with empty string to respect negative limit. (Shire)
    • -
    • Fixed a segfault when malformed string is passed to json_decode(). (Scott)
    • -
    - -

    -Key enhancements in PHP 5.2.9 include: -

    -
      -
    • Added optional sorting type flag parameter to array_unique(). Default is SORT_REGULAR. (Andrei)
    • -
    • Fixed bug #45996 (libxml2 2.7 causes breakage with character data in xml_parse()). (Rob)
    • -
    • A number of fixes in the mbstring extension (Moriyoshi)
    • -
    • Fixed bug #44336 (Improve pcre UTF-8 string matching performance). (frode at coretrek dot com, Nuno)
    • -
    • Fixed bug #46699 (xml_parse crash when parser is namespace aware). (Rob)
    • -
    • Fixed bug #46748 (Segfault when an SSL error has more than one error). (Scott)
    • -
    • Fixed bug #46889 (Memory leak in strtotime()). (Derick)
    • -
    • Fixed bug #47049 (SoapClient::__soapCall causes a segmentation fault). (Dmitry)
    • -
    • Fixed bug #47165 (Possible memory corruption when passing return value by reference). (Dmitry)
    • -
    • Fixed bug #47282 (FILTER_VALIDATE_EMAIL is marking valid email addresses as invalid). (Ilia)
    • -
    • Fixed bug #47422 (modulus operator returns incorrect results on 64 bit linux). (Matt)
    • -
    • Over 50 bug fixes.
    • -
    - -

    -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. -

    - - - diff --git a/releases/5_3_0.php b/releases/5_3_0.php deleted file mode 100644 index 16429cd0fc..0000000000 --- a/releases/5_3_0.php +++ /dev/null @@ -1,81 +0,0 @@ - - -

    PHP 5.3.0 Release Announcement

    -

    -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: -

    - -

    This 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. -

    - - diff --git a/releases/5_3_1.php b/releases/5_3_1.php deleted file mode 100644 index 72d08ba64f..0000000000 --- a/releases/5_3_1.php +++ /dev/null @@ -1,50 +0,0 @@ - - -

    PHP 5.3.1 Release Announcement

    -

    -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: -

    -
      -
    • 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.
    • -
    • Added missing sanity checks around exif processing.
    • -
    • Fixed a safe_mode bypass in tempnam().
    • -
    • Fixed a open_basedir bypass in posix_mkfifo().
    • -
    • Fixed bug #50063 (safe_mode_include_dir fails).
    • -
    • Fixed bug #44683 (popen crashes when an invalid mode is passed).
    • -
    - -

    -Key Bug Fixes in PHP 5.3.1 include: -

    -
      -
    • Fixed crash in com_print_typeinfo when an invalid typelib is given.
    • -
    • Fixed crash in SQLiteDatabase::ArrayQuery() and SQLiteDatabase::SingleQuery() when calling using Reflection.
    • -
    • Fixed crash when instantiating PDORow and PDOStatement through Reflection.
    • -
    • Fixed bug #49910 (no support for ././@LongLink for long filenames in phar - tar support).
    • -
    • Fixed bug #49908 (throwing exception in __autoload crashes when interface is not defined).
    • -
    • Around 100 other bug fixes
    • -
    - -

    -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. -

    - - diff --git a/releases/5_3_10.php b/releases/5_3_10.php deleted file mode 100644 index 17fdaf2d0e..0000000000 --- a/releases/5_3_10.php +++ /dev/null @@ -1,22 +0,0 @@ - - -

    PHP 5.3.10 Release Announcement

    - -

    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:

    - -
      -
    • Fixed arbitrary remote code execution vulnerability reported by Stefan - Esser, CVE-2012-0830.
    • -
    - -

    All users are strongly encouraged to upgrade to PHP 5.3.10.

    - - diff --git a/releases/5_3_11.php b/releases/5_3_11.php deleted file mode 100644 index 9a24adfe0e..0000000000 --- a/releases/5_3_11.php +++ /dev/null @@ -1,39 +0,0 @@ - - -

    PHP 5.3.11 Release Announcement

    - -

    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:

    - -
      -
    • Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831). - Reported by Stefan Esser. (Ondřej Surý)
    • -
    • Fixed bug #54374 (Insufficient validating of upload name leading to - corrupted $_FILES indices). (CVE-2012-1172). (Stas, lekensteyn at - gmail dot com, Pierre)
    • -
    • Add open_basedir checks to readline_write_history and readline_read_history. - (Rasmus, reported by Mateusz Goik)
    • -
    - -

    Key enhancements in PHP 5.3.11 include:

    - -
      -
    • Added debug info handler to DOM objects. (Gustavo, Joey Smith)
    • -
    • Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)
    • -
    - -

    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.

    - - diff --git a/releases/5_3_12.php b/releases/5_3_12.php deleted file mode 100644 index 6ef2c48943..0000000000 --- a/releases/5_3_12.php +++ /dev/null @@ -1,64 +0,0 @@ - - -

    PHP 5.3.12 Release Announcement

    - -

    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.

    - - diff --git a/releases/5_3_13.php b/releases/5_3_13.php deleted file mode 100644 index 37803df495..0000000000 --- a/releases/5_3_13.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.3.13 Release Announcement

    - -

    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.

    - - diff --git a/releases/5_3_14.php b/releases/5_3_14.php deleted file mode 100644 index 2deabd0e5b..0000000000 --- a/releases/5_3_14.php +++ /dev/null @@ -1,23 +0,0 @@ - - -

    PHP 5.3.14 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_15.php b/releases/5_3_15.php deleted file mode 100644 index 1e1504dd9e..0000000000 --- a/releases/5_3_15.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.3.15 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_16.php b/releases/5_3_16.php deleted file mode 100644 index 77bda90b45..0000000000 --- a/releases/5_3_16.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.3.16 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_17.php b/releases/5_3_17.php deleted file mode 100644 index 713c0921d4..0000000000 --- a/releases/5_3_17.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.3.17 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_18.php b/releases/5_3_18.php deleted file mode 100644 index 7aaa678b7e..0000000000 --- a/releases/5_3_18.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.3.18 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_19.php b/releases/5_3_19.php deleted file mode 100644 index 90c159f543..0000000000 --- a/releases/5_3_19.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.3.19 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_2.php b/releases/5_3_2.php deleted file mode 100644 index b18fadc91e..0000000000 --- a/releases/5_3_2.php +++ /dev/null @@ -1,52 +0,0 @@ - - -

    PHP 5.3.2 Release Announcement

    -

    -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: -

    -
      -
    • 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 the session extension identified by Grzegorz Stachowiak. (Ilia)
    • -
    - -

    -Key Bug Fixes in PHP 5.3.2 include: -

    -
      -
    • Added support for SHA-256 and SHA-512 to php's crypt.
    • -
    • Added protection for $_SESSION from interrupt corruption and improved "session.save_path" check.
    • -
    • Fixed bug #51059 (crypt crashes when invalid salt are given).
    • -
    • Fixed bug #50940 Custom content-length set incorrectly in Apache sapis.
    • -
    • Fixed bug #50847 (strip_tags() removes all tags greater then 1023 bytes long).
    • -
    • Fixed bug #50723 (Bug in garbage collector causes crash).
    • -
    • Fixed bug #50661 (DOMDocument::loadXML does not allow UTF-16).
    • -
    • Fixed bug #50632 (filter_input() does not return default value if the variable does not exist).
    • -
    • Fixed bug #50540 (Crash while running ldap_next_reference test -cases).
    • -
    • Fixed bug #49851 (http wrapper breaks on 1024 char long headers).
    • -
    • Over 60 other bug fixes.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_3_20.php b/releases/5_3_20.php deleted file mode 100644 index 7cc60fead3..0000000000 --- a/releases/5_3_20.php +++ /dev/null @@ -1,17 +0,0 @@ - - -

    PHP 5.3.20 Release Announcement

    - -

    The PHP development team announces the immediate availability of PHP -5.3.20. About 15 bugs were fixed. Please note that the PHP 5.3 series will enter an end of life cycle and receive only critical fixes as of March 2013. All users of PHP are encouraged to upgrade to PHP 5.4. PHP 5.3.20 is recommended for those wishing to remain on the 5.3 series.

    - -

    For source downloads of PHP 5.3.20 please visit our downloads page, -Windows binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -

    - - diff --git a/releases/5_3_21.php b/releases/5_3_21.php deleted file mode 100644 index d49f696477..0000000000 --- a/releases/5_3_21.php +++ /dev/null @@ -1,17 +0,0 @@ - - -

    PHP 5.3.21 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_22.php b/releases/5_3_22.php deleted file mode 100644 index c4e58c9f17..0000000000 --- a/releases/5_3_22.php +++ /dev/null @@ -1,16 +0,0 @@ - - -

    PHP 5.3.22 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_23.php b/releases/5_3_23.php deleted file mode 100644 index 4ea5b9735f..0000000000 --- a/releases/5_3_23.php +++ /dev/null @@ -1,16 +0,0 @@ - - -

    PHP 5.3.23 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_24.php b/releases/5_3_24.php deleted file mode 100644 index 909cd51a03..0000000000 --- a/releases/5_3_24.php +++ /dev/null @@ -1,16 +0,0 @@ - - -

    PHP 5.3.24 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_25.php b/releases/5_3_25.php deleted file mode 100644 index 4e162928b6..0000000000 --- a/releases/5_3_25.php +++ /dev/null @@ -1,16 +0,0 @@ - - -

    PHP 5.3.25 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_26.php b/releases/5_3_26.php deleted file mode 100644 index da17ce2073..0000000000 --- a/releases/5_3_26.php +++ /dev/null @@ -1,16 +0,0 @@ - - -

    PHP 5.3.26 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_27.php b/releases/5_3_27.php deleted file mode 100644 index ef00ff993a..0000000000 --- a/releases/5_3_27.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.3.27 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_28.php b/releases/5_3_28.php deleted file mode 100644 index 9f49e41d69..0000000000 --- a/releases/5_3_28.php +++ /dev/null @@ -1,16 +0,0 @@ - - -

    PHP 5.3.28 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_3_29.php b/releases/5_3_29.php deleted file mode 100644 index e30e5889a7..0000000000 --- a/releases/5_3_29.php +++ /dev/null @@ -1,27 +0,0 @@ - - -

    PHP 5.3.29 Release Announcement

    - -

    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.

    - - diff --git a/releases/5_3_3.php b/releases/5_3_3.php deleted file mode 100644 index 516ddd3762..0000000000 --- a/releases/5_3_3.php +++ /dev/null @@ -1,89 +0,0 @@ - - -

    PHP 5.3.3 Release Announcement

    -

    -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: -

    -
      -
    • Methods with the same name as the last element of a namespaced class name - will no longer be treated as constructor. This change doesn't affect - non-namespaced classes. - -

      '); - ?>

      -

      There is no impact on migration from 5.2.x because namespaces were only introduced in PHP 5.3.

    • -
    -

    -Security Enhancements and Fixes in PHP 5.3.3: -

    -
      -
    • Rewrote var_export() to use smart_str rather than output buffering, prevents data disclosure if a fatal error occurs (CVE-2010-2531).
    • -
    • Fixed a possible resource destruction issues in shm_put_var().
    • -
    • Fixed a possible information leak because of interruption of XOR operator.
    • -
    • Fixed a possible memory corruption because of unexpected call-time pass by refernce and following memory clobbering through callbacks.
    • -
    • Fixed a possible memory corruption in ArrayObject::uasort().
    • -
    • Fixed a possible memory corruption in parse_str().
    • -
    • Fixed a possible memory corruption in pack().
    • -
    • Fixed a possible memory corruption in substr_replace().
    • -
    • Fixed a possible memory corruption in addcslashes().
    • -
    • Fixed a possible stack exhaustion inside fnmatch().
    • -
    • Fixed a possible dechunking filter buffer overflow.
    • -
    • Fixed a possible arbitrary memory access inside sqlite extension.
    • -
    • Fixed string format validation inside phar extension.
    • -
    • Fixed handling of session variable serialization on certain prefix characters.
    • -
    • Fixed a NULL pointer dereference when processing invalid XML-RPC requests (Fixes CVE-2010-0397, bug #51288).
    • -
    • Fixed SplObjectStorage unserialization problems (CVE-2010-2225).
    • -
    • Fixed possible buffer overflows in mysqlnd_list_fields, mysqlnd_change_user.
    • -
    • Fixed possible buffer overflows when handling error packets in mysqlnd.
    • -
    - -

    -Key enhancements in PHP 5.3.3 include: -

    -
      -
    • Upgraded bundled sqlite to version 3.6.23.1.
    • -
    • Upgraded bundled PCRE to version 8.02.
    • -
    • Added FastCGI Process Manager (FPM) SAPI.
    • -
    • Added stream filter support to mcrypt extension.
    • -
    • Added full_special_chars filter to ext/filter.
    • -
    • Fixed a possible crash because of recursive GC invocation.
    • -
    • Fixed bug #52238 (Crash when an Exception occured in iterator_to_array).
    • -
    • Fixed bug #52041 (Memory leak when writing on uninitialized variable returned from function).
    • -
    • Fixed bug #52060 (Memory leak when passing a closure to method_exists()).
    • -
    • Fixed bug #52001 (Memory allocation problems after using variable variables).
    • -
    • Fixed bug #51723 (Content-length header is limited to 32bit integer with Apache2 on Windows).
    • -
    • Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3).
    • -
    - -

    -For users upgrading from PHP 5.2 there is a migration guide available on -http://php.net/migration53, detailing the changes between those -releases and PHP 5.3. -

    - -

    - For a full list of changes in PHP 5.3.3, see the ChangeLog. -

    - - diff --git a/releases/5_3_4.php b/releases/5_3_4.php deleted file mode 100644 index d3bd8a7488..0000000000 --- a/releases/5_3_4.php +++ /dev/null @@ -1,56 +0,0 @@ - - -

    PHP 5.3.4 Release Announcement

    -

    -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: -

    -
      -
    • Fixed crash in zip extract method (possible CWE-170).
    • -
    • Paths with NULL in them (foo\0bar.txt) are now considered as invalid (CVE-2006-7243).
    • -
    • Fixed a possible double free in imap extension (Identified by Mateusz - Kocielski). (CVE-2010-4150).
    • -
    • Fixed NULL pointer dereference in ZipArchive::getArchiveComment. - (CVE-2010-3709).
    • -
    • Fixed possible flaw in open_basedir (CVE-2010-3436).
    • -
    • Fixed MOPS-2010-24, fix string validation. (CVE-2010-2950).
    • -
    • Fixed symbolic resolution support when the target is a DFS share.
    • -
    • Fixed bug #52929 (Segfault in filter_var with FILTER_VALIDATE_EMAIL with - large amount of data) (CVE-2010-3710).
    • -
    - -

    -Key Bug Fixes in PHP 5.3.4 include: -

    -
      -
    • Added stat support for zip stream.
    • -
    • Added follow_location (enabled by default) option for the http stream - support.
    • -
    • Added a 3rd parameter to get_html_translation_table. It now takes a charset hint, like htmlentities et al.
    • -
    • Implemented FR #52348, added new constant ZEND_MULTIBYTE to detect - zend multibyte at runtime.
    • -
    • Multiple improvements to the FPM SAPI.
    • -
    • Over 100 other bug fixes.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_3_5.php b/releases/5_3_5.php deleted file mode 100644 index 31dfb7ec72..0000000000 --- a/releases/5_3_5.php +++ /dev/null @@ -1,31 +0,0 @@ - - -

    PHP 5.3.5 Release Announcement

    -

    -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: -

    -
      -
    • Fixed bug #53632 (PHP hangs on numeric value 2.2250738585072011e-308). (CVE-2010-4645)
    • -
    - - diff --git a/releases/5_3_6.php b/releases/5_3_6.php deleted file mode 100644 index 9f7b718b05..0000000000 --- a/releases/5_3_6.php +++ /dev/null @@ -1,53 +0,0 @@ - - -

    PHP 5.3.6 Release Announcement

    - -

    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:

    -
      -
    • Enforce security in the fastcgi protocol parsing with fpm SAPI.
    • -
    • Fixed bug #54247 (format-string vulnerability on Phar). (CVE-2011-1153)
    • -
    • Fixed bug #54193 (Integer overflow in shmop_read()). (CVE-2011-1092)
    • -
    • Fixed bug #54055 (buffer overrun with high values for precision ini setting).
    • -
    • Fixed bug #54002 (crash on crafted tag in exif). (CVE-2011-0708)
    • -
    • Fixed bug #53885 (ZipArchive segfault with FL_UNCHANGED on empty archive). (CVE-2011-0421)
    • -
    - -

    Key enhancements in PHP 5.3.6 include:

    -
      -
    • Upgraded bundled Sqlite3 to version 3.7.4.
    • -
    • Upgraded bundled PCRE to version 8.11.
    • -
    • Added ability to connect to HTTPS sites through proxy with basic authentication using stream_context/http/header/Proxy-Authorization.
    • -
    • Added options to debug backtrace functions.
    • -
    • Changed default value of ini directive serialize_precision from 100 to 17.
    • -
    • Fixed Bug #53971 (isset() and empty() produce apparently spurious runtime error).
    • -
    • Fixed Bug #53958 (Closures can't 'use' shared variables by value and by reference).
    • -
    • Fixed bug #53577 (Regression introduced in 5.3.4 in open_basedir with a trailing forward slash).
    • -
    • Over 60 other bug fixes.
    • -
    - -

    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.

    - - - diff --git a/releases/5_3_7.php b/releases/5_3_7.php deleted file mode 100644 index 31f6fc81d3..0000000000 --- a/releases/5_3_7.php +++ /dev/null @@ -1,67 +0,0 @@ - - -

    PHP 5.3.7 Release Announcement

    - -

    The PHP development team would like to announce the immediate -availability of PHP 5.3.7. This release focuses on improving the -stability of the PHP 5.3.x branch with over 90 bug fixes, some of which -are security related.

    - -

    Security Enhancements and Fixes in PHP 5.3.7:

    -
      -
    • Updated crypt_blowfish to 1.2. (CVE-2011-2483)
    • -
    • Fixed crash in error_log(). Reported by Mateusz Kocielski
    • -
    • Fixed buffer overflow on overlog salt in crypt().
    • -
    • Fixed bug #54939 (File path injection vulnerability in RFC1867 File upload filename). Reported by Krzysztof Kotowicz. (CVE-2011-2202)
    • -
    • Fixed stack buffer overflow in socket_connect(). (CVE-2011-1938)
    • -
    • Fixed bug #54238 (use-after-free in substr_replace()). (CVE-2011-1148)
    • -
    - -

    Key enhancements in PHP 5.3.7 include:

    -
      -
    • Upgraded bundled Sqlite3 to version 3.7.7.1
    • -
    • Upgraded bundled PCRE to version 8.12
    • -
    • Fixed bug #54910 (Crash when calling call_user_func with unknown function name)
    • -
    • Fixed bug #54585 (track_errors causes segfault)
    • -
    • Fixed bug #54262 (Crash when assigning value to a dimension in a non-array)
    • -
    • Fixed a crash inside dtor for error handling
    • -
    • Fixed bug #55339 (Segfault with allow_call_time_pass_reference = Off)
    • -
    • Fixed bug #54935 php_win_err can lead to crash
    • -
    • Fixed bug #54332 (Crash in zend_mm_check_ptr // Heap corruption)
    • -
    • Fixed bug #54305 (Crash in gc_remove_zval_from_buffer)
    • -
    • Fixed bug #54580 (get_browser() segmentation fault when browscap ini directive is set through php_admin_value)
    • -
    • Fixed bug #54529 (SAPI crashes on apache_config.c:197)
    • -
    • Fixed bug #54283 (new DatePeriod(NULL) causes crash).
    • -
    • Fixed bug #54269 (Short exception message buffer causes crash)
    • -
    • Fixed Bug #54221 (mysqli::get_warnings segfault when used in multi queries)
    • -
    • Fixed bug #54395 (Phar::mount() crashes when calling with wrong parameters)
    • -
    • Fixed bug #54384 (Dual iterators, GlobIterator, SplFileObject and SplTempFileObject crash when user-space classes don't call the parent constructor)
    • -
    • Fixed bug #54292 (Wrong parameter causes crash in SplFileObject::__construct())
    • -
    • Fixed bug #54291 (Crash iterating DirectoryIterator for dir name starting with \0)
    • -
    • Fixed bug #54281 (Crash in non-initialized RecursiveIteratorIterator)
    • -
    • Fixed bug #54623 (Segfault when writing to a persistent socket after closing a copy of the socket)
    • -
    • Fixed bug #54681 (addGlob() crashes on invalid flags)
    • -
    • Over 80 other bug fixes.
    • -
    - -

    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.

    - - - diff --git a/releases/5_3_8.php b/releases/5_3_8.php deleted file mode 100644 index 83f89e5fc0..0000000000 --- a/releases/5_3_8.php +++ /dev/null @@ -1,23 +0,0 @@ - - -

    PHP 5.3.8 Release Announcement

    - -

    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:

    - -
      -
    • Fixed bug #55439 (crypt() returns only the salt for MD5)
    • -
    • Reverted a change in timeout handling restoring PHP 5.3.6 behavior, - which caused mysqlnd SSL connections to hang (Bug #55283).
    • -
    - -

    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.

    - - - diff --git a/releases/5_3_9.php b/releases/5_3_9.php deleted file mode 100644 index c12a3e394f..0000000000 --- a/releases/5_3_9.php +++ /dev/null @@ -1,33 +0,0 @@ - - -

    PHP 5.3.9 Release Announcement

    - -

    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:

    - -
      -
    • Added max_input_vars directive to prevent attacks based on hash collisions. (CVE-2011-4885)
    • -
    • Fixed bug #60150 (Integer overflow during the parsing of invalid exif - header). (CVE-2011-4566)
    • -
    - -

    Key enhancements in PHP 5.3.9 include:

    - -
      -
    • Fixed bug #55475 (is_a() triggers autoloader, new optional 3rd argument to - is_a and is_subclass_of).
    • -
    • Fixed bug #55609 (mysqlnd cannot be built shared)
    • -
    • Many changes to the FPM SAPI module
    • -
    - -

    All users are strongly encouraged to upgrade to PHP 5.3.9.

    - - diff --git a/releases/5_4_0.php b/releases/5_4_0.php deleted file mode 100644 index 1eb54f38f3..0000000000 --- a/releases/5_4_0.php +++ /dev/null @@ -1,64 +0,0 @@ - - -

    PHP 5.4.0 Release Announcement

    -

    -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: -

    -
      -
    • New language syntax including Traits, - shortened array syntax - and more
    • -
    • Improved performance and reduced memory consumption
    • -
    • Support for multibyte languages now available in all builds of PHP at the flip of a runtime switch
    • -
    • - Built-in webserver in CLI mode to simplify development workflows and testing
    • -
    • Cleaner code base thanks to the removal of multiple deprecated language features
    • -
    • Many more improvements and fixes
    • -
    - -

    -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. -

    - - diff --git a/releases/5_4_1.php b/releases/5_4_1.php deleted file mode 100644 index 2cd4a6d38d..0000000000 --- a/releases/5_4_1.php +++ /dev/null @@ -1,37 +0,0 @@ - - -

    PHP 5.4.1 Release Announcement

    - -

    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:

    - -
      -
    • Fixed bug #54374 (Insufficient validating of upload name leading to - corrupted $_FILES indices). (CVE-2012-1172). (Stas, lekensteyn at - gmail dot com, Pierre)
    • -
    • Add open_basedir checks to readline_write_history and readline_read_history. - (Rasmus, reported by Mateusz Goik)
    • -
    - -

    Key enhancements in PHP 5.4.1 include:

    - -
      -
    • Added debug info handler to DOM objects. (Gustavo, Joey Smith)
    • -
    • Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)
    • -
    - -

    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.

    - - diff --git a/releases/5_4_10.php b/releases/5_4_10.php deleted file mode 100644 index 5f75be671b..0000000000 --- a/releases/5_4_10.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.10 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_11.php b/releases/5_4_11.php deleted file mode 100644 index 6b851be121..0000000000 --- a/releases/5_4_11.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.11 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_12.php b/releases/5_4_12.php deleted file mode 100644 index c50cf3c462..0000000000 --- a/releases/5_4_12.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.12 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_13.php b/releases/5_4_13.php deleted file mode 100644 index f083cbf87a..0000000000 --- a/releases/5_4_13.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.13 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_14.php b/releases/5_4_14.php deleted file mode 100644 index 71a7338e4d..0000000000 --- a/releases/5_4_14.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.14 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_15.php b/releases/5_4_15.php deleted file mode 100644 index 3dcf941747..0000000000 --- a/releases/5_4_15.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.15 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_16.php b/releases/5_4_16.php deleted file mode 100644 index d7dc262f16..0000000000 --- a/releases/5_4_16.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.16 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_17.php b/releases/5_4_17.php deleted file mode 100644 index 19176efe77..0000000000 --- a/releases/5_4_17.php +++ /dev/null @@ -1,17 +0,0 @@ - - -

    PHP 5.4.17 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_18.php b/releases/5_4_18.php deleted file mode 100644 index b3a573f096..0000000000 --- a/releases/5_4_18.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.4.18 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_19.php b/releases/5_4_19.php deleted file mode 100644 index b00068c15e..0000000000 --- a/releases/5_4_19.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.4.19 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_2.php b/releases/5_4_2.php deleted file mode 100644 index 176ae391fc..0000000000 --- a/releases/5_4_2.php +++ /dev/null @@ -1,64 +0,0 @@ - - -

    PHP 5.4.2 Release Announcement

    - -

    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.

    - - diff --git a/releases/5_4_20.php b/releases/5_4_20.php deleted file mode 100644 index 65921bf064..0000000000 --- a/releases/5_4_20.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.20 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_21.php b/releases/5_4_21.php deleted file mode 100644 index 4cf482fafc..0000000000 --- a/releases/5_4_21.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.21 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_22.php b/releases/5_4_22.php deleted file mode 100644 index d7fd713b75..0000000000 --- a/releases/5_4_22.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.22 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_23.php b/releases/5_4_23.php deleted file mode 100644 index 84da8ddd15..0000000000 --- a/releases/5_4_23.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.23 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_24.php b/releases/5_4_24.php deleted file mode 100644 index 9b23fa1cd1..0000000000 --- a/releases/5_4_24.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.24 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_25.php b/releases/5_4_25.php deleted file mode 100644 index c099ee8beb..0000000000 --- a/releases/5_4_25.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.25 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_26.php b/releases/5_4_26.php deleted file mode 100644 index c34b40f8d7..0000000000 --- a/releases/5_4_26.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.26 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_27.php b/releases/5_4_27.php deleted file mode 100644 index e2e34b6118..0000000000 --- a/releases/5_4_27.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.27 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_28.php b/releases/5_4_28.php deleted file mode 100644 index 92848a6b04..0000000000 --- a/releases/5_4_28.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.28 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_29.php b/releases/5_4_29.php deleted file mode 100644 index bb335d1366..0000000000 --- a/releases/5_4_29.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.29 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_3.php b/releases/5_4_3.php deleted file mode 100644 index 5f01311be2..0000000000 --- a/releases/5_4_3.php +++ /dev/null @@ -1,25 +0,0 @@ - - -

    PHP 5.4.3 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_30.php b/releases/5_4_30.php deleted file mode 100644 index bce1a31c24..0000000000 --- a/releases/5_4_30.php +++ /dev/null @@ -1,32 +0,0 @@ - - -

    PHP 5.4.30 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_31.php b/releases/5_4_31.php deleted file mode 100644 index 7900456d50..0000000000 --- a/releases/5_4_31.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.4.31 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_32.php b/releases/5_4_32.php deleted file mode 100644 index 5af9842fbf..0000000000 --- a/releases/5_4_32.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.4.32 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_33.php b/releases/5_4_33.php deleted file mode 100644 index 036c97a4df..0000000000 --- a/releases/5_4_33.php +++ /dev/null @@ -1,26 +0,0 @@ - - -

    PHP 5.4.33 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_34.php b/releases/5_4_34.php deleted file mode 100644 index d181664911..0000000000 --- a/releases/5_4_34.php +++ /dev/null @@ -1,22 +0,0 @@ - - -

    PHP 5.4.34 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_35.php b/releases/5_4_35.php deleted file mode 100644 index 8401e13bef..0000000000 --- a/releases/5_4_35.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.4.35 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_36.php b/releases/5_4_36.php deleted file mode 100644 index f585a8a316..0000000000 --- a/releases/5_4_36.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.4.36 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_37.php b/releases/5_4_37.php deleted file mode 100644 index 6c1e67a539..0000000000 --- a/releases/5_4_37.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.4.37 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_38.php b/releases/5_4_38.php deleted file mode 100644 index d33f366214..0000000000 --- a/releases/5_4_38.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.4.38 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_39.php b/releases/5_4_39.php deleted file mode 100644 index ada4f62870..0000000000 --- a/releases/5_4_39.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.4.39 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_4.php b/releases/5_4_4.php deleted file mode 100644 index 5f2d26098c..0000000000 --- a/releases/5_4_4.php +++ /dev/null @@ -1,23 +0,0 @@ - - -

    PHP 5.4.4 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_40.php b/releases/5_4_40.php deleted file mode 100644 index c98693d4d0..0000000000 --- a/releases/5_4_40.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.4.40 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_41.php b/releases/5_4_41.php deleted file mode 100644 index 773a5dfa93..0000000000 --- a/releases/5_4_41.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.4.41 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_42.php b/releases/5_4_42.php deleted file mode 100644 index b2eaabc8c9..0000000000 --- a/releases/5_4_42.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.4.42 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_43.php b/releases/5_4_43.php deleted file mode 100644 index 96cd1fce2a..0000000000 --- a/releases/5_4_43.php +++ /dev/null @@ -1,23 +0,0 @@ - - -

    PHP 5.4.43 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_44.php b/releases/5_4_44.php deleted file mode 100644 index 430aaa25d1..0000000000 --- a/releases/5_4_44.php +++ /dev/null @@ -1,23 +0,0 @@ - - -

    PHP 5.4.44 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_45.php b/releases/5_4_45.php deleted file mode 100644 index fe1fb6655b..0000000000 --- a/releases/5_4_45.php +++ /dev/null @@ -1,25 +0,0 @@ - - -

    PHP 5.4.45 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_5.php b/releases/5_4_5.php deleted file mode 100644 index 609502915d..0000000000 --- a/releases/5_4_5.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.5 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_6.php b/releases/5_4_6.php deleted file mode 100644 index 67766cd45f..0000000000 --- a/releases/5_4_6.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.6 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_7.php b/releases/5_4_7.php deleted file mode 100644 index cc23af960e..0000000000 --- a/releases/5_4_7.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.7 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_8.php b/releases/5_4_8.php deleted file mode 100644 index d3ce3c1dc7..0000000000 --- a/releases/5_4_8.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.4.8 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_4_9.php b/releases/5_4_9.php deleted file mode 100644 index 074c329d49..0000000000 --- a/releases/5_4_9.php +++ /dev/null @@ -1,18 +0,0 @@ - - -

    PHP 5.4.9 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_0.php b/releases/5_5_0.php deleted file mode 100644 index ba8c48a3ef..0000000000 --- a/releases/5_5_0.php +++ /dev/null @@ -1,51 +0,0 @@ - - -

    PHP 5.5.0 Release Announcement

    -

    -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: -

    -
      -
    • PHP logo GUIDs have been removed.
    • -
    • Windows XP and 2003 support dropped.
    • -
    • Case insensitivity is no longer locale specific. All case insensitive matching for function, class and constant names is now performed in a locale independent manner according to ASCII rules.
    • -
    - -

    -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. -

    - - diff --git a/releases/5_5_1.php b/releases/5_5_1.php deleted file mode 100644 index e0003b5e42..0000000000 --- a/releases/5_5_1.php +++ /dev/null @@ -1,23 +0,0 @@ - - -

    PHP 5.5.1 Release Announcement

    -

    -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. -

    - - diff --git a/releases/5_5_10.php b/releases/5_5_10.php deleted file mode 100644 index 8ebdf307cf..0000000000 --- a/releases/5_5_10.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.10 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_11.php b/releases/5_5_11.php deleted file mode 100644 index c24c751a78..0000000000 --- a/releases/5_5_11.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.11 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_12.php b/releases/5_5_12.php deleted file mode 100644 index d59f018e76..0000000000 --- a/releases/5_5_12.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.12 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_13.php b/releases/5_5_13.php deleted file mode 100644 index ac3e1e8101..0000000000 --- a/releases/5_5_13.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.13 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_14.php b/releases/5_5_14.php deleted file mode 100644 index 19925e85f6..0000000000 --- a/releases/5_5_14.php +++ /dev/null @@ -1,30 +0,0 @@ - - -

    PHP 5.5.14 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_15.php b/releases/5_5_15.php deleted file mode 100644 index e120656ca7..0000000000 --- a/releases/5_5_15.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.15 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_16.php b/releases/5_5_16.php deleted file mode 100644 index fd7f2d4459..0000000000 --- a/releases/5_5_16.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.5.16 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_17.php b/releases/5_5_17.php deleted file mode 100644 index 017b149421..0000000000 --- a/releases/5_5_17.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.17 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_18.php b/releases/5_5_18.php deleted file mode 100644 index 7ffe394ee0..0000000000 --- a/releases/5_5_18.php +++ /dev/null @@ -1,22 +0,0 @@ - - -

    PHP 5.5.18 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_19.php b/releases/5_5_19.php deleted file mode 100644 index aa646449af..0000000000 --- a/releases/5_5_19.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.19 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_2.php b/releases/5_5_2.php deleted file mode 100644 index 650a662303..0000000000 --- a/releases/5_5_2.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.5.2 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_20.php b/releases/5_5_20.php deleted file mode 100644 index 578beb2cd5..0000000000 --- a/releases/5_5_20.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.20 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_21.php b/releases/5_5_21.php deleted file mode 100644 index 32ef7b546c..0000000000 --- a/releases/5_5_21.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.21 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_22.php b/releases/5_5_22.php deleted file mode 100644 index 6ecc2ae048..0000000000 --- a/releases/5_5_22.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.22 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_23.php b/releases/5_5_23.php deleted file mode 100644 index 846129432e..0000000000 --- a/releases/5_5_23.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.5.23 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_24.php b/releases/5_5_24.php deleted file mode 100644 index 75c9e75272..0000000000 --- a/releases/5_5_24.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.24 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_25.php b/releases/5_5_25.php deleted file mode 100644 index 2fd5f6a71d..0000000000 --- a/releases/5_5_25.php +++ /dev/null @@ -1,18 +0,0 @@ - -

    PHP 5.5.25 Release Announcement

    - -

    The PHP development team announces the immediate availability of PHP - 5.5.25. Several bugs have been fixed. - - All PHP 5.5 users are encouraged to upgrade to this version. -

    - -

    For source downloads of PHP 5.5.25 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. - - diff --git a/releases/5_5_26.php b/releases/5_5_26.php deleted file mode 100644 index 2ad35a9f4c..0000000000 --- a/releases/5_5_26.php +++ /dev/null @@ -1,20 +0,0 @@ - -

    PHP 5.5.26 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_27.php b/releases/5_5_27.php deleted file mode 100644 index 9efed394bb..0000000000 --- a/releases/5_5_27.php +++ /dev/null @@ -1,25 +0,0 @@ - -

    PHP 5.5.27 Release Announcement

    - -

    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. - - diff --git a/releases/5_5_28.php b/releases/5_5_28.php deleted file mode 100644 index 78106f5bce..0000000000 --- a/releases/5_5_28.php +++ /dev/null @@ -1,26 +0,0 @@ - -

    PHP 5.5.28 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_29.php b/releases/5_5_29.php deleted file mode 100644 index 21f4d90f68..0000000000 --- a/releases/5_5_29.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.29 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_3.php b/releases/5_5_3.php deleted file mode 100644 index 2d7298a1ff..0000000000 --- a/releases/5_5_3.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.3 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_30.php b/releases/5_5_30.php deleted file mode 100644 index 05120a8e20..0000000000 --- a/releases/5_5_30.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.30 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_31.php b/releases/5_5_31.php deleted file mode 100644 index e2e33fb027..0000000000 --- a/releases/5_5_31.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.31 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_32.php b/releases/5_5_32.php deleted file mode 100644 index f723e7176f..0000000000 --- a/releases/5_5_32.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.32 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_33.php b/releases/5_5_33.php deleted file mode 100644 index eaf3f8fc94..0000000000 --- a/releases/5_5_33.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.33 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_34.php b/releases/5_5_34.php deleted file mode 100644 index 669f7d7a40..0000000000 --- a/releases/5_5_34.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.34 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_35.php b/releases/5_5_35.php deleted file mode 100644 index f334dd3013..0000000000 --- a/releases/5_5_35.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.35 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_36.php b/releases/5_5_36.php deleted file mode 100644 index f456e0a890..0000000000 --- a/releases/5_5_36.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.36 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_37.php b/releases/5_5_37.php deleted file mode 100644 index 1708207004..0000000000 --- a/releases/5_5_37.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.5.37 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_38.php b/releases/5_5_38.php deleted file mode 100644 index 5356334bd3..0000000000 --- a/releases/5_5_38.php +++ /dev/null @@ -1,22 +0,0 @@ - -

    PHP 5.5.38 Release Announcement

    - -

    - 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. -

    - - diff --git a/releases/5_5_4.php b/releases/5_5_4.php deleted file mode 100644 index f7409b010a..0000000000 --- a/releases/5_5_4.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.4 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_5.php b/releases/5_5_5.php deleted file mode 100644 index c4945f00fc..0000000000 --- a/releases/5_5_5.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.5 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_6.php b/releases/5_5_6.php deleted file mode 100644 index 73ef831603..0000000000 --- a/releases/5_5_6.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.6 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_7.php b/releases/5_5_7.php deleted file mode 100644 index 643a8baf48..0000000000 --- a/releases/5_5_7.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.7 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_8.php b/releases/5_5_8.php deleted file mode 100644 index de1a12ed56..0000000000 --- a/releases/5_5_8.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.8 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_5_9.php b/releases/5_5_9.php deleted file mode 100644 index 282445b2a5..0000000000 --- a/releases/5_5_9.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.5.9 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_0.php b/releases/5_6_0.php deleted file mode 100644 index c2a8bbc753..0000000000 --- a/releases/5_6_0.php +++ /dev/null @@ -1,48 +0,0 @@ - - -

    PHP 5.6.0 Release Announcement

    - -

    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:

    - - -

    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: -

    - -
      -
    • Array keys won't be overwritten when defining an array as a property of a class via an array literal.
    • -
    • json_decode() is more strict in JSON syntax parsing.
    • -
    • Stream wrappers now verify peer certificates and host names by default when using SSL/TLS.
    • -
    • GMP resources are now objects.
    • -
    • Mcrypt functions now require valid keys and IVs.
    • -
    - -

    - 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. -

    - - diff --git a/releases/5_6_1.php b/releases/5_6_1.php deleted file mode 100644 index 17616e6dbc..0000000000 --- a/releases/5_6_1.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.6.1 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_10.php b/releases/5_6_10.php deleted file mode 100644 index 92c11117ed..0000000000 --- a/releases/5_6_10.php +++ /dev/null @@ -1,20 +0,0 @@ - -

    PHP 5.6.10 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_11.php b/releases/5_6_11.php deleted file mode 100644 index e8ef1aaaea..0000000000 --- a/releases/5_6_11.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.6.11 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_12.php b/releases/5_6_12.php deleted file mode 100644 index 79d34e217a..0000000000 --- a/releases/5_6_12.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.12 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_13.php b/releases/5_6_13.php deleted file mode 100644 index 4608e6ca3d..0000000000 --- a/releases/5_6_13.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.13 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_14.php b/releases/5_6_14.php deleted file mode 100644 index 45c06d993c..0000000000 --- a/releases/5_6_14.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.14 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_15.php b/releases/5_6_15.php deleted file mode 100644 index 51c3649171..0000000000 --- a/releases/5_6_15.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.6.15 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_16.php b/releases/5_6_16.php deleted file mode 100644 index 9c01b9af9f..0000000000 --- a/releases/5_6_16.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.6.16 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_17.php b/releases/5_6_17.php deleted file mode 100644 index 95e94b88d1..0000000000 --- a/releases/5_6_17.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.17 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_18.php b/releases/5_6_18.php deleted file mode 100644 index 3d14865b1a..0000000000 --- a/releases/5_6_18.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.18 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_19.php b/releases/5_6_19.php deleted file mode 100644 index ba1447cef6..0000000000 --- a/releases/5_6_19.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.19 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_2.php b/releases/5_6_2.php deleted file mode 100644 index 30644d9b56..0000000000 --- a/releases/5_6_2.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.6.2 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_20.php b/releases/5_6_20.php deleted file mode 100644 index 14c1cca08d..0000000000 --- a/releases/5_6_20.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.20 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_21.php b/releases/5_6_21.php deleted file mode 100644 index 4c04249c92..0000000000 --- a/releases/5_6_21.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.21 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_22.php b/releases/5_6_22.php deleted file mode 100644 index a1e76edf90..0000000000 --- a/releases/5_6_22.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.22 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_23.php b/releases/5_6_23.php deleted file mode 100644 index 3258785dae..0000000000 --- a/releases/5_6_23.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.23 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_24.php b/releases/5_6_24.php deleted file mode 100644 index 3d4a10b76c..0000000000 --- a/releases/5_6_24.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.6.24 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_25.php b/releases/5_6_25.php deleted file mode 100644 index fcf349acf3..0000000000 --- a/releases/5_6_25.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.25 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_26.php b/releases/5_6_26.php deleted file mode 100644 index c6053aa69a..0000000000 --- a/releases/5_6_26.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.26 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_27.php b/releases/5_6_27.php deleted file mode 100644 index e4a84d5106..0000000000 --- a/releases/5_6_27.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.27 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_28.php b/releases/5_6_28.php deleted file mode 100644 index b6e36e3532..0000000000 --- a/releases/5_6_28.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.28 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_29.php b/releases/5_6_29.php deleted file mode 100644 index eaa1d39c84..0000000000 --- a/releases/5_6_29.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.29 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_3.php b/releases/5_6_3.php deleted file mode 100644 index d7f8c4e4f2..0000000000 --- a/releases/5_6_3.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 5.6.3 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_30.php b/releases/5_6_30.php deleted file mode 100644 index 608e49ce8f..0000000000 --- a/releases/5_6_30.php +++ /dev/null @@ -1,28 +0,0 @@ - - -

    PHP 5.6.30 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_31.php b/releases/5_6_31.php deleted file mode 100644 index ff7e4349cf..0000000000 --- a/releases/5_6_31.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.31 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_32.php b/releases/5_6_32.php deleted file mode 100644 index 744e972724..0000000000 --- a/releases/5_6_32.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.32 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_33.php b/releases/5_6_33.php deleted file mode 100644 index 83d5b6417d..0000000000 --- a/releases/5_6_33.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.33 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_34.php b/releases/5_6_34.php deleted file mode 100644 index 276aa8800a..0000000000 --- a/releases/5_6_34.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.34 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_35.php b/releases/5_6_35.php deleted file mode 100644 index ce9379568e..0000000000 --- a/releases/5_6_35.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.35 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_36.php b/releases/5_6_36.php deleted file mode 100644 index 3175ee18e5..0000000000 --- a/releases/5_6_36.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.36 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_37.php b/releases/5_6_37.php deleted file mode 100644 index 56409093d8..0000000000 --- a/releases/5_6_37.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.37 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_38.php b/releases/5_6_38.php deleted file mode 100644 index f3f64e72a9..0000000000 --- a/releases/5_6_38.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 5.6.38 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_39.php b/releases/5_6_39.php deleted file mode 100644 index 1bc854ef06..0000000000 --- a/releases/5_6_39.php +++ /dev/null @@ -1,32 +0,0 @@ - - -

    PHP 5.6.39 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_4.php b/releases/5_6_4.php deleted file mode 100644 index 9f3c700bbb..0000000000 --- a/releases/5_6_4.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.6.4 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_40.php b/releases/5_6_40.php deleted file mode 100644 index a0880e1dde..0000000000 --- a/releases/5_6_40.php +++ /dev/null @@ -1,32 +0,0 @@ - - -

    PHP 5.6.40 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_5.php b/releases/5_6_5.php deleted file mode 100644 index fd687d6889..0000000000 --- a/releases/5_6_5.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.6.5 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_6.php b/releases/5_6_6.php deleted file mode 100644 index 91af39dcab..0000000000 --- a/releases/5_6_6.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.6.6 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_7.php b/releases/5_6_7.php deleted file mode 100644 index dcfdc7f473..0000000000 --- a/releases/5_6_7.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.7 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_8.php b/releases/5_6_8.php deleted file mode 100644 index c68e0c08dd..0000000000 --- a/releases/5_6_8.php +++ /dev/null @@ -1,19 +0,0 @@ - -

    PHP 5.6.8 Release Announcement

    - -

    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. -

    - - diff --git a/releases/5_6_9.php b/releases/5_6_9.php deleted file mode 100644 index df6cb7e170..0000000000 --- a/releases/5_6_9.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 5.6.9 Release Announcement

    - -

    The PHP development team announces the immediate availability of PHP - 5.6.9. Several bugs have been fixed. - - All PHP 5.6 users are encouraged to upgrade to this version. -

    - -

    For source downloads of PHP 5.6.9 please visit our downloads page, - Windows binaries can be found on windows.php.net/download/. - The list of changes is recorded in the ChangeLog. -

    - - diff --git a/releases/7_0_0.php b/releases/7_0_0.php deleted file mode 100644 index a9c03fcd43..0000000000 --- a/releases/7_0_0.php +++ /dev/null @@ -1,57 +0,0 @@ - - -

    PHP 7.0.0 Release Announcement

    - -

    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 -

    -
      -
    • Improved performance: PHP 7 is up to twice as fast as PHP 5.6
    • -
    • Significantly reduced memory usage
    • -
    • Abstract Syntax Tree
    • -
    • Consistent 64-bit support
    • -
    • Improved Exception hierarchy
    • -
    • Many fatal errors converted to Exceptions
    • -
    • Secure random number generator
    • -
    • Removed old and unsupported SAPIs and extensions
    • -
    • The null coalescing operator (??)
    • -
    • Return and Scalar Type Declarations
    • -
    • Anonymous Classes
    • -
    • Zero cost asserts
    • -
    - -

    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!

    - - diff --git a/releases/7_0_1.php b/releases/7_0_1.php deleted file mode 100644 index d5ee6a501f..0000000000 --- a/releases/7_0_1.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.1 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_10.php b/releases/7_0_10.php deleted file mode 100644 index 37b4e556ae..0000000000 --- a/releases/7_0_10.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.10 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_11.php b/releases/7_0_11.php deleted file mode 100644 index d8fb6b3bf6..0000000000 --- a/releases/7_0_11.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.11 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_12.php b/releases/7_0_12.php deleted file mode 100644 index 0deefa9771..0000000000 --- a/releases/7_0_12.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.12 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_13.php b/releases/7_0_13.php deleted file mode 100644 index e1ff50a487..0000000000 --- a/releases/7_0_13.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.13 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_14.php b/releases/7_0_14.php deleted file mode 100644 index 6ab05f87b6..0000000000 --- a/releases/7_0_14.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.14 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_15.php b/releases/7_0_15.php deleted file mode 100644 index c2fbfb4421..0000000000 --- a/releases/7_0_15.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.15 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_16.php b/releases/7_0_16.php deleted file mode 100644 index 35c21b4280..0000000000 --- a/releases/7_0_16.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.16 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_17.php b/releases/7_0_17.php deleted file mode 100644 index 6476498d3e..0000000000 --- a/releases/7_0_17.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.17 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_18.php b/releases/7_0_18.php deleted file mode 100644 index 5a3751e698..0000000000 --- a/releases/7_0_18.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.18 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_19.php b/releases/7_0_19.php deleted file mode 100644 index a83318fe1f..0000000000 --- a/releases/7_0_19.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.19 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_2.php b/releases/7_0_2.php deleted file mode 100644 index e069ea38d8..0000000000 --- a/releases/7_0_2.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.2 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_20.php b/releases/7_0_20.php deleted file mode 100644 index 91e403deab..0000000000 --- a/releases/7_0_20.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.20 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_21.php b/releases/7_0_21.php deleted file mode 100644 index 0fa6ef90e0..0000000000 --- a/releases/7_0_21.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.21 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_22.php b/releases/7_0_22.php deleted file mode 100644 index b80b514ef0..0000000000 --- a/releases/7_0_22.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.22 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_23.php b/releases/7_0_23.php deleted file mode 100644 index ff9df4a370..0000000000 --- a/releases/7_0_23.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.23 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_24.php b/releases/7_0_24.php deleted file mode 100644 index baf73b3029..0000000000 --- a/releases/7_0_24.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.24 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_25.php b/releases/7_0_25.php deleted file mode 100644 index 60c621c141..0000000000 --- a/releases/7_0_25.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.25 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_26.php b/releases/7_0_26.php deleted file mode 100644 index 84cde09128..0000000000 --- a/releases/7_0_26.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.0.26 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_27.php b/releases/7_0_27.php deleted file mode 100644 index d76cdf94d2..0000000000 --- a/releases/7_0_27.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.27 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_28.php b/releases/7_0_28.php deleted file mode 100644 index 46cc942b8f..0000000000 --- a/releases/7_0_28.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.28 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_29.php b/releases/7_0_29.php deleted file mode 100644 index 4d235fc464..0000000000 --- a/releases/7_0_29.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.29 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_3.php b/releases/7_0_3.php deleted file mode 100644 index 80ed7fbbef..0000000000 --- a/releases/7_0_3.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.3 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_30.php b/releases/7_0_30.php deleted file mode 100644 index b5b59760a8..0000000000 --- a/releases/7_0_30.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.30 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_31.php b/releases/7_0_31.php deleted file mode 100644 index eedf1d8c8c..0000000000 --- a/releases/7_0_31.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.31 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_32.php b/releases/7_0_32.php deleted file mode 100644 index 0c756a27bc..0000000000 --- a/releases/7_0_32.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.32 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_33.php b/releases/7_0_33.php deleted file mode 100644 index 9bcd72c6b7..0000000000 --- a/releases/7_0_33.php +++ /dev/null @@ -1,26 +0,0 @@ - - -

    PHP 7.0.33 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_4.php b/releases/7_0_4.php deleted file mode 100644 index db41cdc195..0000000000 --- a/releases/7_0_4.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.4 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_5.php b/releases/7_0_5.php deleted file mode 100644 index 26727154b0..0000000000 --- a/releases/7_0_5.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.5 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_6.php b/releases/7_0_6.php deleted file mode 100644 index 6ebe1cc1ff..0000000000 --- a/releases/7_0_6.php +++ /dev/null @@ -1,25 +0,0 @@ - - -

    PHP 7.0.6 Release Announcement

    - -

    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

    -
      -
    • CVE-2016-3078
    • -
    • CVE-2016-3074
    • -
    -

    - 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. -

    - - diff --git a/releases/7_0_7.php b/releases/7_0_7.php deleted file mode 100644 index 937aa325e0..0000000000 --- a/releases/7_0_7.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.7 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_8.php b/releases/7_0_8.php deleted file mode 100644 index ac53e0f20b..0000000000 --- a/releases/7_0_8.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.8 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_0_9.php b/releases/7_0_9.php deleted file mode 100644 index 93bce497c7..0000000000 --- a/releases/7_0_9.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.0.9 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_1_0.php b/releases/7_1_0.php deleted file mode 100644 index a046897cdd..0000000000 --- a/releases/7_1_0.php +++ /dev/null @@ -1,29 +0,0 @@ - - -

    PHP 7.1.0 Release Announcement

    - -

    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

    - - - -

    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!

    - - diff --git a/releases/7_1_1.php b/releases/7_1_1.php deleted file mode 100644 index 43008be431..0000000000 --- a/releases/7_1_1.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.1 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_1_10.php b/releases/7_1_10.php deleted file mode 100644 index 9b73894f6c..0000000000 --- a/releases/7_1_10.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.10 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_11.php b/releases/7_1_11.php deleted file mode 100644 index 1648da6f9b..0000000000 --- a/releases/7_1_11.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.11 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_12.php b/releases/7_1_12.php deleted file mode 100644 index 51307109f0..0000000000 --- a/releases/7_1_12.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.12 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_13.php b/releases/7_1_13.php deleted file mode 100644 index b5f210d37a..0000000000 --- a/releases/7_1_13.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.13 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_14.php b/releases/7_1_14.php deleted file mode 100644 index fa2b419c8c..0000000000 --- a/releases/7_1_14.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.14 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_15.php b/releases/7_1_15.php deleted file mode 100644 index e1c41fa80c..0000000000 --- a/releases/7_1_15.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.15 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_16.php b/releases/7_1_16.php deleted file mode 100644 index 47e7e66e82..0000000000 --- a/releases/7_1_16.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.16 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_17.php b/releases/7_1_17.php deleted file mode 100644 index b2e6c62c1c..0000000000 --- a/releases/7_1_17.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.17 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_18.php b/releases/7_1_18.php deleted file mode 100644 index 6795aa1adf..0000000000 --- a/releases/7_1_18.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.18 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_19.php b/releases/7_1_19.php deleted file mode 100644 index cce61643a1..0000000000 --- a/releases/7_1_19.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.19 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_2.php b/releases/7_1_2.php deleted file mode 100644 index 2c4867e35b..0000000000 --- a/releases/7_1_2.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.2 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_1_20.php b/releases/7_1_20.php deleted file mode 100644 index 0954c3e6cb..0000000000 --- a/releases/7_1_20.php +++ /dev/null @@ -1,22 +0,0 @@ - - -

    PHP 7.1.20 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_21.php b/releases/7_1_21.php deleted file mode 100644 index d4ad64a7c2..0000000000 --- a/releases/7_1_21.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.21 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_22.php b/releases/7_1_22.php deleted file mode 100644 index 2f036df131..0000000000 --- a/releases/7_1_22.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.22 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_23.php b/releases/7_1_23.php deleted file mode 100644 index 177facd0ff..0000000000 --- a/releases/7_1_23.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.1.23 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_1_24.php b/releases/7_1_24.php deleted file mode 100644 index c494ecc463..0000000000 --- a/releases/7_1_24.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.1.24 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_1_25.php b/releases/7_1_25.php deleted file mode 100644 index 09db20d0b1..0000000000 --- a/releases/7_1_25.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.1.25 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_1_26.php b/releases/7_1_26.php deleted file mode 100644 index 704a9db18a..0000000000 --- a/releases/7_1_26.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.26 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_27.php b/releases/7_1_27.php deleted file mode 100644 index 7663c276c5..0000000000 --- a/releases/7_1_27.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.27 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_28.php b/releases/7_1_28.php deleted file mode 100644 index 357628ea78..0000000000 --- a/releases/7_1_28.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.28 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_29.php b/releases/7_1_29.php deleted file mode 100644 index a146a0373c..0000000000 --- a/releases/7_1_29.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.29 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_3.php b/releases/7_1_3.php deleted file mode 100644 index 0fb8b3a7e4..0000000000 --- a/releases/7_1_3.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.3 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_1_30.php b/releases/7_1_30.php deleted file mode 100644 index 5f2341075f..0000000000 --- a/releases/7_1_30.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.30 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_31.php b/releases/7_1_31.php deleted file mode 100644 index 23cfe2ebac..0000000000 --- a/releases/7_1_31.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.31 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_32.php b/releases/7_1_32.php deleted file mode 100644 index f4425d9ef1..0000000000 --- a/releases/7_1_32.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.32 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_33.php b/releases/7_1_33.php deleted file mode 100644 index ac5ad6bbc3..0000000000 --- a/releases/7_1_33.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.1.33 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_4.php b/releases/7_1_4.php deleted file mode 100644 index fb92d88dca..0000000000 --- a/releases/7_1_4.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.4 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_5.php b/releases/7_1_5.php deleted file mode 100644 index 5968ff876e..0000000000 --- a/releases/7_1_5.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.5 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_6.php b/releases/7_1_6.php deleted file mode 100644 index 23252770d0..0000000000 --- a/releases/7_1_6.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.6 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_7.php b/releases/7_1_7.php deleted file mode 100644 index 9e0eb93e02..0000000000 --- a/releases/7_1_7.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.7 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_8.php b/releases/7_1_8.php deleted file mode 100644 index 0fb22a4db7..0000000000 --- a/releases/7_1_8.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.8 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_1_9.php b/releases/7_1_9.php deleted file mode 100644 index 9fcaa91580..0000000000 --- a/releases/7_1_9.php +++ /dev/null @@ -1,21 +0,0 @@ - - -

    PHP 7.1.9 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_2_0.php b/releases/7_2_0.php deleted file mode 100644 index c378fbdf51..0000000000 --- a/releases/7_2_0.php +++ /dev/null @@ -1,34 +0,0 @@ - - -

    PHP 7.2.0 Release Announcement

    - -

    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!

    - - diff --git a/releases/7_2_1.php b/releases/7_2_1.php deleted file mode 100644 index a9ac4ffd95..0000000000 --- a/releases/7_2_1.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.2.1 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_2_10.php b/releases/7_2_10.php deleted file mode 100644 index 42df477ff6..0000000000 --- a/releases/7_2_10.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.10 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_11.php b/releases/7_2_11.php deleted file mode 100644 index f0cafdfa0a..0000000000 --- a/releases/7_2_11.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.11 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_12.php b/releases/7_2_12.php deleted file mode 100644 index 05cadb7ba5..0000000000 --- a/releases/7_2_12.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.12 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_13.php b/releases/7_2_13.php deleted file mode 100644 index c6ea399305..0000000000 --- a/releases/7_2_13.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.13 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_14.php b/releases/7_2_14.php deleted file mode 100644 index 8341405416..0000000000 --- a/releases/7_2_14.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.14 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_15.php b/releases/7_2_15.php deleted file mode 100644 index bd3913dbab..0000000000 --- a/releases/7_2_15.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.15 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_16.php b/releases/7_2_16.php deleted file mode 100644 index 14e31f1f05..0000000000 --- a/releases/7_2_16.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.16 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_17.php b/releases/7_2_17.php deleted file mode 100644 index 55470f66b7..0000000000 --- a/releases/7_2_17.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.17 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_18.php b/releases/7_2_18.php deleted file mode 100644 index 5d5597f048..0000000000 --- a/releases/7_2_18.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.18 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_19.php b/releases/7_2_19.php deleted file mode 100644 index 9e1adfc9fc..0000000000 --- a/releases/7_2_19.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.19 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_2.php b/releases/7_2_2.php deleted file mode 100644 index e920338404..0000000000 --- a/releases/7_2_2.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.2.2 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_2_20.php b/releases/7_2_20.php deleted file mode 100644 index 4f7de6b904..0000000000 --- a/releases/7_2_20.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.20 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_21.php b/releases/7_2_21.php deleted file mode 100644 index 81a8d6dd55..0000000000 --- a/releases/7_2_21.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.21 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_22.php b/releases/7_2_22.php deleted file mode 100644 index 492e4dddd6..0000000000 --- a/releases/7_2_22.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.2.22 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_2_23.php b/releases/7_2_23.php deleted file mode 100644 index edc3f3d42d..0000000000 --- a/releases/7_2_23.php +++ /dev/null @@ -1,17 +0,0 @@ - - -

    PHP 7.2.23 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_2_24.php b/releases/7_2_24.php deleted file mode 100644 index 24e155364e..0000000000 --- a/releases/7_2_24.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.24 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_25.php b/releases/7_2_25.php deleted file mode 100644 index d867457a82..0000000000 --- a/releases/7_2_25.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.2.25 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_2_26.php b/releases/7_2_26.php deleted file mode 100644 index 422047dfab..0000000000 --- a/releases/7_2_26.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.26 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_27.php b/releases/7_2_27.php deleted file mode 100644 index 78d901f7bc..0000000000 --- a/releases/7_2_27.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.27 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_28.php b/releases/7_2_28.php deleted file mode 100644 index d802d289f4..0000000000 --- a/releases/7_2_28.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.28 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_29.php b/releases/7_2_29.php deleted file mode 100644 index c591793764..0000000000 --- a/releases/7_2_29.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.29 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_3.php b/releases/7_2_3.php deleted file mode 100644 index 3409274ab0..0000000000 --- a/releases/7_2_3.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.3 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_30.php b/releases/7_2_30.php deleted file mode 100644 index 3dc7b05897..0000000000 --- a/releases/7_2_30.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.30 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_31.php b/releases/7_2_31.php deleted file mode 100644 index c8f2e8ee95..0000000000 --- a/releases/7_2_31.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.31 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_32.php b/releases/7_2_32.php deleted file mode 100644 index 3be0a8f4d1..0000000000 --- a/releases/7_2_32.php +++ /dev/null @@ -1,30 +0,0 @@ - -

    PHP 7.2.32 Release Announcement

    - -

    - 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. -

    - -

    PHP 7.2.33 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_34.php b/releases/7_2_34.php deleted file mode 100644 index 9d759fb1c2..0000000000 --- a/releases/7_2_34.php +++ /dev/null @@ -1,16 +0,0 @@ - -

    PHP 7.2.34 Release Announcement

    - -

    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. -

    - -

    PHP 7.2.4 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_5.php b/releases/7_2_5.php deleted file mode 100644 index 126ec23a82..0000000000 --- a/releases/7_2_5.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.5 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_6.php b/releases/7_2_6.php deleted file mode 100644 index 3a5062c331..0000000000 --- a/releases/7_2_6.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.6 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_7.php b/releases/7_2_7.php deleted file mode 100644 index 650de04cca..0000000000 --- a/releases/7_2_7.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.7 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_8.php b/releases/7_2_8.php deleted file mode 100644 index 6321957566..0000000000 --- a/releases/7_2_8.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.8 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_2_9.php b/releases/7_2_9.php deleted file mode 100644 index d84cb3bb03..0000000000 --- a/releases/7_2_9.php +++ /dev/null @@ -1,17 +0,0 @@ - -

    PHP 7.2.9 Release Announcement

    - -

    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. -

    - diff --git a/releases/7_3_0.php b/releases/7_3_0.php deleted file mode 100644 index 341880d1f6..0000000000 --- a/releases/7_3_0.php +++ /dev/null @@ -1,34 +0,0 @@ - - -

    PHP 7.3.0 Release Announcement

    - -

    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!

    - - diff --git a/releases/7_3_1.php b/releases/7_3_1.php deleted file mode 100644 index bda9a534c2..0000000000 --- a/releases/7_3_1.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.3.1 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_3_10.php b/releases/7_3_10.php deleted file mode 100644 index fd4ba6fce6..0000000000 --- a/releases/7_3_10.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.10 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_11.php b/releases/7_3_11.php deleted file mode 100644 index 8460d14e62..0000000000 --- a/releases/7_3_11.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.11 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_12.php b/releases/7_3_12.php deleted file mode 100644 index 4b4c5ebe3f..0000000000 --- a/releases/7_3_12.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.12 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_13.php b/releases/7_3_13.php deleted file mode 100644 index bef3efa123..0000000000 --- a/releases/7_3_13.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.13 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_14.php b/releases/7_3_14.php deleted file mode 100644 index 8b5cc6c509..0000000000 --- a/releases/7_3_14.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.14 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_15.php b/releases/7_3_15.php deleted file mode 100644 index 05ae2592e4..0000000000 --- a/releases/7_3_15.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.15 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_16.php b/releases/7_3_16.php deleted file mode 100644 index b440a2fe2a..0000000000 --- a/releases/7_3_16.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.16 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_17.php b/releases/7_3_17.php deleted file mode 100644 index ab1a507cbf..0000000000 --- a/releases/7_3_17.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.17 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_18.php b/releases/7_3_18.php deleted file mode 100644 index 8140f69421..0000000000 --- a/releases/7_3_18.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.18 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_19.php b/releases/7_3_19.php deleted file mode 100644 index 5389c25fed..0000000000 --- a/releases/7_3_19.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.19 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_2.php b/releases/7_3_2.php deleted file mode 100644 index f08fb78755..0000000000 --- a/releases/7_3_2.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.3.2 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_3_20.php b/releases/7_3_20.php deleted file mode 100644 index 9bc7fe0e6d..0000000000 --- a/releases/7_3_20.php +++ /dev/null @@ -1,23 +0,0 @@ - -

    PHP 7.3.20 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.21 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.22 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.23 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.24 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.25 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.26 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.27 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.28 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.29 Release Announcement

    - -

    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. -

    - - -

    PHP 7.3.3 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_30.php b/releases/7_3_30.php deleted file mode 100644 index 9824a78b8b..0000000000 --- a/releases/7_3_30.php +++ /dev/null @@ -1,16 +0,0 @@ - -

    PHP 7.3.30 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.31 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.32 Release Announcement

    - -

    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. -

    - -

    PHP 7.3.33 Release Announcement

    - -

    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. -

    - - -

    PHP 7.3.4 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_5.php b/releases/7_3_5.php deleted file mode 100644 index 86d6337a18..0000000000 --- a/releases/7_3_5.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.5 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_6.php b/releases/7_3_6.php deleted file mode 100644 index 7ba5632df4..0000000000 --- a/releases/7_3_6.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.6 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_7.php b/releases/7_3_7.php deleted file mode 100644 index f69a4cea70..0000000000 --- a/releases/7_3_7.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.7 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_8.php b/releases/7_3_8.php deleted file mode 100644 index c2813e803a..0000000000 --- a/releases/7_3_8.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.8 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_3_9.php b/releases/7_3_9.php deleted file mode 100644 index 4f8af952af..0000000000 --- a/releases/7_3_9.php +++ /dev/null @@ -1,19 +0,0 @@ - - -

    PHP 7.3.9 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_4_0.php b/releases/7_4_0.php deleted file mode 100644 index fa7ef03022..0000000000 --- a/releases/7_4_0.php +++ /dev/null @@ -1,37 +0,0 @@ - -

    PHP 7.4.0 Release Announcement

    - -

    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!

    - - diff --git a/releases/7_4_1.php b/releases/7_4_1.php deleted file mode 100644 index 3c07495df6..0000000000 --- a/releases/7_4_1.php +++ /dev/null @@ -1,20 +0,0 @@ - - -

    PHP 7.4.1 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_4_10.php b/releases/7_4_10.php deleted file mode 100644 index 1797dd20af..0000000000 --- a/releases/7_4_10.php +++ /dev/null @@ -1,16 +0,0 @@ - -

    PHP 7.4.10 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.11 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.12 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.13 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.14 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.15 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.16 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.18 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.19 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.2 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_4_20.php b/releases/7_4_20.php deleted file mode 100644 index eecabb9601..0000000000 --- a/releases/7_4_20.php +++ /dev/null @@ -1,16 +0,0 @@ - -

    PHP 7.4.20 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.21 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.22 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.23 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.24 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.25 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.26 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.27 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.28 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.29 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.3 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_4_30.php b/releases/7_4_30.php deleted file mode 100644 index edb9012276..0000000000 --- a/releases/7_4_30.php +++ /dev/null @@ -1,16 +0,0 @@ - -

    PHP 7.4.30 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.32 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.33 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.4 Release Announcement

    - -

    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. -

    - - - diff --git a/releases/7_4_5.php b/releases/7_4_5.php deleted file mode 100644 index de4b53ba73..0000000000 --- a/releases/7_4_5.php +++ /dev/null @@ -1,18 +0,0 @@ - -

    PHP 7.4.5 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_4_6.php b/releases/7_4_6.php deleted file mode 100644 index a276594960..0000000000 --- a/releases/7_4_6.php +++ /dev/null @@ -1,18 +0,0 @@ - -

    PHP 7.4.6 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_4_7.php b/releases/7_4_7.php deleted file mode 100644 index c6577df801..0000000000 --- a/releases/7_4_7.php +++ /dev/null @@ -1,18 +0,0 @@ - -

    PHP 7.4.7 Release Announcement

    - -

    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. -

    - - diff --git a/releases/7_4_8.php b/releases/7_4_8.php deleted file mode 100644 index f703e6ab59..0000000000 --- a/releases/7_4_8.php +++ /dev/null @@ -1,24 +0,0 @@ - -

    PHP 7.4.8 Release Announcement

    - -

    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. -

    - -

    PHP 7.4.8 Release Announcement

    - -

    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. -

    - php8 -
    -
    - -
    +
    + +
    diff --git a/releases/8.1/release.inc b/releases/8.1/release.inc index 2485d64995..ed12bf8d22 100644 --- a/releases/8.1/release.inc +++ b/releases/8.1/release.inc @@ -28,12 +28,11 @@ common_header(message('common_header', $lang)); -
    -
    - -
    +
    + +
    diff --git a/releases/8.2/release.inc b/releases/8.2/release.inc index 7fbacf9a4b..2fa856ec15 100644 --- a/releases/8.2/release.inc +++ b/releases/8.2/release.inc @@ -25,12 +25,11 @@ common_header(message('common_header', $lang)); -
    -
    - -
    +
    + +
    diff --git a/releases/8.3/release.inc b/releases/8.3/release.inc index 0277ce66d6..a01f06b0d7 100644 --- a/releases/8.3/release.inc +++ b/releases/8.3/release.inc @@ -25,12 +25,11 @@ common_header(message('common_header', $lang)); -
    -
    - -
    +
    + +
    diff --git a/releases/8.4/release.inc b/releases/8.4/release.inc index d83664812c..25353b3a94 100644 --- a/releases/8.4/release.inc +++ b/releases/8.4/release.inc @@ -26,12 +26,10 @@ common_header(message('common_header', $lang)); -
    -
    - -
    + +
    diff --git a/releases/8.5/header.inc b/releases/8.5/header.inc new file mode 100644 index 0000000000..a571bb7669 --- /dev/null +++ b/releases/8.5/header.inc @@ -0,0 +1,24 @@ + +
    + logoUrl) { ?> + Logo for PHP <?= safe($version->label) ?> + + +
    + +
    +
    +
    +
    + diff --git a/releases/8_0_0.php b/releases/8_0_0.php deleted file mode 100644 index ae6b66388e..0000000000 --- a/releases/8_0_0.php +++ /dev/null @@ -1,35 +0,0 @@ - -

    PHP 8.0.0 Release Announcement

    - -

    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:

    -
      -
    • Union Types
    • -
    • Named Arguments
    • -
    • Match Expressions
    • -
    • Attributes
    • -
    • Constructor Property Promotion
    • -
    • Nullsafe Operator
    • -
    • Weak Maps
    • -
    • Just In Time Compilation
    • -
    • And much much more...
    • -
    - -

    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!

    - - -

    PHP 8.0.1 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.10 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.11 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.12 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.13 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.14 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.15 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.16 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.17 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.18 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.19 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.2 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.20 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.21 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.22 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.23 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.24 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.25 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.26 Release Announcement

    - -

    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.

    - -

    PHP 8.0.27 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.28 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.29 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.3 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.30 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.5 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.6 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.7 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.8 Release Announcement

    - -

    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. -

    - -

    PHP 8.0.9 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.0 Release Announcement

    - -

    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!

    - - -

    PHP 8.1.1 Release Announcement

    - -

    The PHP development team announces the immediate availability of PHP 8.1.1. This is a bug fix release.

    - -

    All PHP 8.1 users are encouraged to upgrade to this version.

    - -

    For source downloads of PHP 8.1.1 please visit our downloads page, -Windows source and binaries can be found on windows.php.net/download/. -The list of changes is recorded in the ChangeLog. -

    - -

    PHP 8.1.10 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.11 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.12 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.13 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.14 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.15 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.16 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.17 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.18 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.19 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.2 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.20 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.21 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.22 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.23 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.24 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.25 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.26 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.27 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.28 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.29 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.3 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.30 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.31 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.32 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.33 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.34 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.4 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.5 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.6 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.7 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.8 Release Announcement

    - -

    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. -

    - -

    PHP 8.1.9 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.0 Release Announcement

    - -

    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!

    - - -

    PHP 8.2.1 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.10 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.11 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.12 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.13 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.14 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.15 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.16 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.17 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.18 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.19 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.2 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.20 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.21 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.22 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.23 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.24 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.25 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.26 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.27 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.28 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.29 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.3 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.30 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.31 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.4 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.5 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.6 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.7 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.8 Release Announcement

    - -

    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. -

    - -

    PHP 8.2.9 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.0 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.1 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.10 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.11 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.12 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.13 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.14 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.15 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.16 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.17 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.19 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.2 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.20 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.21 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.22 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.23 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.24 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.25 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.26 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.27 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.28 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.29 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.3 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.30 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.31 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.4 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.6 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.7 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.8 Release Announcement

    - -

    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. -

    - -

    PHP 8.3.9 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.1 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.10 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.11 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.12 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.13 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.14 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.15 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.16 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.17 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.18 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.19 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.2 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.20 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.21 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.22 Release Announcement

    - -

    The PHP development team announces the immediate availability of PHP 8.4.22. 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.22 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -

    - -

    PHP 8.4.3 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.4 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.5 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.6 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.7 Release Announcement

    - -

    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. -

    - -

    PHP 8.4.8 Release Announcement

    - -

    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. -

    - -

    PHP 8.5.0 Release Announcement

    - -

    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:

    -
      -
    • New "URI" extension
    • -
    • New pipe operator (|>)
    • -
    • Clone With
    • -
    • New #[\NoDiscard] attribute
    • -
    • Support for closures, casts, and first class callables in constant expressions
    • -
    • And much much more...
    • -
    -

    - 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!

    - - -

    PHP 8.5.1 Release Announcement

    - -

    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. -

    - -

    PHP 8.5.2 Release Announcement

    - -

    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. -

    - -

    PHP 8.5.3 Release Announcement

    - -

    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. -

    - -

    PHP 8.5.4 Release Announcement

    - -

    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. -

    - -

    PHP 8.5.5 Release Announcement

    - -

    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. -

    - -

    PHP 8.5.6 Release Announcement

    - -

    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. -

    - -

    PHP 8.5.7 Release Announcement

    - -

    The PHP development team announces the immediate availability of PHP 8.5.7. 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.7 please visit our downloads page, -Windows source and binaries can also be found there. -The list of changes is recorded in the ChangeLog. -

    -latestRelease !== null); + + $payload[$version->majorVersion][$version->label] = $version->latestRelease->classicData; +} + +echo json_encode($payload); diff --git a/releases/branches.php b/releases/branches.php index 952063c803..f340d62b92 100644 --- a/releases/branches.php +++ b/releases/branches.php @@ -1,30 +1,22 @@ format('c') : null; -} +include_once __DIR__ . '/../include/prepend.inc'; $current = []; -foreach (get_all_branches() as $major => $releases) { - foreach ($releases as $branch => $release) { - $current[$branch] = [ - 'branch' => $branch, - 'latest' => ($release['version'] ?? null), - 'state' => get_branch_support_state($branch), - 'initial_release' => formatDate(get_branch_release_date($branch)), - 'active_support_end' => formatDate(get_branch_bug_eol_date($branch)), - 'security_support_end' => formatDate(get_branch_security_eol_date($branch)), - ]; - } +foreach (VersionData::sort(VersionData::all(), 'desc') as $release) { + $current[] = [ + 'branch' => $release->label, + 'latest' => $release->latestRelease?->label, + 'state' => $release->supportState->value, + 'initial_release' => $release->releaseDate?->format('c'), + 'active_support_end' => $release->bugfixEOL?->format('c'), + 'security_support_end' => $release->securityEOL?->format('c'), + ]; } -// Sorting should already be correct based on return of get_all_branches(), -// but enforce it here anyway, just to be nice. usort($current, fn($a, $b) => version_compare($b['branch'], $a['branch'])); +header('Content-Type: application/json; charset=UTF-8'); echo json_encode($current); diff --git a/releases/feed.php b/releases/feed.php index ca965a2291..233e9d6d27 100644 --- a/releases/feed.php +++ b/releases/feed.php @@ -22,7 +22,7 @@ ob_start(); // Flatten major versions out of RELEASES. -$RELEASED_VERSIONS = array_reduce($RELEASES, 'array_merge', []); +$RELEASED_VERSIONS = array_reduce(get_releases(), 'array_merge', []); $FEED_UPDATED = 0; krsort($RELEASED_VERSIONS); foreach ($RELEASED_VERSIONS as $version => $release) { diff --git a/releases/index.php b/releases/index.php index 6276162a5a..d4f8892766 100644 --- a/releases/index.php +++ b/releases/index.php @@ -1,66 +1,62 @@ > $versionsByMajor */ + $versionsByMajor = []; - $supportedVersions = []; - foreach (get_active_branches(false) as $major => $releases) { - $supportedVersions[$major] = array_keys($releases); - } + /** @var array> $supportedByMajor */ + $supportedByMajor = []; - if (isset($_GET["version"])) { - $versionArray = version_array($_GET["version"]); - $ver = $versionArray[0]; - - if (isset($RELEASES[$ver])) { - $combinedReleases = array_replace_recursive($RELEASES, $OLDRELEASES); - - $max = (int) ($_GET['max'] ?? 1); - if ($max == -1) { - $max = PHP_INT_MAX; - } - - $count = 0; - foreach ($combinedReleases[$ver] as $version => $release) { - if ($max <= $count) { - break; - } - - if (compare_version($versionArray, $version) == 0) { - if (!isset($_GET['max'])) { - $release['supported_versions'] = $supportedVersions[$ver] ?? []; - } - $machineReadable[$version] = $release; - $count++; - } - } - - if (!isset($_GET['max']) && !empty($machineReadable)) { - $version = key($machineReadable); - $machineReadable = current($machineReadable); - $machineReadable["version"] = $version; - } + foreach ($allSupported as $version) { + if ($filterMajor !== null && $version->majorVersion !== $filterMajor) { + continue; } - if (empty($machineReadable)) { - $machineReadable = ["error" => "Unknown version"]; + $versionsByMajor[$version->majorVersion][] = $version; + if ($version->isSupported) { + /* these are only used for a supported_versions key */ + $supportedByMajor[$version->majorVersion][] = $version->label; } - } else { - foreach ($RELEASES as $major => $release) { - $version = key($release); - $r = current($release); - $r["version"] = $version; - $r['supported_versions'] = $supportedVersions[$major] ?? []; - $machineReadable[$major] = $r; + } + + $results = []; + foreach ($versionsByMajor as $majorId => $versions) { + $latestRelease = array_last(VersionData::sort($versions, 'desc'))?->latestRelease; + if (!$latestRelease) { + continue; } + + $latestData = $latestRelease->classicData; + $latestData['supported_versions'] = $supportedByMajor[$majorId] ?? []; + $results[$majorId] = $latestData; + } + + return $results; +}; + +if (isset($_GET["serialize"]) || isset($_GET["json"])) { + $majorFilterQuery = $_GET["version"] ?? null; + $majorFilter = null; + if (is_string($majorFilterQuery) && is_numeric($majorFilterQuery)) { + $majorFilter = (int)$majorFilterQuery; } + $machineReadable = $getSerializedVersions($majorFilter); + if (isset($_GET["serialize"])) { header('Content-type: text/plain'); echo serialize($machineReadable); @@ -68,6 +64,7 @@ header('Content-Type: application/json'); echo json_encode($machineReadable); } + return; } @@ -77,6 +74,40 @@ 'css' => '/styles/releases.css', ]); +$activeVersions = VersionData::getSupportedVersions(); +$allVersions = VersionData::all(); + +?> +

    Releases

    +
    + +
    + + +latestRelease; + ?> +

    label) ?>

    + + releases) as $release) { ?> + + + + + +
    label) ?>date ? safe($release->date->format('Y-m-d')) : '' ?>
    + Unsupported Historical Releases\n\n"; echo "

    We have collected all the official information and code available for @@ -86,31 +117,32 @@ they are no longer supported.

    \n"; -$active_majors = array_keys($RELEASES); -$latest = max($active_majors); -foreach ($OLDRELEASES as $major => $a) { - echo ''; - if (!in_array($major, $active_majors, false)) { - echo "\n
    \n"; - echo "

    Support for PHP $major has been discontinued "; - echo "since " . current($a)['date'] . '. '; - echo "Please consider upgrading to $latest.

    \n"; + +$recentEOLHtml = (function() { + $recentEOL = []; + foreach (VersionData::all() as $version) { + if ($version->supportState !== SupportState::Eol || !$version->bugfixEOL) { + continue; + } + + $recentEOL[] = $version; } - $i = 0; - foreach ($a as $ver => $release) { - $i++; - mk_rel( - $major, - $ver, - $release["date"], - $release["announcement"] ?? false, - $release["source"] ?? [], - $release["windows"] ?? [], - $release["museum"] ?? ($i >= 3), - ); + usort( + $recentEOL, + fn(VersionData $a, VersionData $b) => $b->bugfixEOL->getTimestamp() - $a->bugfixEOL->getTimestamp(), + ); + + $recentEOL = array_slice($recentEOL, 0, 3); + + $html = []; + foreach ($recentEOL as $version) { + $html[] = '
  • ' . safe($version->label . ' - ' . $version->securityEOL->format('Y-m-d')) . '
  • '; } -} + + return implode("\n", $html); +})(); + site_footer(['sidebar' => '
    @@ -121,11 +153,15 @@
    +
    End of Life Dates

    The most recent branches to reach end of life status are:

    -
      ' . recentEOLBranchesHTML() . '
    +
      ' . $recentEOLHtml . '
    +
      + +
    @@ -165,88 +201,3 @@ ', ]); - -function recentEOLBranchesHTML(): string { - $eol = []; - foreach (get_eol_branches() as $branches) { - foreach ($branches as $branch => $detail) { - $detail_date = $detail['date']; - while (isset($eol[$detail_date])) $detail_date++; - $eol[$detail_date] = sprintf('
  • %s: %s
  • ', $branch, date('j M Y', $detail_date)); - } - } - krsort($eol); - return implode('', array_slice($eol, 0, 2)); -} - -/** - * @param bool|array $announcement - */ -function mk_rel(int $major, - string $ver, - string $date, - $announcement, - array $source, - array $windows, - bool $museum): void { - printf("\n

    %1\$s

    \n
      \n
    • Released: %s
    • \n
    • Announcement: ", - ($pos = strpos($ver, " ")) ? substr($ver, 0, $pos) : $ver, - $date); - - if ($announcement) { - if (is_array($announcement)) { - foreach ($announcement as $ann => $url) { - echo "$ann "; - } - } else { - $url = str_replace(".", "_", $ver); - echo "English"; - } - } else { - echo "None"; - } - echo "
    • \n"; - - if ($major > 3) { - echo "
    • ChangeLog
    • "; - } - echo "\n
    • \n Download:\n"; - echo "
        \n"; - - if (!$museum) { - foreach (array_merge($source, $windows) as $src) { - echo "
      • \n"; - if (isset($src['filename'])) { - download_link($src["filename"], $src["name"]); echo "
        \n"; - $linebreak = ''; - foreach (['md5', 'sha256'] as $cs) { - if (isset($src[$cs])) { - echo $linebreak; - echo "{$cs}: {$src[$cs]}\n"; - $linebreak = "
        "; - } - } - } else { - echo "{$src['name']}"; - } - echo "
      • \n"; - } - - } else { /* $museum */ - foreach ($source as $src) { - if (!isset($src["filename"])) { - continue; - } - printf('
      • %s
      • ', - $major, $src["filename"], $src["name"]); - } - foreach ($windows as $src) { - printf('
      • %s
      • ', - ($major == 5 ? "php5" : "win32"), $src["filename"], $src["name"]); - } - } - - echo "
      \n"; - echo "
    • \n"; - echo "
    \n"; -} diff --git a/releases/states.php b/releases/states.php index 3622b07399..1f05ade396 100644 --- a/releases/states.php +++ b/releases/states.php @@ -3,32 +3,22 @@ # Please use /releases/branches.php instead. # This API *may* be removed at an indeterminate point in the future. -$_SERVER['BASE_PAGE'] = 'releases/active.php'; +use phpweb\Releases\VersionData; +$_SERVER['BASE_PAGE'] = 'releases/active.php'; include_once __DIR__ . '/../include/prepend.inc'; -include_once $_SERVER['DOCUMENT_ROOT'] . '/include/branches.inc'; header('Content-Type: application/json; charset=UTF-8'); $states = []; -function formatDate($date = null) { - return $date !== null ? $date->format('c') : null; +foreach (VersionData::all() as $release) { + $states[$release->majorVersion][$release->label] = [ + 'state' => $release->supportState->value, + 'initial_release' => $release->releaseDate?->format('c'), + 'active_support_end' => $release->bugfixEOL?->format('c'), + 'security_support_end' => $release->securityEOL?->format('c'), + ]; } -foreach (get_all_branches() as $major => $releases) { - $states[$major] = []; - foreach ($releases as $branch => $release) { - $states[$major][$branch] = [ - 'state' => get_branch_support_state($branch), - 'initial_release' => formatDate(get_branch_release_date($branch)), - 'active_support_end' => formatDate(get_branch_bug_eol_date($branch)), - 'security_support_end' => formatDate(get_branch_security_eol_date($branch)), - ]; - } - krsort($states[$major]); -} - -krsort($states); - echo json_encode($states); diff --git a/releases/template.inc b/releases/template.inc new file mode 100644 index 0000000000..062edab9fb --- /dev/null +++ b/releases/template.inc @@ -0,0 +1,97 @@ +parent; + $latestPointRelease = $featureRelease->latestRelease; + + ob_start(); + ?> +
    +
    PHP label) ?> Releases
    +
    +
    + + Indicates security patches +
    + +
      + releases) as $navRelease) { ?> +
    • + + label) ?> + + isSecurity) { ?> + + + + label === $pointRelease->label) { ?> (Viewing) +
    • + +
    +
    +
    + label . ' Release Announcement', +// ['header' => PageTheme::buildVersionHeader($featureRelease, title: 'PHP ' . $pointRelease->label, subtitle: 'Release Announcement')] + ); + if ($latestPointRelease && version_compare($pointRelease->label, $latestPointRelease->label)) { + ?> +
    +
    This Release is Outdated
    +

    + The latest release of PHP label) ?> is PHP + + label) ?> + . + + It is recommended to upgrade to the latest release. +

    +
    + announcementsByLanguage as $lang => $contents) { + echo $contents; + } + ?> +

    Source Code

    +
      + sources as $source) { ?> +
    • + name) ?> +
      + hashes as $hashType => $hashValue) { ?> +
      :
      + +
      +
    • + +
    + +

    Change Log

    +
      + changedModules as $module) { ?> +
    • +
      name) ?>
      +
        + changes as $change) { ?> +
      • message) ?>
      • + +
      +
    • + +
    + $sidebar]); +} diff --git a/sandbox/boot.inc b/sandbox/boot.inc new file mode 100644 index 0000000000..5a17b78e52 --- /dev/null +++ b/sandbox/boot.inc @@ -0,0 +1,112 @@ + */ + public array $error_logs = []; + + public static function shared(): self + { + return self::$gs ??= new self(); + } + + public function __construct() + { + set_error_handler(function (int $errno, string $errstr, string $errfile, int $errline) { + $this->error_logs[] = [ + 'errno' => $errno, + 'message' => $errstr, + 'file' => $errfile, + 'line' => $errline, + ]; + }); + } + + public function formatException(Throwable $e): array + { + $stack = [[ + 'file' => $e->getFile(), + 'line' => $e->getLine(), + ]]; + + foreach ($e->getTrace() as $trace) { + $where = []; + + if (isset($trace['class'])) { + $where[] = $trace['class']; + } + + if (isset($trace['function'])) { + $where[] = $trace['function']; + } + + + $stack[] = [ + 'file' => $trace['file'], + 'line' => (int)$trace['line'], + ]; + + $stack[count($stack) - 2]['where'] = implode('->', $where); + } + + /** @var array> $fileLineCache */ + $fileLineCache = []; + foreach ($stack as $idx => $item) { + if (!$item['file'] || !file_exists($item['file'])) { + $stack[$idx]['snippet'] = null; + continue; + } + + $lines = $fileLineCache[$item['file']] ??= explode("\n", file_get_contents($item['file'])); + $stack[$idx]['snippet'] = trim($lines[(int)$item['line'] - 1] ?? ''); + } + + return [ + 'message' => $e->getMessage(), + 'stack' => $stack, + 'previous' => $e->getPrevious() ? $this->formatException($e->getPrevious()) : null, + ]; + } + + public function run() + { + $result = [ + 'response_type' => 'text/plain', + ]; + + $this->error_logs = []; + $output = null; + $result = null; + $path = 'success'; + + try { + ob_start(); + require "./entry.php"; + $result['mode'] = 'success'; + $result['buffer'] = ob_get_clean(); + } catch (Throwable $e) { + $result['mode'] = 'success'; + $result['exception'] = $this->formatException($e); + $result['buffer'] = (string)$e; + ob_get_clean(); + } + + $result['errors'] = $this->error_logs; + + echo json_encode($result); + } +} + +GlobalSandbox::shared()->run(); + + + diff --git a/sandbox/code-upgrades.php b/sandbox/code-upgrades.php new file mode 100644 index 0000000000..1d93082205 --- /dev/null +++ b/sandbox/code-upgrades.php @@ -0,0 +1,68 @@ + ['theme-gst.css'], 'include_section' => false]); + +?> + +
    +
    + $releaseExample) { ?> +

    +
    + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + +
    +
    + +
    +
    +
    + +
    + +
    +
    + false]); diff --git a/sandbox/example.txt b/sandbox/example.txt new file mode 100644 index 0000000000..07d684c257 --- /dev/null +++ b/sandbox/example.txt @@ -0,0 +1,37 @@ + + +
    +
    PHP Sandbox
    +
    +
    +
    +
    Editor
    +
    + +
    +
    + +
    +
    +
    +
    Output
    +
    +
    +
    +
    +
    An Exception Occurred
    +
    +
    + +
    +
    Stack Trace
    +
    The stack trace shows the path the code took before it encountered the error. The last code to execute is at the top.
    + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    Debug
    +
    +
    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    + + + + 'Chinese (Simplified)', ]; + public const ACTIVE_ONLINE_LANGUAGES_EX = [ + 'en' => [ + 'label_en' => 'English', + 'label_loc' => 'English', + 'icon' => '/images/language-flags/en.webp', + ], + 'de' => [ + 'label_en' => 'German', + 'label_loc' => 'Deutsch', + 'icon' => '/images/language-flags/de.png', + ], + 'es' => [ + 'label_en' => 'Spanish', + 'label_loc' => 'Español', + 'icon' => '/images/language-flags/es.png', + ], + 'fr' => [ + 'label_en' => 'French', + 'label_loc' => 'Français', + 'icon' => '/images/language-flags/fr.png', + ], + 'it' => [ + 'label_en' => 'Italian', + 'label_loc' => 'Italiano', + 'icon' => '/images/language-flags/it.png', + ], + 'ja' => [ + 'label_en' => 'Japanese', + 'label_loc' => '日本語', + 'icon' => '/images/language-flags/ja.png', + ], + 'pt_BR' => [ + 'label_en' => 'Brazilian Portuguese', + 'label_loc' => 'Português (Brasil)', + 'icon' => '/images/language-flags/br.png', + ], + 'ru' => [ + 'label_en' => 'Russian', + 'label_loc' => 'Русский', + 'icon' => '/images/language-flags/ru.png', + ], + 'tr' => [ + 'label_en' => 'Turkish', + 'label_loc' => 'Türkçe', + 'icon' => '/images/language-flags/tr.png', + ], + 'uk' => [ + 'label_en' => 'Ukrainian', + 'label_loc' => 'Українська', + 'icon' => '/images/language-flags/uk.webp', + ], + 'zh' => [ + 'label_en' => 'Chinese (Simplified)', + 'label_loc' => '简体中文', + 'icon' => '/images/language-flags/zh.webp', + ], + ]; + /** * Convert between language codes back and forth * diff --git a/src/LangChooser.php b/src/LangChooser.php index f889e14225..d47bdca677 100644 --- a/src/LangChooser.php +++ b/src/LangChooser.php @@ -24,6 +24,7 @@ public function __construct( } /** + * @param string|null|mixed[] $langParam - Mixed is because it pulls in from $REQUEST which could have nested array * @return array{string, string} */ public function chooseCode( diff --git a/src/Navigation/NavCardItem.php b/src/Navigation/NavCardItem.php new file mode 100644 index 0000000000..22beef36dd --- /dev/null +++ b/src/Navigation/NavCardItem.php @@ -0,0 +1,16 @@ + */ + protected array $categories = []; - protected $conf_time = 0; + protected int $conf_time = 0; - protected $image = []; + /** @var array{path?:string, title?:string, link?:string|null} */ + protected array $image = []; - protected $content = ''; + protected string $content = ''; - protected $id = ''; + protected string $id = ''; - public function setTitle(string $title): self { + protected string $summary = ''; + + public function setTitle(string $title): self + { $this->title = $title; + return $this; } - public function setCategories(array $cats): self { + /** + * @param list $cats + */ + public function setCategories(array $cats): self + { foreach ($cats as $cat) { if (!isset(self::CATEGORIES[$cat])) { throw new \Exception("Unknown category: $cat"); } } $this->categories = $cats; + return $this; } - public function addCategory(string $cat): self { + public function addCategory(string $cat): self + { if (!isset(self::CATEGORIES[$cat])) { throw new \Exception("Unknown category: $cat"); } if (!in_array($cat, $this->categories, false)) { $this->categories[] = $cat; } + return $this; } - public function isConference(): bool { + public function isConference(): bool + { return (bool)array_intersect($this->categories, ['cfp', 'conferences']); } - public function setConfTime(int $time): self { + public function setConfTime(int $time): self + { $this->conf_time = $time; + return $this; } - public function setImage(string $path, string $title, ?string $link): self { + public function setImage(string $path, string $title, ?string $link): self + { if (basename($path) !== $path) { throw new \Exception('path must be a simple file name under ' . self::IMAGE_PATH_REL); } + if (!file_exists(self::IMAGE_PATH_ABS . $path)) { throw new \Exception('Image not found at web-php/' . self::IMAGE_PATH_REL . $path); } + $this->image = [ 'path' => $path, 'title' => $title, 'link' => $link, ]; + return $this; } - public function setContent(string $content): self { + public function setContent(string $content): self + { if (empty($content)) { throw new \Exception('Content must not be empty'); } $this->content = $content; + + return $this; + } + + public function setSummary(string $content): self + { + if (empty($content)) { + throw new \Exception('Summary must not be empty'); + } + $this->summary = $content; + return $this; } - public function getId(): string { + public function getId(): string + { return $this->id; } - public function save(): self { + public function save(): self + { if (empty($this->id)) { $this->id = self::selectNextId(); } @@ -119,11 +149,19 @@ public function save(): self { self::ce($dom, "id", $archive, [], $item); self::ce($dom, "published", date(DATE_ATOM), [], $item); self::ce($dom, "updated", date(DATE_ATOM), [], $item); - self::ce($dom, "link", null, ['href' => "{$href}#{$this->id}", "rel" => "alternate", "type" => "text/html"], $item); + self::ce( + $dom, + "link", + null, + ['href' => "{$href}#{$this->id}", "rel" => "alternate", "type" => "text/html"], + $item + ); self::ce($dom, "link", null, ['href' => $link, 'rel' => 'via', 'type' => 'text/html'], $item); if (!empty($this->conf_time)) { - $item->appendChild($dom->createElementNs("http://php.net/ns/news", "finalTeaserDate", date("Y-m-d", $this->conf_time))); + $item->appendChild( + $dom->createElementNs("http://php.net/ns/news", "finalTeaserDate", date("Y-m-d", $this->conf_time)) + ); } foreach ($this->categories as $cat) { @@ -131,13 +169,20 @@ public function save(): self { } if ($this->image['path'] ?? '') { - $image = $item->appendChild($dom->createElementNs("http://php.net/ns/news", "newsImage", $this->image['path'])); - $image->setAttribute("link", $this->image['link']); - $image->setAttribute("title", $this->image['title']); + $image = $item->appendChild( + $dom->createElementNs("http://php.net/ns/news", "newsImage", $this->image['path']) + ); + + $image->setAttribute("link", $this->image['link'] ?? ''); + $image->setAttribute("title", $this->image['title'] ?? ''); } $content = self::ce($dom, "content", null, [], $item); + if ($this->summary !== '') { + self::ce($dom, "summary", $this->summary, [], $item); + } + // Slurp content into our DOM. $tdoc = new \DOMDocument("1.0", "utf-8"); $tdoc->formatOutput = true; @@ -145,6 +190,8 @@ public function save(): self { $content->setAttribute("type", "xhtml"); $div = $content->appendChild($dom->createElement("div")); $div->setAttribute("xmlns", "http://www.w3.org/1999/xhtml"); + + assert($tdoc->firstChild instanceof DOMNode); foreach ($tdoc->firstChild->childNodes as $node) { $div->appendChild($dom->importNode($node, true)); } @@ -160,7 +207,8 @@ public function save(): self { return $this; } - public function updateArchiveXML(): self { + public function updateArchiveXML(): self + { if (empty($this->id)) { throw new \Exception('Entry must be saved before updating archive XML'); } @@ -174,13 +222,16 @@ public function updateArchiveXML(): self { $first->setAttribute("href", "entries/{$this->id}.xml"); $second = $arch->getElementsByTagNameNs("http://www.w3.org/2001/XInclude", "include")->item(0); + + assert($arch->documentElement instanceof DOMElement); $arch->documentElement->insertBefore($first, $second); $arch->save(self::ARCHIVE_FILE_ABS); return $this; } - private static function selectNextId(): string { + private static function selectNextId(): string + { $filename = date("Y-m-d", $_SERVER["REQUEST_TIME"]); $count = 0; do { @@ -192,18 +243,26 @@ private static function selectNextId(): string { return $id; } - private static function ce(\DOMDocument $d, string $name, $value, array $attrs = [], ?\DOMNode $to = null) { + /** + * @param array $attrs + */ + private static function ce(\DOMDocument $d, string $name, mixed $value, array $attrs = [], ?\DOMNode $to = null): DOMElement + { if ($value) { $n = $d->createElement($name, $value); } else { $n = $d->createElement($name); } + + assert($n instanceof DOMElement); + foreach ($attrs as $k => $v) { $n->setAttribute($k, $v); } if ($to) { return $to->appendChild($n); } + return $n; } } diff --git a/src/News/NewsHandler.php b/src/News/NewsHandler.php index a7e97f766e..df6aa47a21 100644 --- a/src/News/NewsHandler.php +++ b/src/News/NewsHandler.php @@ -10,10 +10,32 @@ use function array_values; use function is_array; +/** + * @phpstan-type NewsDataStruct array{ + * title: string, + * id: string, + * published: string, + * updated: string, + * link: list, + * category: list, + * content: string, + * intro?: string + * } + */ final class NewsHandler { private const MAX_FRONT_PAGE_NEWS = 25; + /** + * @return NewsDataStruct|null + */ public function getLastestNews(): array|null { $news = $this->getPregeneratedNews(); @@ -24,8 +46,14 @@ public function getLastestNews(): array|null return $news[0]; } - /** @return list */ - public function getFrontPageNews(): array + /** + * Unused - Looks up generated news with frontpage tags. + * + * Currently unused as the front page no longer displays news. + * + * @return list + */ + public function getFrontPageNews(int $limit = self::MAX_FRONT_PAGE_NEWS): array { $frontPage = []; foreach ($this->getPregeneratedNews() as $entry) { @@ -35,7 +63,7 @@ public function getFrontPageNews(): array } $frontPage[] = $entry; - if (count($frontPage) >= self::MAX_FRONT_PAGE_NEWS) { + if (count($frontPage) >= $limit) { break 2; } } @@ -44,7 +72,9 @@ public function getFrontPageNews(): array return $frontPage; } - /** @return list */ + /** + * @return list + */ public function getConferences(): array { $conferences = []; @@ -62,7 +92,9 @@ public function getConferences(): array return $conferences; } - /** @return list */ + /** + * @return list + */ public function getNewsByYear(int $year): array { return array_values(array_filter( @@ -71,11 +103,15 @@ public function getNewsByYear(int $year): array )); } + /** + * @return list + */ public function getPregeneratedNews(): array { $NEWS_ENTRIES = null; include __DIR__ . '/../../include/pregen-news.inc'; + /** @phpstan-ignore-next-line - pregen-news sets global variable */ return is_array($NEWS_ENTRIES) ? $NEWS_ENTRIES : []; } } diff --git a/src/ProjectGlobals.php b/src/ProjectGlobals.php new file mode 100644 index 0000000000..2218ac92cc --- /dev/null +++ b/src/ProjectGlobals.php @@ -0,0 +1,55 @@ + $release) { + $allowedFiles[] = $saveTo = $releasesDocsPath + . '/' . str_replace('.', '_', $releaseId) . '.php'; + + FS::writeContentsIfChanged( + $saveTo, + str_replace('{{version}}', $releaseId, $originalTemplate), + ); + } + } + + /* + * If for some reason a release that previously existed but was since withdrawn + * created a file on prod, it will now be removed. + */ + + /** @var SplFileInfo $file */ + foreach (new GlobIterator($releasesDocsPath . '/*.php') as $file) { + if (!preg_match(self::FILE_PATTERN, $file->getFilename())) { + continue; + } + + if (!in_array($file->getPathname(), $allowedFiles, true)) { + unlink($file->getPathname()); + } + } + } + + public static function clean(): void + { + foreach (new GlobIterator(ProjectGlobals::getProjectRoot() . '/releases' . '/*.php') as $file) { + assert($file instanceof SplFileInfo); + if (preg_match(self::FILE_PATTERN, $file->getFilename())) { + unlink($file->getPathname()); + } + } + } +} diff --git a/src/Releases/Build/release-template.txt b/src/Releases/Build/release-template.txt new file mode 100644 index 0000000000..0987d96595 --- /dev/null +++ b/src/Releases/Build/release-template.txt @@ -0,0 +1,5 @@ +> + */ +final class ChangeLogDataLoader +{ + public static function build(): void + { + foreach (ReleaseRawDataLoader::readReleaseDataDirectoriesFromDisk() as $releases) { + foreach ($releases as $releaseId => $releasePath) { + $path = ProjectGlobals::getDataPathForRelease($releaseId) . '/changes.txt'; + if (!file_exists($path)) { + continue; + } + + VarCache::WriteVar( + self::makeCacheKey($releaseId), + self::parseNewsForModuleChanges(FS::readContents($path)) + ); + } + } + } + + private static function makeCacheKey(string $releaseId): string + { + return 'releases/' . $releaseId . '/changelist'; + } + + /** + * @param string $releaseId + * @return BlockParseResult + */ + public static function getChangesForRelease(string $releaseId): array + { + return VarCache::ReadVarWithDefault(self::makeCacheKey($releaseId), []); + } + + /** + * NEWS files may contain news from multiple different releases. + * This function parses it out, separated by version headers + * + * @return array + */ + public static function parseNewsFileToReleaseSections(string $content): array + { + $articles = []; + $currentVersion = null; + + foreach (explode("\n", str_replace("\r\n", "\n", $content)) as $line) { + // Simple check: Does the line contain a date followed by a version? + // e.g., "11 Jul 2019, 7.1.31" + if (preg_match('/^\d{1,2}\s+[A-Za-z]+\s+\d{4},\s+PHP ([\d\.]+)$/', trim($line), $matches)) { + // We found a new header! Extract the version number + $currentVersion = $matches[1]; + $articles[$currentVersion] = ""; // Initialize the array slot + } else if (preg_match('/^\?\? \?\?\? \?\?\?\?,\s+PHP ([\d\.]+)$/', trim($line), $matches)) { + // We found a new header! Extract the version number + $currentVersion = $matches[1]; + $articles[$currentVersion] = ""; // Initialize the array slot + } else { + // It's a regular content line. If we are inside an article, append it. + if ($currentVersion !== null) { + // If it's not the first line of content, add a newline back + if ($articles[$currentVersion] !== "") { + $articles[$currentVersion] .= "\n"; + } + $articles[$currentVersion] .= $line; + } + } + } + + return $articles; + } + + /** + * Parses a SPECIFIC BLOCK of a NEWS file into its corresponding line items. + * + * @return BlockParseResult + */ + static function parseNewsForModuleChanges(string $content): array + { + // Standardize line endings and split + $lines = explode("\n", str_replace("\r", "", $content)); + + /** @var BlockParseResult $parsed */ + $parsed = []; + + $currentModule = null; + $currentMessage = null; + + // Helper closure to save a parsed message into the array + $commitMessage = function () use (&$parsed, &$currentModule, &$currentMessage): void { + /* @phpstan-ignore-next-line */ + if ($currentModule !== null && $currentMessage !== null) { + $parsed[$currentModule][] = self::parseChangeLineToArray(trim($currentMessage)); + $currentMessage = null; + } + }; + + foreach ($lines as $line) { + // Normalize unicode spaces (e.g., non-breaking spaces) to standard spaces + $normalizedLine = preg_replace('/[\pZ\pC]+/u', ' ', $line); + + if ($normalizedLine === null) { + continue; + } + + $trimmedLine = trim($normalizedLine); + + // 2. Match Module header (e.g., "- CLI:" or "- Opcache:") + if (preg_match('/^\-\s+([^:]+):/', $normalizedLine, $matches)) { + $commitMessage(); + $currentModule = strtolower(trim($matches[1])); + continue; + } + + // 3. Match new message start (e.g., " . Fixed bug GH-22004...") + if (preg_match('/^\s*[.|-]\s+(.+)/', $normalizedLine, $matches)) { + $commitMessage(); + $currentMessage = $matches[1]; + continue; + } + + // 4. Handle empty lines or purely decorative file headers + if ($trimmedLine === '' || str_starts_with($trimmedLine, '|||')) { + $commitMessage(); + continue; + } + + // 5. Handle message continuation (runs onto multiple lines) + if ($currentMessage !== null) { + // Append the trimmed continuation text to the current message string + $currentMessage .= ' ' . $trimmedLine; + } + } + + // Ensure the very last message in the file gets committed + $commitMessage(); + + return $parsed; + } + + /** + * Extracts functional parameters based on formatting + * + * @phpstan-return ChangeLineData + */ + static function parseChangeLineToArray(string $input): array + { + $references = []; + $raw = $input; + + if (preg_match('/.* \(([^)]+)\)/', $input, $nameMatches)) { + foreach (explode(',', $nameMatches[1]) as $name) { + $references['authors'][] = trim($name); + } + + /* author gets cropped off */ + $input = trim(str_replace('(' . $nameMatches[1] . ')', '', $input)); + } + + if (preg_match('/Fixed bug GH-([0-9]+)/', $input, $m)) { + $references['bugs'][] = $m[1]; + } + + if (preg_match('/Fixed bug #([0-9]+)/', $input, $m)) { + $references['bugs'][] = $m[1]; + } + + if (preg_match('/Fixed PECL bug #([0-9]+)/', $input, $m)) { + $references['peclbug'][] = $m[1]; + } + + if (preg_match('/Implemented FR #([0-9]+)/', $input, $m)) { + $references['featurerequest'][] = $m[1]; + } + + if (preg_match('/\(CVE-\d+-\d+\)/', $input, $m)) { + $references['cves'][] = str_replace(['(', ')'], '', $m[0]); + } + + return [ + 'message' => $input, + 'raw' => $raw, + 'references' => [], // spare us for now - $references, + ]; + } +} diff --git a/src/Releases/ChangeModule.php b/src/Releases/ChangeModule.php new file mode 100644 index 0000000000..cb39ad3a26 --- /dev/null +++ b/src/Releases/ChangeModule.php @@ -0,0 +1,17 @@ + */ + public array $changes, + ) { + + } +} diff --git a/src/Releases/Data/ReleaseAnnouncementsDataLoader.php b/src/Releases/Data/ReleaseAnnouncementsDataLoader.php new file mode 100644 index 0000000000..0e5af2dbc2 --- /dev/null +++ b/src/Releases/Data/ReleaseAnnouncementsDataLoader.php @@ -0,0 +1,37 @@ + $releaseDirs) { + $announcements = []; + foreach ($releaseDirs as $releaseId => $releaseDir) { + $announcementPath = $releaseDir . '/announcement.html'; + if (file_exists($announcementPath)) { + $announcements[$releaseId]['en'] = file_get_contents($announcementPath); + } + } + + VarCache::WriteVar(self::mkVarCacheKey($versionId), $announcements); + } + } + + protected static function mkVarCacheKey(string $label): string + { + return 'releases/' . $label . '/announcements'; + } + + /** + * @return array> + */ + public static function readAnnouncementsForVersion(string $versionId): array + { + return VarCache::ReadVarWithDefault(self::mkVarCacheKey($versionId), []); + } +} diff --git a/src/Releases/Data/ReleaseHighlightsDataLoader.php b/src/Releases/Data/ReleaseHighlightsDataLoader.php new file mode 100644 index 0000000000..292af41bc6 --- /dev/null +++ b/src/Releases/Data/ReleaseHighlightsDataLoader.php @@ -0,0 +1,149 @@ +>, + * body: string + * } + * + * @phpstan-type HighlightArray array{ + * title: string, + * about: string, + * short: string, + * rfcs: list, + * examples: list + * } + */ +final class ReleaseHighlightsDataLoader +{ + /** + * @return HighlightArray + */ + public static function parseContentToArray(string $content): array + { + /* the highlighting parsing works a lot better if things are grouped */ + $segments = SimpleMultipartSegment::groupByHeaderLine( + SimpleMultipartSegment::parseString($content), + 'type' + ); + + $meta = $segments['meta'][0] + ?? throw new ValueError('Segment "meta" cannot be found'); + + $examples = []; + foreach ($segments['example'] ?? [] as $example) { + $label = $example->getSingleHeader('label') ?? ''; + $target = $example->getSingleHeader('target') + ?: throw new ValueError('Target must be specified for examples'); + + if ($label === '') { + $targetFilters = [ + '<=' => '%s or Before', + '>=' => '%s or Later', + '<' => 'Before %s', + '>' => 'After %s', + ]; + + foreach ($targetFilters as $searchKey => $englishKey) { + if (str_starts_with($target, $searchKey)) { + $label = str_replace('%s', 'PHP ' . substr($target, strlen($searchKey)), $englishKey); + break; + } + } + } + + if ($label === '') { + $label = $target . ' or Later'; + } + + $examples[] = [ + 'label' => $label, + 'target' => $target, + 'format' => $example->getSingleHeader('format') ?? 'php', + 'headers' => $example->headers, + 'body' => $example->body, + ]; + } + + return [ + 'title' => $meta->getSingleHeader('title') ?: 'Example', + 'about' => ($segments['about'][0] ?? null)?->body ?: '', + 'short' => ($segments['short'][0] ?? null)?->body ?: '', + 'rfcs' => $meta->getHeader('rfc'), + 'examples' => $examples, + ]; + } + + /** + * @return list + */ + private static function parseDirectory(string $path): array + { + $examples = []; + + foreach (scandir($path) as $fileName) { + if (!str_ends_with($fileName, '.txt')) { + continue; + } + + $fullPath = $path . '/' . $fileName; + try { + $examples[] = self::parseContentToArray(FS::readContents($fullPath)); + } catch (Throwable $e) { + throw new RuntimeException( + message: 'Error parsing ' . $fullPath . '; ' . $e->getMessage(), + previous: $e, + ); + } + } + + return $examples; + } + + private static function mapVarCacheKey(string $versionId): string + { + return 'releases/' . $versionId . '/highlights'; + } + + public static function build(): void + { + foreach (ReleaseRawDataLoader::readVersionDataDirectoriesFromDisk() as $versionId => $path) { + $dir = $path . '/highlights'; + if (!is_dir($dir)) { + continue; + } + + VarCache::WriteVar( + self::mapVarCacheKey($versionId), + ReleaseHighlightsDataLoader::parseDirectory($dir), + ); + } + } + + /** + * @return list + */ + public static function readHighlightsForVersion(string $versionId): array + { + return VarCache::ReadVarWithDefault(self::mapVarCacheKey($versionId), []); + } +} diff --git a/src/Releases/PointReleaseData.php b/src/Releases/PointReleaseData.php new file mode 100644 index 0000000000..a2164351ed --- /dev/null +++ b/src/Releases/PointReleaseData.php @@ -0,0 +1,146 @@ +|null */ + private ?array $_changedModuleCache = null; + + /** @var list|null */ + private ?array $_sourceCache = null; + + /** + * @var array>> + */ + private static array $releaseAnnouncementCache = []; + + /** + * @param ReleaseDataStruct|null $data + * @throws ReleaseNotFoundException + */ + public static function create(string $label, ?array $data = null): PointReleaseData + { + if (BuildGlobals::$building) { + throw new BuildStepFailureException('It is not safe to use the release abstractions during build'); + } + + return new PointReleaseData($label, $data ?? ReleaseRawDataLoader::getReleaseStruct($label)); + } + + /** + * @param ReleaseDataStruct $data + */ + private function __construct(public readonly string $label, private array $data) + { + [$major, $minor, $patch] = explode('.', $label); + $this->major = (int)$major; + $this->minor = (int)$minor; + $this->patch = (int)$patch; + $this->parentLabel = $major . '.' . $minor; + } + + public VersionData $parent { + get => VersionData::create($this->major . '.' . $this->minor); + } + + public string $downloadUrl { + get => '/downloads.php?version=' . $this->label; + } + + public string $announcementUrl { + get => '/releases/' . $this->major . '_' . $this->minor . '_' . $this->patch . '.php'; + } + + public bool $isSecurity { + get => in_array('security', $this->data['tags'], true); + } + + public ?DateTimeImmutable $date { + get => new DateTimeImmutable($this->data['date']); + } + + /** + * @var list + */ + public array $sources { + get => $this->_sourceCache ??= (function () { + $files = []; + $allowedHashes = ['sha1', 'sha256']; + + foreach ($this->data['source'] as $file) { + $hashes = array_filter( + $file, + fn(string $k) => in_array($k, $allowedHashes, true), + ARRAY_FILTER_USE_KEY + ); + + $files[] = new ReleaseFile(filename: $file['filename'], name: $file['name'], hashes: $hashes); + } + + return $files; + })(); + } + + /** + * @var array + */ + public array $announcementsByLanguage { + get => (self::$releaseAnnouncementCache[$this->parentLabel] + ??= ReleaseAnnouncementsDataLoader::readAnnouncementsForVersion($this->parentLabel))[$this->label] ?? []; + } + + /** + * @var array + */ + public array $changedModules { + get => $this->_changedModuleCache ??= (function () { + $changedModuleCache = []; + foreach (ChangeLogDataLoader::getChangesForRelease($this->label) as $moduleId => $lines) { + $changedModuleCache[$moduleId] = new ChangeModule( + $moduleId, + array_map(fn(array $data) => new ChangeLine($data['message']), $lines) + ); + } + + return $changedModuleCache; + })(); + } + + /** + * This is the format used previously, regardless of our internal storage + * + * @var mixed[] + */ + public array $classicData { + get => [ + 'announcement' => true, + 'tags' => $this->data['tags'], + 'date' => $this->data['date'], + 'source' => array_values(array_map(fn(ReleaseFile $file) => $file->format(), $this->sources)), + 'version' => $this->label, + ]; + } +} diff --git a/src/Releases/RMs/ReleaseManagers.php b/src/Releases/RMs/ReleaseManagers.php new file mode 100644 index 0000000000..f36715d689 --- /dev/null +++ b/src/Releases/RMs/ReleaseManagers.php @@ -0,0 +1,282 @@ +> */ + public const array RM_GPG_KEY_IDENTIFIERS_BY_RELEASE = [ + '8.6' => ['daniels', 'mbeccati', 'svpernova09'], + '8.5' => ['pierrick', 'edorian', 'daniels'], + '8.4' => ['ericmann', 'calvinb', 'saki'], + '8.3' => ['pierrick', 'ericmann', 'bukka'], + '8.2' => ['pierrick', 'ramsey', 'sergey'], + '8.1' => ['krakjoe', 'ramsey', 'patrickallaert'], + '8.0' => ['pollita', 'carusogabriel-old', 'carusogabriel-new', 'ramsey'], + '7.4' => ['derick', 'petk'], + '7.3' => ['cmb', 'stas'], + '7.2' => ['pollita', 'remi', 'cmb'], + '7.1' => ['davey', 'krakjoe', 'pollita'], + '7.0' => ['ab', 'tyrael'], + '5.6' => ['tyrael', 'jpauli'], + '5.5' => ['jpauli', 'dsp', 'stas'], + '5.4' => ['stas'], + '5.3' => ['dsp', 'johannes'], + ]; + + static function getKey(string $rm): ?string { + switch ($rm) { + case 'ab': + return + "pub 2048R/9C0D5763 2015-06-09 [expires: 2024-06-06]\n" . + " Key fingerprint = 1A4E 8B72 77C4 2E53 DBA9 C7B9 BCAA 30EA 9C0D 5763\n" . + "uid Anatol Belski "; + + case 'bukka': + return + "pub ed25519 2021-04-10 [SC]\n" . + " C28D937575603EB4ABB725861C0779DC5C0A9DE4\n" . + "uid [ultimate] Jakub Zelenka \n" . + "uid [ultimate] Jakub Zelenka \n" . + "uid [ultimate] Jakub Zelenka \n" . + "sub cv25519 2021-04-10 [E]"; + + case "calvinb": + return + "pub ed25519 2024-04-17 [SC]\n" . + " 9D7F 99A0 CB8F 05C8 A695 8D62 56A9 7AF7 600A 39A6\n" . + "uid [ultimate] Calvin Buckley (PHP) \n" . + "sub cv25519 2024-04-17 [E]"; + + case 'carusogabriel-old': + return + "pub rsa4096 2020-05-09 [SC] [expires: 2024-05-08]\n" . + " BFDD D286 4282 4F81 18EF 7790 9B67 A5C1 2229 118F\n" . + "uid [ultimate] Gabriel Caruso (Release Manager) \n" . + "sub rsa4096 2020-05-09 [E] [expires: 2024-05-08]"; + + case 'carusogabriel-new': + return + "pub rsa4096 2022-08-30 [SC] [expires: 2024-08-29]\n" . + " 2C16 C765 DBE5 4A08 8130 F1BC 4B9B 5F60 0B55 F3B4\n" . + "uid [ultimate] Gabriel Caruso \n" . + "sub rsa4096 2022-08-30 [E] [expires: 2024-08-29]"; + + case 'cmb': + return + "pub rsa4096/118BCCB6 2018-06-05 [SC] [expires: 2022-06-04]\n" . + " Key fingerprint = CBAF 69F1 73A0 FEA4 B537 F470 D66C 9593 118B CCB6\n" . + "uid Christoph M. Becker "; + + case 'daniels': + return + "pub rsa4096 2025-06-08 [SCEA]\n" . + " D95C 03BC 702B E951 5344 AE33 74E4 4BC9 0677 01A5\n" . + "uid [ultimate] Daniel Scherzer (for PHP) "; + + case 'davey': + return + "pub 4096R/7BD5DCD0 2016-05-07\n" . + " Key fingerprint = A917 B1EC DA84 AEC2 B568 FED6 F50A BC80 7BD5 DCD0\n" . + "uid Davey Shafik "; + + case 'derick': + return + "sec rsa4096 2019-06-11 [SC] [expires: 2029-06-08]\n" . + " 5A52880781F755608BF815FC910DEB46F53EA312\n" . + "uid [ultimate] Derick Rethans \n" . + "uid [ultimate] Derick Rethans \n" . + "uid [ultimate] Derick Rethans (GitHub) \n" . + "uid [ultimate] Derick Rethans (PHP) \n" . + "ssb rsa4096 2019-06-11 [E] [expires: 2029-06-08]"; + + case 'dsp': + return + "pub 4096R/7267B52D 2012-03-20 [expires: 2016-03-19]\n" . + " Key fingerprint = 0B96 609E 270F 565C 1329 2B24 C13C 70B8 7267 B52D\n" . + "uid David Soria Parra "; + + case 'edorian': + return + "pub ed25519 2025-06-08 [SC]\n" . + " 49D9 AF6B C72A 80D6 6917 19C8 AA23 F5BE 9C70 97D4\n" . + "uid [ultimate] Volker Dusch \n" . + "sub cv25519 2025-06-08 [E]"; + + case 'ericmann': + return + "pub rsa4096 2016-11-25 [SC]\n" . + " AFD8 691F DAED F03B DF6E 4605 63F1 5A9B 7153 76CA\n" . + "uid [ultimate] Eric A Mann \n" . + "uid [ultimate] Eric A Mann \n" . + "uid [ultimate] Eric A Mann \n" . + "uid [ultimate] Eric Mann \n" . + "sub rsa4096 2016-11-25 [S]\n" . + "sub rsa4096 2016-11-25 [E]\n" . + "sub rsa4096 2016-11-25 [A]"; + + case 'johannes': + return + "pub 2048R/FC9C83D7 2012-03-18 [expires: 2017-03-17]\n" . + " Key fingerprint = 0A95 E9A0 2654 2D53 835E 3F3A 7DEC 4E69 FC9C 83D7\n" . + "uid Johannes Schlüter \n" . + "uid Johannes Schlüter "; + + case 'jpauli': + return + "pub 2048R/90D90EC1 2013-07-18 [expire : 2016-07-17]\n" . + " Key fingerprint = 0BD7 8B5F 9750 0D45 0838 F95D FE85 7D9A 90D9 0EC1\n" . + "uid Julien Pauli "; + + case 'krakjoe': + return + "pub 2048R/31CBD89E 2016-12-08\n" . + " Key fingerprint = 5289 95BF EDFB A719 1D46 839E F9BA 0ADA 31CB D89E\n" . + "uid Joe Watkins "; + + case 'mbeccati': + return + "pub ed25519 2026-04-16 [SC]\n" . + " 0168 95DE 9A47 5111 D537 A6E6 9134 FF30 BC5A 99B5\n" . + "uid [ full ] Matteo Beccati \n" . + "sub cv25519 2026-04-16 [E]"; + + case 'patrickallaert': + return + "pub rsa4096 2021-04-01 [SC]\n" . + " F1F6 9223 8FBC 1666 E5A5 CCD4 199F 9DFE F6FF BAFD\n" . + "uid [ultimate] Patrick Allaert \n" . + "sub rsa4096 2021-04-01 [E]"; + + case 'petk': + return + "pub rsa4096 2019-05-29 [SC] [expires: 2021-05-28]\n" . + " 4267 0A7F E4D0 441C 8E46 3234 9E4F DC07 4A4E F02D\n" . + "uid [ultimate] Peter Kokot \n" . + "sub rsa4096 2019-05-29 [E] [expires: 2021-05-28]"; + + case 'pierrick': + return + "pub rsa4096 2021-04-01 [SC]\n" . + " 1198 C011 7593 497A 5EC5 C199 286A F1F9 8974 69DC\n" . + "uid [ultimate] Pierrick Charron \n" . + "sub rsa4096 2021-04-01 [E]"; + + case 'pollita': + return + "pub 4096R/70D12172 2017-04-14 [expires: 2024-04-21]\n" . + " Key fingerprint = 1729 F839 38DA 44E2 7BA0 F4D3 DBDB 3974 70D1 2172\n" . + "uid Sara Golemon "; + + case 'ramsey': + return + "pub rsa4096 2021-04-26 [SC] [expires: 2025-11-24]\n" . + " 39B6 4134 3D8C 104B 2B14 6DC3 F9C3 9DC0 B969 8544\n" . + "uid [ultimate] Ben Ramsey \n" . + "sub rsa4096 2021-04-26 [E] [expires: 2025-11-24]"; + + case 'remi': + return + "pub 4096R/EE5AF27F 2017-05-24 [expires: 2024-05-22]\n" . + " Key fingerprint = B1B4 4D8F 021E 4E2D 6021 E995 DC9F F8D3 EE5A F27F\n" . + "uid Remi Collet "; + + case 'saki': + return + "pub rsa4096 2024-05-20 [SC]\n" . + " 0616 E93D 95AF 4712 43E2 6761 7704 26E1 7EBB B3DD\n" . + "uid [ultimate] Saki Takamachi (for php.net) \n" . + "sub rsa4096 2024-05-20 [E]"; + + case 'sergey': + return + "pub rsa4096 2021-03-26 [SC] [expires: 2030-03-26]\n" . + " E609 13E4 DF20 9907 D8E3 0D96 659A 97C9 CF2A 795A\n" . + "uid [ultimate] Sergey Panteleev \n" . + "uid [ultimate] Sergey Panteleev \n" . + "uid [ultimate] Sergey Panteleev \n" . + "sub rsa4096 2021-03-26 [E] [expires: 2025-03-26]"; + + case 'stas': + return + "pub 2048D/5DA04B5D 2012-03-19\n" . + " Key fingerprint = F382 5282 6ACD 957E F380 D39F 2F79 56BC 5DA0 4B5D\n" . + "uid Stanislav Malyshev (PHP key) \n" . + "uid Stanislav Malyshev (PHP key) \n" . + "uid Stanislav Malyshev (PHP key) "; + + case 'svpernova09': + return + "pub rsa4096 2026-04-16 [SC] [expires: 2031-04-15]\n" . + " 5CFF 17B6 4DC1 C244 F5D0 EAC3 E435 35E2 EB19 010E\n" . + "uid [ full ] Joe Ferguson (PHP) \n" . + "sub rsa4096 2026-04-16 [E] [expires: 2031-04-15]"; + + case 'tyrael': + return + "pub 2048R/33CFC8B3 2014-01-14 [expires: 2020-01-13]\n" . + " Key fingerprint = 6E4F 6AB3 21FD C07F 2C33 2E3A C2BF 0BC4 33CF C8B3\n" . + "uid Ferenc Kovacs "; + + default: + return null; + } + } + + /** + * This is where the release managers are defined for every version + * + * @return array> + */ + public static function getRMKeyIdentifiersByBranches(bool $activeOnly): array { + $branches = self::RM_GPG_KEY_IDENTIFIERS_BY_RELEASE; + + if (!$activeOnly) { + return $branches; + } + + $activeIds = VersionData::getSupportedVersions(); + return array_filter($branches, fn(string $key) => isset($activeIds[$key]), ARRAY_FILTER_USE_KEY); + } + + public static function showKeys(bool $activeOnly): void + { + foreach (self::getRMKeyIdentifiersByBranches($activeOnly) as $branch => $rms) { + $keys = array_filter( + array_map(fn (string $rm) => self::getKey($rm), $rms), + ); + + if (empty($keys)) { + continue; + } + + $branch = htmlentities($branch, ENT_QUOTES, 'UTF-8'); + $keys = htmlentities(implode("\n\n", $keys), ENT_QUOTES, 'UTF-8'); + + echo "

    PHP $branch

    \n"; + echo "
    \n"; + echo "
    \n";
    +            echo $keys, "\n";
    +            echo "  
    \n"; + echo "
    \n\n\n"; + } + } + +} diff --git a/src/Releases/ReleaseFile.php b/src/Releases/ReleaseFile.php new file mode 100644 index 0000000000..e8912c503b --- /dev/null +++ b/src/Releases/ReleaseFile.php @@ -0,0 +1,55 @@ + $hashes + */ + public function __construct( + public readonly string $filename, + public readonly string $name, + public readonly array $hashes, + ) { + } + + /** + * Represents the specific URL to fetch this file. + * + * Right now this is a relative path to the distributions, however, if there + * is ever a desire to move the binaries out of the webroot and into somewhere + * else, updating this one location should update everywhere that references it + * once fully converted. + */ + public string $downloadUrl { + get => '/distributions/' . $this->filename; + } + + /** + * @return mixed[] + */ + public function format(): array + { + return [ + 'filename' => $this->filename, + 'name' => $this->name, + 'download_url' => $this->downloadUrl, + ...$this->hashes, + ]; + } + + public function jsonSerialize(): mixed + { + return $this->format(); + } +} diff --git a/src/Releases/ReleaseNotFoundException.php b/src/Releases/ReleaseNotFoundException.php new file mode 100644 index 0000000000..ad66b7a94d --- /dev/null +++ b/src/Releases/ReleaseNotFoundException.php @@ -0,0 +1,8 @@ +, + * source: list, + * windows?: list + * } + * + * @phpstan-type VersionDatesStruct array{ + * initial: string|null, + * last: string|null, + * bugfix_eol: string|null, + * security_eol: string|null, + * } + * + * @phpstan-type VersionDataCompilationStruct array{ + * version: string, + * dates: VersionDatesStruct, + * releases: array + * } + * + * @phpstan-type VersionDataTopStruct array{ + * version: string, + * dates: VersionDatesStruct, + * releases: list, + * } + * + * @phpstan-type BranchOverride array{ + * date?: string, + * stable?: string, + * security?: string, + * } + */ +class ReleaseRawDataLoader +{ + /** @var array|null */ + private static ?array $_rawDataCache = null; + private const string VCACHE_COMBINED_KEY = 'releases/versions'; + + /** + * Iterates over the data/releases/* directory structure looking for version/release information + * + * @return array> + */ + public static function readReleaseDataDirectoriesFromDisk(): array + { + $results = []; + + foreach (self::readVersionDataDirectoriesFromDisk() as $versionName => $versionDir) { + foreach (scandir($versionDir) as $releaseName) { + $releaseDir = $versionDir . '/' . $releaseName; + if ($releaseName[0] === '.' || !is_dir($releaseDir)) { + continue; + } + + if (preg_match('/^\d+.\d+.\d+$/i', $releaseName)) { + $results[$versionName][$releaseName] = $releaseDir; + } + } + + uksort($results[$versionName], version_compare(...)); + } + + return $results; + } + + /** + * @return array + */ + public static function readVersionDataDirectoriesFromDisk(): array + { + static $cache; + + return $cache ??= (function () { + $results = []; + + $releasesBaseDir = ProjectGlobals::getProjectRoot() . '/data/releases'; + foreach (scandir($releasesBaseDir) as $versionName) { + $versionDir = $releasesBaseDir . '/' . $versionName; + if ($versionName[0] === '.' || !is_dir($versionDir)) { + continue; + } + + $results[$versionName] = $versionDir; + } + + return $results; + })(); + } + + + public static function build(): void + { + $allCompiledVersions = self::loadVersionDataFromDisk(); + + /* + * the data that gets written to the top level file doesn't include releases, + * that gets written to its own unique key so the entire thing doesn't have + * to be loaded all at once + */ + + /** @var array $topVersionDataByVersionId */ + $topVersionDataByVersionId = []; + foreach ($allCompiledVersions as $versionId => $versionData) { + /* the releases for each particular version get stored individually */ + VarCache::WriteVar(self::makeVersionReleasesCacheKey($versionId), $versionData['releases']); + + /* the formats are mostly the same, except we only store release ids as strings */ + $versionData['releases'] = array_keys($versionData['releases']); + $topVersionDataByVersionId[$versionId] = $versionData; + } + + /* this just contains the information required to populate a version */ + VarCache::WriteVar(self::VCACHE_COMBINED_KEY, $topVersionDataByVersionId); + } + + /** + * @param array $releases + * @param BranchOverride $overrides + * @return VersionDatesStruct + */ + private static function calculateDatesBlock(string $versionId, array $releases, array $overrides): array + { + /* if there isn't a release to go on, we're out of luck at this point */ + $initial = array_first($releases); + $final = array_last($releases); + if (!$initial || !$final) { + return [ + 'initial' => null, + 'last' => null, + 'bugfix_eol' => null, + 'security_eol' => null, + ]; + } + + $initialDate = new DateTimeImmutable($initial['date']); + $finalDate = new DateTimeImmutable($final['date']); + + return [ + 'initial' => $initialDate->format('Y-m-d'), + 'last' => $finalDate->format('Y-m-d'), + 'bugfix_eol' => self::calculateBugfixEOL( + initialDate: $initialDate, + override: $overrides['stable'] ?? null, + versionId: $versionId + )->format('Y-m-d'), + 'security_eol' => self::calculateSecurityEOL( + initialDate: $initialDate, + finalReleaseDate: $finalDate, + override: $overrides['security'] ?? null, + versionId: $versionId + )->format('Y-m-d'), + ]; + } + + /** + * Determines the date that this version runs out of bugfix support + * + * If not otherwise overridden: + * - For [<8.2] - 2 years after the initial release + * - Otherwise - 2 years after the initial release, extended until the end of the year. + */ + private static function calculateBugfixEOL( + DateTimeImmutable $initialDate, + ?string $override, + string $versionId + ): DateTimeImmutable { + if ($override) { + return new DateTimeImmutable($override); + } + + /* date is based on 2 years after the initial release */ + $date = $initialDate->add(new DateInterval('P2Y')); + + /* Versions before 8.2 do not extend the release cycle to the end of the year */ + if (Utils::versionCompareOp($versionId, '8.2', '<')) { + return $date; + } + + /* as of 8.2, the release window has been extended to the very end of the year for simplicity */ + + return $date->setDate((int)$date->format('Y'), 12, 31); + } + + /** + * Determines the date that this version runs out of security support + * + * If not otherwise overridden + * For [<5.3] - The date of the final release + * For [<8.1] - 3 years after the initial release + * Otherwise - 4 years after the initial release, extended until the end of the year + */ + private static function calculateSecurityEOL( + DateTimeImmutable $initialDate, + DateTimeImmutable $finalReleaseDate, + ?string $override, + string $versionId, + ): DateTimeImmutable { + if ($override) { + return new DateTimeImmutable($override); + } + + /* Versions before 5.3 are based solely on the final release date in */ + if (Utils::versionCompareOp($versionId, '5.3', '<')) { + return $finalReleaseDate; + } + + /* Versions before 8.1 have 3-year support since the initial release */ + if (Utils::versionCompareOp($versionId, '8.1', '<')) { + return $initialDate->add(new DateInterval('P3Y')); + } + + /* everything after 8.1 gets 4 years of security support */ + $date = $initialDate->add(new DateInterval('P4Y')); + + /* that has been extended until the end of the year */ + + return $date->setDate((int)$date->format('Y'), 12, 31); + } + + /** + * Scans through the data directory structure, reading all the version + * information from the release.json file + * + * @return array + */ + protected static function loadVersionDataFromDisk(): array + { + /** @var array $results */ + $results = []; + + /** @var array $dateOverridesByVersion */ + $dateOverridesByVersion = require ProjectGlobals::getProjectRoot() . '/include/branch-overrides.inc'; + + foreach (self::readReleaseDataDirectoriesFromDisk() as $versionId => $releases) { + $releasesData = []; + + foreach ($releases as $releaseId => $releaseDir) { + try { + $jsonPath = $releaseDir . '/release.json'; + if (!file_exists($jsonPath)) { + throw new RuntimeException('File not found'); + } + + try { + $json = json_decode(FS::readContents($jsonPath), true, flags: JSON_THROW_ON_ERROR); + } catch (JsonException $e) { + throw new RuntimeException('JSON decode exception; ' . $e->getMessage()); + } + + /* validate this release data */ + if (!is_string($json['date'] ?? null)) { + throw new RuntimeException('Date must be a valid JSON string.'); + } + + if (!is_array($json['source'] ?? null)) { + throw new RuntimeException('Source must be an array.'); + } + + $releasesData[$releaseId] = $json; + } catch (RuntimeException $e) { + throw new RuntimeException('Error with release manifest "' . $jsonPath . '": ' . $e->getMessage()); + } + } + + $results[$versionId] = [ + 'version' => $versionId, + 'dates' => self::calculateDatesBlock( + $versionId, + $releasesData, + $dateOverridesByVersion[$versionId] ?? [] + ), + 'releases' => $releasesData, + ]; + } + + return $results; + } + + /** + * SSoT for the version cache key + */ + private static function makeVersionReleasesCacheKey(string $versionId): string + { + return 'releases/' . $versionId . '/releases'; + } + + /** + * Contains the cached, top-level struct information only for top-level versions + * + * @return array + */ + public static function allVersionStructsByVersionID(): array + { + static $cache = null; + + return $cache ??= VarCache::ReadVar(self::VCACHE_COMBINED_KEY); + } + + /** + * Retrieves the minimal information required to boot a VersionData + * + * @return VersionDataTopStruct + * @throws ReleaseNotFoundException + */ + public static function getVersionStructForVersionID(string $versionId): array + { + return self::allVersionStructsByVersionID()[$versionId] ?? throw new ReleaseNotFoundException($versionId); + } + + /** + * Loads ALL the release structs for a given version + * + * @return array + * @throws ReleaseNotFoundException + */ + public static function getReleaseStructsForVersionId(string $versionId): array + { + static $cache = []; + + try { + return $cache[$versionId] ??= VarCache::ReadVar(self::makeVersionReleasesCacheKey($versionId)); + } catch (VarUnavailableException) { + throw new ReleaseNotFoundException($versionId); + } + } + + /** + * + * + * @return ReleaseDataStruct + * @throws ReleaseNotFoundException + */ + public static function getReleaseStruct(string $releaseId): array + { + [$major, $minor] = explode('.', $releaseId); + $versionId = $major . '.' . $minor; + + return self::getReleaseStructsForVersionId($versionId)[$releaseId] + ?? throw new ReleaseNotFoundException($versionId); + } + + /** + * Returns all the revisions structured as $result[8.4][8.4.3] = [ ... ] + * + * This version is cached and will attempt to use the optimized version if available + * + * @return array> + */ + static function allReleaseDataByVersionByLabel(): array + { + return self::$_rawDataCache ??= (function () { + $data = VarCache::ReadVarWithDefault(self::VCACHE_COMBINED_KEY, null) + ?? self::loadVersionDataFromDisk(); + + /** + * This basically just strips out the extra version-level data and focuses + * on the releases + */ + return array_map(fn(array $versionData) => $versionData['releases'], $data); + })(); + } +} diff --git a/src/Releases/SupportState.php b/src/Releases/SupportState.php new file mode 100644 index 0000000000..2286fe277a --- /dev/null +++ b/src/Releases/SupportState.php @@ -0,0 +1,12 @@ +sub(new DateInterval('P3Y')); + } + + /** + * Gets the end of the X axis on the supported version graph + */ + public static function getDefaultMaximumReleaseDate(): DateTimeImmutable + { + return new DateTimeImmutable('January 1')->add(new DateInterval('P5Y')); + } + + /** + * @return array + */ + public static function getDefaultReleasesToShow() + { + $minDate = self::getDefaultMinimumReleaseDate(); + $branches = array_filter( + VersionData::all(), + fn(VersionData $version) => version_compare($version->label, self::ONLY_SHOW_ABOVE_VER, 'ge') + && $version->securityEOL + && $version->securityEOL > $minDate, + ); + + ksort($branches); + + return $branches; + } + + /** + * @param VersionData[] $releases + */ + public static function drawSvg(array $releases, TimelineSvgConfig $config): string + { + return Utils::bufferOutput(fn() => self::renderSvgToBuffer($releases, $config)); + } + + /** + * @param VersionData[] $releases + */ + public static function renderSvgToBuffer(array $releases, TimelineSvgConfig $config): void + { + $rowHeight = $config->rowHeight; + $marginLeft = $config->marginLeft; + $marginRight = $config->marginRight; + $yearWidth = $config->yearWidth; + $headerHeight = $config->headerHeight; + $footerHeight = $config->footerHeight; + $minDate = $config->minDate; + $maxDate = $config->maxDate; + + $transformX = function (DateTimeImmutable $date) use ($marginLeft, $minDate, $yearWidth) { + $diff = $date->diff($minDate); + if (!$diff->invert) { + return $marginLeft; + } + + return $marginLeft + ($diff->days / (365.24 / $yearWidth)); + }; + + /** @var array $topCoordinatesByReleaseLabel */ + $topCoordinatesByReleaseLabel = []; + $i = 0; + foreach ($releases as $branch => $version) { + $topCoordinatesByReleaseLabel[$branch] = $headerHeight + ($rowHeight * $i++); + } + + $years = iterator_to_array( + new DatePeriod(start: $minDate, interval: new DateInterval('P1Y'), end: $maxDate), + ); + + $imageWidth = $marginLeft + $marginRight + ((count($years) - 1) * $yearWidth); + $imageHeight = $headerHeight + $footerHeight + (count($releases) * $rowHeight); + ?> + + + + + + + $release) { ?> + + + + + + + + + + + + releaseDate || !$release->bugfixEOL || !$release->securityEOL) { + continue; + } + + $x_release = $transformX($release->releaseDate); + $x_bug = $transformX($release->bugfixEOL); + $x_eol = $transformX($release->securityEOL); + $top = $topCoordinatesByReleaseLabel[$release->label]; + ?> + + + + + + + + + + + format('j M Y') ?> + + + + + + + + + + format('j M Y')) ?> + + + + */ + private static array $_cache = []; + + /** @var array|null */ + private static array|null $_all = null; + + /** @var array|null */ + private static array|null $_majorFeatureDescriptions = null; + + public readonly int $majorVersion; + public readonly int $minorVersion; + + /* + * Cached values that have expensive lookups + */ + private ?DateTimeImmutable $_bugfixEOL = null; + private ?DateTimeImmutable $_securityEOL = null; + private ?DateTimeImmutable $_releaseDate = null; + + /** @var array|null */ + private ?array $_pointReleases = null; + + /** @var list|null */ + private ?array $_highlightSnippets = null; + + private ?string $_logoCache = null; + + /** + * @param VersionDataTopStruct $_data + */ + private function __construct(public readonly string $label, private readonly array $_data) + { + [$majorVersion, $minorVersion] = explode('.', $label); + $this->majorVersion = (int)$majorVersion; + $this->minorVersion = (int)$minorVersion; + } + + public static function create(string $label): VersionData + { + if (BuildGlobals::$building) { + throw new BuildStepFailureException('It is not safe to use the release abstractions during build'); + } + + return self::$_cache[$label] ??= new VersionData( + $label, + ReleaseRawDataLoader::getVersionStructForVersionID($label) + ); + } + + /** + * @param VersionData[] $releases + * @return array + */ + public static function sort(array $releases, string $dir = 'asc'): array + { + if ($dir === 'asc') { + usort($releases, fn(VersionData $a, VersionData $b) => Utils::versionCompare($a->label, $b->label)); + } else { + usort($releases, fn(VersionData $a, VersionData $b) => Utils::versionCompare($b->label, $a->label)); + } + + return array_column($releases, null, 'label'); + } + + + /** + * @param VersionData[] $releases + * @return array + */ + public static function rekey(array $releases): array + { + return array_column($releases, null, 'label'); + } + + /** + * Returns an associative array of the latest versions of PHP + * + * @return array + */ + public static function getSupportedVersions(bool $includeRecentEOL = true): array + { + $recentEolCutoff = new DateTimeImmutable()->sub(new DateInterval('P28D')); + + $ready = []; + foreach (self::all() as $version) { + if ($version->isSupported + || ($includeRecentEOL && $version->supportState === SupportState::Eol && $version->securityEOL && $version->securityEOL > $recentEolCutoff) + ) { + $ready[$version->label] = $version; + } + } + + return array_reverse($ready); + } + + /** + * Returns instances of all the currently known versions + * + * @return array + */ + public static function all(): array + { + return self::$_all ??= (function () { + $found = []; + foreach (array_keys(ReleaseRawDataLoader::allVersionStructsByVersionID()) as $versionId) { + $found[$versionId] = self::create($versionId); + } + + return $found; + })(); + } + + private static function forgeDate(?string $date): ?DateTimeImmutable + { + return $date ? new DateTimeImmutable($date) : null; + } + + public ?PointReleaseData $initialRelease { + get => array_first($this->releases); + } + + /** + * Finds the last release associated with this version + */ + public ?PointReleaseData $latestRelease { + get => array_last($this->releases); + } + + /** + * Determines the date that the first production release was available + * This is precalculated as part of the build process + * + * @see ReleaseRawDataLoader::calculateDatesBlock() + */ + public ?DateTimeImmutable $releaseDate { + get => $this->_releaseDate ??= self::forgeDate($this->_data['dates']['initial']); + } + + /** + * Determines the date that this version runs out of bugfix support. + * This is precalculated as part of the build process. + * + * @see ReleaseRawDataLoader::calculateBugfixEOL() + */ + public ?DateTimeImmutable $bugfixEOL { + get => $this->_bugfixEOL ??= self::forgeDate($this->_data['dates']['bugfix_eol']); + } + + /** + * Determines the date that this version runs out of security support. + * This is precalculated as part of the build process. + * + * @see ReleaseRawDataLoader::calculateSecurityEOL() + */ + public ?DateTimeImmutable $securityEOL { + get => $this->_securityEOL ??= self::forgeDate($this->_data['dates']['security_eol']); + } + + /** + * Returns the current logo url or an empty string + * + * todo: Move these to the data directory + */ + public string $logoUrl { + get => $this->_logoCache ??= (function () { + $path = '/images/php' . $this->majorVersion . '/logo_php' . $this->majorVersion . '_' . $this->minorVersion . '.svg'; + + return file_exists(ProjectGlobals::getProjectRoot() . $path) ? $path : ''; + })(); + } + + public ?string $aboutPageURL { + get { + return '/releases/' . $this->label . '/en.php'; + } + } + + /** + * @var array + */ + public array $releases { + get => $this->_pointReleases ??= (function () { + $releases = []; + foreach ($this->_data['releases'] as $releaseId) { + $releases[$releaseId] = PointReleaseData::create($releaseId); + } + + return $releases; + })(); + } + + + /** + * Provides an array of code examples that show how code can be upgraded + * to use new functionality in this version. + * + * todo: convert to use object representation + * + * @var list + */ + public array $upgradeSnippets { + get => $this->_highlightSnippets ??= ReleaseHighlightsDataLoader::readHighlightsForVersion($this->label); + } + + /** + * Returns an array of descriptions about what is particularly special for a new version + * for use on things like the homepage + * + * todo: Update this to use 'short' versions from release highlights + * + * @var list + */ + public array $majorFeatureDescriptions { + get => (self::$_majorFeatureDescriptions ??= (function () { + return require ProjectGlobals::getIncludeDataPath() . '/branch-meta.inc'; + })())[$this->label]['features'] ?? []; + } + + /** + * Gets the root-relative URL for the upgrade documentation + * + * Note: this places into /manual instead of the top level, which was previously used. + */ + public string $migrationUri { + get => '/manual/migration' . $this->majorVersion . $this->minorVersion; + } + + /** + * Get the root-relative URL for the download page for this version + */ + public string $downloadUri { + get => '/downloads.php?version=' . $this->label; + } + + public SupportState $supportState { + get { + /* version 3 doesn't really exist in the data, so we assign it EOL */ + if ($this->majorVersion <= 3) { + return SupportState::Eol; + } + + $now = new DateTimeImmutable(); + + if ($this->securityEOL && $now >= $this->securityEOL) { + return SupportState::Eol; + } + + if ($this->bugfixEOL && $now >= $this->bugfixEOL) { + return SupportState::Security; + } + + if ($this->releaseDate && $now >= $this->releaseDate) { + return SupportState::Stable; + } + + return SupportState::Future; + } + } + + /** + * Is supported in some way, either mainline support or security + */ + public bool $isSupported { + get => in_array($this->supportState, [SupportState::Stable, SupportState::Security], true); + } +} diff --git a/src/Themes/Assets.php b/src/Themes/Assets.php new file mode 100644 index 0000000000..6ef877a3bd --- /dev/null +++ b/src/Themes/Assets.php @@ -0,0 +1,121 @@ + yield from new RecursiveIteratorIterator( + new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS), + RecursiveIteratorIterator::LEAVES_ONLY, + ); + + $availableFiles = [ + ...$scanDir("$rootDir/styles"), + ...$scanDir("$rootDir/js"), + ...$scanDir("$rootDir/fonts"), + ...iterator_to_array(new GlobIterator("$rootDir/favicon*")), + ]; + + $compiledAssetsDir = self::getCompiledAssetsDir(); + $mapping = []; + + foreach ($availableFiles as $file) { + if (!in_array($file->getExtension(), self::ALLOWED_EXTENSIONS, true)) { + continue; + } + + /* source is trusted - doesn't need to be overly complicated */ + $hash = hash_file('sha1', $file->getRealPath()) + ?: throw new BuildStepFailureException('Unable to hash ' . $file->getRealPath()); + + $saveName = $hash . '.' . $file->getExtension(); + $savePath = $compiledAssetsDir . '/' . $saveName; + + if (!file_exists($savePath) && !copy($file->getRealPath(), $savePath)) { + throw new BuildStepFailureException( + 'Unable to copy ' . $file->getRealPath() . ' to ' . $savePath + ); + } + + $mapping[ProjectGlobals::scopeToProjectRoot($file->getRealPath())] = $saveName; + } + + VarCache::WriteVar(self::VCACHE_KEY, $mapping); + } + + private static function getCompiledAssetsDir(): string + { + return ProjectGlobals::getProjectRoot() . '/assets/compiled'; + } + + private static function getCompiledAssetsUrl(): string + { + return '/assets/compiled'; + } + + /** + * Provides for the eventual remapping of assets to long-term cachable storage by + * rewriting them from a pre-calculated array + * + * Path is relative to the asset root + */ + public static function mapAssetUrl(string $path): string + { + static $cache = null; + $cache ??= VarCache::ReadVarWithDefault(self::VCACHE_KEY, []); + + if ($path[0] === '/' && in_array(array_last(explode('.', $path)), self::ALLOWED_EXTENSIONS, true)) { + /* This path will eventually change once we extract assets into a dedicated folder */ + $truePath = ProjectGlobals::getProjectRoot() . $path; + + /* if the file cannot be scoped, then we can just use an empty key which won't exist */ + $scopedToRoot = ProjectGlobals::scopeToProjectRoot($truePath) ?? ''; + $remapped = $cache[$scopedToRoot] ?? null; + if ($remapped !== null) { + return self::getCompiledAssetsUrl() . '/' . $remapped; + } + + return '/cached.php?f=' . $path . '&t=' . filemtime($truePath); + } + + return $path; + } + + /** + * HTML encoded mapUrl + */ + public static function mapSafeUrl(string $path): string + { + return safe(self::mapAssetUrl($path)); + } +} diff --git a/src/Themes/PageTheme.php b/src/Themes/PageTheme.php new file mode 100644 index 0000000000..4a5eee2de7 --- /dev/null +++ b/src/Themes/PageTheme.php @@ -0,0 +1,78 @@ + [ + ['My PHP.net', '/my.php'], + ['Downloads', '/downloads.php'], + ['Contact', '/contact.php'], + ['Other PHP.net sites', '/sites.php'], + ], + 'Learn' => [ + ['Documentation', '/docs.php'], + ['Get Involved', 'get-involved.php'], + ['Help', '/support.php'], + ], + 'The PHP Foundation' => [ + ['About the Foundation', 'https://thephp.foundation/', '_blank'], + ['Sponsor', 'https://thephp.foundation/sponsor/', '_blank'], + ['Contact', 'https://thephp.foundation/contact/', '_blank'], + ], + 'Legal' => [ + ['Privacy Policy', '/privacy.php'], + ], + ]; + + /** + * @param array $config + * @param string|Closure():mixed $content + */ + public static function renderIntoTemplate(array $config, string|Closure $content): string + { + /* sections get hidden for this new mechanism */ + $config['include_section'] ??= false; + + return Utils::bufferOutput(function() use ($config, $content) { + site_header($config['title'], $config); + + echo is_string($content) ? $content : $content(); + ?> + +
    +
    +
    + $links) { ?> +
    +
    +
    + +
    + + + + + +
    +
    + +
    +
    +
    + false, ...$config]); + }); + } +} diff --git a/src/Themes/SuperBanner.php b/src/Themes/SuperBanner.php new file mode 100644 index 0000000000..f72997a2d8 --- /dev/null +++ b/src/Themes/SuperBanner.php @@ -0,0 +1,39 @@ + + +
    +
    + + + + + + + + + + + +
    + +
    +
    +
    + $notes */ - public function sort(array &$notes):void { + public function sort(array &$notes): void + { // First we make a pass over the data to get the min and max values // for data normalization. $this->findMinMaxValues($notes); @@ -48,36 +41,44 @@ public function sort(array &$notes):void { }); } - private function calcVotePriority(UserNote $note):float { + private function calcVotePriority(UserNote $note): float + { return ($note->upvotes - $note->downvotes - $this->minVote) * $this->voteFactor + .3; } - private function calcRatingPriority(UserNote $note):float { + private function calcRatingPriority(UserNote $note): float + { return $note->upvotes + $note->downvotes <= 2 ? 0.5 : $this->calcRating($note); } - private function calcRating(UserNote $note):float { + private function calcRating(UserNote $note): float + { $totalVotes = $note->upvotes + $note->downvotes; + return $totalVotes > 0 ? $note->upvotes / $totalVotes : .5; } /** * @param array $notes + * @return array */ - private function calcSortPriority(array $notes): array { + private function calcSortPriority(array $notes): array + { $prio = []; foreach ($notes as $note) { $prio[$note->id] = ($this->calcVotePriority($note) * $this->voteWeight) + ($this->calcRatingPriority($note) * $this->ratingWeight) + (($note->ts - $this->minAge) * $this->ageFactor); } + return $prio; } /** * @param array $notes */ - private function findMinMaxValues(array $notes):void { + private function findMinMaxValues(array $notes): void + { if ($notes === []) { return; } @@ -90,8 +91,8 @@ private function findMinMaxValues(array $notes):void { foreach ($notes as $note) { $this->maxVote = max($this->maxVote, ($note->upvotes - $note->downvotes)); $this->minVote = min($this->minVote, ($note->upvotes - $note->downvotes)); - $this->maxAge = max($this->maxAge, $note->ts); - $this->minAge = min($this->minAge, $note->ts); + $this->maxAge = max($this->maxAge, (int)$note->ts); + $this->minAge = min($this->minAge, (int)$note->ts); } } } diff --git a/src/UserNotes/UserNote.php b/src/UserNotes/UserNote.php index fbb852746f..18eed1facc 100644 --- a/src/UserNotes/UserNote.php +++ b/src/UserNotes/UserNote.php @@ -8,7 +8,7 @@ public function __construct( public string $id, public string $sect, public string $rate, - public string $ts, + public int $ts, public string $user, public string $text, public int $upvotes = 0, diff --git a/src/UserPreferences.php b/src/UserPreferences.php index 60e3d42362..aed2d6dc3a 100644 --- a/src/UserPreferences.php +++ b/src/UserPreferences.php @@ -47,7 +47,7 @@ public function load(): void * 4 - Documentation developmental server (removed) */ $preferences = explode(",", $_COOKIE['MYPHPNET']); - $this->languageCode = $preferences[0] ?? ''; + $this->languageCode = $preferences[0]; $this->setUrlSearchType($preferences[1] ?? self::URL_NONE); $this->isUserGroupTipsEnabled = isset($preferences[3]) && $preferences[3]; } diff --git a/src/Util/FS.php b/src/Util/FS.php new file mode 100644 index 0000000000..2c30189e08 --- /dev/null +++ b/src/Util/FS.php @@ -0,0 +1,47 @@ +> $headers + */ + public function __construct( + public array $headers, + public string $body, + ) { + } + + public function getSingleHeader(string $key, ?string $default = null): ?string + { + return $this->headers[$key][0] ?? $default; + } + + /** + * @return list + */ + public function getHeader(string $key): array + { + return $this->headers[$key] ?? []; + } + + /** + * @return list + */ + public static function parseFile(string $path): array + { + $contents = file_get_contents($path); + if ($contents === false) { + throw new RuntimeException('Unable to read file from ' . $path); + } + + return self::parseString($contents); + } + + /** + * @return list + */ + public static function parseString(string $contents): array + { + $contents = str_replace("\r\n", "\n", $contents); + $contentSections = explode('==============================================', $contents); + $grouped = []; + + foreach($contentSections as $section) { + $blocks = explode("\n\n", trim($section), 2); + + /* like HTTP, blocks are a set of key-values, followed by a double newline, followed by */ + $headers = []; + foreach (explode("\n", $blocks[0]) as $headerLine) { + $parts = explode(":", trim($headerLine), 2); + if (count($parts) !== 2) { + continue; + } + + [$id, $value] = $parts; + $headers[$id][] = trim($value); + } + + $body = $blocks[1] ?? ''; + $grouped[] = new self(headers: $headers, body: $body); + } + + return $grouped; + } + + /** + * Groups segments into a parent array element based on a single line + * + * @param array $segments + * @return array> + */ + public static function groupByHeaderLine(array $segments, string $header = 'type'): array + { + $grouped = []; + foreach ($segments as $segment) { + $line = $segment->getSingleHeader($header, null); + if ($line === null) { + continue; + } + + $grouped[$line][] = $segment; + } + + return $grouped; + } +} diff --git a/src/Utils.php b/src/Utils.php new file mode 100644 index 0000000000..b8081a005a --- /dev/null +++ b/src/Utils.php @@ -0,0 +1,46 @@ + 'https://www.php.net/manual/migration83.php', '8.2' => 'https://www.php.net/manual/migration82.php', ]; + +$supportedVersions = VersionData::getSupportedVersions(includeRecentEOL: false); +uksort($supportedVersions, version_compare(...)); + ?>

    Supported Versions

    @@ -51,37 +60,34 @@ - $releases): ?> - - $release): ?> - - - - - - format('j M Y')) ?> - - format('j M Y')) ?> - - format('j M Y')) ?> - - - - - Migration guide for PHP - - - — - - - - + + supportState->value; + $initial = $release->releaseDate; + $until = $release->bugfixEOL; + $eol = $release->securityEOL; + $now = new DateTime('now'); + ?> + + + label) ?> + + format('j M Y')) ?> + + format('j M Y')) ?> + + format('j M Y')) ?> + + + label])): ?> + + Migration guide for PHP label) ?> + + + — + + + @@ -96,8 +102,13 @@ * themselves). Instead, we'll just pull the SVG into the page inline, thereby * ensuring that we have the same text formatting as the rest of the page. */ -$non_standalone = true; -include __DIR__ . '/images/supported-versions.php'; +echo SupportTimelineSvgGenerator::drawSvg( + releases: SupportTimelineSvgGenerator::getDefaultReleasesToShow(), + config: new TimelineSvgConfig( + minDate: SupportTimelineSvgGenerator::getDefaultMinimumReleaseDate(), + maxDate: SupportTimelineSvgGenerator::getDefaultMaximumReleaseDate(), + ), +); ?>

    Key

    diff --git a/thanks.php b/thanks.php index 1b68444bed..2b55ac1ff4 100644 --- a/thanks.php +++ b/thanks.php @@ -1,7 +1,6 @@ "community"]); ?> @@ -176,7 +175,9 @@
    • :