From 4ca43005a7b3c9835b2f0278585556662283e9ee Mon Sep 17 00:00:00 2001 From: rene-ye Date: Wed, 7 Mar 2018 17:23:15 -0800 Subject: [PATCH 1/3] Changes for 6.5.0 release --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- pom.xml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75e387bded..c0b9be47e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) +## [6.5.0] Preview Release +### Added +- Support for spacial datatypes [#642](https://github.com/Microsoft/mssql-jdbc/pull/642) + +### Fixed Issues +- Fixed blobs becoming unavailable when the Result Set cursor moves or the Result Set closes [#595](https://github.com/Microsoft/mssql-jdbc/pull/595) +- Fixed an issue when attmepting to insert an empty or null value on an encrypted column [#632](https://github.com/Microsoft/mssql-jdbc/pull/632) +- Fixed a misleading error message thrown by the driver when a user doesn't have execute permissions [#635](https://github.com/Microsoft/mssql-jdbc/pull/635) +- Fixed statements throwing SQLServerException instead of java.sql.SQLTimeoutException when the query times out [#641](https://github.com/Microsoft/mssql-jdbc/pull/641) + +### Changed +- Unit tests now use SQLException in most cases instead of SQLServerException. + ## [6.4.0] Stable Release ### Added - Support added for AAD Integrated Authentication with ADAL4J on Windows/Linux/Mac OS [#603](https://github.com/Microsoft/mssql-jdbc/pull/603) diff --git a/README.md b/README.md index 4983f0c104..112534d7d9 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.6.jre8-preview + 6.5.0.jre8-preview ``` diff --git a/pom.xml b/pom.xml index d761276495..f63e323300 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.microsoft.sqlserver mssql-jdbc - 6.5.0-SNAPSHOT.${jreVersion}-preview + 6.5.0.${jreVersion}-preview jar Microsoft JDBC Driver for SQL Server From a112517e9a3df30436f18ebfda6af0b6030492f9 Mon Sep 17 00:00:00 2001 From: rene-ye Date: Wed, 7 Mar 2018 17:29:30 -0800 Subject: [PATCH 2/3] some more changes --- README.md | 4 ++-- .../java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 112534d7d9..4d959c5216 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 6.4.0.jre9 + 6.5.0.jre9 compile @@ -136,7 +136,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 6.4.0.jre9 + 6.5.0.jre9 compile diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java index 9aaaa8f527..eee5f7aa6f 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java @@ -10,7 +10,7 @@ final class SQLJdbcVersion { static final int major = 6; - static final int minor = 4; + static final int minor = 5; static final int patch = 0; static final int build = 0; } From 4ba2336ffb34b1e4aa3ce80c525bbebe9b40993f Mon Sep 17 00:00:00 2001 From: rene-ye Date: Wed, 7 Mar 2018 17:33:02 -0800 Subject: [PATCH 3/3] grammer errors --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0b9be47e3..cc8c77b12e 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 blobs becoming unavailable when the Result Set cursor moves or the Result Set closes [#595](https://github.com/Microsoft/mssql-jdbc/pull/595) -- Fixed an issue when attmepting to insert an empty or null value on an encrypted column [#632](https://github.com/Microsoft/mssql-jdbc/pull/632) +- Fixed an issue when attempting to insert an empty or null value into an encrypted column [#632](https://github.com/Microsoft/mssql-jdbc/pull/632) - Fixed a misleading error message thrown by the driver when a user doesn't have execute permissions [#635](https://github.com/Microsoft/mssql-jdbc/pull/635) - Fixed statements throwing SQLServerException instead of java.sql.SQLTimeoutException when the query times out [#641](https://github.com/Microsoft/mssql-jdbc/pull/641)