From bcc99fd44d33dd3b9b73f47077871320976179a6 Mon Sep 17 00:00:00 2001 From: kares Date: Mon, 2 Nov 2015 07:31:34 +0100 Subject: [PATCH] prepare for release 1.3.19 --- History.md | 11 +++++++++++ lib/arjdbc/version.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index 9a427215d..ae78e3cfb 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,14 @@ +## 1.3.19 (11/02/15) + +- [sqlite] add supports_partial_index? and remove duplicate support_index_sort_order? +- [sqlite] fix missing save-point removal in release_savepoint +- test and fix current savepoint_name compatibility with AR versions (mostly 4.2) + * adjust returned current savepoint name to better match with AR (< 4.2) + * make sure savepoint rollback behave AR compatibly +- [mysql] revert to extracting BIT into an int as tinyint(1) (#687) +- [mysql] do not validate connection_alive_sql as there's a special /* ping */ query +- support timeouts on connection validation with `config[:connection_alive_timeout]` + ## 1.3.18 (09/14/15) - since arel visitor instances might get re-used we need to avoid the @instance diff --git a/lib/arjdbc/version.rb b/lib/arjdbc/version.rb index d325b890b..bbd67312f 100644 --- a/lib/arjdbc/version.rb +++ b/lib/arjdbc/version.rb @@ -1,5 +1,5 @@ module ArJdbc - VERSION = "1.3.18" + VERSION = "1.3.19" # @deprecated module Version # @private 1.2.x compatibility