From 91f06508452cbd1727f7a3041fded2458ef95251 Mon Sep 17 00:00:00 2001 From: Tianli Feng <62041081+ftianli-amzn@users.noreply.github.com> Date: Tue, 25 Aug 2020 15:34:50 -0700 Subject: [PATCH] Adds workflow to generate draft release notes and reformat old release notes (#241) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add a config file to organize all labeled PRs and place under headers in the release notes * Add a workflow to create draft release notes under ‘Releases’ tab in GitHub * Reformat old release notes to meet the unified standard --- .github/draft-release-notes-config.yml | 41 +++++++++++++++++++ .../draft-release-notes-workflow.yml | 20 +++++++++ ...csearch-alerting.release-notes-0.7.0.0.md} | 14 +++---- ...icsearch-alerting.release-notes-0.8.0.0.md | 8 ++++ ...icsearch-alerting.release-notes-0.9.0.0.md | 13 ++++++ ...icsearch-alerting.release-notes-1.0.0.0.md | 12 ++++++ ...icsearch-alerting.release-notes-1.1.0.0.md | 7 ++++ ...csearch-alerting.release-notes-1.10.0.0.md | 17 ++++++++ ...icsearch-alerting.release-notes-1.2.0.0.md | 7 ++++ ...icsearch-alerting.release-notes-1.2.0.1.md | 4 ++ ...icsearch-alerting.release-notes-1.3.0.0.md | 5 +++ ...icsearch-alerting.release-notes-1.4.0.0.md | 13 ++++++ ...icsearch-alerting.release-notes-1.6.0.0.md | 10 +++++ ...csearch-alerting.release-notes-1.7.0.0.md} | 0 ...icsearch-alerting.release-notes-1.8.0.0.md | 4 ++ ...icsearch-alerting.release-notes-1.9.0.0.md | 7 ++++ ...icsearch.alerting.release-notes-0.8.0.0.md | 8 ---- ...icsearch.alerting.release-notes-0.9.0.0.md | 11 ----- ...icsearch.alerting.release-notes-1.0.0.0.md | 10 ----- ...icsearch.alerting.release-notes-1.1.0.0.md | 5 --- ...csearch.alerting.release-notes-1.10.0.0.md | 4 -- ...icsearch.alerting.release-notes-1.2.0.0.md | 7 ---- ...icsearch.alerting.release-notes-1.2.0.1.md | 4 -- ...icsearch.alerting.release-notes-1.3.0.0.md | 5 --- ...icsearch.alerting.release-notes-1.4.0.0.md | 11 ----- ...icsearch.alerting.release-notes-1.6.0.0.md | 4 -- ...icsearch.alerting.release-notes-1.8.0.0.md | 4 -- ...icsearch.alerting.release-notes-1.9.0.0.md | 4 -- 28 files changed, 175 insertions(+), 84 deletions(-) create mode 100644 .github/draft-release-notes-config.yml create mode 100644 .github/workflows/draft-release-notes-workflow.yml rename release-notes/{opendistro-for-elasticsearch.alerting.release-notes-0.7.0.0.md => opendistro-for-elasticsearch-alerting.release-notes-0.7.0.0.md} (57%) create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.8.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.9.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.0.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.1.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.10.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.2.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.2.0.1.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.3.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.4.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.6.0.0.md rename release-notes/{opendistro-for-elasticsearch.alerting.release-notes-1.7.0.0.md => opendistro-for-elasticsearch-alerting.release-notes-1.7.0.0.md} (100%) create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.8.0.0.md create mode 100644 release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.9.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.8.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.9.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.0.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.1.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.10.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.2.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.2.0.1.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.3.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.4.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.6.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.8.0.0.md delete mode 100644 release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.9.0.0.md diff --git a/.github/draft-release-notes-config.yml b/.github/draft-release-notes-config.yml new file mode 100644 index 00000000..1ab40855 --- /dev/null +++ b/.github/draft-release-notes-config.yml @@ -0,0 +1,41 @@ +# The overall template of the release notes +template: | + Compatible with Elasticsearch (**set version here**). + $CHANGES + +# Setting the formatting and sorting for the release notes body +name-template: Version (set version here) +change-template: '* $TITLE (#$NUMBER)' +sort-by: merged_at +sort-direction: ascending +replacers: + - search: '##' + replace: '###' + +# Organizing the tagged PRs into unified ODFE categories +categories: + - title: 'Breaking changes' + labels: + - 'breaking change' + - title: 'Features' + labels: + - 'feature' + - title: 'Enhancements' + labels: + - 'enhancement' + - title: 'Bug Fixes' + labels: + - 'bug' + - title: 'Infrastructure' + labels: + - 'build' + - 'testing' + - title: 'Documentation' + labels: + - 'documentation' + - title: 'Maintenance' + labels: + - 'version compatibility' + - title: 'Refactoring' + labels: + - 'refactor' diff --git a/.github/workflows/draft-release-notes-workflow.yml b/.github/workflows/draft-release-notes-workflow.yml new file mode 100644 index 00000000..f4543fd3 --- /dev/null +++ b/.github/workflows/draft-release-notes-workflow.yml @@ -0,0 +1,20 @@ +name: Release Drafter + +on: + push: + branches: + - master + +jobs: + update_release_draft: + name: Update draft release notes + runs-on: ubuntu-latest + steps: + - name: Update draft release notes + uses: release-drafter/release-drafter@v5 + with: + config-name: draft-release-notes-config.yml + name: Version (set here) + tag: (None) + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.7.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.7.0.0.md similarity index 57% rename from release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.7.0.0.md rename to release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.7.0.0.md index 25a091ed..94660393 100644 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.7.0.0.md +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.7.0.0.md @@ -1,6 +1,6 @@ ## 2019-01-31, Version 0.7.0.0 -### New Features +### Features This is the first release of the OpenDistro Elasticsearch Alerting plugin. @@ -11,14 +11,14 @@ Actions are messages using mustache templating created by the user that are sent Destinations are locations where action messages are sent, such as email server, slack, chime, or custom webhooks. Alerts can be acknowledged to mute notifications. -Adds backend REST API used for basic CRUD, search operations, and testing on monitors as well as acknowledging alerts. +* Adds backend REST API used for basic CRUD, search operations, and testing on monitors as well as acknowledging alerts. -Adds configuration API to enable/disable monitoring. +* Adds configuration API to enable/disable monitoring. -Adds stats API to check the status of plugin and ensure everything is working as expected. +* Adds stats API to check the status of plugin and ensure everything is working as expected. -Adds API support for create, update, and deleting destinations. +* Adds API support for create, update, and deleting destinations. -### Commits +#### Commits -* [[`4771e6c`](https://github.com/mauve-hedgehog/opendistro-elasticsearch-alerting/commit/4771e6c5ce6f541fc84f1290ac2fd43f64f3dcb2)] Initial release for OpenDistro Elasticsearch Alerting +* [`4771e6c`](https://github.com/mauve-hedgehog/opendistro-elasticsearch-alerting/commit/4771e6c5ce6f541fc84f1290ac2fd43f64f3dcb2) Initial release for OpenDistro Elasticsearch Alerting diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.8.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.8.0.0.md new file mode 100644 index 00000000..7539d030 --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.8.0.0.md @@ -0,0 +1,8 @@ +## 2019-04-02, Version 0.8.0.0 + +### Bug Fixes + * Fixed task name in build instructions ([#12](https://github.com/opendistro-for-elasticsearch/alerting/pull/12)) + +### Maintenance + * Adds support for Elasticsearch 6.6.2 ([#8](https://github.com/opendistro-for-elasticsearch/alerting/pull/8)) + * Upgrade to latest Kotlin version ([#7](https://github.com/opendistro-for-elasticsearch/alerting/pull/7)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.9.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.9.0.0.md new file mode 100644 index 00000000..255cc37f --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-0.9.0.0.md @@ -0,0 +1,13 @@ +## 2019-04-24, Version 0.9.0.0 + +### Features + * Add http proxy support to outgoing notifications ([#23](https://github.com/opendistro-for-elasticsearch/alerting/pull/23)) + * Allow encoding while constructing HTTP request for sending notification ([#35](https://github.com/opendistro-for-elasticsearch/alerting/pull/35)) + * Add build for Debian ([#36](https://github.com/opendistro-for-elasticsearch/alerting/pull/36)) + +### Bug Fixes + * Fix update LastFullSweepTime if the index doesn't exist ([#17](https://github.com/opendistro-for-elasticsearch/alerting/pull/17)) + * Adds more alert properties to templateArgs for context variable ([#26](https://github.com/opendistro-for-elasticsearch/alerting/pull/26)) + +### Maintenance + * Adds support for Elasticsearch 6.7.1 ([#19](https://github.com/opendistro-for-elasticsearch/alerting/pull/19)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.0.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.0.0.0.md new file mode 100644 index 00000000..a47ed62a --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.0.0.0.md @@ -0,0 +1,12 @@ +## 2019-06-25, Version 1.0.0.0 + +### Features + * Adds support for throttling on actions ([#48](https://github.com/opendistro-for-elasticsearch/alerting/pull/48)) + +### Bug Fixes + * Validate all 2XX status code in Webhook response ([#50](https://github.com/opendistro-for-elasticsearch/alerting/pull/50)) + * Allows encoding while constructing HTTP request for sending notification ([#35](https://github.com/opendistro-for-elasticsearch/alerting/pull/35)) + * Convert AlertMover/MonitorRunner to coroutines ([#11](https://github.com/opendistro-for-elasticsearch/alerting/pull/11)) + +### Maintenance + * Adds support for Elasticsearch 7.0.1 ([#41](https://github.com/opendistro-for-elasticsearch/alerting/pull/41)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.1.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.1.0.0.md new file mode 100644 index 00000000..6843e3f4 --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.1.0.0.md @@ -0,0 +1,7 @@ +## 2019-07-25, Version 1.1.0.0 + +### Features + * Return stack trace for errors in Groovy/Painless script in UI when creating a trigger ([#72](https://github.com/opendistro-for-elasticsearch/alerting/pull/72)) + +### Maintenance + * Adds support for Elasticsearch 7.1.1 ([#74](https://github.com/opendistro-for-elasticsearch/alerting/pull/74)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.10.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.10.0.0.md new file mode 100644 index 00000000..738d467c --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.10.0.0.md @@ -0,0 +1,17 @@ +## 2020-08-18, Version 1.10.0.0 + +Compatible with Elasticsearch 7.9.0 + +### Enhancements + * Add action to 'DELETE /_alerting/destinations/{id}' ([#233](https://github.com/opendistro-for-elasticsearch/alerting/pull/233)) + * Add action to '/_alerting/monitor/{id}', '/_alerting/monitor/_search' ([#234](https://github.com/opendistro-for-elasticsearch/alerting/pull/234)) + * Add action to 'CREATE /_alerting/destinations/' ([#235](https://github.com/opendistro-for-elasticsearch/alerting/pull/235)) + +### Infrastructure + * Support integration testing against remote security enabled clustering ([#213](https://github.com/opendistro-for-elasticsearch/alerting/pull/213)) + * Add coverage upload in build workflow and add badges in README ([#223](https://github.com/opendistro-for-elasticsearch/alerting/pull/223)) + * Add Codecov configuration to set a coverage threshold to pass the check on a commit ([#231](https://github.com/opendistro-for-elasticsearch/alerting/pull/231)) + +### Maintenance + * Adds support for Elasticsearch 7.9.0 ([#238](https://github.com/opendistro-for-elasticsearch/alerting/pull/238)) + * Upgrade the vulnerable dependencies versions of Kotlin and 'commons-codec' ([#230](https://github.com/opendistro-for-elasticsearch/alerting/pull/230)) \ No newline at end of file diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.2.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.2.0.0.md new file mode 100644 index 00000000..a4c0f27b --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.2.0.0.md @@ -0,0 +1,7 @@ +## 2019-09-20, Version 1.2.0.0 + +### Bug Fixes + * Fixes integTestRunner build task ([#83](https://github.com/opendistro-for-elasticsearch/alerting/pull/83)) + +### Maintenance + * Adds support for Elasticsearch 7.2.0 ([#89](https://github.com/opendistro-for-elasticsearch/alerting/pull/89)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.2.0.1.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.2.0.1.md new file mode 100644 index 00000000..cea4a4c2 --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.2.0.1.md @@ -0,0 +1,4 @@ +## 2019-09-24, Version 1.2.0.1 + +### Bug Fixes + * Updated execute API to keep thread context ([#90](https://github.com/opendistro-for-elasticsearch/alerting/pull/90)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.3.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.3.0.0.md new file mode 100644 index 00000000..7fcfb89e --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.3.0.0.md @@ -0,0 +1,5 @@ +## 2019-11-14, Version 1.3.0.0 + +### Bug Fixes + * Fixes allowing interval to be set with 0 or negative values ([#92](https://github.com/opendistro-for-elasticsearch/alerting/pull/92)) + * Cleanup ElasticThreadContextElement ([#95](https://github.com/opendistro-for-elasticsearch/alerting/pull/95)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.4.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.4.0.0.md new file mode 100644 index 00000000..90fdb07a --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.4.0.0.md @@ -0,0 +1,13 @@ +## 2020-02-07, Version 1.4.0.0 + +### Features + * Adds settings to disable alert history and delete old history indices ([#143](https://github.com/opendistro-for-elasticsearch/alerting/pull/143)) + * Adds maven publish task for notification subproject for other plugins to utilize ([#97](https://github.com/opendistro-for-elasticsearch/alerting/pull/97)) + +### Bug Fixes + * Removes unsupported HttpInput types which was breaking Alerting Kibana ([#162](https://github.com/opendistro-for-elasticsearch/alerting/pull/162)) + * Fixes missing constructors for Stats when updating to 7.4.2 ([#142](https://github.com/opendistro-for-elasticsearch/alerting/pull/142)) + * Fixes multi node alerting stats API ([#128](https://github.com/opendistro-for-elasticsearch/alerting/pull/128)) + +### Maintenance + * Adds support for Elasticsearch 7.4.2 ([#141](https://github.com/opendistro-for-elasticsearch/alerting/pull/141)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.6.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.6.0.0.md new file mode 100644 index 00000000..18b2d7a9 --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.6.0.0.md @@ -0,0 +1,10 @@ +## 2020-04-03, Version 1.6.0.0 + +### Infrastructure + * Add release workflow ([#180](https://github.com/opendistro-for-elasticsearch/alerting/pull/180)) + * Update 'checkout' action in test-workflow.yml ([#183](https://github.com/opendistro-for-elasticsearch/alerting/pull/183)) + * Add workflow - Push Notification Jar to Maven ([#174](https://github.com/opendistro-for-elasticsearch/alerting/pull/174)) + * Updates java version in push notification workflow ([#187](https://github.com/opendistro-for-elasticsearch/alerting/pull/187)) + +### Maintenance + * Adds support for Elasticsearch 7.6.1 ([#186](https://github.com/opendistro-for-elasticsearch/alerting/pull/186)) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.7.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.7.0.0.md similarity index 100% rename from release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.7.0.0.md rename to release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.7.0.0.md diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.8.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.8.0.0.md new file mode 100644 index 00000000..fe47658b --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.8.0.0.md @@ -0,0 +1,4 @@ +## 2020-05-19, Version 1.8.0.0 + +### Maintenance + * Adds support for Elasticsearch 7.7.0 ([#205](https://github.com/opendistro-for-elasticsearch/alerting/pull/205)) diff --git a/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.9.0.0.md b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.9.0.0.md new file mode 100644 index 00000000..b9d03470 --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-alerting.release-notes-1.9.0.0.md @@ -0,0 +1,7 @@ +## 2020-06-24, Version 1.9.0.0 + +### Breaking Changes + * Change default value of the index rollover condition ([#206](https://github.com/opendistro-for-elasticsearch/alerting/pull/206)) + +### Maintenance + * Adds support for Elasticsearch 7.8.0 ([#219](https://github.com/opendistro-for-elasticsearch/alerting/pull/219)) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.8.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.8.0.0.md deleted file mode 100644 index 096d18fc..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.8.0.0.md +++ /dev/null @@ -1,8 +0,0 @@ -## 2019-04-02, Version 0.8.0.0 - -### New Features - * Adds support for Elasticsearch 6.6.2 - [PR #8](https://github.com/opendistro-for-elasticsearch/alerting/pull/8) - * Upgrade to latest Kotlin version - [PR #7](https://github.com/opendistro-for-elasticsearch/alerting/pull/7) - -### Bug Fixes - * Fixed task name in build instructions - [PR #12](https://github.com/opendistro-for-elasticsearch/alerting/pull/12) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.9.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.9.0.0.md deleted file mode 100644 index ff14a913..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-0.9.0.0.md +++ /dev/null @@ -1,11 +0,0 @@ -## 2019-04-24, Version 0.9.0.0 - -### New Features - * Adds support for Elasticsearch 6.7.1 - #19 - * Add http proxy support to outgoing notifications - #23 - * Allow encoding while constructing HTTP request for sending notification - [PR #35](https://github.com/opendistro-for-elasticsearch/alerting/pull/35) - * Add build for Debian - #36 - -### Bug Fixes - * Fix update LastFullSweepTime if the index doesn't exist - #17 - * Adds more alert properties to templateArgs for context variable - #26 diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.0.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.0.0.0.md deleted file mode 100644 index b76f11e2..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.0.0.0.md +++ /dev/null @@ -1,10 +0,0 @@ -## 2019-06-25, Version 1.0.0.0 - -### New Features - * Adds support for Elasticsearch 7.0.1 - [PR #41](https://github.com/opendistro-for-elasticsearch/alerting/pull/41) - * Adds support for throttling on actions - [PR #48](https://github.com/opendistro-for-elasticsearch/alerting/pull/48) - -### Bug Fixes - * Validate all 2XX status code in Webhook response - [PR #50](https://github.com/opendistro-for-elasticsearch/alerting/pull/50) - * Allows encoding while constructing HTTP request for sending notification - [PR #35](https://github.com/opendistro-for-elasticsearch/alerting/pull/35) - * Convert AlertMover/MonitorRunner to coroutines - [PR #11](https://github.com/opendistro-for-elasticsearch/alerting/pull/11) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.1.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.1.0.0.md deleted file mode 100644 index 9357fcff..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.1.0.0.md +++ /dev/null @@ -1,5 +0,0 @@ -## 2019-07-25, Version 1.1.0.0 - -### New Features - * Adds support for Elasticsearch 7.1.1 - [PR #74](https://github.com/opendistro-for-elasticsearch/alerting/pull/74) - * Return stack trace for errors in Groovy/Painless script in UI when creating a trigger - [PR #72](https://github.com/opendistro-for-elasticsearch/alerting/pull/72) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.10.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.10.0.0.md deleted file mode 100644 index b5e58d6b..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.10.0.0.md +++ /dev/null @@ -1,4 +0,0 @@ -## 2020-08-18, Version 1.10.0.0 - -### New Features - * Adds support for Elasticsearch 7.9.0 - [PR #238](https://github.com/opendistro-for-elasticsearch/alerting/pull/238) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.2.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.2.0.0.md deleted file mode 100644 index 3410b99f..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.2.0.0.md +++ /dev/null @@ -1,7 +0,0 @@ -## 2019-09-20, Version 1.2.0.0 - -### New Features - * Adds support for Elasticsearch 7.2.0 - [PR #89](https://github.com/opendistro-for-elasticsearch/alerting/pull/89) - -### Bug Fixes - * Fixes integTestRunner build task - [PR #83](https://github.com/opendistro-for-elasticsearch/alerting/pull/83) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.2.0.1.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.2.0.1.md deleted file mode 100644 index 45974c86..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.2.0.1.md +++ /dev/null @@ -1,4 +0,0 @@ -## 2019-09-24, Version 1.2.0.1 - -### Bug Fixes - * Updated execute API to keep thread context - [PR #90](https://github.com/opendistro-for-elasticsearch/alerting/pull/90) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.3.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.3.0.0.md deleted file mode 100644 index 6332517d..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.3.0.0.md +++ /dev/null @@ -1,5 +0,0 @@ -## 2019-11-14, Version 1.3.0.0 - -### Bug Fixes - * Fixes allowing interval to be set with 0 or negative values - [PR #92](https://github.com/opendistro-for-elasticsearch/alerting/pull/92) - * Cleanup ElasticThreadContextElement - [PR #95](https://github.com/opendistro-for-elasticsearch/alerting/pull/95) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.4.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.4.0.0.md deleted file mode 100644 index 8cf3674e..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.4.0.0.md +++ /dev/null @@ -1,11 +0,0 @@ -## 2020-02-07, Version 1.4.0.0 - -### New Features - * Adds settings to disable alert history and delete old history indices - [PR #143](https://github.com/opendistro-for-elasticsearch/alerting/pull/143) - * Adds support for Elasticsearch 7.4.2 - [PR #141](https://github.com/opendistro-for-elasticsearch/alerting/pull/141) - * Adds maven publish task for notification subproject for other plugins to utilize - [PR #97](https://github.com/opendistro-for-elasticsearch/alerting/pull/97) - -### Bug Fixes - * Removes unsupported HttpInput types which was breaking Alerting Kibana - [PR #162](https://github.com/opendistro-for-elasticsearch/alerting/pull/162) - * Fixes missing constructors for Stats when updating to 7.4.2 - [PR #142](https://github.com/opendistro-for-elasticsearch/alerting/pull/142) - * Fixes multi node alerting stats API - [PR #128](https://github.com/opendistro-for-elasticsearch/alerting/pull/128) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.6.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.6.0.0.md deleted file mode 100644 index da90d513..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.6.0.0.md +++ /dev/null @@ -1,4 +0,0 @@ -## 2020-04-03, Version 1.6.0.0 - -### New Features - * Adds support for Elasticsearch 7.6.1 - [PR #186](https://github.com/opendistro-for-elasticsearch/alerting/pull/186) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.8.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.8.0.0.md deleted file mode 100644 index 8f3ad7b5..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.8.0.0.md +++ /dev/null @@ -1,4 +0,0 @@ -## 2020-05-19, Version 1.8.0.0 - -### New Features - * Adds support for Elasticsearch 7.7.0 - [PR #205](https://github.com/opendistro-for-elasticsearch/alerting/pull/205) diff --git a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.9.0.0.md b/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.9.0.0.md deleted file mode 100644 index 631cd3ae..00000000 --- a/release-notes/opendistro-for-elasticsearch.alerting.release-notes-1.9.0.0.md +++ /dev/null @@ -1,4 +0,0 @@ -## 2020-06-24, Version 1.9.0.0 - -### New Features - * Adds support for Elasticsearch 7.8.0 - [PR #219](https://github.com/opendistro-for-elasticsearch/alerting/pull/219)