Comparing version 5.4.0 to 5.5.0
@@ -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) |
{ | ||
"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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
3044
6
2223269
79