dependabot[bot] opened a new pull request, #2514: URL: https://github.com/apache/jena/pull/2514
Bumps the maven-patch-group group with 2 updates: [com.google.guava:guava](https://github.com/google/guava) and [org.apache.shiro:shiro-bom](https://github.com/apache/shiro). Updates `com.google.guava:guava` from 33.2.0-jre to 33.2.1-jre <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/guava/releases">com.google.guava:guava's releases</a>.</em></p> <blockquote> <h2>33.2.1</h2> <pre lang="xml"><code><dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>33.2.1-jre</version> <!-- or, for Android: --> <version>33.2.1-android</version> </dependency> </code></pre> <h3>Jar files</h3> <ul> <li><a href="https://repo1.maven.org/maven2/com/google/guava/guava/33.2.1-jre/guava-33.2.1-jre.jar">33.2.1-jre.jar</a></li> <li><a href="https://repo1.maven.org/maven2/com/google/guava/guava/33.2.1-android/guava-33.2.1-android.jar">33.2.1-android.jar</a></li> </ul> <p>Guava requires <a href="https://github.com/google/guava/wiki/UseGuavaInYourBuild#what-about-guavas-own-dependencies">one runtime dependency</a>, which you can download here:</p> <ul> <li><a href="https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar">failureaccess-1.0.1.jar</a></li> </ul> <h3>Javadoc</h3> <ul> <li><a href="https://guava.dev/releases/33.2.1-jre/api/docs/">33.2.1-jre</a></li> <li><a href="https://guava.dev/releases/33.2.1-android/api/docs/">33.2.1-android</a></li> </ul> <h3>JDiff</h3> <ul> <li><a href="https://guava.dev/releases/33.2.1-jre/api/diffs/">33.2.1-jre vs. 33.2.0-jre</a></li> <li><a href="https://guava.dev/releases/33.2.1-android/api/diffs/">33.2.1-android vs. 33.2.0-android</a></li> <li><a href="https://guava.dev/releases/33.2.1-android/api/androiddiffs/">33.2.1-android vs. 33.2.1-jre</a></li> </ul> <h3>Changelog</h3> <ul> <li><code>net</code>: Changed <code>InetAddress</code>-<code>String</code> conversion methods to preserve the IPv6 scope ID if present. The scope ID can be necessary for IPv6-capable devices with multiple network interfaces. However, preserving it can also lead to problems for callers that rely on the returned values <em>not</em> to include the scope ID: <ul> <li>Callers might compensate for the old behavior of the methods by appending the scope ID to a returned string themselves. If so, you can update your code to stop doing so at the same time as you upgrade Guava. Of, if your code might run against multiple versions of Guava, you can check whether Guava has included a scope ID before you add one yourself.</li> <li>Callers might pass the returned string to another system that does not understand scope IDs. If so, you can strip the scope ID off, whether by truncating the string form at a <code>%</code> character (leaving behind any trailing <code>]</code> character in the case of <code>forUriString</code>) or by replacing the returned <code>InetAddress</code> with a new instance constructed by calling <code>InetAddress.getByAddress(addr)</code>.</li> <li><code>java.net.InetAddress</code> validates any provided scope ID against the interfaces available on the machine. As a result, methods in <code>InetAddresses</code> may now fail if the scope ID fails validation. <ul> <li>Notable cases in which this may happen include: <ul> <li>if the code runs in an Android app without networking permission</li> <li>if code passes <code>InetAddress</code> instances or strings across devices</li> </ul> </li> <li>If this is not the behavior that you want, then you can strip off the scope ID from the input string before passing it to Guava, as discussed above. (3f61870ac6)</li> </ul> </li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/google/guava/commits">compare view</a></li> </ul> </details> <br /> Updates `org.apache.shiro:shiro-bom` from 2.0.0 to 2.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/apache/shiro/releases">org.apache.shiro:shiro-bom's releases</a>.</em></p> <blockquote> <h2>Apache Shiro 2.0.1</h2> <h2>What's new Highlights</h2> <ul> <li>Added a supported way to decorate Shiro <code>SecurityManager</code></li> <li>Better compatibility with OSGi for Jakarta EE <code>jakarta</code> namespace</li> <li>Fixed exception handling bugs in Jax-Rs integration module</li> <li>Fixed a bug in Jakarta Faces integration</li> <li>Better compatibility when building with Maven 4.x</li> </ul> <h2>Bug fixes</h2> <ul> <li><a href="https://redirect.github.com/apache/shiro/issues/1324">#1324</a> enh: added ManifestResourceTransformer to shade plugin by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1328">apache/shiro#1328</a></li> <li><a href="https://redirect.github.com/apache/shiro/issues/1352">#1352</a> bugfix: made commons-configuration2 optional in shiro core by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1353">apache/shiro#1353</a></li> <li>[SHIRO-491] fix rendering of principal tag in panelGroup by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1371">apache/shiro#1371</a></li> <li><a href="https://redirect.github.com/apache/shiro/issues/1383">#1383</a> bugfix: fix exception mapper type from registered features by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1384">apache/shiro#1384</a></li> <li>[SHIRO-875] Fix creating subjects with disabled session-creation by <a href="https://github.com/boris-petrov"><code>@boris-petrov</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1407">apache/shiro#1407</a></li> <li><a href="https://redirect.github.com/apache/shiro/issues/1383">#1383</a> bugfix(jax-rs): unauthenticated vs. authorized HTTP response codes we… by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1487">apache/shiro#1487</a></li> <li>bugfix(tests): using JUnit's ResourceLock annotation for tests that touch… by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1467">apache/shiro#1467</a></li> </ul> <h2>Enhancements</h2> <ul> <li>[SHIRO-776] refactor: JUnit5 Best Practices by <a href="https://github.com/timtebeek"><code>@timtebeek</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1338">apache/shiro#1338</a></li> <li>deps: fix warnings found by maven 4-alpha-13 by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1377">apache/shiro#1377</a></li> <li><a href="https://redirect.github.com/apache/shiro/issues/1424">#1424</a> [Enhancement] Made Jakarta EE IniEnvironment more flexible by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1425">apache/shiro#1425</a></li> <li><a href="https://redirect.github.com/apache/shiro/issues/1424">#1424</a> Add generic way to decorate SecurityManager by <a href="https://github.com/lprimak"><code>@lprimak</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1429">apache/shiro#1429</a></li> </ul> <h2>Documentation enhancements</h2> <ul> <li><a href="https://github.com/apache/shiro/commit/15f566b115a3ab91effc96cde57e7f7e4ccca685">enh: updated versions and using actual link versions for javadoc</a></li> </ul> <h2>Dependency updates</h2> <ul> <li>build(deps): bump log4j.version from 2.22.1 to 2.23.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1321">apache/shiro#1321</a></li> <li>build(deps): bump org.codehaus.mojo:exec-maven-plugin from 3.1.1 to 3.2.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1325">apache/shiro#1325</a></li> <li>build(deps): bump io.openliberty.tools:liberty-maven-plugin from 3.10 to 3.10.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1330">apache/shiro#1330</a></li> <li>build(deps): bump actions/setup-java from 4.0.0 to 4.1.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1331">apache/shiro#1331</a></li> <li>build(deps): bump com.puppycrawl.tools:checkstyle from 10.13.0 to 10.14.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1332">apache/shiro#1332</a></li> <li>build(deps): bump mockito.version from 5.10.0 to 5.11.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1334">apache/shiro#1334</a></li> <li>build(deps): bump groovy.version from 4.0.18 to 4.0.19 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1335">apache/shiro#1335</a></li> <li>build(deps): bump actions/cache from 4.0.0 to 4.0.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1336">apache/shiro#1336</a></li> <li>build(deps): bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.18.5 to 0.19.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1341">apache/shiro#1341</a></li> <li>build(deps): bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.19.1 to 0.20.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1342">apache/shiro#1342</a></li> <li>build(deps): bump log4j.version from 2.23.0 to 2.23.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1349">apache/shiro#1349</a></li> <li>build(deps): bump com.puppycrawl.tools:checkstyle from 10.14.0 to 10.14.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1350">apache/shiro#1350</a></li> <li>build(deps): bump actions/checkout from 4.1.1 to 4.1.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1354">apache/shiro#1354</a></li> <li>build(deps): bump io.openliberty.tools:liberty-maven-plugin from 3.10.1 to 3.10.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1355">apache/shiro#1355</a></li> <li>build(deps): bump actions/setup-java from 4.1.0 to 4.2.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1358">apache/shiro#1358</a></li> <li>build(deps-dev): bump org.apache.cxf:cxf-rt-frontend-jaxrs from 3.6.2 to 3.6.3 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1361">apache/shiro#1361</a></li> <li>build(deps): bump org.apache.cxf:cxf-rt-rs-client from 3.6.2 to 3.6.3 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1359">apache/shiro#1359</a></li> <li>build(deps): bump org.apache.commons:commons-configuration2 from 2.9.0 to 2.10.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1360">apache/shiro#1360</a></li> <li>build(deps): bump spring.version from 5.3.32 to 5.3.33 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1363">apache/shiro#1363</a></li> <li>build(deps): bump groovy.version from 4.0.19 to 4.0.20 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1364">apache/shiro#1364</a></li> <li>build(deps): bump actions/setup-java from 4.2.0 to 4.2.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1365">apache/shiro#1365</a></li> <li>build(deps): bump org.owasp:dependency-check-maven from 9.0.9 to 9.0.10 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1368">apache/shiro#1368</a></li> <li>build(deps): bump com.puppycrawl.tools:checkstyle from 10.14.1 to 10.14.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/apache/shiro/pull/1370">apache/shiro#1370</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/apache/shiro/blob/main/RELEASE-NOTES">org.apache.shiro:shiro-bom's changelog</a>.</em></p> <blockquote> <h1>Licensed to the Apache Software Foundation (ASF) under one</h1> <h1>or more contributor license agreements. See the NOTICE file</h1> <h1>distributed with this work for additional information</h1> <h1>regarding copyright ownership. The ASF licenses this file</h1> <h1>to you under the Apache License, Version 2.0 (the</h1> <h1>"License"); you may not use this file except in compliance</h1> <h1>with the License. You may obtain a copy of the License at</h1> <h1></h1> <h1><a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></h1> <h1></h1> <h1>Unless required by applicable law or agreed to in writing,</h1> <h1>software distributed under the License is distributed on an</h1> <h1>"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</h1> <h1>KIND, either express or implied. See the License for the</h1> <h1>specific language governing permissions and limitations</h1> <h1>under the License.</h1> <p>This is not an official release notes document. It exists for Shiro developers to jot down their notes while working in the source code. These notes will be combined with Jira’s auto-generated release notes during a release for the total set.</p> <p>###########################################################</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apache/shiro/commit/b4d204710526cd8d1b1c213461fb0d81958488b0"><code>b4d2047</code></a> [maven-release-plugin] prepare release shiro-root-2.0.1</li> <li><a href="https://github.com/apache/shiro/commit/6f6cc13d0c226ef4580f21d5bda5a6e559f8ab93"><code>6f6cc13</code></a> bugfix: restored changes clobbered by previous merge</li> <li><a href="https://github.com/apache/shiro/commit/92964674098a01a8d1937da4dddded3832816bd2"><code>9296467</code></a> Merge pull request <a href="https://redirect.github.com/apache/shiro/issues/1467">#1467</a> from lprimak/parallel-core-tests</li> <li><a href="https://github.com/apache/shiro/commit/5c749d4d12ea45992fbef0bea277d82a4fd2f506"><code>5c749d4</code></a> bugfix(tests): using JUnit's ResourceLock and Isolated annotations to make pa...</li> <li><a href="https://github.com/apache/shiro/commit/0766b6a5910b922e13c550d3db3ba484cc845db5"><code>0766b6a</code></a> Merge pull request <a href="https://redirect.github.com/apache/shiro/issues/1496">#1496</a> from apache/dependabot/maven/commons-cli-commons-cli...</li> <li><a href="https://github.com/apache/shiro/commit/469a0b9d4d99a3fd4b226fe65aea02d6b503d560"><code>469a0b9</code></a> chore(deps): bump commons-cli:commons-cli from 1.7.0 to 1.8.0</li> <li><a href="https://github.com/apache/shiro/commit/7af5ca4361242c7609fcf15eeb531b9de86afb39"><code>7af5ca4</code></a> Merge pull request <a href="https://redirect.github.com/apache/shiro/issues/1494">#1494</a> from lprimak/update-springboot</li> <li><a href="https://github.com/apache/shiro/commit/972bc482ea239b721c5fbfa33915deaa54342c46"><code>972bc48</code></a> deps: update Spring 6.x and SpringBoot 3.x</li> <li><a href="https://github.com/apache/shiro/commit/9db8fd1c1d39366e19c26c532ee0b0112c1f9afa"><code>9db8fd1</code></a> bugfix(docs): fixed comments in UnauthenticatedExceptionExceptionMapper and U...</li> <li><a href="https://github.com/apache/shiro/commit/ca42e811a847618ddb05390b08e122ec734c3b1b"><code>ca42e81</code></a> Merge pull request <a href="https://redirect.github.com/apache/shiro/issues/1490">#1490</a> from apache/dependabot/maven/spring.version-5.3.36</li> <li>Additional commits viewable in <a href="https://github.com/apache/shiro/compare/shiro-root-2.0.0...shiro-root-2.0.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 <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> -- 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: pr-unsubscr...@jena.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@jena.apache.org For additional commands, e-mail: pr-h...@jena.apache.org