Skip to content

Commit

Permalink
deps: update commons-compress to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
aivinog1 committed Sep 7, 2021
1 parent 6c80784 commit df52151
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
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

0 comments on commit df52151

Please sign in to comment.