New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

zookeeper

Package Overview
Dependencies
Maintainers
2
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zookeeper - npm Package Compare versions

Comparing version 5.4.0 to 5.5.0

deps/no-fipsmode.patch

12

CHANGELOG.md

@@ -0,3 +1,13 @@

#### v 5.5.0 (2022-10-17)
* fix: Remove the OpenSSSL FIPS_mode check for Linux, Mac OS X and Windows.
feat: Rebuild the prebuilds for Mac OS X and Windows, using Node.js 16.17.0.
feat: Remove the prebuilds for Node.js 14.
Pull request [321](https://github.com/yfinkelstein/node-zookeeper/pull/321) by @davidvujic
* fix: remove code using FIPS_mode which is not available on all distros. Pull request [318](https://github.com/yfinkelstein/node-zookeeper/pull/319) by @dreusel
#### v 5.4.0 (2022-04-18)
* feat: starting the zookeeper client in a Node.js Worker thread Pull request [310](https://github.com/yfinkelstein/node-zookeeper/pull/310) by @deepcoldy
* feat: starting the zookeeper client in a Node.js Worker thread. Pull request [310](https://github.com/yfinkelstein/node-zookeeper/pull/310) by @deepcoldy

@@ -4,0 +14,0 @@ #### v 5.3.2 (2022-02-16)

2

package.json
{
"name": "zookeeper",
"description": "apache zookeeper client (zookeeper async API v3.4.x - v3.7.x)",
"version": "5.4.0",
"version": "5.5.0",
"author": "Yuri Finkelstein <yurif2003@yahoo.com>",

@@ -6,0 +6,0 @@ "license": "MIT",

@@ -11,4 +11,3 @@ ### Prebuilds

```bash
npx prebuildify --arch x64 --platform darwin --target 14.15.4
npx prebuildify --arch x64 --platform darwin --target 16.13.1
npx prebuildify --arch x64 --platform darwin --target 16.17.0
```

@@ -18,3 +17,3 @@

```bash
npx prebuildify --arch arm64 --platform darwin --target 16.13.1
npx prebuildify --arch arm64 --platform darwin --target 16.17.0
```

@@ -25,4 +24,3 @@

```bash
npx prebuildify --arch x64 --platform win32 --target 14.15.4
npx prebuildify --arch x64 --platform win32 --target 16.13.1
npx prebuildify --arch x64 --platform win32 --target 16.17.0
```

@@ -21,2 +21,6 @@ const shell = require('shelljs');

shell.sed('-i', '#include "zk_adaptor.h"', '#include "zk_adaptor.h"\n#include "winport.h"\n', `${destination}/zookeeper.c`);
shell.sed('-i', /(FIPS_mode\(\) == 0)/, '0 == 0', `${destination}/zookeeper.c`);
shell.sed('-i', /(FIPS mode is OFF)/, 'Disabled the FIPS check', `${destination}/zookeeper.c`);
} else {
shell.exec(`patch -d ${env.rootFolder} -p0 --forward < ${env.workFolder}/no-fipsmode.patch`);
}

@@ -23,0 +27,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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc