diff --git a/CHANGELOG.md b/CHANGELOG.md index 0600848ea..0924da4e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ # Changelog All notable changes to this project will be documented in this file. -## [X.X.X] - XXXX-XX-XX +## [7.0.1] - 2022-02-07 ### Added - Add `portainer.application.connector.network` to `application.properties.`. Default is set to `local`. diff --git a/charts/dataspace-connector/Chart.yaml b/charts/dataspace-connector/Chart.yaml index e670ecb68..36b0ced70 100644 --- a/charts/dataspace-connector/Chart.yaml +++ b/charts/dataspace-connector/Chart.yaml @@ -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.3.0 +version: 0.3.1 # 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: "7.0.0" +appVersion: "7.0.1" dependencies: - name: postgresql diff --git a/openapi.yaml b/openapi.yaml index a7633be2d..6d260aea6 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -25,7 +25,7 @@ info: license: name: "Apache License, Version 2.0" url: https://www.apache.org/licenses/LICENSE-2.0.txt - version: 7.0.0 + version: 7.0.1 servers: - url: https://localhost:8080 description: Generated server url @@ -2628,23 +2628,13 @@ paths: content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' "200": description: Ok content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' put: tags: - _Configurations @@ -2664,23 +2654,13 @@ paths: content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' "200": description: Ok content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' /api/configuration/negotiation: get: tags: @@ -2693,23 +2673,13 @@ paths: content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' "200": description: Ok content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' put: tags: - _Configurations @@ -2727,23 +2697,13 @@ paths: content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' "200": description: Ok content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' /api/catalogs/{id}: get: tags: @@ -3398,10 +3358,10 @@ paths: schema: type: string enum: - - Start - - Stop - - Delete - - Describe + - START + - STOP + - DELETE + - DESCRIBE responses: "401": description: Unauthorized @@ -5059,34 +5019,13 @@ paths: content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object - "500": - description: Internal server error - content: - application/json: - schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' "200": description: Ok content: application/json: schema: - type: object - properties: - empty: - type: boolean - additionalProperties: - type: object + $ref: '#/components/schemas/JSONObject' /api/subscriptions/owning: get: tags: @@ -6795,6 +6734,13 @@ components: type: string _links: $ref: '#/components/schemas/Links' + JSONObject: + type: object + properties: + empty: + type: boolean + additionalProperties: + type: object CatalogDesc: type: object properties: @@ -7096,12 +7042,28 @@ components: - $ref: '#/components/schemas/AbstractConstraint' - type: object properties: - ids:pipEndpoint: - type: string - format: uri - ids:unit: + ids:rightOperand: + $ref: '#/components/schemas/RdfResource' + ids:leftOperand: type: string - format: uri + enum: + - https://w3id.org/idsa/code/ABSOLUTE_SPATIAL_POSITION + - https://w3id.org/idsa/code/COUNT + - https://w3id.org/idsa/code/DELAY + - https://w3id.org/idsa/code/ELAPSED_TIME + - https://w3id.org/idsa/code/ENDPOINT + - https://w3id.org/idsa/code/EVENT + - https://w3id.org/idsa/code/PATH + - https://w3id.org/idsa/code/PAYMENT + - https://w3id.org/idsa/code/PAY_AMOUNT + - https://w3id.org/idsa/code/POLICY_EVALUATION_TIME + - https://w3id.org/idsa/code/PURPOSE + - https://w3id.org/idsa/code/QUANTITY + - https://w3id.org/idsa/code/RECURRENCE_RATE + - https://w3id.org/idsa/code/SECURITY_LEVEL + - https://w3id.org/idsa/code/STATE + - https://w3id.org/idsa/code/SYSTEM + - https://w3id.org/idsa/code/USER ids:operator: type: string enum: @@ -7151,31 +7113,15 @@ components: - https://w3id.org/idsa/code/STRING_IS_CONTAINED - https://w3id.org/idsa/code/TEMPORAL_DISJOINT - https://w3id.org/idsa/code/TEMPORAL_EQUALS - ids:rightOperand: - $ref: '#/components/schemas/RdfResource' - ids:leftOperand: + ids:unit: type: string - enum: - - https://w3id.org/idsa/code/ABSOLUTE_SPATIAL_POSITION - - https://w3id.org/idsa/code/COUNT - - https://w3id.org/idsa/code/DELAY - - https://w3id.org/idsa/code/ELAPSED_TIME - - https://w3id.org/idsa/code/ENDPOINT - - https://w3id.org/idsa/code/EVENT - - https://w3id.org/idsa/code/PATH - - https://w3id.org/idsa/code/PAYMENT - - https://w3id.org/idsa/code/PAY_AMOUNT - - https://w3id.org/idsa/code/POLICY_EVALUATION_TIME - - https://w3id.org/idsa/code/PURPOSE - - https://w3id.org/idsa/code/QUANTITY - - https://w3id.org/idsa/code/RECURRENCE_RATE - - https://w3id.org/idsa/code/SECURITY_LEVEL - - https://w3id.org/idsa/code/STATE - - https://w3id.org/idsa/code/SYSTEM - - https://w3id.org/idsa/code/USER + format: uri ids:rightOperandReference: type: string format: uri + ids:pipEndpoint: + type: string + format: uri '@type': type: string Duty: @@ -7282,14 +7228,25 @@ components: ids:target: type: string format: uri - ids:assetRefinement: - oneOf: - - $ref: '#/components/schemas/LogicalConstraint' ids:assignee: type: array items: type: string format: uri + ids:assigner: + type: array + items: + type: string + format: uri + ids:constraint: + type: array + items: + oneOf: + - $ref: '#/components/schemas/LogicalConstraint' + ids:assetRefinement: + oneOf: + - $ref: '#/components/schemas/Constraint' + - $ref: '#/components/schemas/LogicalConstraint' ids:action: type: array items: @@ -7311,22 +7268,11 @@ 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:assigner: - type: array - items: - type: string - format: uri - ids:description: + ids:title: type: array items: $ref: '#/components/schemas/TypedLiteral' - ids:title: + ids:description: type: array items: $ref: '#/components/schemas/TypedLiteral' diff --git a/pom.xml b/pom.xml index 4199aa158..4c22b8274 100644 --- a/pom.xml +++ b/pom.xml @@ -85,7 +85,7 @@ - 7.0.0 + 7.0.1 info@dataspace-connector.de