Skip to content

Releases: mochajs/mocha

v9.1.3

15 Oct 07:36
Compare
Choose a tag to compare

9.1.3 / 2021-10-15

Please also note our announcements.

🐛 Fixes

🔩 Other

v9.1.2

25 Sep 08:43
Compare
Choose a tag to compare

9.1.2 / 2021-09-25

Please also note our announcements.

🐛 Fixes

🔩 Other

v9.1.1

28 Aug 13:57
Compare
Choose a tag to compare

9.1.1 / 2021-08-28

Please also note our announcements.

🐛 Fixes

v9.1.0

20 Aug 07:30
Compare
Choose a tag to compare

9.1.0 / 2021-08-20

Please also note our announcements.

🎉 Enhancements

v9.0.3

25 Jul 16:17
Compare
Choose a tag to compare

9.0.3 / 2021-07-25

🐛 Fixes

  • #4702: Error rethrow from cwd-relative path while loading .mocharc.js (@kirill-golovan)

  • #4688: Usage of custom interface in parallel mode (@juergba)

  • #4687: ESM: don't swallow MODULE_NOT_FOUND errors in case of type:module (@giltayar)

v9.0.2

03 Jul 08:30
Compare
Choose a tag to compare

9.0.2 / 2021-07-03

🐛 Fixes

  • #4668: ESM: make --require <dir> work with new import-first loading (@giltayar)

🔩 Other

v9.0.1

18 Jun 07:38
Compare
Choose a tag to compare

9.0.1 / 2021-06-18

🔩 Other

  • #4657: Browser: add separate bundle for modern browsers (@juergba)

We added a separate browser bundle mocha-es2018.js in javascript ES2018, as we skipped the transpilation down to ES5. This is an experimental step towards freezing Mocha's support of IE11.

v9.0.0

07 Jun 15:47
Compare
Choose a tag to compare

9.0.0 / 2021-06-07

💥 Breaking Changes

Mocha is going ESM-first! This means that it will now use ESM import(test_file) to load the test files, instead of the CommonJS require(test_file). This is not a problem, as import can also load most files that require does. In the rare cases where this fails, it will fallback to require(...). This ESM-first approach is the next step in Mocha's ESM migration, and allows ESM loaders to load and transform the test file.

  • #4636: Remove deprecated utils.lookupFiles() (@juergba)

  • #4638: Limit the size of actual/expected for diff generation (@juergba)

  • #4389: Refactoring: Consuming log-symbols alternate to code for win32 in reporters/base (@MoonSupport)

🎉 Enhancements

🐛 Fixes

  • #4128: Fix: control stringification of error message (@syeutyu)

🔩 Other

v8.4.0

07 May 08:32
Compare
Choose a tag to compare

8.4.0 / 2021-05-07

🎉 Enhancements

🐛 Fixes

📖 Documentation

  • #4630: Add options.require to Mocha constructor for root hook plugins on parallel runs (@juergba)
  • #4617: Dynamically generating tests with top-level await and ESM test files (@juergba)
  • #4608: Update default file extensions (@outsideris)

Also thanks to @outsideris for various improvements on our GH actions workflows.

v8.3.2

12 Mar 08:26
Compare
Choose a tag to compare

8.3.2 / 2021-03-12

🐛 Fixes

📖 Documentation