Skip to content

Commit

Permalink
Change version to 1.9.0.2 (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrozov authored Sep 4, 2020
1 parent 9849e9a commit 1c86d68
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ext {
group = "com.amazon.opendistroforelasticsearch"
// Increment the final digit when there's a new plugin versions for the same opendistro version
// Reset the final digit to 0 when upgrading to a new opendistro version
version = "${opendistroVersion}.1" + (isSnapshot ? "-SNAPSHOT" : "")
version = "${opendistroVersion}.2" + (isSnapshot ? "-SNAPSHOT" : "")


if (!project.hasProperty("archivePath")) {
Expand Down
2 changes: 1 addition & 1 deletion plugin-descriptor.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
description=Provide access control related features for Elasticsearch 7
#
# 'version': plugin's version
version=1.9.0.1
version=1.9.0.2
#
# 'name': the plugin name
name=opendistro_security
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<groupId>com.amazon.opendistroforelasticsearch</groupId>
<artifactId>opendistro_security</artifactId>
<packaging>jar</packaging>
<version>1.9.0.1</version>
<version>1.9.0.2</version>
<name>Open Distro Security for Elasticsearch</name>
<description>Open Distro For Elasticsearch Security</description>
<url>https://github.com/opendistro-for-elasticsearch/security</url>
Expand Down Expand Up @@ -104,7 +104,7 @@
<url>https://github.com/opendistro-for-elasticsearch/security</url>
<connection>scm:git:[email protected]:opendistro-for-elasticsearch/security.git</connection>
<developerConnection>scm:git:[email protected]:opendistro-for-elasticsearch/security.git</developerConnection>
<tag>1.9.0.1</tag>
<tag>1.9.0.2</tag>
</scm>

<issueManagement>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## 2020-09-03 Version 1.9.0.2

### Install

* To install plugin navigate to the Elasticsearch home directory and run
```
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-security/opendistro_security-1.9.0.2.zip
```

### Enhancements

* Remove cluster monitor check from audit transport check ([#653](https://github.com/opendistro-for-elasticsearch/security/pull/653))
* Enable or disable check for all audit REST and transport categories ([#645](https://github.com/opendistro-for-elasticsearch/security/pull/645))
* Add ability for plugins to inject roles ([#560](https://github.com/opendistro-for-elasticsearch/security/pull/560))

### Bug fixes

* Remove exception details from responses ([#667](https://github.com/opendistro-for-elasticsearch/security/pull/667))
* Adding onelogin loadXML util helper to prevent XXE attacks ([#659](https://github.com/opendistro-for-elasticsearch/security/pull/659))
* Add non-null to store even non-default values in serialization ([#652](https://github.com/opendistro-for-elasticsearch/security/pull/652))
* Refactor opendistro_security_action_trace logger ([#609](https://github.com/opendistro-for-elasticsearch/security/pull/609))
* Fail on invalid rest and transport categories ([#638](https://github.com/opendistro-for-elasticsearch/security/pull/638))
* Correct a typo in the Readme file. ([#607](https://github.com/opendistro-for-elasticsearch/security/pull/607))
* Fix AccessControlException during HTTPSamlAuthenticator initialization. ([#626](https://github.com/opendistro-for-elasticsearch/security/pull/626))
* Remove unnecessary check of remote address for null ([#616](https://github.com/opendistro-for-elasticsearch/security/pull/616))
* Prevent hidden roles from being added via rolesmapping and internalusers API ([#614](https://github.com/opendistro-for-elasticsearch/security/pull/614))

### Maintenance

* Close AuditLog while closing OpenDistroSecurityPlugin and unregister shutdown hook when closing AuditLogImpl. ([#663](https://github.com/opendistro-for-elasticsearch/security/pull/663))
* Fix unit tests failures in HTTPSamlAuthenticatorTest ([#664](https://github.com/opendistro-for-elasticsearch/security/pull/664))
* Add copyright headers for audit classes ([#644](https://github.com/opendistro-for-elasticsearch/security/pull/644))
* Clean up rest and transport header filtering ([#637](https://github.com/opendistro-for-elasticsearch/security/pull/637))
* Upgrade jackson-databind to 2.11.2 ([#618](https://github.com/opendistro-for-elasticsearch/security/pull/618))

0 comments on commit 1c86d68

Please sign in to comment.