Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit 5b20eef

Browse files
committed
Bump to ODFE 1.10.1.1 for integration test fixes (#759)
* Bump to 1.10.1.1, prepare integTest fixes * Add os check for windows in integTest:compileJdbc * Add release notes for 1.10.1.1
1 parent 72b5cf4 commit 5b20eef

File tree

11 files changed

+24
-12
lines changed

11 files changed

+24
-12
lines changed

.github/workflows/draft-release-notes-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
with:
1717
config-name: draft-release-notes-config.yml
1818
tag: (None)
19-
version: 1.10.1.0
19+
version: 1.10.1.1
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ext {
4848
}
4949

5050
allprojects {
51-
version = "${opendistroVersion}.0"
51+
version = "${opendistroVersion}.1"
5252

5353
plugins.withId('java') {
5454
sourceCompatibility = targetCompatibility = "1.8"

integ-test/build.gradle

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import org.elasticsearch.gradle.test.RestIntegTestTask
2+
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
23

34
apply plugin: 'elasticsearch.build'
45
apply plugin: 'elasticsearch.rest-test'
@@ -195,6 +196,11 @@ testClusters.comparisonTest {
195196
task compileJdbc(type:Exec) {
196197
workingDir '../sql-jdbc/'
197198

198-
commandLine './gradlew', 'build'
199-
commandLine './gradlew', 'shadowJar'
199+
if (DefaultNativePlatform.getCurrentOperatingSystem().isWindows()) {
200+
commandLine './gradlew.bat', 'build'
201+
commandLine './gradlew.bat', 'shadowJar'
202+
} else {
203+
commandLine './gradlew', 'build'
204+
commandLine './gradlew', 'shadowJar'
205+
}
200206
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## 2020-09-28 Version 1.10.1.1
2+
3+
### Infrastructure
4+
* Support security plugin ([#760](https://github.com/opendistro-for-elasticsearch/sql/pull/760))
5+
* Bump to ODFE 1.10.1.1 for integration test fixes ([#759](https://github.com/opendistro-for-elasticsearch/sql/pull/759))
6+
* Bug Fix, Clean all the indices, included hidden indices ([#758](https://github.com/opendistro-for-elasticsearch/sql/pull/758))

sql-cli/src/odfe_sql_cli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
express or implied. See the License for the specific language governing
1313
permissions and limitations under the License.
1414
"""
15-
__version__ = "1.10.1.0"
15+
__version__ = "1.10.1.1"

sql-jdbc/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ plugins {
3232
group 'com.amazon.opendistroforelasticsearch.client'
3333

3434
// keep version in sync with version in Driver source
35-
version '1.10.1.0'
35+
version '1.10.1.1'
3636

3737
boolean snapshot = "true".equals(System.getProperty("build.snapshot", "true"));
3838
if (snapshot) {

sql-jdbc/src/main/java/com/amazon/opendistroforelasticsearch/jdbc/internal/Version.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
public enum Version {
2020

2121
// keep this in sync with the gradle version
22-
Current(1, 10, 1, 0);
22+
Current(1, 10, 1, 1);
2323

2424
private int major;
2525
private int minor;

sql-odbc/src/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ set(INSTALL_SRC "${CMAKE_CURRENT_SOURCE_DIR}/installer")
7878
set(DSN_INSTALLER_SRC "${CMAKE_CURRENT_SOURCE_DIR}/DSNInstaller")
7979

8080
# ODBC Driver version
81-
set(DRIVER_PACKAGE_VERSION "1.10.1.0")
82-
set(DRIVER_PACKAGE_VERSION_COMMA_SEPARATED "1,10,1,0")
81+
set(DRIVER_PACKAGE_VERSION "1.10.1.1")
82+
set(DRIVER_PACKAGE_VERSION_COMMA_SEPARATED "1,10,1,1")
8383
add_compile_definitions( ES_ODBC_VERSION="${DRIVER_PACKAGE_VERSION}"
8484
# Comma separated version is required for odbc administrator's driver file.
8585
ES_ODBC_DRVFILE_VERSION=${DRIVER_PACKAGE_VERSION_COMMA_SEPARATED} )

sql-odbc/src/TableauConnector/odfe_sql_odbc/manifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version='1.0' encoding='utf-8' ?>
22

3-
<connector-plugin class='odfe_sql_odbc' superclass='odbc' plugin-version='1.10.1.0' name='SQL' version='18.1' min-version-tableau='2020.1'>
3+
<connector-plugin class='odfe_sql_odbc' superclass='odbc' plugin-version='1.10.1.1' name='SQL' version='18.1' min-version-tableau='2020.1'>
44
<vendor-information>
55
<company name="Open Distro for ES"/>
66
<support-link url="https://github.com/opendistro-for-elasticsearch/sql"/>

sql-odbc/src/TableauConnector/odfe_sql_odbc_dev/manifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version='1.0' encoding='utf-8' ?>
22

3-
<connector-plugin class='odfe_sql_odbc_dev' superclass='odbc' plugin-version='1.10.1.0' name='Open Distro for Elasticsearch SQL ODBC DEV' version='18.1' min-version-tableau='2020.1'>
3+
<connector-plugin class='odfe_sql_odbc_dev' superclass='odbc' plugin-version='1.10.1.1' name='Open Distro for Elasticsearch SQL ODBC DEV' version='18.1' min-version-tableau='2020.1'>
44
<vendor-information>
55
<company name="Open Distro for Elasticsearch"/>
66
<support-link url="https://github.com/opendistro-for-elasticsearch/sql"/>

sql-workbench/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opendistro-sql-workbench",
3-
"version": "1.10.1.0",
3+
"version": "1.10.1.1",
44
"description": "SQL Workbench",
55
"main": "index.js",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)