Skip to content

Commit

Permalink
Bump SpotBugs from 4.8.3 to 4.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed May 6, 2024
1 parent 62935d5 commit 82ec372
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,8 @@
<commons.jacoco.branchRatio>0.95</commons.jacoco.branchRatio>
<commons.jacoco.complexityRatio>0.94</commons.jacoco.complexityRatio>
<commons.jacoco.lineRatio>0.98</commons.jacoco.lineRatio>

<!-- Java 23: Temp until next parent POM -->
<commons.spotbugs.impl.version>4.8.3</commons.spotbugs.impl.version>
<commons.spotbugs.impl.version>4.8.5</commons.spotbugs.impl.version>
</properties>

<dependencies>
Expand Down
1 change: 1 addition & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ The <action> type attribute can be add,update,fix,remove.
<!-- UPDATE -->
<action type="udpate" dev="ggregory" due-to="Gary Gregory">Bump tests on Java >= 22 org.graalvm.*:* from 24.0.0 to 24.0.1.</action>
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump commons.bytebuddy.version from 1.14.13 to 1.14.14.</action>
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump SpotBugs from 4.8.3 to 4.8.5.</action>
</release>
<release version="1.12.0" date="2024-04-13" description="Release 1.12.0. Requires Java 8 or above.">
<!-- ADD -->
Expand Down
10 changes: 10 additions & 0 deletions src/conf/spotbugs-exclude-filter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,15 @@
<Match>
<Class name="~.*" />
<Bug pattern="CT_CONSTRUCTOR_THROW" />
</Match>
<!-- Can't make ctor private until next major release -->
<Match>
<Class name="org.apache.commons.text.similarity.LevenshteinDetailedDistance" />
<Bug pattern="SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR" />
</Match>
<!-- Can't make ctor private until next major release -->
<Match>
<Class name="org.apache.commons.text.similarity.LevenshteinDistance" />
<Bug pattern="SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR" />
</Match>
</FindBugsFilter>

0 comments on commit 82ec372

Please sign in to comment.