Comparing version 1.5.6 to 1.5.7
# Changelog | ||
## [1.5.7](https://github.com/alexzel/iomem/compare/v1.5.6...v1.5.7) (2023-04-23) | ||
### Bug Fixes | ||
* fix bitwise modulo for opaque increment ([a5051a4](https://github.com/alexzel/iomem/commit/a5051a4ace6b122301801e75d368b06efa257d07)) | ||
## [1.5.6](https://github.com/alexzel/iomem/compare/v1.5.5...v1.5.6) (2023-04-16) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "iomem", | ||
"version": "1.5.6", | ||
"version": "1.5.7", | ||
"description": "Memcached client implementing binary protocol with native multiple keys support", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -194,3 +194,3 @@ 'use strict' | ||
static opaque () { | ||
Net._opaque = (Net._opaque + 1) & 0xffffffff | ||
Net._opaque = (Net._opaque + 1) & 0x7fffffff | ||
return Net._opaque | ||
@@ -197,0 +197,0 @@ } |
110750
19
2220