chore(deps-dev): bump the all-dependencies group across 1 directory with 11 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 1
(11 months ago)
(11 months ago)
(11 months ago)
dependencies javascript
Bumps the all-dependencies group with 11 updates in the / directory:
| Package | From | To |
|---|---|---|
| @types/node | 22.15.21 |
24.1.0 |
| dotenv | 16.5.0 |
17.2.1 |
| dotenv-cli | 8.0.0 |
9.0.0 |
| jest | 29.7.0 |
30.0.5 |
| @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.8 |
| typedoc-plugin-markdown | 4.6.3 |
4.7.1 |
| webpack | 5.99.9 |
5.100.2 |
Updates @types/node from 22.15.21 to 24.1.0
Commits
- See full diff in compare view
Updates dotenv from 16.5.0 to 17.2.1
Changelog
Sourced from dotenv's changelog.
17.2.1 (2025-07-24)
Changed
- Fix clickable tip links by removing parentheses (#897)
17.2.0 (2025-07-09)
Added
- Optionally specify
DOTENV_CONFIG_QUIET=truein your environment or.envfile 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 Worldor
$ 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 }', </tr></table>
... (truncated)
Commits
37cf55a17.2.1f2d92e9changelog 🪵bd27017Merge pull request #897 from motdotla/adjust-tip-for-click8a9ce45add to tests19e5ad9adjust clickable tip4186757Merge pull request #894 from mjomble/patch-104322a6Merge pull request #895 from andersr/add-es6-config-info-to-readme1102cabAdd info about ES6 import with config options5566b77Fixed link in changelog11acd9f17.2.0- Additional commits viewable in compare view
Updates dotenv-cli from 8.0.0 to 9.0.0
Commits
6c510a39.0.08d377b1Add quiet flag to suppress dotenv debug output by default (#129)0da11b9Update LICENSE with copyright information- See full diff in compare view
Updates jest from 29.7.0 to 30.0.5
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.5
Features
[jest-config]AllowtestMatchto take a string value[jest-worker]LetworkerIdleMemoryLimitaccept 0 to always restart worker child processesFixes
[expect]Fixbiginterror (#15702)30.0.4
Features
[expect]TheInversetype is now exported (#15714)[expect]feat: supportasync functionsintoBe(#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 thedefaultAsyncResolver(#15679)Fixes
[jest-resolver]Resolve builtin modules correctly (#15683)
... (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.3.0
Release notes
Sourced from jest-html-reporter's releases.
v4.3.0
What's Changed
- Added new configuration option
hideConsoleLogOriginwhich will opt out of console log stack traces by@lararojasmrin Hargne/jest-html-reporter#199- Added theme:
darkThemeby@lararojasmrin Hargne/jest-html-reporter#199New Contributors
@lararojasmrmade their first contribution in Hargne/jest-html-reporter#199Full Changelog: https://github.com/Hargne/jest-html-reporter/compare/4.2.0...4.3.0
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
dfcf70bMerge pull request #203 from Hargne/dev3f27675Merge branch 'dev' of https://github.com/Hargne/jest-html-reporter into deve4ba721Bump version to 4.3.0 and add prepublishOnly scriptff6f2ccMerge pull request #199 from lararojasmr/master90b43b0Merge remote-tracking branch 'origin/master'aceae05Update build script to include test step before bundling07fd067Update README.mdebb1483Merge branch 'master' into master9bf24a7Rename table column tohideConsoleLogOriginand adjust README formatting.a646daaMerge pull request #202 from Hargne/dev- Additional commits viewable in compare view
Updates prettier from 3.5.3 to 3.6.2
Release notes
Sourced from prettier's releases.
3.6.2
What's Changed
- Add missing blank line around code block by
@fiskerin prettier/prettier#176753.6.1
- Fix "Warning: File descriptor 39 closed but not opened in unmanaged mode" error when running
--experimental-cli3.6.0
🔗 Release note "Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!"
Changelog
Sourced from prettier's changelog.
3.6.2
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
TypeScript: Allow const without initializer (#17650, #17654 by
@fisker)// Input </tr></table>
... (truncated)
Commits
7a8b05fRelease 3.6.246526b4Add missing blank line around code block (#17675)a04ec11chore(deps): update babel to v7.27.7 (#17684)32be5b6chore(deps): update dependency flow-parser to v0.274.1 (#17676)b55e777Update docs about "TypeScript Configuration Files" (#17677)b197c99chore(deps): update dependency@vitejs/plugin-reactto v4.6.0 (#17674)1185f83chore(deps): update dependency@angular/compilerto v20.0.5 (#17680)aa1316fchore(deps): update dependency browserslist to v4.25.1 (#17671)c468d33chore(deps): update dependency oxc-parser to v0.75.0 (#17672)3f46d91chore(deps): update dependency vite to v7 (#17673)- 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.8
Release notes
Sourced from typedoc's releases.
v0.28.8
Features
- If using JS config files, the
pluginoption can now be given plugin functions to load.- Permit
-within tag names to supporttypescript-json-schema's@TJS-typetag, #2972.- Exposed
Context.createSymbolIdfor use by plugins.Bug Fixes
- Relative links in
<img srcset>will now be discovered by TypeDoc, #2975.- Relative links in
<source src>and<source srcset>elements will now be discovered by TypeDoc, #2975.- Improved inherited from/overwrites link discovery to point to parent properties in more cases, #2978
Thanks!
v0.28.7
Features
- Introduced the
@sortStrategytag to override thesortoption on a specific reflection, #2965.Bug Fixes
- Classes and functions exported with
export { type X }are no longer missing comments, #2970.- Setting
localeto 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
... (truncated)
Changelog
Sourced from typedoc's changelog.
v0.28.8 (2025-07-28)
Features
- If using JS config files, the
pluginfunction can now be given plugin functions to load.- Permit
-within tag names to supporttypescript-json-schema's@TJS-typetag, #2972.- Exposed
Context.createSymbolIdfor use by plugins.Bug Fixes
- Relative links in
<img srcset>will now be discovered by TypeDoc, #2975.- Relative links in
<source src>and<source srcset>elements will now be discovered by TypeDoc, #2975.- Improved inherited from/overwrites link discovery to point to parent properties in more cases, #2978
Thanks!
v0.28.7 (2025-06-30)
Features
- Introduced the
@sortStrategytag to override thesortoption on a specific reflection, #2965.Bug Fixes
- Classes and functions exported with
export { type X }are no longer missing comments, #2970.- Setting
localeto 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!
... (truncated)
Commits
da37862Update changelog for releasedb59553Bump version to 0.28.8c02e495Make site build stricterbc54be8Discover parent types through mapped typesb418f6bLint, wrong in this case, but appease it07d8315Merge branch 'fix/source-srcset' into dev59db5b2Handle multiple URLs in srcsetd3899e0Handle relative links within <source src>dcb0bd6IntroduceContext.createSymbolIdc84da4fFix lint- Additional commits viewable in compare view
Updates typedoc-plugin-markdown from 4.6.3 to 4.7.1
Release notes
Sourced from typedoc-plugin-markdown's releases.
typedoc-plugin-markdown@4.7.1
Patch Changes
- Escape square brackets in index signature types (typedoc2md/typedoc-plugin-markdown#829).
- Fix missing segments in declaration titles that contain periods.
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.1 (2025-07-19)
Patch Changes
- Escape square brackets in index signature types (#829).
- Fix missing segments in declaration titles that contain periods.
4.7.0 (2025-06-19)
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
74a649fVersion Packages51b8f88fix(core): fix missing segments in declaration titles that contain periods649dd41fix(core): escape square brackets in index signature types (#829)53641e2chore(all): update to pnpm780af69chore(docs): updated changelog date53dcf2fchore(all): replace Jest with Mocha and Node's assert module362c3a5Version Packagesffac19cfix(core): fix incorrect overload function comments (#827)8bc50c8chore(core): clean-up configb53ca35Merge pull request #826 from ocavue/ocavue-members-types- Additional commits viewable in compare view
Updates webpack from 5.99.9 to 5.100.2
Release notes
Sourced from webpack's releases.
v5.100.2
Fixes
- Keep consistent CSS order
- Dependency without the source order attribute must keep their original index
- Keep module traversal consistent across reexport scenarios
Performance Improvements
- Extend
importPhasesPluginonly when enabledeferImport(#19689)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
splitChunkswhen external variables and runtimeChunk are not set.- Added support
usingkeyword- 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:schemePerformance Improvements
- Remove useless startup entrypoint runtime for ES modules output
- Cache
new URL(...)evaluate expression
Commits
21fcdbbchore(release): 5.100.22c8d1f1chore(deps): bump the dependencies group with 2 updates (#19701)89eb6a3fix: keep module traversal consistent across reexport scenarios (#19702)fdb0c4efix: dependency without the sourceOrder attribute must keep their original in...d76af00fix: types (#19699)503ed53docs: update examples (#19694)e251891refactor: import dependency generation for defer module with async dependenci...9eb9642perf: extend importPhasesPlugin only when enable deferImport (#19689)0a98446fix: keep consistent css order (#19686)6de2dfdfix(test): TestRunner avoids using jest mock's require (#19685)- 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
0
0
+0
-0
Package Dependencies
Technical Details
| ID: | 4547851 |
| UUID: | 3269557851 |
| Node ID: | PR_kwDOH4W5nM6g9d64 |
| Host: | GitHub |
| Repository: | sqlitecloud/sqlitecloud-js |