Skip to content

Commit

Permalink
release version 10.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedHamouGisaia committed Jul 19, 2019
1 parent 43c9318 commit 530d812
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 36 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Change Log

## [v10.6.1](https://github.com/gisaia/ARLAS-server/tree/v10.6.1) (2019-05-16)
## [v10.6.2](https://github.com/gisaia/ARLAS-server/tree/v10.6.2) (2019-07-19)

[Full Changelog](https://github.com/gisaia/ARLAS-server/compare/v10.6.1...v10.6.2)

**New stuff:**

- \_search : Allow geodistance sort along with 'after' parameter [\#481](https://github.com/gisaia/ARLAS-server/issues/481)

**Fixed bugs:**

- \[tiled geosearch\]\[tiled geoaggreagte\] pwithin filter breaks due to shared borders with tiles [\#456](https://github.com/gisaia/ARLAS-server/issues/456)
- \_search : Error 500 caused by applying a geosort along with a sort on id when returning \_next link in search response [\#475](https://github.com/gisaia/ARLAS-server/issues/475)
- Taggable fields can contain duplicate tags [\#266](https://github.com/gisaia/ARLAS-server/issues/266)

## [v10.6.1](https://github.com/gisaia/ARLAS-server/tree/v10.6.1) (2019-05-17)

[Full Changelog](https://github.com/gisaia/ARLAS-server/compare/v10.6.0...v10.6.1)

Expand Down
6 changes: 3 additions & 3 deletions arlas-admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>arlas-admin</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS server admin</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>arlas-core</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions arlas-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>arlas-core</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS server core</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
Expand Down
8 changes: 4 additions & 4 deletions arlas-opensearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>arlas-opensearch</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS server opensearch</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>arlas-rest</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>ogc-common</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions arlas-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>arlas-rest</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS server rest</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>arlas-core</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
title = "ARLAS Exploration API",
description = "Explore the content of ARLAS collections",
license = @License(name = "Apache 2.0", url = "https://www.apache.org/licenses/LICENSE-2.0.html"),
version = "API_VERSION"))
version = "10.0.2"))

public abstract class ExploreRESTServices {

Expand Down
14 changes: 7 additions & 7 deletions arlas-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,41 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>arlas-server</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS server</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>arlas-rest</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>arlas-opensearch</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>ogc-csw</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>ogc-wfs</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>arlas-admin</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions arlas-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>arlas-tests</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS server tests</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>arlas-server</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>

<!-- ____________________________________________________ -->
Expand Down
6 changes: 3 additions & 3 deletions ogc-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>ogc-common</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS ogc common</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>arlas-core</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions ogc-csw/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>ogc-csw</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS ogc csw</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>ogc-common</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions ogc-wfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.arlas</groupId>
<artifactId>ogc-wfs</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>jar</packaging>
<name>ARLAS ogc wfs</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</parent>

<dependencies>
<dependency>
<groupId>io.arlas</groupId>
<artifactId>ogc-common</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions packaging/helm/arlas-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 10.6.1
appVersion: 10.6.2
description: Exploration & analyzis of geo-referenced data from elasticsearch.
home: http://arlas.io/
icon: http://arlas.io/wp-content/uploads/2017/12/Logo-Arlas-Bicolor-01.png
Expand All @@ -10,4 +10,4 @@ maintainers:
name: arlas-server
sources:
- https://github.com/gisaia/ARLAS-server
version: 10.6.1
version: 10.6.2
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.arlas</groupId>
<artifactId>arlas-server-parent</artifactId>
<version>10.6.2-SNAPSHOT</version>
<version>10.6.2</version>
<packaging>pom</packaging>
<name>ARLAS server parent</name>

Expand Down

0 comments on commit 530d812

Please sign in to comment.