This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
1,634 additions
and
613 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<?php | ||
// @codingStandardsIgnoreFile | ||
use PhlyBlog\AuthorEntity; | ||
use PhlyBlog\EntryEntity; | ||
|
||
$author = new AuthorEntity(); | ||
$author->setId('matthew'); | ||
$author->setName("Matthew Weier O'Phinney"); | ||
$author->setEmail('[email protected]'); | ||
$author->setUrl('http://mwop.net/'); | ||
|
||
$post = new EntryEntity(); | ||
$post->setTitle('Zend Framework 2.3.9 and 2.4.2 Released!'); | ||
$post->setAuthor($author); | ||
$post->setDraft(false); | ||
$post->setPublic(true); | ||
$post->setCreated(new DateTime('2015-05-11 13:00', new DateTimezone('America/Chicago'))); | ||
$post->setUpdated(new DateTime('2015-05-11 13:00', new DateTimezone('America/Chicago'))); | ||
$body =<<<'EOS' | ||
<p> | ||
The Zend Framework community is pleased to announce the immediate availability | ||
of: | ||
</p> | ||
<ul> | ||
<li>Zend Framework <strong>2.3.9</strong></li> | ||
<li>Zend Framework <strong>2.4.2</strong></li> | ||
</ul> | ||
<ul> | ||
<li> | ||
<a href="/downloads/latest">http://framework.zend.com/downloads/latest</a> | ||
</li> | ||
</ul> | ||
<p> | ||
These are the ninth and second feature releases, respectively, for these minor versions. The releases contain fixes for BC breaks introduced in 2.3.8 and 2.4.1. | ||
</p> | ||
EOS; | ||
$post->setBody($body); | ||
|
||
$extended =<<<'EOC' | ||
<h2>Backwards Compatibility Fixes</h2> | ||
<p> | ||
Zend Framework versions 2.3.8 and 2.4.2 introduced fixes for | ||
<a href="/security/advisory/ZF2015-04">ZF2015-04</a>, a serious vulnerability | ||
in the <code>Zend\Mail</code> and <code>Zend\Http</code> components.</li> | ||
</ul> | ||
<p> | ||
Unfortunately, in fixing the security vulnerabilities, several use cases | ||
were broken, due to lack of tests covering the specific cases. These include: | ||
</p> | ||
<ul> | ||
<li><a href="https://github.com/zendframework/zf2/issues/7514">Mail messages with multipart bodies were providing an incorrect header continuation.</a></li> | ||
<li><a href="https://github.com/zendframework/zf2/issues/7506">Mail messages containing UTF-8 addresses were not being improperly tagged as invalid.</a></li> | ||
<li><a href="https://github.com/zendframework/zf2/issues/7507">Cookies with array values were not being serialized and urlencoded, and thus were improperly tagged as invalid.</a></li> | ||
</ul> | ||
<p> | ||
The new releases fix these issues, ensuring that applications will be both protected from ZF2015-04, as well as continue to work under common use cases. Regression tests were added to ensure the functionality continues to work in the future. | ||
</p> | ||
<h3>Changelog</h3> | ||
<p> | ||
For the full changelog on each version: | ||
</p> | ||
<ul> | ||
<li><a href="/changelog/2.4.2">http://framework.zend.com/changelog/2.4.2</a></li> | ||
<li><a href="/changelog/2.3.9">http://framework.zend.com/changelog/2.3.9</a></li> | ||
</ul> | ||
<h2>Long Term Support</h2> | ||
<p> | ||
As a reminder, the 2.4 series is our current Long Term Support release, and will | ||
receive security and critical bug fixes until 31 March 2018. | ||
</p> | ||
<p> | ||
You can opt-in to the LTS version by pinning your <code>zendframework/zendframework</code> | ||
<a href="https://getcomposer.org">Composer</a> requirement to the version <code>~2.4.0</code>. | ||
</p> | ||
<p> | ||
<a href="/long-term-support">Visit our Long Term Support information page</a> for more information. | ||
</p> | ||
<h2>Roadmap</h2> | ||
<p> | ||
We are currently <a href="/blog/announcing-the-zend-framework-3-roadmap.html">shifting gears | ||
towards Zend Framework 3</a> development. | ||
</p> | ||
<h2>Thank You!</h2> | ||
<p> | ||
I would like to thank <a href="https://github.com/Maks3w">Maks3w</a> | ||
for assisting with triage and patching of these issues. | ||
</p> | ||
EOC; | ||
$post->setExtended($extended); | ||
|
||
return $post; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,82 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<feed xmlns="http://www.w3.org/2005/Atom"> | ||
<title type="text">Author: Matthew Weier O'Phinney - ZF Blog</title> | ||
<updated>2015-05-07T21:00:00+0000</updated> | ||
<updated>2015-05-11T18:00:00+0000</updated> | ||
<generator uri="http://framework.zend.com" version="2">Zend_Feed_Writer</generator> | ||
<link rel="alternate" type="text/html" href="http://framework.zend.com/blog/author/matthew.html"/> | ||
<link rel="self" type="application/atom+xml" href="http://framework.zend.com/blog/author/matthew-atom.xml"/> | ||
<id>http://framework.zend.com/blog/author/matthew.html</id> | ||
<entry xmlns:xhtml="http://www.w3.org/1999/xhtml"> | ||
<title type="html"><![CDATA[Zend Framework 2.3.9 and 2.4.2 Released!]]></title> | ||
<published>2015-05-11T18:00:00+0000</published> | ||
<updated>2015-05-11T18:00:00+0000</updated> | ||
<link rel="alternate" type="text/html" href="http://framework.zend.com/blog/zend-framework-2-3-9-and-2-4-2-released.html"/> | ||
<id>http://framework.zend.com/blog/zend-framework-2-3-9-and-2-4-2-released.html</id> | ||
<author> | ||
<name>Matthew Weier O'Phinney</name> | ||
<email>[email protected]</email> | ||
<uri>http://mwop.net/</uri> | ||
</author> | ||
<content xmlns:xhtml="http://www.w3.org/1999/xhtml" type="xhtml"> | ||
<xhtml:div xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:p>The Zend Framework community is pleased to announce the | ||
immediate availability of:</xhtml:p> | ||
<xhtml:ul> | ||
<xhtml:li>Zend Framework <xhtml:strong>2.3.9</xhtml:strong></xhtml:li> | ||
<xhtml:li>Zend Framework <xhtml:strong>2.4.2</xhtml:strong></xhtml:li> | ||
</xhtml:ul> | ||
<xhtml:ul> | ||
<xhtml:li><xhtml:a href="/downloads/latest">http://framework.zend.com/downloads/latest</xhtml:a></xhtml:li> | ||
</xhtml:ul> | ||
<xhtml:p>These are the ninth and second feature releases, respectively, | ||
for these minor versions. The releases contain fixes for BC breaks | ||
introduced in 2.3.8 and 2.4.1.</xhtml:p> | ||
<xhtml:h2>Backwards Compatibility Fixes</xhtml:h2> | ||
<xhtml:p>Zend Framework versions 2.3.8 and 2.4.2 introduced fixes for | ||
<xhtml:a href="/security/advisory/ZF2015-04">ZF2015-04</xhtml:a>, a serious | ||
vulnerability in the <xhtml:code>Zend\Mail</xhtml:code> and | ||
<xhtml:code>Zend\Http</xhtml:code> components.</xhtml:p> | ||
<xhtml:p>Unfortunately, in fixing the security vulnerabilities, several | ||
use cases were broken, due to lack of tests covering the specific | ||
cases. These include:</xhtml:p> | ||
<xhtml:ul> | ||
<xhtml:li><xhtml:a href="https://github.com/zendframework/zf2/issues/7514">Mail | ||
messages with multipart bodies were providing an incorrect header | ||
continuation.</xhtml:a></xhtml:li> | ||
<xhtml:li><xhtml:a href="https://github.com/zendframework/zf2/issues/7506">Mail | ||
messages containing UTF-8 addresses were not being improperly | ||
tagged as invalid.</xhtml:a></xhtml:li> | ||
<xhtml:li><xhtml:a href="https://github.com/zendframework/zf2/issues/7507">Cookies with | ||
array values were not being serialized and urlencoded, and thus | ||
were improperly tagged as invalid.</xhtml:a></xhtml:li> | ||
</xhtml:ul> | ||
<xhtml:p>The new releases fix these issues, ensuring that applications | ||
will be both protected from ZF2015-04, as well as continue to work | ||
under common use cases. Regression tests were added to ensure the | ||
functionality continues to work in the future.</xhtml:p> | ||
<xhtml:h3>Changelog</xhtml:h3> | ||
<xhtml:p>For the full changelog on each version:</xhtml:p> | ||
<xhtml:ul> | ||
<xhtml:li><xhtml:a href="/changelog/2.4.2">http://framework.zend.com/changelog/2.4.2</xhtml:a></xhtml:li> | ||
<xhtml:li><xhtml:a href="/changelog/2.3.9">http://framework.zend.com/changelog/2.3.9</xhtml:a></xhtml:li> | ||
</xhtml:ul> | ||
<xhtml:h2>Long Term Support</xhtml:h2> | ||
<xhtml:p>As a reminder, the 2.4 series is our current Long Term Support | ||
release, and will receive security and critical bug fixes until 31 | ||
March 2018.</xhtml:p> | ||
<xhtml:p>You can opt-in to the LTS version by pinning your | ||
<xhtml:code>zendframework/zendframework</xhtml:code> <xhtml:a href="https://getcomposer.org">Composer</xhtml:a> requirement to the version | ||
<xhtml:code>~2.4.0</xhtml:code>.</xhtml:p> | ||
<xhtml:p><xhtml:a href="/long-term-support">Visit our Long Term Support | ||
information page</xhtml:a> for more information.</xhtml:p> | ||
<xhtml:h2>Roadmap</xhtml:h2> | ||
<xhtml:p>We are currently <xhtml:a href="/blog/announcing-the-zend-framework-3-roadmap.html">shifting gears | ||
towards Zend Framework 3</xhtml:a> development.</xhtml:p> | ||
<xhtml:h2>Thank You!</xhtml:h2> | ||
<xhtml:p>I would like to thank <xhtml:a href="https://github.com/Maks3w">Maks3w</xhtml:a> for assisting with triage | ||
and patching of these issues.</xhtml:p> | ||
</xhtml:div> | ||
</content> | ||
</entry> | ||
<entry xmlns:xhtml="http://www.w3.org/1999/xhtml"> | ||
<title type="html"><![CDATA[Zend Framework 2.3.8 and 2.4.1 Released!]]></title> | ||
<published>2015-05-07T21:00:00+0000</published> | ||
|
@@ -946,52 +1017,6 @@ also want to thank <xhtml:a href="https://github.com/ocramius">Marco | |
Pivetta</xhtml:a> in particular, for the tireless effort he has made in | ||
triaging and merging pull requests for the 2.3.4 release; his | ||
efforts have been invaluable.</xhtml:p> | ||
</xhtml:div> | ||
</content> | ||
</entry> | ||
<entry xmlns:xhtml="http://www.w3.org/1999/xhtml"> | ||
<title type="html"><![CDATA[Zend Framework 1.12.9, 2.2.8, and 2.3.3 Released!]]></title> | ||
<published>2014-09-17T15:30:00+0000</published> | ||
<updated>2014-09-17T15:30:00+0000</updated> | ||
<link rel="alternate" type="text/html" href="http://framework.zend.com/blog/zend-framework-1-12-9-2-2-8-and-2-3-3-released.html"/> | ||
<id>http://framework.zend.com/blog/zend-framework-1-12-9-2-2-8-and-2-3-3-released.html</id> | ||
<author> | ||
<name>Matthew Weier O'Phinney</name> | ||
<email>[email protected]</email> | ||
<uri>http://mwop.net/</uri> | ||
</author> | ||
<content xmlns:xhtml="http://www.w3.org/1999/xhtml" type="xhtml"> | ||
<xhtml:div xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:p>The Zend Framework community is pleased to announce the | ||
immediate availability of:</xhtml:p> | ||
<xhtml:ul> | ||
<xhtml:li>Zend Framework <xhtml:strong>1.12.9</xhtml:strong></xhtml:li> | ||
<xhtml:li>Zend Framework <xhtml:strong>2.2.8</xhtml:strong></xhtml:li> | ||
<xhtml:li>Zend Framework <xhtml:strong>2.3.3</xhtml:strong></xhtml:li> | ||
</xhtml:ul> | ||
<xhtml:ul> | ||
<xhtml:li><xhtml:a href="/downloads/latest">http://framework.zend.com/downloads/latest</xhtml:a></xhtml:li> | ||
</xhtml:ul> | ||
<xhtml:p>These are security releases; we strongly encourage users to | ||
upgrade.</xhtml:p> | ||
<xhtml:h2>Security Fixes</xhtml:h2> | ||
<xhtml:p>Two new security advisories have been made:</xhtml:p> | ||
<xhtml:ul> | ||
<xhtml:li><xhtml:a href="/security/advisory/ZF2014-05">ZF2014-05</xhtml:a>, which | ||
mititages null byte poisoning of the password provided for LDAP | ||
authentication, thus prevening unauthorized LDAP binding. This | ||
corrects for unpatched versions of PHP (versions 5.5.11 and below, | ||
5.4.27 and below, and any prior releases).</xhtml:li> | ||
<xhtml:li><xhtml:a href="/security/advisory/ZF2014-06">ZF2014-06</xhtml:a>, which | ||
mitigates null byte poisoning of quoted SQL values provided to the | ||
sqlsrv extension, thus preventing a potential SQL injection | ||
vector.</xhtml:li> | ||
</xhtml:ul> | ||
<xhtml:p>For more information, follow the links above; if you use either | ||
of the components affected, please upgrade as soon as possible.</xhtml:p> | ||
<xhtml:h2>Thank You!</xhtml:h2> | ||
<xhtml:p>Thank you to the two reporters of the security issues, Matthew | ||
Daley (LDAP vulnerability) and Jonas Sandström (sqlsrv | ||
vulnerability).</xhtml:p> | ||
</xhtml:div> | ||
</content> | ||
</entry> | ||
|
Oops, something went wrong.