weixin_39633781 2020-11-30 11:53
浏览 0

Update mocha to the latest version 🚀

The devDependency mocha was updated from 5.2.0 to 6.0.0.

This version is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

Release Notes for v6.0.0

6.0.0 / 2019-02-18

💥 Breaking Changes

  • #3149: Drop Node.js v4.x support ()
  • #3556: Changes to command-line options ():
    • --grep and --fgrep are now mutually exclusive; attempting to use both will cause Mocha to fail instead of simply ignoring --grep
    • --compilers is no longer supported; attempting to use will cause Mocha to fail with a link to more information
    • -d is no longer an alias for --debug; -d is currently ignored
    • #3275: --watch-extensions no longer implies js; it must be explicitly added ()
  • #2908: tap reporter emits error messages ()
  • #2819: When conditionally skipping in a before hook, subsequent before hooks and tests in nested suites are now skipped ()
  • #627: Emit filepath in "timeout exceeded" exceptions where applicable ()
  • #3556: lib/template.html has moved to lib/browser/template.html ()
  • #2576: An exception is now thrown if Mocha fails to parse or find a mocha.opts at a user-specified path ()
  • #3458: Instantiating a Base-extending reporter without a Runner parameter will throw an exception ()
  • #3125: For consumers of Mocha's programmatic API, all exceptions thrown from Mocha now have a code property (and some will have additional metadata). Some Error messages have changed. Please use the code property to check Error types instead of the message property; these descriptions will be localized in the future. ()

📠 Deprecations

These are soft-deprecated, and will emit a warning upon use. Support will be removed in (likely) the next major version of Mocha:

  • -gc users should use --gc-global instead
  • Consumers of the function exported by bin/options should now use the loadMochaOpts or loadOptions (preferred) functions exported by the lib/cli/options module

Regarding the Mocha class constructor (from lib/mocha):

  • Use property color: false instead of useColors: false
  • Use property timeout: false instead of enableTimeouts: false

All of the above deprecations were introduced by #3556.

mocha.opts is now considered "legacy"; please prefer RC file or package.json over mocha.opts.

🎉 Enhancements

  • #3726: Add ability to unload files from require cache ()

Enhancements introduced in #3556:

  • Mocha now supports "RC" files in JS, JSON, YAML, or package.json-based (using mocha property) format

    • .mocharc.js, .mocharc.json, .mocharc.yaml or .mocharc.yml are valid "rc" file names and will be automatically loaded
    • Use --config /path/to/rc/file to specify an explicit path
    • Use --package /path/to/package.json to specify an explicit package.json to read the mocha prop from
    • Use --no-config or --no-package to completely disable loading of configuration via RC file and package.json, respectively
    • Configurations are merged as applicable using the priority list:
      1. Command-line arguments
      2. RC file
      3. package.json
      4. mocha.opts
      5. Mocha's own defaults
    • Check out these example config files
  • Node/V8 flag support in mocha executable:

    • Support all allowed node flags as supported by the running version of node (also thanks to )
    • Support any V8 flag by prepending --v8- to the flag name
    • All flags are also supported via config files, package.json properties, or mocha.opts
    • Debug-related flags (e.g., --inspect) now imply --no-timeouts
    • Use of e.g., --debug will automatically invoke --inspect if supported by running version of node
  • Support negation of any Mocha-specific command-line flag by prepending --no- to the flag name

  • Interfaces now have descriptions when listed using --interfaces flag

  • Mocha constructor supports all options

  • --extension is now an alias for --watch-extensions and affects non-watch-mode test runs as well. For example, to run only test/*.coffee (not test/*.js), you can do mocha --require coffee-script/register --extensions coffee.

  • #3552: tap reporter is now TAP13-capable ( & )

  • #3535: Mocha's version can now be queried programmatically via public property Mocha.prototype.version ()

  • #3428: xunit reporter shows diffs ()

  • #2529: Runner now emits a retry event when tests are retried (reporters can listen for this) ()

  • #2962, #3111: In-browser notification support; warn about missing prereqs when --growl supplied ()

🐛 Fixes

  • #3737: Fix falsy values from options globals ()
  • #3707: Fix encapsulation issues for Suite#_onlyTests and Suite#_onlySuites ()
  • #3711: Fix diagnostic messages dealing with plurality and markup of output ()
  • #3723: Fix "reporter-option" to allow comma-separated options ()
  • #3722: Fix code quality and performance of lookupFiles and files ()
  • #3650, #3654: Fix noisy error message when no files found ()
  • #3632: Tests having an empty title are no longer confused with the "root" suite ()
  • #3666: Fix missing error codes ()
  • #3684: Fix exiting problem in Node.js v11.7.0+ ()
  • #3691: Fix --delay (and other boolean options) not working in all cases ()
  • #3692: Fix invalid command-line argument usage not causing actual errors ()
  • #3698, #3699: Fix debug-related Node.js options not working in all cases ()
  • #3700: Growl notifications now show the correct number of tests run ()
  • #3686: Avoid potential ReDoS when diffing large objects ()
  • #3715: Fix incorrect order of emitted events when used programmatically ()
  • #3706: Fix regression wherein --reporter-option/--reporter-options did not support comma-separated key/value pairs ()
  • Fix missing mocharc.json in published package ()
  • #3356: --no-timeouts and --timeout 0 now does what you'd expect ()
  • #3475: Restore --no-exit option ()
  • #3570: Long-running tests now respect SIGINT ()
  • #2944: --forbid-only and --forbid-pending now "fail fast" when encountered on a suite ()
  • #1652, #2951: Fix broken clamping of timeout values ()
  • #2753: start and end events now emitted properly from Runner instance when using Mocha programmatically ()
  • #2095, #3521: Do not log stdout: prefix in browser console ()
  • #3595: Fix mochajs.org deployment problems ()
  • #3518: Improve utils.isPromise() ()
  • #3320: Fail gracefully when non-extensible objects are thrown in async tests ()
  • #2475: XUnit does not duplicate test result numbers in "errors" and "failures"; "failures" will always be zero ()
  • #3398, #3598, #3457, #3617: Fix regression wherein --bail would not execute "after" nor "after each" hooks ()
  • #3580: Fix potential exception when using XUnit reporter programmatically (-Light)
  • #1304: Do not output color to TERM=dumb ()

📖 Documentation

  • #3525: Improvements to .github/CONTRIBUTING.md ()
  • #3466: Update description of slow option ()
  • #3405: Remove references to bower installations ()
  • #3361: Improvements to --watch docs ()
  • #3136: Improve docs around globbing and shell expansion ()
  • #2819: Update docs around skips and hooks ()
  • Many improvements by
  • #3652: Switch from Jekyll to Eleventy ()

🔩 Other

  • #3677: Add error objects for createUnsupportedError and createInvalidExceptionError ()
  • #3733: Removed unnecessary processing in post-processing hook ()
  • #3730: Update nyc to latest version ()
  • #3648, #3680: Fixes to support latest versions of unexpected and unexpected-sinon ()
  • #3638: Add meta tag to site ()
  • #3653: Fix parts of test suite failing to run on Windows ()
  • #3557: Use ms userland module instead of hand-rolled solution ()
  • Many CI fixes and other refactors by
  • Test refactors by
Commits

The new version differs by 209 commits ahead by 209, behind by 39.

  • 42303e2 Release v6.0.0
  • a553ca7 punctuation updates for changelog v6.0.0
  • c710792 grammar updates for changelog v6.0.0
  • 9f9293a update changelog for v6.0.0
  • a540eb0 remove "projects" section from MAINTAINERS.md [ci skip]
  • 52b5c42 Uppercased JSON reporter name in <code>describe title (#3739)
  • 82307fb Fix <code>.globals to remove falsy values (#3737)
  • 56dc28e Remove unnecessary post-processing code having no effect; closes #3708 (#3733)
  • 16b4281 Documentation updates (#3728)
  • 5d9d3eb Update nyc
  • 118c9ae Refactor out usages of Suite#_onlyTests and Suite#_onlyTests (#3689) (#3707)
  • 0dacd1f Add ability to unload files from <code>require cache (redux) (#3726)
  • 66a52f2 update release steps [ci skip]
  • 45ae014 Refactor <code>lookupFiles and files (#3722)
  • 94c9320 fix --reporter-option to allow comma-separated options; closes #3706

There are 209 commits in total.

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper bot :palm_tree:

该提问来源于开源项目:silentmatt/expr-eval

  • 写回答

7条回答 默认 最新

  • weixin_39633781 2020-11-30 11:53
    关注
    • The devDependency mocha was updated from 5.2.0 to 6.0.1.

    Update to this version instead 🚀

    Release Notes for v6.0.1

    6.0.1 / 2019-02-21

    The obligatory round of post-major-release bugfixes.

    🐛 Fixes

    These issues were regressions.

    • #3754 - Mocha again finds test.js when run without arguments ()
    • #3756 - Mocha again supports third-party interfaces via --ui ()
    • #3755 - Fix broken --watch ()
    • #3759 - Fix unwelcome deprecation notice when Mocha run against languages (CoffeeScript) with implicit return statements; returning a non-undefined value from a describe callback is no longer considered deprecated ()

    📖 Documentation

    • #3738 - Upgrade to /docdash ()
    • #3751 - Use preferred names for example config files ()
    Commits

    The new version differs by 9 commits.

    • 6d3d6b4 Release v6.0.1
    • 2146ece update CHANGELOG.md for v6.0.1
    • 7c9221d backout deprecation of value returned from suite; closes #3744
    • b7cfceb fix --watch not finding any files to execute; closes #3748
    • b836d73 Upgrade docdash version - issue #3663
    • 7926f47 fix --ui issues, closes #3746
    • 00f2ed9 dev dep upgrades from "npm audit" and "npm upgrade"
    • 34afb1a fix(cli/run.js): Revert default glob to match Mocha-5.2
    • 6d5a0db Bring the example congfiguration file in line with the documentation. (#3751)

    See the full diff

    评论

报告相同问题?