-
Notifications
You must be signed in to change notification settings - Fork 61
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
build(deps): bump edc from 0.3.0 to 0.3.1 #129
Conversation
75fad2b
to
1a7733d
Compare
@hamidonos there is a test failing (transfer-04-opentelemetry). AFAIR you did some work there. mind taking a look? |
@paullatzelsperger |
@hamidonos @paullatzelsperger I think that having to build jars to run the tests sounds like weird, or, better, from a sample perspective could be correct because to run the sample the jar is needed, but in fact the path we followed so far is to avoid having a build before test. The broken test uses docker compose, a solution could be to have the connector image as a multi stage builds where in the first the jar gets built and in the second it runs, this will make both the sample and the test work in the same way without having to explicitly build the project |
The problem there was that the |
yes, it was used in the past in a connector |
...and frankly i didn't like it very much back then. we are not using a dedicated docker-compose file for testing, but the "production" one (if you can call it that). I don't get what is wrong with having to build JAR files (externally), and then docker images if you want to run a test, that relies on both. quite similar to end-to-end tests if you think about it. or our multi-runtime-in-jvm-tests: there we also have to build first, and then execute the tests, as the tests rely on the classpath of potentially unrelated modules |
@paullatzelsperger this is my suggested solution #132 the docker compose file takes care of building the jars which also makes the sample setup a little bit more straightforward |
build is not just building, or better, it will also create jar files that are not needed for tests (see, all the other jars around the codebase), so if there's a way to "shadowJar" the runtime needed for the tests and run I'm pretty ok, but having a codebase-wide operation to be done before running the tests doesn't sound correct. Should be the test itself that takes care to initialize what's needed to run the test, in this case we could do as we're doing in the private static void gradleExecute(String gradleCommand) throws IOException, InterruptedException {
File buildRoot = TestUtils.findBuildRoot();
String[] command = {
new File(buildRoot, TestUtils.GRADLE_WRAPPER).getCanonicalPath(),
"-q",
gradleCommand
};
Process exec = Runtime.getRuntime().exec(command, new String[0], buildRoot);
var classpathString = new String(exec.getInputStream().readAllBytes());
var errorOutput = new String(exec.getErrorStream().readAllBytes());
if (exec.waitFor() != 0) {
throw new EdcException(format("Failed to run gradle command: [%s]. Output: %s %s",
String.join(" ", command), classpathString, errorOutput));
}
} then, in the setup, before starting the compose environment: gradleExecute("transfer:transfer-04-open-telemetry:open-telemetry-consumer:shadowJar");
gradleExecute("transfer:transfer-04-open-telemetry:open-telemetry-provider:shadowJar"); |
Bumps `edc` from 0.3.0 to 0.3.1. Updates `org.eclipse.edc:api-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:api-observability` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:auth-tokenbased` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:boot` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc.edc-build:org.eclipse.edc.edc-build.gradle.plugin` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/GradlePlugins/releases) - [Commits](eclipse-edc/GradlePlugins@v0.3.0...v0.3.1) Updates `org.eclipse.edc:configuration-filesystem` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:connector-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:control-plane-api-client` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:control-plane-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:control-plane-spi` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-api` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-aws-s3` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Technology-Aws/releases) - [Commits](eclipse-edc/Technology-Aws@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-azure-storage` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Technology-Azure/releases) - [Commits](eclipse-edc/Technology-Azure@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-client` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-http` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-kafka` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-selector-api` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-selector-client` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-selector-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-spi` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-util` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:dsp` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:http` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:iam-mock` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:jersey-micrometer` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:jetty-micrometer` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:json-ld` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:junit` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:management-api` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:micrometer-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:monitor-jdk-logger` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:provision-aws-s3` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Technology-Aws/releases) - [Commits](eclipse-edc/Technology-Aws@v0.3.0...v0.3.1) Updates `org.eclipse.edc:runtime-metamodel` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:transfer-data-plane` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:transfer-process-api` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:transfer-pull-http-receiver` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:transfer-spi` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:util` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:vault-azure` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Technology-Azure/releases) - [Commits](eclipse-edc/Technology-Azure@v0.3.0...v0.3.1) Updates `org.eclipse.edc:vault-filesystem` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) --- updated-dependencies: - dependency-name: org.eclipse.edc:api-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:api-observability dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:auth-tokenbased dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:boot dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc.edc-build:org.eclipse.edc.edc-build.gradle.plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:configuration-filesystem dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:connector-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:control-plane-api-client dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:control-plane-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:control-plane-spi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-aws-s3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-azure-storage dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-client dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-http dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-kafka dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-selector-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-selector-client dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-selector-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-spi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-util dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:dsp dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:http dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:iam-mock dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:jersey-micrometer dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:jetty-micrometer dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:json-ld dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:junit dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:management-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:micrometer-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:monitor-jdk-logger dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:provision-aws-s3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:runtime-metamodel dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:transfer-data-plane dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:transfer-process-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:transfer-pull-http-receiver dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:transfer-spi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:util dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:vault-azure dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:vault-filesystem dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
5c63fed
to
3046baa
Compare
* build(deps): bump edc from 0.3.0 to 0.3.1 Bumps `edc` from 0.3.0 to 0.3.1. Updates `org.eclipse.edc:api-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:api-observability` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:auth-tokenbased` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:boot` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc.edc-build:org.eclipse.edc.edc-build.gradle.plugin` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/GradlePlugins/releases) - [Commits](eclipse-edc/GradlePlugins@v0.3.0...v0.3.1) Updates `org.eclipse.edc:configuration-filesystem` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:connector-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:control-plane-api-client` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:control-plane-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:control-plane-spi` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-api` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-aws-s3` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Technology-Aws/releases) - [Commits](eclipse-edc/Technology-Aws@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-azure-storage` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Technology-Azure/releases) - [Commits](eclipse-edc/Technology-Azure@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-client` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-http` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-kafka` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-selector-api` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-selector-client` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-selector-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-spi` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:data-plane-util` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:dsp` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:http` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:iam-mock` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:jersey-micrometer` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:jetty-micrometer` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:json-ld` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:junit` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:management-api` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:micrometer-core` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:monitor-jdk-logger` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:provision-aws-s3` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Technology-Aws/releases) - [Commits](eclipse-edc/Technology-Aws@v0.3.0...v0.3.1) Updates `org.eclipse.edc:runtime-metamodel` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:transfer-data-plane` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:transfer-process-api` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:transfer-pull-http-receiver` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:transfer-spi` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:util` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) Updates `org.eclipse.edc:vault-azure` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Technology-Azure/releases) - [Commits](eclipse-edc/Technology-Azure@v0.3.0...v0.3.1) Updates `org.eclipse.edc:vault-filesystem` from 0.3.0 to 0.3.1 - [Release notes](https://github.com/eclipse-edc/Connector/releases) - [Commits](eclipse-edc/Connector@v0.3.0...v0.3.1) --- updated-dependencies: - dependency-name: org.eclipse.edc:api-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:api-observability dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:auth-tokenbased dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:boot dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc.edc-build:org.eclipse.edc.edc-build.gradle.plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:configuration-filesystem dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:connector-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:control-plane-api-client dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:control-plane-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:control-plane-spi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-aws-s3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-azure-storage dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-client dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-http dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-kafka dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-selector-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-selector-client dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-selector-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-spi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:data-plane-util dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:dsp dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:http dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:iam-mock dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:jersey-micrometer dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:jetty-micrometer dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:json-ld dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:junit dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:management-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:micrometer-core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:monitor-jdk-logger dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:provision-aws-s3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:runtime-metamodel dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:transfer-data-plane dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:transfer-process-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:transfer-pull-http-receiver dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:transfer-spi dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:util dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:vault-azure dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.edc:vault-filesystem dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Fix compilation and tests * fix broken test setup * Fixed tests --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ndr_brt <andrea.bertagnolli@gmail.com> Co-authored-by: Paul Latzelsperger <paul.latzelsperger@beardyinc.com>
Bumps
edc
from 0.3.0 to 0.3.1.Updates
org.eclipse.edc:api-core
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:api-core's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:api-observability
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:api-observability's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:auth-tokenbased
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:auth-tokenbased's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:boot
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:boot's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc.edc-build:org.eclipse.edc.edc-build.gradle.plugin
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc.edc-build:org.eclipse.edc.edc-build.gradle.plugin's releases.
Commits
0602a3e
Bump version from 0.3.0 to 0.3.1-SNAPSHOT [skip ci]Updates
org.eclipse.edc:configuration-filesystem
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:configuration-filesystem's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:connector-core
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:connector-core's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:control-plane-api-client
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:control-plane-api-client's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:control-plane-core
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:control-plane-core's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:control-plane-spi
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:control-plane-spi's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:data-plane-api
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:data-plane-api's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:data-plane-aws-s3
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:data-plane-aws-s3's releases.
Commits
2bb6d23
feat: removes StatusChecker (#96)9b1a838
Bump version from 0.3.0 to 0.3.1-SNAPSHOT [skip ci]Updates
org.eclipse.edc:data-plane-azure-storage
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:data-plane-azure-storage's releases.
Commits
125c603
feat: removes StatusChecker (#66)3bda740
Bump version from 0.3.0 to 0.3.1-SNAPSHOT [skip ci]Updates
org.eclipse.edc:data-plane-client
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:data-plane-client's releases.
Commits
f7c0751
chore: update DEPENDENCIES file with latest approvals101203a
feat(Pool): autovacuum fix + refactor (#3479)bbfcbab
feat: removes StatusChecker (#3480)7dc9dde
fix: retry on 204 instead of 200 (#3471)3fb0dc2
feat: implement policy-monitor (#3456)a3be9ed
build(deps): bump com.nimbusds:nimbus-jose-jwt from 9.31 to 9.32 (#3452)e93e496
fix: validate every item of QuerySpec filterExpression (#3467)ab64daa
fix: update DataAddress in SqlAssetIndex (#3470)bca056c
build(deps): bump com.google.crypto.tink:tink from 1.10.0 to 1.11.0 (#3466)f981237
fix: remove SLF4j-Monitor bridge (#3463)Updates
org.eclipse.edc:data-plane-core
from 0.3.0 to 0.3.1Release notes
Sourced from org.eclipse.edc:data-plane-core's releases.