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

Commit fe85943

Browse files
authored
chore: update version from 7.0.0 to 7.0.1 (#900)
1 parent e86683e commit fe85943

File tree

4 files changed

+68
-122
lines changed

4 files changed

+68
-122
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Changelog
33
All notable changes to this project will be documented in this file.
44

5-
## [X.X.X] - XXXX-XX-XX
5+
## [7.0.1] - 2022-02-07
66

77
### Added
88
- Add `portainer.application.connector.network` to `application.properties.`. Default is set to `local`.

charts/dataspace-connector/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.3.0
19+
version: 0.3.1
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
2323
# follow Semantic Versioning. They should reflect the version the application is using.
2424
# It is recommended to use it with quotes.
25-
appVersion: "7.0.0"
25+
appVersion: "7.0.1"
2626

2727
dependencies:
2828
- name: postgresql

openapi.yaml

Lines changed: 64 additions & 118 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ info:
2525
license:
2626
name: "Apache License, Version 2.0"
2727
url: https://www.apache.org/licenses/LICENSE-2.0.txt
28-
version: 7.0.0
28+
version: 7.0.1
2929
servers:
3030
- url: https://localhost:8080
3131
description: Generated server url
@@ -2628,23 +2628,13 @@ paths:
26282628
content:
26292629
application/json:
26302630
schema:
2631-
type: object
2632-
properties:
2633-
empty:
2634-
type: boolean
2635-
additionalProperties:
2636-
type: object
2631+
$ref: '#/components/schemas/JSONObject'
26372632
"200":
26382633
description: Ok
26392634
content:
26402635
application/json:
26412636
schema:
2642-
type: object
2643-
properties:
2644-
empty:
2645-
type: boolean
2646-
additionalProperties:
2647-
type: object
2637+
$ref: '#/components/schemas/JSONObject'
26482638
put:
26492639
tags:
26502640
- _Configurations
@@ -2664,23 +2654,13 @@ paths:
26642654
content:
26652655
application/json:
26662656
schema:
2667-
type: object
2668-
properties:
2669-
empty:
2670-
type: boolean
2671-
additionalProperties:
2672-
type: object
2657+
$ref: '#/components/schemas/JSONObject'
26732658
"200":
26742659
description: Ok
26752660
content:
26762661
application/json:
26772662
schema:
2678-
type: object
2679-
properties:
2680-
empty:
2681-
type: boolean
2682-
additionalProperties:
2683-
type: object
2663+
$ref: '#/components/schemas/JSONObject'
26842664
/api/configuration/negotiation:
26852665
get:
26862666
tags:
@@ -2693,23 +2673,13 @@ paths:
26932673
content:
26942674
application/json:
26952675
schema:
2696-
type: object
2697-
properties:
2698-
empty:
2699-
type: boolean
2700-
additionalProperties:
2701-
type: object
2676+
$ref: '#/components/schemas/JSONObject'
27022677
"200":
27032678
description: Ok
27042679
content:
27052680
application/json:
27062681
schema:
2707-
type: object
2708-
properties:
2709-
empty:
2710-
type: boolean
2711-
additionalProperties:
2712-
type: object
2682+
$ref: '#/components/schemas/JSONObject'
27132683
put:
27142684
tags:
27152685
- _Configurations
@@ -2727,23 +2697,13 @@ paths:
27272697
content:
27282698
application/json:
27292699
schema:
2730-
type: object
2731-
properties:
2732-
empty:
2733-
type: boolean
2734-
additionalProperties:
2735-
type: object
2700+
$ref: '#/components/schemas/JSONObject'
27362701
"200":
27372702
description: Ok
27382703
content:
27392704
application/json:
27402705
schema:
2741-
type: object
2742-
properties:
2743-
empty:
2744-
type: boolean
2745-
additionalProperties:
2746-
type: object
2706+
$ref: '#/components/schemas/JSONObject'
27472707
/api/catalogs/{id}:
27482708
get:
27492709
tags:
@@ -3398,10 +3358,10 @@ paths:
33983358
schema:
33993359
type: string
34003360
enum:
3401-
- Start
3402-
- Stop
3403-
- Delete
3404-
- Describe
3361+
- START
3362+
- STOP
3363+
- DELETE
3364+
- DESCRIBE
34053365
responses:
34063366
"401":
34073367
description: Unauthorized
@@ -5059,34 +5019,13 @@ paths:
50595019
content:
50605020
application/json:
50615021
schema:
5062-
type: object
5063-
properties:
5064-
empty:
5065-
type: boolean
5066-
additionalProperties:
5067-
type: object
5068-
"500":
5069-
description: Internal server error
5070-
content:
5071-
application/json:
5072-
schema:
5073-
type: object
5074-
properties:
5075-
empty:
5076-
type: boolean
5077-
additionalProperties:
5078-
type: object
5022+
$ref: '#/components/schemas/JSONObject'
50795023
"200":
50805024
description: Ok
50815025
content:
50825026
application/json:
50835027
schema:
5084-
type: object
5085-
properties:
5086-
empty:
5087-
type: boolean
5088-
additionalProperties:
5089-
type: object
5028+
$ref: '#/components/schemas/JSONObject'
50905029
/api/subscriptions/owning:
50915030
get:
50925031
tags:
@@ -6795,6 +6734,13 @@ components:
67956734
type: string
67966735
_links:
67976736
$ref: '#/components/schemas/Links'
6737+
JSONObject:
6738+
type: object
6739+
properties:
6740+
empty:
6741+
type: boolean
6742+
additionalProperties:
6743+
type: object
67986744
CatalogDesc:
67996745
type: object
68006746
properties:
@@ -7096,12 +7042,28 @@ components:
70967042
- $ref: '#/components/schemas/AbstractConstraint'
70977043
- type: object
70987044
properties:
7099-
ids:pipEndpoint:
7100-
type: string
7101-
format: uri
7102-
ids:unit:
7045+
ids:rightOperand:
7046+
$ref: '#/components/schemas/RdfResource'
7047+
ids:leftOperand:
71037048
type: string
7104-
format: uri
7049+
enum:
7050+
- https://w3id.org/idsa/code/ABSOLUTE_SPATIAL_POSITION
7051+
- https://w3id.org/idsa/code/COUNT
7052+
- https://w3id.org/idsa/code/DELAY
7053+
- https://w3id.org/idsa/code/ELAPSED_TIME
7054+
- https://w3id.org/idsa/code/ENDPOINT
7055+
- https://w3id.org/idsa/code/EVENT
7056+
- https://w3id.org/idsa/code/PATH
7057+
- https://w3id.org/idsa/code/PAYMENT
7058+
- https://w3id.org/idsa/code/PAY_AMOUNT
7059+
- https://w3id.org/idsa/code/POLICY_EVALUATION_TIME
7060+
- https://w3id.org/idsa/code/PURPOSE
7061+
- https://w3id.org/idsa/code/QUANTITY
7062+
- https://w3id.org/idsa/code/RECURRENCE_RATE
7063+
- https://w3id.org/idsa/code/SECURITY_LEVEL
7064+
- https://w3id.org/idsa/code/STATE
7065+
- https://w3id.org/idsa/code/SYSTEM
7066+
- https://w3id.org/idsa/code/USER
71057067
ids:operator:
71067068
type: string
71077069
enum:
@@ -7151,31 +7113,15 @@ components:
71517113
- https://w3id.org/idsa/code/STRING_IS_CONTAINED
71527114
- https://w3id.org/idsa/code/TEMPORAL_DISJOINT
71537115
- https://w3id.org/idsa/code/TEMPORAL_EQUALS
7154-
ids:rightOperand:
7155-
$ref: '#/components/schemas/RdfResource'
7156-
ids:leftOperand:
7116+
ids:unit:
71577117
type: string
7158-
enum:
7159-
- https://w3id.org/idsa/code/ABSOLUTE_SPATIAL_POSITION
7160-
- https://w3id.org/idsa/code/COUNT
7161-
- https://w3id.org/idsa/code/DELAY
7162-
- https://w3id.org/idsa/code/ELAPSED_TIME
7163-
- https://w3id.org/idsa/code/ENDPOINT
7164-
- https://w3id.org/idsa/code/EVENT
7165-
- https://w3id.org/idsa/code/PATH
7166-
- https://w3id.org/idsa/code/PAYMENT
7167-
- https://w3id.org/idsa/code/PAY_AMOUNT
7168-
- https://w3id.org/idsa/code/POLICY_EVALUATION_TIME
7169-
- https://w3id.org/idsa/code/PURPOSE
7170-
- https://w3id.org/idsa/code/QUANTITY
7171-
- https://w3id.org/idsa/code/RECURRENCE_RATE
7172-
- https://w3id.org/idsa/code/SECURITY_LEVEL
7173-
- https://w3id.org/idsa/code/STATE
7174-
- https://w3id.org/idsa/code/SYSTEM
7175-
- https://w3id.org/idsa/code/USER
7118+
format: uri
71767119
ids:rightOperandReference:
71777120
type: string
71787121
format: uri
7122+
ids:pipEndpoint:
7123+
type: string
7124+
format: uri
71797125
'@type':
71807126
type: string
71817127
Duty:
@@ -7282,14 +7228,25 @@ components:
72827228
ids:target:
72837229
type: string
72847230
format: uri
7285-
ids:assetRefinement:
7286-
oneOf:
7287-
- $ref: '#/components/schemas/LogicalConstraint'
72887231
ids:assignee:
72897232
type: array
72907233
items:
72917234
type: string
72927235
format: uri
7236+
ids:assigner:
7237+
type: array
7238+
items:
7239+
type: string
7240+
format: uri
7241+
ids:constraint:
7242+
type: array
7243+
items:
7244+
oneOf:
7245+
- $ref: '#/components/schemas/LogicalConstraint'
7246+
ids:assetRefinement:
7247+
oneOf:
7248+
- $ref: '#/components/schemas/Constraint'
7249+
- $ref: '#/components/schemas/LogicalConstraint'
72937250
ids:action:
72947251
type: array
72957252
items:
@@ -7311,22 +7268,11 @@ components:
73117268
- https://w3id.org/idsa/code/TRACK_PROVENANCE
73127269
- https://w3id.org/idsa/code/USE
73137270
- https://w3id.org/idsa/code/WRITE
7314-
ids:constraint:
7315-
type: array
7316-
items:
7317-
oneOf:
7318-
- $ref: '#/components/schemas/Constraint'
7319-
- $ref: '#/components/schemas/LogicalConstraint'
7320-
ids:assigner:
7321-
type: array
7322-
items:
7323-
type: string
7324-
format: uri
7325-
ids:description:
7271+
ids:title:
73267272
type: array
73277273
items:
73287274
$ref: '#/components/schemas/TypedLiteral'
7329-
ids:title:
7275+
ids:description:
73307276
type: array
73317277
items:
73327278
$ref: '#/components/schemas/TypedLiteral'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585

8686
<properties>
8787
<!-- General -->
88-
<revision>7.0.0</revision>
88+
<revision>7.0.1</revision>
8989
<email>info@dataspace-connector.de</email>
9090

9191
<!-- Build info -->

0 commit comments

Comments
 (0)