forked from wnameless/json-flattener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-notes
65 lines (49 loc) · 1.9 KB
/
release-notes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Version 0.1.0
+ First release
Version 0.1.1
* Fix minimal-json parsing double value(ex:6.0) error
Version 0.1.2
* Fix the bug of empty array or empty object disappearing after flattening
Version 0.1.3
* Fix the bug of objects unflattening in reversed indexed array(ex: {"List[1].type":"B","List[0].type":"A"})
Version 0.1.4
* Fix the bug of reversed indexed arrays unflattening(ex: {"[1][1]":"B","[0][0]":"A"})
* Fix the bug of init complex key unflattening(ex: {"[\"b.b\"].aaa":123})
Version 0.1.5
* Escape JSON special characters in flattened JSON keys, values and Java Map keys but not in Java Map values
Version 0.1.6
* For ease of use, Unicode characters aren't escaped anymore
Version 0.2.0
+ Add FlattenMode
+ Add StringEscapePolicy
+ Add separator config
+ Add PrintMode
Version 0.2.1
- Remove internal cache
+ Add missing hashCode, equals and toString to JsonUnflattener
* Fix the stack overflow bug in KEEP_ARRAYS mode when null value occurs
Version 0.2.2
* Fix the stack overflow bug in KEEP_ARRAYS mode when empty object occurs
Version 0.2.3
* Fix internal JsonFlattener state inheritance bug during instantiation
Version 0.2.4
* Fix the bug of wrong output if ROOT value shows in source object
Version 0.3.0
+ Support Reader as inputs
+ Add #withLeftAndRightBrackets
Version 0.4.0
+ Add new FlattenMode.MONGODB
+ Add #withKeyTransformer
Version 0.4.1
* Fix the bug of unable to use JsonUnflattener to unflatten json made form KEEP_ARRAYS mode correctly if flattened objects exist in an array
Version 0.5.0
* Using Apache common-text instead of common-lang3
* Java 8 required
+ Add CharSequenceTranslatorFactory interface
Version 0.6.0
+ Add StringEscapePolicy.ALL
+ Add StringEscapePolicy.ALL_BUT_SLASH
+ Add StringEscapePolicy.ALL_BUT_UNICODD
+ Add StringEscapePolicy.ALL_BUT_SLASH_AND_UNICODE
+ Add StringEscapePolicy.DEFAULT
* Make StringEscapePolicy.DEFAULT as the default StringEscapePolicy of JsonFlattener