Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eclipse-tractusx/tractusx-edc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6abbe9655c663f76300e9d11075329b9c4513fd9
Choose a base ref
..
head repository: eclipse-tractusx/tractusx-edc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fe33478e2f90acc3d3bb8aa647879409fb554d8f
Choose a head ref
Showing with 26 additions and 17 deletions.
  1. +12 −3 .github/workflows/publish-new-release.yml
  2. +3 −3 edc-dataplane/edc-dataplane-base/build.gradle.kts
  3. 0 {edc-dataplane → edc-extensions/dataplane-proxy}/edc-dataplane-proxy-consumer-api/build.gradle.kts
  4. 0 ...ava/org/eclipse/tractusx/edc/dataplane/proxy/consumer/api/DataPlaneProxyConsumerApiExtension.java
  5. 0 .../java/org/eclipse/tractusx/edc/dataplane/proxy/consumer/api/asset/ClientErrorExceptionMapper.java
  6. 0 ...ain/java/org/eclipse/tractusx/edc/dataplane/proxy/consumer/api/asset/ConsumerAssetRequestApi.java
  7. 0 ...a/org/eclipse/tractusx/edc/dataplane/proxy/consumer/api/asset/ConsumerAssetRequestController.java
  8. 0 ...java/org/eclipse/tractusx/edc/dataplane/proxy/consumer/api/asset/PreconditionFailedException.java
  9. 0 ...src/main/java/org/eclipse/tractusx/edc/dataplane/proxy/consumer/api/asset/model/AssetRequest.java
  10. 0 ...oxy-consumer-api/src/main/resources/META-INF/services/org.eclipse.edc.spi.system.ServiceExtension
  11. 0 ...test/java/org/eclipse/tractusx/edc/dataplane/proxy/consumer/api/asset/model/AssetRequestTest.java
  12. +1 −1 {edc-dataplane → edc-extensions/dataplane-proxy}/edc-dataplane-proxy-provider-api/build.gradle.kts
  13. 0 ...ava/org/eclipse/tractusx/edc/dataplane/proxy/provider/api/DataPlaneProxyProviderApiExtension.java
  14. 0 ...c/main/java/org/eclipse/tractusx/edc/dataplane/proxy/provider/api/gateway/ProviderGatewayApi.java
  15. 0 ...java/org/eclipse/tractusx/edc/dataplane/proxy/provider/api/gateway/ProviderGatewayController.java
  16. 0 .../src/main/java/org/eclipse/tractusx/edc/dataplane/proxy/provider/api/response/ResponseHelper.java
  17. 0 ...oxy-provider-api/src/main/resources/META-INF/services/org.eclipse.edc.spi.system.ServiceExtension
  18. 0 .../test/java/org/eclipse/tractusx/edc/dataplane/proxy/provider/api/response/ResponseHelperTest.java
  19. +1 −1 {edc-dataplane → edc-extensions/dataplane-proxy}/edc-dataplane-proxy-provider-core/build.gradle.kts
  20. 0 .../main/java/org/eclipse/tractusx/edc/dataplane/proxy/provider/core/ProxyProviderCoreExtension.java
  21. 0 ...pse/tractusx/edc/dataplane/proxy/provider/core/gateway/auth/AuthorizationHandlerRegistryImpl.java
  22. 0 .../org/eclipse/tractusx/edc/dataplane/proxy/provider/core/gateway/auth/JwtAuthorizationHandler.java
  23. 0 .../java/org/eclipse/tractusx/edc/dataplane/proxy/provider/core/gateway/auth/RsaPublicKeyParser.java
  24. 0 .../tractusx/edc/dataplane/proxy/provider/core/gateway/configuration/GatewayConfigurationLoader.java
  25. 0 ...usx/edc/dataplane/proxy/provider/core/gateway/configuration/GatewayConfigurationRegistryImpl.java
  26. 0 ...xy-provider-core/src/main/resources/META-INF/services/org.eclipse.edc.spi.system.ServiceExtension
  27. 0 ...tractusx/edc/dataplane/proxy/provider/core/gateway/auth/AuthorizationHandlerRegistryImplTest.java
  28. 0 .../eclipse/tractusx/edc/dataplane/proxy/provider/core/gateway/auth/JwtAuthorizationHandlerTest.java
  29. 0 ...a/org/eclipse/tractusx/edc/dataplane/proxy/provider/core/gateway/auth/RsaPublicKeyParserTest.java
  30. 0 ...src/test/java/org/eclipse/tractusx/edc/dataplane/proxy/provider/core/gateway/auth/TestTokens.java
  31. 0 ...ctusx/edc/dataplane/proxy/provider/core/gateway/configuration/GatewayConfigurationLoaderTest.java
  32. 0 ...edc/dataplane/proxy/provider/core/gateway/configuration/GatewayConfigurationRegistryImplTest.java
  33. 0 {edc-dataplane → edc-extensions/dataplane-proxy}/edc-dataplane-proxy-provider-spi/build.gradle.kts
  34. 0 ...lipse/tractusx/edc/dataplane/proxy/spi/provider/gateway/authorization/AuthorizationExtension.java
  35. 0 ...eclipse/tractusx/edc/dataplane/proxy/spi/provider/gateway/authorization/AuthorizationHandler.java
  36. 0 ...tractusx/edc/dataplane/proxy/spi/provider/gateway/authorization/AuthorizationHandlerRegistry.java
  37. 0 ...eclipse/tractusx/edc/dataplane/proxy/spi/provider/gateway/configuration/GatewayConfiguration.java
  38. 0 ...tractusx/edc/dataplane/proxy/spi/provider/gateway/configuration/GatewayConfigurationRegistry.java
  39. +1 −1 edc-extensions/postgresql-migration/build.gradle.kts
  40. +3 −3 edc-tests/edc-dataplane-proxy-e2e/build.gradle.kts
  41. +1 −1 gradle/libs.versions.toml
  42. +4 −4 settings.gradle.kts
15 changes: 12 additions & 3 deletions .github/workflows/publish-new-release.yml
Original file line number Diff line number Diff line change
@@ -233,9 +233,18 @@ jobs:
git checkout main && git merge -X theirs releases --no-commit --no-ff
# Extract release version
IFS=. read -r RELEASE_VERSION_MAJOR RELEASE_VERSION_MINOR RELEASE_VERSION_PATCH<<<"${{ env.RELEASE_VERSION }}"
# Compute new snapshot version
VERSION="$RELEASE_VERSION_MAJOR.$RELEASE_VERSION_MINOR.$((RELEASE_VERSION_PATCH+1))-SNAPSHOT"
IFS=.- read -r RELEASE_VERSION_MAJOR RELEASE_VERSION_MINOR RELEASE_VERSION_PATCH SNAPSHOT<<<"${{ env.RELEASE_VERSION }}"
INC=0
# Compute new snapshot version, do not increment snapshot on non-final releases, e.g. -rc1
if [ -z $SNAPSHOT ]; then
# snapshot
echo "${{ env.RELEASE_VERSION }} is a final release version, increase patch for next snapshot"
INC=1
else
echo "${{ env.RELEASE_VERSION }} is not a final release version (contains \"$SNAPSHOT\"), will not increase patch"
fi
VERSION="$RELEASE_VERSION_MAJOR.$RELEASE_VERSION_MINOR.$((RELEASE_VERSION_PATCH+$INC))-SNAPSHOT"
SNAPSHOT_VERSION=$VERSION
# Persist the "version" in the gradle.properties
6 changes: 3 additions & 3 deletions edc-dataplane/edc-dataplane-base/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -25,9 +25,9 @@ plugins {
dependencies {
runtimeOnly(project(":core:edr-cache-core"))
runtimeOnly(project(":edc-extensions:observability-api-customization"))
runtimeOnly(project(":edc-dataplane:edc-dataplane-proxy-consumer-api"))
runtimeOnly(project(":edc-dataplane:edc-dataplane-proxy-provider-api"))
runtimeOnly(project(":edc-dataplane:edc-dataplane-proxy-provider-core"))
runtimeOnly(project(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-consumer-api"))
runtimeOnly(project(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-api"))
runtimeOnly(project(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-core"))

runtimeOnly(libs.edc.config.filesystem)
runtimeOnly(libs.edc.dpf.awss3)
Original file line number Diff line number Diff line change
@@ -30,6 +30,6 @@ dependencies {
implementation(libs.jakarta.rsApi)
implementation(libs.nimbus.jwt)

implementation(project(":edc-dataplane:edc-dataplane-proxy-provider-spi"))
implementation(project(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-spi"))
}

Original file line number Diff line number Diff line change
@@ -30,6 +30,6 @@ dependencies {
implementation(libs.jakarta.rsApi)
implementation(libs.nimbus.jwt)

implementation(project(":edc-dataplane:edc-dataplane-proxy-provider-spi"))
implementation(project(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-spi"))
}

2 changes: 1 addition & 1 deletion edc-extensions/postgresql-migration/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -30,5 +30,5 @@ dependencies {
implementation(libs.edc.sql.core)
runtimeOnly(libs.postgres)

implementation("org.flywaydb:flyway-core:9.19.4")
implementation("org.flywaydb:flyway-core:9.20.0")
}
6 changes: 3 additions & 3 deletions edc-tests/edc-dataplane-proxy-e2e/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -27,9 +27,9 @@ dependencies {
testImplementation(libs.edc.dpf.http)
testImplementation(project(":spi:edr-cache-spi"))
testImplementation(project(":core:edr-cache-core"))
testImplementation(project(":edc-dataplane:edc-dataplane-proxy-consumer-api"))
testImplementation(project(":edc-dataplane:edc-dataplane-proxy-provider-api"))
testImplementation(project(":edc-dataplane:edc-dataplane-proxy-provider-core"))
testImplementation(project(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-consumer-api"))
testImplementation(project(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-api"))
testImplementation(project(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-core"))

}

2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ mockito = "5.2.0"
restAssured = "5.3.1"
apache-sshd = "2.10.0"
testcontainers = "1.18.3"
aws = "2.20.87"
aws = "2.20.89"
rsApi = "3.1.0"
jupiter = "5.9.3"
assertj = "3.24.2"
8 changes: 4 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -73,10 +73,10 @@ include(":edc-dataplane")
include(":edc-dataplane:edc-dataplane-azure-vault")
include(":edc-dataplane:edc-dataplane-base")
include(":edc-dataplane:edc-dataplane-hashicorp-vault")
include(":edc-dataplane:edc-dataplane-proxy-consumer-api")
include(":edc-dataplane:edc-dataplane-proxy-provider-spi")
include(":edc-dataplane:edc-dataplane-proxy-provider-core")
include(":edc-dataplane:edc-dataplane-proxy-provider-api")
include(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-consumer-api")
include(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-spi")
include(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-core")
include(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-api")
include(":edc-tests:edc-dataplane-proxy-e2e")