Skip to content
This repository was archived by the owner on Mar 14, 2019. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix the 1.12.8 release announcement
  • Loading branch information
ezimuel committed Sep 4, 2014
commit c60e89c86f0e057958dff74411a4fe499bc4fb25
15 changes: 14 additions & 1 deletion data/posts/2014-08-26-1.12.8-Released.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
<h2>Notable Changes</h2>

<ul>
<li><a href="https://github.com/zendframework/zf1/pull/418">#418</a> Improved regex for
SQL group, order, from statement. This is an improvement of the Security Advisory
<a href="http://framework.zend.com/security/advisory/ZF2014-04">ZF2014-04</a>,
to prevent potential SQL injection. This PR that can be a potential BC break for
complex SQL code. See below for more information.</li>
<li><a href="https://github.com/zendframework/zf1/pull/360">#360</a> updates Zend_Locale
to use <a href="http://cldr.unicode.org">CLDR</a> version 25.</li>
<li><a href="https://github.com/zendframework/zf1/pull/98">#98</a> allows editing and
Expand All @@ -47,7 +52,7 @@
<kbd>Zend_Pdf::resetJavaScript()</kbd>.</li>
<li><a href="https://github.com/zendframework/zf1/pull/414">#414</a> adds the
<kbd>Microsoft_Console</kbd> component from the Windows Azure SDK for PHP into
the <kbd>Zend_Service_Console</kbd> component, ensuring that WindowsAzure
the <kbd>Zend_Service_Console</kbd> component, ensuring that WindowsAzure
command line functionality included in the framework can now work.</li>
<li><a href="https://github.com/zendframework/zf1/pull/385">#385</a> adds support for
DateTime fractional seconds under PHP 5.6+.</li>
Expand All @@ -62,6 +67,14 @@

<p>See <a href="http://framework.zend.com/changelog/1.12.8">the changelog</a> for full details.</p>

<h2>Potential BC break</h2>

<p>The PR <a href="https://github.com/zendframework/zf1/pull/418">#418</a> can introduces
potential BC break in presence of complex SQL statements (for instance using SQL sub-functions).</p>
<p>To fix this you can use <strong>Zend_Db_Expr()</strong> in the group(), order() or from()
functions, if your SQL code doesn't work after the upgrade to ZF 1.12.8.</p>


<h2>Thank You!</h2>

<p>
Expand Down