New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

iomem

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iomem - npm Package Compare versions

Comparing version 1.5.6 to 1.5.7

test/net.test.js

7

CHANGELOG.md
# 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 @@

2

package.json
{
"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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc