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(package): update cspell to version 8.13.3 #763

Merged
merged 1 commit into from
Aug 13, 2024

Conversation

depfu[bot]
Copy link
Contributor

@depfu depfu bot commented Aug 13, 2024

Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ cspell (8.13.2 → 8.13.3) · Repo · Changelog

Release Notes

8.13.3

Changes

Fixes

fix: Try non-English suffix endings on word breaks (#6066)

fix: Try non-English suffix endings on word breaks (#6066)

Related to #6065.

When breaking a camel case word into its parts there are two word break patterns:

  • regExpCamelCaseWordBreaks
  • regExpCamelCaseWordBreaksWithEnglishSuffix is the default pattern.
    It is the same as regExpCamelCaseWordBreaks, but will not split ALL CAPS words with English suffixes.

Using just regExpCamelCaseWordBreaks misses unknown 4-letter words.
The code below was tried, but it missed flagging words like LSTMs:

  • LSTM was caught.
  • LSTMs was missed because it becomes LST and Ms.
const results = _checkCamelCaseWord(vr, regExpCamelCaseWordBreaks);
if (!results.length) return results;
const resultsEnglishBreaks = _checkCamelCaseWord(vr, regExpCamelCaseWordBreaksWithEnglishSuffix);
return results.length < resultsEnglishBreaks.length ? results : resultsEnglishBreaks;
  • Make sure the API doesn't change when adding functions to text.ts.
  • Fix possible accent issue with wordSplitter (note, not an issue with Normalized strings).

Dictionary Updates

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

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

Update Dictionaries (main)

Summary

 packages/cspell-bundled-dicts/package.json |  2 +-
 pnpm-lock.yaml                             | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

Documentation

docs: fix grammar issue. (#6064)

docs: fix grammar issue. (#6064)

fixes #6059


Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 14 commits:

↗️ comment-json (indirect, 4.2.4 → 4.2.5) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by 3 commits:


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

@depfu depfu bot added the depfu label Aug 13, 2024
@depfu depfu bot merged commit 5076d0a into main Aug 13, 2024
8 checks passed
@depfu depfu bot deleted the depfu/update/npm/cspell-8.13.3 branch August 13, 2024 14:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants