From 6efa21198f7f6fe41247ca09baf5f713652f44c0 Mon Sep 17 00:00:00 2001 From: juanluispaz Date: Sun, 18 Feb 2024 20:56:42 +0100 Subject: [PATCH] Release ts-sql-query 1.59.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 6683cac..08936a6 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## v1.59.0 (18 Feb 2024) + +**Changes**: + +- Add support to more custom types: `customInt`, `customDouble`, `customUuid`, `customLocalDate`, `customLocalTime`, `customLocalDateTime`. +- Add the possibility to get some metadata regarding the query execution in a query runner: the query execution stack, information about the function that requests to execute the query, knowing if the query is a select count in a select page, allowing to specify an execution name, allow to specify additional metadata for the execution. + +**Documentation changes**: + +- Improve documentation, making the simplified type definition more explicit. + ## v1.58.0 (28 Jan 2024) **Changes**: diff --git a/package.json b/package.json index b1e4bfd..5ccacda 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-sql-query", - "version": "1.58.0", + "version": "1.59.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",