Skip to content

Commit

Permalink
release v 6.2.3 (#350)
Browse files Browse the repository at this point in the history
* fix(lint): unused import

* bump version to 6.2.3

* add changelog
  • Loading branch information
DavidVujic authored Jul 14, 2024
1 parent 0f7f14f commit cebae9c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### v 6.2.3 (2024-07-14)
* fix: accept both perm and perms in acl objects

Pull request [349](https://github.com/yfinkelstein/node-zookeeper/pull/349) by @maharjanraj

#### v 6.2.2 (2024-07-08)
* docs: access Zookeeper constants from ZooKeeper.constants

Expand Down
2 changes: 1 addition & 1 deletion lib/zk_promise.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const ZkPromise = require('./promise');
const ZooKeeper = require('./zookeeper');
const zkConstants = require('./constants');
const { findZkConstantByCode, toCompatibleAcl } = require('./helper');
const { findZkConstantByCode } = require('./helper');

function isTruthy(data) {
if (data) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zookeeper",
"description": "apache zookeeper client (zookeeper async API v3.5.x - v3.8.x)",
"version": "6.2.2",
"version": "6.2.3",
"author": "Yuri Finkelstein <[email protected]>",
"license": "MIT",
"contributors": [
Expand Down

0 comments on commit cebae9c

Please sign in to comment.