-
Notifications
You must be signed in to change notification settings - Fork 1
/
RELEASE-NOTES.txt
275 lines (151 loc) · 7.68 KB
/
RELEASE-NOTES.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
=============================================================================
junit-utils
version 1.8.0
2024-05
RELEASE NOTES
-----------------------------------------------------------------------------
New features/enhancements:
> issue/0033: New ExceptionMatcher.with(Function, Matcher) to extract and
validate custom values
Minor enhancements:
> issue/0032: Upgrade org.junit.jupiter:junit-jupiter-api to 5.10.2
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.7.0
2024-02
RELEASE NOTES
-----------------------------------------------------------------------------
New features/enhancements:
> issue/0030: Upgrade to JUnit 5
> issue/0031: Upgrade CI/CD setup
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.6.0
2024-01
RELEASE NOTES
-----------------------------------------------------------------------------
New features/enhancements:
> issue/0028: Nested ExceptionMatcher for enhanced cause validation
> issue/0029: Add support to JDK 21 LTS
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.5.0
2023-06
RELEASE NOTES
-----------------------------------------------------------------------------
New features/enhancements:
> issue/0026: Allow testing functions that throw checked exceptions
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.4.0
2022-12
RELEASE NOTES
-----------------------------------------------------------------------------
New features/enhancements:
> issue/0024: New TestUtil methods: assertPositiveNumber() and
assertNegativeNumber()
> Add support to JDK 19
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.3.1
2021-08
RELEASE NOTES
-----------------------------------------------------------------------------
Minor enhancements:
> issue/0022: New ExceptionMatcher methods: throwsException() for any
exception, and throwsNoException() for no exception
> General Javadoc improvements
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.3.0
2021-02
RELEASE NOTES
-----------------------------------------------------------------------------
New features/enhancements:
> issue/0020: New number matchers: IsPositive/IsNegative
> General Javadoc improvements
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.2.1
2021-01
RELEASE NOTES
-----------------------------------------------------------------------------
Minor enhancements:
> issue/0016: Combining the Exception Matcher with the
Instantiation-Not-Allowed Matcher
> issue/0018: New Advanced Matchers class
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.2.0
2020-11
RELEASE NOTES
-----------------------------------------------------------------------------
New features/enhancements:
> issue/0013: Combining String Matchers with the Exception Matcher
> issue/0015: Upgrade junit dependency from 4.13 to 4.13.1
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.1.1
2020-08
RELEASE NOTES
-----------------------------------------------------------------------------
Fixed bugs:
> issue/0009: ExceptionMatcher fix to allow matching subclasses of an
expected exception or cause
Minor enhancements:
> issue/0007: StringMatcher Javadoc examples included
> issue/0008: StringMatcher enhancement to accept any CharSequence, such as
StringBuilder, StringBuffer, etc.
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.1.0
2020-06
RELEASE NOTES
-----------------------------------------------------------------------------
New features/enhancements:
> New matchers introduced, for usage with org.hamcrest.MatcherAssert:
- ExceptionMatcher: an object that matches if an examined procedure
throws an expected exception, message and cause
- InstantiationNotAllowedMatcher: an object that matches if the examined
class cannot be instantiated
- StringMatcher: evaluates a the contents of a string by matching one or
more expected substrings.
> Documentation improvements in general
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================
junit-utils
version 1.0.0
2020-04
RELEASE NOTES
-----------------------------------------------------------------------------
This initial version includes:
> TestUtils: a static class with assertions in general, including:
- methods to assert expected exceptions, as well as exception details,
such as message and cause
- methods to secure that a class cannot be instantiated (particularly
useful for utility classes, for example)
- methods for assertion of strings
For more information, or suggestions for improvement, visit:
https://obvj.net/junit-utils
=============================================================================