Skip to content

Commit 1e45ad6

Browse files
chore(deps-dev): bump cspell from 9.6.0 to 9.6.1 in the npm-dependencies group (#294)
Bumps the npm-dependencies group with 1 update: [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell). Updates `cspell` from 9.6.0 to 9.6.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/streetsidesoftware/cspell/releases">cspell's releases</a>.</em></p> <blockquote> <h2>v9.6.1</h2> <h2>Fixes</h2> <!-- raw HTML omitted --> <h3>fix: Move performance monitoring into its own package (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8431">#8431</a>)</h3> <h2>Pull request overview</h2> <p>This PR extracts performance monitoring functionality from multiple packages into a new dedicated package <code>@cspell/cspell-performance-monitor</code>. The new package provides a centralized, conditionally-enabled performance measurement system using the standard Performance API.</p> <p><strong>Changes:</strong></p> <ul> <li>Created a new <code>@cspell/cspell-performance-monitor</code> package with improved performance measurement functions that can be conditionally enabled/disabled</li> <li>Migrated and removed duplicate performance measurement code from <code>cspell-lib</code>, <code>cspell-dictionary</code>, and <code>cspell-trie-lib</code> packages</li> <li>Updated performance measurement calls to use the new disposable pattern (<code>using _ = measurePerf()</code>) that leverages TypeScript's explicit resource management</li> </ul> <hr /> <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h3>fix: Add NotifyEmitter (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8423">#8423</a>)</h3> <h2>Pull request overview</h2> <p>This pull request adds a new <code>NotifyEmitter</code> class to provide a reusable event notification system based on the Disposable pattern. The PR refactors the RPC server test to use this new event emitter pattern instead of a custom <code>AsyncMessageQueue</code> implementation, resulting in cleaner and more maintainable code.</p> <p><strong>Changes:</strong></p> <ul> <li>Introduces <code>NotifyEmitter</code> class with <code>NotifyEvent</code> pattern for event handling with automatic cleanup via <code>Symbol.dispose</code></li> <li>Adds helper functions <code>notifyEventToPromise</code> and <code>notifyEventOnce</code> for working with notify events</li> <li>Creates <code>MessagePortEvents</code> wrapper class to adapt MessagePort events to the NotifyEmitter pattern</li> <li>Refactors <code>server.test.ts</code> to use the new event system, removing the custom <code>AsyncMessageQueue</code> implementation</li> <li>Adds <code>result?: unknown</code> field to <code>RPCResponse</code> interface for more consistent type handling</li> <li>Exports new notify-related types and functions through the public API</li> </ul> <hr /> <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h3>refactor: Adjust RPC interface to use a config (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8420">#8420</a>)</h3> <h2>Pull request overview</h2> <p>Refactors the RPC client/server APIs (and cspell RPC wrappers) to accept a single configuration object, and updates worker integration and tests accordingly.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md">cspell's changelog</a>.</em></p> <blockquote> <h2>v9.6.1 (2026-01-25)</h2> <h3>Fixes</h3> <!-- raw HTML omitted --> <h3>fix: Move performance monitoring into its own package (<a href="https://redirect.github.com/streetsidesoftware/cspell/pull/8431">#8431</a>)</h3> <h2>Pull request overview</h2> <p>This PR extracts performance monitoring functionality from multiple packages into a new dedicated package <code>@cspell/cspell-performance-monitor</code>. The new package provides a centralized, conditionally-enabled performance measurement system using the standard Performance API.</p> <p><strong>Changes:</strong></p> <ul> <li>Created a new <code>@cspell/cspell-performance-monitor</code> package with improved performance measurement functions that can be conditionally enabled/disabled</li> <li>Migrated and removed duplicate performance measurement code from <code>cspell-lib</code>, <code>cspell-dictionary</code>, and <code>cspell-trie-lib</code> packages</li> <li>Updated performance measurement calls to use the new disposable pattern (<code>using _ = measurePerf()</code>) that leverages TypeScript's explicit resource management</li> </ul> <hr /> <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h3>fix: Add NotifyEmitter (<a href="https://redirect.github.com/streetsidesoftware/cspell/pull/8423">#8423</a>)</h3> <h2>Pull request overview</h2> <p>This pull request adds a new <code>NotifyEmitter</code> class to provide a reusable event notification system based on the Disposable pattern. The PR refactors the RPC server test to use this new event emitter pattern instead of a custom <code>AsyncMessageQueue</code> implementation, resulting in cleaner and more maintainable code.</p> <p><strong>Changes:</strong></p> <ul> <li>Introduces <code>NotifyEmitter</code> class with <code>NotifyEvent</code> pattern for event handling with automatic cleanup via <code>Symbol.dispose</code></li> <li>Adds helper functions <code>notifyEventToPromise</code> and <code>notifyEventOnce</code> for working with notify events</li> <li>Creates <code>MessagePortEvents</code> wrapper class to adapt MessagePort events to the NotifyEmitter pattern</li> <li>Refactors <code>server.test.ts</code> to use the new event system, removing the custom <code>AsyncMessageQueue</code> implementation</li> <li>Adds <code>result?: unknown</code> field to <code>RPCResponse</code> interface for more consistent type handling</li> <li>Exports new notify-related types and functions through the public API</li> </ul> <hr /> <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h3>refactor: Adjust RPC interface to use a config (<a href="https://redirect.github.com/streetsidesoftware/cspell/pull/8420">#8420</a>)</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/streetsidesoftware/cspell/commit/666fb79096d25c53af9519cad07030e7aca597e1"><code>666fb79</code></a> v9.6.1</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/f8dd04f658012351bd06a434686b6fd4d4d34039"><code>f8dd04f</code></a> chore: Prepare Release v9.6.1 (auto-deploy) (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8359">#8359</a>)</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/302763938fac914ba2e7fb9269ee631af7df5672"><code>3027639</code></a> fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8433">#8433</a>)</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/003d0430a1883102b71b4947e1da55707c215bb6"><code>003d043</code></a> fix: Move performance monitoring into its own package (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8431">#8431</a>)</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/d639a823b2ddd247e947d63cd67be8d067cb99a2"><code>d639a82</code></a> refactor: Adjust RPC interface to use a config (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8420">#8420</a>)</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/d6df82ff3589e9e615b44fe603666d503bb7c98d"><code>d6df82f</code></a> refactor: Refactor CLI to make it easier to spell check files in parallel (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8">#8</a>...</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/ae820e36a7c4b59b81ead4fc69087717b5c4357b"><code>ae820e3</code></a> refactor: Refactor settings a bit (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8385">#8385</a>)</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/fd9da285d8c9809fdd07417d4e2f96195c68408f"><code>fd9da28</code></a> fix: report errors in spelling result. (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8381">#8381</a>)</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/baf610940eef630d8239b5f8d8af6274398d65d3"><code>baf6109</code></a> refactor: Clean Up CSpell Worker (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8372">#8372</a>)</li> <li><a href="https://github.com/streetsidesoftware/cspell/commit/1fb26dc6c1c9b17b9de79d0ae7de204011a951e3"><code>1fb26dc</code></a> fix: Add CSpellRPCServer and CSpellRPCClient classes (<a href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/8366">#8366</a>)</li> <li>Additional commits viewable in <a href="https://github.com/streetsidesoftware/cspell/commits/v9.6.1/packages/cspell">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cspell&package-manager=npm_and_yarn&previous-version=9.6.0&new-version=9.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c3d2fe9 commit 1e45ad6

File tree

2 files changed

+147
-120
lines changed

2 files changed

+147
-120
lines changed

0 commit comments

Comments
 (0)