-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRELEASE.txt
174 lines (88 loc) · 4.74 KB
/
RELEASE.txt
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
https://github.com/bbottema/java-reflection
RELEASE NOTES Java Reflection
v4.1.0 (18-January-2024 )
- Updated Jakarta Activation to Angus Activation package
v4.0.0 (26-December-2021)
- Updated to Java 8 and fixed recent log4j security issue
- Updated to Jakarta 2.0.1
v3.13.1 (15-June-2020)
- Made zipping method parameters and arguments more flexible
v3.13.0 (17-November-2019)
- Added converter support for String to Date yyyy-MM-dd[ HH:mm]
v3.12.0 (4-November-2019)
- For simple class lookups, In addition to java.lang, also try the packages java.util and java.math
v3.11.1 - v3.11.3 (29-October-2019 - 1-November-2019)
- 3.11.3: Solved an NullPointerException in a collectMethods method
- 3.11.2: recompiled so the line numbers are correct with the released sources (due to license boilerplate added at the wrong time)
- 3.11.1: ClassUtils.collectMethods now returns methods define on implemented interfaces as well
v3.11.0 (27-October-2019)
- Added support for UUID conversion
- The Jakarta Activation framework is now an explicit dependency
v3.10.1 (21-October-2019)
- Made locateClass a little bit more user friendly by deferring return type T
v3.10.0 (28-September-2019)
- Added methods for finding parameters by annotations type
- Moved to Intellij @Nullability annotations
- Added license boilerplate code in Maven build script
- Solved a bunch of static anlayses warnings
- Improved how compatibility work when passing null-arguments as argument lists for locating constructors/methods
v3.9.5 (3-June-2019)
- Added method to check if a class has a method with a given name
v3.9.4 (27-May-2019)
- Allow null-values when invoking setter
v3.9.3 (10-May-2019)
- Added API for checking method compatibility based on actual arguments rather than by types only
- Added helper method to zip method parameters with their respective actual arguments
- Made the LookupMode arguments of type Set rather than EnumSet, so they can be made unmodifiable
- Added convenience method for returning the verify and return the only method in a findMethods result
v3.9.2 (30-April-2019)
- Added API to easily invoke bean setters / getters or methods
v3.9.1 (27-April-2019)
- Added convencience method to return the first method for a specified name
- Added method that returns an annotation of a specified type from a list
- Added method that returns an annotation of a specified type from an array
- Fixed visibility modifier on a public API
v3.9.0 (18-Januari-2019)
- Added support for bean-like methods defined on interfaces
v3.8.1 - v3.8.5 (13-October-2018 - 8-Januari-2019)
- Added support for same-type converters
- Performance update: implemented cache for generateComptibleSignatureLists
- Fixed Incompatible type exception if a number is outside of Byte or Short range
- Incompatible type exceptions are now gathered in case a conversion ultimately failed
v3.8.0 (9-October-2018)
- Added File based converters to InputStream, DataSource and byte[]
- Fixed problem with conversion candidates failing during actual conversions, so now we try all candidates rather than just the first one
- Fixed nullability analysis issue
v3.7.0 (6-October-2018)
- Added API for find declared Generic types in inheritance chains
v3.6.0 (4-October-2018)
- Added API for resolving field values
- Fixed API for searching fields. Now fields of any visibility can be resolved
v3.5.1 (1-October-2018)
- Added overloaded version of MethodUtils.findMatchingMethods(..) that also supports Collection in addition to varargs...
- Fixed name based type matching to properly work with arrays vs varargs...
v3.5.0 (30-September-2018)
- Made method collection facilities in ClassUtil much more robust by allowing any combination of method modifiers to find methods for rather than just
a boolean "publicOnly". This includes modifiers other than for visibility as well.
v3.4.0 (26-September-2018)
- Added BeanUtils API to verify if a given Method is a bean setter / getter
v3.3.0 (26-September-2018)
- More robust class location facility
- Support any custom classloader for locating classes
v3.2.1 (24-September-2018)
- Optimized recursive code and implemented some caches
v3.2.0 (21-September-2018)
- Added alternative lookup method for Methods based on type names rather than types
- Streamlines ClassUtils API a bit
v3.1.0 (21-September-2018)
Complete overhaul:
- Conversion now works with graph-based path finding resolution to find all possible conversion paths
- Converters can now be added by third parties
- fixed a bug with the cache not working properly
- restructured classes and packages so it makes a lot more sense
v2.x.x (28-August-2018)
- Converted to Java 7 and added spotbugs
- Resolved a bunch of warnings
- Removed dependencies on external libraries
v1.0 (13-August-2011)
Initial upload