Releases: approvals/Approvals.NodeJS
Releases · approvals/Approvals.NodeJS
v4.0.0-beta.1
✨ ✨ NEW and Shiny ✨ ✨
- New configuration options:
// Default to `false` - launching each diff tool in the background, failing the test and // moving on to the next test. If `true` will launch the diff tool and block/wait (if diff tool supports this) until // the user exits the diff tool before continuing on with the rest of the tests. blockUntilReporterExits: false, // The number of reporters (diff tools) launched before before approval tests stops launching new reporters. // This is to avoid overloading a system with too many processes. // NOTE: This value is only used if `blockUntilReporterExits` is `false`. maxLaunches: 10
- Per the
maxLaunches
in the config above we do not continue launching diff tools once we've reached themaxLaunches
value (default is10
).
Updates
- Fix an issue where
null
could fail a verify: #85 (Thanks @cuzzlor) - Doc update/fix #95 (Thanks @alexanderbird and @claremacrae)
- Updated various npm dependencies
- Tons of internal refactorings
Updating deps & Change how diff-tools launch
FEEDBACK NEEDED (we're researching in this beta)
- We made a change in 723d3fa that launches reporters synchronously (needs feedback)
Updates
- Fix an issue where
null
could fail a verify: #85 (Thanks @cuzzlor) - Doc update/fix #95 (Thanks @alexanderbird)
- Updated dependencies
v3.0.5
v2.1.2
v2.1.1
readme update
v2.1.0
Updated docs and help for the approvals CLI too.
v2.0.0
- Added ability to approve
png
images - Fixed #30
- Fixed #59
- Fixed #60
- Added
diffmerge
reporter - Updated
beyondcompare
to look for more versions/file paths. - Added
multi
(MultiReporter
for running multiple reporters at the same time) - Added initial scrubbers support (#62)
- Added
copycommand
reporter. - Lots of docs updates and additions.
v1.4.0
v1.3.0
- Added ability to configure line endings
- Thanks to a PR from
Xenon
for getting this project to throw properError
objects instead of strings. - Lots of dependencies updated.
v1.1.2
In v1.1.1
we removed the __dirname
parameter from .mocha(__dirname)
- and in this we'll add it back with a more backwards compatible update. So, while it's not required, if you do pass in a value, we'll use that.