Skip to content

Commit

Permalink
feat: remove zeebe:taskDefinition:retries binding
Browse files Browse the repository at this point in the history
The binding was never implemented in bpmn-js-element-templates.
It is unnecessary with introduction of `zeebe:taskDefinition` binding.

BREAKING CHANGE: `zeebe:taskDefinition:retries` binding is removed.
  • Loading branch information
barmac authored and marstamm committed Nov 1, 2023
1 parent f61891c commit 3dbaa30
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 94 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
"type": "zeebe:property",
"name": "property"
},
{
"type": "zeebe:taskDefinition:retries"
},
{
"type": "zeebe:taskDefinition:type"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
"zeebe:output",
"zeebe:property",
"zeebe:taskHeader",
"zeebe:taskDefinition:retries",
"zeebe:taskDefinition:type",
"bpmn:Message#property",
"bpmn:Message#zeebe:subscription#property",
Expand Down Expand Up @@ -321,7 +320,6 @@
"enum": [
"property",
"zeebe:taskDefinition:type",
"zeebe:taskDefinition:retries",
"zeebe:input",
"zeebe:output",
"zeebe:property",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@ export const template = {
'type': 'zeebe:taskDefinition:type'
}
},
{
'type': 'Hidden',
'value': '5',
'binding': {
'type': 'zeebe:taskDefinition:retries'
}
},
{
'label': 'REST Endpoint URL',
'description': 'Specify the url of the REST API to talk to.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export const errors = [
allowedValues: [
'property',
'zeebe:taskDefinition:type',
'zeebe:taskDefinition:retries',
'zeebe:input',
'zeebe:output',
'zeebe:property',
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,6 @@ describe('validation', function() {
testTemplate('invalid-zeebe-task-header-type');


testTemplate('invalid-zeebe-task-definition-retries-type');


testTemplate('invalid-zeebe-task-definition-type-type');


Expand Down

0 comments on commit 3dbaa30

Please sign in to comment.