ac-bootstrap-bull 1.0.14 → 2.0.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/.eslintrc.js +1 -1
- package/CHANGELOG.md +27 -0
- package/index.js +1 -1
- package/package.json +5 -5
package/.eslintrc.js
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
<a name="2.0.1"></a>
|
|
2
|
+
|
|
3
|
+
## [2.0.1](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v2.0.0..v2.0.1) (2023-02-20 19:06:02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fix
|
|
7
|
+
|
|
8
|
+
* **App:** Reduce loglevel for on-ready event | MP | [fe5f157c216df6b772184a89256a5581c25962aa](https://github.com/admiralcloud/ac-bootstrap-bull/commit/fe5f157c216df6b772184a89256a5581c25962aa)
|
|
9
|
+
Reduce loglevel for on-ready event
|
|
10
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
11
|
+
### Chores
|
|
12
|
+
|
|
13
|
+
* **App:** Updated ESLint to 2022 | MP | [ca64ed9ce691e79e8bd26e1096c475b34d432a2d](https://github.com/admiralcloud/ac-bootstrap-bull/commit/ca64ed9ce691e79e8bd26e1096c475b34d432a2d)
|
|
14
|
+
Updated ESLint to 2022
|
|
15
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
16
|
+
<a name="2.0.0"></a>
|
|
17
|
+
|
|
18
|
+
# [2.0.0](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.14..v2.0.0) (2023-02-19 15:28:13)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fix
|
|
22
|
+
|
|
23
|
+
* **App:** Package updates | MP | [6cc3d951bd24470b59e94e5721cc90996accbbf4](https://github.com/admiralcloud/ac-bootstrap-bull/commit/6cc3d951bd24470b59e94e5721cc90996accbbf4)
|
|
24
|
+
Package updates
|
|
25
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
26
|
+
## BREAKING CHANGES
|
|
27
|
+
* **App:** Node 16+ required
|
|
1
28
|
<a name="1.0.14"></a>
|
|
2
29
|
|
|
3
30
|
## [1.0.14](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.13..v1.0.14) (2023-01-28 18:43:55)
|
package/index.js
CHANGED
|
@@ -66,7 +66,7 @@ module.exports = function(acapi) {
|
|
|
66
66
|
acapi.log.error('BULL/REDIS | Problem | %s | %s', type.padEnd(25), _.get(err, 'message'))
|
|
67
67
|
})
|
|
68
68
|
client.on('ready', () => {
|
|
69
|
-
acapi.log.
|
|
69
|
+
acapi.log.debug('BULL/REDIS | Ready | %s', type)
|
|
70
70
|
})
|
|
71
71
|
return client
|
|
72
72
|
}
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ac-bootstrap-bull",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Bull helper",
|
|
5
5
|
"repository": "admiralcloud/ac-bootstrap-bull",
|
|
6
6
|
"author": "Mark Poepping <mark.poepping@admiralcloud.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"ac-redislock": "^
|
|
9
|
+
"ac-redislock": "^3.0.0",
|
|
10
10
|
"async": "^3.2.4",
|
|
11
|
-
"bull": "^4.10.
|
|
12
|
-
"ioredis": "^5.3.
|
|
11
|
+
"bull": "^4.10.4",
|
|
12
|
+
"ioredis": "^5.3.1",
|
|
13
13
|
"lodash": "^4.17.21"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"eslint": "^8.
|
|
16
|
+
"eslint": "^8.34.0"
|
|
17
17
|
}
|
|
18
18
|
}
|