Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
release: publish v6.3.1 (#659)
Browse files Browse the repository at this point in the history
* fix: add null checking for object mappers

* docs: add docker guide to README.md

* docs: update CHANGELOG.md

* chore: update version from 6.3.0 to 6.3.1

* docs: update README.md
  • Loading branch information
juliapampus authored Oct 5, 2021
1 parent 6640350 commit 67ed4de
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 37 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

## [X.X.X] - XXXX-XX-XX
## [6.3.1] - 2021-10-05

### Fixed
- Check for `maxDepth` in `IdsResourceBuilder` when resolving samples to avoid possible `StackOverFlowError`.
Expand Down
26 changes: 16 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,27 @@ usage policy patterns.

## Quick Start

**We provide Docker images. These can be found
We provide Docker images. These can be found
[here](https://github.com/International-Data-Spaces-Association/DataspaceConnector/pkgs/container/dataspace-connector).
For a Docker or Kubernetes deployment, as well as a full setup with the Connector
and its GUI, see [here](https://github.com/International-Data-Spaces-Association/IDS-Deployment-Examples/tree/main/dataspace-connector).**

For an easy deployment, make sure that you have [Docker](https://docs.docker.com/get-docker/)
installed. Then, execute the following command:

If you want to build and run locally, ensure that at least Java 11 is installed. Then, follow these steps:
```commandline
docker run -p 8080:8080 --name connector ghcr.io/international-data-spaces-association/dataspace-connector:latest
```

1. Clone this repository.
2. Execute `cd DataspaceConnector` and `./mvnw clean package`.
3. Navigate to `/target` and run `java -jar dataspaceconnector-{VERSION}.jar`.
4. If everything worked fine, the connector is available at https://localhost:8080/. The API can
be accessed at https://localhost:8080/api. The Swagger UI can be found at https://localhost:8080/api/docs.
If everything worked fine, the connector is available at
[https://localhost:8080/](https://localhost:8080/). The API can be accessed at
[https://localhost:8080/api](https://localhost:8080/api). The Swagger UI can be found at
[https://localhost:8080/api/docs](https://localhost:8080/api/docs).
Next, please take a look at our
[communication guide](https://international-data-spaces-association.github.io/DataspaceConnector/CommunicationGuide).

For more details, see [here](https://international-data-spaces-association.github.io/DataspaceConnector/).
For a more detailed or advanced Docker or Kubernetes deployment, as well as a full setup with the
Connector and its GUI, see [here](https://github.com/International-Data-Spaces-Association/IDS-Deployment-Examples/tree/main/dataspace-connector).

If you want to build and run locally, follow [these](https://international-data-spaces-association.github.io/DataspaceConnector/GettingStarted#quick-start) steps.

## Contributing

Expand Down
4 changes: 2 additions & 2 deletions charts/dataspace-connector/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.3
version: 0.2.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "6.3.0"
appVersion: "6.3.1"

dependencies:
- name: postgresql
Expand Down
46 changes: 23 additions & 23 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ info:
license:
name: "Apache License, Version 2.0"
url: https://www.apache.org/licenses/LICENSE-2.0.txt
version: 6.3.0
version: 6.3.1
servers:
- url: https://localhost:8080
description: Generated server url
Expand Down Expand Up @@ -6862,6 +6862,10 @@ components:
- '@type'
type: object
properties:
properties:
type: object
additionalProperties:
type: object
comment:
type: array
items:
Expand All @@ -6870,10 +6874,6 @@ components:
type: array
items:
$ref: '#/components/schemas/TypedLiteral'
properties:
type: object
additionalProperties:
type: object
'@id':
type: string
format: uri
Expand All @@ -6894,9 +6894,6 @@ components:
- $ref: '#/components/schemas/AbstractConstraint'
- type: object
properties:
ids:unit:
type: string
format: uri
ids:operator:
type: string
enum:
Expand Down Expand Up @@ -6946,6 +6943,9 @@ components:
- https://w3id.org/idsa/code/STRING_IS_CONTAINED
- https://w3id.org/idsa/code/TEMPORAL_DISJOINT
- https://w3id.org/idsa/code/TEMPORAL_EQUALS
ids:unit:
type: string
format: uri
ids:leftOperand:
type: string
enum:
Expand All @@ -6968,10 +6968,10 @@ components:
- https://w3id.org/idsa/code/USER
ids:rightOperand:
$ref: '#/components/schemas/RdfResource'
ids:pipEndpoint:
ids:rightOperandReference:
type: string
format: uri
ids:rightOperandReference:
ids:pipEndpoint:
type: string
format: uri
'@type':
Expand Down Expand Up @@ -7065,6 +7065,10 @@ components:
- ids:action
type: object
properties:
properties:
type: object
additionalProperties:
type: object
comment:
type: array
items:
Expand All @@ -7073,10 +7077,9 @@ components:
type: array
items:
$ref: '#/components/schemas/TypedLiteral'
properties:
type: object
additionalProperties:
type: object
ids:target:
type: string
format: uri
ids:assignee:
type: array
items:
Expand All @@ -7090,6 +7093,12 @@ components:
ids:assetRefinement:
oneOf:
- $ref: '#/components/schemas/LogicalConstraint'
ids:constraint:
type: array
items:
oneOf:
- $ref: '#/components/schemas/Constraint'
- $ref: '#/components/schemas/LogicalConstraint'
ids:action:
type: array
items:
Expand All @@ -7111,15 +7120,6 @@ components:
- https://w3id.org/idsa/code/TRACK_PROVENANCE
- https://w3id.org/idsa/code/USE
- https://w3id.org/idsa/code/WRITE
ids:constraint:
type: array
items:
oneOf:
- $ref: '#/components/schemas/Constraint'
- $ref: '#/components/schemas/LogicalConstraint'
ids:target:
type: string
format: uri
ids:description:
type: array
items:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

<properties>
<!-- General -->
<revision>6.3.1-SNAPSHOT</revision>
<revision>6.3.1</revision>
<email>[email protected]</email>

<!-- Build info -->
Expand Down

0 comments on commit 67ed4de

Please sign in to comment.