--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7201
2015-08-28 05:20:11.182889
--------------------------------------------------------------------------------
Name : php-pecl-raphf
Product : Fedora EPEL 7
Version : 1.1.0
Release : 1.el7
URL : http://pecl.php.net/package/raphf
Summary : Resource and persistent handles factory
Description :
A reusable split-off of pecl_http's persistent handle and resource
factory API.
--------------------------------------------------------------------------------
Update Information:
**pecl_http 2.5.1** * Fixed gh-issue #2: comparison of obsolete pointers in the
header parser (xiaoyjy) * Fixed gh-issue #6: allow RFC1738 unsafe characters in
query/fragment * Fixed gh-issue #7: crash with querystring and exception from
error handler * SSL certinfo is available for libcurl >= 7.42 with gnutls
(openssl has already been since 7.19.1) * Added "falsestart" SSL request option
(available with libcurl >= 7.42 and darwinssl/NSS) * Added "service_name" and
"proxy_service_name" request options for SPNEGO (available with libcurl >= 7.43)
* Enabled "certinfo" transfer info on all supporting SSL backends (OpenSSL:
libcurl v7.19.1, NSS: libcurl v7.34.0, GSKit: libcurl v7.39.0, GnuTLS: libcurl
v7.42.0) **pecl_http 2.5.0** * Added RFC5988 (Web Linking) support to
http\Params * Added http\Url::SANITIZE_PATH to default flags of http\Url::mod()
* Fixed overly aggressive response caching to only consider 2xx cachable
**pecl_http 2.4.0** * Split off pecl/apfd and pecl/json_post **pecl_http
2.3.0** * Preliminiary HTTP2 support for http\Client (libcurl with nghttp2
support) * Improved performance of HTTP info parser (request/response line) *
Improved performance of updating client observers * Improved performance of
http\Env\Response output to streams * Improved the error messages of the header
parser * Added http\Header\Parser class * Added http\Client::configure()
method accepting an array with the following options for libcurl: * maxconnects
(int, size of the connection cache) * max_host_connections (int, max number of
connections to a single host, libcurl >= 7.30.0) * max_pipeline_length (int,
max number of requests in a pipeline, libcurl >= 7.30.0) *
max_total_connections (int, max number of simultaneous open connections of this
client, libcurl >= 7.30.0) * pipelining (bool, whether to enable HTTP/1.1
pipelining) * chunk_length_penalty_size (int, chunk length threshold for
pipelining, libcurl >= 7.30.0) * content_length_penalty_size (int, size
threshold for pipelining, libcurl >= 7.30.0) * pipelining_server_bl (array,
list of server software names to blacklist for pipelining, libcurl >= 7.30.0) *
pipelining_site_bl (array, list of server host names to blacklist for
pipelining, libcurl >= 7.30.0) * use_eventloop (bool, whether to use libevent,
libcurl+libevent) * Added http\Client::getAvailableOptions() and
http\Client::getAvailableConfiguration() methods * Added support for HTTP2 if
libcurl was built with nghttp2 support. * Added
http\Client\Curl\HTTP_VERSION_2_0 constant (libcurl >= 7.33.0) * Added
http\Client\Curl\TLS_AUTH_SRP constant (libcurl >= 7.21.4) * Added
pinned_publickey SSL request option (libcurl >= 7.39.0) * Added tlsauthtype,
tlsauthuser and tlsauthpass SSL request option (libcurl >= 7.21.4) * Added
verifystatus (a.k.a OCSP) SSL request option (libcurl >= 7.41.0) * Added
proxyheader request option (libcurl >= 7.37.0) * Added unix_socket_path request
option (libcurl >= 7.40.0) * Fixed compress request option * Fixed parsing
authorities of CONNECT messages * Fixed parsing Content-Range messages * Fixed
http\Env\Response to default to chunked encoding over streams * Fixed
superfluous output of Content-Length:0 headers * Fixed persistent easy handles
to be only created for persistent multi handles * Fixed the header parser to
accept not-yet-complete header lines * Fixed http\Message::toStream() crash in
ZTS mode * Fixed the message stream parser to handle intermediary data bigger
than 4k * Fixed the message stream parser to handle single header lines without
EOL * Fixed http\Message\Body to not generate stat based etags for temporary
streams * Deprecated http\Client::enablePipelining(), use
http\Client::configure(["pipelining" => true]) instead * Deprecated
http\Client::enableEvents(), use http\Client::configure(["use_eventloop" =>
true]) instead * Removed the cookies entry from the transfer info, wich was
very slow and generated a Netscape formatted list of cookies * Changed the
header parser to reject illegal characters **json_post 1.0.0** * This
extension provides a PHP content type handler for "application/json" and
"text/json" to PHP's form data parser. If the `Content-Type` of an incoming
request is `text/json`, the JSON contents of the request body will by parsed
into `$_POST. **apfd 1.0.1** * This tiny extension lets PHP's post handler
parse `multipart/form-data` and `application/x-www-form-urlencoded` (or any
other customly registered form data handler, like "json_post") without regard to
the request's request method. **raphf 1.1.0** * Fixed php module dependency
check with RTLD_LAZY
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-pecl-raphf' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7348
2015-08-28 05:20:11.182857
--------------------------------------------------------------------------------
Name : php-phpunit-environment
Product : Fedora EPEL 7
Version : 1.3.2
Release : 1.el7
URL : https://github.com/sebastianbergmann/environment
Summary : Handle HHVM/PHP environments
Description :
This component provides functionality that helps writing PHP code that
has runtime-specific (PHP / HHVM) execution paths.
--------------------------------------------------------------------------------
Update Information:
**php-code-coverage 2.2.2** - 2015-08-04 * Reintroduced the
PHP_CodeCoverage_Driver_HHVM driver as an extension of
PHP_CodeCoverage_Driver_Xdebug that does not use xdebug_start_code_coverage()
with options not supported by HHVM * Bumped required version of
sebastian/environment to 1.3.2 for #365 **php-code-coverage 2.2.1** -
2015-08-02 * Bumped required version of sebastian/environment to 1.3.1 for #365
**php-code-coverage 2.2.0** - 2015-08-01 * Added a driver for PHPDBG (requires
PHP 7) * Added PHP_CodeCoverage::setDisableIgnoredLines() to disable the
ignoring of lines using annotations such as @codeCoverageIgnore
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-phpunit-environment' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7348
2015-08-28 05:20:11.182857
--------------------------------------------------------------------------------
Name : php-phpunit-PHP-CodeCoverage
Product : Fedora EPEL 7
Version : 2.2.2
Release : 1.el7
URL : https://github.com/sebastianbergmann/php-code-coverage
Summary : PHP code coverage information
Description :
Library that provides collection, processing, and rendering functionality
for PHP code coverage information.
--------------------------------------------------------------------------------
Update Information:
**php-code-coverage 2.2.2** - 2015-08-04 * Reintroduced the
PHP_CodeCoverage_Driver_HHVM driver as an extension of
PHP_CodeCoverage_Driver_Xdebug that does not use xdebug_start_code_coverage()
with options not supported by HHVM * Bumped required version of
sebastian/environment to 1.3.2 for #365 **php-code-coverage 2.2.1** -
2015-08-02 * Bumped required version of sebastian/environment to 1.3.1 for #365
**php-code-coverage 2.2.0** - 2015-08-01 * Added a driver for PHPDBG (requires
PHP 7) * Added PHP_CodeCoverage::setDisableIgnoredLines() to disable the
ignoring of lines using annotations such as @codeCoverageIgnore
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-phpunit-PHP-CodeCoverage' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7349
2015-08-28 05:20:11.182825
--------------------------------------------------------------------------------
Name : php-phpunit-comparator
Product : Fedora EPEL 7
Version : 1.2.0
Release : 1.el7
URL : https://github.com/sebastianbergmann/comparator
Summary : Compare PHP values for equality
Description :
This component provides the functionality to compare PHP values for equality.
--------------------------------------------------------------------------------
Update Information:
* Support DateTimeInterface in DateTimeComparator.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-phpunit-comparator' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7502
2015-08-28 05:20:11.182793
--------------------------------------------------------------------------------
Name : php-phpunit-phploc
Product : Fedora EPEL 7
Version : 2.1.4
Release : 1.el7
URL : https://github.com/sebastianbergmann/phploc
Summary : A tool for quickly measuring the size of a PHP project
Description :
phploc is a tool for quickly measuring the size of a PHP project.
The goal of phploc is not not to replace more sophisticated tools such as phpcs,
pdepend, or phpmd, but rather to provide an alternative to them when you just
need to get a quick understanding of a project's size.
--------------------------------------------------------------------------------
Update Information:
>From git history: * Fix 112: PHP Undefined indexes when running ci
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-phpunit-phploc' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7566
2015-08-28 05:20:11.182756
--------------------------------------------------------------------------------
Name : php-phpunit-DbUnit
Product : Fedora EPEL 7
Version : 1.4.1
Release : 1.el7
URL : https://github.com/sebastianbergmann/dbunit
Summary : DbUnit port for PHP/PHPUnit
Description :
DbUnit port for PHP/PHPUnit.
--------------------------------------------------------------------------------
Update Information:
New upstream version (only cleanups)
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-phpunit-DbUnit' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7563
2015-08-28 05:20:11.182706
--------------------------------------------------------------------------------
Name : composer
Product : Fedora EPEL 7
Version : 1.0.0
Release : 0.8.20150804gitc83650f.el7
URL : https://getcomposer.org/
Summary : Dependency Manager for PHP
Description :
Composer helps you declare, manage and install dependencies of PHP projects,
ensuring you have the right stack everywhere.
Documentation: https://getcomposer.org/doc/
--------------------------------------------------------------------------------
Update Information:
New snapshot.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update composer' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7581
2015-08-28 05:20:11.182674
--------------------------------------------------------------------------------
Name : php-phpunit-PHPUnit
Product : Fedora EPEL 7
Version : 4.8.0
Release : 1.el7
URL : https://github.com/sebastianbergmann/phpunit
Summary : The PHP Unit Testing framework
Description :
PHPUnit is a family of PEAR packages that supports the development of
object-oriented PHP applications using the concepts and methods of Agile
Software Development, Extreme Programming, Test-Driven Development and
Design-by-Contract Development by providing an elegant and robust framework
for the creation, execution and analysis of Unit Tests.
--------------------------------------------------------------------------------
Update Information:
**Version 4.8.0** - 2015-08-07 **Added** * Added `--check-version`
commandline switch to check whether the current version of PHPUnit is used (PHAR
only) * Added `--no-coverage` commandline switch to ignore code coverage
configuration from the configuration file * Implemented
[#1663](https://github.com/sebastianbergmann/phpunit/issues/1663): The Crap4J
report's threshold is now configurable * Merged
[#1728](https://github.com/sebastianbergmann/phpunit/issues/1728): Implemented
the `@testWith` annotation as "syntactic sugar" for data providers * Merged
[#1739](https://github.com/sebastianbergmann/phpunit/issues/1739): Added support
to the commandline test runner for using options after arguments **Changed**
* Made the argument check of `assertContains()` and `assertNotContains()` more
strict to prevent undefined behavior such as
[#1808](https://github.com/sebastianbergmann/phpunit/issues/1808) * Changed the
name of the default group from `__nogroup__` to `default`
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-phpunit-PHPUnit' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7580
2015-08-28 05:20:11.182637
--------------------------------------------------------------------------------
Name : php-ocramius-code-generator-utils
Product : Fedora EPEL 7
Version : 0.3.2
Release : 1.el7
URL : https://github.com/Ocramius/CodeGenerationUtils
Summary : A set of code generator utilities built on top of PHP-Parsers
Description :
A set of code generator utilities built on top of PHP-Parsers that ease its use
when combined with Reflection.
--------------------------------------------------------------------------------
Update Information:
**nikic/php-parser 1.4.0** Added * Added interface
PhpParser\Node\FunctionLike, which is implemented by Stmt\ClassMethod,
Stmt\Function_ and Expr\Closure nodes. This interface provides getters for their
common subnodes. * Added Node\Stmt\ClassLike::getMethod() to look up a specific
method on a class/interface/trait. Fixed * Fixed isPublic() return value for
implicitly public properties and methods that define an additional modifier like
static or abstract. * Properties are now accepted by the trait builder. *
Fixed __HALT_COMPILER_OFFSET__ support on HHVM. **ocramius/code-generator-
utils 0.3.2** * Update nikic/php-parser to 1.3.*
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-ocramius-code-generator-utils' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-7580
2015-08-28 05:20:11.182637
--------------------------------------------------------------------------------
Name : php-PHPParser
Product : Fedora EPEL 7
Version : 1.4.0
Release : 1.el7
URL : https://github.com/nikic/PHP-Parser
Summary : A PHP parser written in PHP
Description :
A PHP parser written in PHP to simplify static analysis and code manipulation.
--------------------------------------------------------------------------------
Update Information:
**nikic/php-parser 1.4.0** Added * Added interface
PhpParser\Node\FunctionLike, which is implemented by Stmt\ClassMethod,
Stmt\Function_ and Expr\Closure nodes. This interface provides getters for their
common subnodes. * Added Node\Stmt\ClassLike::getMethod() to look up a specific
method on a class/interface/trait. Fixed * Fixed isPublic() return value for
implicitly public properties and methods that define an additional modifier like
static or abstract. * Properties are now accepted by the trait builder. *
Fixed __HALT_COMPILER_OFFSET__ support on HHVM. **ocramius/code-generator-
utils 0.3.2** * Update nikic/php-parser to 1.3.*
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-PHPParser' at the command line.
For more information, refer to "Managing Software with yum",
available at https://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------