This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch commons_parent_92
in repository https://gitbox.apache.org/repos/asf/commons-compress.git


The following commit(s) were added to refs/heads/commons_parent_92 by this push:
     new ae0318cde Bump `commons-parent` to version 92
ae0318cde is described below

commit ae0318cded6f82626912b888d281ad5b6cba6437
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Sat Nov 8 09:32:40 2025 +0100

    Bump `commons-parent` to version 92
    
    This update resolves a build failure on `main` caused by a bug in **PMD 
7.17.0** (pmd/pmd#4904).
    The issue prevents PMD from including the name of the containing class in 
the fully qualified class name (FQCN) of nested classes.
    
    As a result, the exclusion rule:
    
    ```text
    org.apache.commons.compress.archivers.dump.DumpArchiveEntry.PERMISSION = 
AvoidUsingOctalValues
    ```
    
    is not applied correctly.
    
    There are two possible solutions
    
    1. Update the exclusion to match PMD’s incorrect FQCN:
    
       ```text
       org.apache.commons.compress.archivers.dump.PERMISSION = 
AvoidUsingOctalValues
       ```
    2. Upgrade PMD to **7.18.0**, which fixes this issue.
    
    This PR takes the second approach by bumping the parent to version **92**, 
which includes PMD **7.18.0**.
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 466bbc7ad..10212abe4 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -137,7 +137,7 @@ The <action> type attribute can be add,update,fix,remove.
       <action type="add" dev="pkarwasz" due-to="Piotr P. Karwasz">Introduce an 
ArchiveFile abstraction to unify the APIs of SevenZFile, TarFile, and 
ZipFile.</action>
       <action type="add" dev="pkarwasz" due-to="Piotr P. Karwasz">Add a 
configurable maxEntryNameLength option to all archivers.</action>
       <!-- UPDATE -->
-      <action type="update" dev="ggregory" due-to="Gary Gregory">Bump 
org.apache.commons:commons-parent from 85 to 92 #707.</action>
+      <action type="update" dev="ggregory" due-to="Gary Gregory">Bump 
org.apache.commons:commons-parent from 85 to 92 #707 #746.</action>
       <action type="update" dev="ggregory" due-to="Gary Gregory">Bump 
org.apache.commons:commons-lang3 from 3.18.0 to 3.19.0.</action>
       <action type="update" dev="ggregory" due-to="Gary Gregory, 
Dependabot">Bump com.github.luben:zstd-jni from 1.5.7-4 to 1.5.7-6 #717, 
#740.</action>
       <action type="update" dev="ggregory" due-to="Dependabot, Gary 
Gregory">Bump com.github.marschall:memoryfilesystem from 2.8.1 to 2.8.2 
#727.</action>

Reply via email to