Releases: juanluispaz/ts-sql-query
Releases · juanluispaz/ts-sql-query
1.40.0
Bug fixes:
- Fix missing parenthesis in a subtraction of a subtraction
1.39.0
Changes:
- Add support to the
returningclause in MariaDB ininsertanddelete(updatenot supported yet by MariaDB) - Add support to Prisma 4
1.38.0
Bug fixes:
- Fix select page count when a group by is used
1.37.0
Changes:
- Implement
allowWhenanddisallowWhenthat throws an error if the expression is used in the final query
Documentation changes:
- Fix copy&paste on update documentation refering delete
Bug fixes:
- Fix
minValueandmaxValuereturning wrong value - Fix missing
withquery when a query in awithclause depends on anotherwithquery
1.36.0
Bug fixes:
- Fix invalid uuid type in a reusable fragment
1.35.0
Bug fixes:
- Fix wrong return type of
minandmaxfunctions in the connection
1.34.0
Changes:
- Add
valueWhenNoValuefunction that allows to return a value when null or undefined were provided to the *IfValue function
1.33.0
Bug fixes:
- Fix "Invalid double value received from the db" when the database send a number as string with trailing 0
1.32.0
Changes:
- Implement
onlyWhenandignoreWhenfunction that allows ignoring a boolean expression under a condition - Add support to virtual columns on tables and views
- Implement the types
InsertableValues,UpdatableValuesandSelectedValuesthat allows to get the types for an insert, update and select with the proper types defined in the table without the other sql objects
1.31.0
Bug fixes:
- Fix misspelling in
left outer join