You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add accidentally deleted SUMMARY
* chore: Apply new config style
* Code review
* Merge docs
* Merge trivial templates changes
* Merge more conflicting files
* Merge more conflicting files
* Merge more conflicting files and cleanup old versions
* Add connector submodule
* Merge more conflicting files
* Move broker CHANGELOG
* Move the broker's README
* More cleaning
* Fix links
* Prepare docker build to merge the broker
* Merge the docker build
* Fix links and format
* Add connector type info
* self review
* Convert MD table to html
* Only use test containers for the Broker
* Add broker NPM delivery
* code review
* Add broker local dev doc
* Merge deployment READMEs and change healthcheck header
* Fix links
* Cleanup
* Fix javadocs and add -sources and -javadocs artefacts
* Rename .env.extensions to .env.connector
* Rename IDS broker -> broker
* Remove redundant .editorconfig setting
* Change connector-type -> deployment-type in workflow config
* NPM clean install
* Removed mention of the broker in the main readme
* Dry postgres image name
* Remove test DB deprecation
* Move broker group to toml
* Fix missing broker's groups
* More versions cleanup
* Change MD for HTML
* Merge the broker compose file
* #921 (comment)
* Merge local quick start for broker
* Align postgres versions
* Stop annoying me with DB not ready messages on new startup
* Wait for the DBs
* Code review
* remove docs task. The repo is now public
* Avoid star imports
* Remove reference to the merged doc
Copy file name to clipboardexpand all lines: .github/ISSUE_TEMPLATE/feature_request_mds.md
+8
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,14 @@ _What problems does that user face that existing functionalities do solve?_
26
26
27
27
_Describe whether this request is related to an existing workflow, feature, or otherwise something in the product today. Or, does this open us up to new innovative ideas?_
28
28
29
+
## MDS Scope check
30
+
31
+
_Is this feature part of the contracted scope?_
32
+
-[ ] It is part of the contracted scope
33
+
-[ ] It is not part of the contracted scope
34
+
35
+
If not, please add the label "mds/future-scope"
36
+
29
37
## (For sovity Team to complete) Stakeholders
30
38
31
39
_Add more on who asked for this, i.e. company, person, how much they pay us, what their tier is, are they a strategic account, etc. Who needs to be kept up-to-date about this feature?_
Copy file name to clipboardexpand all lines: .github/workflows/ci.yml
+82
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ jobs:
65
65
image-base-name: ${{ env.IMAGE_BASE_NAME }}
66
66
image-name: "edc-dev"
67
67
connector-name: "sovity-dev"
68
+
deployment-type: "connector"
68
69
title: "sovity Dev EDC Connector"
69
70
description: "Extended EDC Connector built by sovity. This dev version contains no dataspace auth and can be used to quickly start a locally running EDC + EDC UI."
70
71
- name: "Docker Image: edc-ce"
@@ -76,6 +77,7 @@ jobs:
76
77
image-base-name: ${{ env.IMAGE_BASE_NAME }}
77
78
image-name: "edc-ce"
78
79
connector-name: "sovity-ce"
80
+
deployment-type: "connector"
79
81
title: "sovity Community Edition EDC Connector"
80
82
description: "EDC Connector built by sovity. Contains sovity's Community Edition EDC extensions and requires dataspace credentials to join an existing dataspace."
81
83
- name: "Docker Image: edc-ce-mds"
@@ -87,6 +89,7 @@ jobs:
87
89
image-base-name: ${{ env.IMAGE_BASE_NAME }}
88
90
image-name: "edc-ce-mds"
89
91
connector-name: "mds-ce"
92
+
deployment-type: "connector"
90
93
title: "MDS Community Edition EDC Connector"
91
94
description: "EDC Connector built by sovity and configured for compatibility with the Mobility Data Space (MDS). This EDC requires dataspace credentials, and additional MDS Services such as a Clearing House."
92
95
- name: "Docker Image: test-backend"
@@ -98,8 +101,33 @@ jobs:
98
101
image-base-name: ${{ env.IMAGE_BASE_NAME }}
99
102
image-name: "test-backend"
100
103
connector-name: "test-backend"
104
+
deployment-type: "connector"
101
105
title: "Test Data Source / Data Sink"
102
106
description: "Provides a minimal data source / data sink for E2E tests."
107
+
- name: "Docker Image: broker-server-dev"
108
+
uses: ./.github/actions/build-connector-image
109
+
with:
110
+
registry-url: ${{ env.REGISTRY_URL }}
111
+
registry-user: ${{ env.REGISTRY_USER }}
112
+
registry-password: ${{ secrets.GITHUB_TOKEN }}
113
+
image-base-name: ${{ env.IMAGE_BASE_NAME }}
114
+
image-name: "broker-server-dev"
115
+
connector-name: "broker-server-dev"
116
+
deployment-type: "broker"
117
+
title: "Broker Server (Dev)"
118
+
description: "sovity EDC Broker Server. This dev version contains no auth and can be used to quickly start a locally running Broker Server + Broker UI."
119
+
- name: "Docker Image: broker-server-ce"
120
+
uses: ./.github/actions/build-connector-image
121
+
with:
122
+
registry-url: ${{ env.REGISTRY_URL }}
123
+
registry-user: ${{ env.REGISTRY_USER }}
124
+
registry-password: ${{ secrets.GITHUB_TOKEN }}
125
+
image-base-name: ${{ env.IMAGE_BASE_NAME }}
126
+
image-name: "broker-server-ce"
127
+
connector-name: "broker-server-ce"
128
+
deployment-type: "broker"
129
+
title: "Broker Server (Community Edition)"
130
+
description: "sovity EDC Broker Server. Requires dataspace credentials to join an existing dataspace."
Copy file name to clipboardexpand all lines: CHANGELOG.md
+9-1
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,17 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md).
7
7
8
8
### Overview
9
9
10
+
Starting from version `8`, the Broker has been merged with the Community edition.
11
+
12
+
[The former changelog](https://github.com/sovity/edc-broker-server-extension/blob/main/CHANGELOG.md) for the Broker is still available but will not be updated anymore.
13
+
14
+
The Broker's version therefore jumps from version 4 to version 8.
15
+
16
+
The functionalities of each part, Broker and Extensions, on this release, is the same as before the change.
0 commit comments