Skip to content

Commit e448b46

Browse files
authored
chore(deps): update dependency @types/mocha (#18)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@types/mocha](https://togithub.com/DefinitelyTyped/DefinitelyTyped) | devDependencies | major | [`^5.2.7` -> `^7.0.0`](https://renovatebot.com/diffs/npm/@types%2fmocha/5.2.7/7.0.2) | | [mocha](https://mochajs.org/) ([source](https://togithub.com/mochajs/mocha)) | devDependencies | major | [`^6.2.0` -> `^7.0.0`](https://renovatebot.com/diffs/npm/mocha/6.2.3/7.1.1) | --- ### Release Notes <details> <summary>mochajs/mocha</summary> ### [`v7.1.1`](https://togithub.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;711--2020-03-18) [Compare Source](https://togithub.com/mochajs/mocha/compare/v7.1.0...v7.1.1) #### 🔒 Security Fixes - [#&#8203;4204](https://togithub.com/mochajs/mocha/issues/4204): Update dependencies mkdirp, yargs-parser and yargs ([**@&#8203;juergba**](https://togithub.com/juergba)) #### 🐛 Fixes - [#&#8203;3660](https://togithub.com/mochajs/mocha/issues/3660): Fix `runner` listening to `start` and `end` events ([**@&#8203;juergba**](https://togithub.com/juergba)) #### 📖 Documentation - [#&#8203;4190](https://togithub.com/mochajs/mocha/issues/4190): Show Netlify badge on footer ([**@&#8203;outsideris**](https://togithub.com/outsideris)) ### [`v7.1.0`](https://togithub.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;710--2020-02-26) [Compare Source](https://togithub.com/mochajs/mocha/compare/v7.0.1...v7.1.0) #### 🎉 Enhancements [#&#8203;4038](https://togithub.com/mochajs/mocha/issues/4038): Add Node.js native ESM support ([**@&#8203;giltayar**](https://togithub.com/giltayar)) Mocha supports writing your test files as ES modules: - Node.js only v12.11.0 and above - Node.js below v13.2.0, you must set `--experimental-modules` option - current limitations: please check our [documentation](https://mochajs.org/#nodejs-native-esm-support) - for programmatic usage: see [API: loadFilesAsync()](https://mochajs.org/api/mocha#loadFilesAsync) **Note:** Node.JS native [ECMAScript Modules](https://nodejs.org/api/esm.html) implementation has status: **Stability: 1 - Experimental** #### 🐛 Fixes - [#&#8203;4181](https://togithub.com/mochajs/mocha/issues/4181): Programmatic API cannot access retried test objects ([**@&#8203;juergba**](https://togithub.com/juergba)) - [#&#8203;4174](https://togithub.com/mochajs/mocha/issues/4174): Browser: fix `allowUncaught` option ([**@&#8203;juergba**](https://togithub.com/juergba)) #### 📖 Documentation - [#&#8203;4058](https://togithub.com/mochajs/mocha/issues/4058): Manage author list in AUTHORS instead of `package.json` ([**@&#8203;outsideris**](https://togithub.com/outsideris)) #### 🔩 Other - [#&#8203;4138](https://togithub.com/mochajs/mocha/issues/4138): Upgrade ESLint v6.8 ([**@&#8203;kaicataldo**](https://togithub.com/kaicataldo)) ### [`v7.0.1`](https://togithub.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;701--2020-01-25) [Compare Source](https://togithub.com/mochajs/mocha/compare/v7.0.0...v7.0.1) #### 🐛 Fixes - [#&#8203;4165](https://togithub.com/mochajs/mocha/issues/4165): Fix exception when skipping tests programmatically ([**@&#8203;juergba**](https://togithub.com/juergba)) - [#&#8203;4153](https://togithub.com/mochajs/mocha/issues/4153): Restore backwards compatibility for `reporterOptions` ([**@&#8203;holm**](https://togithub.com/holm)) - [#&#8203;4150](https://togithub.com/mochajs/mocha/issues/4150): Fix recovery of an open test upon uncaught exception ([**@&#8203;juergba**](https://togithub.com/juergba)) - [#&#8203;4147](https://togithub.com/mochajs/mocha/issues/4147): Fix regression of leaking uncaught exception handler ([**@&#8203;juergba**](https://togithub.com/juergba)) #### 📖 Documentation - [#&#8203;4146](https://togithub.com/mochajs/mocha/issues/4146): Update copyright & trademark notices per OJSF ([**@&#8203;boneskull**](https://togithub.com/boneskull)) - [#&#8203;4140](https://togithub.com/mochajs/mocha/issues/4140): Fix broken links ([**@&#8203;KyoungWan**](https://togithub.com/KyoungWan)) #### 🔩 Other - [#&#8203;4133](https://togithub.com/mochajs/mocha/issues/4133): Print more descriptive error message ([**@&#8203;Zirak**](https://togithub.com/Zirak)) ### [`v7.0.0`](https://togithub.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;700--2020-01-05) [Compare Source](https://togithub.com/mochajs/mocha/compare/v6.2.3...v7.0.0) #### 💥 Breaking Changes - [#&#8203;3885](https://togithub.com/mochajs/mocha/issues/3885): **Drop Node.js v6.x support** ([**@&#8203;mojosoeun**](https://togithub.com/mojosoeun)) - [#&#8203;3890](https://togithub.com/mochajs/mocha/issues/3890): Remove Node.js debug-related flags `--debug`/`--debug-brk` and deprecate `debug` argument ([**@&#8203;juergba**](https://togithub.com/juergba)) - [#&#8203;3962](https://togithub.com/mochajs/mocha/issues/3962): Changes to command-line options ([**@&#8203;ParkSB**](https://togithub.com/ParkSB)): - `--list-interfaces` replaces `--interfaces` - `--list-reporters` replaces `--reporters` - Hook pattern of `this.skip()` ([**@&#8203;juergba**](https://togithub.com/juergba)): - [#&#8203;3859](https://togithub.com/mochajs/mocha/issues/3859): When conditionally skipping in a `it` test, related `afterEach` hooks are now executed - [#&#8203;3741](https://togithub.com/mochajs/mocha/issues/3741): When conditionally skipping in a `beforeEach` hook, subsequent inner `beforeEach` hooks are now skipped and related `afterEach` hooks are executed - [#&#8203;4136](https://togithub.com/mochajs/mocha/issues/4136): Disallow `this.skip()` within `after` hooks - [#&#8203;3967](https://togithub.com/mochajs/mocha/issues/3967): Remove deprecated `getOptions()` and `lib/cli/options.js` ([**@&#8203;juergba**](https://togithub.com/juergba)) - [#&#8203;4083](https://togithub.com/mochajs/mocha/issues/4083): Uncaught exception in `pending` test: don't swallow, but retrospectively fail the test for correct exit code ([**@&#8203;juergba**](https://togithub.com/juergba)) - [#&#8203;4004](https://togithub.com/mochajs/mocha/issues/4004): Align `Mocha` constructor's option names with command-line options ([**@&#8203;juergba**](https://togithub.com/juergba)) #### 🎉 Enhancements - [#&#8203;3980](https://togithub.com/mochajs/mocha/issues/3980): Refactor and improve `--watch` mode with chokidar ([**@&#8203;geigerzaehler**](https://togithub.com/geigerzaehler)): - adds command-line options `--watch-files` and `--watch-ignore` - removes `--watch-extensions` - [#&#8203;3979](https://togithub.com/mochajs/mocha/issues/3979): Type "rs\\n" to restart tests ([**@&#8203;broofa**](https://togithub.com/broofa)) #### 📠 Deprecations These are _soft_-deprecated, and will emit a warning upon use. Support will be removed in (likely) the next major version of Mocha: - [#&#8203;3968](https://togithub.com/mochajs/mocha/issues/3968): Deprecate legacy configuration via `mocha.opts` ([**@&#8203;juergba**](https://togithub.com/juergba)) #### 🐛 Fixes - [#&#8203;4125](https://togithub.com/mochajs/mocha/issues/4125): Fix timeout handling with `--inspect-brk`/`--inspect` ([**@&#8203;juergba**](https://togithub.com/juergba)) - [#&#8203;4070](https://togithub.com/mochajs/mocha/issues/4070): `Mocha` constructor: improve browser setup ([**@&#8203;juergba**](https://togithub.com/juergba)) - [#&#8203;4068](https://togithub.com/mochajs/mocha/issues/4068): XUnit reporter should handle exceptions during diff generation ([**@&#8203;rgroothuijsen**](https://togithub.com/rgroothuijsen)) - [#&#8203;4030](https://togithub.com/mochajs/mocha/issues/4030): Fix `--allow-uncaught` with `this.skip()` ([**@&#8203;juergba**](https://togithub.com/juergba)) #### 🔍 Coverage - [#&#8203;4109](https://togithub.com/mochajs/mocha/issues/4109): Add Node.js v13.x to CI test matrix ([**@&#8203;juergba**](https://togithub.com/juergba)) #### 📖 Documentation - [#&#8203;4129](https://togithub.com/mochajs/mocha/issues/4129): Fix broken links ([**@&#8203;SaeromB**](https://togithub.com/SaeromB)) - [#&#8203;4127](https://togithub.com/mochajs/mocha/issues/4127): Add reporter alias names to docs ([**@&#8203;khg0712**](https://togithub.com/khg0712)) - [#&#8203;4101](https://togithub.com/mochajs/mocha/issues/4101): Clarify invalid usage of `done()` ([**@&#8203;jgehrcke**](https://togithub.com/jgehrcke)) - [#&#8203;4092](https://togithub.com/mochajs/mocha/issues/4092): Replace `:coffee:` with emoji ☕️ ([**@&#8203;pzrq**](https://togithub.com/pzrq)) - [#&#8203;4088](https://togithub.com/mochajs/mocha/issues/4088): Initial draft of project charter ([**@&#8203;boneskull**](https://togithub.com/boneskull)) - [#&#8203;4066](https://togithub.com/mochajs/mocha/issues/4066): Change `sh` to `bash` for code block in docs/index.md ([**@&#8203;HyunSangHan**](https://togithub.com/HyunSangHan)) - [#&#8203;4045](https://togithub.com/mochajs/mocha/issues/4045): Update README.md concerning GraphicsMagick installation ([**@&#8203;HyunSangHan**](https://togithub.com/HyunSangHan)) - [#&#8203;3988](https://togithub.com/mochajs/mocha/issues/3988): Fix sponsors background color for readability ([**@&#8203;outsideris**](https://togithub.com/outsideris)) #### 🔩 Other - [#&#8203;4118](https://togithub.com/mochajs/mocha/issues/4118): Update node-environment-flags to 1.0.6 ([**@&#8203;kylef**](https://togithub.com/kylef)) - [#&#8203;4097](https://togithub.com/mochajs/mocha/issues/4097): Add GH Funding Metadata ([**@&#8203;SheetJSDev**](https://togithub.com/SheetJSDev)) - [#&#8203;4089](https://togithub.com/mochajs/mocha/issues/4089): Add funding information to `package.json` ([**@&#8203;Munter**](https://togithub.com/Munter)) - [#&#8203;4077](https://togithub.com/mochajs/mocha/issues/4077): Improve integration tests ([**@&#8203;soobing**](https://togithub.com/soobing)) </details> --- ### Renovate configuration :date: **Schedule**: "after 9am and before 3pm" (UTC). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. :ghost: **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/config-help/issues) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/nodejs-document-ai).
1 parent 827975e commit e448b46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

document-ai/snippets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
},
1919
"devDependencies": {
2020
"chai": "^4.2.0",
21-
"mocha": "^6.2.0"
21+
"mocha": "^7.0.0"
2222
}
2323
}

0 commit comments

Comments
 (0)