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

jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-java.git


The following commit(s) were added to refs/heads/main by this push:
     new 973e974e1 MINOR: Bump commons-codec:commons-codec from 1.18.0 to 
1.19.0 (#871)
973e974e1 is described below

commit 973e974e15d5997bb55102d71e8b3f59f3ba7eea
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Nov 12 21:50:56 2025 +0100

    MINOR: Bump commons-codec:commons-codec from 1.18.0 to 1.19.0 (#871)
    
    Bumps
    [commons-codec:commons-codec](https://github.com/apache/commons-codec)
    from 1.18.0 to 1.19.0.
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    
href="https://github.com/apache/commons-codec/blob/master/RELEASE-NOTES.txt";>commons-codec:commons-codec's
    changelog</a>.</em></p>
    <blockquote>
    <h2>Apache Commons Codec 1.19.0 Release Notes</h2>
    <p>The Apache Commons Codec team is pleased to announce the release of
    Apache Commons Codec 1.19.0.</p>
    <p>The Apache Commons Codec component contains encoders and decoders for
    formats such as Base16, Base32, Base64, digest, and Hexadecimal. In
    addition to these
    widely used encoders and decoders, the codec package also maintains a
    collection of phonetic encoding utilities.</p>
    <p>This is a feature and maintenance release. Java 8 or later is
    required.</p>
    <h2>New features</h2>
    <ul>
    <li>
    <pre><code>        Add HmacUtils.hmac(Path). Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code>        Add HmacUtils.hmacHex(Path). Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Add PMD check to the default Maven goal. Thanks to Gary
    Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Add SpotBugs check to the default Maven goal. Thanks to Gary
    Gregory.
    </code></pre>
    </li>
    </ul>
    <h2>Fixed Bugs</h2>
    <ul>
    <li>
    <pre><code> Remove -nouses directive from maven-bundle-plugin. OSGi
    package imports now state 'uses' definitions for package imports, this
    doesn't affect JPMS (from org.apache.commons:commons-parent:80). Thanks
    to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Refactor DigestUtils.updateDigest(MessageDigest, File) to
    use NIO. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>CODEC-328: Clarify Javadoc for
    org.apache.commons.codec.digest.UnixCrypt.crypt(byte[],String). Thanks
    to Gary Gregory.</li>
    <li>
    <pre><code> Precompile regular expressions in
    DaitchMokotoffSoundex.Rule. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Precompile regular expressions in
    DaitchMokotoffSoundex.parseRules(Scanner, String, Map, Map). Thanks to
    Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Precompile regular expressions in
    Lang.loadFromResource(String, Languages). Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Precompile regular expressions in
    PhoneticEngine.encode(String, LanguageSet). Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Precompile regular expressions in
    org.apache.commons.codec.language.bm.Rule.parse*(*). Thanks to Gary
    Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Remove redundant checks for whitespace in
    DaitchMokotoffSoundex.soundex(String, boolean). Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Javadoc typo in Base16.java
    [#380](https://github.com/apache/commons-codec/issues/380). Thanks to
    Sebastian Baunsgaard.
    </code></pre>
    </li>
    <li>
    <pre><code> Deprecate unused constant
    org.apache.commons.codec.language.bm.Rule.ALL. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>CODEC-331:
    org.apache.commons.codec.language.bm.Rule.parsePhonemeExpr(String) adds
    duplicate empty phoneme when input ends with |. Thanks to IlikeCode,
    Gary Gregory.</li>
    <li>CODEC-331:
    org.apache.commons.codec.language.DaitchMokotoffSoundex.cleanup(String)
    does not remove special characters like punctuation. Thanks to
    IlikeCode, Gary Gregory.</li>
    <li>
    <pre><code> Fix PMD multiple UnnecessaryFullyQualifiedName in
    org.apache.commons.codec.binary.StringUtils. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Fix PMD UnusedFormalParameter in private constructor in
    org.apache.commons.codec.binary.Base16. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Fix PMD multiple UnnecessaryFullyQualifiedName in
    org.apache.commons.codec.digest.Blake3. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Fix PMD UnnecessaryFullyQualifiedName in
    org.apache.commons.codec.digest.Md5Crypt. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Fix PMD EmptyControlStatement in
    org.apache.commons.codec.language.Metaphone. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Fix SpotBugs [ERROR] Medium:
    
org.apache.commons.codec.binary.BaseNCodec$AbstractBuilder.setEncodeTable(byte[])
    may expose internal representation by storing an externally mutable
    object into BaseNCodec$AbstractBuilder.encodeTable
    [org.apache.commons.codec.binary.BaseNCodec$AbstractBuilder] At
    BaseNCodec.java:[line 131] EI_EXPOSE_REP2. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> The method
    
org.apache.commons.codec.binary.BaseNCodec.AbstractBuilder.setLineSeparator(byte...)
    now makes a defensive copy. Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Avoid unnecessary String conversion in
    
org.apache.commons.codec.language.bm.PhoneticEngine.applyFinalRules(PhonemeBuilder,
    Map). Thanks to Gary Gregory.
    </code></pre>
    </li>
    <li>
    <pre><code> Fix SpotBugs [ERROR] High: Potentially dangerous use of
    non-short-circuit logic in
    org.apache.commons.codec.language.DaitchMokotoffSoundex.cleanup(String)
    [org.apache.commons.codec.language.DaitchMokotoffSoundex] At
    DaitchMokotoffSoundex.java:[line 350] NS_DANGEROUS_NON_SHORT_CIRCUIT.
    Thanks to Gary Gregory.
    </code></pre>
    </li>
    </ul>
    <h2>Changes</h2>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/351cb22e1e1948aaabb39a463dce631bea156125";><code>351cb22</code></a>
    Prepare for the release candidate 1.19.0 RC1</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/0d501b60e50ea50e247d8d804945b9a39974ed52";><code>0d501b6</code></a>
    Prepare for the next release candidate</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/d6d4b824539b0d4794200d05286fd3de1ff2f236";><code>d6d4b82</code></a>
    Refactor duplicate code</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/6d6456ca94448ba8ea105e697e3f89a67f3cb7c1";><code>6d6456c</code></a>
    No need to exclude abstract test classes from Surefire runs</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/22d62e41374cfe558f995fd2c0f490e6f93339d6";><code>22d62e4</code></a>
    No need to specify the default value for linkXref</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/c4daf34d4aeb1193ba8feab437b86a871c6b123d";><code>c4daf34</code></a>
    No longer need to override the version of the Jacoco Maven plugin</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/8f2b67337af5dc40a3701346c6302ab0cf5ca554";><code>8f2b673</code></a>
    Remove workaround for [SUREFIRE-2253]</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/466a61d3f957a9a0727937b3772dc6880db22f01";><code>466a61d</code></a>
    Fix Javadoc</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/ca27bd30b6170561786d421eb48f1535dc41336f";><code>ca27bd3</code></a>
    Fix Checkstyle</li>
    <li><a
    
href="https://github.com/apache/commons-codec/commit/1dfb4e5bbdc604dc72fe671fded50a5c91bc7543";><code>1dfb4e5</code></a>
    Better internal method name</li>
    <li>Additional commits viewable in <a
    
href="https://github.com/apache/commons-codec/compare/rel/commons-codec-1.18.0...rel/commons-codec-1.19.0";>compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-codec:commons-codec&package-manager=maven&previous-version=1.18.0&new-version=1.19.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    You can trigger a rebase of this PR by commenting `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    > **Note**
    > Automatic rebases have been disabled on this pull request as it has
    been open for over 30 days.
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 vector/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vector/pom.xml b/vector/pom.xml
index 52ad5105e..89e977900 100644
--- a/vector/pom.xml
+++ b/vector/pom.xml
@@ -60,7 +60,7 @@ under the License.
     <dependency>
       <groupId>commons-codec</groupId>
       <artifactId>commons-codec</artifactId>
-      <version>1.18.0</version>
+      <version>1.20.0</version>
     </dependency>
     <dependency>
       <groupId>org.apache.arrow</groupId>

Reply via email to