@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
@@ -218,7 +218,7 @@ function noFrontendImportsFromFunctionsPatterns(pattern) {
218
218
  module.exports = {
219
219
  meta: {
220
220
  name: '@blumintinc/eslint-plugin-blumint',
221
- version: '1.18.9',
221
+ version: '1.18.10',
222
222
  },
223
223
  parseOptions: {
224
224
  ecmaVersion: 2020,
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blumintinc/eslint-plugin-blumint",
3
- "version": "1.18.9",
3
+ "version": "1.18.10",
4
4
  "description": "Custom eslint rules for use within BluMint",
5
5
  "author": {
6
6
  "name": "Brodie McGuire",
@@ -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",