Skip to content

Releases: enes-sahin/fluent-mysql

v1.2.2

22 May 23:04
09cf5b9
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.1...v1.2.2

v1.2.1

15 Jun 14:20
f301b0e
Compare
Choose a tag to compare

Fixed

  • Fix pool variable checking in query method See code

Replace following code

let connection = this.pool !== undefined ? this.pool : this.connection;

with

let connection = this.pool !== null ? this.pool : this.connection;

v1.2.0

05 Jun 23:37
d3143e3
Compare
Choose a tag to compare

Added

  • Enable pool connections

Fixed

  • Fix mistypes in some variable names
  • Fix wrong return value of exists() function
  • Fix undefined returns in find() and first() methods

v1.1.0

09 Mar 21:10
fd3dd77
Compare
Choose a tag to compare

Added

  • Add babel to transpile ES6 code to older versions.

Fixed

  • Query results return json now, not RowDataPacket Object.
  • findId method return single item instead of array.

v1.0.5

05 Mar 14:23
debb203
Compare
Choose a tag to compare

Changed

  • Remove publish-gpr from npmpublish.yml

v1.0.4

05 Mar 13:57
88abfa4
Compare
Choose a tag to compare

Changed

  • Remove exit 1 from test script in package.json

v1.0.2

05 Mar 13:07
3448892
Compare
Choose a tag to compare

Added

  • Add leftJoin and rightJoin methods

Updated

  • Add test directory into .gitignore

v1.0.1

05 Mar 13:55
0d77f03
Compare
Choose a tag to compare

Changed

  • Changes README.md code markdown fron node to js

Fixed