Skip to content

Commit dafd04d

Browse files
authored
Merge pull request vvanholl#221 from vvanholl/es731
Upgrade to ES 7.3.1 and release version 7.3.1.0
2 parents e420700 + a19fb0a commit dafd04d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
2727

2828
| Elasticsearch | Plugin | Release date |
2929
| -------------- | -------------- | ------------ |
30+
| 7.3.1 | 7.3.1.0 | Sep 18, 2019 |
3031
| 7.3.0 | 7.3.0.0 | Sep 17, 2019 |
3132
| 7.2.1 | 7.2.1.0 | Jul 31, 2019 |
3233
| 7.2.0 | 7.2.0.0 | Jul 12, 2019 |
@@ -134,7 +135,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
134135
## Install
135136

136137
- Since Elasticsearch 7.0.0 :
137-
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.3.0.0/prometheus-exporter-7.3.0.0.zip`
138+
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.3.1.0/prometheus-exporter-7.3.1.0.zip`
138139

139140
- Since Elasticsearch 6.0.0 :
140141
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/6.8.0.0/prometheus-exporter-6.8.0.0.zip`

build.gradle

+5-6
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,9 @@ task release() {
155155
}
156156
}
157157

158-
// Fix for https://github.com/elastic/elasticsearch/issues/45073
159-
// TODO(lukas-vlcek): Should be removed for ES v7.3.1 and later.
160-
configurations.all {
161-
resolutionStrategy.dependencySubstitution {
162-
substitute project(':rest-api-spec') with module ("org.elasticsearch:rest-api-spec:${versions.elasticsearch}")
163-
}
158+
// Fix for https://github.com/elastic/elasticsearch/issues/45891
159+
// TODO(lukas-vlcek): Should be removed for ES v7.3.2 and later.
160+
configurations.restSpec.withDependencies { dependencies ->
161+
dependencies.clear()
162+
dependencies.add(project.dependencies.create("org.elasticsearch:rest-api-spec:${es_version}"))
164163
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group = org.elasticsearch.plugin.prometheus
22

3-
version = 7.3.0.0
3+
version = 7.3.1.0
44

55
pluginName = prometheus-exporter
66
pluginClassname = org.elasticsearch.plugin.prometheus.PrometheusExporterPlugin

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rootProject.name = "prometheus-exporter"
22

33
// Fix for https://github.com/elastic/elasticsearch/issues/45073
4-
// TODO(lukas-vlcek): Should be removed for ES v7.3.1 and later.
4+
// TODO(lukas-vlcek): Should be removed for ES v7.3.2 and later.
55
include ':rest-api-spec'

0 commit comments

Comments
 (0)