@restorecommerce/kafka-client 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.4.1](https://github.com/restorecommerce/kafka-client/compare/@restorecommerce/kafka-client@0.4.0...@restorecommerce/kafka-client@0.4.1) (2022-06-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **facade:** fix building tests ([82485bf](https://github.com/restorecommerce/kafka-client/commit/82485bfb7c6e19e0bc56f665538bf65d427a1178))
|
|
12
|
+
* fix merge issues ([cc37d83](https://github.com/restorecommerce/kafka-client/commit/cc37d8356df3b494af8c6af9e39304a49073301c))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [0.4.0](https://github.com/restorecommerce/kafka-client/compare/@restorecommerce/kafka-client@0.3.2...@restorecommerce/kafka-client@0.4.0) (2022-05-16)
|
|
7
19
|
|
|
8
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/kafka-client",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Opinionated Kafka Client for Microservices",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"author": "n-fuse GmbH",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"typings": "lib/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@restorecommerce/logger": "^0.
|
|
20
|
+
"@restorecommerce/logger": "^0.13.0",
|
|
21
21
|
"async": "^3.2.0",
|
|
22
22
|
"cls-rtracer": "^2.5.1",
|
|
23
23
|
"events": "^3.3.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"test": "npm run lint && nyc npm run mocha",
|
|
54
54
|
"test-debug": "mocha -R spec ./test/index.js --inspect-brk",
|
|
55
55
|
"lint": "eslint './src/**/*.ts' ",
|
|
56
|
-
"mocha": "cross-env NODE_ENV=test; mocha --exit",
|
|
56
|
+
"mocha": "cross-env NODE_ENV=test; mocha --exit --timeout 10000",
|
|
57
57
|
"lcov-report": "nyc report --reporter=lcov",
|
|
58
58
|
"build:tsc": "tsc -d",
|
|
59
59
|
"build:clean": "rimraf lib/",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"engines": {
|
|
63
63
|
"node": ">= 12.0.0"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "2d453885b1c82df3e6aabbfbfe3b5a9c0b240277"
|
|
66
66
|
}
|