dependabot[bot] opened a new pull request, #44: URL: https://github.com/apache/geronimo-batchee/pull/44
Bumps `jung.version` from 2.0.1 to 2.1.1. Updates `net.sf.jung:jung-graph-impl` from 2.0.1 to 2.1.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jrtom/jung/releases">net.sf.jung:jung-graph-impl's releases</a>.</em></p> <blockquote> <h2>Release 2.1.1</h2> <p>This is primarily a bugfix release based on v2.1; with one minor exception there are no new features here.</p> <p>Bug fixes:</p> <ul> <li>Barabasi-Albert random graph generator fixed to work properly for undirected graphs (<a href="https://redirect.github.com/jrtom/jung/issues/55">#55</a>)</li> <li><code>BasicVisualizationServer</code> now correctly initializes its <code>PluggableRendererContext</code> for all constructors (<a href="https://redirect.github.com/jrtom/jung/issues/45">#45</a>)</li> <li><code>BasicEdgeLabelRenderer</code> (and elsewhere) fixed to not provide a null graph to the parallel edge indexer (<a href="https://redirect.github.com/jrtom/jung/issues/47">#47</a>, <a href="https://redirect.github.com/jrtom/jung/issues/50">#50</a>)</li> <li><code>Lattice2DGenerator.getRow()</code> logic fixed (<a href="https://redirect.github.com/jrtom/jung/issues/54">#54</a>)</li> <li><code>OrderedKAryTree.getSource()</code> bug fixed (<a href="https://redirect.github.com/jrtom/jung/issues/56">#56</a>)</li> <li>Maven dependencies cleaned up (<a href="https://redirect.github.com/jrtom/jung/issues/57">#57</a>, <a href="https://redirect.github.com/jrtom/jung/issues/62">#62</a>)</li> </ul> <p>New feature:</p> <ul> <li><code>GraphMLReader2</code> now has an <code>InputStream</code> constructor, which allows it to handle different character sets (<a href="https://redirect.github.com/jrtom/jung/issues/46">#46</a>, discussion in <a href="https://redirect.github.com/jrtom/jung/issues/47">#47</a>)</li> </ul> <p>Thanks to those who spotted, reported, and provided fixes for these bugs, including <a href="https://github.com/dominic-jones"><code>@dominic-jones</code></a>, <a href="https://github.com/takanori-ugai"><code>@takanori-ugai</code></a>, <a href="https://github.com/rondicus"><code>@rondicus</code></a>, <a href="https://github.com/JMMarchant"><code>@JMMarchant</code></a>, <a href="https://github.com/shatu"><code>@shatu</code></a>, and <a href="https://github.com/mletenay"><code>@mletenay</code></a>.</p> <h2>jung-2.1</h2> <p>Highlights:</p> <ul> <li>GitHub is now the new home of JUNG. You can continue to find versions of JUNG prior to 2.1 at <a href="https://sourceforge.net/projects/jung/">SourceForge</a>, but no new versions will be released there. Now that it is easier to review</li> <li>The commons-collections-generics library dependency has been replaced with <a href="https://github.com/google/guava">Guava v19</a>. <strong>This change is not backwards-compatible with existing code.</strong> It was necessary because of a <a href="https://blogs.oracle.com/security/entry/security_alert_cve_2015_4852">security issue</a>, but we also decided that Guava was a much better library to depend on in future for a variety of reasons (some of which will become apparent in future JUNG releases).</li> <li>As of this version, <strong>JUNG now depends on Java v1.6</strong> (up from 1.5).</li> <li>The matrix-related code has been removed, and with it the dependency on Colt.</li> <li>The (now unnecessary) woodstox dependency has been removed.</li> <li>JUNG now uses Travis to ensure that new code builds correctly before it is merged into the master branch.</li> <li>Everyone's favorite trivial change: the Maven artifact ID for JUNG is now <code>jung</code>, not <code>jung2</code>.</li> </ul> <p>Many thanks to <a href="https://github.com/cgruber"><code>@cgruber</code></a> for his help in getting the release and testing machinery in place.</p> <p>In terms of interfaces, the replacement of commons-collections with Guava has the following user-visible effects:</p> <ul> <li><code>Predicate</code> -> <code>Predicate</code></li> <li><code>Factory</code> -> <code>Supplier</code></li> <li><code>Transformer</code> -> <code>Function</code></li> </ul> <p>There are also (of course) many internal changes related to this replacement, e.g.</p> <ul> <li><code>ChainedTransformer</code> -> <code>Functions.compose()</code></li> <li><code>Buffer</code>, <code>UnboundedFifoBuffer</code> -> <code>Queue</code>, <code>LinkedList</code></li> <li><code>BidiMap</code> -> <code>BiMap</code></li> </ul> <blockquote> <p>(Note that some of the method signatures on these interfaces are different, e.g., <code>Predicate.evaluate()</code> -> <code>Predicate.apply()</code>.)</p> </blockquote> <p>Bug fixes:</p> <ul> <li>Fixed path problem in TestGraphMLReader.java</li> </ul> <p>General:</p> <ul> <li>Replaced uses of <code>assert</code> with <code>Preconditions</code> checks.</li> <li>Updated a lot of Javadoc to be standards-compliant with the latest formatter expectations.</li> <li>Removed some dead code.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/jrtom/jung/commits/jung-2.1.1">compare view</a></li> </ul> </details> <br /> Updates `net.sf.jung:jung-visualization` from 2.0.1 to 2.1.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jrtom/jung/releases">net.sf.jung:jung-visualization's releases</a>.</em></p> <blockquote> <h2>Release 2.1.1</h2> <p>This is primarily a bugfix release based on v2.1; with one minor exception there are no new features here.</p> <p>Bug fixes:</p> <ul> <li>Barabasi-Albert random graph generator fixed to work properly for undirected graphs (<a href="https://redirect.github.com/jrtom/jung/issues/55">#55</a>)</li> <li><code>BasicVisualizationServer</code> now correctly initializes its <code>PluggableRendererContext</code> for all constructors (<a href="https://redirect.github.com/jrtom/jung/issues/45">#45</a>)</li> <li><code>BasicEdgeLabelRenderer</code> (and elsewhere) fixed to not provide a null graph to the parallel edge indexer (<a href="https://redirect.github.com/jrtom/jung/issues/47">#47</a>, <a href="https://redirect.github.com/jrtom/jung/issues/50">#50</a>)</li> <li><code>Lattice2DGenerator.getRow()</code> logic fixed (<a href="https://redirect.github.com/jrtom/jung/issues/54">#54</a>)</li> <li><code>OrderedKAryTree.getSource()</code> bug fixed (<a href="https://redirect.github.com/jrtom/jung/issues/56">#56</a>)</li> <li>Maven dependencies cleaned up (<a href="https://redirect.github.com/jrtom/jung/issues/57">#57</a>, <a href="https://redirect.github.com/jrtom/jung/issues/62">#62</a>)</li> </ul> <p>New feature:</p> <ul> <li><code>GraphMLReader2</code> now has an <code>InputStream</code> constructor, which allows it to handle different character sets (<a href="https://redirect.github.com/jrtom/jung/issues/46">#46</a>, discussion in <a href="https://redirect.github.com/jrtom/jung/issues/47">#47</a>)</li> </ul> <p>Thanks to those who spotted, reported, and provided fixes for these bugs, including <a href="https://github.com/dominic-jones"><code>@dominic-jones</code></a>, <a href="https://github.com/takanori-ugai"><code>@takanori-ugai</code></a>, <a href="https://github.com/rondicus"><code>@rondicus</code></a>, <a href="https://github.com/JMMarchant"><code>@JMMarchant</code></a>, <a href="https://github.com/shatu"><code>@shatu</code></a>, and <a href="https://github.com/mletenay"><code>@mletenay</code></a>.</p> <h2>jung-2.1</h2> <p>Highlights:</p> <ul> <li>GitHub is now the new home of JUNG. You can continue to find versions of JUNG prior to 2.1 at <a href="https://sourceforge.net/projects/jung/">SourceForge</a>, but no new versions will be released there. Now that it is easier to review</li> <li>The commons-collections-generics library dependency has been replaced with <a href="https://github.com/google/guava">Guava v19</a>. <strong>This change is not backwards-compatible with existing code.</strong> It was necessary because of a <a href="https://blogs.oracle.com/security/entry/security_alert_cve_2015_4852">security issue</a>, but we also decided that Guava was a much better library to depend on in future for a variety of reasons (some of which will become apparent in future JUNG releases).</li> <li>As of this version, <strong>JUNG now depends on Java v1.6</strong> (up from 1.5).</li> <li>The matrix-related code has been removed, and with it the dependency on Colt.</li> <li>The (now unnecessary) woodstox dependency has been removed.</li> <li>JUNG now uses Travis to ensure that new code builds correctly before it is merged into the master branch.</li> <li>Everyone's favorite trivial change: the Maven artifact ID for JUNG is now <code>jung</code>, not <code>jung2</code>.</li> </ul> <p>Many thanks to <a href="https://github.com/cgruber"><code>@cgruber</code></a> for his help in getting the release and testing machinery in place.</p> <p>In terms of interfaces, the replacement of commons-collections with Guava has the following user-visible effects:</p> <ul> <li><code>Predicate</code> -> <code>Predicate</code></li> <li><code>Factory</code> -> <code>Supplier</code></li> <li><code>Transformer</code> -> <code>Function</code></li> </ul> <p>There are also (of course) many internal changes related to this replacement, e.g.</p> <ul> <li><code>ChainedTransformer</code> -> <code>Functions.compose()</code></li> <li><code>Buffer</code>, <code>UnboundedFifoBuffer</code> -> <code>Queue</code>, <code>LinkedList</code></li> <li><code>BidiMap</code> -> <code>BiMap</code></li> </ul> <blockquote> <p>(Note that some of the method signatures on these interfaces are different, e.g., <code>Predicate.evaluate()</code> -> <code>Predicate.apply()</code>.)</p> </blockquote> <p>Bug fixes:</p> <ul> <li>Fixed path problem in TestGraphMLReader.java</li> </ul> <p>General:</p> <ul> <li>Replaced uses of <code>assert</code> with <code>Preconditions</code> checks.</li> <li>Updated a lot of Javadoc to be standards-compliant with the latest formatter expectations.</li> <li>Removed some dead code.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/jrtom/jung/commits/jung-2.1.1">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 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]
