Single Hpp File - v.8.9.2
DON'T PANIC!
We expect most of our users to have no problem with this upgrade. Source code is totally backwards-compatible, as long as you don't treat compiler warnings as errors. Even if you do, it only applies when:
- you are passing in a specific reporter, which is usually an infrequent and temporary coding state,
- you call
verifyWithExtension()
.
Deprecating verify(..., Reporter)
This is the second of a series of rapid releases, to make small steps in deprecating passing in a Reporter object, in favor of an Options object, to the verify*()
methods. See Why We Are Converting To Options for easy ways to update your code.
- deprecation warnings are off: users can opt-in (v.8.7.0)
- deprecation warnings are on: users can opt-out (v.8.9.1)
- deprecation warnings are forced, code still exists (v.8.9.2) <== you are here
- the deprecated methods are hidden: users can opt-in
- the deprecated methods are removed
- Breaking changes
- None
- New features
- None
- Bug fixes
- None
- Other changes
APPROVAL_TESTS_SHOW_DEPRECATION_WARNINGS
is now ignored. Warnings are always shown when using theverify*()
methods that took a Reporter.