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

ggregory pushed a commit to branch POOL_2_X
in repository https://gitbox.apache.org/repos/asf/commons-pool.git


The following commit(s) were added to refs/heads/POOL_2_X by this push:
     new eb2a0c41 Bump org.apache.commons:commons-parent from 81 to 93
eb2a0c41 is described below

commit eb2a0c41063dad9039c7433a75ac3cb2a9014acd
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 23 09:52:52 2025 -0500

    Bump org.apache.commons:commons-parent from 81 to 93
    
    Fix Apache RAT plugin console warnings
---
 pom.xml                              |  2 +-
 src/changes/changes.xml              |  2 +-
 src/conf/checkstyle.xml              |  2 +-
 src/conf/findbugs-exclude-filter.xml | 12 ++++++++++++
 4 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index e4863c54..42bc166d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
-    <version>81</version>
+    <version>93</version>
   </parent>
   <artifactId>commons-pool2</artifactId>
   <version>2.13.0-SNAPSHOT</version>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 3be83396..8189d2d2 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -74,7 +74,7 @@ The <action> type attribute can be add,update,fix,remove.
     <action type="add" dev="ggregory" due-to="Gary Gregory">Add 
org.apache.commons.pool2.PooledObject.nonNull(PooledObject).</action>
     <action type="add" dev="ggregory" due-to="Gary Gregory">Add 
org.apache.commons.pool2.PooledObject.getObject(PooledObject).</action>
     <!-- UPDATE -->
-    <action type="update" dev="ggregory" due-to="Gary Gregory">Bump 
org.apache.commons:commons-parent from 79 to 81.</action>
+    <action type="update" dev="ggregory" due-to="Gary Gregory">Bump 
org.apache.commons:commons-parent from 79 to 93.</action>
     <action type="update" dev="ggregory" due-to="Gary Gregory">[test] Bump 
commons-lang3 from 3.17.0 to 3.20.0.</action>
   </release>
   <release version="2.12.1" date="2025-01-19" description="This is a feature 
and maintenance release. Java 8 or later is required.">
diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml
index d7e11366..36a9d49a 100644
--- a/src/conf/checkstyle.xml
+++ b/src/conf/checkstyle.xml
@@ -68,7 +68,7 @@
     <module name="JavadocMethod">
     </module>
     <module name="JavadocVariable">
-      <property name="scope" value="protected" />
+      <property name="accessModifiers" value="protected" />
     </module>
     <module name="LeftCurly" />
     <module name="MethodParamPad"/>
diff --git a/src/conf/findbugs-exclude-filter.xml 
b/src/conf/findbugs-exclude-filter.xml
index 0c93d20d..1f331b44 100644
--- a/src/conf/findbugs-exclude-filter.xml
+++ b/src/conf/findbugs-exclude-filter.xml
@@ -210,4 +210,16 @@
     <!-- TODO ? -->
     <Bug pattern="CT_CONSTRUCTOR_THROW" />
   </Match>
+  <Match>
+    <!-- TODO as of parent 93? -->
+    <Class 
name="org.apache.commons.pool2.impl.GenericKeyedObjectPool$ObjectDeque" />
+    <Field name="makeObjectCount" />
+    <Bug pattern="AT_NONATOMIC_64BIT_PRIMITIVE" />
+  </Match>
+  <Match>
+    <!-- TODO as of parent 93 ? -->
+    <Class name="org.apache.commons.pool2.impl.LinkedBlockingDeque" />
+    <Field name="count" />
+    <Bug pattern="AT_NONATOMIC_OPERATIONS_ON_SHARED_VARIABLE" />
+  </Match>
 </FindBugsFilter>

Reply via email to