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-cli.git


The following commit(s) were added to refs/heads/master by this push:
     new f3adc27  Bump commons-parent from 64 to 66
f3adc27 is described below

commit f3adc2751a546d8e56caa32a51cf7633e8560207
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Feb 3 09:25:03 2024 -0500

    Bump commons-parent from 64 to 66
    
    - Add Maven property project.build.outputTimestamp for build
    reproducibility
    - Exclude for now CT_CONSTRUCTOR_THROW
---
 pom.xml                              |  3 +-
 src/changes/changes.xml              |  3 ++
 src/conf/spotbugs-exclude-filter.xml | 54 ++++++++++++++++++++++++++++++++++++
 3 files changed, 59 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c118b54..399afb4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
-    <version>64</version>
+    <version>66</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>commons-cli</groupId>
@@ -200,6 +200,7 @@
   </dependencies>
 
   <properties>
+    
<project.build.outputTimestamp>2024-01-29T13:15:17Z</project.build.outputTimestamp>
     <maven.compiler.source>1.8</maven.compiler.source>
     <maven.compiler.target>1.8</maven.compiler.target>
     <commons.componentid>cli</commons.componentid>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 55bbfa8..6764c18 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -25,6 +25,9 @@
     <release version="1.7.0" date="202Y-MM-DD" description="New features and 
bug fixes">
       <!-- ADD -->
       <action type="add" issue="CLI-321" dev="ggregory" due-to="Claude Warren, 
Gary Gregory">Add and use a Converter interface and implementations without 
using BeanUtils #216.</action>
+      <action type="add" dev="ggregory" due-to="Gary Gregory">Add Maven 
property project.build.outputTimestamp for build reproducibility.</action>
+      <!-- UPDATE -->
+      <action type="update" dev="ggregory" due-to="Gary Gregory">Bump 
commons-parent from 64 to 66.</action>
     </release>
     <release version="1.6.0" date="2023-10-23" description="New features and 
bug fixes">
       <!-- FIX -->
diff --git a/src/conf/spotbugs-exclude-filter.xml 
b/src/conf/spotbugs-exclude-filter.xml
index ad51bbe..e433bc6 100644
--- a/src/conf/spotbugs-exclude-filter.xml
+++ b/src/conf/spotbugs-exclude-filter.xml
@@ -35,6 +35,55 @@
       returns="org.apache.commons.cli.OptionBuilder" />
     <Bug pattern="EI_EXPOSE_STATIC_REP2" />
   </Match>
+  <!-- org.apache.commons.cli.HelpFormatter -->
+  <Match>
+    <!-- Note: public ivars are deprecated. -->
+    <Class name="org.apache.commons.cli.HelpFormatter" />
+    <Field name="defaultArgName" />
+    <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
+  </Match>
+  <Match>
+    <!-- Note: public ivars are deprecated. -->
+    <Class name="org.apache.commons.cli.HelpFormatter" />
+    <Field name="defaultDescPad" />
+    <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
+  </Match>
+  <Match>
+    <!-- Note: public ivars are deprecated. -->
+    <Class name="org.apache.commons.cli.HelpFormatter" />
+    <Field name="defaultLeftPad" />
+    <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
+  </Match>
+  <Match>
+    <!-- Note: public ivars are deprecated. -->
+    <Class name="org.apache.commons.cli.HelpFormatter" />
+    <Field name="defaultLongOptPrefix" />
+    <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
+  </Match>
+  <Match>
+    <!-- Note: public ivars are deprecated. -->
+    <Class name="org.apache.commons.cli.HelpFormatter" />
+    <Field name="defaultNewLine" />
+    <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
+  </Match>
+  <Match>
+    <!-- Note: public ivars are deprecated. -->
+    <Class name="org.apache.commons.cli.HelpFormatter" />
+    <Field name="defaultOptPrefix" />
+    <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
+  </Match>
+  <Match>
+    <!-- Note: public ivars are deprecated. -->
+    <Class name="org.apache.commons.cli.HelpFormatter" />
+    <Field name="defaultSyntaxPrefix" />
+    <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
+  </Match>
+  <Match>
+    <!-- Note: public ivars are deprecated. -->
+    <Class name="org.apache.commons.cli.HelpFormatter" />
+    <Field name="defaultWidth" />
+    <Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
+  </Match>
 
   <Match>
     <!-- TODO ? -->
@@ -46,4 +95,9 @@
     <Bug pattern="EI_EXPOSE_REP2" />
   </Match>
   
+  <Match>
+    <!-- TODO ? -->
+    <Bug pattern="CT_CONSTRUCTOR_THROW" />
+  </Match>
+  
 </FindBugsFilter>

Reply via email to