Skip to content
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

chore(deps-dev): bump the dev-dependencies group across 1 directory with 6 updates #179

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 17, 2025

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

Package From To
cspell 8.17.3 8.17.5
eslint-plugin-functional 8.0.0 9.0.1
typedoc 0.27.9 0.28.0
typedoc-plugin-frontmatter 1.2.1 1.3.0
vitest 3.0.8 3.0.9

Updates cspell from 8.17.3 to 8.17.5

Release notes

Sourced from cspell's releases.

v8.17.5

Changes

Fixes

fix: Replace the legacy cspell-tools (#6928)


Dictionary Updates

fix: Workflow Bot -- Update Dictionaries (main) (#6937)

Update Dictionaries (main)

Summary

 .../snapshots/MartinThoma/LaTeX-examples/report.yaml      |  3 +--
 .../snapshots/MartinThoma/LaTeX-examples/snapshot.txt     |  3 +--
 packages/cspell-bundled-dicts/package.json                |  2 +-
 pnpm-lock.yaml                                            | 15 ++++++++++-----
 4 files changed, 13 insertions(+), 10 deletions(-)

fix: Workflow Bot -- Update Dictionaries (main) (#6931)

Update Dictionaries (main)

... (truncated)

Changelog

Sourced from cspell's changelog.

8.17.5 (2025-02-22)

8.17.4 (2025-02-19)

Commits

Updates eslint-plugin-functional from 8.0.0 to 9.0.1

Release notes

Sourced from eslint-plugin-functional's releases.

v9.0.1

9.0.1 (2025-02-24)

Bug Fixes

  • immutable-data: make ignoreMapsAndSets option actually work (#936) (2bcc407)

v9.0.0

9.0.0 (2025-02-23)

Features

  • immutable-data: add support for detecting map and set mutations (#935) (0386f3a), closes #934

BREAKING CHANGES

  • immutable-data: map and set mutations will now be reported
Changelog

Sourced from eslint-plugin-functional's changelog.

9.0.1 (2025-02-24)

Bug Fixes

  • immutable-data: make ignoreMapsAndSets option actually work (#936) (2bcc407)

9.0.0 (2025-02-23)

Features

  • immutable-data: add support for detecting map and set mutations (#935) (0386f3a), closes #934

BREAKING CHANGES

  • immutable-data: map and set mutations will now be reported
Commits
  • 08145d8 chore(release): 9.0.1 [skip ci]
  • 2bcc407 fix(immutable-data): make ignoreMapsAndSets option actually work (#936)
  • 37fa1ef chore(release): 9.0.0 [skip ci]
  • 0386f3a feat(immutable-data): add support for detecting map and set mutations (#935)
  • b00d98c chore(dev-deps): update dependency eslint-vitest-rule-tester to v1 (#931)
  • 48a8bed chore(dev-deps): update dependency eslint-plugin-format to v1 (#930)
  • 41a3d5e chore(dev-deps): update dependency eslint-flat-config-utils to v2 (#928)
  • ae403a6 chore(dev-deps): update dependency eslint-merge-processors to v1 (#929)
  • 6492968 chore(dev-deps): update dependency eslint-config-prettier to v10 (#927)
  • a5b1215 chore(dev-deps): update dependency @​stylistic/eslint-plugin to v3 (#926)
  • Additional commits viewable in compare view

Updates typedoc from 0.27.9 to 0.28.0

Release notes

Sourced from typedoc's releases.

v0.28.0

Breaking Changes

  • TypeDoc now expects all input globs paths to be specified with / path separators, #2825.
  • TypeDoc's --entryPointStrategy merge mode now requires JSON from at least version 0.28.0.
  • Removed jp translations from lang, to migrate switch to ja.
  • File name references in intentionallyNotExported now use a package name/package relative path instead of an absolute path for matching.
  • The source-order sort ordering now considers package names / package relative paths instead of using the absolute paths to a file.
  • TypeDoc will only check for a project README file next to the discovered package.json file if --readme is not set this change improves handling of monorepo setups where some packages have readme files and others do not, #2875.
  • Function-like variable exports will now only be automatically converted as function types if they are initialized with a function expression. TypeDoc can be instructed to convert them as functions with the @function tag, #2881.
  • Object literal type alias types will now be converted in a way which causes them to be rendered more similarly to how interfaces are rendered, #2817.

API Breaking Changes

  • ProjectReflection.getReflectionFromSymbol and ProjectReflection.getSymbolFromReflection have been moved to Context
  • Path and PathArray parameter types now always contain normalized paths.
  • Introduced a Router which is used for URL creation. Reflection.url, Reflection.anchor, and Reflection.hasOwnDocument have been removed.
  • Deserializer.reviveProject(s) no longer accepts an option to add project documents.
  • Deserializer.reviveProjects now requires an alwaysCreateEntryPointModule option.
  • Comment.serializeDisplayParts no longer requires a serializer argument.
  • ReflectionSymbolId.fileName is now optional, TypeDoc now stores a combination of a package name and package relative path instead. The fileName property will be present when initially created, but is not serialized.
  • Removed DeclarationReflection.relevanceBoost attribute which was added for plugins, but never used.
  • i18n proxy is no longer passed to many functions, instead, reference i18n exported from the module directly.
  • ReflectionKind.singularString and ReflectionKind.pluralString now returns translated strings. The methods on Internationalization to do this previously have been removed.
  • The HTML output structure for the search box has changed to support the new modal.
  • DefaultThemeRenderContext's typeDeclaration and typeDetailsIfUseful methods now require both a reflection and a type in order to support @expandType

Features

  • Add support for TypeScript 5.8.x
  • The search modal in the HTML output has been rewritten to provide better mobile support
  • Added a --router option which can be used to modify TypeDoc's output folder structure. This can be extended with plugins, #2111.
  • Introduced the @primaryExport modifier tag to provide more fine grained control over export conversion order, #2856
  • Introduced packagesRequiringDocumentation option for validation.notDocumented, TypeDoc will expect comments to be present for symbols in the specified packages.
  • TypeDoc now exports a typedoc/browser entrypoint for parsing and using serialized JSON files, #2528.
  • Type packageOptions as Partial<TypeDocOptions>, #2878.
  • TypeDoc will now warn if an option which should only be set at the root level is set in packageOptions, #2878.
  • Introduced @function tag to force TypeDoc to convert variable declarations with a type annotation as functions, #2881.

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.28.0 (2025-03-15)

Breaking Changes

  • TypeDoc now expects all input globs paths to be specified with / path separators, #2825.
  • TypeDoc's --entryPointStrategy merge mode now requires JSON from at least version 0.28.0.
  • Removed jp translations from lang, to migrate switch to ja.
  • File name references in intentionallyNotExported now use a package name/package relative path instead of an absolute path for matching.
  • The source-order sort ordering now considers package names / package relative paths instead of using the absolute paths to a file.
  • TypeDoc will only check for a project README file next to the discovered package.json file if --readme is not set this change improves handling of monorepo setups where some packages have readme files and others do not, #2875.
  • Function-like variable exports will now only be automatically converted as function types if they are initialized with a function expression. TypeDoc can be instructed to convert them as functions with the @function tag, #2881.
  • Object literal type alias types will now be converted in a way which causes them to be rendered more similarly to how interfaces are rendered, #2817.

API Breaking Changes

  • ProjectReflection.getReflectionFromSymbol and ProjectReflection.getSymbolFromReflection have been moved to Context
  • Path and PathArray parameter types now always contain normalized paths.
  • Introduced a Router which is used for URL creation. Reflection.url, Reflection.anchor, and Reflection.hasOwnDocument have been removed.
  • Deserializer.reviveProject(s) no longer accepts an option to add project documents.
  • Deserializer.reviveProjects now requires an alwaysCreateEntryPointModule option.
  • Comment.serializeDisplayParts no longer requires a serializer argument.
  • ReflectionSymbolId.fileName is now optional, TypeDoc now stores a combination of a package name and package relative path instead. The fileName property will be present when initially created, but is not serialized.
  • Removed DeclarationReflection.relevanceBoost attribute which was added for plugins, but never used.
  • i18n proxy is no longer passed to many functions, instead, reference i18n exported from the module directly.
  • ReflectionKind.singularString and ReflectionKind.pluralString now returns translated strings. The methods on Internationalization to do this previously have been removed.
  • The HTML output structure for the search box has changed to support the new modal.
  • DefaultThemeRenderContext's typeDeclaration and typeDetailsIfUseful methods now require both a reflection and a type in order to support @expandType

Features

  • Add support for TypeScript 5.8.x
  • The search modal in the HTML output has been rewritten to provide better mobile support
  • Added a --router option which can be used to modify TypeDoc's output folder structure. This can be extended with plugins, #2111.
  • Introduced the @primaryExport modifier tag to provide more fine grained control over export conversion order, #2856
  • Introduced packagesRequiringDocumentation option for validation.notDocumented, TypeDoc will expect comments to be present for symbols in the specified packages.
  • TypeDoc now exports a typedoc/browser entrypoint for parsing and using serialized JSON files, #2528.
  • Type packageOptions as Partial<TypeDocOptions>, #2878.
  • TypeDoc will now warn if an option which should only be set at the root level is set in packageOptions, #2878.
  • Introduced @function tag to force TypeDoc to convert variable declarations with a type annotation as functions, #2881.

... (truncated)

Commits

Updates typedoc-plugin-frontmatter from 1.2.1 to 1.3.0

Changelog

Sourced from typedoc-plugin-frontmatter's changelog.

1.3.0 (2025-03-16)

Minor Changes

  • typedoc-plugin-markdown 4.5 compatibility fixes.
Commits

Updates typedoc-plugin-markdown from 4.4.2 to 4.5.0

Release notes

Sourced from typedoc-plugin-markdown's releases.

typedoc-plugin-markdown@4.5.0

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.5.0 (2025-03-16)

This release introduces support for TypeDoc 0.28 that contains several under-the-hood breaking API changes.

From a consumer perspective there should be no direct breaking change from the plugin itself, but there are some architectural and output structure changes to consider.

Architectural Changes

  • This plugin now utilizes TypeDoc's router feature. This implementation replaces the now deprecated "outputFileStrategy" option. "outputFileStrategy" is still supported for now, but will now point to the "kind-structure" and "module" router keys respectively. Further details are contained in the documentation website.
  • Please note that separate strategies for output generation in different packages (when entryPointStrategy=packages) is no longer possible with this new architecture.

Structural Changes

  • As per TypeDoc model updates, Object literal Type Alias members are now rendered in groups ("Properties", "Methods") etc rather than under a single "Type Declaration" heading.
  • A new option "typeAliasPropertiesFormat" has been exposed to place properties rendered from the updated structure to a table format.
  • Type parameter list views have been updated to separate items with markdown headings for consistency and to improve readability when parameters have detailed explanations or complex properties. If type parameters are straightforward and few in number switching to typeParametersFormat=table might be preferable.

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).
Commits
  • e4bf064 Version Packages
  • ec572d4 feat(core): typedoc 0.28 compatibility fixes and enhancements
  • c50eb66 chore(all): fix models script
  • 93e43a2 docs(all): updated dev docs
  • 1000c9c fix(core): updated changelog date
  • See full diff in compare view

Updates vitest from 3.0.8 to 3.0.9

Release notes

Sourced from vitest's releases.

v3.0.9

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 8ea9e14 chore: release v3.0.9
  • 422ba66 fix(coverage): browser mode + coverage.all (#7597)
  • 3fdee3d chore: fix various typos (#7663)
  • 4b0451d chore(deps): update dependency @​antfu/eslint-config to v4 (#7407)
  • fcf3cf5 refactor: coverage types to avoid mixing node and runtime types (#7627)
  • 3fb3fbf fix: fix getState().testPath during collection with no isolation (#7640)
  • 7155aef chore: use pnpm catalog (#7590)
  • c0cf65f chore: use unplugin-isolated-decl with oxc-transform for dts build (#7609)
  • 5eb4cd1 fix(browser): fail playwright timeouts earlier than a test timeout (#7565)
  • b7f5526 fix: race condition in RPC filesystem cache. (#7531)
  • 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

…ith 6 updates

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

| Package | From | To |
| --- | --- | --- |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.17.3` | `8.17.5` |
| [eslint-plugin-functional](https://github.com/eslint-functional/eslint-plugin-functional) | `8.0.0` | `9.0.1` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.27.9` | `0.28.0` |
| [typedoc-plugin-frontmatter](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-frontmatter) | `1.2.1` | `1.3.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.8` | `3.0.9` |



Updates `cspell` from 8.17.3 to 8.17.5
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.17.5/packages/cspell)

Updates `eslint-plugin-functional` from 8.0.0 to 9.0.1
- [Release notes](https://github.com/eslint-functional/eslint-plugin-functional/releases)
- [Changelog](https://github.com/eslint-functional/eslint-plugin-functional/blob/main/CHANGELOG.md)
- [Commits](eslint-functional/eslint-plugin-functional@v8.0.0...v9.0.1)

Updates `typedoc` from 0.27.9 to 0.28.0
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.27.9...v0.28.0)

Updates `typedoc-plugin-frontmatter` from 1.2.1 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-frontmatter/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-frontmatter@1.3.0/packages/typedoc-plugin-frontmatter)

Updates `typedoc-plugin-markdown` from 4.4.2 to 4.5.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/typedoc-plugin-markdown@4.5.0/packages/typedoc-plugin-markdown)

Updates `vitest` from 3.0.8 to 3.0.9
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.9/packages/vitest)

---
updated-dependencies:
- dependency-name: cspell
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: eslint-plugin-functional
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typedoc-plugin-frontmatter
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typedoc-plugin-markdown
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 17, 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