Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update LoggingHouse dependency to latest version #1015

Merged
merged 10 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,25 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md).

### Detailed Changes

#### Minor
#### Major Changes

#### Minor Changes
- API Wrapper:
- Added wrapper API endpoint to query a single contract agreement

#### Patch
#### Patch Changes
- Logginghouse-Client: Update logging-house-client extension to v1.1.0

#### Major Changes
### Deployment Migration Notes
#### logging-house-client extension
As the updated logging-house-client extension now also saves data locally in a database, the following additional proerties must be added and set accordingly to a second additional database since the extension has its own flyway migration:
- ```EDC_DATASOURCE_LOGGINGHOUSE_URL```: "postgres://some-url"
- ```EDC_DATASOURCE_LOGGINGHOUSE_USER```: "username"
- ```EDC_DATASOURCE_LOGGINGHOUSE_PASSWORD```: "password"

#### Minor Changes
If the extension is to be switched off, the following must now be set, as the extension is now activated by default when integrated:
- ```EDC_LOGGINGHOUSE_EXTENSION_ENABLED: 'false'```

### Deployment Migration Notes

#### Compatible Versions

Expand Down
4 changes: 2 additions & 2 deletions docs/deployment-guide/goals/development/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ docker login ghcr.io
# Pull the latest images
docker compose --env-file .env.dev -f docker-compose-dev.yaml pull

# Start MDS EDC Connectors
EDC_UI_ACTIVE_PROFILE=mds-open-source docker compose --env-file .env.dev -f docker-compose-dev.yaml up
# Start MDS EDC Connectors without activating the logging-house-extension
EDC_UI_ACTIVE_PROFILE=mds-open-source EDC_LOGGINGHOUSE_EXTENSION_ENABLED=false docker compose --env-file .env.dev -f docker-compose-dev.yaml up
```

</td>
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment-guide/goals/local-demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ docker compose up
# Log-In to the Github Container Registry
docker login ghcr.io

# Start MDS EDC Connectors
EDC_UI_ACTIVE_PROFILE=mds-open-source docker compose up
# Start MDS EDC Connectors without activating the logging-house-extension
EDC_UI_ACTIVE_PROFILE=mds-open-source EDC_LOGGINGHOUSE_EXTENSION_ENABLED=false docker compose up
```

</td>
Expand Down
9 changes: 7 additions & 2 deletions docs/deployment-guide/goals/production/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To deploy an EDC multiple deployment units must be deployed and configured.
|-------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
| An Auth Proxy / Auth solution of your choice. | (deployment specific, required to secure UI and management API) |
| Reverse Proxy that merges multiple services and removes the ports | (deployment specific) |
| Postgresql | 13 or compatible version |
| Postgresql | 13 or compatible version, one for the EDC-data one for the LH-data |
| EDC Backend | edc-ce or edc-ce-mds, see [CHANGELOG.md](../../../../CHANGELOG.md) for compatible versions. |
| EDC UI | edc-ui, see [CHANGELOG.md](../../../../CHANGELOG.md) for compatible versions. |

Expand Down Expand Up @@ -151,9 +151,14 @@ EDC_OAUTH_PRIVATE_KEY_ALIAS: 1
A LoggingHouse extension is included in the MDS variant, which means that additional properties must be set for it:

```yaml
# LoggingHouse Extension
# LoggingHouse Extension general settings
EDC_LOGGINGHOUSE_EXTENSION_ENABLED: "true"
EDC_LOGGINGHOUSE_EXTENSION_URL: https://clearing.test.mobility-dataspace.eu

# LoggingHouse Extension database connection for its own database
EDC_DATASOURCE_LOGGINGHOUSE_URL: jdbc:postgresql://postgresql2:5432/edc
EDC_DATASOURCE_LOGGINGHOUSE_USER: edc
EDC_DATASOURCE_LOGGINGHOUSE_PASSWORD: edc
```

You can also optionally set the following config properties:
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ json = "20220924"
jsonAssert = "1.5.1"
jsonUnit = "3.2.7"
junit = "5.10.0"
loggingHouse = "0.2.10"
loggingHouse = "v1.1.0"
tmberthold marked this conversation as resolved.
Show resolved Hide resolved
lombok = "1.18.30"
mockito = "5.12.0"
mockserver = "5.15.0"
Expand Down
Loading