Skip to content

Commit

Permalink
feat: remove support for converging inclusive gateway in 8.3
Browse files Browse the repository at this point in the history
This reverts commit 7ed5bb3.

Related to camunda/camunda-modeler#3747
  • Loading branch information
barmac authored and merge-me[bot] committed Jul 31, 2023
1 parent a5fe56e commit e0f4b54
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to [bpmnlint-plugin-camunda-compat](https://github.com/camun

___Note:__ Yet to be released changes appear here._

* `FEAT`: remove support converging inclusive gateway in Camunda 8.3

## 2.2.0

* `FEAT`: support converging inclusive gateway in Camunda 8.3 ([#111](https://github.com/camunda/bpmnlint-plugin-camunda-compat/pull/111))
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const camundaCloud82Rules = withConfig({
}, { version: '8.2' });

const camundaCloud83Rules = withConfig({
...omit(camundaCloud82Rules, 'inclusive-gateway'),
...camundaCloud82Rules,
'signal-reference': 'error'
}, { version: '8.3' });

Expand Down
1 change: 1 addition & 0 deletions test/config/configs.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ describe('configs', function() {
'event-based-gateway-target': [ 'error', { version: '8.3' } ],
'executable-process': [ 'error', { version: '8.3' } ],
'feel': [ 'error', { version: '8.3' } ],
'inclusive-gateway': [ 'error', { version: '8.3' } ],
'loop-characteristics': [ 'error', { version: '8.3' } ],
'message-reference': [ 'error', { version: '8.3' } ],
'no-expression': [ 'error', { version: '8.3' } ],
Expand Down

0 comments on commit e0f4b54

Please sign in to comment.