Skip to content

Commit

Permalink
Merge pull request #390 from eclipse-tractusx/feat/app/4.0.0
Browse files Browse the repository at this point in the history
Feat: BPDM 4.0.0 version upgrade
  • Loading branch information
nicoprow authored Aug 18, 2023
2 parents 7786c21 + e3c1ecb commit b0001aa
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 19 deletions.
19 changes: 13 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,23 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [4.0.0] - 2023-08-04
## [4.0.0] - 2023-08-15

### Note

This version introduces breaking changes. Migration files will DELETE existing data in order to perform migration.
Please create a back-up of your business partner data before updating.

### Changed
- BPDM Pool API: Adapt new data model for easier and more intuitive usage, independent of SaaS data model.
- BPDM Gate API: Adapt new data model for easier and more intuitive usage, independent of SaaS data model.
- BPDM: Update dependencies to mitigate vulnerabilities in old versions.

- BPDM Pool API: Adapt new data model for easier and more intuitive usage, independent of SaaS data model.
- BPDM Gate API: Adapt new data model for easier and more intuitive usage, independent of SaaS data model.
- BPDM: Update dependencies to mitigate vulnerabilities in old versions.

### Added
- BPDM bridge dummy: As new application module.
- BPDM: Umbrella Chart with BPDM Bridge Dummy.

- BPDM bridge dummy: As new application module.
- BPDM: Umbrella Chart with BPDM Bridge Dummy.

### Fixed
- BPDM: Deprecated endpoints for retrieving business partners in legacy format.
Expand Down
2 changes: 1 addition & 1 deletion bpdm-bridge-dummy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-gate-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<artifactId>bpdm-parent</artifactId>
<groupId>org.eclipse.tractusx</groupId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-gate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-pool-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-pool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion docs/api/bridge-dummy.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Business Partner Data Management Bridge Dummy",
"description": "Bridge between Gate and Pool as a simple replacement for a dedicated sharing service",
"version": "4.0.0-SNAPSHOT"
"version": "4.0.0"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion docs/api/bridge-dummy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.1
info:
title: Business Partner Data Management Bridge Dummy
description: Bridge between Gate and Pool as a simple replacement for a dedicated sharing service
version: 4.0.0-SNAPSHOT
version: 4.0.0
servers:
- url: http://localhost:8083
description: Generated server url
Expand Down
2 changes: 1 addition & 1 deletion docs/api/gate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Business Partner Data Management Gate",
"description": "A gate for a member to share business partner data with CatenaX",
"version": "4.0.0-SNAPSHOT"
"version": "4.0.0"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion docs/api/gate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.1
info:
title: Business Partner Data Management Gate
description: A gate for a member to share business partner data with CatenaX
version: 4.0.0-SNAPSHOT
version: 4.0.0
servers:
- url: http://localhost:8081
description: Generated server url
Expand Down
2 changes: 1 addition & 1 deletion docs/api/pool.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Business Partner Data Management Pool",
"description": "Service that manages and shares business partner data with other CatenaX services",
"version": "4.0.0-SNAPSHOT"
"version": "4.0.0"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion docs/api/pool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.1
info:
title: Business Partner Data Management Pool
description: Service that manages and shares business partner data with other CatenaX services
version: 4.0.0-SNAPSHOT
version: 4.0.0
servers:
- url: http://localhost:8080
description: Generated server url
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<artifactId>bpdm-parent</artifactId>
<name>Business Partner Data Management Parent</name>
<description>Parent pom of Business Partner Data Management</description>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.0</version>
<packaging>pom</packaging>

<parent>
Expand Down

0 comments on commit b0001aa

Please sign in to comment.