Skip to content

Commit

Permalink
Merge pull request #16 from elbuo8/missing-dependency
Browse files Browse the repository at this point in the history
Add missing dependency to package.json
  • Loading branch information
amarzavery authored Oct 24, 2018
2 parents 747ffb5 + cee0962 commit 2648594
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
11 changes: 7 additions & 4 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
### 0.1.9 - 2018-10-24
- With the usage of `importHelpers`, the tslib will be needed in package.json for installers using older versions of npm (or using yarn). [PR](https://github.com/amqp/rhea-promise/pull/16).

### 0.1.8 - 2018-10-22
- Allow setting drain property on the receiver [PR](https://github.com/amqp/rhea-promise/pull/14).

### 0.1.7 - 2018-10-19
- Fixed a bug while populating the connectionId [PR](https://github.com/amqp/rhea-promise/pull/11).

### 0.1.6 - 2018-09-28
- property `actionInitiated` is now of type `number` which is incremented when the `create`, `close`
- property `actionInitiated` is now of type `number` which is incremented when the `create`, `close`
action on an entity is under process and decremented when the action completes (succeeeded or failed).

### 0.1.5 - 2018-09-27
- Improved log statements for better debugging.
- Any type of `error` event will be emitted with a tick delay. This would give enough time for the
- Any type of `error` event will be emitted with a tick delay. This would give enough time for the
`create()` methods to resolve the promise.
- Added a new `boolean` property `actionInitiated` which indicates whether the `create`, `close`
action on an entity is under process.
Expand All @@ -20,7 +23,7 @@ action on an entity is under process.

### 0.1.3 - 2018-09-25
- Transform relevant objects in rhea EventContext to rhea-promise objects.
- Ensure that `container.createConnection()` creates a connection on that container and not on
- Ensure that `container.createConnection()` creates a connection on that container and not on
the default container.

### 0.1.2 - 2018-09-20
Expand All @@ -30,4 +33,4 @@ the default container.
- Update homepage, repository and bug urls in package.json

### 0.1.0 - 2018-09-20
- Initial version of rhea-promise.
- Initial version of rhea-promise.
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "rhea-promise",
"version": "0.1.8",
"version": "0.1.9",
"description": "A Promisified layer over rhea AMQP client",
"license": "Apache-2.0",
"main": "./dist/lib/index.js",
"types": "./typings/lib/index.d.ts",
"dependencies": {
"debug": "^3.1.0",
"rhea": "^0.3.3"
"rhea": "^0.3.3",
"tslib": "^1.9.3"
},
"keywords": [
"amqp",
Expand Down

0 comments on commit 2648594

Please sign in to comment.