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

Commit

Permalink
Support ES 6.8.1 (#78)
Browse files Browse the repository at this point in the history
* Updated package.json and release notes

* Added babel.config.js
  • Loading branch information
qreshi committed Aug 1, 2019
1 parent a9d364f commit 3b15e24
Show file tree
Hide file tree
Showing 5 changed files with 1,256 additions and 1,248 deletions.
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

12 changes: 12 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// babelrc doesn't respect NODE_PATH anymore but using require does.
// Alternative to install them locally in node_modules
module.exports = {
presets: [
require('@babel/preset-env'),
require('@babel/preset-react'),
],
plugins: [
require('@babel/plugin-proposal-class-properties'),
require('@babel/plugin-proposal-object-rest-spread'),
]
}
7 changes: 6 additions & 1 deletion opendistro-elasticsearch-alerting-kibana.release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## Version 0.9.0.0 (Current)
## Version 0.10.0.0 (Current)

### New Features
* Adds support for Kibana 6.8.1 - [PR #78](https://github.com/opendistro-for-elasticsearch/alerting-kibana-plugin/pull/78)

## 2019-04-24, Version 0.9.0.0

### New Features
* Adds support for Kibana 6.7.1 - [PR #32]
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "opendistro-alerting",
"version": "0.9.0.0",
"version": "0.10.0.0",
"description": "Kibana Alerting Plugin",
"main": "index.js",
"license": "Apache-2.0",
"homepage": "https://github.com/opendistro-for-elasticsearch/alerting-kibana-plugin",
"kibana": {
"version": "6.7.1",
"version": "6.8.1",
"templateVersion": "6.3.3"
},
"repository": {
Expand Down
Loading

0 comments on commit 3b15e24

Please sign in to comment.