Skip to content

chore: bump the all-deps group across 1 directory with 10 updates #90

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 Apr 14, 2025

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

Package From To
image-size 2.0.0-beta.4 2.0.2
@rollup/plugin-commonjs 28.0.2 28.0.3
@rollup/plugin-node-resolve 16.0.0 16.0.1
prettier 3.5.2 3.5.3
rollup 4.34.8 4.40.0
rollup-plugin-summary 3.0.0 3.0.1
typedoc 0.27.8 0.28.2
typedoc-plugin-markdown 4.4.2 4.6.2
typedoc-plugin-remark 1.2.4 1.3.0
typescript 5.7.3 5.8.3

Updates image-size from 2.0.0-beta.4 to 2.0.2

Release notes

Sourced from image-size's releases.

v2.0.2

Fixes

Full Changelog: image-size/image-size@v2.0.1...v2.0.2

v2.0.1

Full Changelog: image-size/image-size@v2.0.0...v2.0.1

v2.0.0

The release

  • Adds dual support for CJS and ESM, switches from Buffer to UInt8Array, uses DataView for reads, and can therefore now also be used in browsers
  • Removes all dependencies
  • Introduces some performance improvements
  • Drops synchronous API.

Please see the Readme for the usage examples.

Full Changelog: image-size/image-size@v1.2.0...v2.0.0

Commits

Updates @rollup/plugin-commonjs from 28.0.2 to 28.0.3

Changelog

Sourced from @​rollup/plugin-commonjs's changelog.

v28.0.3

2025-03-06

Bugfixes

  • fix: fix error when bundle contains require() of module with falsy __esModule export (#1850)
Commits
  • 8b5fb98 chore(release): commonjs v28.0.3
  • f873993 fix(commonjs): fix error when bundle contains require() of module with falsy ...
  • See full diff in compare view

Updates @rollup/plugin-node-resolve from 16.0.0 to 16.0.1

Changelog

Sourced from @​rollup/plugin-node-resolve's changelog.

v16.0.1

2025-03-11

Bugfixes

  • fix: add ignoreSideEffectsForRoot to exported interface (#1841)
Commits
  • e1a5ef9 chore(release): node-resolve v16.0.1
  • d455fff fix(node-resolve): add ignoreSideEffectsForRoot to exported interface (#1841)
  • d64f8d6 chore(release): node-resolve v16.0.0
  • ebd0969 feat(node-resolve)!: set development or production condition (#1823)
  • f89ca92 chore(release): node-resolve v15.3.1
  • 4cfc1c3 refactor(pluginutils,node-resolve): replace test with includes (#1787)
  • a8e326d chore(release): node-resolve v15.3.0
  • 032055b feat(node-resolve): allow preferBuiltins to be a function (#1694)
  • 6d4bb6b chore(release): node-resolve v15.2.4
  • 190aa21 chore(node-resolve): remove is-builtin-module (#1735)
  • Additional commits viewable in compare view

Updates prettier from 3.5.2 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

Commits

Updates rollup from 4.34.8 to 4.40.0

Release notes

Sourced from rollup's releases.

v4.40.0

4.40.0

2025-04-12

Features

  • Only show eval warnings on first render and only when the call is not tree-shaken (#5892)
  • Tree-shake non-included dynamic import members when the handler just maps to one named export (#5898)

Bug Fixes

  • Consider dynamic imports nested within top-level-awaited dynamic import expressions to be awaited as well (#5900)
  • Fix namespace rendering when tree-shaking is disabled (#5908)
  • When using multiple transform hook filters, all of them need to be satisfied together (#5909)

Pull Requests

v4.39.0

4.39.0

2025-04-02

Features

  • Do not create separate facade chunks if a chunk would contain several entry modules that allow export extension if there are no export name conflicts (#5891)

Bug Fixes

  • Mark the id property as optional in the filter for the resolveId hook (#5896)

Pull Requests

v4.38.0

... (truncated)

Changelog

Sourced from rollup's changelog.

4.40.0

2025-04-12

Features

  • Only show eval warnings on first render and only when the call is not tree-shaken (#5892)
  • Tree-shake non-included dynamic import members when the handler just maps to one named export (#5898)

Bug Fixes

  • Consider dynamic imports nested within top-level-awaited dynamic import expressions to be awaited as well (#5900)
  • Fix namespace rendering when tree-shaking is disabled (#5908)
  • When using multiple transform hook filters, all of them need to be satisfied together (#5909)

Pull Requests

4.39.0

2025-04-02

Features

  • Do not create separate facade chunks if a chunk would contain several entry modules that allow export extension if there are no export name conflicts (#5891)

Bug Fixes

  • Mark the id property as optional in the filter for the resolveId hook (#5896)

Pull Requests

4.38.0

2025-03-29

... (truncated)

Commits
  • 1f2d579 4.40.0
  • cf0512f Fix release script
  • 4ded099 feat: treeshake dynamic import chained member expression (#5898)
  • 8bb7b6f chore(deps): lock file maintenance minor/patch updates (#5917)
  • 19fb519 consider the dynamic import within a TLA call expression as a TLA import (#5900)
  • aba2ea9 Fix treeshake: false breaking destructured namespace imports (#5908)
  • 02a060d Correct the behavior when multiple transform filter options are specified (#5...
  • 051a502 chore(deps): update dependency @​types/picomatch to v4 (#5915)
  • 7d7ae3f fix(deps): update rust crate swc_compiler_base to v17 (#5916)
  • 86e1ccd chore(deps): update dependency vite to v6.2.6 [security] (#5918)
  • Additional commits viewable in compare view

Updates rollup-plugin-summary from 3.0.0 to 3.0.1

Release notes

Sourced from rollup-plugin-summary's releases.

v3.0.1

3.0.1 (2025-04-08)

Bug Fixes

  • Reusing an instance of a plugin will result in duplicate output of the summary (6ac18e5)
Commits
  • 3a5c914 Merge pull request #74 from siaikin/patch-1
  • 6ac18e5 fix: Reusing an instance of a plugin will result in duplicate output of the s...
  • c4e64da chore: update husky and readme files
  • 0021377 chore: remove funding
  • See full diff in compare view

Updates typedoc from 0.27.8 to 0.28.2

Release notes

Sourced from typedoc's releases.

v0.28.2

Features

  • @group none and @category none will now render their children without a section heading in the default theme, #2922.
  • Added @disableGroups tag to completely disable the grouping mechanism for a given reflection, #2922.

Bug Fixes

  • Variables using @class now correctly handle @category, #2914.
  • Variables using @class now include constructor parameters, #2914.
  • Variables using @class with a generic first constructor function now adopt that function's type parameters as the class type parameters, #2914.
  • When printing entry point globs which fail to match any paths, TypeDoc will no longer normalize the glob, #2918.
  • Inlining types can now handle more type variants, #2920.
  • Fixed behavior of externalSymbolLinkMappings option when URL is set to #, #2921.
  • Fixed broken links within module pages when structure-dir router was used, #2928.
  • Type parameters on JS classes defined with @typedef now correctly handle the constraint, #2929.
  • API: toString on types containing index signatures now behave correctly, #2917.
  • Added @inlineType to the list of tags excluded by default.

v0.28.1

Features

  • The TypeDocOptions interface now marks options as optional so it no longer has to be wrapped in Partial for use in config files, #2901.
  • API: Expose control methods for deferred conversion for plugin use (typedoc-plugin-missing-exports)
  • API: Expose method to disable TypeDoc usage of localStorage without clearing it, #2908.

Bug Fixes

  • --watch can now infer entry points from package.json as supported in non-watch mode, #2899.
  • @include with regions now works on files with CRLF line endings, #2902.
  • Generated page names now correctly handles UTF-8 characters requiring more than 16 bits #2905.
  • Fixed a crash when converting module.exports = [], #2909.
  • Fixed URL generation which introduced a superfluous ./ in relative links, #2910.

Thanks!

v0.28.0

Breaking Changes

  • TypeDoc now expects all input globs paths to be specified with / path separators, #2825.

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.28.2 (2025-04-07)

Features

  • @group none and @category none will now render their children without a section heading in the default theme, #2922.
  • Added @disableGroups tag to completely disable the grouping mechanism for a given reflection, #2922.

Bug Fixes

  • Variables using @class now correctly handle @category, #2914.
  • Variables using @class now include constructor parameters, #2914.
  • Variables using @class with a generic first constructor function now adopt that function's type parameters as the class type parameters, #2914.
  • When printing entry point globs which fail to match any paths, TypeDoc will no longer normalize the glob, #2918.
  • Inlining types can now handle more type variants, #2920.
  • Fixed behavior of externalSymbolLinkMappings option when URL is set to #, #2921.
  • Fixed broken links within module pages when structure-dir router was used, #2928.
  • Type parameters on JS classes defined with @typedef now correctly handle the constraint, #2929.
  • API: toString on types containing index signatures now behave correctly, #2917.
  • Added @inlineType to the list of tags excluded by default.

v0.28.1 (2025-03-20)

Features

  • The TypeDocOptions interface now marks options as optional so it no longer has to be wrapped in Partial for use in config files, #2901.
  • API: Expose control methods for deferred conversion for plugin use (typedoc-plugin-missing-exports)
  • API: Expose method to disable TypeDoc usage of localStorage without clearing it, #2908.

Bug Fixes

  • --watch can now infer entry points from package.json as supported in non-watch mode, #2899.
  • @include with regions now works on files with CRLF line endings, #2902.
  • Generated page names now correctly handles UTF-8 characters requiring more than 16 bits #2905.
  • Fixed a crash when converting module.exports = [], #2909.
  • Fixed URL generation which introduced a superfluous ./ in relative links, #2910.

Thanks!

v0.28.0 (2025-03-15)

Breaking Changes

  • TypeDoc now expects all input globs paths to be specified with / path separators, #2825.

... (truncated)

Commits

Updates typedoc-plugin-markdown from 4.4.2 to 4.6.2

Release notes

Sourced from typedoc-plugin-markdown's releases.

[email protected]

Patch Changes

  • Expose full declaration for returned union types (#799).
  • Move isOptional flag inside backTicks (#797) - thanks @​LekoArts.
  • Added support for TypeDoc's v0.28.2 features @group none, @category none and @disableGroups.

[email protected]

Patch Changes

  • Correctly render html table when interfacePropertiesFormat=htmlTable (#794).
  • Correctly handle overloaded function display in list and table views (#793).
  • Expose comments and signatures to index signature members.
  • Wrap default values in back ticks on table views to be consistent with list views.
  • Append semi colons to signature in code blocks.

[email protected]

Minor Changes

  • Implemented support for consuming TypeDoc core routers.
  • Exported routers to public api.
  • Implemented a hierarchy summary page as per default theme.
  • Updated "Constructor" titles of classes to fix internal anchor issues.

Patch Changes

  • Fix incompatibility when used with "outputs" (#788).
  • Utilize "anchorPrefix" option to ensure unique anchors linking if required (#764).

[email protected]

Patch Changes

  • Ensure all file paths use forward slashes in windows (#782).

[email protected]

Patch Changes

  • Correctly handle package index paths (#782).
  • Make all options optional in PluginOptions interface (#781).

[email protected]

Minor Changes

  • Implemented custom routers for plugin to support TypeDoc 0.28 router implementation.
  • Added "typeAliasPropertiesFormat" option to support TypeDoc 0.28 updated behaviour for Object literal type alias types.

Patch Changes

  • Mark object properties as optional in PluginOptions interface (#777).
Changelog

Sourced from typedoc-plugin-markdown's changelog.

4.6.2 (2025-04-09)

Patch Changes

  • Expose full declaration for returned union types (#799).
  • Move isOptional flag inside backTicks (#797) - thanks @​LekoArts.
  • Added support for TypeDoc's v0.28.2 features @group none, @category none and @disableGroups.

4.6.1 (2025-04-02)

Patch Changes

  • Correctly render html table when interfacePropertiesFormat=htmlTable (#794).
  • Correctly handle overloaded function display in list and table views (#793).
  • Expose comments and signatures to index signature members.
  • Wrap default values in back ticks on table views to be consistent with list views.
  • Append semi colons to signature in code blocks.

4.6.0 (2025-03-23)

This release continues the effort to further align to TypeDoc’s default theme, with improvements that make the plugin more consistent and predictable.

Architectural Changes

  • Introduced support for TypeDoc core routers. This allows output files to be generated in the same structure as the default HTML theme, while still using the plugin’s Markdown theme.
  • Exported routers to the public API, enabling customization by other plugins.

Structural Changes

  • Package readme's (when "entryPointStrategy" is "packages") are now merged with the package index page producing a single entrypoint for packages with an associated readme. This aligns with the default theme and improves navigation.
  • To support core routers, a "Hierarchy Summary" page has been introduced to all routers. This feature is turned off by default but can be enabled by setting "includeHierarchySummary" to "true".
  • When "includeHierarchySummary" is "true", symbols with an available hierarchy now include an associated "Hierarchy" Markdown heading with a "View Summary" link as per the default theme.
  • Class constructor headings now read "Constructor". This aligns to the TypeDoc internal reflection name and fixes issues with internal anchoring not resolving correctly.

Minor Changes

  • Implemented support for consuming TypeDoc core routers.
  • Exported routers to public api.
  • Implemented a hierarchy summary page as per default theme.
  • Updated "Constructor" titles of classes to fix internal anchor issues.

Patch Changes

  • Fix incompatibility when used with "outputs" (#788).
  • Utilize "anchorPrefix" option to ensure unique anchors linking if required (#764).

4.5.2 (2025-03-19)

Patch Changes

... (truncated)

Commits
  • 7456f3f Version Packages
  • ef583ee fix(core): added support for@group none, @category none and @disableGroups
  • aef5620 fix(core): expose full declaration for returned union types
  • 6543717 chore(docs): tweaked parametersFormat description
  • c10f634 fix(core): move isOptional flag inside backTicks
  • 280c047 chore(docs): updated docs
  • fe98081 Version Packages
  • cd293b6 fix(core): correctly handle overloaded function display in list and table views
  • 83404ad fix(core): correctly render html table when interfacePropertiesFormat=htmlTable
  • 43079f0 chore(docs): updated docs
  • Additional commits viewable in compare view

Updates typedoc-plugin-remark from 1.2.4 to 1.3.0

Release notes

Sourced from typedoc-plugin-remark's releases.

v2.0.1 - v2.05

  • Bug fixing / teething issues
Changelog

Sourced from typedoc-plugin-remark's changelog.

1.3.0 (2025-03-16)

Minor Changes

  • Exposed toc heading to Type Alias members.
  • typedoc-plugin-markdown 4.5 compatibility fixes.
Commits

Updates typescript from 5.7.3 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • 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 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

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

| Package | From | To |
| --- | --- | --- |
| [image-size](https://github.com/image-size/image-size) | `2.0.0-beta.4` | `2.0.2` |
| [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) | `28.0.2` | `28.0.3` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `16.0.0` | `16.0.1` |
| [prettier](https://github.com/prettier/prettier) | `3.5.2` | `3.5.3` |
| [rollup](https://github.com/rollup/rollup) | `4.34.8` | `4.40.0` |
| [rollup-plugin-summary](https://github.com/yousifalraheem/rollup-plugin-summary) | `3.0.0` | `3.0.1` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.27.8` | `0.28.2` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.4.2` | `4.6.2` |
| [typedoc-plugin-remark](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-remark) | `1.2.4` | `1.3.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.3` |



Updates `image-size` from 2.0.0-beta.4 to 2.0.2
- [Release notes](https://github.com/image-size/image-size/releases)
- [Commits](image-size/image-size@v2.0.0-beta.4...v2.0.2)

Updates `@rollup/plugin-commonjs` from 28.0.2 to 28.0.3
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.3/packages/commonjs)

Updates `@rollup/plugin-node-resolve` from 16.0.0 to 16.0.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v16.0.1/packages/node-resolve)

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

Updates `rollup` from 4.34.8 to 4.40.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.34.8...v4.40.0)

Updates `rollup-plugin-summary` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/yousifalraheem/rollup-plugin-summary/releases)
- [Commits](yousifalraheem/rollup-plugin-summary@v3.0.0...v3.0.1)

Updates `typedoc` from 0.27.8 to 0.28.2
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.27.8...v0.28.2)

Updates `typedoc-plugin-markdown` from 4.4.2 to 4.6.2
- [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 `typedoc-plugin-remark` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-remark/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/[email protected]/packages/typedoc-plugin-remark)

Updates `typescript` from 5.7.3 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.3)

---
updated-dependencies:
- dependency-name: image-size
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: "@rollup/plugin-commonjs"
  dependency-version: 28.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: "@rollup/plugin-node-resolve"
  dependency-version: 16.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: rollup
  dependency-version: 4.40.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: rollup-plugin-summary
  dependency-version: 3.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: typedoc
  dependency-version: 0.28.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: typedoc-plugin-markdown
  dependency-version: 4.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: typedoc-plugin-remark
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-deps
...

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 Apr 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