Skip to content

build(deps): bump the pip group across 2 directories with 16 updates#47

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pip-d0e9750e44
Open

build(deps): bump the pip group across 2 directories with 16 updates#47
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pip-d0e9750e44

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 8, 2026

Copy link
Copy Markdown
Contributor

Bumps the pip group with 16 updates in the / directory:

Package From To
transformers 4.55.4 5.3.0
pillow 11.3.0 12.2.0
langchain 0.3.27 1.3.9
docling-core 2.45.0 2.74.1
lxml 5.4.0 6.1.0
python-dotenv 1.0.1 1.2.2
filelock 3.19.1 3.20.3
idna 3.10 3.15
langchain-core 0.3.74 1.3.3
langchain-openai 0.3.32 1.1.14
langsmith 0.4.17 0.8.18
orjson 3.11.2 3.11.6
protobuf 6.32.0 6.33.5
pyarrow 21.0.0 23.0.1
tornado 6.5.2 6.5.7
urllib3 2.5.0 2.7.0

Bumps the pip group with 15 updates in the /requirements_agent directory:

Package From To
transformers 4.55.4 5.3.0
pillow 11.3.0 12.2.0
docling-core 2.45.0 2.74.1
lxml 5.4.0 6.1.0
python-dotenv 1.1.1 1.2.2
filelock 3.19.1 3.20.3
idna 3.10 3.15
langchain-core 0.3.74 1.3.3
langchain-openai 0.3.32 1.1.14
langsmith 0.4.17 0.8.18
orjson 3.11.2 3.11.6
protobuf 6.32.0 6.33.5
pyarrow 21.0.0 23.0.1
tornado 6.5.2 6.5.7
urllib3 2.5.0 2.7.0

Updates transformers from 4.55.4 to 5.3.0

Release notes

Sourced from transformers's releases.

v5.1.0: EXAONE-MoE, PP-DocLayoutV3, Youtu-LLM, GLM-OCR

New Model additions

EXAONE-MoE

K-EXAONE is a large-scale multilingual language model developed by LG AI Research. Built using a Mixture-of-Experts architecture, K-EXAONE features 236 billion total parameters, with 23 billion active during inference. Performance evaluations across various benchmarks demonstrate that K-EXAONE excels in reasoning, agentic capabilities, general knowledge, multilingual understanding, and long-context processing.

PP-DocLayoutV3

PP-DocLayoutV3 is a unified and high-efficiency model designed for comprehensive layout analysis. It addresses the challenges of complex physical distortions—such as skewing, curving, and adverse lighting—by integrating instance segmentation and reading order prediction into a single, end-to-end framework.

Youtu-LLM

Youtu-LLM is a new, small, yet powerful LLM, contains only 1.96B parameters, supports 128k long context, and has native agentic talents. On general evaluations, Youtu-LLM significantly outperforms SOTA LLMs of similar size in terms of Commonsense, STEM, Coding and Long Context capabilities; in agent-related testing, Youtu-LLM surpasses larger-sized leaders and is truly capable of completing multiple end2end agent tasks.

GlmOcr

GLM-OCR is a multimodal OCR model for complex document understanding, built on the GLM-V encoder–decoder architecture. It introduces Multi-Token Prediction (MTP) loss and stable full-task reinforcement learning to improve training efficiency, recognition accuracy, and generalization. The model integrates the CogViT visual encoder pre-trained on large-scale image–text data, a lightweight cross-modal connector with efficient token downsampling, and a GLM-0.5B language decoder. Combined with a two-stage pipeline of layout analysis and parallel recognition based on PP-DocLayout-V3, GLM-OCR delivers robust and high-quality OCR performance across diverse document layouts.

Breaking changes

  • 🚨 T5Gemma2 model structure (#43633) - Makes sure that the attn implementation is set to all sub-configs. The config.encoder.text_config was not getting its attn set because we aren't passing it to PreTrainedModel.init. We can't change the model structure without breaking so I manually re-added a call to self.adjust_attn_implemetation in modeling code

  • 🚨 Generation cache preparation (#43679) - Refactors cache initialization in generation to ensure sliding window configurations are now properly respected. Previously, some models (like Afmoe) created caches without passing the model config, causing sliding window limits to be ignored. This is breaking because models with sliding window attention will now enforce their window size limits during generation, which may change generation behavior or require adjusting sequence lengths in existing code.

  • 🚨 Delete duplicate code in backbone utils (#43323) - This PR cleans up backbone utilities. Specifically, we have currently 5 different config attr to decide which backbone to load, most of which can be merged into one and seem redundant After this PR, we'll have only one config.backbone_config as a single source of truth. The models will load the backbone from_config and load pretrained weights only if the checkpoint has any weights saved. The overall idea is same as in other composite models. A few config arguments are removed as a result.

  • 🚨 Refactor DETR to updated standards (#41549) - standardizes the DETR model to be closer to other vision models in the library.

  • 🚨Fix floating-point precision in JanusImageProcessor resize (#43187) - replaces an int() with round(), expect light numerical differences

  • 🚨 Remove deprecated AnnotionFormat (#42983) - removes a missnamed class in favour of AnnotationFormat.

... (truncated)

Commits

Updates pillow from 11.3.0 to 12.2.0

Release notes

Sourced from pillow's releases.

12.2.0

https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html

Documentation

Dependencies

Testing

Other changes

... (truncated)

Commits

Updates langchain from 0.3.27 to 1.3.9

Release notes

Sourced from langchain's releases.

langchain==1.3.9

Changes since langchain==1.3.8

release(anthropic): 1.4.6 (#38105) release(langchain): 1.3.9 (#38104) fix(langchain,anthropic): confine file-search results and tighten anthropic allowed_prefixes (#38106)

langchain==1.3.8

Changes since langchain==1.3.7

release(langchain): 1.3.8 (#38096) style(core,langchain,langchain-classic,partners): replace double backticks in docstrings (#38095) release(core): 1.4.6 (#38061) chore(langchain): add overloads to create_agent (#34309) chore(infra): bump mypy to 2.1 and unify type-check config across the monorepo (#36470) fix(langchain): support async middleware decorator typing (#34584) fix(langchain): tighten structured output model fallbacks (#38042) release(anthropic): 1.4.5 (#38036) hotfix(core): bump lockfile(s) (#38032) refactor(langchain): refactor test_create_agent_tool_validation (#34443)

langchain==1.3.7

Changes since langchain==1.3.6

release(langchain): 1.3.7 (#38024) style(langchain): add ruff rules ARG (#34435) feat(langchain): add ProviderToolSearchMiddleware (#37969) chore(langchain): activate mypy warn_return_any (#34249) test(langchain): mark legacy trigger view for 2.0 removal (#38002)

langchain==1.3.6

Changes since langchain==1.3.5

release(langchain): 1.3.6 (#38001) fix(langchain): preserve summarization trigger compatibility (#38000)

langchain==1.3.5

Changes since langchain==1.3.4

release(langchain): 1.3.5 (#37998) feat(langchain): port AND-capable trigger conditions to SummarizationMiddleware (#34576) hotfix(openai): min core dep (#37990) feat(openai): support apply_patch built-in tool (#37157) chore: bump pyarrow from 21.0.0 to 23.0.1 in /libs/langchain_v1 (#37930) chore: bump dependencies (#37892) chore: bump aiohttp from 3.13.4 to 3.14.0 in /libs/langchain_v1 (#37888)

langchain==1.3.4

Changes since langchain==1.3.3

... (truncated)

Commits
  • 3bfb6a3 release(langchain): 1.3.9 (#38104)
  • dcaf779 fix(langchain,anthropic): confine file-search results and tighten anthropic `...
  • 0392b6b fix(core): fix Pydantic v1 support in tools/runnable (#33698)
  • f6d63bc release(langchain): 1.3.8 (#38096)
  • 5d20596 style(core,langchain,langchain-classic,partners): replace double backticks in...
  • fb55c66 chore: bump langsmith from 0.8.9 to 0.8.14 in /libs/partners/huggingface (#38...
  • 51daae5 chore: bump langsmith from 0.8.9 to 0.8.14 in /libs/partners/chroma (#38092)
  • 70e9579 chore: bump langsmith from 0.8.9 to 0.8.14 in /libs/partners/fireworks (#38093)
  • 6c0e9af chore: bump langsmith from 0.8.9 to 0.8.14 in /libs/partners/xai (#38094)
  • 222dc84 ci(infra): clarify early PR auto-close guidance (#38090)
  • Additional commits viewable in compare view

Updates docling-core from 2.45.0 to 2.74.1

Release notes

Sourced from docling-core's releases.

v2.74.1

Fix

v2.74.0

Feature

  • serializer: Add MsExcelMarkdownDocSerializer for sheet-name headings (#587) (9dc882d)
  • DocChunk expansion (#549) (f2a6186)

Fix

  • DocLang: Fix chemistry serialization (#584) (b72af12)
  • Prevent numeric precision loss in Markdown table serialization (#588) (6cbdee9)

v2.73.0

Feature

  • ouline: Extend OutlineDocSerializer with filtering capabilities (#580) (18f5738)
  • Add latex and Tikz as codelabels (#579) (46a9b5a)

Documentation

v2.72.0

Feature

v2.71.0

Feature

Fix

  • Doclang: Improve checkbox serialization & deserialization (#570) (c9b5152)
  • Doclang: Fix serialization order in text items (#571) (a1535bc)
  • Extend validation to address duplicate refs (#565) (0cfb663)
  • Doclang: Fix group serialization (#566) (159eb8f)
  • Repair table children when rich table cells break hierarchy (#563) (b65dd24)

v2.70.2

... (truncated)

Changelog

Sourced from docling-core's changelog.

v2.74.1 - 2026-04-22

Fix

v2.74.0 - 2026-04-17

Feature

  • serializer: Add MsExcelMarkdownDocSerializer for sheet-name headings (#587) (9dc882d)
  • DocChunk expansion (#549) (f2a6186)

Fix

  • DocLang: Fix chemistry serialization (#584) (b72af12)
  • Prevent numeric precision loss in Markdown table serialization (#588) (6cbdee9)

v2.73.0 - 2026-04-09

Feature

  • ouline: Extend OutlineDocSerializer with filtering capabilities (#580) (18f5738)
  • Add latex and Tikz as codelabels (#579) (46a9b5a)

Documentation

v2.72.0 - 2026-04-07

Feature

v2.71.0 - 2026-03-30

Feature

Fix

  • Doclang: Improve checkbox serialization & deserialization (#570) (c9b5152)
  • Doclang: Fix serialization order in text items (#571) (a1535bc)

... (truncated)

Commits
  • 275bd1d chore: bump version to 2.74.1 [skip ci]
  • 2087d0f fix: refine ImageRef URI handling (#595)
  • 048f172 fix(doclang): default DoclangDeserializer to page 1 (#590)
  • 473fbac fix: refine remote filename handling (#591)
  • 0425dc0 chore: bump version to 2.74.0 [skip ci]
  • b72af12 fix(DocLang): fix chemistry serialization (#584)
  • 9dc882d feat(serializer): add MsExcelMarkdownDocSerializer for sheet-name headings (#...
  • 6cbdee9 fix: prevent numeric precision loss in Markdown table serialization (#588)
  • f2a6186 feat: DocChunk expansion (#549)
  • d2e79f4 chore: bump version to 2.73.0 [skip ci]
  • Additional commits viewable in compare view

Updates lxml from 5.4.0 to 6.1.0

Changelog

Sourced from lxml's changelog.

6.1.0 (2026-04-17)

This release fixes a possible external entity injection (XXE) vulnerability in iterparse() and the ETCompatXMLParser.

Features added

  • GH#486: The HTML ARIA accessibility attributes were added to the set of safe attributes in lxml.html.defs. This allows lxml_html_clean to pass them through. Patch by oomsveta.

  • The default chunk size for reading from file-likes in iterparse() is now configurable with a new chunk_size argument.

Bugs fixed

  • LP#2146291: The resolve_entities option was still set to True for iterparse and ETCompatXMLParser, allowing for external entity injection (XXE) when using these parsers without setting this option explicitly. The default was now changed to 'internal' only (as for the normal XML and HTML parsers since lxml 5.0). Issue found by Sihao Qiu as CVE-2026-41066.

6.0.4 (2026-04-12)

Bugs fixed

  • LP#2148019: Spurious MemoryError during namespace cleanup.

6.0.3 (2026-04-09)

Bugs fixed

  • Several out of memory error cases now raise MemoryError that were not handled before.

  • Slicing with large step values (outside of +/- sys.maxsize) could trigger undefined C behaviour.

  • LP#2125399: Some failing tests were fixed or disabled in PyPy.

  • LP#2138421: Memory leak in error cases when setting the public_id or system_url of a document.

... (truncated)

Commits
  • 43722f4 Update changelog.
  • 8747040 Name version of option change in docstring.
  • 6c36e6c Fix pypistats URL in download statistics script.
  • c7d76d6 Change security policy to point to Github security advisories.
  • 378ccf8 Update project income report.
  • 315270b Docs: Reduce TOC depth of package pages and move module contents first.
  • 6dbba7f Docs: Show current year in copyright line.
  • e4385bf Update project income report.
  • 5bed1e1 Validate file hashes in release download script.
  • c13ee10 Prepare release of 6.1.0.
  • Additional commits viewable in compare view

Updates python-dotenv from 1.0.1 to 1.2.2

Release notes

Sourced from python-dotenv's releases.

v1.2.2

Added

  • Support for Python 3.14, including the free-threaded (3.14t) build. (#)

Changed

  • The dotenv run command now forwards flags directly to the specified command by @​bbc2 in theskumar/python-dotenv#607
  • Improved documentation clarity regarding override behavior and the reference page.
  • Updated PyPy support to version 3.11.
  • Documentation for FIFO file support.
  • Support for Python 3.9.

Fixed

Breaking Changes

  • dotenv.set_key and dotenv.unset_key used to follow symlinks in some situations. This is no longer the case. For that behavior to be restored in all cases, follow_symlinks=True should be used.

  • In the CLI, set and unset used to follow symlinks in some situations. This is no longer the case.

  • dotenv.set_key, dotenv.unset_key and the CLI commands set and unset used to reset the file mode of the modified .env file to 0o600 in some situations. This is no longer the case: The original mode of the file is now preserved. Is the file needed to be created or wasn't a regular file, mode 0o600 is used.

Misc

New Contributors

Full Changelog: theskumar/python-dotenv@v1.2.1...v1.2.2

v1.2.1

What's Changed

... (truncated)

Changelog

Sourced from python-dotenv's changelog.

[1.2.2] - 2026-03-01

Added

  • Support for Python 3.14, including the free-threaded (3.14t) build. (#588)

Changed

  • The dotenv run command now forwards flags directly to the specified command by [@​bbc2] in #607
  • Improved documentation clarity regarding override behavior and the reference page.
  • Updated PyPy support to version 3.11.
  • Documentation for FIFO file support.
  • Dropped Support for Python 3.9.

Fixed

  • Improved set_key and unset_key behavior when interacting with symlinks by [@​bbc2] in [790c5c0]
  • Corrected the license specifier and added missing Python 3.14 classifiers in package metadata by [@​JYOuyang] in #590

Breaking Changes

  • dotenv.set_key and dotenv.unset_key used to follow symlinks in some situations. This is no longer the case. For that behavior to be restored in all cases, follow_symlinks=True should be used.

  • In the CLI, set and unset used to follow symlinks in some situations. This is no longer the case.

  • dotenv.set_key, dotenv.unset_key and the CLI commands set and unset used to reset the file mode of the modified .env file to 0o600 in some situations. This is no longer the case: The original mode of the file is now preserved. Is the file needed to be created or wasn't a regular file, mode 0o600 is used.

[1.2.1] - 2025-10-26

  • Move more config to pyproject.toml, removed setup.cfg
  • Add support for reading .env from FIFOs (Unix) by [@​sidharth-sudhir] in #586

[1.2.0] - 2025-10-26

[1.1.1] - 2025-06-24

Fixed

... (truncated)

Commits

Updates filelock from 3.19.1 to 3.20.3

Release notes

Sourced from filelock's releases.

3.20.3

What's Changed

Full Changelog: tox-dev/filelock@3.20.2...3.20.3

3.20.2

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.20.1...3.20.2

3.20.1

What's Changed

Full Changelog: tox-dev/filelock@3.20.0...3.20.1

3.20.0

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.19.1...3.20.0

Changelog

Sourced from filelock's changelog.

########### Changelog ###########


3.29.4 (2026-06-13)


  • keep the read/write heartbeat alive on a transient touch error :pr:562 - by :user:dxbjavid
  • verify inode in break_lock_file before unlinking a stale lock :pr:561 - by :user:dxbjavid

3.29.3 (2026-06-10)


  • 🐛 fix(ci): restore release environment on tag job :pr:559
  • validate pid range in _parse_lock_holder :pr:556 - by :user:dxbjavid
  • 🔧 ci(release): publish to PyPI on tag push :pr:557
  • build(deps): bump astral-sh/setup-uv from 8.1.0 to 8.2.0 :pr:558 - by :user:dependabot[bot]

3.29.2 (2026-06-10)


  • build(deps): bump actions/checkout from 6.0.2 to 6.0.3 :pr:555 - by :user:dependabot[bot]
  • [pre-commit.ci] pre-commit autoupdate :pr:554 - by :user:pre-commit-ci[bot]
  • check hostname in is_lock_held_by_us :pr:553 - by :user:dxbjavid
  • 🔒 fix(soft): harden stale-lock breaking and self-heal malformed locks :pr:551
  • open marker reads non-blocking to refuse attacker-placed fifo :pr:549 - by :user:dxbjavid

3.29.1 (2026-06-03)


  • 🐛 fix(soft): refuse to follow symlinks when reading the lock file :pr:548 - by :user:dxbjavid
  • [pre-commit.ci] pre-commit autoupdate :pr:547 - by :user:pre-commit-ci[bot]
  • [pre-commit.ci] pre-commit autoupdate :pr:546 - by :user:pre-commit-ci[bot]
  • chore: improve filelock maintenance path :pr:545 - by :user:lphuc2250gma
  • chore: improve filelock maintenance path :pr:544 - by :user:lphuc2250gma
  • chore: improve filelock maintenance path :pr:542 - by :user:lphuc2250gma
  • docs: clarify per-thread scope of FileLock configuration :pr:543 - by :user:Gares95
  • [pre-commit.ci] pre-commit autoupdate :pr:541 - by :user:pre-commit-ci[bot]
  • docs: fix API docs of release() :pr:540 - by :user:MrAnno
  • [pre-commit.ci] pre-commit autoupdate :pr:539 - by :user:pre-commit-ci[bot]
  • [pre-commit.ci] pre-commit autoupdate :pr:538 - by :user:pre-commit-ci[bot]
  • [pre-commit.ci] pre-commit autoupdate :pr:537 - by :user:pre-commit-ci[bot]
  • build(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 :pr:536 - by :user:dependabot[bot]
  • [pre-commit.ci] pre-commit autoupdate :pr:535 - by :user:pre-commit-ci[bot]

... (truncated)

Commits
  • 41b42dd Fix TOCTOU symlink vulnerability in SoftFileLock (#465)
  • f2e7d40 [pre-commit.ci] pre-commit autoupdate (#464)
  • 5088854 Support Unix systems without O_NOFOLLOW (#463)
  • 377f622 [pre-commit.ci] pre-commit autoupdate (#460)

Bumps the pip group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [transformers](https://github.com/huggingface/transformers) | `4.55.4` | `5.3.0` |
| [pillow](https://github.com/python-pillow/Pillow) | `11.3.0` | `12.2.0` |
| [langchain](https://github.com/langchain-ai/langchain) | `0.3.27` | `1.3.9` |
| [docling-core](https://github.com/docling-project/docling-core) | `2.45.0` | `2.74.1` |
| [lxml](https://github.com/lxml/lxml) | `5.4.0` | `6.1.0` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.0.1` | `1.2.2` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.19.1` | `3.20.3` |
| [idna](https://github.com/kjd/idna) | `3.10` | `3.15` |
| [langchain-core](https://github.com/langchain-ai/langchain) | `0.3.74` | `1.3.3` |
| [langchain-openai](https://github.com/langchain-ai/langchain) | `0.3.32` | `1.1.14` |
| [langsmith](https://github.com/langchain-ai/langsmith-sdk) | `0.4.17` | `0.8.18` |
| [orjson](https://github.com/ijl/orjson) | `3.11.2` | `3.11.6` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `6.32.0` | `6.33.5` |
| [pyarrow](https://github.com/apache/arrow) | `21.0.0` | `23.0.1` |
| [tornado](https://github.com/tornadoweb/tornado) | `6.5.2` | `6.5.7` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.5.0` | `2.7.0` |

Bumps the pip group with 15 updates in the /requirements_agent directory:

| Package | From | To |
| --- | --- | --- |
| [transformers](https://github.com/huggingface/transformers) | `4.55.4` | `5.3.0` |
| [pillow](https://github.com/python-pillow/Pillow) | `11.3.0` | `12.2.0` |
| [docling-core](https://github.com/docling-project/docling-core) | `2.45.0` | `2.74.1` |
| [lxml](https://github.com/lxml/lxml) | `5.4.0` | `6.1.0` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.1.1` | `1.2.2` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.19.1` | `3.20.3` |
| [idna](https://github.com/kjd/idna) | `3.10` | `3.15` |
| [langchain-core](https://github.com/langchain-ai/langchain) | `0.3.74` | `1.3.3` |
| [langchain-openai](https://github.com/langchain-ai/langchain) | `0.3.32` | `1.1.14` |
| [langsmith](https://github.com/langchain-ai/langsmith-sdk) | `0.4.17` | `0.8.18` |
| [orjson](https://github.com/ijl/orjson) | `3.11.2` | `3.11.6` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `6.32.0` | `6.33.5` |
| [pyarrow](https://github.com/apache/arrow) | `21.0.0` | `23.0.1` |
| [tornado](https://github.com/tornadoweb/tornado) | `6.5.2` | `6.5.7` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.5.0` | `2.7.0` |



Updates `transformers` from 4.55.4 to 5.3.0
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.55.4...v5.3.0)

Updates `pillow` from 11.3.0 to 12.2.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.2.0)

Updates `langchain` from 0.3.27 to 1.3.9
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain==0.3.27...langchain==1.3.9)

Updates `docling-core` from 2.45.0 to 2.74.1
- [Release notes](https://github.com/docling-project/docling-core/releases)
- [Changelog](https://github.com/docling-project/docling-core/blob/main/CHANGELOG.md)
- [Commits](docling-project/docling-core@v2.45.0...v2.74.1)

Updates `lxml` from 5.4.0 to 6.1.0
- [Release notes](https://github.com/lxml/lxml/releases)
- [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt)
- [Commits](lxml/lxml@lxml-5.4.0...lxml-6.1.0)

Updates `python-dotenv` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.0.1...v1.2.2)

Updates `filelock` from 3.19.1 to 3.20.3
- [Release notes](https://github.com/tox-dev/py-filelock/releases)
- [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst)
- [Commits](tox-dev/filelock@3.19.1...3.20.3)

Updates `idna` from 3.10 to 3.15
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md)
- [Commits](kjd/idna@v3.10...v3.15)

Updates `langchain-core` from 0.3.74 to 1.3.3
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-core==0.3.74...langchain-core==1.3.3)

Updates `langchain-openai` from 0.3.32 to 1.1.14
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-openai==0.3.32...langchain-openai==1.1.14)

Updates `langsmith` from 0.4.17 to 0.8.18
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](langchain-ai/langsmith-sdk@v0.4.17...v0.8.18)

Updates `orjson` from 3.11.2 to 3.11.6
- [Release notes](https://github.com/ijl/orjson/releases)
- [Changelog](https://github.com/ijl/orjson/blob/master/CHANGELOG.md)
- [Commits](ijl/orjson@3.11.2...3.11.6)

Updates `protobuf` from 6.32.0 to 6.33.5
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `pyarrow` from 21.0.0 to 23.0.1
- [Release notes](https://github.com/apache/arrow/releases)
- [Commits](apache/arrow@apache-arrow-21.0.0...apache-arrow-23.0.1)

Updates `tornado` from 6.5.2 to 6.5.7
- [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst)
- [Commits](tornadoweb/tornado@v6.5.2...v6.5.7)

Updates `urllib3` from 2.5.0 to 2.7.0
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.5.0...2.7.0)

Updates `transformers` from 4.55.4 to 5.3.0
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.55.4...v5.3.0)

Updates `pillow` from 11.3.0 to 12.2.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.2.0)

Updates `docling-core` from 2.45.0 to 2.74.1
- [Release notes](https://github.com/docling-project/docling-core/releases)
- [Changelog](https://github.com/docling-project/docling-core/blob/main/CHANGELOG.md)
- [Commits](docling-project/docling-core@v2.45.0...v2.74.1)

Updates `lxml` from 5.4.0 to 6.1.0
- [Release notes](https://github.com/lxml/lxml/releases)
- [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt)
- [Commits](lxml/lxml@lxml-5.4.0...lxml-6.1.0)

Updates `python-dotenv` from 1.1.1 to 1.2.2
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.0.1...v1.2.2)

Updates `filelock` from 3.19.1 to 3.20.3
- [Release notes](https://github.com/tox-dev/py-filelock/releases)
- [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst)
- [Commits](tox-dev/filelock@3.19.1...3.20.3)

Updates `idna` from 3.10 to 3.15
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md)
- [Commits](kjd/idna@v3.10...v3.15)

Updates `langchain-core` from 0.3.74 to 1.3.3
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-core==0.3.74...langchain-core==1.3.3)

Updates `langchain-openai` from 0.3.32 to 1.1.14
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-openai==0.3.32...langchain-openai==1.1.14)

Updates `langsmith` from 0.4.17 to 0.8.18
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](langchain-ai/langsmith-sdk@v0.4.17...v0.8.18)

Updates `orjson` from 3.11.2 to 3.11.6
- [Release notes](https://github.com/ijl/orjson/releases)
- [Changelog](https://github.com/ijl/orjson/blob/master/CHANGELOG.md)
- [Commits](ijl/orjson@3.11.2...3.11.6)

Updates `protobuf` from 6.32.0 to 6.33.5
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `pyarrow` from 21.0.0 to 23.0.1
- [Release notes](https://github.com/apache/arrow/releases)
- [Commits](apache/arrow@apache-arrow-21.0.0...apache-arrow-23.0.1)

Updates `tornado` from 6.5.2 to 6.5.7
- [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst)
- [Commits](tornadoweb/tornado@v6.5.2...v6.5.7)

Updates `urllib3` from 2.5.0 to 2.7.0
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.5.0...2.7.0)

---
updated-dependencies:
- dependency-name: transformers
  dependency-version: 5.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 12.2.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langchain
  dependency-version: 1.3.9
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: docling-core
  dependency-version: 2.74.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: lxml
  dependency-version: 6.1.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: python-dotenv
  dependency-version: 1.2.2
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: filelock
  dependency-version: 3.20.3
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: idna
  dependency-version: '3.15'
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langchain-core
  dependency-version: 1.3.3
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langchain-openai
  dependency-version: 1.1.14
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langsmith
  dependency-version: 0.8.18
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: orjson
  dependency-version: 3.11.6
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: protobuf
  dependency-version: 6.33.5
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pyarrow
  dependency-version: 23.0.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: tornado
  dependency-version: 6.5.7
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: urllib3
  dependency-version: 2.7.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: transformers
  dependency-version: 5.3.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pillow
  dependency-version: 12.2.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: docling-core
  dependency-version: 2.74.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: lxml
  dependency-version: 6.1.0
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: python-dotenv
  dependency-version: 1.2.2
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: filelock
  dependency-version: 3.20.3
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: idna
  dependency-version: '3.15'
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langchain-core
  dependency-version: 1.3.3
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langchain-openai
  dependency-version: 1.1.14
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langsmith
  dependency-version: 0.8.18
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: orjson
  dependency-version: 3.11.6
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: protobuf
  dependency-version: 6.33.5
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pyarrow
  dependency-version: 23.0.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: tornado
  dependency-version: 6.5.7
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: urllib3
  dependency-version: 2.7.0
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jul 8, 2026
@github-actions

github-actions Bot commented Jul 8, 2026

Copy link
Copy Markdown
Contributor

@check-spelling-bot Report

🔴 Please review

See the 📂 files view, the 📜action log, or 📝 job summary for details.

Unrecognized words (531)
accs
adr
aeiou
aeiouwxy
aeiouylsz
agentic
AIAGENT
AITOOL
alism
aliti
alize
alli
alltitles
ance
anci
ANSWERSYN
appunti
aquasecurity
argmax
argsort
asname
ation
ational
ative
ator
atx
automodule
autosummary
bagree
bak
bdecrease
bdisagree
beim
bert
biglink
biliti
Binarizer
bincrease
Bjb
Bje
ble
bli
Bma
bmust
bnegative
bno
bodywrapper
boppose
bpositive
brd
bshall
bsupport
Bva
Bvb
bwill
Bzd
CBk
CBp
CBzd
cerebras
chunker
CISO
claude
coc
codecell
Colortool
Conhost
conll
Conpty
contentstable
Copiado
copiar
Copiare
Copiato
copie
copybtn
copybutton
cpf
CROSSVAL
csvfile
ctcmlna
CVV
czwvd
dans
datamodel
dbmdz
DBSCAN
DCG
Dcu
deflist
descclassname
descname
Detectron
Devlabs
dfs
Dgt
Dialo
dirhtml
distilbert
DOCAGENT
Dockerfiles
Dockerized
docling
docname
doctool
doctree
DOCUMENTAGENT
documentwrapper
domainindex
DQi
DVT
Dwvc
Dxja
Dxsa
Dxw
ede
eed
Efontname
emb
embeddings
EMBEDGEN
ement
Emph
ence
enci
entli
ents
ENvb
eqno
Errore
esac
euo
EXTKNOW
faiss
faqs
Fehler
Ferdinandi
fieldlist
finetuned
firstch
FPN
frd
ful
fulltext
furo
generativeai
genindex
genindextable
GFkb
Gfontname
GFs
GFzcz
Gggc
Ghlb
Ghlci
Ghy
githubpages
Glu
goodmatch
gosec
grafana
GRAPHQUERY
GUg
guilabel
gumshoejs
GVk
GVu
hcn
headerlink
Hgx
Hgy
highlighttable
HIREQPIPE
HJl
HJva
Hkx
Hky
hlist
hll
Hlsa
HNSW
howto
HQi
HYBRIDRAG
IAI
ible
ICAg
ical
icate
iciti
icm
IDAg
IDAt
IDBo
IDEg
IDEu
IDEw
IDgg
IDgt
IDgu
IDh
IDho
IDIw
IDMu
IDQu
IDY
IDYi
iex
Igc
Igdmlld
IGNs
IGQ
IHN
IHZp
Ijki
importances
includehidden
indexentries
INDEXMGR
indextable
INLP
intersphinx
ipynb
irm
Iseconds
iti
ivar
iveness
ivfflat
iviti
ization
ize
izer
Jjd
Jka
Jub
jumpbox
Jvd
Jvdy
Jve
Jyb
keywordmatches
KICAg
kopieren
Kopiert
ksize
laplacian
lastresults
lastrowid
layoutparser
lda
levelname
LEXICALSEARCH
libpq
linenos
linkdescr
linting
Ljc
Ljgg
LLa
LLMSTRUCT
localstorage
logi
loweralpha
lowerroman
lowlighter
LTcu
LTEu
LTEy
LTgg
LTgt
LTMu
LTQu
LTU
LTYu
lvl
LWF
LWljb
LWxp
LWxpbm
LXJp
LXN
LXRh
LXRv
Mastercard
MCAw
MCAx
MCAy
MDgg
MDhj
MDQt
MDUu
menuselection
MGE
MGgt
mgmt
minioadmin
minlag
Mkwx
mlb
mmd
mmdc
Mnoi
modindex
modindextable
mozilla
mpnet
MSAt
MTAy
MTEu
MTgi
MTgu
MTIi
MTIu
MTJo
MTku
MTMg
MTMy
MTUu
MWE
mxfile
mydatabase
NCAw
NCAy
NCAz
NCI
NCIg
ndarray
NDg
NDgw
NDIt
NDJMMTMg
NDQ
negli
ner
networkx
Nfontname
NGMw
ngram
Nhc
NHoi
NLTK
Nmgx
nohighlight
NOID
nojekyll
NSAx
NSIg
NTZj
nvidia
Nzdmct
Nzdmctb
Nzdmctc
Nzdmctd
Nzgi
objnames
OCAx
OCAz
ocr
ODgu
ODRj
OEg
OGgx
OGMt
OHY
OHYt
OHYx
oneline
origword
OSAw
OSAx
OSTYPE
OTIg
OTMg
ous
ousli
ousness
OUwx
OVYz
OWg
OWMw
Pankaj
parseable
pbj
pcap
PDFs
Pgog
PGxpbm
PHN
pipefail
Pjwv
Pjwvb
Pjwvc
Pjx
pkl
plainto
pngs
portapapeles
Postgre
pradyunsg
Preproc
presse
proba
probs
PROMPTSEL
PSIx
PSIy
PSIz
PSJm
PSJNMC
PSJNMTIg
PSJNMTMg
PSJp
qwen
Qya
rankdir
rbody
rcnn
Registr
relbar
relevants
reranked
reranker
reranking
Rhcmsi
rtd
rtype
Ryb
Salesforce
Scikit
SDEy
SDQw
searchindex
searchtools
securego
selectbox
skele
skinparam
sklearn
SLAs
smartquotes
SMARTTOOL
sobelx
sobely
SOURCELINK
SOURCEVERSION
Sourcing
sphinxsidebar
sphinxsidebarwrapper
sst
Stds
stopwords
streamlit
SYSML
TAEF
TAGAGENT
takeaways
texpr
textblob
tfidf
Tful
tion
tional
titleterms
tnorm
toarray
toctree
togglebutton
togglestatus
TOOLREGISTRY
torchvision
Tpng
tsquery
tsvector
TTEx
TTEz
typehints
Uga
Uge
umlactor
upperalpha
upperroman
usecase
USERCONFIRM
Utb
vbm
vcmcv
VCVC
vectorizer
VECTORSEARCH
vendored
versionmodified
Vhd
viewcode
Vud
Vyby
Vycm
WBITS
Wdod
wikis
WJvb
WNvbi
WORKDIR
WPF
WUta
WVud
Wxpbm
Wxucz
xelatex
XJjb
XJy
XNl
XNwb
xpbm
XRs
Ymxlci
YTkg
YXA
YXNz
YXRo
zdmc
zdmci
Zmlsb
Zpb
ZSB
ZWF
Zwischenablage
ZWpva
ZWxhd
ZWY
ZXdib
These words are not needed and should be removed aaaaabbb aabbcc ABANDONFONT abbcc abcc ABCG ABE abgr ABORTIFHUNG ACCESSTOKEN acidev ACIOSS acp actctx ACTCTXW ADDALIAS ADDREF ADDSTRING ADDTOOL adml admx AFill AFX AHelper ahicon ahz AImpl AInplace ALIGNRIGHT allocing alpc ALTERNATENAME ALTF ALTNUMPAD ALWAYSTIP ansicpg ANSISYS ANSISYSRC ANSISYSSC answerback ANSWERBACKMESSAGE anthropic antialiasing ANull anycpu APARTMENTTHREADED APCA APCs api APIENTRY apiset APPBARDATA appcontainer appletname APPLMODAL Applocal appmodel appshellintegration APPWINDOW APPXMANIFESTVERSION APrep APSTUDIO ARRAYSIZE ARROWKEYS ASBSET ASetting ASingle ASYNCDONTCARE asyncio ASYNCWINDOWPOS atch ATest atg aumid auth Authenticode AUTOBUDDY AUTOCHECKBOX autohide AUTOHSCROLL automagically automation autopositioning AUTORADIOBUTTON autoscrolling Autowrap AVerify awch aws azurecr AZZ backgrounded Backgrounder backgrounding backstory Bazz bbccb BBDM BBGGRR bbwe bcount bcx bcz BEFOREPARENT beginthread benchcat bgfx bgidx Bgk bgra BHID bigobj binlog binplace binplaced binskim bison bitcoin bitcrazed BITMAPINFO BITMAPINFOHEADER bitmasks BITOPERATION BKCOLOR BKGND BKMK Bksp Blt blu BLUESCROLL bmad bmi bodgy BOLDFONT Borland boto boutput boxheader BPBF bpp BPPF branchconfig brandings Browsable Bspace BTNFACE bufferout buffersize buflen buildsystems buildtransitive BValue Cacafire CALLCONV CANDRABINDU capslock CARETBLINKINGENABLED CARRIAGERETURN cascadia catid cazamor CBash cbiex CBN cbt Ccc cch CCHAR CCmd ccolor CCom CConsole CCRT cdd cds celery CELLSIZE cfae cfie cfiex cfte CFuzz cgscrn chafa changelists CHARSETINFO chatbot chshdng CHT CLASSSTRING cleartype cli CLICKACTIVE clickdown CLIENTID clipbrd CLIPCHILDREN CLIPSIBLINGS closetest cloudconsole cloudvault CLSCTX clsids cmatrix cmder CMDEXT cmh CMOUSEBUTTONS Cmts cmw CNL Codeflow codepages codeql coinit colorizing COLORONCOLOR COLORREFs colorschemes colorspec colortable colortbl colortest colortool COLORVALUE comctl commdlg conapi conattrs conbufferout concfg conclnt concretizations conddkrefs condrv conechokey conemu config configuration conhost CONIME conintegrity conintegrityuwp coninteractivitybase coninteractivityonecore coninteractivitywin coniosrv CONKBD conlibk conmsgl CONNECTINFO connyection CONOUT conprops conpropsp conpty conptylib conserv consoleaccessibility consoleapi CONSOLECONTROL CONSOLEENDTASK consolegit consolehost CONSOLEIME CONSOLESETFOREGROUND consoletaeftemplates consoleuwp Consolewait CONSOLEWINDOWOWNER consrv constexprable contentfiles conterm contsf contypes conversationbuffermemory conwinuserrefs coordnew COPYCOLOR COPYDATA COPYDATASTRUCT CORESYSTEM cotaskmem countof CPG cpinfo CPINFOEX CPLINFO cplusplus CPPCORECHECK cppcorecheckrules cpprestsdk cppwinrt cpu cpx CREATESCREENBUFFER CREATESTRUCT CREATESTRUCTW createvpack crisman crloew CRTLIBS csbi csbiex CSHORT Cspace CSRSS csrutil CSTYLE CSwitch CTerminal ctl ctlseqs CTRLEVENT CTRLFREQUENCY CTRLKEYSHORTCUTS Ctrls CTRLVOLUME CUAS CUF cupxy CURRENTFONT currentmode CURRENTPAGE CURSORCOLOR CURSORSIZE CURSORTYPE CUsers CUU Cwa cwch CXFRAME CXFULLSCREEN CXHSCROLL CXMIN CXPADDEDBORDER CXSIZE CXSMICON CXVIRTUALSCREEN CXVSCROLL CYFRAME CYFULLSCREEN cygdrive CYHSCROLL CYMIN CYPADDEDBORDER CYSIZE CYSIZEFRAME CYSMICON CYVIRTUALSCREEN CYVSCROLL dai DATABLOCK datahandler DBatch dbcs DBCSFONT DBGALL DBGCHARS DBGFONTS DBGOUTPUT dbh dblclk DBUILD Dcd DColor DCOMMON DComposition DDESHARE DDevice DEADCHAR Debian debugtype DECAC DECALN DECANM DECARM DECAUPSS decawm DECBI DECBKM DECCARA DECCIR DECCKM DECCKSR DECCOLM deccra DECCTR DECDC DECDHL decdld DECDMAC DECDWL DECECM DECEKBD DECERA DECFI DECFNK decfra DECGCI DECGCR DECGNL DECGRA DECGRI DECIC DECID DECINVM DECKPAM DECKPM DECKPNM DECLRMM DECMSR DECNKM DECNRCM DECOM decommit DECPCCM DECPCTERM DECPS DECRARA decrc DECREQTPARM DECRLM DECRPM DECRQCRA DECRQDE DECRQM DECRQPSR DECRQSS DECRQTSR DECRQUPSS DECRSPS decrst DECSACE DECSASD decsc DECSCA DECSCNM DECSCPP DECSCUSR DECSDM DECSED DECSEL DECSERA DECSET DECSLPP DECSLRM DECSMKR DECSR DECST DECSTBM DECSTGLT DECSTR DECSWL DECSWT DECTABSR DECTCEM DECXCPR DEFAPP DEFAULTBACKGROUND DEFAULTFOREGROUND DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY defectdefs DEFERERASE deff DEFFACE defing DEFPUSHBUTTON defterm DELAYLOAD DELETEONRELEASE depersist deployment deprioritized dev devicecode Dext DFactory DFF dialogbox DINLINE directio DIRECTX DISABLEDELAYEDEXPANSION DISABLENOSCROLL DISPLAYATTRIBUTE DISPLAYCHANGE distros django dlg DLGC dll DLLGETVERSIONPROC dllinit dllmain DLLVERSIONINFO DLOOK doctrees documentation DONTCARE doskey dotnet DPG DPIAPI DPICHANGE DPICHANGED DPIs dpix dpiy dpnx DRAWFRAME drawio DRAWITEM DRAWITEMSTRUCT drcs DROPFILES drv DSBCAPS DSBLOCK DSBPLAY DSBUFFERDESC DSBVOLUME dsm dsound DSSCL DSwap DTo DTTERM DUNICODE DUNIT dup'ed dvi dwl DWLP dwm dwmapi DWORDs dwrite dxgi dxsm dxttbmp Dyreen EASTEUROPE ECH echokey ecount ECpp Edgium EDITKEYS EDITTEXT EDITUPDATE Efast efg efgh EHsc EINS ELEMENTNOTAVAILABLE embedding EMPTYBOX enabledelayedexpansion ENDCAP endptr ENTIREBUFFER ENU ENUMLOGFONT ENUMLOGFONTEX env EOB EOK EPres EQU ERASEBKGND ERRORONEXIT ESFCIB esrp ESV ETW EUDC eventing evflags evt exe execd executionengine exemain EXETYPE exeuwp exewin exitwin EXPUNGECOMMANDHISTORY EXSTYLE EXTENDEDEDITKEY EXTKEY EXTTEXTOUT facename FACENODE FACESIZE FAILIFTHERE fastlink fcharset fdw fesb ffd FFFD fgbg FGCOLOR FGHIJ fgidx FGs FILEDESCRIPTION FILESUBTYPE FILESYSPATH FILEW FILLATTR FILLCONSOLEOUTPUT FILTERONPASTE FINDCASE FINDDLG FINDDOWN FINDREGEX FINDSTRINGEXACT FITZPATRICK FIXEDFILEINFO flask Flg flyouts fmodern fmtarg fmtid FOLDERID FONTCHANGE fontdlg FONTENUMDATA FONTENUMPROC FONTFACE FONTHEIGHT fontinfo FONTOK FONTSTRING FONTTYPE FONTWIDTH FONTWINDOW foob FORCEOFFFEEDBACK FORCEONFEEDBACK FRAMECHANGED fre frontends fsanitize Fscreen FSINFOCLASS fte Ftm Fullscreens Fullwidth FUNCTIONCALL fuzzmain fuzzmap fuzzwrapper fuzzyfinder fwdecl fwe fwlink fzf gci gcx gdi gdip gdirenderer gdnbaselines Geddy gemini geopol GETALIAS GETALIASES GETALIASESLENGTH GETALIASEXES GETALIASEXESLENGTH GETAUTOHIDEBAREX GETCARETWIDTH GETCLIENTAREAANIMATION GETCOMMANDHISTORY GETCOMMANDHISTORYLENGTH GETCONSOLEINPUT GETCONSOLEPROCESSLIST GETCONSOLEWINDOW GETCOUNT GETCP GETCURSEL GETCURSORINFO GETDISPLAYMODE GETDISPLAYSIZE GETDLGCODE GETDPISCALEDSIZE GETFONTINFO GETHARDWARESTATE GETHUNGAPPTIMEOUT GETICON GETITEMDATA GETKEYBOARDLAYOUTNAME GETKEYSTATE GETLARGESTWINDOWSIZE GETLBTEXT GETMINMAXINFO GETMOUSEINFO GETMOUSEVANISH GETNUMBEROFFONTS GETNUMBEROFINPUTEVENTS GETOBJECT GETSELECTIONINFO getset GETTEXTLEN GETTITLE GETWAITTOKILLSERVICETIMEOUT GETWAITTOKILLTIMEOUT GETWHEELSCROLLCHARACTERS GETWHEELSCROLLCHARS GETWHEELSCROLLLINES Gfun gfx gfycat GGI GHgh GHIJK GHIJKL gitcheckin gitfilters gitlab gle GLOBALFOCUS GLYPHENTRY GMEM Goldmine gonce goutput GREENSCROLL Grehan Greyscale gridline gset gsl Guake guc guid GUIDATOM gunicorn GValue GWL GWLP gwsz HABCDEF Hackathon HALTCOND handler HANGEUL hardlinks hashalg HASSTRINGS hbitmap hbm HBMMENU hbmp hbr hbrush HCmd hdc hdr HDROP hdrstop HEIGHTSCROLL hfind hfont hfontresource hglobal hhook hhx HIBYTE hicon HIDEWINDOW hinst HISTORYBUFS HISTORYNODUP HISTORYSIZE hittest HIWORD HKCU hkey hkl HKLM hlsl HMB HMK hmod hmodule hmon homoglyph hostable hostlib HPA hpcon hpen HPR HProvider HREDRAW hresult hscroll hstr HTBOTTOMLEFT HTBOTTOMRIGHT HTCAPTION HTCLIENT HTLEFT HTMAXBUTTON HTMINBUTTON HTRIGHT HTTOP HTTOPLEFT HTTOPRIGHT http hungapp HVP hwheel hwnd HWNDPARENT iccex ICONERROR ICONINFORMATION ICONSTOP ICONWARNING IDCANCEL IDD ide IDISHWND idl idllib IDOK IDR IDTo IDXGI IFACEMETHODIMP ification IGNORELANGUAGE iid IIo ILC ILCo ILD ime IMPEXP inclusivity INCONTEXT INFOEX inheritcursor INITCOMMONCONTROLSEX INITDIALOG INITGUID INITMENU inkscape INLINEPREFIX inproc Inputkeyinfo Inputreadhandledata INPUTSCOPE INSERTMODE integration INTERACTIVITYBASE INTERCEPTCOPYPASTE INTERNALNAME intsafe INVALIDARG INVALIDATERECT Ioctl ipch ipsp iseconds iterm itermcolors itf Ith IUI IWIC IXP jconcpp jinja JOBOBJECT JOBOBJECTINFOCLASS JONGSEONG JPN json jsoncpp jsprovider jumplist JUNGSEONG KAttrs kawa Kazu kazum keras kernelbase kernelbasestaging KEYBDINPUT keychord keydowns KEYFIRST KEYLAST Keymapping keystate keyups Kickstart KILLACTIVE KILLFOCUS kinda KIYEOK KLF KLMNO KOK KPRIORITY KVM kyouhaishaheiku langid langsmith LANGUAGELIST lasterror LASTEXITCODE LAYOUTRTL lbl LBN LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP lcb lci LCONTROL LCTRL lcx LEFTALIGN lib libsancov libtickit LIMITTEXT LINEDOWN LINESELECTION LINEWRAP LINKERRCAP LINKERROR linputfile listptr listptrsize llama lld llx LMENU lnkd lnkfile LNM LOADONCALL LOBYTE localappdata locsrc Loewen LOGBRUSH LOGFONT LOGFONTA LOGFONTW logging logissue losslessly loword lparam lpch LPCPLINFO LPCREATESTRUCT lpcs LPCTSTR lpdata LPDBLIST lpdis LPDRAWITEMSTRUCT lpdw lpelfe lpfn LPFNADDPROPSHEETPAGE LPMEASUREITEMSTRUCT LPMINMAXINFO lpmsg LPNEWCPLINFO LPNEWCPLINFOA LPNEWCPLINFOW LPNMHDR lpntme LPPROC LPPROPSHEETPAGE LPPSHNOTIFY lprc lpstr lpsz LPTSTR LPTTFONTLIST lpv LPW LPWCH lpwfx LPWINDOWPOS lpwpos lpwstr LRESULT lsb lsconfig lstatus lstrcmp lstrcmpi LTEXT ltsc LUID luma lval LVB LVERTICAL LVT LWA LWIN lwkmvj majorly makeappx MAKEINTRESOURCE MAKEINTRESOURCEW MAKELANGID MAKELONG MAKELPARAM MAKELRESULT MAPBITMAP MAPVIRTUALKEY MAPVK MAXDIMENSTRING MAXSHORT maxval maxversiontested MAXWORD maybenull MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdmerge MDs mdtauk MEASUREITEM megamix memallocator meme MENUCHAR MENUCONTROL MENUDROPALIGNMENT MENUITEMINFO MENUSELECT mermaid metaproj Mgrs microsoftpublicsymbols midl migration mii MIIM milli mincore mindbogglingly minio minkernel MINMAXINFO minwin minwindef mlflow MMBB mmcc MMCPL MNC MNOPQ MNOPQR MODALFRAME MODERNCORE MONITORINFO MONITORINFOEXW MONITORINFOF monitoring MOUSEACTIVATE MOUSEFIRST MOUSEHWHEEL MOVESTART msb msbuildcache msctls msdata MSDL MSGCMDLINEF MSGF MSGFILTER MSGFLG MSGMARKMODE MSGSCROLLMODE MSGSELECTMODE msiexec MSIL msix MSRC MSVCRTD MTSM murmurhash muxes myapplet mybranch mydir Mypair mypy Myval NAMELENGTH namestream NCCALCSIZE NCCREATE NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDOWN NCMBUTTONUP NCPAINT NCRBUTTONDOWN NCRBUTTONUP NCXBUTTONDOWN NCXBUTTONUP NEL nerf nerror netcoreapp netstandard NEWCPLINFO NEWCPLINFOA NEWCPLINFOW Newdelete NEWINQUIRE NEWINQURE NEWPROCESSWINDOW NEWTEXTMETRIC NEWTEXTMETRICEX Newtonsoft NEXTLINE nfe NLSMODE NOACTIVATE NOAPPLYNOW NOCLIP NOCOMM NOCONTEXTHELP NOCOPYBITS NODUP noexcepts NOFONT NOHIDDENTEXT NOINTEGRALHEIGHT NOINTERFACE NOLINKINFO nologo NOMCX NOMINMAX NOMOVE NONALERT nonbreaking nonclient NONINFRINGEMENT NONPREROTATED nonspace NOOWNERZORDER NOPAINT noprofile NOREDRAW NOREMOVE NOREPOSITION NORMALDISPLAY NOSCRATCH NOSEARCH noselect NOSELECTION NOSENDCHANGING NOSIZE NOSNAPSHOT NOTHOUSANDS NOTICKS NOTIMEOUTIFNOTHUNG NOTIMPL NOTOPMOST NOTRACK NOTSUPPORTED nouicompat nounihan NOYIELD NOZORDER NPFS nrcs NSTATUS ntapi ntdef NTDEV ntdll ntifs ntm ntstatus nttree ntuser NTVDM nugetversions NUKTA nullness nullonfailure nullopts numpy NUMSCROLL NUnit nupkg NVIDIA NVT OACR obj ocolor oemcp OEMFONT OEMFORMAT OEMs OLEAUT OLECHAR onebranch onecore ONECOREBASE ONECORESDKTOOLS ONECORESHELL onecoreuap onecoreuapuuid onecoreuuid ONECOREWINDOWS onehalf oneseq oob openbash opencode opencon openconsole openconsoleproxy openps openvt ORIGINALFILENAME osc OSDEPENDSROOT OSG OSGENG outdir outer OUTOFCONTEXT Outptr outstr OVERLAPPEDWINDOW OWNDC owneralias OWNERDRAWFIXED packagename packageuwp PACKAGEVERSIONNUMBER PACKCOORD PACKVERSION pacp pagedown pageup PAINTPARAMS PAINTSTRUCT PALPC pandas pankaj parentable PATCOPY PATTERNID pbstr pcb pcch PCCHAR PCCONSOLE PCD pcg pch PCIDLIST PCIS PCLONG pcon PCONSOLE PCONSOLEENDTASK PCONSOLESETFOREGROUND PCONSOLEWINDOWOWNER pcoord pcshell PCSHORT PCSR PCSTR PCWCH PCWCHAR PCWSTR pdbs pdbstr pdcs PDPs pdtobj pdw pdx peb PEMAGIC pfa PFACENODE pfed pfi PFILE pfn PFNCONSOLECREATEIOTHREAD PFONT PFONTENUMDATA PFS pgd pgomgr PGONu pguid phhook phico phicon phwnd pidl PIDLIST piml pimpl pinvoke pipename pipestr pixelheight PIXELSLIST PJOBOBJECT platforming playsound ploc ploca plocm PLOGICAL pnm PNMLINK pntm POBJECT Podcast POINTERUPDATE POINTSLIST policheck POLYTEXTW POPUPATTR popups PORFLG POSTCHARBREAKS postgres POSX POSXSCROLL POSYSCROLL ppbstr PPEB ppf ppidl pprg PPROC ppropvar ppsi ppsl ppsp ppsz ppv ppwch PQRST prc pre prealigned prect prefast preflighting prepopulate presorted PREVENTPINNING PREVIEWLABEL PREVIEWWINDOW PREVLINE prg pri processhost PROCESSINFOCLASS PRODEXT prompttemplate PROPERTYID PROPERTYKEY propertyval propsheet PROPSHEETHEADER PROPSHEETPAGE propslib propsys PROPTITLE propvar propvariant psa PSECURITY pseudoconsole psh pshn PSHNOTIFY PSINGLE psl psldl PSNRET PSobject psp PSPCB psr PSTR psz ptch ptsz pty PTYIn PUCHAR push pvar pwch PWDDMCONSOLECONTEXT Pwease pweview pws pwstr pwsz pytest pythonw Qaabbcc QUERYOPEN quickedit QUZ QWER qwerty qwertyuiopasdfg Qxxxxxxxxxxxxxxx qzmp rag RAII RALT rasterbar rasterfont rasterization RAWPATH raytracers razzlerc rbar RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rcch rcelms rclsid RCOA RCOCA RCOCW RCONTROL RCOW rcv readback READCONSOLE READCONSOLEOUTPUT READCONSOLEOUTPUTSTRING READMODE rectread redef redefinable redist REDSCROLL refactor refactoring REFCLSID REFGUID REFIID REFPROPERTYKEY REGISTEROS REGISTERVDM regkey REGSTR RELBINPATH rendersize reparented reparenting REPH replatformed Replymessage repo reportfileaccesses repositorypath requests rerasterize rescap RESETCONTENT resheader resmimetype rest resultmacros resw resx retrieval rfa rfid rftp rgbi RGBQUAD rgbs rgfae rgfte rgn rgp rgpwsz rgrc rguid rgw RIGHTALIGN RIGHTBUTTON riid ris robomac rodata rosetta RRRGGGBB rsas rtcore RTEXT RTLREADING Rtn ruff runas RUNDLL runformat runft RUNFULLSCREEN runfuzz runnable runsettings runtest runtimeclass runuia runut runxamlformat RVERTICAL rvpa RWIN rxvt safemath sba SBCS SBCSDBCS sbi sbiex sbom scancodes scanline schemename scikit SCL SCRBUF SCRBUFSIZE screenbuffer SCREENBUFFERINFO screeninfo scriptload scrollback SCROLLFORWARD SCROLLINFO scrolllock scrolloffset SCROLLSCALE SCROLLSCREENBUFFER scursor sddl sdk SDKDDK sdlc segfault SELCHANGE SELECTEDFONT SELECTSTRING Selfhosters Serbo SERVERDLL SETACTIVE SETBUDDYINT setcp SETCURSEL SETCURSOR SETCURSORINFO SETCURSORPOSITION SETDISPLAYMODE SETFOCUS SETFOREGROUND SETHARDWARESTATE SETHOTKEY SETICON setintegritylevel SETITEMDATA SETITEMHEIGHT SETKEYSHORTCUTS SETMENUCLOSE SETNUMBEROFCOMMANDS SETOS SETPALETTE SETRANGE SETSCREENBUFFERSIZE SETSEL SETTEXTATTRIBUTE SETTINGCHANGE setvariable Setwindow SETWINDOWINFO SFGAO SFGAOF sfi SFINAE SFolder SFUI sgr sha SHCo shcore shellex SHFILEINFO SHGFI SHIFTJIS shlwapi SHORTPATH SHOWCURSOR SHOWDEFAULT SHOWMAXIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW sidebyside SIF SIGDN Signtool SINGLETHREADED siup sixel SIZEBOX SIZESCROLL SKIPFONT SKIPOWNPROCESS SKIPOWNTHREAD sku sldl SLGP SLIST slmult sln slpit SManifest SMARTQUOTE SMTO snapcx snapcy snk SOLIDBOX Solutiondir sourced sql sqlalchemy SRCAND SRCCODEPAGE SRCCOPY SRCINVERT SRCPAINT srcsrv SRCSRVTRG srctool srect SRGS srvinit srvpipe ssa ssl starlette startdir STARTF STARTUPINFO STARTUPINFOEX STARTUPINFOEXW STARTUPINFOW STARTWPARMS STARTWPARMSA STARTWPARMSW stdafx STDAPI stdc stdcpp STDEXT STDMETHODCALLTYPE STDMETHODIMP STGM STRINGTABLE STRSAFE STUBHEAD STUVWX stylecop SUA subcompartment subkeys SUBLANG swapchain swapchainpanel SWMR SWP swrapped SYMED SYNCPAINT syscalls SYSCHAR SYSCOLOR SYSCOMMAND SYSDEADCHAR SYSKEYDOWN SYSKEYUP SYSLIB SYSLINK SYSMENU sysparams SYSTEMHAND SYSTEMMENU SYSTEMTIME tabview taef TARG targetentrypoint TARGETLIBS TARGETNAME targetver tbc tbi Tbl TBM TCHAR TCHFORMAT TCI tcommands tcp tdbuild Tdd TDP Teb Techo tellp tensorflow teraflop terminalcore terminalinput terminalrenderdata TERMINALSCROLLING terminfo testcon testd testenvs testlab testlist testmd testname TESTNULL testpass testpasses TEXCOORD textattribute TEXTATTRIBUTEID textboxes textbuffer TEXTINCLUDE textinfo TEXTMETRIC TEXTMETRICW textmode texttests THUMBPOSITION THUMBTRACK tilunittests titlebars TITLEISLINKNAME TLDP TLEN tls TMAE TMPF tmultiple tofrom toolbars TOOLINFO TOOLWINDOW TOPDOWNDIB tosign tracelogging traceviewpp trackbar trackpad transitioning Trd triaging TRIMZEROHEADINGS trx tsa tsgr tsm TSTRFORMAT TTBITMAP TTFONT TTFONTLIST TTM TTo tty turbo tvpp tvtseq TYUI uap uapadmin UAX UBool ucd uch UChars udk udp uer UError uia UIACCESS uiacore uiautomationcore uielem UINTs uld uldash uldb ulwave Unadvise unattend UNCPRIORITY unexpand unhighlighting unhosted UNICODETEXT UNICRT Unintense unittesting unittests unk unknwn UNORM unparseable unstructured untextured UPDATEDISPLAY UPDOWN UPKEY upss uregex URegular uri url urn usebackq USECALLBACK USECOLOR USECOUNTCHARS USEDEFAULT USEDX USEFILLATTRIBUTE USEGLYPHCHARS USEHICON USEPOSITION userdpiapi Userp userprivapi USERSRV USESHOWWINDOW USESIZE USESTDHANDLES usp USRDLL utext utr uuid UVWXY uwa uwp uwu uxtheme validation validator Vanara vararg vclib vcxitems vector vectorization venv VERCTRL VERTBAR VFT vga vgaoem viewkind VIRAMA Virt VIRTTERM virtualenv visualstudiosdk vkey VKKEYSCAN VMs VPA vpack vpackdirectory VPACKMANIFESTDIRECTORY VPR VREDRAW vsc vscode vsconfig vscprintf VSCROLL vsdevshell vse vsinfo vsinstalldir vso vspath VSTAMP vstest VSTS VSTT vswhere vtapp vte VTID vtmode vtpipeterm VTRGB VTRGBTo vtseq vtterm vttest WANSUNG WANTARROWS WANTTAB wapproj WAVEFORMATEX wbuilder wch wchars WCIA WCIW wcs WCSHELPER wcsrev wcswidth wddm wddmcon WDDMCONSOLECONTEXT wdm webpage websites wekyb wewoad wex wextest WFill wfopen WHelper wic WIDTHSCROLL Widthx Wiggum wil WImpl WINAPI winbasep wincon winconp winconpty winconptydll winconptylib wincontypes WINCORE windbg WINDEF windir windll WINDOWALPHA windowdpiapi WINDOWEDGE WINDOWINFO windowio WINDOWPLACEMENT windowpos WINDOWPOSCHANGED WINDOWPOSCHANGING windowproc windowrect windowsapp WINDOWSIZE windowsshell windowsterminal windowtheme winevent winget wingetcreate WINIDE winmd winmgr winmm WINMSAPP winnt Winperf WInplace winres winrt winternl winui winuser WINVER wistd wmain WMSZ wnd WNDALLOC WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW Wndproc WNegative WNull wordi wordiswrapped workarea WOutside WOWARM WOWx wparam WPartial wpf wpfdotnet WPR WPrep WPresent wprp wprpi wrappe wregex writeback WRITECONSOLE WRITECONSOLEINPUT WRITECONSOLEOUTPUT WRITECONSOLEOUTPUTSTRING wrkstr WRL wrp WRunoff wsgi WSLENV wstr wstrings wsz wtd WTest WTEXT WTo wtof WTs WTSOFTFONT wtw Wtypes WUX WVerify WWith wxh wyhash wymix wyr xact Xamlmeta xamls xaz xbf xbutton XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XCast XCENTER xcopy XCount xdy XEncoding xes XFG XFile XFORM XIn xkcd XManifest XMath xml XNamespace xorg XPan XResource xsi xstyler XSubstantial XTest XTPOPSGR XTPUSHSGR xtr XTWINOPS xunit xutr XVIRTUALSCREEN yact yaml YCast YCENTER YCount yizz YLimit yml YPan YSubstantial YVIRTUALSCREEN zabcd Zabcdefghijklmn Zabcdefghijklmnopqrstuvwxyz ZCmd ZCtrl zer zeroes ZWJs ZYXWVU ZYXWVUT ZYXWVUTd zzf

Some files were automatically ignored 🙈

These sample patterns would exclude them:

(?:^|/)\.md$
(?:^|/)\.nojekyll$
(?:^|/)app\.md$
(?:^|/)furo-extensions\.js$
(?:^|/)furo\.js$
(?:^|/)objects\.inv$
(?:^|/)searchindex\.js$
/html/\.doctrees/[^/]+$
/markdown/markdown/_build/html/_modules/[^/]+$
/styles/[^/]+$
^\Qdocumentation-output/markdown/markdown/_build/html/llm.llm_router.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/llm.schemas.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/llm.utils.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/parsers.database.models.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/parsers.database.utils.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/parsers.drawio_parser.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/parsers.mermaid_parser.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/parsers.plantuml_parser.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/utils.cache.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/utils.logger.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/utils.rate_limiter.md\E$
^\Qdocumentation-output/markdown/markdown/_build/html/utils.token_counter.md\E$
^documentation-output/markdown/markdown/_build/html/_modules/skills/parser_tool\.md$
^documentation-output/markdown/markdown/_build/html/_modules/utils/logger\.md$
^documentation-output/markdown/markdown/_build/html/documentation_index\.md$
^documentation-output/markdown/markdown/_build/html/fallback\.md$
^documentation-output/markdown/markdown/_build/html/guardrails\.md$
^documentation-output/markdown/markdown/_build/html/handlers\.md$
^documentation-output/markdown/markdown/_build/html/memory\.md$
^documentation-output/markdown/markdown/_build/html/pipelines\.md$
^documentation-output/markdown/markdown/_build/html/prompt_engineering\.md$
^documentation-output/markdown/markdown/_build/html/py-modindex\.md$
^documentation-output/markdown/markdown/_build/html/retrieval\.md$
^documentation-output/markdown/markdown/_build/html/search\.md$
^documentation-output/markdown/markdown/_build/html/utils\.md$
^documentation-output/markdown/markdown/_build/html/vision_audio\.md$
^src/agents/executor\.py$
^src/agents/planner\.py$
^src/fallback/router\.py$
^src/guardrails/pii\.py$
^src/handlers/error_handler\.py$
^src/llm/platforms/anthropic\.py$
^src/llm/platforms/openai\.py$
^src/llm/schemas\.py$
^src/llm/utils\.py$
^src/memory/long_term\.py$
^src/pipelines/chat_flow\.py$
^src/pipelines/doc_processor\.py$
^src/prompt_engineering/chainer\.py$
^src/prompt_engineering/few_shot\.py$
^src/prompt_engineering/templates\.py$
^src/py\.typed$
^src/retrieval/document_db\.py$
^src/retrieval/vector_db\.py$
^src/skills/code_interpreter\.py$
^src/skills/web_search\.py$
^src/utils/cache\.py$
^src/utils/rate_limiter\.py$
^src/utils/token_counter\.py$
^src/vision_audio/image_processor\.py$
^src/vision_audio/speech_handler\.py$

You should consider excluding directory paths (e.g. (?:^|/)vendor/), filenames (e.g. (?:^|/)yarn\.lock$), or file extensions (e.g. \.gz$)

You should consider adding them to:

.github/actions/spelling/excludes.txt

File matching is via Perl regular expressions.

To check these files, more of their words need to be in the dictionary than not. You can use patterns.txt to exclude portions, add items to the dictionary (e.g. by adding them to allow.txt), or fix typos.

To accept these unrecognized words as correct, update file exclusions, and remove the previously acknowledged and now absent words, you could run the following commands

... in a clone of the git@github.com:SoftwareDevLabs/unstructuredDataHandler.git repository
on the dependabot/pip/pip-d0e9750e44 branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.25/apply.pl' |
perl - 'https://github.com/SoftwareDevLabs/unstructuredDataHandler/actions/runs/28929273734/attempts/1' &&
git commit -m 'Update check-spelling metadata'
Forbidden patterns 🙅 (5)

In order to address this, you could change the content to not match the forbidden patterns (comments before forbidden patterns may help explain why they're forbidden), add patterns for acceptable instances, or adjust the forbidden patterns themselves.

These forbidden patterns matched content:

Should be fall back

(?<!\ba )(?<!\bthe )\bfallback(?= to(?! ask))\b

Should be ; otherwise or . Otherwise

https://study.com/learn/lesson/otherwise-in-a-sentence.html

, [Oo]therwise\b

Should be macOS or Mac OS X or ...

\bMacOS\b

Should be socioeconomic

https://dictionary.cambridge.org/us/dictionary/english/socioeconomic

socio-economic

In English, duplicated words are generally mistakes

There are a few exceptions (e.g. "that that").
If the highlighted doubled word pair is in:

  • code, write a pattern to mask it.
  • prose, have someone read the English before you dismiss this error.
\s([A-Z]{3,}|[A-Z][a-z]{2,}|[a-z]{3,})\s\g{-1}\s
Pattern suggestions ✂️ (8)

You could add these patterns to .github/actions/spelling/patterns/7447b06e10c775ce6c3b8ef41814e91a16094ae4.txt:

# Automatically suggested patterns

# hit-count: 1055 file-count: 50
# data url
\bdata:[-a-zA-Z=;:/0-9+]*,\S*

# hit-count: 48 file-count: 18
# python
\b(?i)py(?!gments|gmy|lon|ramid|ro|th)(?=[a-z]{2,})

# hit-count: 8 file-count: 2
# assign regex
= /[^*].*?(?:[a-z]{3,}|[A-Z]{3,}|[A-Z][a-z]{2,}).*/[gim]*(?=\W|$)

# hit-count: 2 file-count: 2
# GitHub actions
\buses:\s+[-\w.]+/[-\w./]+@[-\w.]+

# hit-count: 2 file-count: 2
# go.sum
\bh1:\S+

# hit-count: 2 file-count: 1
# container images
image: [-\w./:@]+

# hit-count: 1 file-count: 1
# go install
go install(?:\s+[a-z]+\.[-@\w/.]+)+

# hit-count: 1 file-count: 1
# set arguments
\b(?:bash|sh|set)(?:\s+[-+][abefimouxE]{1,2})*\s+[-+][abefimouxE]{3,}(?:\s+[-+][abefimouxE]+)*

Alternatively, if a pattern suggestion doesn't make sense for this project, add a #
to the beginning of the line in the candidates file with the pattern to stop suggesting it.

Errors, Warnings, and Notices ❌ (9)

See the 📂 files view, the 📜action log, or 📝 job summary for details.

❌ Errors, Warnings, and Notices Count
⚠️ binary-file 97
ℹ️ candidate-pattern 15
❌ check-file-path 117
❌ forbidden-pattern 10
⚠️ ignored-expect-variant 7
⚠️ large-file 1
⚠️ minified-file 6
⚠️ noisy-file 31
⚠️ single-line-file 2

See ❌ Event descriptions for more information.

✏️ Contributor please read this

By default the command suggestion will generate a file named based on your commit. That's generally ok as long as you add the file to your commit. Someone can reorganize it later.

If the listed items are:

  • ... misspelled, then please correct them instead of using the command.
  • ... names, please add them to .github/actions/spelling/allow/names.txt.
  • ... APIs, you can add them to a file in .github/actions/spelling/allow/.
  • ... just things you're using, please add them to an appropriate file in .github/actions/spelling/expect/.
  • ... tokens you only need in one place and shouldn't generally be used, you can add an item in an appropriate file in .github/actions/spelling/patterns/.

See the README.md in each directory for more information.

🔬 You can test your commits without appending to a PR by creating a new branch with that extra change and pushing it to your fork. The check-spelling action will run in response to your push -- it doesn't require an open pull request. By using such a branch, you can limit the number of typos your peers see you make. 😉

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

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 python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants