File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ === 5.21.0 / 2024-01-11
2
+
3
+ * 10 minor enhancements:
4
+
5
+ * Add include_all kw arg to assert_respond_to and refute_respond_to.
6
+ * Added --quiet flag to skip ProgressReporter (prints the dots). Minor speedup.
7
+ * Added Minitest::Compress#compress and added it to UnexpectedError.
8
+ * Added ability to initialize BacktraceFilter w/ custom regexp.
9
+ * Filter failure backtraces using backtrace_filter before calculating location. (thomasmarshall)
10
+ * Make BacktraceFilter#filter compatible with locations (still compares strings).
11
+ * Optimized Assertion#location ~30%.
12
+ * Output relative paths for all failures/errors/backtraces.
13
+ * Refactored location information in assertions, now using locations.
14
+ * Removed thread and mutex_m dependencies. (hsbt, eregon)
15
+
16
+ * 2 bug fixes:
17
+
18
+ * Drop undocumented bt arg in #skip. Dunno why that ever happened, prolly for testing?
19
+ * Fix mock to work with ruby debugger enabled. (keithlayne)
20
+
1
21
=== 5.20.0 / 2023-09-06
2
22
3
23
* 1 minor enhancement:
Original file line number Diff line number Diff line change 9
9
# :include: README.rdoc
10
10
11
11
module Minitest
12
- VERSION = "5.20 .0" # :nodoc:
12
+ VERSION = "5.21 .0" # :nodoc:
13
13
14
14
@@installed_at_exit ||= false
15
15
@@after_run = [ ]
You can’t perform that action at this time.
0 commit comments