clearlydefined / service

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

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

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

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

Package From To
@types/node 18.15.11 20.12.11
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.2.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 17.0.1
typescript 5.0.4 5.4.5

Updates @types/node from 18.15.11 to 20.12.11

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

Release notes

Sourced from eslint's releases.

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) (唯然)

Chores

  • 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)
  • 347d44f chore: remove eslintrc export from eslint-config-eslint (#18400) (Milos Djermanovic)
  • f316e20 ci: run tests in Node.js 22 (#18393) (Francesco Trotta)

v9.1.1

Bug Fixes

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

v9.1.0

Features

  • 03068f1 feat: Provide helpful error message for nullish configs (#18357) (Nicholas C. Zakas)
  • 751b518 feat: replace dependency graphemer with Intl.Segmenter (#18110) (Francesco Trotta)
  • 4d11e56 feat: add name to eslint configs (#18289) (唯然)
  • 1cbe1f6 feat: allow while(true) in no-constant-condition (#18286) (Tanuj Kanti)
  • 0db676f feat: add Intl in es6 globals (#18318) (唯然)

Bug Fixes

  • 8d18958 fix: Remove name from eslint/js packages (#18368) (Nicholas C. Zakas)
  • 594eb0e fix: do not crash on error in fs.walk filter (#18295) (Francesco Trotta)
  • 0d8cf63 fix: EMFILE errors (#18313) (Nicholas C. Zakas)
  • e1ac0b5 fix: --inspect-config only for flat config and respect -c (#18306) (Nicholas C. Zakas)
  • 09675e1 fix: --no-ignore should not apply to non-global ignores (#18334) (Milos Djermanovic)

Documentation

  • fb50077 docs: include notes about globals in migration-guide (#18356) (Gabriel Rohden)
  • 71c771f docs: Fix missing accessible name for scroll-to-top link (#18329) (Germán Freixinós)
  • 200fd4e docs: indicate eslintrc mode for .eslintignore (#18285) (Francesco Trotta)
  • 16b6a8b docs: Update README (GitHub Actions Bot)
  • df5f8a9 docs: paths and patterns difference in no-restricted-imports (#18273) (Tanuj Kanti)
  • c537d76 docs: update npm init @eslint/config generated file names (#18298) (唯然)
  • e1e305d docs: fix linebreak-style examples (#18262) (Francesco Trotta)
  • 113f51e docs: Mention package.json config support dropped (#18305) (Nicholas C. Zakas)
  • 5c35321 docs: add eslintrc-only note to --rulesdir (#18281) (Adam Lui 刘展鹏)

... (truncated)

Changelog

Sourced from eslint's changelog.

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

  • d9a2983 chore: upgrade @​eslint/js to v9.1.1 (#18367) (Francesco Trotta)
  • 03068f1 feat: Provide helpful error message for nullish configs (#18357) (Nicholas C. Zakas)
  • 50d406d chore: package.json update for @​eslint/js release (Jenkins)
  • 8d18958 fix: Remove name from eslint/js packages (#18368) (Nicholas C. Zakas)
  • 155c71c chore: package.json update for @​eslint/js release (Jenkins)
  • 594eb0e fix: do not crash on error in fs.walk filter (#18295) (Francesco Trotta)
  • 751b518 feat: replace dependency graphemer with Intl.Segmenter (#18110) (Francesco Trotta)
  • fb50077 docs: include notes about globals in migration-guide (#18356) (Gabriel Rohden)
  • 4d11e56 feat: add name to eslint configs (#18289) (唯然)
  • 1cbe1f6 feat: allow while(true) in no-constant-condition (#18286) (Tanuj Kanti)
  • 0588fc5 refactor: Move directive gathering to SourceCode (#18328) (Nicholas C. Zakas)
  • 0d8cf63 fix: EMFILE errors (#18313) (Nicholas C. Zakas)
  • e1ac0b5 fix: --inspect-config only for flat config and respect -c (#18306) (Nicholas C. Zakas)
  • 09675e1 fix: --no-ignore should not apply to non-global ignores (#18334) (Milos Djermanovic)
  • 9048e21 chore: lint docs/src/_data js files (#18335) (Milos Djermanovic)
  • 4820790 chore: upgrade globals@15.0.0 dev dependency (#18332) (Milos Djermanovic)
  • 698d9ff chore: upgrade jsdoc & unicorn plugins in eslint-config-eslint (#18333) (Milos Djermanovic)
  • 71c771f docs: Fix missing accessible name for scroll-to-top link (#18329) (Germán Freixinós)
  • 0db676f feat: add Intl in es6 globals (#18318) (唯然)
  • 200fd4e docs: indicate eslintrc mode for .eslintignore (#18285) (Francesco Trotta)
  • 32c08cf chore: drop Node < 18 and use @​eslint/js v9 in eslint-config-eslint (#18323) (Milos Djermanovic)
  • 16b6a8b docs: Update README (GitHub Actions Bot)
  • a76fb55 chore: @​eslint-community/eslint-plugin-eslint-comments v4.3.0 (#18319) (Milos Djermanovic)
  • df5f8a9 docs: paths and patterns difference in no-restricted-imports (#18273) (Tanuj Kanti)
  • c537d76 docs: update npm init @eslint/config generated file names (#18298) (唯然)
  • 78e45b1 chore: eslint-plugin-eslint-plugin v6.0.0 (#18316) (唯然)
  • 36103a5 chore: eslint-plugin-n v17.0.0 (#18315) (唯然)
  • e1e305d docs: fix linebreak-style examples (#18262) (Francesco Trotta)
  • 113f51e docs: Mention package.json config support dropped (#18305) (Nicholas C. Zakas)
  • 1fa6622 build: do not use --force flag to install dependencies (#18284) (Francesco Trotta)

... (truncated)

Commits
  • 271e7ab 9.2.0
  • 989ac9d Build: changelog update for 9.2.0
  • b346605 chore: upgrade @​eslint/js@​9.2.0 (#18413)
  • c4c18e0 chore: package.json update for @​eslint/js release
  • 284722c chore: package.json update for eslint-config-eslint release
  • 0f5df50 docs: Update README
  • 347d44f chore: remove eslintrc export from eslint-config-eslint (#18400)
  • 8485d76 feat: no-case-declarations add suggestions (#18388)
  • a498f35 feat: update Unicode letter detection in capitalized-comments rule (#18375)
  • 1579ce0 docs: update wording regarding indirect eval (#18394)
  • 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