Skip to content

Commit

Permalink
release version 24.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alainbodiguel committed Feb 5, 2024
1 parent a690d78 commit 294afc0
Show file tree
Hide file tree
Showing 25 changed files with 61 additions and 884 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [v24.0.5](https://github.com/gisaia/arlas-persistence/tree/v24.0.5) (2024-02-05)

[Full Changelog](https://github.com/gisaia/arlas-persistence/compare/v24.0.4...v24.0.5)

**Miscellaneous:**

- List with no arlas-org-filter returns only public ressource [\#92](https://github.com/gisaia/ARLAS-persistence/issues/92)
- Add organisation and public status in each element of the resouces list [\#90](https://github.com/gisaia/ARLAS-persistence/issues/90)
- Public dashboards are not available when logged in [\#89](https://github.com/gisaia/ARLAS-persistence/issues/89)

## [v24.0.4](https://github.com/gisaia/arlas-persistence/tree/v24.0.4) (2023-12-11)

[Full Changelog](https://github.com/gisaia/arlas-persistence/compare/v24.0.2...v24.0.4)
Expand Down
1 change: 1 addition & 0 deletions arlas-persistence-core/docs/api/definitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
|**doc_writers** <br>*optional*|< string > array|
|**doc_zone** <br>*required*|string|
|**id** <br>*optional*|string|
|**ispublic** <br>*optional*|boolean|
|**last_update_date** <br>*required*|string (date-time)|
|**updatable** <br>*optional*|boolean|

Expand Down
2 changes: 1 addition & 1 deletion arlas-persistence-core/docs/api/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ persistence REST services


### Version information
*Version* : 24.0.4
*Version* : 24.0.5


### Contact information
Expand Down
116 changes: 0 additions & 116 deletions arlas-persistence-core/docs/api/paths.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,44 +80,6 @@ Check the existence of an entry given its id.
* `application/json;charset=utf-8`


<a name="existsbykey"></a>
#### Check the existence of an entry given its zone and key.
```
GET /persist/resource/exists/{zone}/{key}
```


##### Description
Check the existence of an entry given its zone and key.


##### Parameters

|Type|Name|Description|Schema|Default|
|---|---|---|---|---|
|**Path**|**key** <br>*required*|The key of the data.|string||
|**Path**|**zone** <br>*required*|Zone of the document.|string|`"pref"`|
|**Query**|**pretty** <br>*optional*|Pretty print|boolean|`"false"`|


##### Responses

|HTTP Code|Description|Schema|
|---|---|---|
|**200**|Successful operation|[Exists](#exists)|
|**500**|Arlas Persistence Error.|[Error](#error)|


##### Consumes

* `application/json;charset=utf-8`


##### Produces

* `application/json;charset=utf-8`


<a name="getbyid"></a>
#### Fetch an entry given its id.
```
Expand Down Expand Up @@ -278,84 +240,6 @@ Store a new piece of data for the provided zone and key (auto generate id).
* `application/json;charset=utf-8`


<a name="getbykey"></a>
#### Fetch an entry given its zone and key.
```
GET /persist/resource/{zone}/{key}
```


##### Description
Fetch an entry given its zone and key.


##### Parameters

|Type|Name|Description|Schema|Default|
|---|---|---|---|---|
|**Path**|**key** <br>*required*|The key of the data.|string||
|**Path**|**zone** <br>*required*|Zone of the document.|string|`"pref"`|
|**Query**|**pretty** <br>*optional*|Pretty print|boolean|`"false"`|


##### Responses

|HTTP Code|Description|Schema|
|---|---|---|
|**200**|Successful operation|[DataWithLinks](#datawithlinks)|
|**404**|Key or zone not found.|[Error](#error)|
|**500**|Arlas Persistence Error.|[Error](#error)|


##### Consumes

* `application/json;charset=utf-8`


##### Produces

* `application/json;charset=utf-8`


<a name="delete"></a>
#### Delete an entry given its key and id.
```
DELETE /persist/resource/{zone}/{key}
```


##### Description
Delete an entry given its key and id.


##### Parameters

|Type|Name|Description|Schema|Default|
|---|---|---|---|---|
|**Path**|**key** <br>*required*|The key of the data.|string||
|**Path**|**zone** <br>*required*|Zone of the document.|string|`"pref"`|
|**Query**|**pretty** <br>*optional*|Pretty print|boolean|`"false"`|


##### Responses

|HTTP Code|Description|Schema|
|---|---|---|
|**202**|Successful operation|[DataWithLinks](#datawithlinks)|
|**404**|Zone or key not found.|[Error](#error)|
|**500**|Arlas Server Error.|[Error](#error)|


##### Consumes

* `application/json;charset=utf-8`


##### Produces

* `application/json;charset=utf-8`


<a name="list"></a>
#### Fetch a list of data related to a zone.
```
Expand Down
4 changes: 2 additions & 2 deletions arlas-persistence-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

<groupId>io.arlas</groupId>
<artifactId>arlas-persistence-core</artifactId>
<version>24.0.5-SNAPSHOT</version>
<version>24.0.5</version>
<packaging>jar</packaging>
<name>ARLAS persistence server core</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-persistence-parent</artifactId>
<version>24.0.5-SNAPSHOT</version>
<version>24.0.5</version>
</parent>

<dependencies>
Expand Down
1 change: 1 addition & 0 deletions arlas-persistence-rest/docs/api/definitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
|**doc_writers** <br>*optional*|< string > array|
|**doc_zone** <br>*required*|string|
|**id** <br>*optional*|string|
|**ispublic** <br>*optional*|boolean|
|**last_update_date** <br>*required*|string (date-time)|
|**updatable** <br>*optional*|boolean|

Expand Down
2 changes: 1 addition & 1 deletion arlas-persistence-rest/docs/api/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ persistence REST services


### Version information
*Version* : 24.0.4
*Version* : 24.0.5


### Contact information
Expand Down
116 changes: 0 additions & 116 deletions arlas-persistence-rest/docs/api/paths.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,44 +80,6 @@ Check the existence of an entry given its id.
* `application/json;charset=utf-8`


<a name="existsbykey"></a>
#### Check the existence of an entry given its zone and key.
```
GET /persist/resource/exists/{zone}/{key}
```


##### Description
Check the existence of an entry given its zone and key.


##### Parameters

|Type|Name|Description|Schema|Default|
|---|---|---|---|---|
|**Path**|**key** <br>*required*|The key of the data.|string||
|**Path**|**zone** <br>*required*|Zone of the document.|string|`"pref"`|
|**Query**|**pretty** <br>*optional*|Pretty print|boolean|`"false"`|


##### Responses

|HTTP Code|Description|Schema|
|---|---|---|
|**200**|Successful operation|[Exists](#exists)|
|**500**|Arlas Persistence Error.|[Error](#error)|


##### Consumes

* `application/json;charset=utf-8`


##### Produces

* `application/json;charset=utf-8`


<a name="getbyid"></a>
#### Fetch an entry given its id.
```
Expand Down Expand Up @@ -278,84 +240,6 @@ Store a new piece of data for the provided zone and key (auto generate id).
* `application/json;charset=utf-8`


<a name="getbykey"></a>
#### Fetch an entry given its zone and key.
```
GET /persist/resource/{zone}/{key}
```


##### Description
Fetch an entry given its zone and key.


##### Parameters

|Type|Name|Description|Schema|Default|
|---|---|---|---|---|
|**Path**|**key** <br>*required*|The key of the data.|string||
|**Path**|**zone** <br>*required*|Zone of the document.|string|`"pref"`|
|**Query**|**pretty** <br>*optional*|Pretty print|boolean|`"false"`|


##### Responses

|HTTP Code|Description|Schema|
|---|---|---|
|**200**|Successful operation|[DataWithLinks](#datawithlinks)|
|**404**|Key or zone not found.|[Error](#error)|
|**500**|Arlas Persistence Error.|[Error](#error)|


##### Consumes

* `application/json;charset=utf-8`


##### Produces

* `application/json;charset=utf-8`


<a name="delete"></a>
#### Delete an entry given its key and id.
```
DELETE /persist/resource/{zone}/{key}
```


##### Description
Delete an entry given its key and id.


##### Parameters

|Type|Name|Description|Schema|Default|
|---|---|---|---|---|
|**Path**|**key** <br>*required*|The key of the data.|string||
|**Path**|**zone** <br>*required*|Zone of the document.|string|`"pref"`|
|**Query**|**pretty** <br>*optional*|Pretty print|boolean|`"false"`|


##### Responses

|HTTP Code|Description|Schema|
|---|---|---|
|**202**|Successful operation|[DataWithLinks](#datawithlinks)|
|**404**|Zone or key not found.|[Error](#error)|
|**500**|Arlas Server Error.|[Error](#error)|


##### Consumes

* `application/json;charset=utf-8`


##### Produces

* `application/json;charset=utf-8`


<a name="list"></a>
#### Fetch a list of data related to a zone.
```
Expand Down
6 changes: 3 additions & 3 deletions arlas-persistence-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@

<groupId>io.arlas</groupId>
<artifactId>arlas-persistence-rest</artifactId>
<version>24.0.5-SNAPSHOT</version>
<version>24.0.5</version>
<packaging>jar</packaging>
<name>ARLAS persistence server rest</name>

<parent>
<groupId>io.arlas</groupId>
<artifactId>arlas-persistence-parent</artifactId>
<version>24.0.5-SNAPSHOT</version>
<version>24.0.5</version>
</parent>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
title = "ARLAS persistence API",
description = "persistence REST services",
license = @License(name = "Apache 2.0", url = "https://www.apache.org/licenses/LICENSE-2.0.html"),
version = "API_VERSION"),
version = "24.0.5"),
schemes = { SwaggerDefinition.Scheme.HTTP, SwaggerDefinition.Scheme.HTTPS })

public class PersistenceRestService {
Expand Down
1 change: 1 addition & 0 deletions arlas-persistence-server/docs/api/definitions.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
|**doc_writers** <br>*optional*|< string > array|
|**doc_zone** <br>*required*|string|
|**id** <br>*optional*|string|
|**ispublic** <br>*optional*|boolean|
|**last_update_date** <br>*required*|string (date-time)|
|**updatable** <br>*optional*|boolean|

Expand Down
2 changes: 1 addition & 1 deletion arlas-persistence-server/docs/api/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ persistence REST services


### Version information
*Version* : 24.0.4
*Version* : 24.0.5


### Contact information
Expand Down
Loading

0 comments on commit 294afc0

Please sign in to comment.