From ee69e98dd11d0944b65cc528a7250fdd054e989b Mon Sep 17 00:00:00 2001 From: Shawn Sun Date: Tue, 18 Jul 2017 16:31:09 -0700 Subject: [PATCH 1/4] update change log on master branch --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f6773131..9da698da7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) -## [6.2.0] Stable Release +## [6.2.1] Hotfix & Stable Release +### Fixed Issues +- Fixed queries without parameters using preparedStatement [#372](https://github.com/Microsoft/mssql-jdbc/pull/372) +### Changed +- Removed metadata caching [#377](https://github.com/Microsoft/mssql-jdbc/pull/377) + +## [6.2.0] Release Candidate ### Added - Added TVP and BulkCopy random data test for all data types with server cursor [#319](https://github.com/Microsoft/mssql-jdbc/pull/319) - Added AE setup and test [#337](https://github.com/Microsoft/mssql-jdbc/pull/337),[328](https://github.com/Microsoft/mssql-jdbc/pull/328) From 73645cab9fc74b5f016480ad61c8024a9ca3ddb4 Mon Sep 17 00:00:00 2001 From: Shawn Sun Date: Wed, 19 Jul 2017 17:51:07 -0700 Subject: [PATCH 2/4] update version in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5470a9c58..5a141be63 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ We're now on the Maven Central Repository. Add the following to your POM file: com.microsoft.sqlserver mssql-jdbc - 6.1.0.jre8 + 6.2.1.jre8 ``` The driver can be downloaded from the [Microsoft Download Center](https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=11774). @@ -117,7 +117,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 6.1.0.jre8 + 6.2.1.jre8 compile From 20abd376feb30ee4d96340a6443ad7eb3ac173f4 Mon Sep 17 00:00:00 2001 From: Andrea Lam Date: Tue, 25 Jul 2017 11:12:30 -0700 Subject: [PATCH 3/4] Update survey link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a141be63..ae22e0381 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ SQL Server Team Let us know how you think we're doing. - + ## Status of Most Recent Builds | AppVeyor (Windows) | Travis CI (Linux) | From 25c5e59cbde7c1201329298b164f22eefc9f03f5 Mon Sep 17 00:00:00 2001 From: Shawn Sun Date: Tue, 25 Jul 2017 15:03:00 -0700 Subject: [PATCH 4/4] create template for new issues --- issue_template.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 issue_template.md diff --git a/issue_template.md b/issue_template.md new file mode 100644 index 000000000..4247b959e --- /dev/null +++ b/issue_template.md @@ -0,0 +1,23 @@ +## Driver version or jar name +Please tell us what the JDBC driver version or jar name is. + +## SQL Server version +Please tell us what the SQL Server version is. + +## Client operating system +Please tell us what oprating system the client program is running on. + +## Java/JVM version +Example: java version "1.8.0", IBM J9 VM + +## Table schema +Please tell us the table schema + +## Problem description +Please share more details with us. + +## Expected behavior and actual behavior +Please tell us what should happen and what happened instead + +## Repro code +Please share repro code with us, or tell us how to reproduce the issue.