Releases: Sharaal/sql-pg
Releases · Sharaal/sql-pg
Extracted readme-releases to own npm package
Patch
- Extracted readme-releases to own npm package
Adding the README.md change into the npm version commit
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
Patch
- Link the releases in the README.md
v7.0.1
Refactor Migrations
Major
- Refactor JavaScript Migration files to get
sql
param instead ofclient
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'])