Comparing version 3.1.0 to 3.1.1
@@ -0,1 +1,8 @@ | ||
## [3.1.1](https://github.com/TinkoffCreditSystems/cachalot/compare/v3.1.0...v3.1.1) (2020-11-17) | ||
### Bug Fixes | ||
* redis: allow null return from set ([12a93dd](https://github.com/TinkoffCreditSystems/cachalot/commit/12a93dd)) | ||
# [3.1.0](https://github.com/TinkoffCreditSystems/cachalot/compare/v3.0.3...v3.1.0) (2020-08-01) | ||
@@ -2,0 +9,0 @@ |
@@ -14,3 +14,3 @@ /// <reference types="node" /> | ||
exists(...keys: string[]): Promise<number>; | ||
set(key: string, value: string, expiryMode?: string, time?: number | string, setMode?: number | string): Promise<string>; | ||
set(key: string, value: string, expiryMode?: string, time?: number | string, setMode?: number | string): Promise<"OK" | null>; | ||
mget(...keys: string[]): Promise<Array<string | null>>; | ||
@@ -17,0 +17,0 @@ mset(data: Map<string, string>): Promise<"OK">; |
{ | ||
"name": "cachalot", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "Cache manager for nodejs with support different cache strategies", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
139604