Skip to content

Releases: diegoholiveira/jsonlogic

Fix access to maps and slices using numeric keys

02 Apr 12:40
238ac6d
Compare
Choose a tag to compare
v2.4.2

Fix access to properties using numeric keys (#31)

Use the position of the number to identify the first number

01 Apr 20:14
01dfba1
Compare
Choose a tag to compare
v2.4.1

Use the position of the number to identify the first number (#30)

v2.4.0: Introduce go modules support

06 Feb 16:25
42d6583
Compare
Choose a tag to compare
Apply fixers by golangci-lint (#25)

v2.3.1

21 Nov 15:56
Compare
Choose a tag to compare
fix empty rules map that should return an empty json object instead o…

v2.3.0: Add in_sorted_list operator (#21)

25 Oct 17:36
Compare
Choose a tag to compare
- Adds in_sorted_list operator to make it faster when searching in huge lists. (Using binary search algorithm)

Fix less comparison

22 Oct 14:41
Compare
Choose a tag to compare
2.2.2

fix less operator bad evaluation when args are a mix of string and nu…

v2.2.1

20 Sep 17:06
Compare
Choose a tag to compare
Fixing merge recursive (#19)

Add a ApplyInterface method

10 Sep 19:37
Compare
Choose a tag to compare
v2.2.0

Create an simple method to avoid convert into and from json

v2.1.0

23 Aug 20:23
Compare
Choose a tag to compare
Create a method to use json.RawMessage as input instead of io.Reader

v2: Using io.Writer and io.Reader interfaces

01 Jul 13:31
1a172a1
Compare
Choose a tag to compare

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.