k2hash 2.0.5 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/src/k2h_keyqueue.cc +2 -0
- package/src/k2h_queue.cc +2 -0
- package/src/k2h_shm.cc +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "k2hash",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "K2HASH addon library for Node.js",
|
|
5
5
|
"os": "linux",
|
|
6
6
|
"main": "index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"bindings": "^1.5.0",
|
|
30
|
-
"node-addon-api": "^8.
|
|
30
|
+
"node-addon-api": "^8.7.0",
|
|
31
31
|
"prebuild-install": "^7.1.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@rollup/plugin-terser": "^1.0.0",
|
|
38
38
|
"@types/chai": "^5.2.3",
|
|
39
39
|
"@types/mocha": "^10.0.10",
|
|
40
|
-
"@types/node": "^25.
|
|
40
|
+
"@types/node": "^25.6.0",
|
|
41
41
|
"chai": "^6.2.2",
|
|
42
42
|
"mocha": "^11.7.5",
|
|
43
|
-
"node-gyp": "^12.
|
|
43
|
+
"node-gyp": "^12.3.0",
|
|
44
44
|
"prebuild": "^13.0.1",
|
|
45
|
-
"rollup": "^4.
|
|
45
|
+
"rollup": "^4.60.2",
|
|
46
46
|
"typescript": "^5.9.3",
|
|
47
47
|
"ts-node": "^10.9.2"
|
|
48
48
|
},
|
package/src/k2h_keyqueue.cc
CHANGED
|
@@ -148,6 +148,8 @@ void K2hKeyQueue::Init(Napi::Env env, Napi::Object exports)
|
|
|
148
148
|
//
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
+
// cppcheck-suppress unmatchedSuppression
|
|
152
|
+
// cppcheck-suppress functionStatic
|
|
151
153
|
Napi::Value K2hKeyQueue::New(const Napi::CallbackInfo& info)
|
|
152
154
|
{
|
|
153
155
|
if(info.IsConstructCall()){
|
package/src/k2h_queue.cc
CHANGED
|
@@ -149,6 +149,8 @@ void K2hQueue::Init(Napi::Env env, Napi::Object exports)
|
|
|
149
149
|
//
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
+
// cppcheck-suppress unmatchedSuppression
|
|
153
|
+
// cppcheck-suppress functionStatic
|
|
152
154
|
Napi::Value K2hQueue::New(const Napi::CallbackInfo& info)
|
|
153
155
|
{
|
|
154
156
|
if(info.IsConstructCall()){
|
package/src/k2h_shm.cc
CHANGED
|
@@ -286,6 +286,8 @@ void K2hNode::Init(Napi::Env env, Napi::Object exports)
|
|
|
286
286
|
//
|
|
287
287
|
}
|
|
288
288
|
|
|
289
|
+
// cppcheck-suppress unmatchedSuppression
|
|
290
|
+
// cppcheck-suppress functionStatic
|
|
289
291
|
Napi::Value K2hNode::New(const Napi::CallbackInfo& info)
|
|
290
292
|
{
|
|
291
293
|
if(info.IsConstructCall()){
|