Skip to content

chore(deps-dev): bump the all-dependencies group across 1 directory with 10 updates #246

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 14, 2025

Bumps the all-dependencies group with 10 updates in the / directory:

Package From To
@types/node 22.15.21 24.0.13
dotenv 16.5.0 17.2.0
jest 29.7.0 30.0.4
@types/jest 29.5.14 30.0.0
jest-html-reporter 4.1.0 4.3.0
prettier 3.5.3 3.6.2
ts-jest 29.3.4 29.4.0
typedoc 0.28.4 0.28.7
typedoc-plugin-markdown 4.6.3 4.7.0
webpack 5.99.9 5.100.1

Updates @types/node from 22.15.21 to 24.0.13

Commits

Updates dotenv from 16.5.0 to 17.2.0

Changelog

Sourced from dotenv's changelog.

17.2.0 (2025-07-09)

Added

  • Optionally specify DOTENV_CONFIG_QUIET=true in your environment or .env file to quiet the runtime log (#889)
  • Just like dotenv any DOTENV_CONFIG_ environment variables take precedence over any code set options like ({quiet: false})
# .env
DOTENV_CONFIG_QUIET=true
HELLO="World"
// index.js
require('dotenv').config()
console.log(`Hello ${process.env.HELLO}`)
$ node index.js
Hello World
or
$ DOTENV_CONFIG_QUIET=true node index.js

17.1.0 (2025-07-07)

Added

  • Add additional security and configuration tips to the runtime log (#884)
  • Dim the tips text from the main injection information text
const TIPS = [
  '🔐 encrypt with dotenvx: https://dotenvx.com',
  '🔐 prevent committing .env to code: https://dotenvx.com/precommit',
  '🔐 prevent building .env in docker: https://dotenvx.com/prebuild',
  '🛠️  run anywhere with `dotenvx run -- yourcommand`',
  '⚙️  specify custom .env file path with { path: \'/custom/path/.env\' }',
  '⚙️  enable debug logging with { debug: true }',
  '⚙️  override existing env vars with { override: true }',
  '⚙️  suppress all logs with { quiet: true }',
  '⚙️  write to custom object with { processEnv: myObject }',
  '⚙️  load multiple .env files with { path: [\'.env.local\', \'.env\'] }'
]

17.0.1 (2025-07-01)

... (truncated)

Commits

Updates jest from 29.7.0 to 30.0.4

Release notes

Sourced from jest's releases.

30.0.2

What's Changed

Fixes

  • [jest-matcher-utils] Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#15689)
  • [jest-util] Make garbage collection protection property writable (#15689)

Full Changelog: https://github.com/jestjs/jest/blob/main/CHANGELOG.md

Jest 30.0.1

What's Changed

Features

  • [jest-resolver] Implement the defaultAsyncResolver (#15679)

Fixes

  • [jest-resolver] Resolve builtin modules correctly (#15683)
  • [jest-environment-node, jest-util] Avoid setting globals cleanup protection symbol when feature is off (#15684)

Chore & Maintenance

  • [*] Remove and deprecate jest-repl package (#15673)
  • [jest-resolver] Replace custom isBuiltinModule with node's isBuiltin (#15685)

New Contributors

Full Changelog: https://github.com/jestjs/jest/blob/main/CHANGELOG.md

Jest 30

Today we are happy to announce the release of Jest 30. This release features a substantial number of changes, fixes, and improvements. While it is one of the largest major releases of Jest ever, we admit that three years for a major release is too long. In the future, we are aiming to make more frequent major releases to keep Jest great for the next decade.

If you want to skip all the news and just get going, run npm install jest@^30.0.0 and follow the migration guide: Upgrading from Jest 29 to 30.

Read the full blog post

Features

  • [*] Renamed globalsCleanupMode to globalsCleanup and --waitNextEventLoopTurnForUnhandledRejectionEvents to --waitForUnhandledRejections
  • [expect] Add ArrayOf asymmetric matcher for validating array elements. (#15567)
  • [babel-jest] Add option excludeJestPreset to allow opting out of babel-preset-jest (#15164)
  • [expect] Revert #15038 to fix expect(fn).toHaveBeenCalledWith(expect.objectContaining(...)) when there are multiple calls (#15508)
  • [jest-circus, jest-cli, jest-config] Add waitNextEventLoopTurnForUnhandledRejectionEvents flag to minimise performance impact of correct detection of unhandled promise rejections introduced in #14315 (#14681)
  • [jest-circus] Add a waitBeforeRetry option to jest.retryTimes (#14738)
  • [jest-circus] Add a retryImmediately option to jest.retryTimes (#14696)
  • [jest-circus, jest-jasmine2] Allow setupFilesAfterEnv to export an async function (#10962)
  • [jest-circus, jest-test-result] Add startedAt timestamp in TestCaseResultObject within onTestCaseResult (#15145)

... (truncated)

Changelog

Sourced from jest's changelog.

30.0.4

Features

  • [expect] The Inverse type is now exported (#15714)
  • [expect] feat: support async functions in toBe (#15704)

Fixes

  • [jest] jest --onlyFailures --listTests now correctly lists only failed tests (#15700)
  • [jest-snapshot] Handle line endings in snapshots (#15708)

30.0.3

Fixes

  • [jest-config] Fix ESM TS config loading in a CJS project (#15694)
  • [jest-core] jest --onlyFailures --listTests now correctly lists only failed tests(#15700)

Features

  • [jest-diff] Show non-printable control characters to diffs (#15696)

30.0.2

Fixes

  • [jest-matcher-utils] Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#15689)
  • [jest-util] Make garbage collection protection property writable (#15689)

30.0.1

Features

  • [jest-resolver] Implement the defaultAsyncResolver (#15679)

Fixes

  • [jest-resolver] Resolve builtin modules correctly (#15683)
  • [jest-environment-node, jest-util] Avoid setting globals cleanup protection symbol when feature is off (#15684)

Chore & Maintenance

  • [*] Remove and deprecate jest-repl package (#15673)
  • [jest-resolver] Replace custom isBuiltinModule with node's isBuiltin (#15685)

30.0.0

Features

... (truncated)

Commits

Updates @types/jest from 29.5.14 to 30.0.0

Commits

Updates jest-html-reporter from 4.1.0 to 4.3.0

Release notes

Sourced from jest-html-reporter's releases.

v4.3.0

What's Changed

New Contributors

Full Changelog: Hargne/jest-html-reporter@4.2.0...4.3.0

v4.2.0

What's Changed

Full Changelog: Hargne/jest-html-reporter@4.1.0...4.2.0

Commits

Updates prettier from 3.5.3 to 3.6.2

Release notes

Sourced from prettier's releases.

3.6.2

What's Changed

🔗 Changelog

3.6.1

  • Fix "Warning: File descriptor 39 closed but not opened in unmanaged mode" error when running --experimental-cli

🔗 Changelog

3.6.0

diff

🔗 Release note "Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!"

Changelog

Sourced from prettier's changelog.

3.6.2

diff

Markdown: Add missing blank line around code block (#17675 by @​fisker)

<!-- Input -->
1. Some text, and code block below, with newline after code block
---
foo: bar


Another
List

<!-- Prettier 3.6.1 -->


Some text, and code block below, with newline after code block
---
foo: bar


Another
List



<!-- Prettier 3.6.2 -->


Some text, and code block below, with newline after code block
---
foo: bar


Another
List

3.6.1

diff

TypeScript: Allow const without initializer (#17650, #17654 by @​fisker)

// Input
</tr></table> 

... (truncated)

Commits
  • 7a8b05f Release 3.6.2
  • 46526b4 Add missing blank line around code block (#17675)
  • a04ec11 chore(deps): update babel to v7.27.7 (#17684)
  • 32be5b6 chore(deps): update dependency flow-parser to v0.274.1 (#17676)
  • b55e777 Update docs about "TypeScript Configuration Files" (#17677)
  • b197c99 chore(deps): update dependency @​vitejs/plugin-react to v4.6.0 (#17674)
  • 1185f83 chore(deps): update dependency @​angular/compiler to v20.0.5 (#17680)
  • aa1316f chore(deps): update dependency browserslist to v4.25.1 (#17671)
  • c468d33 chore(deps): update dependency oxc-parser to v0.75.0 (#17672)
  • 3f46d91 chore(deps): update dependency vite to v7 (#17673)
  • Additional commits viewable in compare view

Updates ts-jest from 29.3.4 to 29.4.0

Release notes

Sourced from ts-jest's releases.

v29.4.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.0 (2025-06-11)

Features

Commits
  • f692f74 chore(release): 29.4.0
  • 84e093e feat: support Jest 30
  • 2d6fe5c build(deps): Update dependency eslint-plugin-jsdoc to ^50.8.0
  • 83c6d35 build(deps): Update dependency eslint-plugin-jest to ^28.13.3
  • 94797d0 build(deps): Update dependency @​vitejs/plugin-react-swc to ^3.10.2
  • 9a9bd5c build(deps): Update ESLint packages to ^8.34.0
  • cbd81fd build(deps): Update dependency eslint-plugin-jest to ^28.13.0
  • 1d3fb0d build(deps): Update dependency @​types/node to v20.19.0
  • 32efecb build(deps): Update docusaurus monorepo to ^3.8.1
  • 5133d48 build: upgrade docusaurus to 3.8
  • Additional commits viewable in compare view

Updates typedoc from 0.28.4 to 0.28.7

Release notes

Sourced from typedoc's releases.

v0.28.7

Features

  • Introduced the @sortStrategy tag to override the sort option on a specific reflection, #2965.

Bug Fixes

  • Classes and functions exported with export { type X } are no longer missing comments, #2970.
  • Setting locale to an unknown value will now cause TypeDoc to operate in English instead of a debug locale.
  • Array options will now report an error if set to a non-array/non-string value.

v0.28.6

Features

  • TypeDoc now supports resolving relative paths in links to the package directory as belonging to the project, #2961.
  • Declarations without comments will now check for comments on their export specifier, #2964.

Bug Fixes

  • Attempting to highlight a supported language which is not enabled is now a warning, not an error, #2956.
  • Improved compatibility with CommonMark's link parsing, #2959.
  • Classes, variables, and functions exported with export { type X } are now detected and converted as interfaces/type aliases, #2962.
  • Improved warning messaging for links to symbols which were resolved, but the symbols were not included in the documentation, #2967.
  • Fixed an issue preventing nested documents from being deserialized from TypeDoc's JSON output or used in packages mode, #2969.

Thanks!

v0.28.5

Bug Fixes

  • References to type aliases defined as mapped types will now correctly create a reference to the type alias, #2954.
  • ignoredHighlightLanguages can now be used to prevent warnings for codeblocks containing languages which are supported by Shiki but are not loaded, #2956.
Changelog

Sourced from typedoc's changelog.

v0.28.7 (2025-06-30)

Features

  • Introduced the @sortStrategy tag to override the sort option on a specific reflection, #2965.

Bug Fixes

  • Classes and functions exported with export { type X } are no longer missing comments, #2970.
  • Setting locale to an unknown value will now cause TypeDoc to operate in English instead of a debug locale.
  • Array options will now report an error if set to a non-array/non-string value.

v0.28.6 (2025-06-27)

Features

  • TypeDoc now supports resolving relative paths in links to the package directory as belonging to the project, #2961.
  • Declarations without comments will now check for comments on their export specifier, #2964.

Bug Fixes

  • Attempting to highlight a supported language which is not enabled is now a warning, not an error, #2956.
  • Improved compatibility with CommonMark's link parsing, #2959.
  • Classes, variables, and functions exported with export { type X } are now detected and converted as interfaces/type aliases, #2962.
  • Improved warning messaging for links to symbols which were resolved, but the symbols were not included in the documentation, #2967.
  • Fixed an issue preventing nested documents from being deserialized from TypeDoc's JSON output or used in packages mode, #2969.

Thanks!

v0.28.5 (2025-05-26)

Bug Fixes

  • References to type aliases defined as mapped types will now correctly create a reference to the type alias, #2954.
  • ignoredHighlightLanguages can now be used to prevent warnings for codeblocks containing languages which are supported by Shiki but are not loaded, #2956.
Commits

Updates typedoc-plugin-markdown from 4.6.3 to 4.7.0

Release notes

Sourced from typedoc-plugin-markdown's releases.

[email protected]

Minor Changes

  • Added useCustomAnchors and customAnchorsFormat options - thanks @​ocavue.

Patch Changes

  • Fix incorrect overload function comments (#827).

[email protected]

Patch Changes

  • Added theme translations for "de" locale.
  • Fix navigation items without group or categories (@group/@category=none) (#815).
  • Correctly handle sidebar groups for packages with merged modules.
Changelog

Sourced from typedoc-plugin-markdown's changelog.

4.7.0 (2025-06-19)

Minor Changes

  • Added useCustomAnchors and customAnchorsFormat options - thanks @​ocavue.

Patch Changes

  • Fix incorrect overload function comments (#827).

4.6.4 (2025-06-01)

Patch Changes

  • Added theme translations for "de" locale.
  • Fix navigation items without group or categories (@group/@category=none) (#815).
  • Correctly handle sidebar groups for packages with merged modules.
Commits
  • 362c3a5 Version Packages
  • ffac19c fix(core): fix incorrect overload function comments (#827)
  • 8bc50c8 chore(core): clean-up config
  • b53ca35 Merge pull request #826 from ocavue/ocavue-members-types
  • c399926 chore: remove unused imports
  • 815fe20 fix(core): remove some incorrect type assertions
  • e50a2df fix(core): correct return type of helpers.getKeyword
  • a62a218 chore(all): updated packages
  • 5113f15 Merge pull request #823 from ocavue/ocavue-custom-h-id
  • a3f20bf format code
  • Additional commits viewable in compare view

Updates webpack from 5.99.9 to 5.100.1

Release notes

Sourced from webpack's releases.

v5.100.1

Fixes

  • Tree-shaking unused ignored modules
  • [Types] Compatibility with old Node.js versions

v5.100.0

Fixes

  • Fixed the case where an ES modules entry chunk depends on the runtime chunk hash
  • Handle function exports in webpack module wrapper
  • Ensure dependent chunks are imported before startup & fix duplicate export of 'default'
  • Generate lose closing brace when exports are unprovided
  • CleanPlugin doesn't unlink same file twice
  • Fixed unexpected error codes from fs.unlink on Windows
  • Typescript types

Features

  • HMR support for ES modules output
  • ES module output mode now fully supports splitChunks when external variables and runtimeChunk are not set.
  • Added support using keyword
  • Implemented tc39 Defer Module Evaluation (experiment)
  • Support dynamic template literals expressions for new URL(...)
  • Enable ES modules worker chunk loading for Node.js targets
  • Improved support for destructing in DefinePlugin
  • Added VirtualUrlPlugin to support virtual: scheme

Performance Improvements

  • Remove useless startup entrypoint runtime for ES modules output
  • Cache new URL(...) evaluate expression
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ith 10 updates

Bumps the all-dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.15.21` | `24.0.13` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.5.0` | `17.2.0` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `29.7.0` | `30.0.4` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.14` | `30.0.0` |
| [jest-html-reporter](https://github.com/Hargne/jest-html-reporter) | `4.1.0` | `4.3.0` |
| [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.6.2` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.3.4` | `29.4.0` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.4` | `0.28.7` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.6.3` | `4.7.0` |
| [webpack](https://github.com/webpack/webpack) | `5.99.9` | `5.100.1` |



Updates `@types/node` from 22.15.21 to 24.0.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `dotenv` from 16.5.0 to 17.2.0
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.5.0...v17.2.0)

Updates `jest` from 29.7.0 to 30.0.4
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.0.4/packages/jest)

Updates `@types/jest` from 29.5.14 to 30.0.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

Updates `jest-html-reporter` from 4.1.0 to 4.3.0
- [Release notes](https://github.com/Hargne/jest-html-reporter/releases)
- [Commits](Hargne/jest-html-reporter@4.1.0...4.3.0)

Updates `prettier` from 3.5.3 to 3.6.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.3...3.6.2)

Updates `ts-jest` from 29.3.4 to 29.4.0
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.3.4...v29.4.0)

Updates `typedoc` from 0.28.4 to 0.28.7
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.4...v0.28.7)

Updates `typedoc-plugin-markdown` from 4.6.3 to 4.7.0
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/[email protected]/packages/typedoc-plugin-markdown)

Updates `webpack` from 5.99.9 to 5.100.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.99.9...v5.100.1)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.0.13
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: dotenv
  dependency-version: 17.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: jest
  dependency-version: 30.0.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/jest"
  dependency-version: 30.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: jest-html-reporter
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: prettier
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ts-jest
  dependency-version: 29.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typedoc
  dependency-version: 0.28.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: typedoc-plugin-markdown
  dependency-version: 4.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: webpack
  dependency-version: 5.100.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants