Comparing version 2.8.0 to 2.8.1
@@ -7,2 +7,6 @@ # Changelog | ||
#### Koffi 2.8.1 (2024-04-04) | ||
- Fix incompatibility with Node 20.12+ and 21.6+ | ||
#### Koffi 2.8.0 (2024-02-12) | ||
@@ -9,0 +13,0 @@ |
@@ -33,3 +33,3 @@ # Output parameters | ||
const DWORD = koffi.alias('DWORD', 'uint32_t'); | ||
const HANDLE = koffi.pointer(koffi.opaque('HANDLE')); | ||
const HANDLE = koffi.pointer('HANDLE', koffi.opaque()); | ||
const HWND = koffi.alias('HWND', HANDLE); | ||
@@ -36,0 +36,0 @@ |
@@ -46,3 +46,3 @@ "use strict"; | ||
} catch (err) { | ||
if (err.code != "EBUSY") | ||
if (!fs2.existsSync(dest)) | ||
reject(err); | ||
@@ -382,4 +382,4 @@ } | ||
name: "koffi", | ||
version: "2.8.0", | ||
stable: "2.8.0", | ||
version: "2.8.1", | ||
stable: "2.8.1", | ||
description: "Fast and simple C FFI (foreign function interface) for Node.js", | ||
@@ -386,0 +386,0 @@ keywords: [ |
@@ -46,3 +46,3 @@ "use strict"; | ||
} catch (err) { | ||
if (err.code != "EBUSY") | ||
if (!fs2.existsSync(dest)) | ||
reject(err); | ||
@@ -382,4 +382,4 @@ } | ||
name: "koffi", | ||
version: "2.8.0", | ||
stable: "2.8.0", | ||
version: "2.8.1", | ||
stable: "2.8.1", | ||
description: "Fast and simple C FFI (foreign function interface) for Node.js", | ||
@@ -386,0 +386,0 @@ keywords: [ |
{ | ||
"name": "koffi", | ||
"version": "2.8.0", | ||
"stable": "2.8.0", | ||
"version": "2.8.1", | ||
"stable": "2.8.1", | ||
"description": "Fast and simple C FFI (foreign function interface) for Node.js", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
@@ -69,3 +69,3 @@ // Copyright 2023 Niels Martignène <niels.martignene@protonmail.com> | ||
} catch (err) { | ||
if (err.code != 'EBUSY') | ||
if (!fs.existsSync(dest)) | ||
reject(err); | ||
@@ -72,0 +72,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69836149