dependabot[bot] opened a new pull request, #131: URL: https://github.com/apache/commons-rdf/pull/131
Bumps [rdf4j-bom](https://github.com/eclipse/rdf4j) from 3.7.6 to 4.2.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eclipse/rdf4j/releases">rdf4j-bom's releases</a>.</em></p> <blockquote> <h2>4.2.4</h2> <p>RDF4J 4.2.4 is a patch release that fixes 6 issues.</p> <p>For a complete overview, see <a href="https://github.com/eclipse/rdf4j/milestone/92?closed=1">all issues fixed in 4.2.4</a>.</p> <p>RDF4J 4.2.3 is a patch release that fixes 9 issues.</p> <p>For those who are using RDF4J tests in their own code you should note that we are currently working on migrating from JUnit 4 to JUnit 5.</p> <p>For a complete overview, see <a href="https://github.com/eclipse/rdf4j/milestone/91?closed=1">all issues fixed in 4.2.3</a>.</p> <h2>Acknowledgements</h2> <p>This release was made possible by contributions from Erik Godding Boye, Dominik Kunz, HÃ¥vard M. Ottestad, Martina Dimova, Jeen Broekstra, Tom Dalton, Jerven Bolleman and Dzeri96.</p> <p>RDF4J 4.2.2 is now available. This is a patch release fixing 3 bugs.</p> <p>For more details, have a look at the <a href="https://rdf4j.org/release-notes/4.2.2">release notes</a>.</p> <p>RDF4J 4.2.1 is now available. This is a patch release fixing 11 bugs, 3 of which are security fixes.</p> <p>For more details, have a look at the <a href="https://rdf4j.org/release-notes/4.2.1">release notes</a>.</p> <p>RDF4J 4.2.0 is a minor release introducing support for custom SPARQL aggregate functions as well as several performance improvements and bug fixes.</p> <h3>Aggregate functions</h3> <p>The support for custom SPARQL aggregate functions has allowed us to implement functions for standard deviation and variance using <a href="https://commons.apache.org/proper/commons-math/javadocs/api-3.6.1/org/apache/commons/math3/stat/descriptive/SummaryStatistics.html">Apache Commons Math3</a>.</p> <table> <thead> <tr> <th>IRI</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="http://rdf4j.org/aggregate#stdev">http://rdf4j.org/aggregate#stdev</a></td> <td>Standard deviation using sampling.</td> </tr> <tr> <td><a href="http://rdf4j.org/aggregate#stdev_population">http://rdf4j.org/aggregate#stdev_population</a></td> <td>Standard deviation using statistical population.</td> </tr> <tr> <td><a href="http://rdf4j.org/aggregate#variance">http://rdf4j.org/aggregate#variance</a></td> <td>Variance using sampling.</td> </tr> <tr> <td><a href="http://rdf4j.org/aggregate#variance_population">http://rdf4j.org/aggregate#variance_population</a></td> <td>Variance using statistical population.</td> </tr> </tbody> </table> <p><strong>Query example</strong></p> <pre><code>SELECT (<http://rdf4j.org/aggregate#stdev>(?o) AS ?stdev) WHERE { ?s ?p ?o . } </code></pre> <h3>Performance</h3> <p>More accurate query statistics for the LMDB Store drastically improves query performance. The LMDB Store can already scale to considerably larger datasets than the NativeStore and now also matches the performance for smaller datasets.</p> <p>Validation performance for small transactions on large databases has been improved by batching together more operations when analyzing the changes in a transaction.</p> <p>For a complete overview, see <a href="https://github.com/eclipse/rdf4j/milestone/85?closed=1">all issues fixed in 4.2.0</a>.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eclipse/rdf4j/commit/7c47f1da7de34a131e3e5468956e15a933ef4ae2"><code>7c47f1d</code></a> release 4.2.4</li> <li><a href="https://github.com/eclipse/rdf4j/commit/ead3fb9054338d00d6fabb4917af693e9456692b"><code>ead3fb9</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/3983">GH-3983</a> deprecate limitsize strategy + native store impl (<a href="https://redirect.github.com/eclipse/rdf4j/issues/4508">#4508</a>)</li> <li><a href="https://github.com/eclipse/rdf4j/commit/47cb4f2700d228742c65d2d3f19545df45a88ed2"><code>47cb4f2</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/3983">GH-3983</a> deprecate limitsize strategy + native store impl</li> <li><a href="https://github.com/eclipse/rdf4j/commit/d95d21abddb5eb8c9958c660762c5442b55fddf8"><code>d95d21a</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/4499">GH-4499</a> fix BIND + FILTER EXISTS by simplifying code (<a href="https://redirect.github.com/eclipse/rdf4j/issues/4502">#4502</a>)</li> <li><a href="https://github.com/eclipse/rdf4j/commit/d366ceec33464afaca1092347e21ad0c6377dcac"><code>d366cee</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/4499">GH-4499</a> extended test coverage for bind alias reuse detection</li> <li><a href="https://github.com/eclipse/rdf4j/commit/656f9268a0a72e973a9d14bf3fac8fb590989488"><code>656f926</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/4499">GH-4499</a> simplified handling of FILTER and BIND in a basic graph pattern</li> <li><a href="https://github.com/eclipse/rdf4j/commit/53037320923aef018f2a36e43a1508eb28b31459"><code>5303732</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/4499">GH-4499</a> tests replicating behavior</li> <li><a href="https://github.com/eclipse/rdf4j/commit/d51855a1ec4a5424fd9617349bc2c83d3d5fae95"><code>d51855a</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/3267">GH-3267</a> OpenAPI spec for REST API (<a href="https://redirect.github.com/eclipse/rdf4j/issues/4486">#4486</a>)</li> <li><a href="https://github.com/eclipse/rdf4j/commit/86d70560ab908a8e0f72562c13929bfafc71b30f"><code>86d7056</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/3267">GH-3267</a> fix swagger errors</li> <li><a href="https://github.com/eclipse/rdf4j/commit/0e6b9e6be96935e4f81df1627f3dc7d8e4550ae7"><code>0e6b9e6</code></a> <a href="https://redirect.github.com/eclipse/rdf4j/issues/4430">GH-4430</a>: Provide more user-friendly error message in BinaryQueryResultParser ...</li> <li>Additional commits viewable in <a href="https://github.com/eclipse/rdf4j/compare/3.7.6...4.2.4">compare view</a></li> </ul> </details> <br /> [](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 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: notifications-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org