Skip to content

Releases: skipperbent/pixie

Version 2.0.9

12 Dec 11:21

Choose a tag to compare

  • Fixed notices.

Version 2.0.8

08 Dec 08:43

Choose a tag to compare

  • Optimisations + bugfixes.

Version 2.0.7

07 Dec 14:58

Choose a tag to compare

  • Added support for subQueries in where statements - plus better handling of Raw objects in where statements:

Example:

$qb->where($qb->subQuery($subQuery), '!=', 'value')

Version 2.0.6

31 Oct 22:23

Choose a tag to compare

  • Fixed table subquery no longer working.

Version 2.0.5

27 Oct 17:03

Choose a tag to compare

  • Added support for custom table prefixes/aliases.

Very basic example:

$query->addPrefix('post', 'child');
$query->where('id', '=', 2);

Will output:

SELECT * FROM post AS child WHERE id = 2

Version 2.0.4

02 Jun 19:49

Choose a tag to compare

  • Using where() with false boolean value on PHP 5.6 causes query to be invalid.

Version 2.0.3

02 Jun 19:06

Choose a tag to compare

  • Optimisations.

Version 2.0.2

02 Jun 18:52

Choose a tag to compare

  • Added closure check in where method.

Version 2.0.1

02 Jun 18:38

Choose a tag to compare

  • Added support for all events (event-*)
  • Fixed notices
  • Added support for not defining table.
  • If null is used as value if not in where method - whereNull will now be used.