diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index e8b0347..3338ec8 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## v1.23.0 (8 Dec 2021) + +**Changes**: + +- Add support to complex projections, that allows to create inner objects in the result of a query +- Detect invalid query when a table in the from of an update appears in the returning clause in sqlite. Now it verify the restriction 7 of the returning clause in Sqlite +- Add support for Prisma 3 +- Add support for the interactive transactions in Prisma + +**Documentation changes**: + +- Add test strategy information + +**Bug fixes**: + +- Fix MariaDB/MySql `stringConcat` when an empty separator is used + ## v1.22.0 (24 Oct 2021) **Changes**: diff --git a/package.json b/package.json index 6a5d1e8..1954d01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-sql-query", - "version": "1.22.0", + "version": "1.23.0", "description": "Type-safe SQL query builder like QueryDSL or JOOQ in Java or Linq in .Net for TypeScript with MariaDB, MySql, Oracle, PostgreSql, Sqlite and SqlServer support.", "license": "MIT", "author": "juanluispaz", @@ -105,4 +105,4 @@ "src/**" ] } -} +} \ No newline at end of file