You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/08/13 19:32:06 UTC

[commons-pool] branch master updated: Bump spotbugs from 4.2.3 to 4.3.0 and ignore new medium warnings EI_EXPOSE_REP and EI_EXPOSE_REP2.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c93f5bf  Bump spotbugs from 4.2.3 to 4.3.0 and ignore new medium warnings EI_EXPOSE_REP and EI_EXPOSE_REP2.
c93f5bf is described below

commit c93f5bf865f9bc9592b12ec00a30e906ad2d9b36
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Aug 13 15:32:04 2021 -0400

    Bump spotbugs from 4.2.3 to 4.3.0 and ignore new medium warnings
    EI_EXPOSE_REP and EI_EXPOSE_REP2.
---
 findbugs-exclude-filter.xml | 6 ++++++
 pom.xml                     | 2 +-
 src/changes/changes.xml     | 3 +++
 3 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/findbugs-exclude-filter.xml b/findbugs-exclude-filter.xml
index 2f72f9d..fd293b8 100644
--- a/findbugs-exclude-filter.xml
+++ b/findbugs-exclude-filter.xml
@@ -196,4 +196,10 @@
     <Method name="reuseCapacity" />
     <Bug pattern="WMI_WRONG_MAP_ITERATOR" />
   </Match>
+  <Match>
+    <Bug pattern="EI_EXPOSE_REP" />
+  </Match>
+  <Match>
+    <Bug pattern="EI_EXPOSE_REP2" />
+  </Match>
 </FindBugsFilter>
diff --git a/pom.xml b/pom.xml
index 1cdf0f5..bb9f5a6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -199,7 +199,7 @@
     <commons.checkstyle.version>8.45.1</commons.checkstyle.version>
     <commons.felix.version>5.1.2</commons.felix.version>
     <spotbugs.plugin.version>4.3.0</spotbugs.plugin.version>
-    <spotbugs.impl.version>4.2.3</spotbugs.impl.version>
+    <spotbugs.impl.version>4.3.0</spotbugs.impl.version>
 
     <!-- Commons Release Plugin -->
     <commons.bc.version>2.10.0</commons.bc.version>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a53a1c6..c640a2c 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -71,6 +71,9 @@ The <action> type attribute can be add,update,fix,remove.
     <action dev="ggregory" type="update" due-to="Dependabot">
       Bump checkstyle from 8.45 to 8.45.1 #93.
     </action>
+    <action dev="ggregory" type="update" due-to="Dependabot">
+      Bump spotbugs from 4.2.3 to 4.3.0 and ignore new medium warnings EI_EXPOSE_REP and EI_EXPOSE_REP2.
+    </action>
   </release>
   <release version="2.11.0" date="2021-08-08" description="This is a feature release (Java 8).">
     <!-- FIXES -->