Skip to content

4.4.0

Compare
Choose a tag to compare
@bjuric bjuric released this 25 Feb 23:56
· 3 commits to master since this release
  • Introduce elvis operator to support default values for undefined bindings
    • Examples:
      ${unbound.string :? 'defaultValue'}
      ${unbound.string :? '${some.bound.value}'}
      ${unbound.string :? blank}
      ${unbound.boolean :? false}
      ${unbound.string1 :? '${unbound.string2 ?: blank}'}