Skip to content

Releases: thecodingmachine/magic-query

v1.4.2

20 Jul 16:54
1294fd8

Choose a tag to compare

BUGFIX:

  • Fix ORA-00920 when using IN with empty array: field IN []
    • Previously rewritten to FALSE
    • Now rewrites to 0 <> 0

v1.4.1

28 Apr 09:17
e8d613c

Choose a tag to compare

Improvements:

Bugfix:

v1.4.0

23 Jan 09:41
2814641

Choose a tag to compare

New features:

Major changes:

  • Removing support for Twig 1, adding support for Twig 3 #64 (@moufmouf)

Bugfixes:

  • NOT IN parameters are not adding parenthesis automatically #58 (@moufmouf)

v1.3.0

05 Aug 15:39
bc9b2f5

Choose a tag to compare

New features:

  • Adding a new method to generate prepared statement without replacing the values. This can be used to cache the query transformation completely and results in improved performances. #45 @moufmouf

Bugfix:

Minor:

  • Fixing Travis by adding explicit MySQL requirement #53 @moufmouf

v1.2.14

26 Apr 16:07
6295522

Choose a tag to compare

Bugfix release

  • #46 Fixing cartesian product toSql

v1.2.11

24 Apr 11:16
18b9848

Choose a tag to compare

Performance

  • #44 Drastically improving performance by caching the generate SQL for a given set of parameter keys.

v1.2.10

11 Apr 14:45
a6efcac

Choose a tag to compare

Bugfix release

  • #43 Fixing the generation of "MATCH AGAINST" functions. Credits to @Denis74RUS

Union queries can be used in subqueries

22 Nov 10:29
221dbc9

Choose a tag to compare

Merge pull request #42 from moufmouf/union_query

Subqueries can be union queries

Adding support for UNION queries

17 Nov 15:02
cb2efea

Choose a tag to compare

Merge pull request #41 from moufmouf/union_query

Adding support for UNION queries

Bugfix release

08 Nov 11:29
b9e4815

Choose a tag to compare

Fixing generation of SQL for aggregate functions with multiple parameters.

See database.tdbm/issues#151