Socket
Socket
Sign inDemoInstall

cache-manager

Package Overview
Dependencies
Maintainers
1
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cache-manager - npm Package Compare versions

Comparing version 3.4.1 to 3.4.2

3

History.md

@@ -0,1 +1,4 @@

- 3.4.2 2021-03-29
- Catch uncaught exception to pass it to callback (#154) - @lchenay
- 3.4.1 2021-03-05

@@ -2,0 +5,0 @@ - Update lodash to fix vulnerability (#152).

@@ -153,3 +153,7 @@ /** @module cacheManager/multiCaching */

} else {
cache.store.get(args[0], options, callback);
try {
cache.store.get(args[0], options, callback);
} catch (err) {
callback(err);
}
}

@@ -156,0 +160,0 @@ }, function(err, result) {

{
"name": "cache-manager",
"version": "3.4.1",
"version": "3.4.2",
"description": "Cache module for Node.js",
"main": "index.js",
"files": [
"index.js",
"/examples",
"/lib"
],
"scripts": {

@@ -7,0 +12,0 @@ "test": "make"

.coveralls.yml
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