Comparing version 0.12.2 to 0.12.3
# CHANGELOG for rsmq | ||
## 0.12.3 | ||
* Added .NET implementation to README.md (#126) | ||
* Fixed index.d.ts file to #110. (#123) | ||
* Added rsmq-promise-native to README.md (#122) | ||
* Removed support for Node 8 | ||
* Updated dependencies | ||
## 0.12.2 | ||
@@ -4,0 +12,0 @@ |
@@ -29,5 +29,3 @@ // Type definitions for rsmq 0.8.3 | ||
constructor(options: RedisSMQ.ConstructorOptions); | ||
quit(): void; | ||
quit(cb: RedisSMQ.Callback<string>): void; | ||
createQueue(opts: RedisSMQ.CreateQueueOptions, cb: RedisSMQ.Callback<1>): void; | ||
@@ -43,3 +41,2 @@ createQueueAsync(opts: RedisSMQ.CreateQueueOptions): Promise<1>; | ||
setQueueAttributesAsync(opts: RedisSMQ.SetQueueAttributesOptions): Promise<RedisSMQ.QueueAttributes>; | ||
sendMessage(opts: RedisSMQ.SendMessageOptions, cb: RedisSMQ.Callback<string>): void; | ||
@@ -46,0 +43,0 @@ sendMessageAsync(opts: RedisSMQ.SendMessageOptions): Promise<string>; |
{ | ||
"name": "rsmq", | ||
"description": "A really simple message queue based on Redis", | ||
"version": "0.12.2", | ||
"version": "0.12.3", | ||
"license": "MIT", | ||
@@ -16,8 +16,8 @@ "author": "P. Liess <smrchy+npm@gmail.com>", | ||
"dependencies": { | ||
"@types/redis": "^2.8.18", | ||
"lodash": "^4.17.15", | ||
"@types/redis": "^2.8.28", | ||
"lodash": "^4.17.20", | ||
"redis": "^3.0.2" | ||
}, | ||
"devDependencies": { | ||
"async": "^3.1.1", | ||
"async": "^3.2.0", | ||
"coffeescript": "^2.5.1", | ||
@@ -27,3 +27,3 @@ "mocha": "^7.0.1", | ||
"ts-loader": "^6.2.1", | ||
"typescript": "3.7.5" | ||
"typescript": "4.1.3" | ||
}, | ||
@@ -30,0 +30,0 @@ "keywords": [ |
@@ -43,3 +43,4 @@ ![RSMQ: Redis Simple Message Queue for Node.js](https://img.webmart.de/rsmq_wide.png) | ||
* [**rsmq-cli**](https://github.com/mpneuried/rsmq-cli) A command-line interface / Terminal client for RSMQ. | ||
* [**rsmq-promise**](https://github.com/msfidelis/rsmq-promise) Promise interface for RSMQ | ||
* [**rsmq-promise-native**](https://www.npmjs.com/package/rsmq-promise-native) Native promise interface for RSMQ. | ||
* [**rsmq-promise**](https://www.npmjs.com/package/rsmq-promise) Promise interface for RSMQ (via Bluebird). | ||
@@ -53,2 +54,3 @@ ## RSMQ in other languages | ||
* [**PHP**](https://github.com/michsindelar/PhpRSMQ) RSMQ for PHP (work in progress) | ||
* [**CSharp/DotNet**](https://github.com/tontonrally/rsmqCsharp) RSMQ for .NET | ||
@@ -55,0 +57,0 @@ Note: Should you plan to port RSQM to another language please make sure to have tests to ensure compatibility with all RSMQ clients. And of course: let me know so i can mention your port here. |
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
50694
426
Updated@types/redis@^2.8.28
Updatedlodash@^4.17.20