dependabot[bot] opened a new pull request, #705: URL: https://github.com/apache/karaf-decanter/pull/705
Bumps [com.github.oshi:oshi-core](https://github.com/oshi/oshi) from 6.12.0 to 7.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/oshi/oshi/releases">com.github.oshi:oshi-core's releases</a>.</em></p> <blockquote> <h2>Release 7.4.1</h2> <h5>Bug Fixes and Improvements</h5> <ul> <li><a href="https://redirect.github.com/oshi/oshi/pull/3441">#3441</a>: Wrap AppKit/Cocoa display-name calls in an autorelease pool, extract <code>ObjCFunctions</code> FFM bindings, and use <code>ExceptionUtil</code> for consistent error handling - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3442">#3442</a>: Convert static memoized suppliers to instance fields, allowing cached data to be reclaimed when users create new <code>SystemInfo</code> instances - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3443">#3443</a>: Share memoized iostat supplier across disk instances; cache pluggable hardware lists (displays, USB, sound cards, graphics cards) in the HAL with a 3-second TTL - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3444">#3444</a>: Consolidate try/catch-log-return-default patterns to use <code>ExceptionUtil</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3459">#3459</a>: Deduplicate the Windows <code>CentralProcessor</code> frequency queries into the shared base, and fix the JNA per-processor current-frequency numbering, which mis-assigned frequencies to logical processors on multi-processor-group/NUMA systems - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3473">#3473</a>: Fix several macOS bugs: correct Intel Mac sensor temperatures that were under-reported by the SP78 fractional byte, decode process working directories and login sessions as UTF-8, and add missing null/bounds guards on native results - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3478">#3478</a>: Fix several Windows bugs: stop reporting a UPS/non-system battery as the system battery, restore the WMI fallback (and avoid an NPE) when a PDH wildcard collection fails, drop phantom file stores for volumes that can't be queried, keep enumerating sound cards past an incomplete registry key, retain sessions without a client address, and include processors in NUMA nodes spanning more than 64 logical processors - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3479">#3479</a>: Fix several Windows bugs: return all configured DNS servers instead of an empty list when more than one is present, keep querying the OpenHardwareMonitor/LibreHardwareMonitor namespaces after an initial failure so late-started sensors still appear, and classify CD-ROM drives as non-local - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3480">#3480</a>: Align remaining JNA/FFM inconsistencies: report disk type (Removable/SSD/HDD/Unknown) on the native-free Linux backend, allocate a large enough buffer for long UTF-16 device names in the Windows JNA <code>DeviceTree</code>, fix WMI query when COM is already initialized in another apartment, returning zeroed TCP/UDP stats instead of null on a query failure, detecting x86 via <code>GetNativeSystemInfo</code> (correct under WOW64), and retrying the initial <code>PDH_NO_DATA</code> performance-counter sample - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3481">#3481</a>: Share one registry-value parser between the JNA and FFM Windows installed-applications backends, so an application is resolved identically regardless of backend even when a value is stored as <code>REG_DWORD</code> or <code>REG_BINARY</code> rather than a string - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3482">#3482</a>: Fix macOS <code>getThreadCount()</code> on the default JNA backend, which under-reported the thread count (a <code>proc_listpids</code> buffer size passed as an element count, and stale reused-buffer data counted for processes <code>proc_pidinfo</code> could not fill), and release the CoreFoundation device dictionary and lookup keys leaked per disk enumeration in the JNA disk-type detection - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3483">#3483</a>: Fix several Windows backend issues: guard against a hard crash when enumerating a network session with a null client name, allocate the AMD ADL callback buffer from the C heap so the driver's <code>free()</code> is valid, close leaked system event-log handles, and read <code>REG_QWORD</code>/<code>REG_BINARY</code> registry values in the FFM backend so graphics-card VRAM is reported consistently with the JNA backend - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3484">#3484</a>: Fix several parsing and consistency issues: return empty instead of throwing from <code>ParseUtil.getStringBetween</code> on a single unmatched delimiter, throw the documented <code>IllegalArgumentException</code> (not <code>ArrayIndexOutOfBoundsException</code>) for mismatched tick arrays, correct an off-by-one bounds guard in Solaris <code>Prtvtoc</code>, decode FreeBSD/Solaris utmpx session strings as UTF-8, and read native <code>utmpx</code> for Solaris sessions in the FFM backend to match the JNA backend - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> </ul> <p><a href="https://github.com/oshi/oshi/blob/master/CHANGELOG.md">Full change log</a></p> <h2>Release 7.4.0</h2> <h5>New Features</h5> <ul> <li><a href="https://redirect.github.com/oshi/oshi/pull/3415">#3415</a>: Add <code>Display.getDisplayInfo()</code> and a new <code>DisplayInfo</code> interface (exposing decoded attributes including <code>isEdidSynthetic()</code>), plus EDID-encoding methods in <code>EdidUtil</code>, allowing display attributes to be exposed without a raw EDID - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3436">#3436</a>: Detect the Apple Silicon built-in Retina display via <code>IOMobileFramebuffer</code> and synthesize a <code>DisplayInfo</code> from CoreGraphics and NSScreen properties (resolution, physical size, serial, model name) - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> </ul> <h5>Bug Fixes and Improvements</h5> <ul> <li><a href="https://redirect.github.com/oshi/oshi/pull/3424">#3424</a>: Fix <code>WrongMethodTypeException</code> when freeing BSTR strings on the Windows FFM WMI path, caused by a void <code>invokeExact</code> in an expression lambda inferring an <code>Object</code> return - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3425">#3425</a>: Fix the Windows perf-counter process and thread maps occasionally mis-keying a real process/thread under ID 0, when PDH reports its "ID Process"/"ID Thread" sentinel for one that is starting or exiting - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3432">#3432</a>: Replace <code>Logger#atLevel</code>/<code>setCause</code>/<code>isEnabledForLevel</code> usage in <code>ExceptionUtil</code>, <code>PerfDataUtil</code>, and <code>ForeignFunctions</code> with level-switches to the classic SLF4J methods, so oshi no longer requires slf4j-api 2.x at runtime - <a href="https://github.com/wolfs"><code>@wolfs</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3431">#3431</a>: Declare the optional jlibrehardwaremonitor OSGi package imports as optional, so oshi-common resolves in OSGi environments that do not provide it - <a href="https://github.com/MrEasy"><code>@MrEasy</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3433">#3433</a>: Restore optional JNA native access for NetBSD, falling back to the command-line implementation when the JNA native library is not installed - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3437">#3437</a>: Add <code>ParseUtil.decodeIntOrDefault</code>/<code>decodeLongOrDefault</code> and forbid direct use of <code>Integer.decode</code>, <code>Long.decode</code>, <code>parseUnsignedInt</code>, and <code>parseUnsignedLong</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3438">#3438</a>: Deprecate <code>Display.getEdid()</code> in favor of <code>Display.getDisplayInfo().getEdid()</code>, consolidating display data access under <code>DisplayInfo</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> </ul> <p><a href="https://github.com/oshi/oshi/blob/master/CHANGELOG.md">Full change log</a></p> <h2>Release 7.3.2</h2> <h5>Bug Fixes and Improvements</h5> <ul> <li><a href="https://redirect.github.com/oshi/oshi/pull/3409">#3409</a>: Fix AIX <code>getFileStores()</code> inode collection: switch to AIX-native <code>df -F %n %l</code>, fix NFS mount filtering, correct column parsing, and fix free/used inode swap - <a href="https://github.com/jank"><code>@jank</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3410">#3410</a>: Fix Linux <code>getFileStores()</code> blocking indefinitely on stale NFS mounts by pre-checking NFS server reachability (TCP/2049) before calling <code>statvfs()</code> - <a href="https://github.com/jank"><code>@jank</code></a>.</li> </ul> <p><a href="https://github.com/oshi/oshi/blob/master/CHANGELOG.md">Full change log</a></p> <h2>Release 7.3.1</h2> <h5>New Features</h5> <ul> <li><a href="https://redirect.github.com/oshi/oshi/pull/3350">#3350</a>: Add AIX support to the FFM (<code>oshi-core-ffm</code>) implementation - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3360">#3360</a>: Add NetBSD support to the FFM (<code>oshi-core-ffm</code>) implementation - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/oshi/oshi/blob/master/CHANGELOG.md">com.github.oshi:oshi-core's changelog</a>.</em></p> <blockquote> <h1>7.4.0 (2026-07-08), 7.4.1 (2026-07-18)</h1> <h5>New Features</h5> <ul> <li><a href="https://redirect.github.com/oshi/oshi/pull/3415">#3415</a>: Add <code>Display.getDisplayInfo()</code> and a new <code>DisplayInfo</code> interface (exposing decoded attributes including <code>isEdidSynthetic()</code>), plus EDID-encoding methods in <code>EdidUtil</code>, allowing display attributes to be exposed without a raw EDID - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3436">#3436</a>: Detect the Apple Silicon built-in Retina display via <code>IOMobileFramebuffer</code> and synthesize a <code>DisplayInfo</code> from CoreGraphics and NSScreen properties (resolution, physical size, serial, model name) - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> </ul> <h5>Bug Fixes and Improvements</h5> <ul> <li><a href="https://redirect.github.com/oshi/oshi/pull/3424">#3424</a>: Fix <code>WrongMethodTypeException</code> when freeing BSTR strings on the Windows FFM WMI path, caused by a void <code>invokeExact</code> in an expression lambda inferring an <code>Object</code> return - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3425">#3425</a>: Fix the Windows perf-counter process and thread maps occasionally mis-keying a real process/thread under ID 0, when PDH reports its "ID Process"/"ID Thread" sentinel for one that is starting or exiting - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3432">#3432</a>: Replace <code>Logger#atLevel</code>/<code>setCause</code>/<code>isEnabledForLevel</code> usage in <code>ExceptionUtil</code>, <code>PerfDataUtil</code>, and <code>ForeignFunctions</code> with level-switches to the classic SLF4J methods, so oshi no longer requires slf4j-api 2.x at runtime - <a href="https://github.com/wolfs"><code>@wolfs</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3431">#3431</a>: Declare the optional jlibrehardwaremonitor OSGi package imports as optional, so oshi-common resolves in OSGi environments that do not provide it - <a href="https://github.com/MrEasy"><code>@MrEasy</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3433">#3433</a>: Restore optional JNA native access for NetBSD, falling back to the command-line implementation when the JNA native library is not installed - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3437">#3437</a>: Add <code>ParseUtil.decodeIntOrDefault</code>/<code>decodeLongOrDefault</code> and forbid direct use of <code>Integer.decode</code>, <code>Long.decode</code>, <code>parseUnsignedInt</code>, and <code>parseUnsignedLong</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3438">#3438</a>: Deprecate <code>Display.getEdid()</code> in favor of <code>Display.getDisplayInfo().getEdid()</code>, consolidating display data access under <code>DisplayInfo</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3441">#3441</a>: Wrap AppKit/Cocoa display-name calls in an autorelease pool, extract <code>ObjCFunctions</code> FFM bindings, and use <code>ExceptionUtil</code> for consistent error handling - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3442">#3442</a>: Convert static memoized suppliers to instance fields, allowing cached data to be reclaimed when users create new <code>SystemInfo</code> instances - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3443">#3443</a>: Share memoized iostat supplier across disk instances; cache pluggable hardware lists (displays, USB, sound cards, graphics cards) in the HAL with a 3-second TTL - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3444">#3444</a>: Consolidate try/catch-log-return-default patterns to use <code>ExceptionUtil</code> - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3459">#3459</a>: Deduplicate the Windows <code>CentralProcessor</code> frequency queries into the shared base, and fix the JNA per-processor current-frequency numbering, which mis-assigned frequencies to logical processors on multi-processor-group/NUMA systems - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3473">#3473</a>: Fix several macOS bugs: correct Intel Mac sensor temperatures that were under-reported by the SP78 fractional byte, decode process working directories and login sessions as UTF-8, and add missing null/bounds guards on native results - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3478">#3478</a>: Fix several Windows bugs: stop reporting a UPS/non-system battery as the system battery, restore the WMI fallback (and avoid an NPE) when a PDH wildcard collection fails, drop phantom file stores for volumes that can't be queried, keep enumerating sound cards past an incomplete registry key, retain sessions without a client address, and include processors in NUMA nodes spanning more than 64 logical processors - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3479">#3479</a>: Fix several Windows bugs: return all configured DNS servers instead of an empty list when more than one is present, keep querying the OpenHardwareMonitor/LibreHardwareMonitor namespaces after an initial failure so late-started sensors still appear, and classify CD-ROM drives as non-local - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3480">#3480</a>: Align remaining JNA/FFM inconsistencies: report disk type (Removable/SSD/HDD/Unknown) on the native-free Linux backend, allocate a large enough buffer for long UTF-16 device names in the Windows JNA <code>DeviceTree</code>, fix WMI query when COM is already initialized in another apartment, returning zeroed TCP/UDP stats instead of null on a query failure, detecting x86 via <code>GetNativeSystemInfo</code> (correct under WOW64), and retrying the initial <code>PDH_NO_DATA</code> performance-counter sample - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3481">#3481</a>: Share one registry-value parser between the JNA and FFM Windows installed-applications backends, so an application is resolved identically regardless of backend even when a value is stored as <code>REG_DWORD</code> or <code>REG_BINARY</code> rather than a string - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3482">#3482</a>: Fix macOS <code>getThreadCount()</code> on the default JNA backend, which under-reported the thread count (a <code>proc_listpids</code> buffer size passed as an element count, and stale reused-buffer data counted for processes <code>proc_pidinfo</code> could not fill), and release the CoreFoundation device dictionary and lookup keys leaked per disk enumeration in the JNA disk-type detection - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3483">#3483</a>: Fix several Windows backend issues: guard against a hard crash when enumerating a network session with a null client name, allocate the AMD ADL callback buffer from the C heap so the driver's <code>free()</code> is valid, close leaked system event-log handles, and read <code>REG_QWORD</code>/<code>REG_BINARY</code> registry values in the FFM backend so graphics-card VRAM is reported consistently with the JNA backend - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3484">#3484</a>: Fix several parsing and consistency issues: return empty instead of throwing from <code>ParseUtil.getStringBetween</code> on a single unmatched delimiter, throw the documented <code>IllegalArgumentException</code> (not <code>ArrayIndexOutOfBoundsException</code>) for mismatched tick arrays, correct an off-by-one bounds guard in Solaris <code>Prtvtoc</code>, decode FreeBSD/Solaris utmpx session strings as UTF-8, and read native <code>utmpx</code> for Solaris sessions in the FFM backend to match the JNA backend - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> </ul> <h1>7.3.0 (2026-06-06), 7.3.1 (2026-06-11), 7.3.2 (2026-06-26)</h1> <h5>New Features</h5> <ul> <li><a href="https://redirect.github.com/oshi/oshi/pull/3303">#3303</a>: Add DragonFly BSD platform support - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3307">#3307</a>: Add NetBSD platform support - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3316">#3316</a>, <a href="https://redirect.github.com/oshi/oshi/pull/3319">#3319</a>, <a href="https://redirect.github.com/oshi/oshi/pull/3322">#3322</a>, <a href="https://redirect.github.com/oshi/oshi/pull/3328">#3328</a>, <a href="https://redirect.github.com/oshi/oshi/pull/3330">#3330</a>: Add FreeBSD support to the FFM (<code>oshi-core-ffm</code>) implementation - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3333">#3333</a>, <a href="https://redirect.github.com/oshi/oshi/pull/3334">#3334</a>, <a href="https://redirect.github.com/oshi/oshi/pull/3335">#3335</a>: Add OpenBSD support to the FFM (<code>oshi-core-ffm</code>) implementation - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3339">#3339</a>: Add Solaris/illumos support to the FFM (<code>oshi-core-ffm</code>) implementation - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3350">#3350</a>: Add AIX support to the FFM (<code>oshi-core-ffm</code>) implementation - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3360">#3360</a>: Add NetBSD support to the FFM (<code>oshi-core-ffm</code>) implementation - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3362">#3362</a>: Add DragonFly BSD support to the FFM (<code>oshi-core-ffm</code>) implementation - <a href="https://github.com/dbwiddis"><code>@dbwiddis</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3409">#3409</a>: Fix AIX <code>getFileStores()</code> inode collection: switch to AIX-native <code>df -F %n %l</code>, fix NFS mount filtering, correct column parsing, and fix free/used inode swap - <a href="https://github.com/jank"><code>@jank</code></a>.</li> <li><a href="https://redirect.github.com/oshi/oshi/pull/3410">#3410</a>: Fix Linux <code>getFileStores()</code> blocking indefinitely on stale NFS mounts by pre-checking NFS server reachability (TCP/2049) before calling <code>statvfs()</code> - <a href="https://github.com/jank"><code>@jank</code></a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/oshi/oshi/commit/04fd9496a98199669b1b939d57fe6973f4580b4c"><code>04fd949</code></a> [maven-release-plugin] prepare release oshi-parent-7.4.1</li> <li><a href="https://github.com/oshi/oshi/commit/2ee10a70a8fff6211aaf5c89d200ccf919ea6849"><code>2ee10a7</code></a> 7.4.1 Release</li> <li><a href="https://github.com/oshi/oshi/commit/f558dcf2efc87cebd03e52bc1aecb1f235b92980"><code>f558dcf</code></a> Skip the benchmark module in SonarCloud analysis (<a href="https://redirect.github.com/oshi/oshi/issues/3486">#3486</a>)</li> <li><a href="https://github.com/oshi/oshi/commit/0e7ffaa866a634453f52ea22ea8e77308b17b55b"><code>0e7ffaa</code></a> Fix SonarCloud test-binaries config and clear two code smells (<a href="https://redirect.github.com/oshi/oshi/issues/3485">#3485</a>)</li> <li><a href="https://github.com/oshi/oshi/commit/81d0c357fff6145b97d9a645689a7eb6d524d7e9"><code>81d0c35</code></a> Fix parsing/bounds guards and Unix session consistency (JNA/FFM) (<a href="https://redirect.github.com/oshi/oshi/issues/3484">#3484</a>)</li> <li><a href="https://github.com/oshi/oshi/commit/d148fec6aa84e77d859740acd91974e591ec7c69"><code>d148fec</code></a> Fix Windows backend crash, native-memory leaks, and a registry-type gap (<a href="https://redirect.github.com/oshi/oshi/issues/3483">#3483</a>)</li> <li><a href="https://github.com/oshi/oshi/commit/99a15e1323ad61c16513cf511463639c35ac70a0"><code>99a15e1</code></a> Fix macOS JNA-backend thread count and CoreFoundation leaks (<a href="https://redirect.github.com/oshi/oshi/issues/3482">#3482</a>)</li> <li><a href="https://github.com/oshi/oshi/commit/860435364f7f408e5483b73167089b4995fd5e12"><code>8604353</code></a> Deduplicate InstalledApps registry-value parsing into a shared helper (<a href="https://redirect.github.com/oshi/oshi/issues/3481">#3481</a>)</li> <li><a href="https://github.com/oshi/oshi/commit/1e49a16b72cd177388ae4634baaaa401542b10b7"><code>1e49a16</code></a> Align remaining JNA/FFM/native-free backend divergences (<a href="https://redirect.github.com/oshi/oshi/issues/3480">#3480</a>)</li> <li><a href="https://github.com/oshi/oshi/commit/f0f65479c0896d757a431280aefd8d9b96505790"><code>f0f6547</code></a> Fix Windows FFM-backend divergences from the JNA backend (<a href="https://redirect.github.com/oshi/oshi/issues/3479">#3479</a>)</li> <li>Additional commits viewable in <a href="https://github.com/oshi/oshi/compare/oshi-parent-6.12.0...oshi-parent-7.4.1">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 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]
