From 79259c4870d808ed06c4725372c43fd3c9330c56 Mon Sep 17 00:00:00 2001 From: juanluispaz Date: Thu, 7 Oct 2021 23:39:55 +0200 Subject: [PATCH] Release ts-sql-query 1.19.0 --- docs/CHANGELOG.md | 11 +++++++++++ package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 62da6ec..0416643 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## v1.19.0 (6 Sep 2021) + +**Changes**: + +- Add support to numeric date/time in Sqlite that is expressed as bigint in JavaScript by the database connector (By example, using `defaultSafeIntegers` option in BetterSqlite3) + +**Bug fixes**: + +- Fix typo in Sqlite `treatUnexpectedStringDateTimeAsUTC` connection option (wrongly named: `treatUxepectedStringDateTimeAsUTC`) +- Fix typo in Sqlite `unexpectedUnixDateTimeAreMilliseconds` connection option (wrongly named: `uxepectedUnixDateTimeAreMilliseconds`) + ## v1.18.0 (6 Sep 2021) **Changes**: diff --git a/package.json b/package.json index 020af8d..8f831eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-sql-query", - "version": "1.18.0", + "version": "1.19.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",