Comparing version 4.0.3 to 4.1.1
@@ -1,2 +0,14 @@ | ||
#### v 4.0.3 (2019-04-25) | ||
#### v 4.1.0 (2019-06-18) #### | ||
* feat: handle ZNOTHING return code from the ZooKeeper C library | ||
* fix: README typos | ||
* chore: added example code in the examples folder - master, workers and tasks | ||
* chore: run code in a linux docker container using a Dockerfile | ||
* chore: moved existing manual tests to the tests_integration folder | ||
* Merge pull request #174 from @peZhmanParsaee: delete .npmignore file | ||
* Merge pull request #170 from @arpitsingh94: Added documentation for "connect" function | ||
* Merge pull request #164 from @luc-boussant: Update issue templates | ||
* Merge pull request #163 from @tabbartley: Add CODE-OF-CONDUCT | ||
#### v 4.0.3 (2019-04-25) #### | ||
* chore: added unit tests, mostly asserting the public API. | ||
@@ -6,10 +18,10 @@ * chore: added ESLint and the Airbnb JavaScript style guide. | ||
#### v 4.0.2 (2019-04-13) | ||
#### v 4.0.2 (2019-04-13) #### | ||
* fixed: Windows 7 support (Pull Request by https://github.com/ndxbn) | ||
#### v 4.0.1 (2019-03-10) | ||
#### v 4.0.1 (2019-03-10) #### | ||
* Added docs: changelog, contributing to the project, fixed typos and missing info in the readme file. | ||
#### v 4.0.0 (2019-03-02) | ||
#### v 4.0.0 (2019-03-02) #### | ||
* Added Windows support! A long awaited issue finally solved. | ||
@@ -21,5 +33,5 @@ * __BREAKING__: dropped support for Node.js versions older than version 8. | ||
#### v 3.4.9-4 (2019-01-16) | ||
#### v 3.4.9-4 (2019-01-16) #### | ||
* Fixed npm install fails when using Node version 10. | ||
Details about the release here: [Node.js 10 support](https://github.com/yfinkelstein/node-zookeeper/pull/142) |
{ | ||
"name": "zookeeper", | ||
"description": "apache zookeeper client (zookeeper async API >= 3.4.0)", | ||
"version": "4.0.3", | ||
"version": "4.1.1", | ||
"author": "Yuri Finkelstein <yurif2003@yahoo.com>", | ||
@@ -51,3 +51,3 @@ "license": "MIT", | ||
"lint": "eslint .", | ||
"integrationtest": "pushd test; ./test; popd", | ||
"integrationtest": "pushd tests_integration; source ./test; popd", | ||
"test": "npm run lint && tape ./tests/**/*.js | tap-spec" | ||
@@ -54,0 +54,0 @@ }, |
@@ -60,2 +60,3 @@ # Overview | ||
* init ( options ) | ||
* connect ( options, connect_cb) | ||
* close ( ) | ||
@@ -93,2 +94,3 @@ * a_create ( path, data, flags, path_cb ) | ||
* acl_cb : function (rc, error, acl, stat) | ||
* connect_cb: function(err, zookeeper) | ||
@@ -132,6 +134,6 @@ ### Input Parameters ### | ||
* string auth // authorisation credentials (username:hashed_password) | ||
* zookeeper is the ZooKeeper instance on which connect was called | ||
Session state machine is well described in Zookeeper docs, i.e. | ||
![here](http://hadoop.apache.org/zookeeper/docs/r3.3.1/images/state_dia.jpg "State Diagram") | ||
Session state machine is well described in the [Zookeeper docs](http://zookeeper.apache.org/doc/r3.4.14/zookeeperProgrammers.html#ch_zkSessions) | ||
@@ -138,0 +140,0 @@ ### ACL and authorisation ### |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
67
2507
333
168479
7