🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

lmdb

Package Overview
Dependencies
Maintainers
3
Versions
197
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lmdb - npm Package Compare versions

Comparing version
3.5.0
to
3.5.1
+9
-8
package.json
{
"name": "lmdb",
"author": "Kris Zyp",
"version": "3.5.0",
"version": "3.5.1",
"description": "Simple, efficient, scalable, high-performance LMDB interface",

@@ -71,3 +71,3 @@ "license": "MIT",

"prebuildify": "prebuildify-platform-packages --debug --napi --target 22.11.0",
"full-publish": "cd prebuilds/darwin-x64 && npm publish --access public && cd ../darwin-arm64 && npm publish --access public && cd ../linux-x64 && npm publish --access public && cd ../linux-arm64 && npm publish --access public && cd ../linux-arm && npm publish --access public && cd ../.. && npm publish && node util/remove-optional-deps.cjs",
"full-publish": "cd prebuilds/win32-x64 && npm publish --access public && cd ../win32-arm64 && npm publish --access public && cd ../darwin-x64 && npm publish --access public && cd ../darwin-arm64 && npm publish --access public && cd ../linux-x64 && npm publish --access public && cd ../linux-arm64 && npm publish --access public && cd ../linux-arm && npm publish --access public && cd ../.. && npm publish && node util/remove-optional-deps.cjs",
"recompile": "node-gyp clean && node-gyp configure && node-gyp build",

@@ -116,9 +116,10 @@ "recompile-v1": "node-gyp clean && set LMDB_DATA_V1=true&& node-gyp configure && set LMDB_DATA_V1=true&& node-gyp build",

"optionalDependencies": {
"@lmdb/lmdb-darwin-arm64": "3.5.0",
"@lmdb/lmdb-darwin-x64": "3.5.0",
"@lmdb/lmdb-linux-arm": "3.5.0",
"@lmdb/lmdb-linux-arm64": "3.5.0",
"@lmdb/lmdb-linux-x64": "3.5.0",
"@lmdb/lmdb-win32-x64": "3.5.0"
"@lmdb/lmdb-darwin-arm64": "3.5.1",
"@lmdb/lmdb-darwin-x64": "3.5.1",
"@lmdb/lmdb-linux-arm": "3.5.1",
"@lmdb/lmdb-linux-arm64": "3.5.1",
"@lmdb/lmdb-linux-x64": "3.5.1",
"@lmdb/lmdb-win32-arm64": "3.5.1",
"@lmdb/lmdb-win32-x64": "3.5.1"
}
}

@@ -431,3 +431,3 @@ import { ExtendedIterable } from '@harperfast/extended-iterable';

tryLock(id, callback) {
return this.attemptLock(id, 0, callback);
return this.attemptLock(id, undefined, callback);
},

@@ -438,3 +438,3 @@

keyBytes.dataView.setUint32(0, this.db.dbi);
keyBytes.dataView.setFloat64(4, version ?? 0);
keyBytes.dataView.setFloat64(4, version);
let keySize = this.writeKey(id, keyBytes, 12);

@@ -441,0 +441,0 @@ return unlock(env.address, keySize, onlyCheck);

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display