Skip to content

v.0.9.3

Compare
Choose a tag to compare
@vitaly-t vitaly-t released this 10 Apr 17:31
· 2369 commits to master since this release

A change was made in support for PostgreSQL Array Type, the feature that was first introduced with 0.9.2. The change is in the syntax of the output value format to use the alternative, open array format of array[] instead of the string format of '{}', because the latter requires use of double quotes around strings, making it inconsistent with the default single-quotes for strings, and as a result arrays of strings didn’t format properly.

Other changes made in the library:

  • Boolean format was changed from the capitalized form of TRUE/FALSE to true/false, for consistency with everything else in the library;
  • A few changes have been made in error handling: improved error messages and English;
  • Documentation updates, TOC fixed;
  • Improved test coverage.

It is worth noting that while still dealing with issue #14, it is generally a good idea for anyone using the library to also use the promise override feature, switching over to the promise of your choice, so that your code is never affected by issues related to the default promise used by the library.