dependabot[bot] opened a new pull request, #408:
URL: https://github.com/apache/opennlp-sandbox/pull/408

   Bumps [cc.mallet:mallet](https://github.com/mimno/Mallet) from 2.0.8 to 
2.1.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/mimno/Mallet/releases";>cc.mallet:mallet's 
releases</a>.</em></p>
   <blockquote>
   <h2>Release 2.1.0 - Java 17, reduced dependencies</h2>
   <h2>What's New</h2>
   <p>This is the first stable release since 2.0.8 (2016), incorporating years 
of improvements and modernization.</p>
   <h3>Highlights</h3>
   <ul>
   <li><strong>Java 17 required</strong> - Updated from Java 8 to Java 17</li>
   <li><strong>Reduced dependencies</strong> - Streamlined external library 
requirements</li>
   <li><strong>Maven structure</strong> - Standard Maven project layout</li>
   <li><strong>JShell support</strong> - Replaced BeanShell with JShell for 
scripting</li>
   </ul>
   <h3>Installation</h3>
   <p><strong>Maven:</strong></p>
   <pre lang="xml"><code>&lt;dependency&gt;
     &lt;groupId&gt;cc.mallet&lt;/groupId&gt;
     &lt;artifactId&gt;mallet&lt;/artifactId&gt;
     &lt;version&gt;2.1.0&lt;/version&gt;
   &lt;/dependency&gt;
   </code></pre>
   <p><strong>Gradle:</strong></p>
   <pre lang="groovy"><code>implementation 'cc.mallet:mallet:2.1.0'
   </code></pre>
   <p>See the full changelog: <a 
href="https://github.com/mimno/Mallet/compare/v2.0.8...v2.1.0";>https://github.com/mimno/Mallet/compare/v2.0.8...v2.1.0</a></p>
   <h2>2.1 alpha</h2>
   <p>This is a serialization-breaking release due to the switch to HPPC, which 
affects feature alphabets.</p>
   <h3>Added</h3>
   <ul>
   <li>Nonnegative Matrix Factorization</li>
   <li>Word embeddings (word2vec clone)</li>
   <li>PagedInstanceList supports iteration correctly</li>
   <li>lebiathan added stratified sampling of InstanceList</li>
   <li>This file!</li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>All merging and propagation of sampling statistics for topic modeling is 
now multi-threaded (if num-threads is more than 1), leading to a 5-10% speed 
boost.</li>
   <li>The primitive collections library (for example mapping String to int) 
has been changed from GNU trove to Carrotlabs HPPC. This change removes all GNU 
dependencies.</li>
   <li>The license has been changed from CPL to Apache.</li>
   <li>Use of VMID for unique identifier for serialized objects. (Breaks 
serialization!)</li>
   <li>Many small fixes suggested by ErrorProne.</li>
   <li>Unneeded imports removed.</li>
   </ul>
   <h3>Removed</h3>
   <ul>
   <li>The Matrix2 class has been removed.</li>
   <li>GRMM has been moved to a separate package.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/mimno/Mallet/blob/master/CHANGELOG.md";>cc.mallet:mallet's
 changelog</a>.</em></p>
   <blockquote>
   <h1>Changelog</h1>
   <h2>[Unreleased]</h2>
   <p>This is a serialization-breaking release due to the switch to HPPC, which 
affects feature alphabets.</p>
   <h3>Added</h3>
   <ul>
   <li>Nonnegative Matrix Factorization</li>
   <li>Word embeddings (word2vec clone)</li>
   <li>PagedInstanceList supports iteration correctly</li>
   <li>lebiathan added stratified sampling of InstanceList</li>
   <li>This file!</li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>All merging and propagation of sampling statistics for topic modeling is 
now multi-threaded (if num-threads is more than 1), leading to a 5-10% speed 
boost.</li>
   <li>The primitive collections library (for example mapping String to int) 
has been changed from GNU trove to Carrotlabs HPPC. This change removes all GNU 
dependencies.</li>
   <li>The license has been changed from CPL to Apache.</li>
   <li>Use of VMID for unique identifier for serialized objects. (Breaks 
serialization!)</li>
   <li>Many small fixes suggested by ErrorProne.</li>
   <li>Unneeded imports removed.</li>
   </ul>
   <h3>Removed</h3>
   <ul>
   <li>The Matrix2 class has been removed.</li>
   <li>GRMM has been moved to a separate package.</li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>Te Rutherford fixed a bug where non-String instance IDs were being cast 
as Strings.</li>
   <li>The import functions (Csv2Vectors, Text2Vectors) have a case-sensitive 
flag, but this was not being passed to the stopword remover.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/mimno/Mallet/commit/eab73a388dd6163e7f854a1137715741509f49e4";><code>eab73a3</code></a>
 Release version 2.1.0 to Maven Central</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/c935d0cacca3331fb72a5dc8945e186f3e61e072";><code>c935d0c</code></a>
 Improve topic modeling efficiency and code quality</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/fa545ca5f25e7971c7054913a120827a26121afa";><code>fa545ca</code></a>
 Remove ReadWriteLock synchronization from Alphabet class</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/d69b3bf4c7f46b59562b841c0b43c71135b858da";><code>d69b3bf</code></a>
 Only deploy to GitHub Packages on release events</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/245bd178d703362844c250de1e612f76f655d613";><code>245bd17</code></a>
 Make CRF tests more robust by removing exact value assertions</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/820eb66be3fccef044df424ccbfb1ba27d339a0c";><code>820eb66</code></a>
 Update GitHub Actions to v4</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/d84659904f82a2f53ff009368acdee697263da77";><code>d846599</code></a>
 Update bin/mallet script to work with Maven build</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/2d9095d9885fb302937d80c4a966badd3a4b2a21";><code>2d9095d</code></a>
 Merge pull request <a 
href="https://redirect.github.com/mimno/Mallet/issues/214";>#214</a> from 
mimno/raghu298-feature/replace-bsh-with-jshell</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/309882687b7513cbb726420df847b2897c07174a";><code>3098826</code></a>
 Migrate all tests from JUnit 3 to JUnit 4 and add documentation</li>
   <li><a 
href="https://github.com/mimno/Mallet/commit/93a1092f5cd9fae53d370465a3894f0f1681581a";><code>93a1092</code></a>
 Modernize project to standard Maven directory structure</li>
   <li>Additional commits viewable in <a 
href="https://github.com/mimno/Mallet/compare/v2.0.8...v2.1.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cc.mallet:mallet&package-manager=maven&previous-version=2.0.8&new-version=2.1.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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to