Skip to content

Commit

Permalink
Prepare for 7.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Mercier committed Feb 16, 2022
1 parent fe6307d commit 068176b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Plugin versions are available for (at least) all minor versions of Elasticsearch
The first 3 digits of plugin version is Elasticsearch versioning. The last digit is used for plugin versioning under an elasticsearch version.

To install it, launch this command in Elasticsearch directory replacing the url by the correct link for your Elasticsearch version (see table)
`./bin/elasticsearch-plugin install https://github.com/opendatasoft/elasticsearch-aggregation-envelope/releases/download/v7.6.0.0/envelope-aggregation-7.6.0.0.zip`
`./bin/elasticsearch-plugin install https://github.com/opendatasoft/elasticsearch-aggregation-envelope/releases/download/v7.17.0.0/envelope-aggregation-7.17.0.0.zip`

| elasticsearch version | plugin version | plugin url |
| --------------------- | -------------- | ---------- |
Expand All @@ -105,10 +105,11 @@ To install it, launch this command in Elasticsearch directory replacing the url
| 7.4.0 | 7.4.0.0 | https://github.com/opendatasoft/elasticsearch-aggregation-envelope/releases/download/v7.4.0.0/envelope-aggregation-7.4.0.0.zip |
| 7.5.1 | 7.5.1.0 | https://github.com/opendatasoft/elasticsearch-aggregation-envelope/releases/download/v7.5.1.0/envelope-aggregation-7.5.1.0.zip |
| 7.6.0 | 7.6.0.0 | https://github.com/opendatasoft/elasticsearch-aggregation-envelope/releases/download/v7.6.0.0/envelope-aggregation-7.6.0.0.zip |
| 7.17.0 | 7.17.0.0 | https://github.com/opendatasoft/elasticsearch-aggregation-envelope/releases/download/v7.17.0.0/envelope-aggregation-7.17.0.0.zip |



License
-------

This software is under The MIT License (MIT)
This software is under The MIT License (MIT)
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ dependencies {
// However this archive is not included in the final plugin bundle, since
// legacy geo and its dependencies (JTS) are already present at runtime
// with ES (see the jar/manifest rule below)
compileOnly files('libs/legacy-geo-7.16.3.jar')
compileOnly files('libs/legacy-geo-7.17.0.jar')

yamlRestTestImplementation "org.elasticsearch.test:framework:${es_version}"
yamlRestTestImplementation "org.apache.logging.log4j:log4j-core:2.17.1"
}

// Since this plugin is meant to be loaded in an ES 7.16 instance,
// Since this plugin is meant to be loaded in an ES >=7.16 instance,
// we can "link" it to existing classes through a class path without adding other archives
// to the plugin bundle
jar {
manifest {
attributes(
"Class-Path": "../../modules/legacy-geo/legacy-geo-7.16.3.jar ../../modules/legacy-geo/jts-core-1.15.0.jar ../../modules/legacy-geo/spatial4j-0.7.jar")
"Class-Path": "../../modules/legacy-geo/legacy-geo-7.17.0.jar ../../modules/legacy-geo/jts-core-1.15.0.jar ../../modules/legacy-geo/spatial4j-0.7.jar")

}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
es_version = 7.16.3
plugin_version = 7.16.3.0
es_version = 7.17.0
plugin_version = 7.17.0.0
Binary file not shown.

0 comments on commit 068176b

Please sign in to comment.