[Snyk] Upgrade cspell from 6.31.3 to 8.12.1 #23
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Snyk has created this PR to upgrade cspell from 6.31.3 to 8.12.1.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
The recommended version is 59 versions ahead of your current version.
The recommended version was released on a month ago.
Release notes
Package name: cspell
Features
feat: Support custom issue template (#5949)
feat: Support custom issue template (#5949)
Related to #5758
Make it possible to use custom issue templates from the command line:
Template
option:
--issue-template
to set the template to use when reporting issues.The template is a string that can contain the following placeholders:
$filename
- the file name$col
- the column number$row
- the row number$text
- the word that is misspelled$message
- the issues message: "unknown word", "word is misspelled", etc.$messageColored
- the issues message with color based upon the message type.$uri
- the URI of the file$suggestions
- suggestions for the misspelled word (if requested)$quickFix
- possible quick fixes for the misspelled word.$contextFull
- the full context of the misspelled word.$contextLeft
- the context to the left of the misspelled word.$contextRight
- the context to the right of the misspelled word.Color is supported using the following template pattern:
{<style[.style]> <text>}
- where<style>
is a style name and<text>
is the text to style.Styles
bold
,italic
,underline
,strikethrough
,dim
,inverse
black
,red
,green
,yellow
,blue
,magenta
,cyan
,white
Example:
{green $filename}:{yellow $row}:{yellow $col} $message {red $text} $quickFix {dim $suggestions}
Fixes
refactor: remove .cjs dependency (#5956)
refactor: remove .cjs dependency (#5956)
fix: refactor uri to url (#5943)
fix: refactor uri to url (#5943)
Part of moving away from vscode-uri to the standard URL.
fix: Use stdout and stderr to display text (#5935)
fix: Use stdout and stderr to display text (#5935)
fix: ignore `_` in hex values (#5934)
fix: ignore
_
in hex values (#5934)Dictionary Updates
fix: Workflow Bot -- Update Dictionaries (main) (#5938)
fix: Workflow Bot -- Update Dictionaries (main) (#5938)
Update Dictionaries (main)
Summary
Changes
Features
feat: speed up dictionary lookup (#5898)
feat: speed up dictionary lookup (#5898)
Fixes
refactor: char index (#5926)
refactor: char index (#5926)
fix: support emojis in triev3 files (#5923)
fix: support emojis in triev3 files (#5923)
fix: Use UTF8 sequence to store characters in the TrieBlob (#5913)
fix: Use UTF8 sequence to store characters in the TrieBlob (#5913)
The TrieBlob (binary version of a Trie) was using a character index and storing the offset into the character index in each trie node.
Using utf8 bytes instead make the format easier to understand and process. It also gets the added benefit of being sorted. Sorting was lost when the index was used.
fix: make sure the TrieBlob is sorted. (#5909)
fix: make sure the TrieBlob is sorted. (#5909)
fix: search issue with Emojis (#5906)
fix: search issue with Emojis (#5906)
fix: performance - Improve dictionary search speed. (#5901)
fix: performance - Improve dictionary search speed. (#5901)
fix: Improve word lookup performance for FastTrieBlob and TrieBlob (#5888)
fix: Improve word lookup performance for FastTrieBlob and TrieBlob (#5888)
Dictionary Updates
fix: Workflow Bot -- Update Dictionaries (main) (#5874)
fix: Workflow Bot -- Update Dictionaries (main) (#5874)
Update Dictionaries (main)
Summary
Changes
Fixes
fix(cspell-tools): Make sure the directive is used to build dictionaries. (#5867)
fix(cspell-tools): Make sure the directive is used to build dictionaries. (#5867)
Changes
Fixes
fix: Correctly handle relative globs (#5864)
fix: Correctly handle relative globs (#5864)
fixes #5861
Changes
Fixes
fix(cspell-tools): support adding directives (#5860)
fix(cspell-tools): support adding directives (#5860)
CSpell dictionary can contain directives that changes how the file is parsed. This fix is to have the cspell-tool add them to the file header.
Changes
Features
feat: Add glob support for URLs (#5824)
feat: Add glob support for URLs (#5824)
It is possible to use CSpell in an environment where all the files being spell checked exist behind a virtual URL, something like:
vscode-vfs://github/microsoft/vscode/extensions/csharp/README.md
.The challenge here is to make the glob system URL aware.
Fixes
fix: Always set the color to white (#5826)
fix: Always set the color to white (#5826)
fixes #5821
fix: Make sure case sensitive trace works as expected. (#5806)
fix: Make sure case sensitive trace works as expected. (#5806)
fix: resolve imports from ESLint plugin (#5790)
fix: resolve imports from ESLint plugin (#5790)
fixes #5789
fix: `suggestWords` dict schema validation (#5786)
fix:
suggestWords
dict schema validation (#5786)Dictionary Updates
fix: Workflow Bot -- Update Dictionaries (main) (#5849)
fix: Workflow Bot -- Update Dictionaries (main) (#5849)
Update Dictionaries (main)
Summary
fix: Workflow Bot -- Update Dictionaries (main) (#5800)
fix: Workflow Bot -- Update Dictionaries (main) (#5800)
Update Dictionaries (main)
Summary
fix: Workflow Bot -- Update Dictionaries (main) (#5783)
fix: Workflow Bot -- Update Dictionaries (main) (#5783)
Update Dictionaries (main)
Summary
Documentation
docs: fix link to zulip logo (#5848)
docs: fix link to zulip logo (#5848)
docs: Remove references to OpenBase (#5807)
docs: Remove references to OpenBase (#5807)
See: https://www.linkedin.com/posts/liorgrossman_today-i-am-writing-to-share-that-weve-made-activity-7051208392559771648-etA3/
Changes
Fixes
fix: Make sure binary files are not checked. (#5780)
fix: Make sure binary files are not checked. (#5780)
fixes #5779
.mp4
to the video listDocumentation
docs: format tables in generated docs (#5776)
docs: format tables in generated docs (#5776)
Changes
Features
feat: Support spell checking more document types (#5741)
feat: Support spell checking more document types (#5741)
fixes #5740
Checking Custom AST Nodes
The
checkScope
setting is used to enable / disable checking AST Nodes. Parsers are used to generate the AST (Abstract Syntax Tree) used by ESLint to evaluate a document. Each PlugIn gets access to the AST.checkScope
can be used to handle new AST node when a custom parser is added.New Options
feat: Add library `@ cspell/url` (#5720)
feat: Add library
@ cspell/url
(#5720)Move URL methods into a common library.
Fixes
fix: Workflow Bot -- Update Dictionaries (#5729)
fix: Workflow Bot -- Update Dictionaries (#5729)
Dictionary Updates
fix: Workflow Bot -- Update Dictionaries (main) (#5762)
fix: Workflow Bot -- Update Dictionaries (main) (#5762)
Update Dictionaries (main)
Summary
fix: Workflow Bot -- Update Dictionaries (main) (#5755)
fix: Workflow Bot -- Update Dictionaries (main) (#5755)
Update Dictionaries (main)
Summary
fix: Workflow Bot -- Update Dictionaries (main) (#5716)
fix: Workflow Bot -- Update Dictionaries (main) (#5716)
Update Dictionaries (main)
Summary
fix: Workflow Bot -- Update Dictionaries (main) (#5711)
fix: Workflow Bot -- Update Dictionaries (main) (#5711)
Update Dictionaries (main)
Summary
Documentation
docs: Extract Markdown from cspell.schema.json (#5722)
docs: Extract Markdown from cspell.schema.json (