From 460e3a3c9c3048429d171b2c3b14b45af74880e3 Mon Sep 17 00:00:00 2001 From: Shawn Sun Date: Wed, 6 Sep 2017 10:53:55 -0700 Subject: [PATCH 1/3] update 6.3.1 to 6.3.2 --- README.md | 4 ++-- pom.xml | 2 +- .../java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 54810ab67..5fd1154ac 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 - 6.3.1.jre8-preview-v2 + 6.3.2.jre8-preview ``` @@ -120,7 +120,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 6.3.1.jre8-preview-v2 + 6.3.2.jre8-preview compile diff --git a/pom.xml b/pom.xml index f5498d940..932460056 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.microsoft.sqlserver mssql-jdbc - 6.3.2-SNAPSHOT + 6.3.2 jar diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java index 26b631b2d..e7f5bccf7 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java @@ -11,6 +11,6 @@ final class SQLJdbcVersion { static final int major = 6; static final int minor = 3; - static final int patch = 1; + static final int patch = 2; static final int build = 0; } From 3e3a34eb1f3c977390f4f7b81bf0eb2cc1854d7a Mon Sep 17 00:00:00 2001 From: Shawn Sun Date: Wed, 6 Sep 2017 11:08:21 -0700 Subject: [PATCH 2/3] update changelog --- CHANGELOG.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c35a1760e..a06ac887c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) +## [6.3.2] Preview Release +### Added +- Added new connection property: sslProtocol [#422](https://github.com/Microsoft/mssql-jdbc/pull/422) +- Added "slow" tag to long running tests [#461](https://github.com/Microsoft/mssql-jdbc/pull/461) + +### Fixed Issues +- Fixed some error messages [#452](https://github.com/Microsoft/mssql-jdbc/pull/452) & [#459](https://github.com/Microsoft/mssql-jdbc/pull/459) +- Fixed statement leaks [#455](https://github.com/Microsoft/mssql-jdbc/pull/455) +- Fixed an issue regarding to loginTimeout with TLS [#456](https://github.com/Microsoft/mssql-jdbc/pull/456) +- Fixed sql_variant issue with String type [#442](https://github.com/Microsoft/mssql-jdbc/pull/442) +- Fixed issue with throwing error message for unsupported datatype [#450](https://github.com/Microsoft/mssql-jdbc/pull/450) +- Fixed issue that initial batchException was not thrown [#458](https://github.com/Microsoft/mssql-jdbc/pull/458) + +### Changed +- changed sendStringParameterAsUnicode to impact set/update null [#445](https://github.com/Microsoft/mssql-jdbc/pull/445) +- Removed connection property: fipsProvider [#460](https://github.com/Microsoft/mssql-jdbc/pull/460) +- Replaced for and while loops with foeach loops [#421](https://github.com/Microsoft/mssql-jdbc/pull/421) +- Replaced explicit types with The diamond operator <> [#468](https://github.com/Microsoft/mssql-jdbc/pull/468) & [#420](https://github.com/Microsoft/mssql-jdbc/pull/420) + ## [6.3.1] Preview Release ### Added - Added support for datetime/smallDatetime in TVP [#435](https://github.com/Microsoft/mssql-jdbc/pull/435) From 3923086c64a92a06b34ad7cf6b2c6992e105e481 Mon Sep 17 00:00:00 2001 From: Shawn Sun Date: Wed, 6 Sep 2017 11:11:32 -0700 Subject: [PATCH 3/3] update changelog format --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a06ac887c..287ca0c2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,10 +17,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) - Fixed issue that initial batchException was not thrown [#458](https://github.com/Microsoft/mssql-jdbc/pull/458) ### Changed -- changed sendStringParameterAsUnicode to impact set/update null [#445](https://github.com/Microsoft/mssql-jdbc/pull/445) +- Changed sendStringParameterAsUnicode to impact set/update null [#445](https://github.com/Microsoft/mssql-jdbc/pull/445) - Removed connection property: fipsProvider [#460](https://github.com/Microsoft/mssql-jdbc/pull/460) - Replaced for and while loops with foeach loops [#421](https://github.com/Microsoft/mssql-jdbc/pull/421) -- Replaced explicit types with The diamond operator <> [#468](https://github.com/Microsoft/mssql-jdbc/pull/468) & [#420](https://github.com/Microsoft/mssql-jdbc/pull/420) +- Replaced explicit types with the diamond operator [#468](https://github.com/Microsoft/mssql-jdbc/pull/468) & [#420](https://github.com/Microsoft/mssql-jdbc/pull/420) ## [6.3.1] Preview Release ### Added