|
| 1 | +# 1.8.2 |
| 2 | + |
| 3 | + |
| 4 | +### Improvements and minor changes |
| 5 | +* TAP reporter now behaves as if `-s` was always set |
| 6 | + * This should be more consistent with the protocol desired behaviour. |
| 7 | +* Compact reporter now obeys `-d yes` argument (#780) |
| 8 | + * The format is "XXX.123 s: <section-name>" (3 decimal places are always present). |
| 9 | + * Before it did not report the durations at all. |
| 10 | +* XML reporter now behaves the same way as Console reporter in regards to `INFO` |
| 11 | + * This means it reports `INFO` messages on success, if output on success (`-s`) is enabled. |
| 12 | + * Previously it only reported `INFO` messages on failure. |
| 13 | +* `CAPTURE(expr)` now stringifies `expr` in the same way assertion macros do (#639) |
| 14 | +* Listeners are now finally [documented](event-listeners.md). |
| 15 | + * Listeners provide a way to hook into events generated by running your tests, including start and end of run, every test case, every section and every assertion. |
| 16 | + |
| 17 | + |
| 18 | +### Fixes: |
| 19 | +* Catch no longer attempts to reconstruct expression that led to a fatal error (#810) |
| 20 | + * This fixes possible signal/SEH loop when processing expressions, where the signal was triggered by expression decomposition. |
| 21 | +* Fixed (C4265) missing virtual destructor warning in Matchers (#844) |
| 22 | +* `std::string`s are now taken by `const&` everywhere (#842). |
| 23 | + * Previously some places were taking them by-value. |
| 24 | +* Catch should no longer change errno (#835). |
| 25 | + * This was caused by libstdc++ bug that we now work around. |
| 26 | +* Catch now provides `FAIL_CHECK( ... )` macro (#765). |
| 27 | + * Same as `FAIL( ... )`, but does not abort the test. |
| 28 | +* Functions like `fabs`, `tolower`, `memset`, `isalnum` are now used with `std::` qualification (#543). |
| 29 | +* Clara no longer assumes first argument (binary name) is always present (#729) |
| 30 | + * If it is missing, empty string is used as default. |
| 31 | +* Clara no longer reads 1 character past argument string (#830) |
| 32 | + |
| 33 | + |
| 34 | +### Other notes: |
| 35 | +* We have added VS 2013 and 2015 to our CI |
| 36 | +* Catch Classic (1.x.x) now contains its own, forked, version of Clara (the argument parser). |
| 37 | + |
| 38 | + |
| 39 | + |
1 | 40 | # 1.8.1
|
2 | 41 |
|
3 | 42 | ### Fixes
|
|
0 commit comments