-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport 1.1.0.0 changes from main to 1.1 (#145)
* Release note for 1.1.0.0 release. (#139) * Release note for 1.1.0.0 release. Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com> * Correct copyright notices * License header check (#142) * Provide default copyright header using IDE feature Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com> * Address #103 history write index is rolled over even if the history indices are disabled * Update 1.1.0.0 release note Signed-off-by: bowenlan-amzn <bowenlan23@gmail.com>
- Loading branch information
1 parent
9450269
commit 1ec0bc6
Showing
13 changed files
with
76 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
.gradle/ | ||
build/ | ||
out/ | ||
.idea/ | ||
.idea/* | ||
!.idea/copyright | ||
*.ipr | ||
*.iws | ||
.DS_Store | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,2 @@ | ||
OpenSearch | ||
Copyright 2021 OpenSearch Contributors | ||
|
||
This product includes software developed by | ||
Elasticsearch (http://www.elastic.co). | ||
Copyright 2009-2018 Elasticsearch | ||
|
||
This product includes software developed by The Apache Software | ||
Foundation (http://www.apache.org/). | ||
|
||
This product includes software developed by | ||
Joda.org (http://www.joda.org/). | ||
OpenSearch (https://opensearch.org/) | ||
Copyright OpenSearch Contributors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
release-notes/opensearch-index-management.release-notes-1.1.0.0.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
## Version 1.1.0.0 2021-09-03 | ||
|
||
Compatible with OpenSearch 1.1.0 | ||
|
||
### Infrastructure | ||
|
||
* Upgrade dependencies to 1.1 and build snapshot by default. ([#121](https://github.com/opensearch-project/index-management/pull/121)) | ||
|
||
### Features | ||
|
||
* Storing user information as part of the job when security plugin is installed ([#113](https://github.com/opensearch-project/index-management/pull/113)) | ||
* Storing user object in all APIs and enabling filter of response based on user ([#115](https://github.com/opensearch-project/index-management/pull/115)) | ||
* Security improvements ([#126](https://github.com/opensearch-project/index-management/pull/126)) | ||
* Updating security filtering logic ([#137](https://github.com/opensearch-project/index-management/pull/137)) | ||
|
||
### Enhancements | ||
|
||
* Enhance ISM template ([#105](https://github.com/opensearch-project/index-management/pull/105)) | ||
|
||
### Bug Fixes | ||
|
||
* Removing Usages of Action Get Call and using listeners ([#100](https://github.com/opensearch-project/index-management/pull/100)) | ||
* Explain response still use old opendistro policy id ([#109](https://github.com/opensearch-project/index-management/pull/109)) | ||
* Only rollover history index onMaster if enabled ([#142](https://github.com/opensearch-project/index-management/pull/142)) | ||
|
||
### Maintenance | ||
* License header check ([#142](https://github.com/opensearch-project/index-management/pull/142)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/org/opensearch/indexmanagement/util/DummyFileForLicenseCheck.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.indexmanagement.util; | ||
|
||
/* | ||
* Need to have a java file, so licenseHeaders task can function | ||
*/ | ||
public class DummyFileForLicenseCheck { | ||
} |
5 changes: 5 additions & 0 deletions
5
src/main/kotlin/org/opensearch/indexmanagement/util/ScheduledJobUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters