You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2022/05/09 07:31:10 UTC

[commons-imaging] branch master updated (0349d97f -> c33ef79c)

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

kinow pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git


    from 0349d97f SpotBugs: Throw a IllegalArgumentException instead of a RuntimeException (as in other methods)
     new f1341d45 Bump commons-parent from 52 to 53
     new ef60f93a Configure GitHub Actions to use LF instead of CRLF to avoid causing Checkstyle to fail
     new c33ef79c Suppress NewlineAtEndOfFile for a build file, to suppress an error in Checkstyle on Windows

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/maven.yml | 5 +++++
 checkstyle-suppressions.xml | 2 ++
 pom.xml                     | 2 +-
 src/changes/changes.xml     | 3 +++
 4 files changed, 11 insertions(+), 1 deletion(-)


[commons-imaging] 03/03: Suppress NewlineAtEndOfFile for a build file, to suppress an error in Checkstyle on Windows

Posted by ki...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c33ef79cd2026b5b622102c8c7ebc9eebdd5b899
Author: Bruno P. Kinoshita <ki...@apache.org>
AuthorDate: Mon May 9 19:09:43 2022 +1200

    Suppress NewlineAtEndOfFile for a build file, to suppress an error in Checkstyle on Windows
---
 checkstyle-suppressions.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/checkstyle-suppressions.xml b/checkstyle-suppressions.xml
index 4dc5200e..105df667 100644
--- a/checkstyle-suppressions.xml
+++ b/checkstyle-suppressions.xml
@@ -20,4 +20,6 @@ limitations under the License.
     <suppress checks="JavadocMethod" files=".*[/\\]test[/\\].*"/>
     <suppress checks="JavadocPackage" files=".*[/\\]test[/\\].*"/>
     <suppress checks="MagicNumber" files="ColorConversions.java"/>
+    <!-- Due to fail in Checkstyle on Windows, in GH Actions -->
+    <suppress checks="NewlineAtEndOfFile" files="target[/\\]maven-archiver[/\\]pom.properties"/>
 </suppressions>


[commons-imaging] 02/03: Configure GitHub Actions to use LF instead of CRLF to avoid causing Checkstyle to fail

Posted by ki...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit ef60f93a27fc356d9901c261ff7d0517b66f064d
Author: Bruno P. Kinoshita <ki...@apache.org>
AuthorDate: Mon May 9 18:42:17 2022 +1200

    Configure GitHub Actions to use LF instead of CRLF to avoid causing Checkstyle to fail
---
 .github/workflows/maven.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 652d7f90..08429678 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -35,6 +35,11 @@ jobs:
 #            experimental: true
         
     steps:
+    # https://github.com/actions/checkout/issues/226#issuecomment-854736025
+    - name: Prepare git
+      run: |-
+        git config --global core.autocrlf false
+        git config --global core.eol lf
     - uses: actions/checkout@v3
     - name: Set up JDK ${{ matrix.java }}
       uses: actions/setup-java@v3


[commons-imaging] 01/03: Bump commons-parent from 52 to 53

Posted by ki...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f1341d45be3d88ed0f5ed5e70a055e50aee96eec
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Tue Apr 12 17:51:33 2022 +0000

    Bump commons-parent from 52 to 53
    
    Bumps commons-parent from 52 to 53.
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.commons:commons-parent
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 2179ae05..bc3906c0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
-    <version>52</version>
+    <version>53</version>
   </parent>
 
   <artifactId>commons-imaging</artifactId>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 32c2306a..fac5a173 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -45,6 +45,9 @@ The <action> type attribute can be add,update,fix,remove.
   </properties>
   <body>
     <release version="1.0-alpha3" date="2022-??-??" description="Third 1.0 alpha release">
+      <action dev="kinow" type="fix" due-to="Dependabot">
+        Bump commons-parent from 52 to 53 #215.
+      </action>
       <action issue="IMAGING-330" dev="kinow" type="fix" due-to="Gary Lucas">
         Add PNG predictor to reduce output size.
       </action>