bpmnlint-plugin-camunda-compat 2.29.0 → 2.30.0

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/index.js CHANGED
@@ -96,10 +96,14 @@ const camundaCloud86Rules = withConfig({
96
96
  }, { version: '8.6' });
97
97
 
98
98
  const camundaCloud87Rules = withConfig({
99
- ...omit(camundaCloud86Rules, [ 'no-task-listeners' ]),
100
- 'task-listener': 'error'
99
+ ...camundaCloud86Rules
101
100
  }, { version: '8.7' });
102
101
 
102
+ const camundaCloud88Rules = withConfig({
103
+ ...omit(camundaCloud87Rules, [ 'no-task-listeners' ]),
104
+ 'task-listener': 'error'
105
+ }, { version: '8.8' });
106
+
103
107
  const camundaPlatform719Rules = withConfig({
104
108
  'history-time-to-live': 'info'
105
109
  }, {
@@ -215,6 +219,9 @@ const configs = {
215
219
  'camunda-cloud-8-7': {
216
220
  rules: camundaCloud87Rules
217
221
  },
222
+ 'camunda-cloud-8-8': {
223
+ rules: camundaCloud88Rules
224
+ },
218
225
  'camunda-platform-7-19': {
219
226
  rules: camundaPlatform719Rules
220
227
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bpmnlint-plugin-camunda-compat",
3
- "version": "2.29.0",
3
+ "version": "2.30.0",
4
4
  "description": "A bpmnlint plug-in for Camunda compatibility",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -4,7 +4,7 @@ const { skipInNonExecutableProcess } = require('../utils/rule');
4
4
 
5
5
  const { hasNoExtensionElement } = require('../utils/element');
6
6
 
7
- const ALLOWED_VERSION = '8.7';
7
+ const ALLOWED_VERSION = '8.8';
8
8
 
9
9
  module.exports = skipInNonExecutableProcess(function() {
10
10
  function check(node, reporter) {