Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

Bumps the minor-patch-dependencies group with 15 updates in the / directory:

Package From To
better-sqlite3 12.6.0 12.6.2
mysql2 3.16.0 3.16.1
@cspell/eslint-plugin 9.4.0 9.6.0
@types/node 25.0.6 25.0.9
@typescript-eslint/eslint-plugin 8.52.0 8.53.0
@typescript-eslint/parser 8.52.0 8.53.0
@vitest/coverage-v8 4.0.16 4.0.17
@vitest/ui 4.0.16 4.0.17
bun 1.3.5 1.3.6
@types/bun 1.3.5 1.3.6
bun-types 1.3.5 1.3.6
eslint-plugin-prettier 5.5.4 5.5.5
prettier 3.7.4 3.8.0
type-fest 5.3.1 5.4.1
vitest 4.0.16 4.0.17

Updates better-sqlite3 from 12.6.0 to 12.6.2

Release notes

Sourced from better-sqlite3's releases.

v12.6.2

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.6.1...v12.6.2

v12.6.1

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.6.0...v12.6.1

Commits

Updates mysql2 from 3.16.0 to 3.16.1

Release notes

Sourced from mysql2's releases.

v3.16.1

3.16.1 (2026-01-15)

Bug Fixes

  • named-placeholders: improve handling of mixed/nested quotes in query parsing (#4011) (3e00cd7)
Changelog

Sourced from mysql2's changelog.

3.16.1 (2026-01-15)

Bug Fixes

  • named-placeholders: improve handling of mixed/nested quotes in query parsing (#4011) (3e00cd7)
Commits
  • 25d5df7 chore(master): release 3.16.1 (#4014)
  • 687e733 build(deps-dev): bump prettier from 3.7.4 to 3.8.0 in /website (#4013)
  • 3e00cd7 fix(named-placeholders): improve handling of mixed/nested quotes in query par...
  • e58d520 build(deps): bump undici from 7.16.0 to 7.18.2 in /website (#4010)
  • c01dae5 build(deps-dev): bump @​types/node from 25.0.3 to 25.0.8 in /website (#4008)
  • cfc6bcb build(deps-dev): bump eslint-plugin-prettier from 5.5.4 to 5.5.5 (#4007)
  • 505bea5 build(deps-dev): bump @​types/node from 25.0.3 to 25.0.8 (#4006)
  • 19f2682 build(deps-dev): bump @​typescript-eslint/eslint-plugin (#4003)
  • 0d81126 build(deps): bump iconv-lite from 0.7.1 to 0.7.2 (#3998)
  • 1609ca6 build(deps): bump sass from 1.97.1 to 1.97.2 in /website (#3997)
  • Additional commits viewable in compare view

Updates @cspell/eslint-plugin from 9.4.0 to 9.6.0

Release notes

Sourced from @​cspell/eslint-plugin's releases.

v9.6.0

Features

feat: ESLint-plugin -- Distinguish between Forbidden, Misspelled, and Unknown words. (#8337)

Pull request overview

This PR updates the eslint-plugin to report different types of spelling issues with improved categorization and messaging. The changes include upgrading ESLint from v8 to v9, introducing new issue severity levels (Forbidden, Misspelled, Unknown, Hint), and adding a report option to control the level of reporting.

Changes:

  • Upgraded ESLint dependency from v8.57.1 to v9.39.2 across all fixtures and packages
  • Introduced new severity level "Misspelled" to distinguish typos with suggestions from truly unknown words
  • Added report option ('all', 'simple', 'typos', 'flagged') to control which types of issues are reported
  • Enhanced error messages to include suggestions directly in the message text

feat: ESLint-plugin -- Add report option to be able to control the reporting level (matching the CLI): "all", "simple", "typos", "flagged". (#8273)

Pull request overview

This PR adds support for unknown word reporting options to the cspell ESLint plugin, allowing users to control which types of spelling issues are reported (all unknown words, simple typos, common typos, or only flagged words).

Changes:

  • Added a new report option to the ESLint plugin configuration with values: 'all', 'simple', 'typos', and 'flagged'
  • Implemented mapping from the report option to CSpell's unknownWords setting
  • Added unit tests for the new report filtering functionality

This PR contains the changes required to resolve cspell ESLint plugin: support typos-only reporting (CLI --report typos / unknownWords report-common-typos) [#8261](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell-eslint-plugin/issues/8261)


feat: support storing suggestions in trie (#8228)

Pull request overview

This PR adds support for storing word suggestions directly in trie data structures, enabling dictionaries to provide preferred spelling suggestions for words. The implementation introduces a new suggestionPrefix field (default :) to TrieInfo and a hasPreferredSuggestions characteristic flag.

Key Changes:

... (truncated)

Changelog

Sourced from @​cspell/eslint-plugin's changelog.

v9.6.0 (2026-01-12)

Features

  • feat: ESLint-plugin -- Distinguish between Forbidden, Misspelled, and Unknown words. (#8337)

  • feat: ESLint-plugin -- Add report option to be able to control the reporting level (matching the CLI): "all", "simple", "typos", "flagged". (#8273)

  • feat: support storing suggestions in trie (#8228)

  • feat: Add Support reading / writing bTrie files (#8204)

Fixes

  • refactor: extract processFile from lint.ts (#8344)

  • fix: Improve word lookup performance when not found (#8330)

  • fix: Improve loading time of dictionaries (#8318)

  • fix: Reduce loading time of dictionaries. (#8316)

  • fix: Support loading btrie dictionaries in cspell-lib (#8311)

  • fix: Improve loading performance a bit. (#8309)

  • fix: Prepare tools to generate btrie files. (#8298)

  • fix: Optimize btrie files when building (#8285)

  • fix: Add btrie path to dictionary definition (#8284)

  • fix: Work towards support prefixes when walking ITrie (#8276)

  • fix: Fix CStyleHexValue to handle BigInt values. (#8282)

  • refactor: Remove FastTrieBlob (#8267)

  • fix: Make endian required when encoding a StringTable (#8265)

  • refactor: Removed FastTrieBlob part 1 (#8266)

  • fix: Support string prefixes when walking nodes (#8259)

  • refactor: Document TrieBlob format (#8256)

  • fix: adjust error message (#8249)

  • fix: Add StringTable and refactor BinaryFormat (#8243)

  • refactor: Rename private methods in TrieBuilder (#8240)

  • refactor: A bit of refactoring of utf8 naming (#8239)

  • refactor: Add GTrie class for later (#8238)

  • refactor: import using .ts when the package is bundled. (#8224)

  • fix: Add cspell-tools config option to gen btrie (#8221)

  • feat: auto load btrie files if available (#8218)

  • fix: Minor perf boost to TrieBlob.#findNode (#8213)

  • fix: deprecated legacy trie.has (#8196)

... (truncated)

Commits

Updates @types/node from 25.0.6 to 25.0.9

Commits

Updates @typescript-eslint/eslint-plugin from 8.52.0 to 8.53.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.53.0

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)
  • eslint-plugin: add rule [strict-void-return] (#9707)
  • project-service: allow passing Partial<ts.server.ServerHost> to project service (#11932)

🩹 Fixes

  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)
  • typescript-estree: fix syntax check for using declaration (#11910)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid invalid "import equals" declaration (#11936)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: add rule [strict-void-return] (#9707)
  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • 3021ede chore(release): publish 8.53.0
  • 722ab62 fix(eslint-plugin): [no-useless-default-assignment] fix false positive for pa...
  • 92fcf3e feat(eslint-plugin): add rule [strict-void-return] (#9707)
  • 3fb0381 docs(eslint-plugin): [no-useless-default-assignment] fix misformatted link (#...
  • 62ee26e feat(eslint-plugin): [no-unused-vars] add a fixer to remove unused imports (#...
  • c4d5a56 fix(eslint-plugin): replace unclear "error typed" with more helpful descrip...
  • 3ac7735 fix(typescript-estree): forbid invalid extends and implements in interfac...
  • a8b924b fix(typescript-estree): forbid invalid class implements (#11934)
  • a98ec1f fix(typescript-estree): forbid type-only import with both default and named s...
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.52.0 to 8.53.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.53.0

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)
  • eslint-plugin: add rule [strict-void-return] (#9707)
  • project-service: allow passing Partial<ts.server.ServerHost> to project service (#11932)

🩹 Fixes

  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)
  • typescript-estree: fix syntax check for using declaration (#11910)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid invalid "import equals" declaration (#11936)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.53.0 (2026-01-12)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @vitest/coverage-v8 from 4.0.16 to 4.0.17

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.0.17

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @vitest/ui from 4.0.16 to 4.0.17

Release notes

Sourced from @​vitest/ui's releases.

v4.0.17

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • dd54e94 chore: release v4.0.17
  • a36c3be refactor(browser): restructure screenshot matcher and add documentation (#9243)
  • dd03316 fix(ui): detect gzip by magic numbers instead of Content-Type header in html ...
  • See full diff in compare view

Updates bun from 1.3.5 to 1.3.6

Release notes

Sourced from bun's releases.

Bun v1.3.6

To install Bun v1.3.6

curl -fsSL https://bun.sh/install | bash
# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.3.6:

bun upgrade

Read Bun v1.3.6's release notes on Bun's blog

Thanks to 23 contributors!

Commits
  • d530ed9 fix(css): restore handler context after minifying nested rules (#25997)
  • 959169d feat(archive): change API to constructor-based with S3 support (#25940)
  • 461ad88 fix(http): fix Strong reference leak in server response streaming (#25965)
  • b6abbd5 fix(Bun.SQL): handle binary columns in MySQL correctly (#26011)
  • beccd01 fix(FileSink): add Promise\<number> to FileSink.write() return type (#25962)
  • 35eb539 deps: update sqlite to 3.51.200 (#25957)
  • ebf39e9 fix(install): prevent use-after-free when retrying failed HTTP requests (#25949)
  • b610e80 fix(http): properly handle pipelined data in CONNECT requests (#25938)
  • 7076a49 feat(archive): add TypeScript types, docs, and files() benchmark (#25922)
  • d4a966f fix(install): prevent symlink path traversal in tarball extraction (#25584)
  • Additional commits viewable in compare view

Updates @types/bun from 1.3.5 to 1.3.6

Commits

Updates bun-types from 1.3.5 to 1.3.6

Release notes

Sourced from bun-types's releases.

Bun v1.3.6

To install Bun v1.3.6

curl -fsSL https://bun.sh/install | bash
# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.3.6:

bun upgrade

Read Bun v1.3.6's release notes on Bun's blog

Thanks to 23 contributors!

…dates

Bumps the minor-patch-dependencies group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [better-sqlite3](https://github.com/WiseLibs/better-sqlite3) | `12.6.0` | `12.6.2` |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.16.0` | `3.16.1` |
| [@cspell/eslint-plugin](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell-eslint-plugin) | `9.4.0` | `9.6.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.6` | `25.0.9` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.52.0` | `8.53.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.52.0` | `8.53.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.16` | `4.0.17` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.0.16` | `4.0.17` |
| [bun](https://github.com/oven-sh/bun) | `1.3.5` | `1.3.6` |
| [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun) | `1.3.5` | `1.3.6` |
| [bun-types](https://github.com/oven-sh/bun/tree/HEAD/packages/bun-types) | `1.3.5` | `1.3.6` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.5.4` | `5.5.5` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.0` |
| [type-fest](https://github.com/sindresorhus/type-fest) | `5.3.1` | `5.4.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.16` | `4.0.17` |



Updates `better-sqlite3` from 12.6.0 to 12.6.2
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](WiseLibs/better-sqlite3@v12.6.0...v12.6.2)

Updates `mysql2` from 3.16.0 to 3.16.1
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v3.16.0...v3.16.1)

Updates `@cspell/eslint-plugin` from 9.4.0 to 9.6.0
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell-eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v9.6.0/packages/cspell-eslint-plugin)

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

Updates `@typescript-eslint/eslint-plugin` from 8.52.0 to 8.53.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.52.0 to 8.53.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.0/packages/parser)

Updates `@vitest/coverage-v8` from 4.0.16 to 4.0.17
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.17/packages/coverage-v8)

Updates `@vitest/ui` from 4.0.16 to 4.0.17
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.17/packages/ui)

Updates `bun` from 1.3.5 to 1.3.6
- [Release notes](https://github.com/oven-sh/bun/releases)
- [Commits](oven-sh/bun@bun-v1.3.5...bun-v1.3.6)

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

Updates `bun-types` from 1.3.5 to 1.3.6
- [Release notes](https://github.com/oven-sh/bun/releases)
- [Commits](https://github.com/oven-sh/bun/commits/bun-v1.3.6/packages/bun-types)

Updates `eslint-plugin-prettier` from 5.5.4 to 5.5.5
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.5.4...v5.5.5)

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

Updates `type-fest` from 5.3.1 to 5.4.1
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](sindresorhus/type-fest@v5.3.1...v5.4.1)

Updates `vitest` from 4.0.16 to 4.0.17
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.17/packages/vitest)

---
updated-dependencies:
- dependency-name: better-sqlite3
  dependency-version: 12.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: mysql2
  dependency-version: 3.16.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: "@cspell/eslint-plugin"
  dependency-version: 9.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: "@vitest/ui"
  dependency-version: 4.0.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: bun
  dependency-version: 1.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: "@types/bun"
  dependency-version: 1.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: bun-types
  dependency-version: 1.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: prettier
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: type-fest
  dependency-version: 5.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: vitest
  dependency-version: 4.0.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-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 Jan 19, 2026
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