Skip to content

Releases: jamesfer/cypher-query-builder

v4.4.0

25 Aug 11:10
Compare
Choose a tag to compare

4.4.0 (2019-08-25)

Features

v4.3.1

25 Aug 10:56
Compare
Choose a tag to compare

4.3.1 (2019-08-25)

Bug Fixes

  • return: pass options from query interface to return clause (f35ebda)

v4.3.0

25 Aug 10:30
Compare
Choose a tag to compare

4.3.0 (2019-08-25)

Features

  • return: add distinct option (205960a), closes #90

v4.2.0

06 Aug 10:28
Compare
Choose a tag to compare

4.2.0 (2019-08-06)

Features

  • Where: allow RegExp objects directly in where clause (595b6a9), closes #13

v4.1.0

16 Jul 12:03
Compare
Choose a tag to compare

4.1.0 (2019-07-16)

Features

  • Union: create union clause (7e3b7c8)

v4.0.2

16 Jul 10:20
Compare
Choose a tag to compare

4.0.2 (2019-07-16)

Bug Fixes

v4.0.1

25 Jun 23:09
Compare
Choose a tag to compare

4.0.1 (2019-06-25)

Bug Fixes

  • update code style and test errors (1b94118)

v4.0.0

25 Jun 10:31
Compare
Choose a tag to compare

4.0.0 (2019-06-25)

Bug Fixes

  • remove unused rxjs peer dependency (ae0c95d)
  • Delete: change the default behaviour of delete clause not to use detach (9f367c7)
  • Limit: use a parameter for limit number (025c873)
  • Skip: use a parameter in skip number (7f6360c)
  • Skip, Limit: make skip and limit only accept number amounts (cfb62c3)

BREAKING CHANGES

  • Skip, Limit: The type of skip and limit clauses no longer accept a string. This will only effect
    typescript users, there is no breaking change for javascript users.
  • Delete: The .delete method now uses detach: false by default meaning that it will
    become a plain old DELETE clause in cypher. To retain the previous behaviour of becoming a DETACH DELETE clause by default, use the .detachDelete method instead.
  • Skip: A string expression as the skip number is no longer accepted. The argument must be
    a number.
  • Limit: A string expression as the limit number is no longer accepted. The argument must be
    a number.

v3.8.5

15 Nov 23:37
Compare
Choose a tag to compare

3.8.5 (2018-11-15)

Bug Fixes

  • tell rollup to output external modules with node style paths (248f039), closes #68

v3.8.4

06 Nov 08:09
Compare
Choose a tag to compare

3.8.4 (2018-11-06)

Bug Fixes

  • fix conflicting any promise types (13a9eff)