Socket
Socket
Sign inDemoInstall

middleman-proxy

Package Overview
Dependencies
56
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.2 to 0.0.3

7

lib/cache/index.js

@@ -96,2 +96,9 @@ var EventEmitter = require('events').EventEmitter;

if (!self._isValid(cacheEntry)) {
// Without explicitly removing the key, the LRU will continually evict
// the same key when attempting to update.
if (self._lru) {
self._lruCache.del(key);
} else {
self._removeKey(key);
}
// return false for invalid entries

@@ -98,0 +105,0 @@ return false;

2

package.json
{
"name": "middleman-proxy",
"version": "0.0.2",
"version": "0.0.3",
"author": "Nick Pisacane <pisacanen@gmail.com>",

@@ -5,0 +5,0 @@ "description": "Http Reverse Proxy with content caching.",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc