dependabot[bot] opened a new pull request #84: URL: https://github.com/apache/commons-bcel/pull/84
Bumps `jna.version` from 5.6.0 to 5.8.0. Updates `jna` from 5.6.0 to 5.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/java-native-access/jna/blob/master/CHANGES.md">jna's changelog</a>.</em></p> <blockquote> <h1>Release 5.8.0</h1> <h2>Features</h2> <ul> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1313">#1313</a>: Normalize <code>RESOURCE_PREFIX</code> for darwin to <code>darwin-$arch</code> and split jnidispatch library per architecture - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1318">#1318</a>: Add support for linux-riscv64 - <a href="https://github.com/thentschel"><code>@thentschel</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1327">#1327</a>: Add partial support for future values of <code>c.s.j.p.win32.WinNT.LOGICAL_PROCESSOR_RELATIONSHIP</code> enum present in Windows Insider builds - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1317">#1317</a>: Change the maven coordinates of the JPMS artifacts from classifier <code>jpms</code> to custom artifact ids <code>jna-jpms</code> and <code>jna-platform-jpms</code> - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1322">#1322</a>: Handle 0-length domain names in <code>c.s.j.p.win32.Advapi32Util#getAccountBySid</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1326">#1326</a>: Ensure pointers indirected from Memory and pointing into Memory retain originating object - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> </ul> <h2>Important Changes</h2> <ul> <li> <p>The maven coordinates of the experimental JPMS (java module system) artifacts were moved from using the classifier <code>jpms</code> to custom artifact ids <code>jna-jpms</code> and <code>jna-platform-jpms</code>, without an classifier. The reason for this is, that the platform artifacts depend on the jna artifacts and need to pull in the right variant. This is not possible if the classifier is used.</p> </li> <li> <p><code>RESOURCE_PREFIX</code> for darwin (mac OS) was changed from <code>darwin</code> to <code>darwin-$arch</code> as the fat binaries on mac OS causes various problems: It was reported, that binaries were rejected from the appstore because x86 binaries were found in the application (jnidispatch for mac OS x86) and that builds needed to be special cased so that the native library can be assembled. The latter is also true for JNA.<!-- raw HTML omitted --> While the prefix is changed, the old prefix is still searched as a fallback location, so if only a fat binary is present, it can still be loaded.</p> </li> </ul> <h1>Release 5.7.0</h1> <h2>Features</h2> <ul> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1301/">#1301</a>: Improve bindings of the printer notification functions (<code>FindFirstPrinterChangeNotification</code>, <code>FindNextPrinterChangeNotification</code>) in <code>c.s.j.p.w.Winspool</code> - <a href="https://github.com/ianjoneill"><code>@ianjoneill</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1238">#1238</a>: Add macOS <code>aarch64</code> architecture to universal <code>darwin</code> target. Cherry pick <a href="https://github-redirect.dependabot.com/libffi/libffi/pull/577">libffi/libffi#577</a>. - <a href="https://github.com/fkistner"><code>@fkistner</code></a>, <a href="https://github.com/Vzor-"><code>@Vzor-</code></a>, <a href="https://github.com/tresf"><code>@tresf</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1264">#1264</a>: Update libffi to v3.3; Add Windows <code>aarch64</code> target. - <a href="https://github.com/tresf"><code>@tresf</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1293">#1293</a>: Bind part of Windows Application Recovery and Restart API: <code>RegisterApplicationRestart</code>, <code>UnregisterApplicationRestart</code> and <code>GetApplicationRestartSettings</code> in <code>c.s.j.p.w.Kernel32</code> - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1217">#1217</a>: Add mappings for AIX <code>Perfstat</code> library to <code>c.s.j.p.unix.aix</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1231">#1231</a>: The test suite can now be executed on Windows using either ANSI or UNICODE win32 API by passing <code>-Dw32.ascii=true/false</code> to ant. Previously, UNICODE was always used. - <a href="https://github.com/T-Svensson/"><code>@T-Svensson</code></a></li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1237">#1237</a>: <em>Experimental:</em> Add artifacts that make jna and jna-platform named modules (provide <code>module-info.class</code>). The new artifacts are named <code>jna-jpms.jar</code> and <code>jna-platform-jpms.jar</code> - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1242">#1242</a>: Add CallWindowProc to User32 - <a href="https://github.com/heldplayer"><code>@heldplayer</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1239">#1239</a>: Improve performance of allocation of <code>c.s.j.Memory</code> objects - <a href="https://github.com/joerg1985"><code>@joerg1985</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1246">#1246</a>: Improve performance of <code>c.s.j.Structure#read</code> and <code>c.s.j.Structure#write</code> - <a href="https://github.com/joerg1985"><code>@joerg1985</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1260">#1260</a>: Add mapping for X11 generic events - <a href="https://github.com/lafoletc"><code>@lafoletc</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1263">#1263</a>: Add LowLevelMouseProc - <a href="https://github.com/nordiakt"><code>@nordiakt</code></a></li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1265">#1265</a>: Add mapping for XQueryExtension - <a href="https://github.com/lafoletc"><code>@lafoletc</code></a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/java-native-access/jna/commit/cc4ce71d511a9aa17219cc36e2338dd1b0f52770"><code>cc4ce71</code></a> Release 5.8.0</li> <li><a href="https://github.com/java-native-access/jna/commit/58bc0a00b0789205dca65fe0299e27c5f2f57572"><code>58bc0a0</code></a> Add partial support for future values of LOGICAL_PROCESSOR_RELATIONSHIP (<a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1327">#1327</a>)</li> <li><a href="https://github.com/java-native-access/jna/commit/7f4a33e34ea10a2dd3f7ec6e324aa21254b6d77d"><code>7f4a33e</code></a> JDK16 is now GA. Test on JDK17-ea (<a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1328">#1328</a>)</li> <li><a href="https://github.com/java-native-access/jna/commit/0de51b374708c9ad0249984da2d1cd90d2977574"><code>0de51b3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1326">#1326</a> from matthiasblaesing/share_internal_memory</li> <li><a href="https://github.com/java-native-access/jna/commit/5d2333095aa85bb70b7fc3998eeceef38e260d9e"><code>5d23330</code></a> Ensure pointers indirected from Memory and pointing into Memory retain origin...</li> <li><a href="https://github.com/java-native-access/jna/commit/308a59f490ac3105dc0e85d12f4ed5a0be2caae2"><code>308a59f</code></a> Improve NetBeans Freeform integration</li> <li><a href="https://github.com/java-native-access/jna/commit/25194e1622f8153a48364831ac00ec03f51eddd2"><code>25194e1</code></a> Handle 0-length domain names in Advapi32Util#getAccountBySid (<a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1322">#1322</a>)</li> <li><a href="https://github.com/java-native-access/jna/commit/3dc3015c51e0d27f7c0366f108e1df905a29573a"><code>3dc3015</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1321">#1321</a> from matthiasblaesing/pr-1318</li> <li><a href="https://github.com/java-native-access/jna/commit/1b4f54f513f0073b57c9cc8e3475fc5768a66352"><code>1b4f54f</code></a> Add linux-riscv64 support</li> <li><a href="https://github.com/java-native-access/jna/commit/95923c120914697e303a34fb9f8ff886a8538310"><code>95923c1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1316">#1316</a> from matthiasblaesing/darwin-normalization</li> <li>Additional commits viewable in <a href="https://github.com/java-native-access/jna/compare/5.6.0...5.8.0">compare view</a></li> </ul> </details> <br /> Updates `jna-platform` from 5.6.0 to 5.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/java-native-access/jna/blob/master/CHANGES.md">jna-platform's changelog</a>.</em></p> <blockquote> <h1>Release 5.8.0</h1> <h2>Features</h2> <ul> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1313">#1313</a>: Normalize <code>RESOURCE_PREFIX</code> for darwin to <code>darwin-$arch</code> and split jnidispatch library per architecture - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1318">#1318</a>: Add support for linux-riscv64 - <a href="https://github.com/thentschel"><code>@thentschel</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1327">#1327</a>: Add partial support for future values of <code>c.s.j.p.win32.WinNT.LOGICAL_PROCESSOR_RELATIONSHIP</code> enum present in Windows Insider builds - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1317">#1317</a>: Change the maven coordinates of the JPMS artifacts from classifier <code>jpms</code> to custom artifact ids <code>jna-jpms</code> and <code>jna-platform-jpms</code> - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1322">#1322</a>: Handle 0-length domain names in <code>c.s.j.p.win32.Advapi32Util#getAccountBySid</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1326">#1326</a>: Ensure pointers indirected from Memory and pointing into Memory retain originating object - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> </ul> <h2>Important Changes</h2> <ul> <li> <p>The maven coordinates of the experimental JPMS (java module system) artifacts were moved from using the classifier <code>jpms</code> to custom artifact ids <code>jna-jpms</code> and <code>jna-platform-jpms</code>, without an classifier. The reason for this is, that the platform artifacts depend on the jna artifacts and need to pull in the right variant. This is not possible if the classifier is used.</p> </li> <li> <p><code>RESOURCE_PREFIX</code> for darwin (mac OS) was changed from <code>darwin</code> to <code>darwin-$arch</code> as the fat binaries on mac OS causes various problems: It was reported, that binaries were rejected from the appstore because x86 binaries were found in the application (jnidispatch for mac OS x86) and that builds needed to be special cased so that the native library can be assembled. The latter is also true for JNA.<!-- raw HTML omitted --> While the prefix is changed, the old prefix is still searched as a fallback location, so if only a fat binary is present, it can still be loaded.</p> </li> </ul> <h1>Release 5.7.0</h1> <h2>Features</h2> <ul> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1301/">#1301</a>: Improve bindings of the printer notification functions (<code>FindFirstPrinterChangeNotification</code>, <code>FindNextPrinterChangeNotification</code>) in <code>c.s.j.p.w.Winspool</code> - <a href="https://github.com/ianjoneill"><code>@ianjoneill</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1238">#1238</a>: Add macOS <code>aarch64</code> architecture to universal <code>darwin</code> target. Cherry pick <a href="https://github-redirect.dependabot.com/libffi/libffi/pull/577">libffi/libffi#577</a>. - <a href="https://github.com/fkistner"><code>@fkistner</code></a>, <a href="https://github.com/Vzor-"><code>@Vzor-</code></a>, <a href="https://github.com/tresf"><code>@tresf</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1264">#1264</a>: Update libffi to v3.3; Add Windows <code>aarch64</code> target. - <a href="https://github.com/tresf"><code>@tresf</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1293">#1293</a>: Bind part of Windows Application Recovery and Restart API: <code>RegisterApplicationRestart</code>, <code>UnregisterApplicationRestart</code> and <code>GetApplicationRestartSettings</code> in <code>c.s.j.p.w.Kernel32</code> - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1217">#1217</a>: Add mappings for AIX <code>Perfstat</code> library to <code>c.s.j.p.unix.aix</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1231">#1231</a>: The test suite can now be executed on Windows using either ANSI or UNICODE win32 API by passing <code>-Dw32.ascii=true/false</code> to ant. Previously, UNICODE was always used. - <a href="https://github.com/T-Svensson/"><code>@T-Svensson</code></a></li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1237">#1237</a>: <em>Experimental:</em> Add artifacts that make jna and jna-platform named modules (provide <code>module-info.class</code>). The new artifacts are named <code>jna-jpms.jar</code> and <code>jna-platform-jpms.jar</code> - <a href="https://github.com/matthiasblaesing"><code>@matthiasblaesing</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1242">#1242</a>: Add CallWindowProc to User32 - <a href="https://github.com/heldplayer"><code>@heldplayer</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1239">#1239</a>: Improve performance of allocation of <code>c.s.j.Memory</code> objects - <a href="https://github.com/joerg1985"><code>@joerg1985</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1246">#1246</a>: Improve performance of <code>c.s.j.Structure#read</code> and <code>c.s.j.Structure#write</code> - <a href="https://github.com/joerg1985"><code>@joerg1985</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1260">#1260</a>: Add mapping for X11 generic events - <a href="https://github.com/lafoletc"><code>@lafoletc</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1263">#1263</a>: Add LowLevelMouseProc - <a href="https://github.com/nordiakt"><code>@nordiakt</code></a></li> <li><a href="https://github-redirect.dependabot.com/java-native-access/jna/pull/1265">#1265</a>: Add mapping for XQueryExtension - <a href="https://github.com/lafoletc"><code>@lafoletc</code></a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/java-native-access/jna/commit/cc4ce71d511a9aa17219cc36e2338dd1b0f52770"><code>cc4ce71</code></a> Release 5.8.0</li> <li><a href="https://github.com/java-native-access/jna/commit/58bc0a00b0789205dca65fe0299e27c5f2f57572"><code>58bc0a0</code></a> Add partial support for future values of LOGICAL_PROCESSOR_RELATIONSHIP (<a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1327">#1327</a>)</li> <li><a href="https://github.com/java-native-access/jna/commit/7f4a33e34ea10a2dd3f7ec6e324aa21254b6d77d"><code>7f4a33e</code></a> JDK16 is now GA. Test on JDK17-ea (<a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1328">#1328</a>)</li> <li><a href="https://github.com/java-native-access/jna/commit/0de51b374708c9ad0249984da2d1cd90d2977574"><code>0de51b3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1326">#1326</a> from matthiasblaesing/share_internal_memory</li> <li><a href="https://github.com/java-native-access/jna/commit/5d2333095aa85bb70b7fc3998eeceef38e260d9e"><code>5d23330</code></a> Ensure pointers indirected from Memory and pointing into Memory retain origin...</li> <li><a href="https://github.com/java-native-access/jna/commit/308a59f490ac3105dc0e85d12f4ed5a0be2caae2"><code>308a59f</code></a> Improve NetBeans Freeform integration</li> <li><a href="https://github.com/java-native-access/jna/commit/25194e1622f8153a48364831ac00ec03f51eddd2"><code>25194e1</code></a> Handle 0-length domain names in Advapi32Util#getAccountBySid (<a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1322">#1322</a>)</li> <li><a href="https://github.com/java-native-access/jna/commit/3dc3015c51e0d27f7c0366f108e1df905a29573a"><code>3dc3015</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1321">#1321</a> from matthiasblaesing/pr-1318</li> <li><a href="https://github.com/java-native-access/jna/commit/1b4f54f513f0073b57c9cc8e3475fc5768a66352"><code>1b4f54f</code></a> Add linux-riscv64 support</li> <li><a href="https://github.com/java-native-access/jna/commit/95923c120914697e303a34fb9f8ff886a8538310"><code>95923c1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/java-native-access/jna/issues/1316">#1316</a> from matthiasblaesing/darwin-normalization</li> <li>Additional commits viewable in <a href="https://github.com/java-native-access/jna/compare/5.6.0...5.8.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 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. For queries about this service, please contact Infrastructure at: [email protected]
