Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate code from googleapis/nodejs-service-directory #2863

Merged
merged 37 commits into from
Nov 17, 2022

Conversation

unforced
Copy link
Contributor

bcoe and others added 30 commits March 13, 2020 11:59
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@types/mocha](https://github.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://github.com/mochajs/mocha)) | devDependencies | major | [`^6.1.4` -> `^7.0.0`](https://renovatebot.com/diffs/npm/mocha/6.2.2/7.1.0) |

---

### Release Notes

<details>
<summary>mochajs/mocha</summary>

### [`v7.1.0`](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;710--2020-02-26)

[Compare Source](https://github.com/mochajs/mocha/compare/v7.0.1...v7.1.0)

#### 🎉 Enhancements

[#&#8203;4038](https://github.com/mochajs/mocha/issues/4038): Add Node.js native ESM support ([**@&#8203;giltayar**](https://github.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://github.com/mochajs/mocha/issues/4181): Programmatic API cannot access retried test objects ([**@&#8203;juergba**](https://github.com/juergba))
-   [#&#8203;4174](https://github.com/mochajs/mocha/issues/4174): Browser: fix `allowUncaught` option ([**@&#8203;juergba**](https://github.com/juergba))

#### 📖 Documentation

-   [#&#8203;4058](https://github.com/mochajs/mocha/issues/4058): Manage author list in AUTHORS instead of `package.json` ([**@&#8203;outsideris**](https://github.com/outsideris))

#### 🔩 Other

-   [#&#8203;4138](https://github.com/mochajs/mocha/issues/4138): Upgrade ESLint v6.8 ([**@&#8203;kaicataldo**](https://github.com/kaicataldo))

### [`v7.0.1`](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;701--2020-01-25)

[Compare Source](https://github.com/mochajs/mocha/compare/v7.0.0...v7.0.1)

#### 🐛 Fixes

-   [#&#8203;4165](https://github.com/mochajs/mocha/issues/4165): Fix exception when skipping tests programmatically ([**@&#8203;juergba**](https://github.com/juergba))
-   [#&#8203;4153](https://github.com/mochajs/mocha/issues/4153): Restore backwards compatibility for `reporterOptions` ([**@&#8203;holm**](https://github.com/holm))
-   [#&#8203;4150](https://github.com/mochajs/mocha/issues/4150): Fix recovery of an open test upon uncaught exception ([**@&#8203;juergba**](https://github.com/juergba))
-   [#&#8203;4147](https://github.com/mochajs/mocha/issues/4147): Fix regression of leaking uncaught exception handler ([**@&#8203;juergba**](https://github.com/juergba))

#### 📖 Documentation

-   [#&#8203;4146](https://github.com/mochajs/mocha/issues/4146): Update copyright & trademark notices per OJSF ([**@&#8203;boneskull**](https://github.com/boneskull))
-   [#&#8203;4140](https://github.com/mochajs/mocha/issues/4140): Fix broken links ([**@&#8203;KyoungWan**](https://github.com/KyoungWan))

#### 🔩 Other

-   [#&#8203;4133](https://github.com/mochajs/mocha/issues/4133): Print more descriptive error message ([**@&#8203;Zirak**](https://github.com/Zirak))

### [`v7.0.0`](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;700--2020-01-05)

[Compare Source](https://github.com/mochajs/mocha/compare/v6.2.2...v7.0.0)

#### 💥 Breaking Changes

-   [#&#8203;3885](https://github.com/mochajs/mocha/issues/3885): **Drop Node.js v6.x support** ([**@&#8203;mojosoeun**](https://github.com/mojosoeun))
-   [#&#8203;3890](https://github.com/mochajs/mocha/issues/3890): Remove Node.js debug-related flags `--debug`/`--debug-brk` and deprecate `debug` argument ([**@&#8203;juergba**](https://github.com/juergba))
-   [#&#8203;3962](https://github.com/mochajs/mocha/issues/3962): Changes to command-line options ([**@&#8203;ParkSB**](https://github.com/ParkSB)):
    -   `--list-interfaces` replaces `--interfaces`
    -   `--list-reporters` replaces `--reporters`
-   Hook pattern of `this.skip()` ([**@&#8203;juergba**](https://github.com/juergba)):
    -   [#&#8203;3859](https://github.com/mochajs/mocha/issues/3859): When conditionally skipping in a `it` test, related `afterEach` hooks are now executed
    -   [#&#8203;3741](https://github.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://github.com/mochajs/mocha/issues/4136): Disallow `this.skip()` within `after` hooks
-   [#&#8203;3967](https://github.com/mochajs/mocha/issues/3967): Remove deprecated `getOptions()` and `lib/cli/options.js` ([**@&#8203;juergba**](https://github.com/juergba))
-   [#&#8203;4083](https://github.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://github.com/juergba))
-   [#&#8203;4004](https://github.com/mochajs/mocha/issues/4004): Align `Mocha` constructor's option names with command-line options ([**@&#8203;juergba**](https://github.com/juergba))

#### 🎉 Enhancements

-   [#&#8203;3980](https://github.com/mochajs/mocha/issues/3980): Refactor and improve `--watch` mode with chokidar ([**@&#8203;geigerzaehler**](https://github.com/geigerzaehler)):
    -   adds command-line options `--watch-files` and `--watch-ignore`
    -   removes `--watch-extensions`
-   [#&#8203;3979](https://github.com/mochajs/mocha/issues/3979): Type "rs\\n" to restart tests ([**@&#8203;broofa**](https://github.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://github.com/mochajs/mocha/issues/3968): Deprecate legacy configuration via `mocha.opts` ([**@&#8203;juergba**](https://github.com/juergba))

#### 🐛 Fixes

-   [#&#8203;4125](https://github.com/mochajs/mocha/issues/4125): Fix timeout handling with `--inspect-brk`/`--inspect` ([**@&#8203;juergba**](https://github.com/juergba))
-   [#&#8203;4070](https://github.com/mochajs/mocha/issues/4070): `Mocha` constructor: improve browser setup ([**@&#8203;juergba**](https://github.com/juergba))
-   [#&#8203;4068](https://github.com/mochajs/mocha/issues/4068): XUnit reporter should handle exceptions during diff generation ([**@&#8203;rgroothuijsen**](https://github.com/rgroothuijsen))
-   [#&#8203;4030](https://github.com/mochajs/mocha/issues/4030): Fix `--allow-uncaught` with `this.skip()` ([**@&#8203;juergba**](https://github.com/juergba))

#### 🔍 Coverage

-   [#&#8203;4109](https://github.com/mochajs/mocha/issues/4109): Add Node.js v13.x to CI test matrix ([**@&#8203;juergba**](https://github.com/juergba))

#### 📖 Documentation

-   [#&#8203;4129](https://github.com/mochajs/mocha/issues/4129): Fix broken links ([**@&#8203;SaeromB**](https://github.com/SaeromB))
-   [#&#8203;4127](https://github.com/mochajs/mocha/issues/4127): Add reporter alias names to docs ([**@&#8203;khg0712**](https://github.com/khg0712))
-   [#&#8203;4101](https://github.com/mochajs/mocha/issues/4101): Clarify invalid usage of `done()` ([**@&#8203;jgehrcke**](https://github.com/jgehrcke))
-   [#&#8203;4092](https://github.com/mochajs/mocha/issues/4092): Replace `:coffee:` with emoji ☕️ ([**@&#8203;pzrq**](https://github.com/pzrq))
-   [#&#8203;4088](https://github.com/mochajs/mocha/issues/4088): Initial draft of project charter ([**@&#8203;boneskull**](https://github.com/boneskull))
-   [#&#8203;4066](https://github.com/mochajs/mocha/issues/4066): Change `sh` to `bash` for code block in docs/index.md ([**@&#8203;HyunSangHan**](https://github.com/HyunSangHan))
-   [#&#8203;4045](https://github.com/mochajs/mocha/issues/4045): Update README.md concerning GraphicsMagick installation ([**@&#8203;HyunSangHan**](https://github.com/HyunSangHan))
-   [#&#8203;3988](https://github.com/mochajs/mocha/issues/3988): Fix sponsors background color for readability ([**@&#8203;outsideris**](https://github.com/outsideris))

#### 🔩 Other

-   [#&#8203;4118](https://github.com/mochajs/mocha/issues/4118): Update node-environment-flags to 1.0.6 ([**@&#8203;kylef**](https://github.com/kylef))
-   [#&#8203;4097](https://github.com/mochajs/mocha/issues/4097): Add GH Funding Metadata ([**@&#8203;SheetJSDev**](https://github.com/SheetJSDev))
-   [#&#8203;4089](https://github.com/mochajs/mocha/issues/4089): Add funding information to `package.json` ([**@&#8203;Munter**](https://github.com/Munter))
-   [#&#8203;4077](https://github.com/mochajs/mocha/issues/4077): Improve integration tests ([**@&#8203;soobing**](https://github.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://github.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-service-directory).
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [c8](https://github.com/bcoe/c8) | devDependencies | major | [`^5.0.1` -> `^7.0.0`](https://renovatebot.com/diffs/npm/c8/5.0.4/7.1.0) |

---

### Release Notes

<details>
<summary>bcoe/c8</summary>

### [`v7.1.0`](https://github.com/bcoe/c8/blob/master/CHANGELOG.md#&#8203;710httpswwwgithubcombcoec8comparev701v710-2020-02-09)

[Compare Source](https://github.com/bcoe/c8/compare/v7.0.1...v7.1.0)

##### Features

-   adds TypeScript definitions ([d39801b](https://github.com/bcoe/c8/commit/d39801bc9b2713aa56592010e6394a295bd12b0b)), closes [#&#8203;195](https://github.com/bcoe/c8/issues/195)

##### Bug Fixes

-   **deps:** update dependency furi to v2 ([#&#8203;193](https://github.com/bcoe/c8/issues/193)) ([6b9af6e](https://github.com/bcoe/c8/commit/6b9af6ee8cbbacd85eea91dc49bb269fe3651c12))
-   **deps:** v8-to-istanbul with patch for crasher ([#&#8203;200](https://github.com/bcoe/c8/issues/200)) ([d4b7d80](https://github.com/bcoe/c8/commit/d4b7d80d78f3d1cb2e9a2e9e106af0cef327b446))

##### [7.0.1](https://github.com/bcoe/c8/compare/v7.0.0...v7.0.1) (2020-01-13)

##### Bug Fixes

-   all flag not propagated to check-coverage command ([#&#8203;188](https://github.com/bcoe/c8/issues/188)) ([86eaf72](https://github.com/bcoe/c8/commit/86eaf72a8c7af93d6ec9699b741d11df50017a8d))

### [`v7.0.1`](https://github.com/bcoe/c8/blob/master/CHANGELOG.md#&#8203;710httpswwwgithubcombcoec8comparev701v710-2020-02-09)

[Compare Source](https://github.com/bcoe/c8/compare/v7.0.0...v7.0.1)

##### Features

-   adds TypeScript definitions ([d39801b](https://github.com/bcoe/c8/commit/d39801bc9b2713aa56592010e6394a295bd12b0b)), closes [#&#8203;195](https://github.com/bcoe/c8/issues/195)

##### Bug Fixes

-   **deps:** update dependency furi to v2 ([#&#8203;193](https://github.com/bcoe/c8/issues/193)) ([6b9af6e](https://github.com/bcoe/c8/commit/6b9af6ee8cbbacd85eea91dc49bb269fe3651c12))
-   **deps:** v8-to-istanbul with patch for crasher ([#&#8203;200](https://github.com/bcoe/c8/issues/200)) ([d4b7d80](https://github.com/bcoe/c8/commit/d4b7d80d78f3d1cb2e9a2e9e106af0cef327b446))

##### [7.0.1](https://github.com/bcoe/c8/compare/v7.0.0...v7.0.1) (2020-01-13)

##### Bug Fixes

-   all flag not propagated to check-coverage command ([#&#8203;188](https://github.com/bcoe/c8/issues/188)) ([86eaf72](https://github.com/bcoe/c8/commit/86eaf72a8c7af93d6ec9699b741d11df50017a8d))

### [`v7.0.0`](https://github.com/bcoe/c8/blob/master/CHANGELOG.md#&#8203;700httpswwwgithubcombcoec8comparev601v700-2019-12-22)

[Compare Source](https://github.com/bcoe/c8/compare/v6.0.1...v7.0.0)

##### ⚠ BREAKING CHANGES

-   new test-exclude with modified exclude rules ([#&#8203;179](https://github.com/bcoe/c8/issues/179))
-   **istanbul-reports:** lcov reports now use relative paths ([#&#8203;168](https://github.com/bcoe/c8/issues/168))

##### Features

-   adds --all functionality ([#&#8203;158](https://github.com/bcoe/c8/issues/158)) ([2eb631e](https://github.com/bcoe/c8/commit/2eb631e460eba3d06925ee1d128e0db82ec50b6c))
-   **istanbul-reports:** lcov reports now use relative paths ([#&#8203;168](https://github.com/bcoe/c8/issues/168)) ([35d9338](https://github.com/bcoe/c8/commit/35d9338b69ba803c19a19d16ff601e3ec5692fa6))
-   new test-exclude with modified exclude rules ([#&#8203;179](https://github.com/bcoe/c8/issues/179)) ([af7d94d](https://github.com/bcoe/c8/commit/af7d94d715ab98d67e6b5bff5dfba19430681c9c))

##### Bug Fixes

-   **deps:** update dependency v8-to-istanbul to v4 ([#&#8203;167](https://github.com/bcoe/c8/issues/167)) ([97b9769](https://github.com/bcoe/c8/commit/97b97699870ddc4af780cedb25cbb3a87e0eb777))
-   **deps:** update dependency yargs to v15 ([#&#8203;164](https://github.com/bcoe/c8/issues/164)) ([e41a483](https://github.com/bcoe/c8/commit/e41a4831aac92591f303d48038a327e9631affee))
-   **deps:** update dependency yargs-parser to v16 ([#&#8203;157](https://github.com/bcoe/c8/issues/157)) ([15746e5](https://github.com/bcoe/c8/commit/15746e51640e6e172f27f02c12056e2977342005))

##### [6.0.1](https://github.com/bcoe/c8/compare/v6.0.0...v6.0.1) (2019-10-26)

##### Bug Fixes

-   regex flags in dependency were breaking Node 8 ([a9d9645](https://github.com/bcoe/c8/commit/a9d9645858031cee985087828f5e04cfd8922868))

### [`v6.0.1`](https://github.com/bcoe/c8/blob/master/CHANGELOG.md#&#8203;700httpswwwgithubcombcoec8comparev601v700-2019-12-22)

[Compare Source](https://github.com/bcoe/c8/compare/v6.0.0...v6.0.1)

##### ⚠ BREAKING CHANGES

-   new test-exclude with modified exclude rules ([#&#8203;179](https://github.com/bcoe/c8/issues/179))
-   **istanbul-reports:** lcov reports now use relative paths ([#&#8203;168](https://github.com/bcoe/c8/issues/168))

##### Features

-   adds --all functionality ([#&#8203;158](https://github.com/bcoe/c8/issues/158)) ([2eb631e](https://github.com/bcoe/c8/commit/2eb631e460eba3d06925ee1d128e0db82ec50b6c))
-   **istanbul-reports:** lcov reports now use relative paths ([#&#8203;168](https://github.com/bcoe/c8/issues/168)) ([35d9338](https://github.com/bcoe/c8/commit/35d9338b69ba803c19a19d16ff601e3ec5692fa6))
-   new test-exclude with modified exclude rules ([#&#8203;179](https://github.com/bcoe/c8/issues/179)) ([af7d94d](https://github.com/bcoe/c8/commit/af7d94d715ab98d67e6b5bff5dfba19430681c9c))

##### Bug Fixes

-   **deps:** update dependency v8-to-istanbul to v4 ([#&#8203;167](https://github.com/bcoe/c8/issues/167)) ([97b9769](https://github.com/bcoe/c8/commit/97b97699870ddc4af780cedb25cbb3a87e0eb777))
-   **deps:** update dependency yargs to v15 ([#&#8203;164](https://github.com/bcoe/c8/issues/164)) ([e41a483](https://github.com/bcoe/c8/commit/e41a4831aac92591f303d48038a327e9631affee))
-   **deps:** update dependency yargs-parser to v16 ([#&#8203;157](https://github.com/bcoe/c8/issues/157)) ([15746e5](https://github.com/bcoe/c8/commit/15746e51640e6e172f27f02c12056e2977342005))

##### [6.0.1](https://github.com/bcoe/c8/compare/v6.0.0...v6.0.1) (2019-10-26)

##### Bug Fixes

-   regex flags in dependency were breaking Node 8 ([a9d9645](https://github.com/bcoe/c8/commit/a9d9645858031cee985087828f5e04cfd8922868))

### [`v6.0.0`](https://github.com/bcoe/c8/blob/master/CHANGELOG.md#&#8203;600httpsgithubcombcoec8comparev504v600-2019-10-24)

[Compare Source](https://github.com/bcoe/c8/compare/v5.0.4...v6.0.0)

##### ⚠ BREAKING CHANGES

-   Node.js' source-map and lineLength cache is now used to remap coverage output (this allows tools like ts-node to be supported, which transpile at runtime).

##### Features

-   use Node.js' source-map cache, to support tools like ts-node ([#&#8203;152](https://github.com/bcoe/c8/issues/152)) ([53bba15](https://github.com/bcoe/c8/commit/53bba15bee07e8f0446fd85cc59d2b562fe34a21))

##### Bug Fixes

-   **deps:** update dependency yargs-parser to v15 ([#&#8203;153](https://github.com/bcoe/c8/issues/153)) ([80153de](https://github.com/bcoe/c8/commit/80153de61be8e5830f1c228945184e4878f8cf0c))

##### [5.0.4](https://github.com/bcoe/c8/compare/v5.0.3...v5.0.4) (2019-09-06)

##### Bug Fixes

-   **deps:** merging failed when the same script occurred multiple times in the same report ([#&#8203;147](https://github.com/bcoe/c8/issues/147)) ([1ebcaf9](https://github.com/bcoe/c8/commit/1ebcaf9))
-   don't load JSON that does not look like coverage ([#&#8203;146](https://github.com/bcoe/c8/issues/146)) ([a6481f1](https://github.com/bcoe/c8/commit/a6481f1))
-   **deps:** update dependency yargs-parser to v14 ([#&#8203;144](https://github.com/bcoe/c8/issues/144)) ([9b3d089](https://github.com/bcoe/c8/commit/9b3d089))

##### [5.0.3](https://github.com/bcoe/c8/compare/v5.0.2...v5.0.3) (2019-09-06)

##### Bug Fixes

-   **deps:** update dependency rimraf to v3 ([#&#8203;132](https://github.com/bcoe/c8/issues/132)) ([7601748](https://github.com/bcoe/c8/commit/7601748))
-   **deps:** update dependency yargs to v14 ([#&#8203;134](https://github.com/bcoe/c8/issues/134)) ([e49737f](https://github.com/bcoe/c8/commit/e49737f))
-   **deps:** update deps to address warning in cross-spawn ([#&#8203;141](https://github.com/bcoe/c8/issues/141)) ([4b66221](https://github.com/bcoe/c8/commit/4b66221))

##### [5.0.2](https://github.com/bcoe/c8/compare/v5.0.1...v5.0.2) (2019-06-24)

##### Bug Fixes

-   HTML report now has correct source positions for Node >10.16.0 ([#&#8203;125](https://github.com/bcoe/c8/issues/125)) ([c49fa7f](https://github.com/bcoe/c8/commit/c49fa7f))
-   **deps:** update dependency find-up to v4 ([#&#8203;119](https://github.com/bcoe/c8/issues/119)) ([c568d96](https://github.com/bcoe/c8/commit/c568d96))
-   **deps:** update dependency yargs-parser to v13 ([#&#8203;124](https://github.com/bcoe/c8/issues/124)) ([1eb3394](https://github.com/bcoe/c8/commit/1eb3394))
-   do not override NODE_V8_COVERAGE if set ([#&#8203;70](https://github.com/bcoe/c8/issues/70)) ([8bb67b0](https://github.com/bcoe/c8/commit/8bb67b0))

##### [5.0.1](https://github.com/bcoe/c8/compare/v5.0.0...v5.0.1) (2019-05-20)

##### Bug Fixes

-   temporary files should be in tmp folder ([#&#8203;106](https://github.com/bcoe/c8/issues/106)) ([64dd2e6](https://github.com/bcoe/c8/commit/64dd2e6))

</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.

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- 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-service-directory).
* updated CHANGELOG.md [ci skip]

* updated package.json [ci skip]

* updated samples/package.json

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [mocha](https://mochajs.org/) ([source](https://github.com/mochajs/mocha)) | devDependencies | major | [`^7.0.0` -> `^8.0.0`](https://renovatebot.com/diffs/npm/mocha/7.2.0/8.0.1) |

---

### Release Notes

<details>
<summary>mochajs/mocha</summary>

### [`v8.0.1`](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;801--2020-06-10)

[Compare Source](https://github.com/mochajs/mocha/compare/v8.0.0...v8.0.1)

The obligatory patch after a major.

#### 🐛 Fixes

-   [#&#8203;4328](https://github.com/mochajs/mocha/issues/4328): Fix `--parallel` when combined with `--watch` ([**@&#8203;boneskull**](https://github.com/boneskull))

### [`v8.0.0`](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#&#8203;800--2020-06-10)

[Compare Source](https://github.com/mochajs/mocha/compare/v7.2.0...v8.0.0)

In this major release, Mocha adds the ability to _run tests in parallel_. Better late than never! Please note the **breaking changes** detailed below.

Let's welcome [**@&#8203;giltayar**](https://github.com/giltayar) and [**@&#8203;nicojs**](https://github.com/nicojs) to the maintenance team!

#### 💥 Breaking Changes

-   [#&#8203;4164](https://github.com/mochajs/mocha/issues/4164): **Mocha v8.0.0 now requires Node.js v10.0.0 or newer.** Mocha no longer supports the Node.js v8.x line ("Carbon"), which entered End-of-Life at the end of 2019 ([**@&#8203;UlisesGascon**](https://github.com/UlisesGascon))

-   [#&#8203;4175](https://github.com/mochajs/mocha/issues/4175): Having been deprecated with a warning since v7.0.0, **`mocha.opts` is no longer supported** ([**@&#8203;juergba**](https://github.com/juergba))

    ✨ **WORKAROUND:** Replace `mocha.opts` with a [configuration file](https://mochajs.org/#configuring-mocha-nodejs).

-   [#&#8203;4260](https://github.com/mochajs/mocha/issues/4260): Remove `enableTimeout()` (`this.enableTimeout()`) from the context object ([**@&#8203;craigtaub**](https://github.com/craigtaub))

    ✨ **WORKAROUND:** Replace usage of `this.enableTimeout(false)` in your tests with `this.timeout(0)`.

-   [#&#8203;4315](https://github.com/mochajs/mocha/issues/4315): The `spec` option no longer supports a comma-delimited list of files ([**@&#8203;juergba**](https://github.com/juergba))

    ✨ **WORKAROUND**: Use an array instead (e.g., `"spec": "foo.js,bar.js"` becomes `"spec": ["foo.js", "bar.js"]`).

-   [#&#8203;4309](https://github.com/mochajs/mocha/issues/4309): Drop support for Node.js v13.x line, which is now End-of-Life ([**@&#8203;juergba**](https://github.com/juergba))

-   [#&#8203;4282](https://github.com/mochajs/mocha/issues/4282): `--forbid-only` will throw an error even if exclusive tests are avoided via `--grep` or other means ([**@&#8203;arvidOtt**](https://github.com/arvidOtt))

-   [#&#8203;4223](https://github.com/mochajs/mocha/issues/4223): The context object's `skip()` (`this.skip()`) in a "before all" (`before()`) hook will no longer execute subsequent sibling hooks, in addition to hooks in child suites ([**@&#8203;juergba**](https://github.com/juergba))

-   [#&#8203;4178](https://github.com/mochajs/mocha/issues/4178): Remove previously soft-deprecated APIs ([**@&#8203;wnghdcjfe**](https://github.com/wnghdcjfe)):
    -   `Mocha.prototype.ignoreLeaks()`
    -   `Mocha.prototype.useColors()`
    -   `Mocha.prototype.useInlineDiffs()`
    -   `Mocha.prototype.hideDiff()`

#### 🎉 Enhancements

-   [#&#8203;4245](https://github.com/mochajs/mocha/issues/4245): Add ability to run tests in parallel for Node.js (see [docs](https://mochajs.org/#parallel-tests)) ([**@&#8203;boneskull**](https://github.com/boneskull))

    ❗ See also [#&#8203;4244](https://github.com/mochajs/mocha/issues/4244); [Root Hook Plugins (docs)](https://mochajs.org/#root-hook-plugins) -- _root hooks must be defined via Root Hook Plugins to work in parallel mode_

-   [#&#8203;4304](https://github.com/mochajs/mocha/issues/4304): `--require` now works with ES modules ([**@&#8203;JacobLey**](https://github.com/JacobLey))

-   [#&#8203;4299](https://github.com/mochajs/mocha/issues/4299): In some circumstances, Mocha can run ES modules under Node.js v10 -- _use at your own risk!_ ([**@&#8203;giltayar**](https://github.com/giltayar))

#### 📖 Documentation

-   [#&#8203;4246](https://github.com/mochajs/mocha/issues/4246): Add documentation for parallel mode and Root Hook plugins ([**@&#8203;boneskull**](https://github.com/boneskull))

#### 🐛 Fixes

(All bug fixes in Mocha v8.0.0 are also breaking changes, and are listed above)

</details>

---

### Renovate configuration

📅 **Schedule**: "after 9am and before 3pm" (UTC).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻️ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- 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-service-directory).
* updated CHANGELOG.md [ci skip]

* updated package.json [ci skip]

* updated samples/package.json

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
* updated CHANGELOG.md [ci skip]

* updated package.json [ci skip]

* updated samples/package.json

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
🤖 I have created a release \*beep\* \*boop\*
---
## [3.2.0](https://github.com/googleapis/nodejs-service-directory/compare/v3.1.3...v3.2.0) (2021-06-25)


### Features

* Update Service Directory v1beta1 protos to include VPC Network field, and create/modify timestamp fields ([#155](https://github.com/googleapis/nodejs-service-directory/issues/155)) ([cd103d7](https://github.com/googleapis/nodejs-service-directory/commit/cd103d7d7c567e0a4b18890797e43cbde616db5f))
---


This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
* build!: Update library to use Node 12
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
🤖 I have created a release *beep* *boop*
---


## [4.0.1](googleapis/nodejs-service-directory@v4.0.0...v4.0.1) (2022-06-30)


### Bug Fixes

* **docs:** describe fallback rest option ([#236](googleapis/nodejs-service-directory#236)) ([f72541a](googleapis/nodejs-service-directory@f72541a))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
release-please bot and others added 6 commits August 26, 2022 12:21
* chore(main): release 4.0.2

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
* chore(main): release 4.0.3

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [uuid](https://github.com/uuidjs/uuid) | [`^8.0.0` -> `^9.0.0`](https://renovatebot.com/diffs/npm/uuid/8.3.2/9.0.0) | [![age](https://badges.renovateapi.com/packages/npm/uuid/9.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/uuid/9.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/uuid/9.0.0/compatibility-slim/8.3.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/uuid/9.0.0/confidence-slim/8.3.2)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>uuidjs/uuid</summary>

### [`v9.0.0`](https://github.com/uuidjs/uuid/blob/HEAD/CHANGELOG.md#&#8203;900-httpsgithubcomuuidjsuuidcomparev832v900-2022-09-05)

[Compare Source](https://github.com/uuidjs/uuid/compare/v8.3.2...v9.0.0)

##### ⚠ BREAKING CHANGES

-   Drop Node.js 10.x support. This library always aims at supporting one EOLed LTS release which by this time now is 12.x which has reached EOL 30 Apr 2022.

-   Remove the minified UMD build from the package.

    Minified code is hard to audit and since this is a widely used library it seems more appropriate nowadays to optimize for auditability than to ship a legacy module format that, at best, serves educational purposes nowadays.

    For production browser use cases, users should be using a bundler. For educational purposes, today's online sandboxes like replit.com offer convenient ways to load npm modules, so the use case for UMD through repos like UNPKG or jsDelivr has largely vanished.

-   Drop IE 11 and Safari 10 support. Drop support for browsers that don't correctly implement const/let and default arguments, and no longer transpile the browser build to ES2015.

    This also removes the fallback on msCrypto instead of the crypto API.

    Browser tests are run in the first supported version of each supported browser and in the latest (as of this commit) version available on Browserstack.

##### Features

-   optimize uuid.v1 by 1.3x uuid.v4 by 4.3x (430%) ([#&#8203;597](https://github.com/uuidjs/uuid/issues/597)) ([3a033f6](https://github.com/uuidjs/uuid/commit/3a033f6bab6bb3780ece6d645b902548043280bc))
-   remove UMD build ([#&#8203;645](https://github.com/uuidjs/uuid/issues/645)) ([e948a0f](https://github.com/uuidjs/uuid/commit/e948a0f22bf22f4619b27bd913885e478e20fe6f)), closes [#&#8203;620](https://github.com/uuidjs/uuid/issues/620)
-   use native crypto.randomUUID when available ([#&#8203;600](https://github.com/uuidjs/uuid/issues/600)) ([c9e076c](https://github.com/uuidjs/uuid/commit/c9e076c852edad7e9a06baaa1d148cf4eda6c6c4))

##### Bug Fixes

-   add Jest/jsdom compatibility ([#&#8203;642](https://github.com/uuidjs/uuid/issues/642)) ([16f9c46](https://github.com/uuidjs/uuid/commit/16f9c469edf46f0786164cdf4dc980743984a6fd))
-   change default export to named function ([#&#8203;545](https://github.com/uuidjs/uuid/issues/545)) ([c57bc5a](https://github.com/uuidjs/uuid/commit/c57bc5a9a0653273aa639cda9177ce52efabe42a))
-   handle error when parameter is not set in v3 and v5 ([#&#8203;622](https://github.com/uuidjs/uuid/issues/622)) ([fcd7388](https://github.com/uuidjs/uuid/commit/fcd73881692d9fabb63872576ba28e30ff852091))
-   run npm audit fix ([#&#8203;644](https://github.com/uuidjs/uuid/issues/644)) ([04686f5](https://github.com/uuidjs/uuid/commit/04686f54c5fed2cfffc1b619f4970c4bb8532353))
-   upgrading from uuid3 broken link ([#&#8203;568](https://github.com/uuidjs/uuid/issues/568)) ([1c849da](https://github.com/uuidjs/uuid/commit/1c849da6e164259e72e18636726345b13a7eddd6))

##### build

-   drop Node.js 8.x from babel transpile target ([#&#8203;603](https://github.com/uuidjs/uuid/issues/603)) ([aa11485](https://github.com/uuidjs/uuid/commit/aa114858260402107ec8a1e1a825dea0a259bcb5))

-   drop support for legacy browsers (IE11, Safari 10) ([#&#8203;604](https://github.com/uuidjs/uuid/issues/604)) ([0f433e5](https://github.com/uuidjs/uuid/commit/0f433e5ec444edacd53016de67db021102f36148))

-   drop node 10.x to upgrade dev dependencies ([#&#8203;653](https://github.com/uuidjs/uuid/issues/653)) ([28a5712](https://github.com/uuidjs/uuid/commit/28a571283f8abda6b9d85e689f95b7d3ee9e282e)), closes [#&#8203;643](https://github.com/uuidjs/uuid/issues/643)

##### [8.3.2](https://github.com/uuidjs/uuid/compare/v8.3.1...v8.3.2) (2020-12-08)

##### Bug Fixes

-   lazy load getRandomValues ([#&#8203;537](https://github.com/uuidjs/uuid/issues/537)) ([16c8f6d](https://github.com/uuidjs/uuid/commit/16c8f6df2f6b09b4d6235602d6a591188320a82e)), closes [#&#8203;536](https://github.com/uuidjs/uuid/issues/536)

##### [8.3.1](https://github.com/uuidjs/uuid/compare/v8.3.0...v8.3.1) (2020-10-04)

##### Bug Fixes

-   support expo>=39.0.0 ([#&#8203;515](https://github.com/uuidjs/uuid/issues/515)) ([c65a0f3](https://github.com/uuidjs/uuid/commit/c65a0f3fa73b901959d638d1e3591dfacdbed867)), closes [#&#8203;375](https://github.com/uuidjs/uuid/issues/375)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 9am and before 3pm" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/nodejs-service-directory).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTEuMCIsInVwZGF0ZWRJblZlciI6IjMyLjE5MS4wIn0=-->
* chore(main): release 4.0.4

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
@unforced unforced marked this pull request as ready for review November 17, 2022 16:24
@unforced unforced requested review from a team as code owners November 17, 2022 16:24
@snippet-bot
Copy link

snippet-bot bot commented Nov 17, 2022

Here is the summary of changes.

You are about to add 8 region tags.

This comment is generated by snippet-bot.
If you find problems with this result, please file an issue at:
https://github.com/googleapis/repo-automation-bots/issues.
To update this comment, add snippet-bot:force-run label or use the checkbox below:

  • Refresh this comment

@unforced unforced merged commit 2bbe9a2 into main Nov 17, 2022
@unforced unforced deleted the nodejs-service-directory-migration branch November 17, 2022 17:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants