Releases: diegoholiveira/jsonlogic
Releases · diegoholiveira/jsonlogic
Fix access to maps and slices using numeric keys
v2.4.2 Fix access to properties using numeric keys (#31)
Use the position of the number to identify the first number
v2.4.1 Use the position of the number to identify the first number (#30)
v2.4.0: Introduce go modules support
Apply fixers by golangci-lint (#25)
v2.3.1
fix empty rules map that should return an empty json object instead o…
v2.3.0: Add in_sorted_list operator (#21)
- Adds in_sorted_list operator to make it faster when searching in huge lists. (Using binary search algorithm)
Fix less comparison
2.2.2 fix less operator bad evaluation when args are a mix of string and nu…
v2.2.1
Fixing merge recursive (#19)
Add a ApplyInterface method
v2.2.0 Create an simple method to avoid convert into and from json
v2.1.0
Create a method to use json.RawMessage as input instead of io.Reader
v2: Using io.Writer and io.Reader interfaces
This release do a BC refactor in our interface to achieve a better API. Instead of use interface{}
and pointers to read and write JSON Logic results, we use the io.Reader
and io.Writer
interfaces, this change makes our library with a better API.