Socket
Socket
Sign inDemoInstall

amqp-connection-manager

Package Overview
Dependencies
Maintainers
9
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amqp-connection-manager - npm Package Compare versions

Comparing version 2.2.0 to 2.3.0

.nyc_output/599a469f58a9330973c11e7ffad09163.json

7

CHANGELOG.md

@@ -0,1 +1,8 @@

# [2.3.0](https://github.com/benbria/node-amqp-connection-manager/compare/v2.2.0...v2.3.0) (2018-11-20)
### Features
* Add ChannelWrapper.ackAll() and ChannelWrapper.nackAll(). ([0246695](https://github.com/benbria/node-amqp-connection-manager/commit/0246695)), closes [#60](https://github.com/benbria/node-amqp-connection-manager/issues/60)
# [2.2.0](https://github.com/benbria/node-amqp-connection-manager/compare/v2.1.2...v2.2.0) (2018-09-25)

@@ -2,0 +9,0 @@

@@ -371,2 +371,7 @@ 'use strict';

// Send an `ackAll` to the underlying channel.
ackAll() {
return this._channel && this._channel.ackAll.apply(this._channel, arguments);
}
// Send a `nack` to the underlying channel.

@@ -376,4 +381,9 @@ nack() {

}
// Send a `nackAll` to the underlying channel.
nackAll() {
return this._channel && this._channel.nackAll.apply(this._channel, arguments);
}
}
exports.default = ChannelWrapper;
//# sourceMappingURL=ChannelWrapper.js.map

8

package.json
{
"name": "amqp-connection-manager",
"version": "2.2.0",
"version": "2.3.0",
"description": "Auto-reconnect and round robin support for amqplib.",

@@ -14,3 +14,3 @@ "main": "lib/index.js",

"@jwalton/semantic-release-config": "^1.0.0",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/git": "^7.0.1",

@@ -28,3 +28,3 @@ "amqplib": "^0.5.1",

"eslint": "^5.0.0",
"eslint-config-benbria": "^3.0.2",
"eslint-config-benbria": "^4.0.0",
"eslint-plugin-import": "^2.11.0",

@@ -37,3 +37,3 @@ "eslint-plugin-promise": "^4.0.0",

"nyc": "^12.0.1",
"promise-tools": "^1.1.0",
"promise-tools": "^2.0.0",
"proxyquire": "^2.0.1",

@@ -40,0 +40,0 @@ "semantic-release": "^15.9.6",

Sorry, the diff of this file is not supported yet

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