clearlydefined / service

The service side of clearlydefined.io
MIT License
45 stars 40 forks source link

Bump the dev-dependencies group across 1 directory with 13 updates #1122

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the dev-dependencies group with 13 updates in the / directory:

Package From To
@types/node 18.15.11 20.12.12
chai 4.1.2 5.1.1
chai-as-promised 7.1.1 7.1.2
deep-equal-in-any-order 1.0.10 2.0.6
eslint 8.56.0 9.3.0
mocha 8.2.1 10.4.0
@types/mocha 8.2.3 10.0.6
mongodb-memory-server 8.11.3 9.2.0
node-mocks-http 1.6.7 1.14.1
nodemon 2.0.3 3.1.0
proxyquire 2.0.1 2.1.3
sinon 5.1.1 18.0.0
typescript 5.0.4 5.4.5

Updates @types/node from 18.15.11 to 20.12.12

Commits


Updates chai from 4.1.2 to 5.1.1

Release notes

Sourced from chai's releases.

v5.1.1

What's Changed

New Contributors

Full Changelog: https://github.com/chaijs/chai/compare/v5.1.0...v5.1.1

v5.1.0

What's Changed

New Contributors

Full Changelog: https://github.com/chaijs/chai/compare/v5.0.3...v5.1.0

v5.0.3

Fix bad v5.0.2 publish.

Full Changelog: https://github.com/chaijs/chai/compare/v5.0.2...v5.0.3

v5.0.2

What's Changed

Full Changelog: https://github.com/chaijs/chai/compare/v5.0.1...v5.0.2

v5.0.0

BREAKING CHANGES

  • Chai now only supports EcmaScript Modules (ESM). This means your tests will need to either have import {...} from 'chai' or import('chai'). require('chai') will cause failures in nodejs. If you're using ESM and seeing failures, it may be due to a bundler or transpiler which is incorrectly converting import statements into require calls.

... (truncated)

Commits


Updates chai-as-promised from 7.1.1 to 7.1.2

Release notes

Sourced from chai-as-promised's releases.

v7.1.2

What's Changed

New Contributors

Full Changelog: https://github.com/chaijs/chai-as-promised/compare/v7.1.1...v7.1.2

Commits
Maintainer changes

This version was pushed to npm by chaijs, a new releaser for chai-as-promised since your current version.


Updates deep-equal-in-any-order from 1.0.10 to 2.0.6

Commits


Updates eslint from 8.56.0 to 9.3.0

Release notes

Sourced from eslint's releases.

v9.3.0

Features

  • b32153c feat: add overrides.namedExports to func-style rule (#18444) (Percy Ma)
  • b67eba4 feat: add restrictedNamedExportsPattern to no-restricted-exports (#18431) (Akul Srivastava)
  • 069aa68 feat: add option allowEscape to no-misleading-character-class rule (#18208) (Francesco Trotta)
  • 05ef92d feat: deprecate multiline-comment-style & line-comment-position (#18435) (唯然)
  • db0b174 feat: add enforceForInnerExpressions option to no-extra-boolean-cast (#18222) (Kirk Waiblinger)

Bug Fixes

  • 8db0eff fix: Improve config error messages (#18457) (Nicholas C. Zakas)
  • 5c28d9a fix: don't remove comments between key and value in object-shorthand (#18442) (Kuba Jastrzębski)
  • 39fb0ee fix: object-shorthand loses type parameters when auto-fixing (#18438) (dalaoshu)
  • 37eba48 fix: don't crash when fs.readFile returns promise from another realm (#18416) (Milos Djermanovic)

Documentation

  • ceada8c docs: explain how to use "tsc waiting" label (#18466) (Francesco Trotta)
  • 62e686c docs: Add troubleshooting info for plugin compatibility (#18451) (Nicholas C. Zakas)
  • e17e1c0 docs: Update README (GitHub Actions Bot)
  • 2465a1e docs: Update README (GitHub Actions Bot)
  • d23574c docs: Clarify usage of no-unreachable with TypeScript (#18445) (benj-dobs)
  • 1db9bae docs: Fix typos (#18443) (Frieder Bluemle)
  • 7065196 docs: Update README (GitHub Actions Bot)
  • 04e7c6e docs: update deprecation notice of no-return-await (#18433) (Tanuj Kanti)
  • e763512 docs: Link global ignores section in config object property list (#18430) (MaoShizhong)
  • ac7f718 docs: reflect release of v9 in config migration guide (#18412) (Peter Briggs)
  • 0de0909 docs: fix grammar in configuration file resolution (#18419) (Mike McCready)

Chores

  • 58e2719 chore: update dependencies for v9.3.0 release (#18469) (Francesco Trotta)
  • b681ecb chore: package.json update for @​eslint/js release (Jenkins)
  • 06f1d1c chore: update dependency @​humanwhocodes/retry to ^0.3.0 (#18463) (renovate[bot])
  • a63ed72 refactor: Use node: protocol for built-in Node.js modules (#18434) (Milos Djermanovic)
  • 040700a chore: update dependency markdownlint-cli to ^0.40.0 (#18425) (renovate[bot])
  • f47847c chore: update actions/stale action to v9 (#18426) (renovate[bot])
  • c18ad25 chore: update actions/upload-artifact action to v4 (#18427) (renovate[bot])
  • 27e3060 chore: Disable documentation label (#18423) (Nicholas C. Zakas)

v9.2.0

Features

  • 8485d76 feat: no-case-declarations add suggestions (#18388) (Josh Goldberg ✨)
  • a498f35 feat: update Unicode letter detection in capitalized-comments rule (#18375) (Francesco Trotta)

Bug Fixes

  • eeec413 fix: do not throw when defining a global named defineSetter (#18364) (唯然)

Documentation

  • 0f5df50 docs: Update README (GitHub Actions Bot)
  • 1579ce0 docs: update wording regarding indirect eval (#18394) (Kirk Waiblinger)
  • f12a02c docs: update to eslint v9 in custom-rule-tutorial (#18383) (唯然)

... (truncated)

Changelog

Sourced from eslint's changelog.

v9.3.0 - May 17, 2024

  • 58e2719 chore: update dependencies for v9.3.0 release (#18469) (Francesco Trotta)
  • b681ecb chore: package.json update for @​eslint/js release (Jenkins)
  • 8db0eff fix: Improve config error messages (#18457) (Nicholas C. Zakas)
  • ceada8c docs: explain how to use "tsc waiting" label (#18466) (Francesco Trotta)
  • b32153c feat: add overrides.namedExports to func-style rule (#18444) (Percy Ma)
  • 06f1d1c chore: update dependency @​humanwhocodes/retry to ^0.3.0 (#18463) (renovate[bot])
  • 5c28d9a fix: don't remove comments between key and value in object-shorthand (#18442) (Kuba Jastrzębski)
  • 62e686c docs: Add troubleshooting info for plugin compatibility (#18451) (Nicholas C. Zakas)
  • e17e1c0 docs: Update README (GitHub Actions Bot)
  • 39fb0ee fix: object-shorthand loses type parameters when auto-fixing (#18438) (dalaoshu)
  • b67eba4 feat: add restrictedNamedExportsPattern to no-restricted-exports (#18431) (Akul Srivastava)
  • 2465a1e docs: Update README (GitHub Actions Bot)
  • d23574c docs: Clarify usage of no-unreachable with TypeScript (#18445) (benj-dobs)
  • 1db9bae docs: Fix typos (#18443) (Frieder Bluemle)
  • 069aa68 feat: add option allowEscape to no-misleading-character-class rule (#18208) (Francesco Trotta)
  • 7065196 docs: Update README (GitHub Actions Bot)
  • 05ef92d feat: deprecate multiline-comment-style & line-comment-position (#18435) (唯然)
  • a63ed72 refactor: Use node: protocol for built-in Node.js modules (#18434) (Milos Djermanovic)
  • 04e7c6e docs: update deprecation notice of no-return-await (#18433) (Tanuj Kanti)
  • e763512 docs: Link global ignores section in config object property list (#18430) (MaoShizhong)
  • 37eba48 fix: don't crash when fs.readFile returns promise from another realm (#18416) (Milos Djermanovic)
  • 040700a chore: update dependency markdownlint-cli to ^0.40.0 (#18425) (renovate[bot])
  • f47847c chore: update actions/stale action to v9 (#18426) (renovate[bot])
  • c18ad25 chore: update actions/upload-artifact action to v4 (#18427) (renovate[bot])
  • 27e3060 chore: Disable documentation label (#18423) (Nicholas C. Zakas)
  • ac7f718 docs: reflect release of v9 in config migration guide (#18412) (Peter Briggs)
  • db0b174 feat: add enforceForInnerExpressions option to no-extra-boolean-cast (#18222) (Kirk Waiblinger)
  • 0de0909 docs: fix grammar in configuration file resolution (#18419) (Mike McCready)

v9.2.0 - May 3, 2024

  • b346605 chore: upgrade @​eslint/js@​9.2.0 (#18413) (Milos Djermanovic)
  • c4c18e0 chore: package.json update for @​eslint/js release (Jenkins)
  • 284722c chore: package.json update for eslint-config-eslint release (Jenkins)
  • 0f5df50 docs: Update README (GitHub Actions Bot)
  • 347d44f chore: remove eslintrc export from eslint-config-eslint (#18400) (Milos Djermanovic)
  • 8485d76 feat: no-case-declarations add suggestions (#18388) (Josh Goldberg ✨)
  • a498f35 feat: update Unicode letter detection in capitalized-comments rule (#18375) (Francesco Trotta)
  • 1579ce0 docs: update wording regarding indirect eval (#18394) (Kirk Waiblinger)
  • f316e20 ci: run tests in Node.js 22 (#18393) (Francesco Trotta)
  • eeec413 fix: do not throw when defining a global named defineSetter (#18364) (唯然)
  • f12a02c docs: update to eslint v9 in custom-rule-tutorial (#18383) (唯然)

v9.1.1 - April 22, 2024

  • a26b402 fix: use @​eslint/create-config latest (#18373) (唯然)

v9.1.0 - April 19, 2024

... (truncated)

Commits
  • 41a871c 9.3.0
  • 463a2e3 Build: changelog update for 9.3.0
  • 58e2719 chore: update dependencies for v9.3.0 release (#18469)
  • b681ecb chore: package.json update for @​eslint/js release
  • 8db0eff fix: Improve config error messages (#18457)
  • ceada8c docs: explain how to use "tsc waiting" label (#18466)
  • b32153c feat: add overrides.namedExports to func-style rule (#18444)
  • 06f1d1c chore: update dependency @​humanwhocodes/retry to ^0.3.0 (#18463)
  • 5c28d9a fix: don't remove comments between key and value in object-shorthand (#18442)
  • 62e686c docs: Add troubleshooting info for plugin compatibility (#18451)
  • Additional commits viewable in compare view


Updates mocha from 8.2.1 to 10.4.0

Release notes

Sourced from mocha's releases.

v10.4.0

10.4.0 / 2024-03-26

:tada: Enhancements

:bug: Fixes

:nut_and_bolt: Other

v10.3.0

This is a stable release equivalent to v10.3.0-preminor.0.

What's Changed

... (truncated)

Changelog

Sourced from mocha's changelog.

10.4.0 / 2024-03-26

:tada: Enhancements

:bug: Fixes

:nut_and_bolt: Other

10.3.0 / 2024-02-08

This is a stable release equivalent to 10.30.0-prerelease.

10.3.0-prerelease / 2024-01-18

This is a prerelease version to test our ability to release. Other than removing or updating dependencies, it contains no intended user-facing changes.

:nut_and_bolt: Other

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by voxpelli, a new releaser for mocha since your current version.


Updates @types/mocha from 8.2.3 to 10.0.6

Commits


Updates mongodb-memory-server from 8.11.3 to 9.2.0

Release notes

Sourced from mongodb-memory-server's releases.

v9.2.0

9.2.0 (2024-04-22)

Features

  • add option "DOWNLOAD_IGNORE_MISSING_HEADER" to ignore missing response-headers (f3f7764), closes #865
  • update default-4.2-binary to 4.2.24 (63fcfc2)
  • update default-4.4-binary to 4.4.28 (df5eec0)
  • update default-binary to 6.0.14 (47f2bb3)

Dependencies

  • https-proxy-agent: upgrade to version 7.0.4 (d9dedc4)
  • semver: upgrade to version 7.6.0 (d0b50aa)
  • tar-stream: upgrade to version 3.1.7 (abcebd4)
  • yauzl: upgrade to version 3.1.3 (ba90289)

Dev-Dependencies

  • @​types/jest: upgrade to version 29.5.12 (61ce778)
  • @​types/semver: upgrade to version 7.5.8 (c042b9a)
  • commitlint:* upgrade to version 17.8.1 (08141c8)
  • eslint-config-prettier: upgrade to version 9.1.0 (dc3dd4f)
  • eslint-plugin-prettier: upgrade to version 5.1.3 (dc49e9c)
  • eslint: upgrade to version 8.57.0 (cfe19a8)
  • prettier: upgrade to version 3.2.5 (b13b13c)

v9.2.0-beta.1

9.2.0-beta.1 (2024-04-19)

Features

  • add option "DOWNLOAD_IGNORE_MISSING_HEADER" to ignore missing response-headers (f3f7764), closes #865
  • update default-4.2-binary to 4.2.24 (63fcfc2)
  • update default-4.4-binary to 4.4.28 (df5eec0)
  • update default-binary to 6.0.14 (47f2bb3)

Dependencies

  • https-proxy-agent: upgrade to version 7.0.4 (d9dedc4)
  • semver: upgrade to version 7.6.0 (d0b50aa)
  • tar-stream: upgrade to version 3.1.7 (abcebd4)
  • yauzl: upgrade to version 3.1.3 (ba90289)

... (truncated)

Changelog

Sourced from mongodb-memory-server's changelog.

9.2.0 (2024-04-22)

Features

  • add option "DOWNLOAD_IGNORE_MISSING_HEADER" to ignore missing response-headers (f3f7764), closes #865
  • update default-4.2-binary to 4.2.24 (63fcfc2)
  • update default-4.4-binary to 4.4.28 (df5eec0)
  • update default-binary to 6.0.14 (47f2bb3)

Dependencies

  • https-proxy-agent: upgrade to version 7.0.4 (d9dedc4)
  • semver: upgrade to version 7.6.0 (d0b50aa)
  • tar-stream: upgrade to version 3.1.7 (abcebd4)
  • yauzl: upgrade to version 3.1.3 (ba90289)

Dev-Dependencies

  • @​types/jest: upgrade to version 29.5.12 (61ce778)
  • @​types/semver: upgrade to version 7.5.8 (c042b9a)
  • commitlint:* upgrade to version 17.8.1 (08141c8)
  • eslint-config-prettier: upgrade to version 9.1.0 (dc3dd4f)
  • eslint-plugin-prettier: upgrade to version 5.1.3 (dc49e9c)
  • eslint: upgrade to version 8.57.0 (cfe19a8)
  • prettier: upgrade to version 3.2.5 (b13b13c)

9.2.0-beta.1 (2024-04-19)

Features

  • add option "DOWNLOAD_IGNORE_MISSING_HEADER" to ignore missing response-headers (f3f7764), closes #865
  • update default-4.2-binary to 4.2.24 (63fcfc2)
  • update default-4.4-binary to 4.4.28 (df5eec0)
  • update default-binary to 6.0.14 (47f2bb3)

Dependencies

  • https-proxy-agent: upgrade to version 7.0.4 (d9dedc4)
  • semver: upgrade to version 7.6.0 (d0b50aa)
  • tar-stream: upgrade to version 3.1.7 (abcebd4)
  • yauzl: upgrade to version 3.1.3 (ba90289)

Dev-Dependencies

... (truncated)

Commits
dependabot[bot] commented 4 months ago

Superseded by #1125.