Skip to content

Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0#680

Merged
garydgregory merged 1 commit intomasterfrom
dependabot/maven/org.apache.commons-commons-lang3-3.18.0
Jul 9, 2025
Merged

Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0#680
garydgregory merged 1 commit intomasterfrom
dependabot/maven/org.apache.commons-commons-lang3-3.18.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 9, 2025

Bumps org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

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)

Bumps org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0.

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 9, 2025
@garydgregory garydgregory merged commit 74a0c2b into master Jul 9, 2025
15 checks passed
@garydgregory garydgregory deleted the dependabot/maven/org.apache.commons-commons-lang3-3.18.0 branch July 9, 2025 22:38
@aozmen121
Copy link

aozmen121 commented Jul 17, 2025

Hi @garydgregory, when would this fix be released? and in which version of commons-text?
1.13.2?

@garydgregory
Copy link
Member

Hello @aozmen121
This will end up in 1.14.0 which doesn't have a release scheduled ATM, users can just update theirs POMs if they want the dependency updated sooner.

@aozmen121
Copy link

Thank you @garydgregory, just to confirm if we update commons:commons-lang3 from 3.17.0 to 3.18.0 locally via gradle dependency, could that cause any incompatibility issues from commons-text lib version 1.13.1 that depends upon commons:commons-lang3 version 3.17.0?

@aozmen121
Copy link

aozmen121 commented Jul 21, 2025

@garydgregory Pls do keep this thread updated upon commons-text 1.14.0 release scheduled

@garydgregory
Copy link
Member

@aozmen121
You can subscribe to the user's mailing list for that: https://commons.apache.org/mail-lists.html

@ppkarwasz
Copy link
Contributor

Hi @aozmen121,

just to confirm if we update commons:commons-lang3 from 3.17.0 to 3.18.0 locally via gradle dependency, could that cause any incompatibility issues from commons-text lib version 1.13.1 that depends upon commons:commons-lang3 version 3.17.0?

Upgrading the dependency in your project is the best approach, in my opinion. In the Java ecosystem, unlike others with strict version constraints, the dependency version specified in a library's POM is more of a suggestion than an enforced limit. Your build tool will resolve conflicts based on dependency resolution rules, so overriding a transitive dependency is both expected and supported.

Regarding potential incompatibilities:

  • Apache Commons follows semantic versioning, meaning commons-lang3:3.18.0 is intended to be fully backward compatible with 3.17.0, which was used when commons-text:1.13.1 was released.

  • This very PR demonstrates that upgrading to 3.18.0 causes no test failures, which is a strong signal of compatibility.

  • Additionally, Dependabot assigns a compatibility score to upgrades:

    Dependabot compatibility score

    This score reflects how often the upgrade succeeds across many GitHub projects. It's worth noting that failures often stem from broken or misconfigured builds rather than actual incompatibilities in the dependency itself.

Lastly, while CVEs in dependencies are important, they’re not in themselves a sufficient reason to trigger a new Commons Text release—especially when the issue can be addressed by consumers upgrading the affected dependency directly. The upcoming commons-text 1.14.0 release is already planned, but it is not driven by this particular CVE.

github-actions bot pushed a commit to B3Partners/brmo that referenced this pull request Jul 29, 2025
Bumps
[org.apache.commons:commons-text](https://github.com/apache/commons-text)
from 1.13.1 to 1.14.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-text's
changelog</a>.</em></p>
<blockquote>
<h2>Apache Commons Text 1.14.0 Release Notes</h2>
<p>The Apache Commons Text team is pleased to announce the release of
Apache Commons Text 1.14.0.</p>
<p>Apache Commons Text is a set of utility functions and reusable
components for processing
and manipulating text in a Java environment.</p>
<p>Release 1.14.0. Requires Java 8 or above.</p>
<h2>New features</h2>
<ul>
<li>
<pre><code> Interface StringLookup now extends
UnaryOperator&lt;String&gt;. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Interface TextRandomProvider extends IntUnaryOperator.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add PMD check to default Maven goal. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean).
Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Fixed Bugs</h2>
<ul>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
StringLookupFactory. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
DefaultStringLookupsHolder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
PropertiesStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
JavaPlatformStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in
TextStringBuilder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code>
org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map
CharSequence&gt;) now throws NullPointerException instead of
java.security.InvalidParameterException. Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Changes</h2>
<ul>
<li>
<pre><code> Bump org.apache.commons:commons-parent from 81 to 85
[#668](apache/commons-text#668). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump graalvm.version from 24.2.0 to 24.2.2
[#665](apache/commons-text#665),
[#681](apache/commons-text#681). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons.bytebuddy.version from 1.17.5 to 1.17.6
([#677](apache/commons-text#677)). Thanks to
Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
[#680](apache/commons-text#680). Thanks to
Dependabot.
</code></pre>
</li>
</ul>
<p>Historical list of changes: <a
href="https://commons.apache.org/proper/commons-text/changes.html">https://commons.apache.org/proper/commons-text/changes.html</a></p>
<p>For complete information on Apache Commons Text, including
instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Text
website:</p>
<p><a
href="https://commons.apache.org/proper/commons-text">https://commons.apache.org/proper/commons-text</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/commons-text/commit/0a343ae4eec94a028d875d8c2200e7f5620d152c"><code>0a343ae</code></a>
Update the GitHub pull request template for AI</li>
<li><a
href="https://github.com/apache/commons-text/commit/2c9212adb960b4b6180438745e8fcae3eae084f4"><code>2c9212a</code></a>
Merge branch 'master' into release</li>
<li><a
href="https://github.com/apache/commons-text/commit/f7b8d467bb519fc24ff9e518af1bdfae02bafb8d"><code>f7b8d46</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/5fea6e2183e0832ea332a28228bc1fc773b4c647"><code>5fea6e2</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2f50c4f412612865494ba91cfa42008d3084022e"><code>2f50c4f</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2afc236395968c1bf262f8f3f320bbd20b58da95"><code>2afc236</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/c819ed70bae8cbfebd402d31324caa26faa6f341"><code>c819ed7</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/74e54eece9d5e77fe7a95bb8f498ce4179420995"><code>74e54ee</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/a1f3288ac72897d511b04734eb82bbae121bf0d2"><code>a1f3288</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/1d7b5caeadeeff3329cce283411876fa92315d25"><code>1d7b5ca</code></a>
Javadoc</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-text&package-manager=maven&previous-version=1.13.1&new-version=1.14.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
mmathieum pushed a commit to mtransitapps/commons that referenced this pull request Jul 30, 2025
Bumps the apache-commons group with 2 updates:
[org.apache.commons:commons-csv](https://github.com/apache/commons-csv)
and
[org.apache.commons:commons-text](https://github.com/apache/commons-text).

Updates `org.apache.commons:commons-csv` from 1.14.0 to 1.14.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apache/commons-csv/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-csv's
changelog</a>.</em></p>
<blockquote>
<h2>Apache Commons CSV 1.14.1 Release Notes</h2>
<p>The Apache Commons CSV team is pleased to announce the release of
Apache Commons CSV 1.14.1.</p>
<p>This document contains the release notes for the 1.14.1 version of
Apache Commons CSV.
Commons CSV reads and writes files in Comma Separated Value (CSV) format
variations.</p>
<p>Commons CSV requires at least Java 8.</p>
<p>The Apache Commons CSV library provides a simple interface for
reading and writing CSV files of various types.</p>
<p>This is a feature and maintenance release. Java 8 or later is
required.</p>
<p>Changes in this version include:</p>
<h2>Fixed Bugs</h2>
<ul>
<li>CSV-318: CSVPrinter.printRecord(Stream) hangs if given a parallel
stream. Thanks to Joseph Shraibman, Gary Gregory.</li>
<li>CSV-318: CSVPrinter now uses an internal lock instead of
synchronized methods. Thanks to Joseph Shraibman, Gary Gregory.</li>
<li>
<pre><code> org.apache.commons.csv.CSVPrinter.printRecords(ResultSet)
now writes one record at a time using a lock. Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Changes</h2>
<ul>
<li>
<pre><code> Bump org.apache.commons:commons-parent from 81 to 85
[#542](apache/commons-csv#542). Thanks to Gary
Gregory, Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump com.opencsv:opencsv from 5.10 to 5.11.2
[#545](apache/commons-csv#545),
[#551](apache/commons-csv#551),
[#553](apache/commons-csv#553). Thanks to Gary
Gregory, Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
[#556](apache/commons-csv#556). Thanks to Gary
Gregory, Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump commons-codec:commons-codec from 1.18.0 to 1.19.0.
Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<p>Historical list of changes: <a
href="https://commons.apache.org/proper/commons-csv/changes.html">https://commons.apache.org/proper/commons-csv/changes.html</a></p>
<p>For complete information on Apache Commons CSV, including
instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons CSV
website:</p>
<p><a
href="https://commons.apache.org/proper/commons-csv/">https://commons.apache.org/proper/commons-csv/</a></p>
<p>Download page: <a
href="https://commons.apache.org/proper/commons-csv/download_csv.cgi">https://commons.apache.org/proper/commons-csv/download_csv.cgi</a></p>
<p>Have fun!
-Apache Commons CSV team</p>
<hr />
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/commons-csv/commit/e14ef86d34211f9d1b9b6040c5f6dbafc93ba907"><code>e14ef86</code></a>
Ignore macOS file</li>
<li><a
href="https://github.com/apache/commons-csv/commit/d8724bf76a7d6abbb93aad65e316f050f86a256d"><code>d8724bf</code></a>
Prepare for the release candidate 1.14.1 RC1</li>
<li><a
href="https://github.com/apache/commons-csv/commit/b76971c25af176f901c003b25d6a5f4f6edc87ad"><code>b76971c</code></a>
Prepare for the next release candidate</li>
<li><a
href="https://github.com/apache/commons-csv/commit/b66814ef248186b7a8316b85e1208c705dba06e3"><code>b66814e</code></a>
Merge pull request <a
href="https://redirect.github.com/apache/commons-csv/issues/557">#557</a>
from apache/dependabot/github_actions/github/codeql-a...</li>
<li><a
href="https://github.com/apache/commons-csv/commit/9c95e92d6aaa4d052a139158a900395646c6652e"><code>9c95e92</code></a>
Bump github/codeql-action from 3.29.2 to 3.29.4</li>
<li><a
href="https://github.com/apache/commons-csv/commit/1fb37163f9fe59aa13c63efd53e71d7a0392be4c"><code>1fb3716</code></a>
Bump commons-codec:commons-codec from 1.18.0 to 1.19.0</li>
<li><a
href="https://github.com/apache/commons-csv/commit/7b72c509f73e05ca2bf2f0945a6a1cb03f87bd39"><code>7b72c50</code></a>
Merge some string literals</li>
<li><a
href="https://github.com/apache/commons-csv/commit/96583732b6be55d459a5b430c4a3a3bb2126db10"><code>9658373</code></a>
Update the GitHub pull request template for AI</li>
<li><a
href="https://github.com/apache/commons-csv/commit/67192a9e0af58bdf49edf4e0d29f50343da82c70"><code>67192a9</code></a>
Bump commons-io:commons-io from 2.19.0 to 2.20.0</li>
<li><a
href="https://github.com/apache/commons-csv/commit/59164c8b795ebd4cc0362c4c74d7c893c4a50303"><code>59164c8</code></a>
Bump com.opencsv:opencsv from 5.11.1 to 5.11.2 <a
href="https://redirect.github.com/apache/commons-csv/issues/553">#553</a></li>
<li>Additional commits viewable in <a
href="https://github.com/apache/commons-csv/compare/rel/commons-csv-1.14.0...rel/commons-csv-1.14.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `org.apache.commons:commons-text` from 1.13.1 to 1.14.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-text's
changelog</a>.</em></p>
<blockquote>
<h2>Apache Commons Text 1.14.0 Release Notes</h2>
<p>The Apache Commons Text team is pleased to announce the release of
Apache Commons Text 1.14.0.</p>
<p>Apache Commons Text is a set of utility functions and reusable
components for processing
and manipulating text in a Java environment.</p>
<p>Release 1.14.0. Requires Java 8 or above.</p>
<h2>New features</h2>
<ul>
<li>
<pre><code> Interface StringLookup now extends
UnaryOperator&lt;String&gt;. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Interface TextRandomProvider extends IntUnaryOperator.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add PMD check to default Maven goal. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean).
Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Fixed Bugs</h2>
<ul>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
StringLookupFactory. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
DefaultStringLookupsHolder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
PropertiesStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
JavaPlatformStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in
TextStringBuilder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code>
org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map
CharSequence&gt;) now throws NullPointerException instead of
java.security.InvalidParameterException. Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Changes</h2>
<ul>
<li>
<pre><code> Bump org.apache.commons:commons-parent from 81 to 85
[#668](apache/commons-text#668). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump graalvm.version from 24.2.0 to 24.2.2
[#665](apache/commons-text#665),
[#681](apache/commons-text#681). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons.bytebuddy.version from 1.17.5 to 1.17.6
([#677](apache/commons-text#677)). Thanks to
Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
[#680](apache/commons-text#680). Thanks to
Dependabot.
</code></pre>
</li>
</ul>
<p>Historical list of changes: <a
href="https://commons.apache.org/proper/commons-text/changes.html">https://commons.apache.org/proper/commons-text/changes.html</a></p>
<p>For complete information on Apache Commons Text, including
instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Text
website:</p>
<p><a
href="https://commons.apache.org/proper/commons-text">https://commons.apache.org/proper/commons-text</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/commons-text/commit/0a343ae4eec94a028d875d8c2200e7f5620d152c"><code>0a343ae</code></a>
Update the GitHub pull request template for AI</li>
<li><a
href="https://github.com/apache/commons-text/commit/2c9212adb960b4b6180438745e8fcae3eae084f4"><code>2c9212a</code></a>
Merge branch 'master' into release</li>
<li><a
href="https://github.com/apache/commons-text/commit/f7b8d467bb519fc24ff9e518af1bdfae02bafb8d"><code>f7b8d46</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/5fea6e2183e0832ea332a28228bc1fc773b4c647"><code>5fea6e2</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2f50c4f412612865494ba91cfa42008d3084022e"><code>2f50c4f</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2afc236395968c1bf262f8f3f320bbd20b58da95"><code>2afc236</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/c819ed70bae8cbfebd402d31324caa26faa6f341"><code>c819ed7</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/74e54eece9d5e77fe7a95bb8f498ce4179420995"><code>74e54ee</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/a1f3288ac72897d511b04734eb82bbae121bf0d2"><code>a1f3288</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/1d7b5caeadeeff3329cce283411876fa92315d25"><code>1d7b5ca</code></a>
Javadoc</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually 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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MonTransit Bot <84137772+montransit@users.noreply.github.com>
triceo pushed a commit to TimefoldAI/timefold-quickstarts that referenced this pull request Aug 4, 2025
…systems (#881)

Bumps the quickstarts group with 2 updates:
[org.junit:junit-bom](https://github.com/junit-team/junit-framework) and
[org.apache.commons:commons-text](https://github.com/apache/commons-text).

Updates `org.junit:junit-bom` from 5.13.3 to 5.13.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/junit-team/junit-framework/releases">org.junit:junit-bom's
releases</a>.</em></p>
<blockquote>
<p>JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4</p>
<p>See <a href="https://docs.junit.org/5.13.4/release-notes/">Release
Notes</a>.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/junit-team/junit-framework/commit/8a21048605e61dc388c1c83cbecf9dd5097a595d"><code>8a21048</code></a>
Release 5.13.4</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/9a3878926aef5f41012bb898993d3bf78752fbb2"><code>9a38789</code></a>
Finalize 5.13.4 release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/458325cf2467640898d1d91b37089c4ef4157e5a"><code>458325c</code></a>
Log only once per implementation type for <code>CloseableResource</code>
types</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/976a1101804c6c465adbd01db1eb8a9880ecf754"><code>976a110</code></a>
Protect against potential problems when converting file-based
selectors</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/e94f72824d7e599f910d18c293f580b68c86db15"><code>e94f728</code></a>
Allow default package for <code>PackageSource</code></li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/b60fecfd0a1a2e03a70d44b3d1a28be90f92d5b1"><code>b60fecf</code></a>
Fail on classpath resource names that are blank after removing leading
/</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/6378c886d3ffd154b18fc91258ee358ad0738850"><code>6378c88</code></a>
Remove <code>java.*</code> packages from <code>Import-Package</code>
headers in all jars (<a
href="https://redirect.github.com/junit-team/junit-framework/issues/4738">#4738</a>)</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/1a360f34b0ee37bb3bb0ae65ed7b92f0a580a973"><code>1a360f3</code></a>
Create initial 5.13.4 release notes from template</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/806fc9abec3a1e645f406402c40b47cedfa0191d"><code>806fc9a</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4689">#4689</a>
in release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/16538390da75133b814bd54451518a52659c6e20"><code>1653839</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4686">#4686</a>
in release notes</li>
<li>Additional commits viewable in <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `org.apache.commons:commons-text` from 1.13.1 to 1.14.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-text's
changelog</a>.</em></p>
<blockquote>
<h2>Apache Commons Text 1.14.0 Release Notes</h2>
<p>The Apache Commons Text team is pleased to announce the release of
Apache Commons Text 1.14.0.</p>
<p>Apache Commons Text is a set of utility functions and reusable
components for processing
and manipulating text in a Java environment.</p>
<p>Release 1.14.0. Requires Java 8 or above.</p>
<h2>New features</h2>
<ul>
<li>
<pre><code> Interface StringLookup now extends
UnaryOperator&lt;String&gt;. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Interface TextRandomProvider extends IntUnaryOperator.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add PMD check to default Maven goal. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean).
Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Fixed Bugs</h2>
<ul>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
StringLookupFactory. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
DefaultStringLookupsHolder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
PropertiesStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
JavaPlatformStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in
TextStringBuilder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code>
org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map
CharSequence&gt;) now throws NullPointerException instead of
java.security.InvalidParameterException. Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Changes</h2>
<ul>
<li>
<pre><code> Bump org.apache.commons:commons-parent from 81 to 85
[#668](https://github.com/apache/commons-text/issues/668). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump graalvm.version from 24.2.0 to 24.2.2
[#665](https://github.com/apache/commons-text/issues/665),
[#681](https://github.com/apache/commons-text/issues/681). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons.bytebuddy.version from 1.17.5 to 1.17.6
([#677](https://github.com/apache/commons-text/issues/677)). Thanks to
Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
[#680](https://github.com/apache/commons-text/issues/680). Thanks to
Dependabot.
</code></pre>
</li>
</ul>
<p>Historical list of changes: <a
href="https://commons.apache.org/proper/commons-text/changes.html">https://commons.apache.org/proper/commons-text/changes.html</a></p>
<p>For complete information on Apache Commons Text, including
instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Text
website:</p>
<p><a
href="https://commons.apache.org/proper/commons-text">https://commons.apache.org/proper/commons-text</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/commons-text/commit/0a343ae4eec94a028d875d8c2200e7f5620d152c"><code>0a343ae</code></a>
Update the GitHub pull request template for AI</li>
<li><a
href="https://github.com/apache/commons-text/commit/2c9212adb960b4b6180438745e8fcae3eae084f4"><code>2c9212a</code></a>
Merge branch 'master' into release</li>
<li><a
href="https://github.com/apache/commons-text/commit/f7b8d467bb519fc24ff9e518af1bdfae02bafb8d"><code>f7b8d46</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/5fea6e2183e0832ea332a28228bc1fc773b4c647"><code>5fea6e2</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2f50c4f412612865494ba91cfa42008d3084022e"><code>2f50c4f</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2afc236395968c1bf262f8f3f320bbd20b58da95"><code>2afc236</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/c819ed70bae8cbfebd402d31324caa26faa6f341"><code>c819ed7</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/74e54eece9d5e77fe7a95bb8f498ce4179420995"><code>74e54ee</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/a1f3288ac72897d511b04734eb82bbae121bf0d2"><code>a1f3288</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/1d7b5caeadeeff3329cce283411876fa92315d25"><code>1d7b5ca</code></a>
Javadoc</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 1 update:
[graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm).

Updates `graalvm/setup-graalvm` from 1.3.4 to 1.3.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/graalvm/setup-graalvm/releases">graalvm/setup-graalvm's
releases</a>.</em></p>
<blockquote>
<h2>v1.3.5</h2>
<h2>What's Changed</h2>
<ul>
<li>Update dependencies by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/167">graalvm/setup-graalvm#167</a></li>
<li>Revise <code>README.md</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/169">graalvm/setup-graalvm#169</a></li>
<li>Bump the npm-development group with 10 updates by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/170">graalvm/setup-graalvm#170</a></li>
<li>Bump eslint-plugin-jest from 28.12.0 to 29.0.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/171">graalvm/setup-graalvm#171</a></li>
<li>Bump form-data from 2.5.3 to 2.5.5 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/172">graalvm/setup-graalvm#172</a></li>
<li>Bump version to <code>1.3.5</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/173">graalvm/setup-graalvm#173</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5">https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7f488cf82a3629ee755e4e97342c01d6bed318fa"><code>7f488cf</code></a>
Bump version to <code>1.3.5</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/372a8049d73c3d81bc46d6a77d7c904a614aea08"><code>372a804</code></a>
Use <code>@actions/github</code> instead of
<code>@octokit/core</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/356b5a68f45f9be154dff54cdb68d98793b1ac1c"><code>356b5a6</code></a>
Avoid a warning during testing.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/6d95698f76a95e502f25cfc7d33f39e82acfd739"><code>6d95698</code></a>
Upgrade packages.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/c7293b6abda27f9b143c849d85227b0552c92493"><code>c7293b6</code></a>
Ensure tests run with token.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/a13b7392fb778d411725147b65bd4f9fef653e53"><code>a13b739</code></a>
Bump form-data from 2.5.3 to 2.5.5</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7de2d094ec3a087feec624f2049ab19a325774ce"><code>7de2d09</code></a>
Bump eslint-plugin-jest from 28.12.0 to 29.0.1</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/d7feb9d031b3da24da3d7f0a81dacdffa8b45427"><code>d7feb9d</code></a>
Bump the npm-development group with 10 updates</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/63e03405623cb67225a6bdf941a8747240e8993c"><code>63e0340</code></a>
Revise <code>README.md</code>. (<a
href="https://redirect.github.com/graalvm/setup-graalvm/issues/169">#169</a>)</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/8ea6c1f53875ac32fae8535693b9dc7c566d6c30"><code>8ea6c1f</code></a>
Update dependencies</li>
<li>See full diff in <a
href="https://github.com/graalvm/setup-graalvm/compare/e1df20a713a4cc6ab5b0eb03f0e0dcdc0199b805...7f488cf82a3629ee755e4e97342c01d6bed318fa">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 2 updates:
[org.junit:junit-bom](https://github.com/junit-team/junit-framework) and
[org.apache.commons:commons-text](https://github.com/apache/commons-text).

Updates `org.junit:junit-bom` from 5.13.3 to 5.13.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/junit-team/junit-framework/releases">org.junit:junit-bom's
releases</a>.</em></p>
<blockquote>
<p>JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4</p>
<p>See <a href="https://docs.junit.org/5.13.4/release-notes/">Release
Notes</a>.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/junit-team/junit-framework/commit/8a21048605e61dc388c1c83cbecf9dd5097a595d"><code>8a21048</code></a>
Release 5.13.4</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/9a3878926aef5f41012bb898993d3bf78752fbb2"><code>9a38789</code></a>
Finalize 5.13.4 release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/458325cf2467640898d1d91b37089c4ef4157e5a"><code>458325c</code></a>
Log only once per implementation type for <code>CloseableResource</code>
types</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/976a1101804c6c465adbd01db1eb8a9880ecf754"><code>976a110</code></a>
Protect against potential problems when converting file-based
selectors</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/e94f72824d7e599f910d18c293f580b68c86db15"><code>e94f728</code></a>
Allow default package for <code>PackageSource</code></li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/b60fecfd0a1a2e03a70d44b3d1a28be90f92d5b1"><code>b60fecf</code></a>
Fail on classpath resource names that are blank after removing leading
/</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/6378c886d3ffd154b18fc91258ee358ad0738850"><code>6378c88</code></a>
Remove <code>java.*</code> packages from <code>Import-Package</code>
headers in all jars (<a
href="https://redirect.github.com/junit-team/junit-framework/issues/4738">#4738</a>)</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/1a360f34b0ee37bb3bb0ae65ed7b92f0a580a973"><code>1a360f3</code></a>
Create initial 5.13.4 release notes from template</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/806fc9abec3a1e645f406402c40b47cedfa0191d"><code>806fc9a</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4689">#4689</a>
in release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/16538390da75133b814bd54451518a52659c6e20"><code>1653839</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4686">#4686</a>
in release notes</li>
<li>Additional commits viewable in <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `org.apache.commons:commons-text` from 1.13.1 to 1.14.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-text's
changelog</a>.</em></p>
<blockquote>
<h2>Apache Commons Text 1.14.0 Release Notes</h2>
<p>The Apache Commons Text team is pleased to announce the release of
Apache Commons Text 1.14.0.</p>
<p>Apache Commons Text is a set of utility functions and reusable
components for processing
and manipulating text in a Java environment.</p>
<p>Release 1.14.0. Requires Java 8 or above.</p>
<h2>New features</h2>
<ul>
<li>
<pre><code> Interface StringLookup now extends
UnaryOperator&lt;String&gt;. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Interface TextRandomProvider extends IntUnaryOperator.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add PMD check to default Maven goal. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean).
Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Fixed Bugs</h2>
<ul>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
StringLookupFactory. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
DefaultStringLookupsHolder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
PropertiesStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
JavaPlatformStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in
TextStringBuilder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code>
org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map
CharSequence&gt;) now throws NullPointerException instead of
java.security.InvalidParameterException. Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Changes</h2>
<ul>
<li>
<pre><code> Bump org.apache.commons:commons-parent from 81 to 85
[#668](https://github.com/apache/commons-text/issues/668). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump graalvm.version from 24.2.0 to 24.2.2
[#665](https://github.com/apache/commons-text/issues/665),
[#681](https://github.com/apache/commons-text/issues/681). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons.bytebuddy.version from 1.17.5 to 1.17.6
([#677](https://github.com/apache/commons-text/issues/677)). Thanks to
Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
[#680](https://github.com/apache/commons-text/issues/680). Thanks to
Dependabot.
</code></pre>
</li>
</ul>
<p>Historical list of changes: <a
href="https://commons.apache.org/proper/commons-text/changes.html">https://commons.apache.org/proper/commons-text/changes.html</a></p>
<p>For complete information on Apache Commons Text, including
instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Text
website:</p>
<p><a
href="https://commons.apache.org/proper/commons-text">https://commons.apache.org/proper/commons-text</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/commons-text/commit/0a343ae4eec94a028d875d8c2200e7f5620d152c"><code>0a343ae</code></a>
Update the GitHub pull request template for AI</li>
<li><a
href="https://github.com/apache/commons-text/commit/2c9212adb960b4b6180438745e8fcae3eae084f4"><code>2c9212a</code></a>
Merge branch 'master' into release</li>
<li><a
href="https://github.com/apache/commons-text/commit/f7b8d467bb519fc24ff9e518af1bdfae02bafb8d"><code>f7b8d46</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/5fea6e2183e0832ea332a28228bc1fc773b4c647"><code>5fea6e2</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2f50c4f412612865494ba91cfa42008d3084022e"><code>2f50c4f</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2afc236395968c1bf262f8f3f320bbd20b58da95"><code>2afc236</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/c819ed70bae8cbfebd402d31324caa26faa6f341"><code>c819ed7</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/74e54eece9d5e77fe7a95bb8f498ce4179420995"><code>74e54ee</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/a1f3288ac72897d511b04734eb82bbae121bf0d2"><code>a1f3288</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/1d7b5caeadeeff3329cce283411876fa92315d25"><code>1d7b5ca</code></a>
Javadoc</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 1 update:
[graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm).

Updates `graalvm/setup-graalvm` from 1.3.4 to 1.3.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/graalvm/setup-graalvm/releases">graalvm/setup-graalvm's
releases</a>.</em></p>
<blockquote>
<h2>v1.3.5</h2>
<h2>What's Changed</h2>
<ul>
<li>Update dependencies by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/167">graalvm/setup-graalvm#167</a></li>
<li>Revise <code>README.md</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/169">graalvm/setup-graalvm#169</a></li>
<li>Bump the npm-development group with 10 updates by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/170">graalvm/setup-graalvm#170</a></li>
<li>Bump eslint-plugin-jest from 28.12.0 to 29.0.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/171">graalvm/setup-graalvm#171</a></li>
<li>Bump form-data from 2.5.3 to 2.5.5 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/172">graalvm/setup-graalvm#172</a></li>
<li>Bump version to <code>1.3.5</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/173">graalvm/setup-graalvm#173</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5">https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7f488cf82a3629ee755e4e97342c01d6bed318fa"><code>7f488cf</code></a>
Bump version to <code>1.3.5</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/372a8049d73c3d81bc46d6a77d7c904a614aea08"><code>372a804</code></a>
Use <code>@actions/github</code> instead of
<code>@octokit/core</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/356b5a68f45f9be154dff54cdb68d98793b1ac1c"><code>356b5a6</code></a>
Avoid a warning during testing.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/6d95698f76a95e502f25cfc7d33f39e82acfd739"><code>6d95698</code></a>
Upgrade packages.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/c7293b6abda27f9b143c849d85227b0552c92493"><code>c7293b6</code></a>
Ensure tests run with token.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/a13b7392fb778d411725147b65bd4f9fef653e53"><code>a13b739</code></a>
Bump form-data from 2.5.3 to 2.5.5</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7de2d094ec3a087feec624f2049ab19a325774ce"><code>7de2d09</code></a>
Bump eslint-plugin-jest from 28.12.0 to 29.0.1</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/d7feb9d031b3da24da3d7f0a81dacdffa8b45427"><code>d7feb9d</code></a>
Bump the npm-development group with 10 updates</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/63e03405623cb67225a6bdf941a8747240e8993c"><code>63e0340</code></a>
Revise <code>README.md</code>. (<a
href="https://redirect.github.com/graalvm/setup-graalvm/issues/169">#169</a>)</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/8ea6c1f53875ac32fae8535693b9dc7c566d6c30"><code>8ea6c1f</code></a>
Update dependencies</li>
<li>See full diff in <a
href="https://github.com/graalvm/setup-graalvm/compare/e1df20a713a4cc6ab5b0eb03f0e0dcdc0199b805...7f488cf82a3629ee755e4e97342c01d6bed318fa">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 2 updates:
[org.junit:junit-bom](https://github.com/junit-team/junit-framework) and
[org.apache.commons:commons-text](https://github.com/apache/commons-text).

Updates `org.junit:junit-bom` from 5.13.3 to 5.13.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/junit-team/junit-framework/releases">org.junit:junit-bom's
releases</a>.</em></p>
<blockquote>
<p>JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4</p>
<p>See <a href="https://docs.junit.org/5.13.4/release-notes/">Release
Notes</a>.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/junit-team/junit-framework/commit/8a21048605e61dc388c1c83cbecf9dd5097a595d"><code>8a21048</code></a>
Release 5.13.4</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/9a3878926aef5f41012bb898993d3bf78752fbb2"><code>9a38789</code></a>
Finalize 5.13.4 release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/458325cf2467640898d1d91b37089c4ef4157e5a"><code>458325c</code></a>
Log only once per implementation type for <code>CloseableResource</code>
types</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/976a1101804c6c465adbd01db1eb8a9880ecf754"><code>976a110</code></a>
Protect against potential problems when converting file-based
selectors</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/e94f72824d7e599f910d18c293f580b68c86db15"><code>e94f728</code></a>
Allow default package for <code>PackageSource</code></li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/b60fecfd0a1a2e03a70d44b3d1a28be90f92d5b1"><code>b60fecf</code></a>
Fail on classpath resource names that are blank after removing leading
/</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/6378c886d3ffd154b18fc91258ee358ad0738850"><code>6378c88</code></a>
Remove <code>java.*</code> packages from <code>Import-Package</code>
headers in all jars (<a
href="https://redirect.github.com/junit-team/junit-framework/issues/4738">#4738</a>)</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/1a360f34b0ee37bb3bb0ae65ed7b92f0a580a973"><code>1a360f3</code></a>
Create initial 5.13.4 release notes from template</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/806fc9abec3a1e645f406402c40b47cedfa0191d"><code>806fc9a</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4689">#4689</a>
in release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/16538390da75133b814bd54451518a52659c6e20"><code>1653839</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4686">#4686</a>
in release notes</li>
<li>Additional commits viewable in <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `org.apache.commons:commons-text` from 1.13.1 to 1.14.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-text's
changelog</a>.</em></p>
<blockquote>
<h2>Apache Commons Text 1.14.0 Release Notes</h2>
<p>The Apache Commons Text team is pleased to announce the release of
Apache Commons Text 1.14.0.</p>
<p>Apache Commons Text is a set of utility functions and reusable
components for processing
and manipulating text in a Java environment.</p>
<p>Release 1.14.0. Requires Java 8 or above.</p>
<h2>New features</h2>
<ul>
<li>
<pre><code> Interface StringLookup now extends
UnaryOperator&lt;String&gt;. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Interface TextRandomProvider extends IntUnaryOperator.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add PMD check to default Maven goal. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean).
Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Fixed Bugs</h2>
<ul>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
StringLookupFactory. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
DefaultStringLookupsHolder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
PropertiesStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
JavaPlatformStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in
TextStringBuilder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code>
org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map
CharSequence&gt;) now throws NullPointerException instead of
java.security.InvalidParameterException. Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Changes</h2>
<ul>
<li>
<pre><code> Bump org.apache.commons:commons-parent from 81 to 85
[#668](https://github.com/apache/commons-text/issues/668). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump graalvm.version from 24.2.0 to 24.2.2
[#665](https://github.com/apache/commons-text/issues/665),
[#681](https://github.com/apache/commons-text/issues/681). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons.bytebuddy.version from 1.17.5 to 1.17.6
([#677](https://github.com/apache/commons-text/issues/677)). Thanks to
Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
[#680](https://github.com/apache/commons-text/issues/680). Thanks to
Dependabot.
</code></pre>
</li>
</ul>
<p>Historical list of changes: <a
href="https://commons.apache.org/proper/commons-text/changes.html">https://commons.apache.org/proper/commons-text/changes.html</a></p>
<p>For complete information on Apache Commons Text, including
instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Text
website:</p>
<p><a
href="https://commons.apache.org/proper/commons-text">https://commons.apache.org/proper/commons-text</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/commons-text/commit/0a343ae4eec94a028d875d8c2200e7f5620d152c"><code>0a343ae</code></a>
Update the GitHub pull request template for AI</li>
<li><a
href="https://github.com/apache/commons-text/commit/2c9212adb960b4b6180438745e8fcae3eae084f4"><code>2c9212a</code></a>
Merge branch 'master' into release</li>
<li><a
href="https://github.com/apache/commons-text/commit/f7b8d467bb519fc24ff9e518af1bdfae02bafb8d"><code>f7b8d46</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/5fea6e2183e0832ea332a28228bc1fc773b4c647"><code>5fea6e2</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2f50c4f412612865494ba91cfa42008d3084022e"><code>2f50c4f</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2afc236395968c1bf262f8f3f320bbd20b58da95"><code>2afc236</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/c819ed70bae8cbfebd402d31324caa26faa6f341"><code>c819ed7</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/74e54eece9d5e77fe7a95bb8f498ce4179420995"><code>74e54ee</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/a1f3288ac72897d511b04734eb82bbae121bf0d2"><code>a1f3288</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/1d7b5caeadeeff3329cce283411876fa92315d25"><code>1d7b5ca</code></a>
Javadoc</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 1 update:
[graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm).

Updates `graalvm/setup-graalvm` from 1.3.4 to 1.3.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/graalvm/setup-graalvm/releases">graalvm/setup-graalvm's
releases</a>.</em></p>
<blockquote>
<h2>v1.3.5</h2>
<h2>What's Changed</h2>
<ul>
<li>Update dependencies by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/167">graalvm/setup-graalvm#167</a></li>
<li>Revise <code>README.md</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/169">graalvm/setup-graalvm#169</a></li>
<li>Bump the npm-development group with 10 updates by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/170">graalvm/setup-graalvm#170</a></li>
<li>Bump eslint-plugin-jest from 28.12.0 to 29.0.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/171">graalvm/setup-graalvm#171</a></li>
<li>Bump form-data from 2.5.3 to 2.5.5 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/172">graalvm/setup-graalvm#172</a></li>
<li>Bump version to <code>1.3.5</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/173">graalvm/setup-graalvm#173</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5">https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7f488cf82a3629ee755e4e97342c01d6bed318fa"><code>7f488cf</code></a>
Bump version to <code>1.3.5</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/372a8049d73c3d81bc46d6a77d7c904a614aea08"><code>372a804</code></a>
Use <code>@actions/github</code> instead of
<code>@octokit/core</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/356b5a68f45f9be154dff54cdb68d98793b1ac1c"><code>356b5a6</code></a>
Avoid a warning during testing.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/6d95698f76a95e502f25cfc7d33f39e82acfd739"><code>6d95698</code></a>
Upgrade packages.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/c7293b6abda27f9b143c849d85227b0552c92493"><code>c7293b6</code></a>
Ensure tests run with token.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/a13b7392fb778d411725147b65bd4f9fef653e53"><code>a13b739</code></a>
Bump form-data from 2.5.3 to 2.5.5</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7de2d094ec3a087feec624f2049ab19a325774ce"><code>7de2d09</code></a>
Bump eslint-plugin-jest from 28.12.0 to 29.0.1</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/d7feb9d031b3da24da3d7f0a81dacdffa8b45427"><code>d7feb9d</code></a>
Bump the npm-development group with 10 updates</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/63e03405623cb67225a6bdf941a8747240e8993c"><code>63e0340</code></a>
Revise <code>README.md</code>. (<a
href="https://redirect.github.com/graalvm/setup-graalvm/issues/169">#169</a>)</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/8ea6c1f53875ac32fae8535693b9dc7c566d6c30"><code>8ea6c1f</code></a>
Update dependencies</li>
<li>See full diff in <a
href="https://github.com/graalvm/setup-graalvm/compare/e1df20a713a4cc6ab5b0eb03f0e0dcdc0199b805...7f488cf82a3629ee755e4e97342c01d6bed318fa">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 2 updates:
[org.junit:junit-bom](https://github.com/junit-team/junit-framework) and
[org.apache.commons:commons-text](https://github.com/apache/commons-text).

Updates `org.junit:junit-bom` from 5.13.3 to 5.13.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/junit-team/junit-framework/releases">org.junit:junit-bom's
releases</a>.</em></p>
<blockquote>
<p>JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4</p>
<p>See <a href="https://docs.junit.org/5.13.4/release-notes/">Release
Notes</a>.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/junit-team/junit-framework/commit/8a21048605e61dc388c1c83cbecf9dd5097a595d"><code>8a21048</code></a>
Release 5.13.4</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/9a3878926aef5f41012bb898993d3bf78752fbb2"><code>9a38789</code></a>
Finalize 5.13.4 release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/458325cf2467640898d1d91b37089c4ef4157e5a"><code>458325c</code></a>
Log only once per implementation type for <code>CloseableResource</code>
types</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/976a1101804c6c465adbd01db1eb8a9880ecf754"><code>976a110</code></a>
Protect against potential problems when converting file-based
selectors</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/e94f72824d7e599f910d18c293f580b68c86db15"><code>e94f728</code></a>
Allow default package for <code>PackageSource</code></li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/b60fecfd0a1a2e03a70d44b3d1a28be90f92d5b1"><code>b60fecf</code></a>
Fail on classpath resource names that are blank after removing leading
/</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/6378c886d3ffd154b18fc91258ee358ad0738850"><code>6378c88</code></a>
Remove <code>java.*</code> packages from <code>Import-Package</code>
headers in all jars (<a
href="https://redirect.github.com/junit-team/junit-framework/issues/4738">#4738</a>)</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/1a360f34b0ee37bb3bb0ae65ed7b92f0a580a973"><code>1a360f3</code></a>
Create initial 5.13.4 release notes from template</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/806fc9abec3a1e645f406402c40b47cedfa0191d"><code>806fc9a</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4689">#4689</a>
in release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/16538390da75133b814bd54451518a52659c6e20"><code>1653839</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4686">#4686</a>
in release notes</li>
<li>Additional commits viewable in <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `org.apache.commons:commons-text` from 1.13.1 to 1.14.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-text's
changelog</a>.</em></p>
<blockquote>
<h2>Apache Commons Text 1.14.0 Release Notes</h2>
<p>The Apache Commons Text team is pleased to announce the release of
Apache Commons Text 1.14.0.</p>
<p>Apache Commons Text is a set of utility functions and reusable
components for processing
and manipulating text in a Java environment.</p>
<p>Release 1.14.0. Requires Java 8 or above.</p>
<h2>New features</h2>
<ul>
<li>
<pre><code> Interface StringLookup now extends
UnaryOperator&lt;String&gt;. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Interface TextRandomProvider extends IntUnaryOperator.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add PMD check to default Maven goal. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean).
Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Fixed Bugs</h2>
<ul>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
StringLookupFactory. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
DefaultStringLookupsHolder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
PropertiesStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
JavaPlatformStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in
TextStringBuilder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code>
org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map
CharSequence&gt;) now throws NullPointerException instead of
java.security.InvalidParameterException. Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Changes</h2>
<ul>
<li>
<pre><code> Bump org.apache.commons:commons-parent from 81 to 85
[#668](https://github.com/apache/commons-text/issues/668). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump graalvm.version from 24.2.0 to 24.2.2
[#665](https://github.com/apache/commons-text/issues/665),
[#681](https://github.com/apache/commons-text/issues/681). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons.bytebuddy.version from 1.17.5 to 1.17.6
([#677](https://github.com/apache/commons-text/issues/677)). Thanks to
Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
[#680](https://github.com/apache/commons-text/issues/680). Thanks to
Dependabot.
</code></pre>
</li>
</ul>
<p>Historical list of changes: <a
href="https://commons.apache.org/proper/commons-text/changes.html">https://commons.apache.org/proper/commons-text/changes.html</a></p>
<p>For complete information on Apache Commons Text, including
instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Text
website:</p>
<p><a
href="https://commons.apache.org/proper/commons-text">https://commons.apache.org/proper/commons-text</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/commons-text/commit/0a343ae4eec94a028d875d8c2200e7f5620d152c"><code>0a343ae</code></a>
Update the GitHub pull request template for AI</li>
<li><a
href="https://github.com/apache/commons-text/commit/2c9212adb960b4b6180438745e8fcae3eae084f4"><code>2c9212a</code></a>
Merge branch 'master' into release</li>
<li><a
href="https://github.com/apache/commons-text/commit/f7b8d467bb519fc24ff9e518af1bdfae02bafb8d"><code>f7b8d46</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/5fea6e2183e0832ea332a28228bc1fc773b4c647"><code>5fea6e2</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2f50c4f412612865494ba91cfa42008d3084022e"><code>2f50c4f</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2afc236395968c1bf262f8f3f320bbd20b58da95"><code>2afc236</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/c819ed70bae8cbfebd402d31324caa26faa6f341"><code>c819ed7</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/74e54eece9d5e77fe7a95bb8f498ce4179420995"><code>74e54ee</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/a1f3288ac72897d511b04734eb82bbae121bf0d2"><code>a1f3288</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/1d7b5caeadeeff3329cce283411876fa92315d25"><code>1d7b5ca</code></a>
Javadoc</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 1 update:
[graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm).

Updates `graalvm/setup-graalvm` from 1.3.4 to 1.3.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/graalvm/setup-graalvm/releases">graalvm/setup-graalvm's
releases</a>.</em></p>
<blockquote>
<h2>v1.3.5</h2>
<h2>What's Changed</h2>
<ul>
<li>Update dependencies by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/167">graalvm/setup-graalvm#167</a></li>
<li>Revise <code>README.md</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/169">graalvm/setup-graalvm#169</a></li>
<li>Bump the npm-development group with 10 updates by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/170">graalvm/setup-graalvm#170</a></li>
<li>Bump eslint-plugin-jest from 28.12.0 to 29.0.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/171">graalvm/setup-graalvm#171</a></li>
<li>Bump form-data from 2.5.3 to 2.5.5 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/172">graalvm/setup-graalvm#172</a></li>
<li>Bump version to <code>1.3.5</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/173">graalvm/setup-graalvm#173</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5">https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7f488cf82a3629ee755e4e97342c01d6bed318fa"><code>7f488cf</code></a>
Bump version to <code>1.3.5</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/372a8049d73c3d81bc46d6a77d7c904a614aea08"><code>372a804</code></a>
Use <code>@actions/github</code> instead of
<code>@octokit/core</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/356b5a68f45f9be154dff54cdb68d98793b1ac1c"><code>356b5a6</code></a>
Avoid a warning during testing.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/6d95698f76a95e502f25cfc7d33f39e82acfd739"><code>6d95698</code></a>
Upgrade packages.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/c7293b6abda27f9b143c849d85227b0552c92493"><code>c7293b6</code></a>
Ensure tests run with token.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/a13b7392fb778d411725147b65bd4f9fef653e53"><code>a13b739</code></a>
Bump form-data from 2.5.3 to 2.5.5</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7de2d094ec3a087feec624f2049ab19a325774ce"><code>7de2d09</code></a>
Bump eslint-plugin-jest from 28.12.0 to 29.0.1</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/d7feb9d031b3da24da3d7f0a81dacdffa8b45427"><code>d7feb9d</code></a>
Bump the npm-development group with 10 updates</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/63e03405623cb67225a6bdf941a8747240e8993c"><code>63e0340</code></a>
Revise <code>README.md</code>. (<a
href="https://redirect.github.com/graalvm/setup-graalvm/issues/169">#169</a>)</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/8ea6c1f53875ac32fae8535693b9dc7c566d6c30"><code>8ea6c1f</code></a>
Update dependencies</li>
<li>See full diff in <a
href="https://github.com/graalvm/setup-graalvm/compare/e1df20a713a4cc6ab5b0eb03f0e0dcdc0199b805...7f488cf82a3629ee755e4e97342c01d6bed318fa">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 2 updates:
[org.junit:junit-bom](https://github.com/junit-team/junit-framework) and
[org.apache.commons:commons-text](https://github.com/apache/commons-text).

Updates `org.junit:junit-bom` from 5.13.3 to 5.13.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/junit-team/junit-framework/releases">org.junit:junit-bom's
releases</a>.</em></p>
<blockquote>
<p>JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4</p>
<p>See <a href="https://docs.junit.org/5.13.4/release-notes/">Release
Notes</a>.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/junit-team/junit-framework/commit/8a21048605e61dc388c1c83cbecf9dd5097a595d"><code>8a21048</code></a>
Release 5.13.4</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/9a3878926aef5f41012bb898993d3bf78752fbb2"><code>9a38789</code></a>
Finalize 5.13.4 release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/458325cf2467640898d1d91b37089c4ef4157e5a"><code>458325c</code></a>
Log only once per implementation type for <code>CloseableResource</code>
types</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/976a1101804c6c465adbd01db1eb8a9880ecf754"><code>976a110</code></a>
Protect against potential problems when converting file-based
selectors</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/e94f72824d7e599f910d18c293f580b68c86db15"><code>e94f728</code></a>
Allow default package for <code>PackageSource</code></li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/b60fecfd0a1a2e03a70d44b3d1a28be90f92d5b1"><code>b60fecf</code></a>
Fail on classpath resource names that are blank after removing leading
/</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/6378c886d3ffd154b18fc91258ee358ad0738850"><code>6378c88</code></a>
Remove <code>java.*</code> packages from <code>Import-Package</code>
headers in all jars (<a
href="https://redirect.github.com/junit-team/junit-framework/issues/4738">#4738</a>)</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/1a360f34b0ee37bb3bb0ae65ed7b92f0a580a973"><code>1a360f3</code></a>
Create initial 5.13.4 release notes from template</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/806fc9abec3a1e645f406402c40b47cedfa0191d"><code>806fc9a</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4689">#4689</a>
in release notes</li>
<li><a
href="https://github.com/junit-team/junit-framework/commit/16538390da75133b814bd54451518a52659c6e20"><code>1653839</code></a>
Document <a
href="https://redirect.github.com/junit-team/junit-framework/issues/4686">#4686</a>
in release notes</li>
<li>Additional commits viewable in <a
href="https://github.com/junit-team/junit-framework/compare/r5.13.3...r5.13.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `org.apache.commons:commons-text` from 1.13.1 to 1.14.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-text's
changelog</a>.</em></p>
<blockquote>
<h2>Apache Commons Text 1.14.0 Release Notes</h2>
<p>The Apache Commons Text team is pleased to announce the release of
Apache Commons Text 1.14.0.</p>
<p>Apache Commons Text is a set of utility functions and reusable
components for processing
and manipulating text in a Java environment.</p>
<p>Release 1.14.0. Requires Java 8 or above.</p>
<h2>New features</h2>
<ul>
<li>
<pre><code> Interface StringLookup now extends
UnaryOperator&lt;String&gt;. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Interface TextRandomProvider extends IntUnaryOperator.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add PMD check to default Maven goal. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Add
org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean).
Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Fixed Bugs</h2>
<ul>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
StringLookupFactory. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
DefaultStringLookupsHolder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
PropertiesStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in
JavaPlatformStringLookup. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in
TextStringBuilder. Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder.
Thanks to Gary Gregory.
</code></pre>
</li>
<li>
<pre><code>
org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map
CharSequence&gt;) now throws NullPointerException instead of
java.security.InvalidParameterException. Thanks to Gary Gregory.
</code></pre>
</li>
</ul>
<h2>Changes</h2>
<ul>
<li>
<pre><code> Bump org.apache.commons:commons-parent from 81 to 85
[#668](https://github.com/apache/commons-text/issues/668). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to
Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump graalvm.version from 24.2.0 to 24.2.2
[#665](https://github.com/apache/commons-text/issues/665),
[#681](https://github.com/apache/commons-text/issues/681). Thanks to
Dependabot, Gary Gregory.
</code></pre>
</li>
<li>
<pre><code> Bump commons.bytebuddy.version from 1.17.5 to 1.17.6
([#677](https://github.com/apache/commons-text/issues/677)). Thanks to
Dependabot.
</code></pre>
</li>
<li>
<pre><code> Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0
[#680](https://github.com/apache/commons-text/issues/680). Thanks to
Dependabot.
</code></pre>
</li>
</ul>
<p>Historical list of changes: <a
href="https://commons.apache.org/proper/commons-text/changes.html">https://commons.apache.org/proper/commons-text/changes.html</a></p>
<p>For complete information on Apache Commons Text, including
instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Text
website:</p>
<p><a
href="https://commons.apache.org/proper/commons-text">https://commons.apache.org/proper/commons-text</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/apache/commons-text/commit/0a343ae4eec94a028d875d8c2200e7f5620d152c"><code>0a343ae</code></a>
Update the GitHub pull request template for AI</li>
<li><a
href="https://github.com/apache/commons-text/commit/2c9212adb960b4b6180438745e8fcae3eae084f4"><code>2c9212a</code></a>
Merge branch 'master' into release</li>
<li><a
href="https://github.com/apache/commons-text/commit/f7b8d467bb519fc24ff9e518af1bdfae02bafb8d"><code>f7b8d46</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/5fea6e2183e0832ea332a28228bc1fc773b4c647"><code>5fea6e2</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2f50c4f412612865494ba91cfa42008d3084022e"><code>2f50c4f</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/2afc236395968c1bf262f8f3f320bbd20b58da95"><code>2afc236</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/c819ed70bae8cbfebd402d31324caa26faa6f341"><code>c819ed7</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/74e54eece9d5e77fe7a95bb8f498ce4179420995"><code>74e54ee</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/a1f3288ac72897d511b04734eb82bbae121bf0d2"><code>a1f3288</code></a>
Javadoc</li>
<li><a
href="https://github.com/apache/commons-text/commit/1d7b5caeadeeff3329cce283411876fa92315d25"><code>1d7b5ca</code></a>
Javadoc</li>
<li>Additional commits viewable in <a
href="https://github.com/apache/commons-text/compare/rel/commons-text-1.13.1...rel/commons-text-1.14.0">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 1 update:
[graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm).

Updates `graalvm/setup-graalvm` from 1.3.4 to 1.3.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/graalvm/setup-graalvm/releases">graalvm/setup-graalvm's
releases</a>.</em></p>
<blockquote>
<h2>v1.3.5</h2>
<h2>What's Changed</h2>
<ul>
<li>Update dependencies by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/167">graalvm/setup-graalvm#167</a></li>
<li>Revise <code>README.md</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/169">graalvm/setup-graalvm#169</a></li>
<li>Bump the npm-development group with 10 updates by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/170">graalvm/setup-graalvm#170</a></li>
<li>Bump eslint-plugin-jest from 28.12.0 to 29.0.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/171">graalvm/setup-graalvm#171</a></li>
<li>Bump form-data from 2.5.3 to 2.5.5 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/172">graalvm/setup-graalvm#172</a></li>
<li>Bump version to <code>1.3.5</code>. by <a
href="https://github.com/fniephaus"><code>@​fniephaus</code></a> in <a
href="https://redirect.github.com/graalvm/setup-graalvm/pull/173">graalvm/setup-graalvm#173</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5">https://github.com/graalvm/setup-graalvm/compare/v1.3.4...v1.3.5</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7f488cf82a3629ee755e4e97342c01d6bed318fa"><code>7f488cf</code></a>
Bump version to <code>1.3.5</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/372a8049d73c3d81bc46d6a77d7c904a614aea08"><code>372a804</code></a>
Use <code>@actions/github</code> instead of
<code>@octokit/core</code>.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/356b5a68f45f9be154dff54cdb68d98793b1ac1c"><code>356b5a6</code></a>
Avoid a warning during testing.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/6d95698f76a95e502f25cfc7d33f39e82acfd739"><code>6d95698</code></a>
Upgrade packages.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/c7293b6abda27f9b143c849d85227b0552c92493"><code>c7293b6</code></a>
Ensure tests run with token.</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/a13b7392fb778d411725147b65bd4f9fef653e53"><code>a13b739</code></a>
Bump form-data from 2.5.3 to 2.5.5</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/7de2d094ec3a087feec624f2049ab19a325774ce"><code>7de2d09</code></a>
Bump eslint-plugin-jest from 28.12.0 to 29.0.1</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/d7feb9d031b3da24da3d7f0a81dacdffa8b45427"><code>d7feb9d</code></a>
Bump the npm-development group with 10 updates</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/63e03405623cb67225a6bdf941a8747240e8993c"><code>63e0340</code></a>
Revise <code>README.md</code>. (<a
href="https://redirect.github.com/graalvm/setup-graalvm/issues/169">#169</a>)</li>
<li><a
href="https://github.com/graalvm/setup-graalvm/commit/8ea6c1f53875ac32fae8535693b9dc7c566d6c30"><code>8ea6c1f</code></a>
Update dependencies</li>
<li>See full diff in <a
href="https://github.com/graalvm/setup-graalvm/compare/e1df20a713a4cc6ab5b0eb03f0e0dcdc0199b805...7f488cf82a3629ee755e4e97342c01d6bed318fa">compare
view</a></li>
</ul>
</details>
<br />

Bumps the quickstarts group with 2 updates:
[org.junit:junit-bom](https://github.com/junit-team/junit-framework) and
[org.apache.commons:commons-text](https://github.com/apache/commons-text).

Updates `org.junit:junit-bom` from 5.13.3 to 5.13.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a hr...

_Description has been truncated_

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants