From 61dc20ad7652949d60230a04a103ca35df0fd1ab Mon Sep 17 00:00:00 2001 From: Joshua Li Date: Wed, 29 Jul 2020 10:47:58 -0700 Subject: [PATCH] bump versions to 1.9.0.1 and add release notes --- .../draft-release-notes-workflow.yml | 2 +- build.gradle | 2 +- ...elasticsearch-sql.release-notes-1.9.0.1.md | 44 +++++++++++++++++++ sql-cli/src/odfe_sql_cli/__init__.py | 2 +- sql-jdbc/build.gradle | 2 +- .../jdbc/internal/Version.java | 2 +- 6 files changed, 49 insertions(+), 5 deletions(-) create mode 100644 release-notes/opendistro-elasticsearch-sql.release-notes-1.9.0.1.md diff --git a/.github/workflows/draft-release-notes-workflow.yml b/.github/workflows/draft-release-notes-workflow.yml index 1b2e7b2797..200d6a8569 100644 --- a/.github/workflows/draft-release-notes-workflow.yml +++ b/.github/workflows/draft-release-notes-workflow.yml @@ -16,6 +16,6 @@ jobs: with: config-name: draft-release-notes-config.yml tag: (None) - version: 1.9.0.0 + version: 1.9.0.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/build.gradle b/build.gradle index 2dcf9726a1..f45ea2b1a7 100644 --- a/build.gradle +++ b/build.gradle @@ -48,7 +48,7 @@ ext { } allprojects { - version = "${opendistroVersion}.0" + version = "${opendistroVersion}.1" plugins.withId('java') { sourceCompatibility = targetCompatibility = "1.8" diff --git a/release-notes/opendistro-elasticsearch-sql.release-notes-1.9.0.1.md b/release-notes/opendistro-elasticsearch-sql.release-notes-1.9.0.1.md new file mode 100644 index 0000000000..36a7d94be4 --- /dev/null +++ b/release-notes/opendistro-elasticsearch-sql.release-notes-1.9.0.1.md @@ -0,0 +1,44 @@ +## 2020-07-29 Version 1.9.0.1 + +### Feature +* ODBC: Change Tableau connector version, support Tableau and Excel ([#622](https://github.com/opendistro-for-elasticsearch/sql/pull/622)) +* Support trignometric functions acos, asin, atan, atan2, cos, cot, degrees, radians, sin, tan ([#599](https://github.com/opendistro-for-elasticsearch/sql/pull/599)) +* Support mathmatical functions rand and constants e, pi ([#591](https://github.com/opendistro-for-elasticsearch/sql/pull/591)) +* Support SELET * and FROM clause in new SQL parser ([#573](https://github.com/opendistro-for-elasticsearch/sql/pull/573)) +* Support mathmatical functions: conv, crc32, mod, pow/power, round, sign, sqrt, truncate ([#577](https://github.com/opendistro-for-elasticsearch/sql/pull/577)) +* add date and time support ([#568](https://github.com/opendistro-for-elasticsearch/sql/pull/568)) +* Support mathematical functions ceil/ceiling, exp, floor, ln, log ([#540](https://github.com/opendistro-for-elasticsearch/sql/pull/540)) + +### Enhancement +* Support queres end with semi colon ([#609](https://github.com/opendistro-for-elasticsearch/sql/pull/609)) +* ODBC: Adding BASIC & AWS_SIGV4 auth in M Connector ([#610](https://github.com/opendistro-for-elasticsearch/sql/pull/610)) +* ODBC: adding manual test plan for Microsoft Excel testing ([#604](https://github.com/opendistro-for-elasticsearch/sql/pull/604)) +* ODBC: Report error from Excel when executing an invalid query ([#611](https://github.com/opendistro-for-elasticsearch/sql/pull/611)) +* Add ElasticsarchExprValueFactory in StorageEngine ([#608](https://github.com/opendistro-for-elasticsearch/sql/pull/608)) +* Using UTC asdefault timezone for date_format function if not provided ([#605](https://github.com/opendistro-for-elasticsearch/sql/pull/605)) +* ODBC: AddingPower BI M connector ([#596](https://github.com/opendistro-for-elasticsearch/sql/pull/596)) +* ODBC: add ODC 2.x functions called by Excel for Mac ([#592](https://github.com/opendistro-for-elasticsearch/sql/pull/592)) +* ODBC: Remove catalog support from driver ([#566](https://github.com/opendistro-for-elasticsearch/sql/pull/566)) +* ODBC: Build driver files in parallel ([#570](https://github.com/opendistro-for-elasticsearch/sql/pull/570)) +* Keep mismatch results when error occurs in comparison test ([#557](https://github.com/opendistro-for-elasticsearch/sql/pull/557)) + +### Bug Fixes +* Move workbench down in kibana nav ([#578](https://github.com/opendistro-for-elasticsearch/sql/pull/578)) +* ODBC: Fix fo data loading failure in Power BI Desktop ([#627](https://github.com/opendistro-for-elasticsearch/sql/pull/627)) +* Issue 623, fix security vulnerability regarding to depedencies commons-codec and Guava ([#624](https://github.com/opendistro-for-elasticsearch/sql/pull/624)) +* Extra fixes or Mac ODBC driver ([#602](https://github.com/opendistro-for-elasticsearch/sql/pull/602)) +* Fix CAST boo field to integer issue ([#600](https://github.com/opendistro-for-elasticsearch/sql/pull/600)) +* Bumped lodash version to fix dependency security vulnerability ([#598](https://github.com/opendistro-for-elasticsearch/sql/pull/598)) +* Fix object/nsted field select issue ([#584](https://github.com/opendistro-for-elasticsearch/sql/pull/584)) +* Remove columns from result which are not returned by SELECT * query but returned by DESCRIBE query ([#556](https://github.com/opendistro-for-elasticsearch/sql/pull/556)) + +### Infrastructure +* Add workflow to draft release on push ([#572](https://github.com/opendistro-for-elasticsearch/sql/pull/572)) +* Merge all SQL repos and adjust workflows ([#549](https://github.com/opendistro-for-elasticsearch/sql/pull/549)) + +### Documentation +* Update docs fter merging repos ([#563](https://github.com/opendistro-for-elasticsearch/sql/pull/563)) +* ODBC: Updatig Microsoft Excel connection documents ([#581](https://github.com/opendistro-for-elasticsearch/sql/pull/581)) +* ODBC: Add usr documentation for using Microsoft Excel on Mac ([#594](https://github.com/opendistro-for-elasticsearch/sql/pull/594)) +* ODBC: Update documentation for using Microsoft Excel with Open Distro For Elasticsearch ([#576](https://github.com/opendistro-for-elasticsearch/sql/pull/576)) +* ODBC: Add douments for `Refresh` & `Export as CSV files` options in Microsoft Excel ([#571](https://github.com/opendistro-for-elasticsearch/sql/pull/571)) diff --git a/sql-cli/src/odfe_sql_cli/__init__.py b/sql-cli/src/odfe_sql_cli/__init__.py index 3851f216ed..bef8a15b09 100644 --- a/sql-cli/src/odfe_sql_cli/__init__.py +++ b/sql-cli/src/odfe_sql_cli/__init__.py @@ -12,4 +12,4 @@ express or implied. See the License for the specific language governing permissions and limitations under the License. """ -__version__ = "1.9.0.0" +__version__ = "1.9.0.1" diff --git a/sql-jdbc/build.gradle b/sql-jdbc/build.gradle index 4719102196..0bf3cb26f0 100644 --- a/sql-jdbc/build.gradle +++ b/sql-jdbc/build.gradle @@ -32,7 +32,7 @@ plugins { group 'com.amazon.opendistroforelasticsearch.client' // keep version in sync with version in Driver source -version '1.9.0.0' +version '1.9.0.1' boolean snapshot = "true".equals(System.getProperty("build.snapshot", "true")); if (snapshot) { diff --git a/sql-jdbc/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java b/sql-jdbc/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java index debe3333ef..0f74a5ed8d 100644 --- a/sql-jdbc/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java +++ b/sql-jdbc/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java @@ -19,7 +19,7 @@ public enum Version { // keep this in sync with the gradle version - Current(1, 9, 0, 0); + Current(1, 9, 0, 1); private int major; private int minor;