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

deps: update commons-compress to 1.21 #188

Merged
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
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<version.revapi>0.24.4</version.revapi>
<version.slf4j>1.7.32</version.slf4j>
<version.testcontainers>1.15.3</version.testcontainers>
<version.commons-compress>1.21</version.commons-compress>
<version.zeebe>1.1.3</version.zeebe>

<!-- plugin version -->
Expand Down Expand Up @@ -74,6 +75,15 @@
<scope>import</scope>
<type>pom</type>
</dependency>

<!-- We need to do this since there is a problem with
testcontainers 1.16.0 and this dependency:
https://github.com/testcontainers/testcontainers-java/issues/4384 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>${version.commons-compress}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
25 changes: 25 additions & 0 deletions revapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
},
{
"code": "java.method.addedToInterface"
},
{
"code": "java.class.externalClassExposedInAPI",
"oldArchive": "org.apache.commons:commons-compress:jar:1.21"
}
]
}
Expand All @@ -45,6 +49,27 @@
]
}
},
{
"extension": "revapi.differences",
"configuration": {
"differences": [
{
"ignore": true,
"code": "java.method.added",
"new": "method org.apache.commons.compress.archivers.ArchiveEntry org.apache.commons.compress.archivers.tar.TarArchiveOutputStream::createArchiveEntry(java.nio.file.Path, java.lang.String, java.nio.file.LinkOption[]) throws java.io.IOException",
"justification": "ADD YOUR EXPLANATION FOR THE NECESSITY OF THIS CHANGE",
"package": "org.apache.commons.compress.archivers.tar",
"classQualifiedName": "org.apache.commons.compress.archivers.tar.TarArchiveOutputStream",
"classSimpleName": "TarArchiveOutputStream",
"methodName": "createArchiveEntry",
"elementKind": "method",
"newArchive": "org.apache.commons:commons-compress:jar:1.21",
"newArchiveRole": "supplementary",
"breaksSemanticVersioning": "true"
}
]
}
},
{
"extension": "revapi.filter",
"configuration": {
Expand Down