Echopraxia v2.0.1 Release Notes
-
🐛 Bug fixes and some enhancements around number values.
- 👻
ctx.findList
returns a list with a single element if an element matches, i.e.ctx.findList("$.exception")
returns a list containing a singleThrowable
. - ➕ Add object equality methods for
Value
andField
instances. - ➕ Add
Comparable
interface forNumberValue
and specialize types so thatNumberValue<Integer>
andNumberValue<Byte>
are not comparable. - 👍 Set null numbers to return
0
rather thannull
to better reflect java number behavior. - ✂ Remove generic
Numeric
methods, use specific numbers in methods. - ➕ Add cache for number values corresponding to the java.lang number caches.
- 👻