Releases: skipperbent/pecee-pixie
Releases · skipperbent/pecee-pixie
Version 4.0.0
- Added support for PHP 7-support only (thanks to @mrcnpdlk).
- Removed deprecated
prefix
method inQueryBuilderHandler
. - Made
table
parameter inalias
method optional. - Added better support for Transactions (thanks to @mrcnpdlk).
- Better syntax and PHPDoc documentation.
- Optimisations + bugfixes.
- Updated documentation.
Release notes
This version requires PHP 7.0 or higher. Any references to $queryHandler->prefix()
should be changed to $queryHandler->alias()
before updating.
Version 3.4.2
Version 3.4.1
- Fixed issue with null values and added unit-test for it.
Version 3.4.0
- Fixed issue with wrong usage of
join
function (thanks to @mrcnpdlk) - Minimum PHP version raised to >=5.5.0 (thanks to @mrcnpdlk)
- Added many new PHP-docs hint types and fixed data-types and description in many of the existing.
- Changed code style to comply with more with PSR-2.
- Added better data-type handling for PDO parameters.
- Loads of cleanup and optimizations which should be more memory efficient.
- Fixed homepage-url in
composer.json
. - Updated documentation.
Version 3.3.0
- Better codeinspection (thanks to @mrcnpdlk)
- Fixed issues related to groupBy functionality in combination with
Raw
andClosures
objects.
Version 3.2.3
- Fixed notice when calling
$qb->first()
method by reverting to old behavior (issue: #12) - Fixed documentation so it uses
getQueryBuilder()
when creating new connection.
Version 3.2.2
- Added quotation to alias names.
- Fixed failing unit tests.
- Minor optimisations.
Version 3.2.1
- Fixed
alias
method.
Version 3.2.0
- Changed event behavior so it always fires with
$queryObject
available. This makes it possible to get the raw-query before and after each events.
Version 3.1.0
- Renamed
prefix
method toalias
inQueryBuilderHandler
. - Added
testPrefix
unit-test inQueryBuilderBehaviorTest
. - Fixed table aliasing error (issue: #4 - thanks to @mrcnpdlk).
- Fixed correct return-type (issue: #3 - thanks to @mrcnpdlk).
- Optimized alias-handling.
- Added depricated alias method (
prefix
) inQueryBuilderHandler
to avoid compability issues. - Fixed method parameter naming in
alias
method inQueryBuilderHandler
. - Renamed
testPrefix
totestAlias
inQueryBuilderBehaviorTest
class. - Updated documentation.