Comparing version 4.0.2 to 4.0.3
@@ -0,1 +1,6 @@ | ||
#### v 4.0.3 (2019-04-25) | ||
* chore: added unit tests, mostly asserting the public API. | ||
* chore: added ESLint and the Airbnb JavaScript style guide. | ||
* chore: added .editorconfig | ||
#### v 4.0.2 (2019-04-13) | ||
@@ -10,3 +15,3 @@ * fixed: Windows 7 support (Pull Request by https://github.com/ndxbn) | ||
* Added Windows support! A long awaited issue finally solved. | ||
* __BREAKING__: dropped support for Node.js versions oldder than version 8. | ||
* __BREAKING__: dropped support for Node.js versions older than version 8. | ||
* `node-zookeeper` now uses __SemVer__ for versioning. | ||
@@ -19,2 +24,2 @@ | ||
Details about the release here: [Node.js 10 support](https://github.com/yfinkelstein/node-zookeeper/pull/142) | ||
Details about the release here: [Node.js 10 support](https://github.com/yfinkelstein/node-zookeeper/pull/142) |
@@ -0,1 +1,2 @@ | ||
/* eslint-disable no-bitwise,no-console */ | ||
const ZooKeeper = require('./lib/zookeeper'); | ||
@@ -2,0 +3,0 @@ |
102
package.json
{ | ||
"name": "zookeeper", | ||
"description": "apache zookeeper client (zookeeper async API >= 3.4.0)", | ||
"version": "4.0.2", | ||
"author": "Yuri Finkelstein <yurif2003@yahoo.com>", | ||
"license": "MIT", | ||
"contributors": [ | ||
"Yuri Finkelstein <yurif2003@yahoo.com>", | ||
"Woody Anderson <woody.anderson@gmail.com>", | ||
"Mark Cavage <mcavage@gmail.com>", | ||
"Dave Dopson <ddopson@gmail.com>", | ||
"David Trejo <david.daniel.trejo@gmail.com>", | ||
"Pooya Karimian <pkarimian@sencha.com>", | ||
"Jakub Lekstan <kuebzky@gmail.com>", | ||
"Matt Lavin <matt.lavin@gmail.com>", | ||
"Roy Cheng <roy.b.cheng@newegg.com>", | ||
"David Vujic (https://github.com/DavidVujic)" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/yfinkelstein/node-zookeeper" | ||
}, | ||
"keywords": [ | ||
"apache", | ||
"zookeeper", | ||
"client" | ||
], | ||
"dependencies": { | ||
"async": "2.6.x", | ||
"decompress": "4.2.x", | ||
"decompress-targz": "4.1.x", | ||
"lodash": "4.x", | ||
"nan": "2.x", | ||
"shelljs": "0.8.x" | ||
}, | ||
"devDependencies": { | ||
"log4js": "4.x", | ||
"webworker": "0.x" | ||
}, | ||
"main": "lib/index", | ||
"scripts": { | ||
"build": "node-gyp configure build", | ||
"install": "node ./scripts/prepublish.js && npm run build", | ||
"test": "pushd test; ./test; popd" | ||
}, | ||
"engines": { | ||
"node": ">=8.9.4" | ||
} | ||
"name": "zookeeper", | ||
"description": "apache zookeeper client (zookeeper async API >= 3.4.0)", | ||
"version": "4.0.3", | ||
"author": "Yuri Finkelstein <yurif2003@yahoo.com>", | ||
"license": "MIT", | ||
"contributors": [ | ||
"Yuri Finkelstein <yurif2003@yahoo.com>", | ||
"Woody Anderson <woody.anderson@gmail.com>", | ||
"Mark Cavage <mcavage@gmail.com>", | ||
"Dave Dopson <ddopson@gmail.com>", | ||
"David Trejo <david.daniel.trejo@gmail.com>", | ||
"Pooya Karimian <pkarimian@sencha.com>", | ||
"Jakub Lekstan <kuebzky@gmail.com>", | ||
"Matt Lavin <matt.lavin@gmail.com>", | ||
"Roy Cheng <roy.b.cheng@newegg.com>", | ||
"David Vujic (https://github.com/DavidVujic)" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/yfinkelstein/node-zookeeper" | ||
}, | ||
"keywords": [ | ||
"apache", | ||
"zookeeper", | ||
"client" | ||
], | ||
"dependencies": { | ||
"async": "2.6.x", | ||
"decompress": "4.2.x", | ||
"decompress-targz": "4.1.x", | ||
"lodash": "4.x", | ||
"nan": "2.x", | ||
"shelljs": "0.8.x" | ||
}, | ||
"devDependencies": { | ||
"proxyquire": "2.x", | ||
"tap-spec": "5.x", | ||
"tape": "4.x", | ||
"log4js": "4.x", | ||
"webworker": "0.x", | ||
"eslint": "5.x", | ||
"eslint-config-airbnb-base": "13.x", | ||
"eslint-plugin-import": "2.x" | ||
}, | ||
"main": "lib/index", | ||
"scripts": { | ||
"build": "node-gyp configure build", | ||
"install": "node ./scripts/prepublish.js && npm run build", | ||
"lint": "eslint .", | ||
"integrationtest": "pushd test; ./test; popd", | ||
"test": "npm run lint && tape ./tests/**/*.js | tap-spec" | ||
}, | ||
"engines": { | ||
"node": ">=8.9.4" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
180464
52
2273
8