| Martin Hořeňovský | 0c015aa | 2017-03-13 21:29:30 +0100 | [diff] [blame] | 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 | |
| Phil Nash | 658b5f6 | 2017-03-01 16:06:48 +0000 | [diff] [blame] | 40 | # 1.8.1 |
| 41 | |
| 42 | ### Fixes |
| 43 | |
| 44 | Cygwin issue with `gettimeofday` - `#define` was not early enough |
| 45 | |
| Phil Nash | 0952b76 | 2017-02-28 14:19:09 +0000 | [diff] [blame] | 46 | # 1.8.0 |
| 47 | |
| 48 | ### New features/ minor changes |
| 49 | |
| 50 | * Matchers have new, simpler (and documented) interface. |
| 51 | * Catch provides string and vector matchers. |
| Martin Hořeňovský | 95fc8d6 | 2017-03-13 21:31:26 +0100 | [diff] [blame^] | 52 | * For details see [Matchers documentation](matchers.md). |
| Phil Nash | 0952b76 | 2017-02-28 14:19:09 +0000 | [diff] [blame] | 53 | * Changed console reporter test duration reporting format (#322) |
| 54 | * Old format: `Some simple comparisons between doubles completed in 0.000123s` |
| 55 | * New format: `xxx.123s: Some simple comparisons between doubles` _(There will always be exactly 3 decimal places)_ |
| 56 | * Added opt-in leak detection under MSVC + Windows (#439) |
| 57 | * Enable it by compiling Catch's main with `CATCH_CONFIG_WINDOWS_CRTDBG` |
| 58 | * Introduced new compile-time flag, `CATCH_CONFIG_FAST_COMPILE`, trading features for compilation speed. |
| Martin Hořeňovský | af1ed70 | 2017-03-03 15:03:23 +0100 | [diff] [blame] | 59 | * Moves debug breaks out of tests and into implementation, speeding up test compilation time (~10% on linux). |
| Phil Nash | 0952b76 | 2017-02-28 14:19:09 +0000 | [diff] [blame] | 60 | * _More changes are coming_ |
| 61 | * Added [TAP (Test Anything Protocol)](https://testanything.org/) and [Automake](https://www.gnu.org/software/automake/manual/html_node/Log-files-generation-and-test-results-recording.html#Log-files-generation-and-test-results-recording) reporters. |
| 62 | * These are not present in the default single-include header and need to be downloaded from GitHub separately. |
| Phil Nash | 417202b | 2017-03-01 08:22:38 +0000 | [diff] [blame] | 63 | * For details see [documentation about integrating with build systems](build-systems.md). |
| Phil Nash | 0952b76 | 2017-02-28 14:19:09 +0000 | [diff] [blame] | 64 | * XML reporter now reports filename as part of the `Section` and `TestCase` tags. |
| 65 | * `Approx` now supports an optional margin of absolute error |
| Martin Hořeňovský | 95fc8d6 | 2017-03-13 21:31:26 +0100 | [diff] [blame^] | 66 | * It has also received [new documentation](assertions.md). |
| Phil Nash | 0952b76 | 2017-02-28 14:19:09 +0000 | [diff] [blame] | 67 | |
| 68 | ### Fixes |
| 69 | * Silenced C4312 ("conversion from int to 'ClassName *") warnings in the evaluate layer. |
| 70 | * Fixed C4512 ("assignment operator could not be generated") warnings under VS2013. |
| 71 | * Cygwin compatibility fixes |
| 72 | * Signal handling is no longer compiled by default. |
| 73 | * Usage of `gettimeofday` inside Catch should no longer cause compilation errors. |
| 74 | * Improved `-Wparentheses` supression for gcc (#674) |
| 75 | * When compiled with gcc 4.8 or newer, the supression is localized to assertions only |
| 76 | * Otherwise it is supressed for the whole TU |
| 77 | * Fixed test spec parser issue (with escapes in multiple names) |
| 78 | |
| 79 | ### Other |
| 80 | * Various documentation fixes and improvements |
| 81 | |
| 82 | |
| Phil Nash | d08cee2 | 2017-02-13 16:15:42 +0000 | [diff] [blame] | 83 | # 1.7.2 |
| 84 | |
| 85 | ### Fixes and minor improvements |
| 86 | Xml: |
| 87 | |
| 88 | (technically the first two are breaking changes but are also fixes and arguably break few if any people) |
| 89 | * C-escape control characters instead of XML encoding them (which requires XML 1.1) |
| 90 | * Revert XML output to XML 1.0 |
| 91 | * Can provide stylesheet references by extending the XML reporter |
| 92 | * Added description and tags attribites to XML Reporter |
| 93 | * Tags are closed and the stream flushed more eagerly to avoid stdout interpolation |
| 94 | |
| 95 | |
| 96 | Other: |
| 97 | * `REQUIRE_THROWS_AS` now catches exception by `const&` and reports expected type |
| 98 | * In `SECTION`s the file/ line is now of the `SECTION`. not the `TEST_CASE` |
| 99 | * Added std:: qualification to some functions from C stdlib |
| 100 | * Removed use of RTTI (`dynamic_cast`) that had crept back in |
| 101 | * Silenced a few more warnings in different circumstances |
| 102 | * Travis improvements |
| 103 | |
| Martin Hořeňovský | 7b8a27e | 2017-02-07 10:06:52 +0100 | [diff] [blame] | 104 | # 1.7.1 |
| 105 | |
| 106 | ### Fixes: |
| 107 | * Fixed inconsistency in defining `NOMINMAX` and `WIN32_LEAN_AND_MEAN` inside `catch.hpp`. |
| 108 | * Fixed SEH-related compilation error under older MinGW compilers, by making Windows SEH handling opt-in for compilers other than MSVC. |
| Martin Hořeňovský | 95fc8d6 | 2017-03-13 21:31:26 +0100 | [diff] [blame^] | 109 | * For specifics, look into the [documentation](configuration.md). |
| Martin Hořeňovský | 7b8a27e | 2017-02-07 10:06:52 +0100 | [diff] [blame] | 110 | * Fixed compilation error under MinGW caused by improper compiler detection. |
| 111 | * Fixed XML reporter sometimes leaving an empty output file when a test ends with signal/structured exception. |
| 112 | * Fixed XML reporter not reporting captured stdout/stderr. |
| 113 | * Fixed possible infinite recursion in Windows SEH. |
| 114 | * Fixed possible compilation error caused by Catch's operator overloads being ambiguous in regards to user-defined templated operators. |
| 115 | |
| Martin Hořeňovský | 7b8a27e | 2017-02-07 10:06:52 +0100 | [diff] [blame] | 116 | ## 1.7.0 |
| Martin Hořeňovský | ce37f48 | 2017-02-01 21:47:43 +0100 | [diff] [blame] | 117 | |
| 118 | ### Features/ Changes: |
| 119 | * Catch now runs significantly faster for passing tests |
| 120 | * Microbenchmark focused on Catch's overhead went from ~3.4s to ~0.7s. |
| 121 | * Real world test using [JSON for Modern C++](https://github.com/nlohmann/json)'s test suite went from ~6m 25s to ~4m 14s. |
| 122 | * Catch can now run specific sections within test cases. |
| Martin Hořeňovský | 95fc8d6 | 2017-03-13 21:31:26 +0100 | [diff] [blame^] | 123 | * For now the support is only basic (no wildcards or tags), for details see the [documentation](command-line.md). |
| Martin Hořeňovský | ce37f48 | 2017-02-01 21:47:43 +0100 | [diff] [blame] | 124 | * Catch now supports SEH on Windows as well as signals on Linux. |
| 125 | * After receiving a signal, Catch reports failing assertion and then passes the signal onto the previous handler. |
| 126 | * Approx can be used to compare values against strong typedefs (available in C++11 mode only). |
| 127 | * Strong typedefs mean types that are explicitly convertible to double. |
| 128 | * CHECK macro no longer stops executing section if an exception happens. |
| 129 | * Certain characters (space, tab, etc) are now pretty printed. |
| 130 | * This means that a `char c = ' '; REQUIRE(c == '\t');` would be printed as `' ' == '\t'`, instead of ` == 9`. |
| 131 | |
| 132 | ### Fixes: |
| 133 | * Text formatting no longer attempts to access out-of-bounds characters under certain conditions. |
| 134 | * THROW family of assertions no longer trigger `-Wunused-value` on expressions containing explicit cast. |
| 135 | * Breaking into debugger under OS X works again and no longer required `DEBUG` to be defined. |
| 136 | * Compilation no longer breaks under certain compiler if a lambda is used inside assertion macro. |
| 137 | |
| 138 | ### Other: |
| 139 | * Catch's CMakeLists now defines install command. |
| 140 | * Catch's CMakeLists now generates projects with warnings enabled. |
| 141 | |
| 142 | |
| Martin Hořeňovský | ce37f48 | 2017-02-01 21:47:43 +0100 | [diff] [blame] | 143 | ## 1.6.1 |
| Martin Hořeňovský | 9a56609 | 2017-01-20 12:49:59 +0100 | [diff] [blame] | 144 | |
| 145 | ### Features/ Changes: |
| 146 | * Catch now supports breaking into debugger on Linux |
| 147 | |
| 148 | ### Fixes: |
| 149 | * Generators no longer leak memory (generators are still unsupported in general) |
| 150 | * JUnit reporter now reports UTC timestamps, instead of "tbd" |
| 151 | * `CHECK_THAT` macro is now properly defined as `CATCH_CHECK_THAT` when using `CATCH_` prefixed macros |
| 152 | |
| 153 | ### Other: |
| 154 | * Types with overloaded `&&` operator are no longer evaluated twice when used in an assertion macro. |
| 155 | * The use of `__COUNTER__` is supressed when Catch is parsed by CLion |
| 156 | * This change is not active when compiling a binary |
| 157 | * Approval tests can now be run on Windows |
| 158 | * CMake will now warn if a file is present in the `include` folder but not is not enumerated as part of the project |
| 159 | * Catch now defines `NOMINMAX` and `WIN32_LEAN_AND_MEAN` before including `windows.h` |
| Martin Hořeňovský | 95fc8d6 | 2017-03-13 21:31:26 +0100 | [diff] [blame^] | 160 | * This can be disabled if needed, see [documentation](configuration.md) for details. |
| Martin Hořeňovský | 9a56609 | 2017-01-20 12:49:59 +0100 | [diff] [blame] | 161 | |
| 162 | |
| Martin Hořeňovský | 9a56609 | 2017-01-20 12:49:59 +0100 | [diff] [blame] | 163 | ## 1.6.0 |
| Phil Nash | 3b2f206 | 2017-01-11 16:43:56 +0000 | [diff] [blame] | 164 | |
| 165 | ### Cmake/ projects: |
| 166 | * Moved CMakeLists.txt to root, made it friendlier for CLion and generating XCode and VS projects, and removed the manually maintained XCode and VS projects. |
| 167 | |
| 168 | ### Features/ Changes: |
| Phil Nash | 1ff0acf | 2017-01-11 16:50:35 +0000 | [diff] [blame] | 169 | * Approx now supports `>=` and `<=` |
| 170 | * Can now use `\` to escape chars in test names on command line |
| Phil Nash | 3b2f206 | 2017-01-11 16:43:56 +0000 | [diff] [blame] | 171 | * Standardize C++11 feature toggles |
| 172 | |
| 173 | ### Fixes: |
| 174 | * Blue shell colour |
| Phil Nash | 1ff0acf | 2017-01-11 16:50:35 +0000 | [diff] [blame] | 175 | * Missing argument to `CATCH_CHECK_THROWS` |
| Phil Nash | 3b2f206 | 2017-01-11 16:43:56 +0000 | [diff] [blame] | 176 | * Don't encode extended ASCII in XML |
| Phil Nash | e6aa1f4 | 2017-01-11 17:14:28 +0000 | [diff] [blame] | 177 | * use `std::shuffle` on more compilers (fixes deprecation warning/error) |
| Phil Nash | 1ff0acf | 2017-01-11 16:50:35 +0000 | [diff] [blame] | 178 | * Use `__COUNTER__` more consistently (where available) |
| Phil Nash | 3b2f206 | 2017-01-11 16:43:56 +0000 | [diff] [blame] | 179 | |
| 180 | ### Other: |
| 181 | * Tweaks and changes to scripts - particularly for Approval test - to make them more portable |
| 182 | |
| Phil Nash | 3b2f206 | 2017-01-11 16:43:56 +0000 | [diff] [blame] | 183 | |
| Phil Nash | 0952b76 | 2017-02-28 14:19:09 +0000 | [diff] [blame] | 184 | # Older versions |
| 185 | Release notes were not maintained prior to v1.6.0, but you should be able to work them out from the Git history |
| 186 | |
| Phil Nash | 3b2f206 | 2017-01-11 16:43:56 +0000 | [diff] [blame] | 187 | --- |
| 188 | |
| 189 | [Home](Readme.md) |