Skip to content

Commit

Permalink
Add release note for rc1 (opensearch-project#20)
Browse files Browse the repository at this point in the history
Signed-off-by: bowenlan-amzn <[email protected]>
  • Loading branch information
bowenlan-amzn authored May 25, 2021
1 parent 7e29a93 commit 6fb6161
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/draft-release-notes-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ categories:
- title: 'Maintenance'
labels:
- 'version support'
- 'backwards-compatibility'
- title: 'Refactoring'
labels:
- 'Refactor'
4 changes: 2 additions & 2 deletions .github/workflows/test-and-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on:
pull_request:
branches:
- main
- opendistro-*
- opensearch-*
- development-*
push:
branches:
- main
- opendistro-*
- opensearch-*
- development-*

jobs:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Version 1.0.0.0-rc1 2021-05-25

Compatible with OpenSearch 1.0.0-rc1

### Infrastructure

* Update issue template with multiple labels ([#10](https://github.com/opensearch-project/index-management/pull/10))

### Maintenance

* Renaming Namespaces ([#14](https://github.com/opensearch-project/index-management/pull/14))
* Rest APIs Backward Compatibility ([#15](https://github.com/opensearch-project/index-management/pull/15))
* Settings Backwards Compatibility ([#16](https://github.com/opensearch-project/index-management/pull/16))
* Point to correct version of notification ([#18](https://github.com/opensearch-project/index-management/pull/18))
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ class IndexManagementPlugin : JobSchedulerExtension, NetworkPlugin, ActionPlugin
lateinit var fieldCapsFilter: FieldCapsFilter

companion object {
const val PLUGIN_NAME = "opendistro-im"
const val PLUGINS_BASE_URI = "/_plugins"
const val ISM_BASE_URI = "$PLUGINS_BASE_URI/_ism"
const val ROLLUP_BASE_URI = "$PLUGINS_BASE_URI/_rollup"
Expand All @@ -161,6 +160,7 @@ class IndexManagementPlugin : JobSchedulerExtension, NetworkPlugin, ActionPlugin
const val INDEX_MANAGEMENT_JOB_TYPE = "opendistro-index-management"
const val INDEX_STATE_MANAGEMENT_HISTORY_TYPE = "managed_index_meta_data"

const val OLD_PLUGIN_NAME = "opendistro-im"
const val OPEN_DISTRO_BASE_URI = "/_opendistro"
const val LEGACY_ISM_BASE_URI = "$OPEN_DISTRO_BASE_URI/_ism"
const val LEGACY_ROLLUP_BASE_URI = "$OPEN_DISTRO_BASE_URI/_rollup"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class TransportUpdateManagedIndexMetaDataAction : TransportMasterNodeAction<Upda
listener: ActionListener<AcknowledgedResponse>
) {
clusterService.submitStateUpdateTask(
IndexManagementPlugin.PLUGIN_NAME,
IndexManagementPlugin.OLD_PLUGIN_NAME,
ManagedIndexMetaDataTask(request.indicesToAddManagedIndexMetaDataTo, request.indicesToRemoveManagedIndexMetaDataFrom),
ClusterStateTaskConfig.build(Priority.NORMAL),
executor,
Expand Down

0 comments on commit 6fb6161

Please sign in to comment.