@blumintinc/eslint-plugin-blumint 1.18.9 → 1.18.10
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/lib/index.js
CHANGED
|
@@ -169,7 +169,7 @@ exports.parallelizeAsyncOperations = (0, createRule_1.createRule)({
|
|
|
169
169
|
* "transactionCollector", etc. This may produce false positives for
|
|
170
170
|
* unrelated managers, but errs on the side of safety.
|
|
171
171
|
*/
|
|
172
|
-
const COORDINATOR_PATTERN = /batch|manager|collector|transaction|tx|unitofwork|accumulator/i;
|
|
172
|
+
const COORDINATOR_PATTERN = /batch|manager|collector|transaction|tx|coordinator|unitofwork|accumulator|aggregator/i;
|
|
173
173
|
/**
|
|
174
174
|
* Checks if there are dependencies between await expressions
|
|
175
175
|
*/
|
package/package.json
CHANGED
package/release-manifest.json
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"version": "1.18.10",
|
|
4
|
+
"date": "2026-07-11T15:24:03.394Z",
|
|
5
|
+
"rules": [
|
|
6
|
+
{
|
|
7
|
+
"name": "parallelize-async-operations",
|
|
8
|
+
"changeType": "fix",
|
|
9
|
+
"issues": [
|
|
10
|
+
1283
|
|
11
|
+
],
|
|
12
|
+
"summary": "restore coordinator to COORDINATOR_PATTERN (closes #1283)"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
},
|
|
2
16
|
{
|
|
3
17
|
"version": "1.18.9",
|
|
4
18
|
"date": "2026-07-11T01:51:22.294Z",
|