Propel 1.6.4 is Released
Propel 1.6.4 is now available, and it's the first bug fixes only release.
The release is available on GitHub under the 1.6.4 tag on GitHub, as PEAR package (runtime & generator) and as archives (ZIP and TAR). But this release is also available through Composer: propel/propel1.
As usual, the API documentation is at: http://api.propelorm.org/, and here is the CHANGELOG. Thanks to all contributors.
6 comments
Francois Zaninotto said...
There is ONE new feature in this release, see http://propel.posterous.com/propel-queries-now-with-manual-binding-too
William DURAND said...
It's a fix IMO, as it solves missing use cases but you're right, and if you dig a bit more you'll find more feature fixes ;)
Feb 09, 2012
Janjaap van Velthooven said...
I don't know if this is the correct place to mention this..On files.propelorm.org the file propel-1.6.4.tar.gz is actually the zip file while propel-1.6.4.zip is the tar archive.
Mar 05, 2012
Nikolay Robuk said...
Hi!I found a problem in this method.
cant send args as array througth this method.
I changed method "call_user_func_array" to "call_user_func" to fix this problem.
public function filterByArray($conditions)
{
foreach ($conditions as $column => $args) {
call_user_func_array(array($this, 'filterBy' . $column), is_array($args) ? $args : array($args));
}
return $this;
}
Francois Zaninotto said...
@Nikolay Robu: Please use the Issue system on the Propel repository for such fixes.