Skip to content

Commit 76cd295

Browse files
authored
Merge pull request #177 from catenax-ng/release/1.11.16
chore: remove SNAPSHOT version to prepare release.
2 parents e835420 + bf1e6ec commit 76cd295

File tree

24 files changed

+46
-36
lines changed

24 files changed

+46
-36
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
type=semver,pattern={{version}}
138138
type=semver,pattern={{major}}
139139
type=semver,pattern={{major}}.{{minor}}
140-
type=raw,value=1.11.16-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
140+
type=raw,value=1.11.16,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
141141
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
142142
143143
- name: Agent Plane Hashicorp Container Build and push
@@ -175,7 +175,7 @@ jobs:
175175
type=semver,pattern={{version}}
176176
type=semver,pattern={{major}}
177177
type=semver,pattern={{major}}.{{minor}}
178-
type=raw,value=1.11.16-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
178+
type=raw,value=1.11.16,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
179179
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
180180
181181
- name: Agent Plane Azure Vault Container Build and push

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@ All notable changes to this product will be documented in this file.
2424

2525
# Released
2626

27+
## [1.11.16] - 2024-02-20
28+
29+
### Added
30+
31+
### Changed
32+
33+
- Bug fixes related to Federated Catalogue and Skill Provisioning
34+
35+
### Removed
36+
2737
## [1.10.15] - 2023-11-22
2838

2939
### Added

DEPENDENCIES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ maven/mavencentral/org.eclipse.jetty/jetty-servlet/11.0.15, EPL-2.0 OR Apache-2.
224224
maven/mavencentral/org.eclipse.jetty/jetty-util/11.0.16, EPL-2.0 OR Apache-2.0, approved, rt.jetty
225225
maven/mavencentral/org.eclipse.jetty/jetty-webapp/11.0.15, EPL-2.0 OR Apache-2.0, approved, rt.jetty
226226
maven/mavencentral/org.eclipse.jetty/jetty-xml/11.0.16, EPL-2.0 OR Apache-2.0, approved, rt.jetty
227-
maven/mavencentral/org.eclipse.tractusx.agents.edc.agent-plane/agent-plane-protocol/1.11.16-SNAPSHOT, Apache-2.0, approved, automotive.tractusx
228-
maven/mavencentral/org.eclipse.tractusx.edc/auth-jwt/1.11.16-SNAPSHOT, Apache-2.0, approved, automotive.tractusx
227+
maven/mavencentral/org.eclipse.tractusx.agents.edc.agent-plane/agent-plane-protocol/1.11.16, Apache-2.0, approved, automotive.tractusx
228+
maven/mavencentral/org.eclipse.tractusx.edc/auth-jwt/1.11.16, Apache-2.0, approved, automotive.tractusx
229229
maven/mavencentral/org.eclipse.tractusx.edc/core-spi/0.5.3, Apache-2.0, approved, automotive.tractusx
230230
maven/mavencentral/org.eclipse.tractusx.edc/edc-dataplane-azure-vault/0.5.3, Apache-2.0, approved, automotive.tractusx
231231
maven/mavencentral/org.eclipse.tractusx.edc/edc-dataplane-base/0.5.3, Apache-2.0, approved, automotive.tractusx

agent-plane/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ mvn package -Pwith-docker-image
6666
Alternatively, after a successful build, you can invoke docker yourself
6767

6868
```console
69-
docker build -t tractusx/agentplane-azure-vault:1.11.16-SNAPSHOT -f agentplane-azure-vault/src/main/docker/Dockerfile .
69+
docker build -t tractusx/agentplane-azure-vault:1.11.16 -f agentplane-azure-vault/src/main/docker/Dockerfile .
7070
```
7171

7272
```console
73-
docker build -t tractusx/agentplane-hashicorp:1.11.16-SNAPSHOT -f agentplane-hashicorp/src/main/docker/Dockerfile .
73+
docker build -t tractusx/agentplane-hashicorp:1.11.16 -f agentplane-hashicorp/src/main/docker/Dockerfile .
7474
```
7575

agent-plane/agent-plane-protocol/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Add the following dependency to your data-plane artifact pom:
6363
<dependency>
6464
<groupId>org.eclipse.tractusx.agents.edc</groupId>
6565
<artifactId>agent-plane-protocol</artifactId>
66-
<version>1.11.16-SNAPSHOT</version>
66+
<version>1.11.16</version>
6767
</dependency>
6868
```
6969

agent-plane/agent-plane-protocol/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.eclipse.tractusx.agents.edc</groupId>
2727
<artifactId>agent-plane</artifactId>
28-
<version>1.11.16-SNAPSHOT</version>
28+
<version>1.11.16</version>
2929
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131

agent-plane/agent-plane-protocol/src/test/java/org/eclipse/tractusx/agents/edc/service/TestDataspaceSynchronizer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void testQuadRepresentation() {
8888
.add("@id", "4bf62562-9026-4dcf-93b5-42ea0de25490")
8989
.add("https://w3id.org/edc/v0.0.1/ns/id", "https://w3id.org/catenax/ontology/common#GraphAsset?test:ExampleAsset")
9090
.add("https://w3id.org/edc/v0.0.1/ns/contenttype", "application/json, application/xml")
91-
.add("https://w3id.org/edc/v0.0.1/ns/version", "1.11.16-SNAPSHOT")
91+
.add("https://w3id.org/edc/v0.0.1/ns/version", "1.11.16")
9292
.add("https://w3id.org/edc/v0.0.1/ns/name", "Test Asset")
9393
.add("https://w3id.org/edc/v0.0.1/ns/description", "Test Asset for RDF Representation")
9494
.add("https://w3id.org/catenax/ontology/common#publishedUnderContract", "<https://w3id.org/catenax/ontology/common#Contract?test:Contract>")
@@ -178,7 +178,7 @@ public void testCatalogDeserialization() {
178178
" },\n" +
179179
" \"dcat:accessService\": \"ddd4b79e-f785-4e71-9fe5-4a177b3ccf54\"\n" +
180180
" },\n" +
181-
" \"edc:version\": \"1.11.16-SNAPSHOT\",\n" +
181+
" \"edc:version\": \"1.11.16\",\n" +
182182
" \"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\": \"<https://w3id.org/catenax/ontology/diagnosis>\",\n" +
183183
" \"edc:name\": \"Diagnostic Trouble Code Catalogue Version 2022\",\n" +
184184
" \"http://www.w3.org/ns/shacl#shapeGraph\": \"@prefix cx-common: <https://w3id.org/catenax/ontology/common#>. \\n@prefix : <https://w3id.org/catenax/ontology/common#GraphAsset?oem:Diagnosis2022> .\\n@prefix cx-diag: <https://w3id.org/catenax/ontology/diagnosis#> .\\n@prefix owl: <http://www.w3.org/2002/07/owl#> .\\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\\n@prefix sh: <http://www.w3.org/ns/shacl#> .\\n\\n:OemDTC rdf:type sh:NodeShape ;\\n sh:targetClass cx-diag:DTC ;\\n sh:property [\\n sh:path cx-diag:provisionedBy ;\\n sh:hasValue <urn:bpn:legal:BPNL00000003COJN> ;\\n ] ;\\n sh:property [\\n sh:path cx-diag:version ;\\n sh:hasValue 0^^xsd:long ;\\n ] ;\\n sh:property [\\n sh:path cx-diag:affects ;\\n sh:class :OemDiagnosedParts ;\\n ] ;\\n\\n:OemDiagnosedParts rdf:type sh:NodeShape ;\\n sh:targetClass cx-diag:DiagnosedPart ;\\n sh:property [\\n sh:path cx-diag:provisionedBy ;\\n sh:hasValue <urn:bpn:legal:BPNL00000003COJN> ;\\n ] ;\\n\",\n" +

agent-plane/agentplane-azure-vault/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ mvn -s ../../../settings.xml install -Pwith-docker-image
5454
Alternatively, after a sucessful [build](#building) the docker image of the Agent Plane is created using
5555

5656
```console
57-
docker build -t tractusx//agentplane-azure-vault:1.11.16-SNAPSHOT -f src/main/docker/Dockerfile .
57+
docker build -t tractusx//agentplane-azure-vault:1.11.16 -f src/main/docker/Dockerfile .
5858
```
5959

6060
To run the docker image, you could invoke this command

agent-plane/agentplane-azure-vault/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.eclipse.tractusx.agents.edc</groupId>
2727
<artifactId>agent-plane</artifactId>
28-
<version>1.11.16-SNAPSHOT</version>
28+
<version>1.11.16</version>
2929
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131

agent-plane/agentplane-hashicorp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ mvn -s ../../../settings.xml install -Pwith-docker-image
5454
Alternatively, after a sucessful [build](#building) the docker image of the Agent Plane is created using
5555

5656
```console
57-
docker build -t tractusx/agentplane-hashicorp:1.11.16-SNAPSHOT -f src/main/docker/Dockerfile .
57+
docker build -t tractusx/agentplane-hashicorp:1.11.16 -f src/main/docker/Dockerfile .
5858
```
5959

6060
To run the docker image, you could invoke this command
@@ -66,7 +66,7 @@ docker run -p 8082:8082 \
6666
-v $(pwd)/resources/dataplane.properties:/app/configuration.properties \
6767
-v $(pwd)/resources/opentelemetry.properties:/app/opentelemetry.properties \
6868
-v $(pwd)/resources/logging.properties:/app/logging.properties \
69-
tractusx/agentplane-hashicorp:1.11.16-SNAPSHOT
69+
tractusx/agentplane-hashicorp:1.11.16
7070
````
7171

7272
Afterwards, you should be able to access the [local SparQL endpoint](http://localhost:8082/api/agent) via

0 commit comments

Comments
 (0)