|
| 1 | +--- |
| 2 | +id: changelog |
| 3 | +title: Changelog |
| 4 | +slug: /changelog/ |
| 5 | +--- |
| 6 | + |
| 7 | +import MarkerChangelogVersion from "@site/src/components/MarkerChangelogVersion"; |
| 8 | + |
| 9 | +This page contains an overview of the released versions and highlights the major changes from a user |
| 10 | +point of view (i.e. focus on features). The complete changelog, including the patch |
| 11 | +versions, can be found on the [GitHub release page](https://github.com/camunda/feel-scala/releases). |
| 12 | + |
| 13 | +## 1.19 |
| 14 | + |
| 15 | +<MarkerChangelogVersion versionZeebe="8.7.0" versionC7="not yet" /> |
| 16 | + |
| 17 | +**Built-in functions:** |
| 18 | + |
| 19 | +* New built-in |
| 20 | + function `is blank()` |
| 21 | + to check if a string is blank |
| 22 | +* New built-in |
| 23 | + function `partition()` |
| 24 | + to split a list in sublists of the same size |
| 25 | + |
| 26 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.19.0). |
| 27 | + |
| 28 | +## 1.18 |
| 29 | + |
| 30 | +<MarkerChangelogVersion versionZeebe="8.6.0" versionC7="7.23.0" /> |
| 31 | + |
| 32 | +**Built-in functions:** |
| 33 | + |
| 34 | +* New built-in |
| 35 | + function `is empty()` |
| 36 | + to check if a list is empty |
| 37 | +* New built-in |
| 38 | + function `trim()` |
| 39 | + to remove leading and trailing spaces of a string |
| 40 | +* New built-in |
| 41 | + function `uuid()` |
| 42 | + to create a UUID (Universally Unique Identifier) |
| 43 | +* New built-in |
| 44 | + function `to base64()` |
| 45 | + to encode a string in Base64 format |
| 46 | + |
| 47 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.18.0). |
| 48 | + |
| 49 | +## 1.17 |
| 50 | + |
| 51 | +<MarkerChangelogVersion versionZeebe="8.3.0" versionC7="7.21.0" /> |
| 52 | + |
| 53 | +**Expressions:** |
| 54 | + |
| 55 | +* Overhauled error handling. Instead of failing the evaluation, for example, because of a non-existing |
| 56 | + variable or context entry, it handles these cases and returns `null`. |
| 57 | + |
| 58 | +**Built-in functions:** |
| 59 | + |
| 60 | +* New built-in |
| 61 | + function [duplicate values()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list#duplicate-valueslist) |
| 62 | + to find duplicate list items |
| 63 | +* New built-in |
| 64 | + function [get or else()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-boolean#get-or-elsevalue-default) |
| 65 | + to handle `null` values |
| 66 | +* New built-in |
| 67 | + function [assert()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-boolean#assertvalue-condition) |
| 68 | + to fail the evaluation if a condition is not met |
| 69 | + |
| 70 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.17.0). |
| 71 | + |
| 72 | +## 1.16 |
| 73 | + |
| 74 | +<MarkerChangelogVersion versionZeebe="8.2.0" versionC7="7.20.0" /> |
| 75 | + |
| 76 | + |
| 77 | +**Built-in functions:** |
| 78 | + |
| 79 | +* New built-in function [get value()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-context#get-valuecontext-keys) to access a context with a dynamic path |
| 80 | +* New built-in function [context put()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-context#context-putcontext-keys-value) to insert a nested value in a context |
| 81 | +* New built-in function [last day of month()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-temporal#last-day-of-monthdate) to get the last day of a month |
| 82 | +* New built-in function [date and time()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-conversion#date-and-timedate-timezone) to get a date-time for a timezone |
| 83 | +* New built-in function [random number()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-numeric#random-number) to get a random number |
| 84 | + |
| 85 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.16.0). |
| 86 | + |
| 87 | +## 1.15 |
| 88 | + |
| 89 | +<MarkerChangelogVersion versionZeebe="8.1.0" versionC7="7.19.0" /> |
| 90 | + |
| 91 | +**Expressions:** |
| 92 | + |
| 93 | +* New `@` notation for [temporal literals](https://docs.camunda.io/docs/components/modeler/feel/language-guide/feel-temporal-expressions#literal) |
| 94 | + |
| 95 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.15.0). |
| 96 | + |
| 97 | +## 1.14 |
| 98 | + |
| 99 | +<MarkerChangelogVersion versionZeebe="1.3.1" versionC7="7.18.0" /> |
| 100 | + |
| 101 | +**Built-in functions:** |
| 102 | + |
| 103 | +* New function [extract()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-string#extractstring-pattern) |
| 104 | + that applies a regular expression to a given a string |
| 105 | +* New |
| 106 | + function [string join()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list#string-joinlist) |
| 107 | + that merges a list of strings into a single string |
| 108 | +* New [range functions](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-range) to compare |
| 109 | + ranges and scalar values |
| 110 | +* New functions to round numeric values: |
| 111 | + * [round up()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-numeric#round-upn-scale) |
| 112 | + * [round down()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-numeric#round-downn-scale) |
| 113 | + * [round half up()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-numeric#round-half-upn-scale) |
| 114 | + * [round half down()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-numeric#round-half-downn-scale) |
| 115 | +* Extend function [abs()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-temporal#absn) for |
| 116 | + duration values |
| 117 | + |
| 118 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.14.0). |
| 119 | + |
| 120 | +## 1.13 |
| 121 | + |
| 122 | +<MarkerChangelogVersion versionZeebe="1.0.0" versionC7="7.15.0" /> |
| 123 | + |
| 124 | +**Expressions:** |
| 125 | + |
| 126 | +* Access the property [weekday](https://docs.camunda.io/docs/components/modeler/feel/language-guide/feel-temporal-expressions#properties) |
| 127 | + of date and date-time values |
| 128 | +* Allow escape sequences in [string literals](https://docs.camunda.io/docs/components/modeler/feel/language-guide/feel-data-types#string) |
| 129 | + |
| 130 | +**Built-in functions:** |
| 131 | + |
| 132 | +* New |
| 133 | + function [context()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-conversion#contextentries) |
| 134 | + that creates a context from a given key-value list |
| 135 | +* New function [put()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-context#context-putcontext-key-value) that |
| 136 | + extends a context by a given entry |
| 137 | +* New |
| 138 | + function [put all()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-context#context-mergecontexts) |
| 139 | + that merges the given contexts |
| 140 | + |
| 141 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.13.0). |
| 142 | + |
| 143 | +## 1.12 |
| 144 | + |
| 145 | +<MarkerChangelogVersion versionZeebe="0.25.0" versionC7="7.14.0" /> |
| 146 | + |
| 147 | +**Built-in functions:** |
| 148 | + |
| 149 | +* New function [now()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-temporal#now) that |
| 150 | + returns the current date-time |
| 151 | +* New function [today()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-temporal#today) |
| 152 | + that returns the current date |
| 153 | +* New |
| 154 | + function [week of year()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-temporal#week-of-yeardate) |
| 155 | + that returns the number of the week within the year |
| 156 | +* New |
| 157 | + function [month of year()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-temporal#month-of-yeardate) |
| 158 | + that returns the name of the month |
| 159 | +* New |
| 160 | + function [day of week()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-temporal#day-of-weekdate) |
| 161 | + that returns name of the weekday |
| 162 | +* New |
| 163 | + function [day of year()](https://docs.camunda.io/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-temporal#day-of-yeardate) |
| 164 | + that returns the number of the day within the year |
| 165 | + |
| 166 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.12.0). |
| 167 | + |
| 168 | + |
| 169 | +## 1.11 |
| 170 | + |
| 171 | +<MarkerChangelogVersion versionZeebe="0.23.0" versionC7="7.13.0" /> |
| 172 | + |
| 173 | +**Expressions:** |
| 174 | + |
| 175 | +* Access the [element of a list](https://docs.camunda.io/docs/components/modeler/feel/language-guide/feel-list-expressions#get-element) using a numeric variable |
| 176 | +* Disable external functions by default for security reasons |
| 177 | + |
| 178 | +See the full changelog [here](https://github.com/camunda/feel-scala/releases/tag/1.11.0). |
0 commit comments