Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Commit

Permalink
Support for ES 7.2.1 (#49)
Browse files Browse the repository at this point in the history
* Support for ES 7.2.1

* Fix overridden TestRestChannel abstract method
  • Loading branch information
ticheng-aws authored Oct 14, 2019
1 parent e5d9195 commit 7b0aa22
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 2019-08-07, Version 1.2.0.0 (Current)
## 2019-10-10, Version 1.2.1.0 (Current)

- Support for Elasticsearch 7.2
- Support for Elasticsearch 7.2.1

## 2019-08-07, Version 1.2.0.0

- Support for Elasticsearch 7.2.0

## 2019-06-21, Version 1.1.0.0

Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
<parent>
<groupId>com.amazon.opendistroforelasticsearch</groupId>
<artifactId>opendistro_security_parent</artifactId>
<version>1.2.0.0</version>
<version>1.2.1.0</version>
</parent>

<artifactId>opendistro_security_advanced_modules</artifactId>
<version>1.2.0.0</version>
<version>1.2.1.0</version>
<packaging>jar</packaging>

<name>Open Distro For Elasticsearch Advanced Modules</name>
Expand All @@ -33,8 +33,8 @@
<inceptionYear>2016</inceptionYear>

<properties>
<security.version>1.2.0.0</security.version>
<elasticsearch.version>7.2.0</elasticsearch.version>
<security.version>1.2.1.0</security.version>
<elasticsearch.version>7.2.1</elasticsearch.version>

<!-- deps -->
<log4j.version>2.11.1</log4j.version>
Expand All @@ -54,7 +54,7 @@
<url>https://github.com/opendistro-for-elasticsearch/security-advanced-modules</url>
<connection>scm:git:[email protected]:opendistro-for-elasticsearch/security-advanced-modules.git</connection>
<developerConnection>scm:git:[email protected]:opendistro-for-elasticsearch/security-advanced-modules.git</developerConnection>
<tag>v1.2.0.0</tag>
<tag>v1.2.1.0</tag>
</scm>

<issueManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,11 @@ public XContentBuilder newBuilder(XContentType xContentType, boolean useFilterin
return null;
}

@Override
public XContentBuilder newBuilder(XContentType xContentType, XContentType xType, boolean useFiltering) throws IOException {
return null;
}

@Override
public BytesStreamOutput bytesOutput() {
return null;
Expand Down

0 comments on commit 7b0aa22

Please sign in to comment.