From 3ff75945846eda6dce74cf75188ad70fc9da8ee9 Mon Sep 17 00:00:00 2001 From: ulvii Date: Thu, 29 Nov 2018 13:50:03 -0800 Subject: [PATCH 1/3] Release | Changes for 7.1.3preview release --- CHANGELOG.md | 15 +++++++++++++++ README.md | 6 +++--- build.gradle | 2 +- pom.xml | 2 +- 4 files changed, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a12bbbfee8..d48c9d9845 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) +## [7.1.3] Preview Release +### Added +- Added a new SQLServerMetaData constructor for string values of length greater than 4000 [#876](https://github.com/Microsoft/mssql-jdbc/pull/876) + +### Fixed Issues +- Fixed an issue with Geography.point() having coordinates reversed [#853](https://github.com/Microsoft/mssql-jdbc/pull/853) +- Fixed intermittent failures in tests [#854](https://github.com/Microsoft/mssql-jdbc/pull/854) [#862](https://github.com/Microsoft/mssql-jdbc/pull/862) [#888](https://github.com/Microsoft/mssql-jdbc/pull/888) +- Fixed an issue with setAutoCommit() leaving a transaction open when running against Azure SQL Data Warehouse [#881](https://github.com/Microsoft/mssql-jdbc/pull/881) + +### Changed +- Changed query timeout logic to use a single thread [#842](https://github.com/Microsoft/mssql-jdbc/pull/842) +- Code cleanup [#857](https://github.com/Microsoft/mssql-jdbc/pull/857) [#873](https://github.com/Microsoft/mssql-jdbc/pull/873) +- Removed populating Lobs when calling wasNull() [#875](https://github.com/Microsoft/mssql-jdbc/pull/875) +- Improved retry logic for intermittent TLS1.2 issue [#882](https://github.com/Microsoft/mssql-jdbc/pull/882) + ## [7.1.2] Preview Release ### Added - Added support for JDK 11 [#824](https://github.com/Microsoft/mssql-jdbc/pull/824) [#837](https://github.com/Microsoft/mssql-jdbc/pull/837) [#807](https://github.com/Microsoft/mssql-jdbc/pull/807) diff --git a/README.md b/README.md index e872656d99..8fb19d3f95 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ To get the latest preview version of the driver, add the following to your POM f com.microsoft.sqlserver mssql-jdbc - 7.1.2.jre11-preview + 7.1.3.jre11-preview ``` @@ -123,7 +123,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 7.1.2.jre11-preview + 7.1.3.jre11-preview compile @@ -140,7 +140,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 7.1.2.jre11-preview + 7.1.3.jre11-preview compile diff --git a/build.gradle b/build.gradle index 9160debfea..d084185a8c 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ apply plugin: 'java' -version = '7.1.3-SNAPSHOT' +version = '7.1.3' def jreVersion = "" def testOutputDir = file("build/classes/java/test") def archivesBaseName = 'mssql-jdbc' diff --git a/pom.xml b/pom.xml index d8ab0a0dd4..7b8e944adc 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.microsoft.sqlserver mssql-jdbc - 7.1.3-SNAPSHOT + 7.1.3 jar Microsoft JDBC Driver for SQL Server From 12668f7bb884917bd86376413316c9ebb7c97402 Mon Sep 17 00:00:00 2001 From: ulvii Date: Thu, 29 Nov 2018 13:53:43 -0800 Subject: [PATCH 2/3] Fix | Reword --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d48c9d9845..793949f6a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) ### Fixed Issues - Fixed an issue with Geography.point() having coordinates reversed [#853](https://github.com/Microsoft/mssql-jdbc/pull/853) -- Fixed intermittent failures in tests [#854](https://github.com/Microsoft/mssql-jdbc/pull/854) [#862](https://github.com/Microsoft/mssql-jdbc/pull/862) [#888](https://github.com/Microsoft/mssql-jdbc/pull/888) +- Fixed intermittent test failures [#854](https://github.com/Microsoft/mssql-jdbc/pull/854) [#862](https://github.com/Microsoft/mssql-jdbc/pull/862) [#888](https://github.com/Microsoft/mssql-jdbc/pull/888) - Fixed an issue with setAutoCommit() leaving a transaction open when running against Azure SQL Data Warehouse [#881](https://github.com/Microsoft/mssql-jdbc/pull/881) ### Changed From 92705823dcd9b6e28fdb921a6da00840e0c9aad4 Mon Sep 17 00:00:00 2001 From: ulvii Date: Thu, 29 Nov 2018 14:11:10 -0800 Subject: [PATCH 3/3] Fix | Apply review comments --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 793949f6a8..081cb8281e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,8 +15,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) ### Changed - Changed query timeout logic to use a single thread [#842](https://github.com/Microsoft/mssql-jdbc/pull/842) - Code cleanup [#857](https://github.com/Microsoft/mssql-jdbc/pull/857) [#873](https://github.com/Microsoft/mssql-jdbc/pull/873) -- Removed populating Lobs when calling wasNull() [#875](https://github.com/Microsoft/mssql-jdbc/pull/875) -- Improved retry logic for intermittent TLS1.2 issue [#882](https://github.com/Microsoft/mssql-jdbc/pull/882) +- Removed populating Lobs when calling ResultSet.wasNull() [#875](https://github.com/Microsoft/mssql-jdbc/pull/875) +- Improved retry logic for intermittent TLS1.2 issue when establishing a connection [#882](https://github.com/Microsoft/mssql-jdbc/pull/882) ## [7.1.2] Preview Release ### Added