diff --git a/DEPENDENCIES_BACKEND b/DEPENDENCIES_BACKEND index 6bdeb0e558..754930490a 100644 --- a/DEPENDENCIES_BACKEND +++ b/DEPENDENCIES_BACKEND @@ -165,7 +165,7 @@ maven/mavencentral/net.minidev/json-smart/2.5.0, Apache-2.0, approved, clearlyde maven/mavencentral/net.sf.jopt-simple/jopt-simple/5.0.4, MIT, approved, CQ13174 maven/mavencentral/org.antlr/antlr4-runtime/4.13.0, BSD-3-Clause, approved, #10767 maven/mavencentral/org.apache.commons/commons-collections4/4.4, Apache-2.0, approved, clearlydefined -maven/mavencentral/org.apache.commons/commons-compress/1.24.0, Apache-2.0 AND BSD-3-Clause AND bzip2-1.0.6 AND LicenseRef-Public-Domain, approved, #10368 +maven/mavencentral/org.apache.commons/commons-compress/1.26.0, Apache-2.0 AND (Apache-2.0 AND BSD-3-Clause), approved, #13288 maven/mavencentral/org.apache.commons/commons-lang3/3.11, Apache-2.0, approved, CQ22642 maven/mavencentral/org.apache.commons/commons-lang3/3.12.0, Apache-2.0, approved, clearlydefined maven/mavencentral/org.apache.commons/commons-lang3/3.13.0, Apache-2.0, approved, #9820 diff --git a/DEPENDENCIES_FRONTEND b/DEPENDENCIES_FRONTEND index 4bafef8b50..67f40fa669 100644 --- a/DEPENDENCIES_FRONTEND +++ b/DEPENDENCIES_FRONTEND @@ -1634,7 +1634,7 @@ npm/npmjs/@types/node/18.16.0, MIT, approved, #9385 npm/npmjs/@types/node/20.2.3, MIT, approved, clearlydefined npm/npmjs/@types/normalize-package-data/2.4.1, MIT, approved, #10792 npm/npmjs/@types/parse-json/4.0.0, MIT, approved, clearlydefined -npm/npmjs/@types/qs/6.9.7, MIT, approved, #13990 +npm/npmjs/@types/qs/6.9.7, MIT, approved, #13991 npm/npmjs/@types/range-parser/1.2.4, MIT, approved, #10795 npm/npmjs/@types/retry/0.12.0, MIT, approved, clearlydefined npm/npmjs/@types/semver/7.3.13, MIT, approved, #4668 diff --git a/tx-backend/pom.xml b/tx-backend/pom.xml index b9938e15f0..9895aface1 100644 --- a/tx-backend/pom.xml +++ b/tx-backend/pom.xml @@ -151,7 +151,7 @@ SPDX-License-Identifier: Apache-2.0 spring-boot-starter-oauth2-resource-server - + org.springframework.security spring-security-config @@ -173,6 +173,10 @@ SPDX-License-Identifier: Apache-2.0 org.springframework.boot spring-boot-starter-web + + org.springframework.boot + spring-boot-starter-oauth2-client + com.fasterxml.jackson.datatype jackson-datatype-jsr310 @@ -225,12 +229,13 @@ SPDX-License-Identifier: Apache-2.0 org.apache.commons - commons-collections4 + commons-compress + 1.26.0 - org.springframework.boot - spring-boot-starter-oauth2-client + org.apache.commons + commons-collections4 @@ -320,6 +325,7 @@ SPDX-License-Identifier: Apache-2.0 org.eclipse.tractusx.traceability.generated JSONSCHEMA #/ + false diff --git a/tx-models/src/main/java/common/PageResult.java b/tx-models/src/main/java/common/PageResult.java index 4997f14106..4700d11ae8 100644 --- a/tx-models/src/main/java/common/PageResult.java +++ b/tx-models/src/main/java/common/PageResult.java @@ -31,7 +31,6 @@ @ArraySchema(arraySchema = @Schema(description = "PageResults", additionalProperties = Schema.AdditionalPropertiesValue.FALSE), maxItems = Integer.MAX_VALUE) public record PageResult( - @ArraySchema(arraySchema = @Schema(description = "Content of PageResults"), maxItems = Integer.MAX_VALUE) List content, Integer page, Integer pageCount,