ac-bootstrap-bull 1.0.11 → 1.0.13

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/index.js +1 -0
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ <a name="1.0.13"></a>
2
+
3
+ ## [1.0.13](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.12..v1.0.13) (2023-01-28 17:59:43)
4
+
5
+
6
+ ### Bug Fix
7
+
8
+ * **App:** Package updates | MP | [b81eefaebaeb2f2e988ef59320720db8583f43ab](https://github.com/admiralcloud/ac-bootstrap-bull/commit/b81eefaebaeb2f2e988ef59320720db8583f43ab)
9
+ Package updates
10
+ Related issues: [undefined/undefined#master](undefined/browse/master)
11
+ <a name="1.0.12"></a>
12
+
13
+ ## [1.0.12](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.11..v1.0.12) (2022-12-13 17:55:28)
14
+
15
+
16
+ ### Bug Fix
17
+
18
+ * **App:** Fixed an issue when job is null | MP | [f96b61b97459241b0b401e96adc76a6a165331b9](https://github.com/admiralcloud/ac-bootstrap-bull/commit/f96b61b97459241b0b401e96adc76a6a165331b9)
19
+ In case job is null, we cannot call remove function
20
+ Related issues: [undefined/undefined#master](undefined/browse/master)
21
+ ### Chores
22
+
23
+ * **App:** Updated packages | MP | [da7c4d5d9e3c6b21a1a7ddd457b4aa6c1b91b521](https://github.com/admiralcloud/ac-bootstrap-bull/commit/da7c4d5d9e3c6b21a1a7ddd457b4aa6c1b91b521)
24
+ Updated packages
25
+ Related issues: [undefined/undefined#master](undefined/browse/master)
1
26
  <a name="1.0.11"></a>
2
27
 
3
28
  ## [1.0.11](https://github.com/admiralcloud/ac-bootstrap-bull/compare/v1.0.10..v1.0.11) (2022-08-22 09:51:22)
package/index.js CHANGED
@@ -192,6 +192,7 @@ module.exports = function(acapi) {
192
192
  const functionIdentifier = _.padEnd('removeJob', _.get(acapi.config, 'bull.log.functionIdentifierLength'))
193
193
  if (_.isNil(job)) {
194
194
  acapi.log.error('%s | %s | %s | Job invalid %j', functionName, functionIdentifier, queueName, job)
195
+ return
195
196
  }
196
197
  const jobId = _.get(job, 'id')
197
198
  const jobListWatchKey = _.get(job, 'data.jobListWatchKey')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ac-bootstrap-bull",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Bull helper",
5
5
  "repository": "admiralcloud/ac-bootstrap-bull",
6
6
  "author": "Mark Poepping <mark.poepping@admiralcloud.com>",
@@ -8,11 +8,11 @@
8
8
  "dependencies": {
9
9
  "ac-redislock": "^2.0.1",
10
10
  "async": "^3.2.4",
11
- "bull": "^4.8.5",
12
- "ioredis": "^5.2.2",
11
+ "bull": "^4.10.2",
12
+ "ioredis": "^5.3.0",
13
13
  "lodash": "^4.17.21"
14
14
  },
15
15
  "devDependencies": {
16
- "eslint": "^8.22.0"
16
+ "eslint": "^8.32.0"
17
17
  }
18
18
  }