Skip to content

Commit cebae9c

Browse files
authored
release v 6.2.3 (#350)
* fix(lint): unused import * bump version to 6.2.3 * add changelog
1 parent 0f7f14f commit cebae9c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#### v 6.2.3 (2024-07-14)
2+
* fix: accept both perm and perms in acl objects
3+
4+
Pull request [349](https://github.com/yfinkelstein/node-zookeeper/pull/349) by @maharjanraj
5+
16
#### v 6.2.2 (2024-07-08)
27
* docs: access Zookeeper constants from ZooKeeper.constants
38

lib/zk_promise.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const ZkPromise = require('./promise');
44
const ZooKeeper = require('./zookeeper');
55
const zkConstants = require('./constants');
6-
const { findZkConstantByCode, toCompatibleAcl } = require('./helper');
6+
const { findZkConstantByCode } = require('./helper');
77

88
function isTruthy(data) {
99
if (data) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zookeeper",
33
"description": "apache zookeeper client (zookeeper async API v3.5.x - v3.8.x)",
4-
"version": "6.2.2",
4+
"version": "6.2.3",
55
"author": "Yuri Finkelstein <[email protected]>",
66
"license": "MIT",
77
"contributors": [

0 commit comments

Comments
 (0)