diff --git a/CHANGELOG.md b/CHANGELOG.md index 75e387bde..4cdf308f6 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 spatial 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 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) + +### 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 4983f0c10..788d8bf28 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.jre9-preview ``` @@ -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-preview 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-preview compile diff --git a/pom.xml b/pom.xml index 6c41936d5..f63e32330 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.microsoft.sqlserver mssql-jdbc - 6.4.0.${jreVersion} + 6.5.0.${jreVersion}-preview jar Microsoft JDBC Driver for SQL Server @@ -40,8 +40,8 @@ UTF-8 - 1.0.0-M3 - 5.0.0-M3 + 1.1.0 + 5.1.0 @@ -118,13 +118,13 @@ com.zaxxer HikariCP - 2.7.4 + 2.7.8 test org.apache.commons commons-dbcp2 - 2.1.1 + 2.2.0 test