chore(deps-dev): bump the all-dependencies group across 1 directory with 8 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 1
(12 months ago)
(12 months ago)
(12 months ago)
dependencies javascript
Bumps the all-dependencies group with 8 updates in the / directory:
| Package | From | To |
|---|---|---|
| @types/node | 22.15.21 |
24.0.3 |
| jest | 29.7.0 |
30.0.2 |
| @types/jest | 29.5.14 |
30.0.0 |
| jest-html-reporter | 4.1.0 |
4.2.0 |
| prettier | 3.5.3 |
3.6.0 |
| ts-jest | 29.3.4 |
29.4.0 |
| typedoc | 0.28.4 |
0.28.5 |
| typedoc-plugin-markdown | 4.6.3 |
4.7.0 |
Updates @types/node from 22.15.21 to 24.0.3
Commits
- See full diff in compare view
Updates jest from 29.7.0 to 30.0.2
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 thedefaultAsyncResolver(#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 deprecatejest-replpackage (#15673)[jest-resolver]Replace customisBuiltinModulewith node'sisBuiltin(#15685)New Contributors
@vovkasmmade their first contribution in jestjs/jest#15687Full 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.0and follow the migration guide: Upgrading from Jest 29 to 30.Features
[*]RenamedglobalsCleanupModetoglobalsCleanupand--waitNextEventLoopTurnForUnhandledRejectionEventsto--waitForUnhandledRejections[expect]AddArrayOfasymmetric matcher for validating array elements. (#15567)[babel-jest]Add optionexcludeJestPresetto allow opting out ofbabel-preset-jest(#15164)[expect]Revert #15038 to fixexpect(fn).toHaveBeenCalledWith(expect.objectContaining(...))when there are multiple calls (#15508)[jest-circus, jest-cli, jest-config]AddwaitNextEventLoopTurnForUnhandledRejectionEventsflag to minimise performance impact of correct detection of unhandled promise rejections introduced in #14315 (#14681)[jest-circus]Add awaitBeforeRetryoption tojest.retryTimes(#14738)[jest-circus]Add aretryImmediatelyoption tojest.retryTimes(#14696)[jest-circus, jest-jasmine2]AllowsetupFilesAfterEnvto export an async function (#10962)[jest-circus, jest-test-result]AddstartedAttimestamp inTestCaseResultObjectwithinonTestCaseResult(#15145)
... (truncated)
Changelog
Sourced from jest's changelog.
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 thedefaultAsyncResolver(#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 deprecatejest-replpackage (#15673)[jest-resolver]Replace customisBuiltinModulewith node'sisBuiltin(#15685)30.0.0
Features
[*]RenamedglobalsCleanupModetoglobalsCleanupand--waitNextEventLoopTurnForUnhandledRejectionEventsto--waitForUnhandledRejections[expect]AddArrayOfasymmetric matcher for validating array elements. (#15567)[babel-jest]Add optionexcludeJestPresetto allow opting out ofbabel-preset-jest(#15164)[expect]Revert #15038 to fixexpect(fn).toHaveBeenCalledWith(expect.objectContaining(...))when there are multiple calls (#15508)[jest-circus, jest-cli, jest-config]AddwaitNextEventLoopTurnForUnhandledRejectionEventsflag to minimise performance impact of correct detection of unhandled promise rejections introduced in #14315 (#14681)[jest-circus]Add awaitBeforeRetryoption tojest.retryTimes(#14738)[jest-circus]Add aretryImmediatelyoption tojest.retryTimes(#14696)[jest-circus, jest-jasmine2]AllowsetupFilesAfterEnvto export an async function (#10962)[jest-circus, jest-test-result]AddstartedAttimestamp inTestCaseResultObjectwithinonTestCaseResult(#15145)[jest-cli]ExportbuildArgv(#15310)[jest-config][BREAKING] Addmtsandctsto defaultmoduleFileExtensionsconfig (#14369)[jest-config][BREAKING] UpdatetestMatchandtestRegexdefault option for supportingmjs,cjs,mts, andcts(#14584)[jest-config]Loads config file from provided path inpackage.json(#14044)[jest-config]Allow loadingjest.config.ctsfiles (#14070)[jest-config]ShowrootDirin error message when apresetfails to load (#15194)[jest-config]Support loading TS config files usingesbuild-registervia docblock loader (#15190)[jest-config]Allow passing TS config loader options via docblock comment (#15234)[jest-config]If Node is running with type stripping enabled, do not require a TS loader (#15480)[@jest/core]Group together open handles with the same stack trace (#13417, & #14789)[@jest/core]AddperfStatsto surface test setup overhead (#14622)[@jest/core][BREAKING] Changed--filterto accept an object with shape{ filtered: Array<string> }to match documentation (#13319)[@jest/core]Support--outputFileoption for--listTests(#14980)[@jest/core]Stringify Errors properly with--jsonflag (#15329)
... (truncated)
Commits
Updates @types/jest from 29.5.14 to 30.0.0
Commits
- See full diff in compare view
Updates jest-html-reporter from 4.1.0 to 4.2.0
Release notes
Sourced from jest-html-reporter's releases.
v4.2.0
What's Changed
- Added support for Jest 30.x by
@Hargnein Hargne/jest-html-reporter#201- Bump
@babel/helpersfrom 7.26.7 to 7.26.10 by@dependabotin Hargne/jest-html-reporter#198Full Changelog: https://github.com/Hargne/jest-html-reporter/compare/4.1.0...4.2.0
Commits
a646daaMerge pull request #202 from Hargne/devd2597b0Bumped version4e905ceMerge pull request #201 from Hargne/200-add-support-for-jest-30494c4dbUpdate mockJestGlobalConfig.tsd40a5d4#200 - Upgraded jest to v30+7b4e03dMerge pull request #198 from Hargne/dependabot/npm_and_yarn/babel/helpers-7.2...d1f6410Bump@babel/helpersfrom 7.26.7 to 7.26.10- See full diff in compare view
Updates prettier from 3.5.3 to 3.6.0
Commits
e1c8095Release 3.6.09dfcdcbDisable "Linting files" step64e0147get previous version from package.json1a32b27Release@prettier/plugin-oxcand@prettier/plugin-hermese0055d2Avoid breakTSImportTypewith long module name (#17637)c19a8a9chore(deps): update dependency@stylistic/eslint-pluginto v5 (#17640)b4522b4Add badge to plugins (#17639)16c2d2echore(deps): update dependency concurrently to v9.2.0 (#17638)42d733bImprove .prettierignore file (#17632)25e2145Add test for #11526 (#17551)- Additional commits viewable in compare view
Updates ts-jest from 29.3.4 to 29.4.0
Changelog
Sourced from ts-jest's changelog.
29.4.0 (2025-06-11)
Features
- feat: support Jest 30 (84e093e)
Commits
f692f74chore(release): 29.4.084e093efeat: support Jest 302d6fe5cbuild(deps): Update dependency eslint-plugin-jsdoc to ^50.8.083c6d35build(deps): Update dependency eslint-plugin-jest to ^28.13.394797d0build(deps): Update dependency@vitejs/plugin-react-swcto ^3.10.29a9bd5cbuild(deps): Update ESLint packages to ^8.34.0cbd81fdbuild(deps): Update dependency eslint-plugin-jest to ^28.13.01d3fb0dbuild(deps): Update dependency@types/nodeto v20.19.032efecbbuild(deps): Update docusaurus monorepo to ^3.8.15133d48build: upgradedocusaurusto 3.8- Additional commits viewable in compare view
Updates typedoc from 0.28.4 to 0.28.5
Commits
0e34434Update changelog for releaseb7dc818Bump version to 0.28.5c0d3cb3ignoredHighlightLanguages now works for supported langsc38985fFix ignoredHighlightLanguages docs766fe9eFix references to mapped type aliasesea16fb7Fix CI configb89b6d0Merge branch 'master' of github.com:TypeStrong/typedoc56c1e17Fix benign circularity, add CI check- See full diff in compare view
Updates typedoc-plugin-markdown from 4.6.3 to 4.7.0
Release notes
Sourced from typedoc-plugin-markdown's releases.
typedoc-plugin-markdown@4.7.0
Minor Changes
- Added
useCustomAnchorsandcustomAnchorsFormatoptions - thanks@ocavue.Patch Changes
- Fix incorrect overload function comments (#827).
typedoc-plugin-markdown@4.6.4
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
Minor Changes
- Added
useCustomAnchorsandcustomAnchorsFormatoptions - 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
362c3a5Version Packagesffac19cfix(core): fix incorrect overload function comments (#827)8bc50c8chore(core): clean-up configb53ca35Merge pull request #826 from ocavue/ocavue-members-typesc399926chore: remove unused imports815fe20fix(core): remove some incorrect type assertionse50a2dffix(core): correct return type ofhelpers.getKeyworda62a218chore(all): updated packages5113f15Merge pull request #823 from ocavue/ocavue-custom-h-ida3f20bfformat code- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
1
2
+7746
-8410
Package Dependencies
Technical Details
| ID: | 2057729 |
| UUID: | 2611409731 |
| Node ID: | PR_kwDOH4W5nM6bpvND |
| Host: | GitHub |
| Repository: | sqlitecloud/sqlitecloud-js |
| Mergeable: | Yes |
| Merge State: | Unstable |