-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(CHANGELOG): update to v0.14.0 #54
Conversation
CHANGELOG.md
Outdated
* timer rule reports new error types `EXPRESSION_REQUIRED` and `EXPRESSION_VALUE_NOT_ALLOWED` | ||
* `report.error` was renamed to `report.data` as it is meant to be used for any additional data | ||
* `ERROR_TYPES` were namespaced to avoid mistaking reports with `report.data.type` for Camunda-specific reports | ||
* `FEEL_INVALID` error type renamed to `FEEL_EXPRESSION_INVALID` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* `FEEL_INVALID` error type renamed to `FEEL_EXPRESSION_INVALID` |
FEEL_INVALID
was not released yet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it's going to be released as part of v0.14.0
: 4005780
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, now I get what you mean.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, no breaking change as this didn't exist previously. 👍🏻
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exactly 💯
19db54b
to
f9a98d2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
Changes
FEAT
: addfeel
rule to validate feel expressions (#51)FEAT
: addcollapsed-subprocess
rule to disallow collapsed subprocess (#52)CHORE
:element-type
rule handles all errors usingELEMENT_TYPE_NOT_ALLOWED
error type (#50)CHORE
:timer
rule handlesbpmn:FormalExpression
elements using new error typesEXPRESSION_REQUIRED
andEXPRESSION_VALUE_NOT_ALLOWED
(#50)CHORE
: refactor configuration of rules (#50)Breaking Changes
ELEMENT_TYPE_NOT_ALLOWED
errorsEXPRESSION_REQUIRED
andEXPRESSION_VALUE_NOT_ALLOWED
report.error
was renamed toreport.data
as it is meant to be used for any additional dataERROR_TYPES
were namespaced to avoid mistaking reports withreport.data.type
for Camunda-specific reports