Socket
Socket
Sign inDemoInstall

aerospike

Package Overview
Dependencies
241
Maintainers
5
Versions
135
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.9.0 to 5.10.0

lib/binding/node-v108-win32-x64/aerospike-core-client/aerospik.95E228AA.tlog/aerospike-core-client.lastbuildstate

6

package.json
{
"name": "aerospike",
"version": "5.9.0",
"version": "5.10.0",
"description": "Aerospike Client Library",

@@ -62,3 +62,4 @@ "keywords": [

"nan": "^2.17.0",
"node-gyp": "^8.4.1"
"node-gyp": "^8.4.1",
"npm-run-all": "^4.1.5"
},

@@ -75,3 +76,2 @@ "devDependencies": {

"mocha-clean": "^1.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",

@@ -78,0 +78,0 @@ "p-throttle": "^3.1.0",

@@ -21,3 +21,3 @@ # Aerospike Node.js Client [![travis][travis-image]][travis-url] [![codecov][codecov-image]][codecov-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url]

- Many Linux distributions compatible with one of the above OS releases.
- macOS 12/13
- macOS 12/13/14

@@ -75,3 +75,3 @@ The client is compatible with arm64, aarch64, and x86_64 architectures.

// INSERT HOSTNAME AND PORT NUMBER OF AEROPSIKE SERVER NODE HERE!
// INSERT HOSTNAME AND PORT NUMBER OF AEROSPIKE SERVER NODE HERE!
const config = {

@@ -78,0 +78,0 @@ hosts: '192.168.33.10:3000',

@@ -14,8 +14,11 @@ const os = require('node:os')

if (platform === 'darwin') {
rm('lib/binding/node-v120-win32-x64', { recursive: true, force: true })
rm('lib/binding/node-v115-win32-x64', { recursive: true, force: true })
rm('lib/binding/node-v108-win32-x64', { recursive: true, force: true })
if (arch === 'x64') {
rm('lib/binding/node-v120-darwin-arm64', { recursive: true, force: true })
rm('lib/binding/node-v115-darwin-arm64', { recursive: true, force: true })
rm('lib/binding/node-v108-darwin-arm64', { recursive: true, force: true })
} else {
rm('lib/binding/node-v120-darwin-x64', { recursive: true, force: true })
rm('lib/binding/node-v115-darwin-x64', { recursive: true, force: true })

@@ -27,4 +30,6 @@ rm('lib/binding/node-v108-darwin-x64', { recursive: true, force: true })

} else if (platform === 'win32') {
rm('lib/binding/node-v120-darwin-arm64', { recursive: true, force: true })
rm('lib/binding/node-v115-darwin-arm64', { recursive: true, force: true })
rm('lib/binding/node-v108-darwin-arm64', { recursive: true, force: true })
rm('lib/binding/node-v120-darwin-x64', { recursive: true, force: true })
rm('lib/binding/node-v115-darwin-x64', { recursive: true, force: true })

@@ -35,17 +40,28 @@ rm('lib/binding/node-v108-darwin-x64', { recursive: true, force: true })

} else {
rm('lib/binding/node-v120-win32-x64', { recursive: true, force: true })
rm('lib/binding/node-v115-win32-x64', { recursive: true, force: true })
rm('lib/binding/node-v108-win32-x64', { recursive: true, force: true })
rm('lib/binding/node-v120-darwin-arm64', { recursive: true, force: true })
rm('lib/binding/node-v115-darwin-arm64', { recursive: true, force: true })
rm('lib/binding/node-v108-darwin-arm64', { recursive: true, force: true })
rm('lib/binding/node-v120-darwin-x64', { recursive: true, force: true })
rm('lib/binding/node-v115-darwin-x64', { recursive: true, force: true })
rm('lib/binding/node-v108-darwin-x64', { recursive: true, force: true })
const output = await exec('openssl version')
const version = output.stdout
const openssl = version.split(' ')[1].slice(0, 1)
const output = await exec("ldd --version | awk 'NR==1{print $NF}'")
const version = Number(output.stdout)
let openssl
if (version < 2.33) {
openssl = '1'
} else {
openssl = '3'
}
if (arch === 'x64') {
await rename('lib/binding/openssl@' + openssl + '/node-v120-linux-x64', 'lib/binding/node-v120-linux-x64')
await rename('lib/binding/openssl@' + openssl + '/node-v115-linux-x64', 'lib/binding/node-v115-linux-x64')
await rename('lib/binding/openssl@' + openssl + '/node-v108-linux-x64', 'lib/binding/node-v108-linux-x64')
} else {
await rename('lib/binding/openssl@' + openssl + '/node-v120-linux-arm64', 'lib/binding/node-v120-linux-arm64')
await rename('lib/binding/openssl@' + openssl + '/node-v115-linux-arm64', 'lib/binding/node-v115-linux-arm64')

@@ -52,0 +68,0 @@ await rename('lib/binding/openssl@' + openssl + '/node-v108-linux-arm64', 'lib/binding/node-v108-linux-arm64')

@@ -89,2 +89,11 @@ // *****************************************************************************

describe('eq on bool bin', function () {
it('evaluates to true if an integer bin equals the given value', async function () {
const key = await createRecord({ boolVal: true })
await testNoMatch(key, exp.eq(exp.binBool('boolVal'), exp.bool(false)))
await testMatch(key, exp.eq(exp.binBool('boolVal'), exp.bool(true)))
})
})
describe('eq on map bin', function () {

@@ -91,0 +100,0 @@ it('evaluates to true if a map bin matches a value', async function () {

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 too big to display

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc