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(dependabot): XXX upgrade dependencies #1214

Merged
merged 1 commit into from
May 7, 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ _**For better traceability add the corresponding GitHub issue number in each cha
- #603 Upgraded PartAsPlanned to 2.0.0
- #918 Merged parts and other parts into one table
- #778 update EDC from 0.5.3 to 0.7.0
- #xxx update of lombok from 1.18.30 to 1.18.32
- #xxx update of findsecbugs plugin from 1.12.0 to 1.13.0
- #xxx update of commons-compress from 1.26.0 to 1.26.1
- #xxx update of logback from 1.5.5 to 1.5.6
- #xxx update of cucumber-bom from 7.16.1 to 7.17.0

### Removed
-
Expand Down
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ SPDX-License-Identifier: Apache-2.0
<maven-jxr-plugin.version>3.3.2</maven-jxr-plugin.version>
<ascii-doctor.maven.plugin.version>2.2.4</ascii-doctor.maven.plugin.version>
<checkstyle-plugin.version>3.3.1</checkstyle-plugin.version>
<findsecbugs-plugin.version>1.12.0</findsecbugs-plugin.version>
<findsecbugs-plugin.version>1.13.0</findsecbugs-plugin.version>
<commons-compress.version>1.26.1</commons-compress.version>
<install-plugin.version>3.1.1</install-plugin.version>
<jacoco-plugin.version>0.8.11</jacoco-plugin.version>
<jar-plugin.version>3.3.0</jar-plugin.version>
Expand All @@ -62,7 +63,7 @@ SPDX-License-Identifier: Apache-2.0
<maven-site-plugin.version>4.0.0-M11</maven-site-plugin.version>
<edc-library.version>0.2.1</edc-library.version>
<!-- versions for 3rd party dependecies -->
<logback.version>1.5.5</logback.version>
<logback.version>1.5.6</logback.version>
<eclipse-dash-ip.version>1.1.0</eclipse-dash-ip.version>
<nimbus-jose-jwt.version>9.37.3</nimbus-jose-jwt.version>
<ascii-doctor-j-diagram.version>2.3.0</ascii-doctor-j-diagram.version>
Expand All @@ -83,9 +84,9 @@ SPDX-License-Identifier: Apache-2.0
<assertj.version>3.24.2</assertj.version>
<commons-logging.version>1.3.0</commons-logging.version>
<commons-collections.version>4.4</commons-collections.version>
<lombok.version>1.18.30</lombok.version>
<lombok.version>1.18.32</lombok.version>
<json-unit-assertj.version>3.2.2</json-unit-assertj.version>
<cucumber.version>7.16.1</cucumber.version>
<cucumber.version>7.17.0</cucumber.version>
<junit-bom.version>5.10.2</junit-bom.version>
<awaitility.version>4.2.1</awaitility.version>
<irs-client-lib.version>1.8.0</irs-client-lib.version>
Expand Down
2 changes: 1 addition & 1 deletion tx-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ SPDX-License-Identifier: Apache-2.0
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.26.0</version>
<version>${commons-compress.version}</version>
</dependency>
Comment on lines 227 to 231

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just tested the application without this dependency and all tests run successfully. I'll guess we can remove this dependency?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will be accepted for now.


<dependency>
Expand Down