Skip to content

Commit 1e2e6b5

Browse files
authored
Merge pull request #47 from hapinessjs/next
Next
2 parents b239d63 + 50361cd commit 1e2e6b5

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,8 @@ To set up your development environment:
453453
[Back to top](#table-of-contents)
454454

455455
## Change History
456+
* v1.6.1 (2018-11-14)
457+
* force_json_decode is now true by default
456458
* v1.6.0 (2018-10-31)
457459
* Add assert option in Exchange and Queue decorator to allow to disable assert during bootstrap
458460
* Add check option in Exchange and Queue decorator to verify existence during bootstrap

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/rabbitmq",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"description": "Hapiness module for rabbitmq",
55
"main": "commonjs/index.js",
66
"types": "index.d.ts",

src/module/decorators/queue.decorator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const Queue: CoreDecorator<QueueDecoratorInterface> = createDecorator<Que
1818
binds: undefined,
1919
options: undefined,
2020
channel: undefined,
21-
force_json_decode: false,
21+
force_json_decode: true,
2222
providers: [],
2323
assert: undefined,
2424
check: undefined,

0 commit comments

Comments
 (0)