From 72065c179772c18dc4707a1dfd5990ec8b09fd46 Mon Sep 17 00:00:00 2001 From: Igor Savin Date: Tue, 19 Jul 2022 00:24:38 +0300 Subject: [PATCH] Prepare to release 2.2.0 --- CHANGELOG.md | 17 +++++++++++++++++ lib/.gitignore | 2 +- package.json | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82c09dbc5e..914649fcdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Master (Unreleased) +# 2.2.0 - 19 July, 2022 + +### New features: + +- Inline primary key creation for postgres flavours #5233 +- SQLite: Add warning for undefined connection file #5223 +- MSSQL: Add JSON parameter support for connection #5200 + +### Bug fixes: + +- PostgreSQL: add primaryKey option for uuid #5212 + +### Typings: + +- Add promisable and better types #5222 +- Update raw query bind parameter type #5208 + # 2.1.0 - 26 May, 2022 ### New features: diff --git a/lib/.gitignore b/lib/.gitignore index 6907100de1..f93cceef40 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -7,4 +7,4 @@ **/*.js.map # Do not include .js files from .ts files -dialects/index.js +dialects\index.js diff --git a/package.json b/package.json index ef887bd98c..85c6006dbf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "knex", - "version": "2.1.0", + "version": "2.2.0", "description": "A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3", "main": "knex", "types": "types/index.d.ts",