Skip to content

Releases: Sharaal/sql-pg

Extracted readme-releases to own npm package

15 Oct 10:14
Compare
Choose a tag to compare

Patch

  • Extracted readme-releases to own npm package

Adding the README.md change into the npm version commit

14 Oct 14:30
Compare
Choose a tag to compare

Patch

  • The changes of the releases in the README.md is now part of the npm version commit before the tag is created. No more additional manual commit after the tag is needed

Link the releases in the README.md

14 Oct 14:24
Compare
Choose a tag to compare

Patch

  • Link the releases in the README.md

v7.0.1

14 Oct 14:17
Compare
Choose a tag to compare
7.0.1

Refactor Migrations

14 Oct 14:16
Compare
Choose a tag to compare

Major

  • Refactor JavaScript Migration files to get sql param instead of client and a new additional param with the object of the column helper (#37)

From:

module.exports = async client => {}

To:

module.exports = async (sql, { columns, updatedAt }) => {}

Minor

  • Added support to use a column list without conditions in Selection Methods (#30)

e.g.:

await sql.any('table', ['column1', 'column2'])