Skip to content

Commit 53628a5

Browse files
authored
Merge pull request #217 from vvanholl/es683
Upgrade to ES 6.8.3 and release 6.8.3.0
2 parents 7565ebd + 32166bb commit 53628a5

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.gitlab-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: "compuscene/gradle:5.3.1-jdk12"
1+
image: "gradle:5.5.1-jdk12"
22

33
variables:
44
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
@@ -13,7 +13,7 @@ stages:
1313

1414
build:
1515
stage: "build"
16-
script: "gradle --build-cache assemble"
16+
script: "su gradle -c 'gradle --build-cache assemble'"
1717
cache:
1818
key: "$CI_COMMIT_REF_NAME"
1919
policy: "push"
@@ -23,7 +23,7 @@ build:
2323

2424
test:
2525
stage: "test"
26-
script: "gradle check"
26+
script: "su gradle -c 'gradle check'"
2727
artifacts:
2828
reports:
2929
junit: "build/reports/integTestRunnerJunit/TEST-*.xml"
@@ -40,7 +40,7 @@ release:
4040
- "6.x"
4141
- "master"
4242
stage: "release"
43-
script: "gradle release"
43+
script: "su gradle -c 'gradle release'"
4444
cache:
4545
key: "$CI_COMMIT_REF_NAME"
4646
policy: "pull"

README.md

Lines changed: 2 additions & 1 deletion
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+
| 6.8.3 | 6.8.3.0 | Sep 12, 2019 |
3031
| 6.8.2 | 6.8.2.0 | Aug 12, 2019 |
3132
| 6.8.1 | 6.8.1.0 | Jun 24, 2019 |
3233
| 6.8.0 | 6.8.0.0 | May 23, 2019 |
@@ -121,7 +122,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
121122
## Install
122123

123124
- Since Elasticsearch 6.0.0 :
124-
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/6.8.2.0/prometheus-exporter-6.8.2.0.zip`
125+
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/6.8.3.0/prometheus-exporter-6.8.3.0.zip`
125126

126127
- On Elasticsearch 5.x.x :
127128
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/5.6.16.0/elasticsearch-prometheus-exporter-5.6.16.0.zip`

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath "org.elasticsearch.gradle:build-tools:6.8.2" // How can we use ${versions.elasticsearch} here ???
11+
classpath "org.elasticsearch.gradle:build-tools:6.8.3" // How can we use ${versions.elasticsearch} here ???
1212
classpath group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0'
1313
classpath group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0'
1414
classpath group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.3.0'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group = org.elasticsearch.plugin.prometheus
22

3-
version = 6.8.2.1-SNAPSHOT
3+
version = 6.8.3.0
44

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

0 commit comments

Comments
 (0)