--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-Translation
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/components
Summary : Symfony2 Translation Component
Description :
Translation provides tools for loading translation files and generating
translated strings from these including support for pluralization.
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-Translation' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-HttpKernel
Product : Fedora EPEL 6
Version : 2.2.5
Release : 2.el6
URL : http://symfony.com/components
Summary : Symfony2 HttpKernel Component
Description :
HttpKernel provides the building blocks to create flexible and fast
HTTP-based frameworks.
It takes a Request as an input and should return a Response as an output.
Using this interface makes your code compatible with all frameworks using
the Symfony2 components. And this will give you many cool features for free.
Optional dependencies: memcache, memcached, mongo, xdebug
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-HttpKernel' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-Routing
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/doc/current/components/routing/index.html
Summary : Symfony2 Routing Component
Description :
The Routing Component maps an HTTP request to a set of configuration variables.
Optional dependency: DoctrineCommon
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-Routing' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-Yaml
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/doc/current/components/yaml/index.html
Summary : Symfony2 Yaml Component
Description :
The Symfony2 YAML Component parses YAML strings to convert them to PHP arrays.
It is also able to convert PHP arrays to YAML strings.
YAML, YAML Ain't Markup Language, is a human friendly data serialization
standard for all programming languages. YAML is a great format for your
configuration files. YAML files are as expressive as XML files and as readable
as INI files.
The Symfony2 YAML Component implements the YAML 1.2 version of the
specification.
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-Yaml' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-EventDispatcher
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/doc/current/components/event_dispatcher/index.html
Summary : Symfony2 EventDispatcher Component
Description :
The Symfony2 Event Dispatcher component implements the Observer
(http://en.wikipedia.org/wiki/Observer_pattern) pattern in a simple and
effective way to make all these things possible and to make your projects
truly extensible.
Take a simple example from the Symfony2 HttpKernel component. Once a Response
object has been created, it may be useful to allow other elements in the system
to modify it (e.g. add some cache headers) before it's actually used. To make
this possible, the Symfony2 kernel throws an event - kernel.response. Here's
how it works:
* A listener (PHP object) tells a central dispatcher object that it wants to
listen to the kernel.response event;
* At some point, the Symfony2 kernel tells the dispatcher object to dispatch
the kernel.response event, passing with it an Event object that has access to
the Response object;
* The dispatcher notifies (i.e. calls a method on) all listeners of the
kernel.response event, allowing each of them to make modifications to the
Response object.
Optional dependency: HttpKernel (php-symfony2-HttpKernel)
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-EventDispatcher' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-Form
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/doc/current/components/index.html
Summary : Symfony2 Form Component
Description :
Form provides tools for defining forms, rendering and binding request data
to related models. Furthermore it provides integration with the Validation
component.
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-Form' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-Filesystem
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/doc/current/components/filesystem.html
Summary : Symfony2 Filesystem Component
Description :
The Filesystem component provides basic utilities for the filesystem.
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-Filesystem' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-DomCrawler
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/doc/current/components/dom_crawler.html
Summary : Symfony2 DomCrawler Component
Description :
The DomCrawler Component eases DOM navigation for HTML and XML documents.
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-DomCrawler' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-Finder
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/doc/current/components/finder.html
Summary : Symfony2 Finder Component
Description :
The Finder Component finds files and directories via an intuitive fluent
interface.
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-Finder' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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-2013-11221
2013-08-16 15:53:12
--------------------------------------------------------------------------------
Name : php-symfony2-Console
Product : Fedora EPEL 6
Version : 2.2.5
Release : 1.el6
URL : http://symfony.com/doc/current/components/console/index.html
Summary : Symfony2 Console Component
Description :
The Console component eases the creation of beautiful and testable command line
interfaces.
The Console component allows you to create command-line commands. Your console
commands can be used for any recurring task, such as cron jobs, imports, or
other batch jobs.
--------------------------------------------------------------------------------
Update Information:
Updated to 2.2.5
Release blog posts:
* http://symfony.com/blog/symfony-2-2-4-released
* http://symfony.com/blog/security-releases-symfony-2-0-24-2-1-12-2-2-5-and-2…
Full change log: https://github.com/symfony/symfony/blob/v2.2.5/CHANGELOG-2.2.md
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-symfony2-Console' at the command line.
For more information, refer to "Managing Software with yum",
available at http://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
--------------------------------------------------------------------------------