Skip to content

fix: sending images to the vscode extension fails, if the tensor is not local to the cpu#63

Merged
SmiteDeluxe merged 5 commits intomainfrom
fix-non-cpu-tensor-image-extension-sending
Apr 2, 2024
Merged

fix: sending images to the vscode extension fails, if the tensor is not local to the cpu#63
SmiteDeluxe merged 5 commits intomainfrom
fix-non-cpu-tensor-image-extension-sending

Conversation

@WinPlay02
Copy link
Contributor

@WinPlay02 WinPlay02 commented Mar 31, 2024

Related-to: Safe-DS/DSL#954 (the PR requires this fix to work)

Fixes the following error:

RuntimeError: Attempted to send CUDA tensor received from another process; this is not currently supported. Consider cloning before sending.

This error only occurs on systems that support graphics acceleration of tensor operations.
On other systems, the tensor is local to the CPU by default and does not need to be converted.
The conversion process is a noop, if the tensor is already local to the CPU.

@github-actions
Copy link

github-actions bot commented Mar 31, 2024

🦙 MegaLinter status: ✅ SUCCESS

Descriptor Linter Files Fixed Errors Elapsed time
✅ PYTHON black 2 0 0 0.78s
✅ PYTHON mypy 2 0 2.23s
✅ PYTHON ruff 2 0 0 0.03s
✅ REPOSITORY git_diff yes no 0.02s

See detailed report in MegaLinter reports
Set VALIDATE_ALL_CODEBASE: true in mega-linter.yml to validate all sources, not only the diff

MegaLinter is graciously provided by OX Security

@codecov
Copy link

codecov bot commented Mar 31, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (14ff8cc) to head (6f55684).

Additional details and impacted files
@@            Coverage Diff            @@
##              main       #63   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           11        11           
  Lines          500       504    +4     
=========================================
+ Hits           500       504    +4     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@WinPlay02 WinPlay02 marked this pull request as ready for review March 31, 2024 18:42
@WinPlay02 WinPlay02 requested a review from a team as a code owner March 31, 2024 18:42
@WinPlay02
Copy link
Contributor Author

@SmiteDeluxe The PR for the fix we talked about

lars-reimann
lars-reimann previously approved these changes Mar 31, 2024
Copy link
Member

@lars-reimann lars-reimann left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code looks good. I cannot currently verify, though, whether this fixes the issue. Still, feel free to merge if you've checked this.

@WinPlay02
Copy link
Contributor Author

The code looks good. I cannot currently verify, though, whether this fixes the issue. Still, feel free to merge if you've checked this.

As I'm not affected by this, @SmiteDeluxe would be able to verify and merge this

Copy link
Contributor

@SmiteDeluxe SmiteDeluxe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Working for me with this change!

@SmiteDeluxe SmiteDeluxe merged commit 8cf0b57 into main Apr 2, 2024
@SmiteDeluxe SmiteDeluxe deleted the fix-non-cpu-tensor-image-extension-sending branch April 2, 2024 18:43
lars-reimann pushed a commit that referenced this pull request Apr 3, 2024
## [0.8.0](v0.7.0...v0.8.0) (2024-04-03)

### Features

* **deps:** bump safe-ds from 0.19.0 to 0.20.0 ([#74](#74)) ([86cccff](86cccff)), closes [#573](https://github.com/Safe-DS/Runner/issues/573) [#529](https://github.com/Safe-DS/Runner/issues/529) [#522](https://github.com/Safe-DS/Runner/issues/522) [#588](https://github.com/Safe-DS/Runner/issues/588) [#548](https://github.com/Safe-DS/Runner/issues/548) [#519](https://github.com/Safe-DS/Runner/issues/519) [#550](https://github.com/Safe-DS/Runner/issues/550) [#549](https://github.com/Safe-DS/Runner/issues/549) [#572](https://github.com/Safe-DS/Runner/issues/572) [#571](https://github.com/Safe-DS/Runner/issues/571) [#567](https://github.com/Safe-DS/Runner/issues/567) [#587](https://github.com/Safe-DS/Runner/issues/587) [#582](https://github.com/Safe-DS/Runner/issues/582) [#585](https://github.com/Safe-DS/Runner/issues/585) [#573](https://github.com/Safe-DS/Runner/issues/573) [#529](https://github.com/Safe-DS/Runner/issues/529) [#522](https://github.com/Safe-DS/Runner/issues/522) [#588](https://github.com/Safe-DS/Runner/issues/588) [#548](https://github.com/Safe-DS/Runner/issues/548) [#519](https://github.com/Safe-DS/Runner/issues/519) [#550](https://github.com/Safe-DS/Runner/issues/550) [#549](https://github.com/Safe-DS/Runner/issues/549) [#572](https://github.com/Safe-DS/Runner/issues/572) [#571](https://github.com/Safe-DS/Runner/issues/571) [#567](https://github.com/Safe-DS/Runner/issues/567) [#587](https://github.com/Safe-DS/Runner/issues/587) [#582](https://github.com/Safe-DS/Runner/issues/582) [#585](https://github.com/Safe-DS/Runner/issues/585) [#605](https://github.com/Safe-DS/Runner/issues/605) [#604](https://github.com/Safe-DS/Runner/issues/604) [#603](https://github.com/Safe-DS/Runner/issues/603) [#593](https://github.com/Safe-DS/Runner/issues/593) [#598](https://github.com/Safe-DS/Runner/issues/598) [#595](https://github.com/Safe-DS/Runner/issues/595) [#594](https://github.com/Safe-DS/Runner/issues/594) [#591](https://github.com/Safe-DS/Runner/issues/591) [#590](https://github.com/Safe-DS/Runner/issues/590)

### Bug Fixes

* sending images to the vscode extension fails, if the tensor is not local to the cpu ([#63](#63)) ([8cf0b57](8cf0b57))

### Performance Improvements

* faster startup ([#55](#55)) ([a3fbe24](a3fbe24))
@lars-reimann
Copy link
Member

🎉 This PR is included in version 0.8.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@lars-reimann lars-reimann added the released Included in a release label Apr 3, 2024
lars-reimann added a commit to Safe-DS/DSL that referenced this pull request Apr 6, 2024
Closes #929 

### Summary of Changes

Communication from EDA -> Runner in own file that allows appending of
code to the executed pipeline to get and generate new info.
This results in full profiling being done already, fetched when needed
and displayed in webview.
Also includes start of from webview triggered actions that append code,
in the form of filters. But this is to be picked up in new issue.

Other changes include refactorings and fixes for visual and edge case
bugs.

### Important to run this:
Some environments might need a change in the runner for images (plots)
to work, that will be pushed to the Runner repo in PR
Safe-DS/Runner#63.

To PipelineManager:
```
from safeds.data.image.containers import Image
import torch
```
To beginning of save_placeholder method:
```
if isinstance(value, Image):
    value = Image(value._image_tensor, torch.device("cpu"))
```

---------

Co-authored-by: Lars Reimann <mail@larsreimann.com>
Co-authored-by: WinPlay02 <winplay02_gh@woberlaender.de>
Co-authored-by: megalinter-bot <129584137+megalinter-bot@users.noreply.github.com>
lars-reimann pushed a commit that referenced this pull request Oct 6, 2025
Bumps the mkdocs group with 2 updates:
[mkdocs-glightbox](https://github.com/blueswen/mkdocs-glightbox) and
[mkdocs-material](https://github.com/squidfunk/mkdocs-material).

Updates `mkdocs-glightbox` from 0.4.0 to 0.5.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/blueswen/mkdocs-glightbox/releases">mkdocs-glightbox's
releases</a>.</em></p>
<blockquote>
<h2>mkdocs-glightbox-0.5.1</h2>
<ul>
<li>Pined selectolax to 0.3.29 to avoid missing binary wheel issue on
some platforms (<a
href="https://redirect.github.com/blueswen/mkdocs-glightbox/issues/63">#63</a>)</li>
</ul>
<h2>mkdocs-glightbox-0.5.0</h2>
<ul>
<li>Updated glightbox to 3.3.1</li>
<li>Migrated to uv and pyproject.toml for development and building</li>
<li>Replaced regex with Selectolax to improve performance, availability
and maintainability (<a
href="https://redirect.github.com/blueswen/mkdocs-glightbox/issues/44">#44</a>,
<a
href="https://redirect.github.com/blueswen/mkdocs-glightbox/issues/56">#56</a>,
<a
href="https://redirect.github.com/blueswen/mkdocs-glightbox/issues/61">#61</a>)</li>
<li>Updated tests and workflow</li>
<li>Support auto themed (<a
href="https://redirect.github.com/blueswen/mkdocs-glightbox/issues/49">#49</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG">mkdocs-glightbox's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-glightbox-0.5.1 (2025-09-04)</p>
<pre><code>* Pined selectolax to 0.3.29 to avoid missing binary wheel
issue on some platforms
([#63](blueswen/mkdocs-glightbox#63))
</code></pre>
<p>mkdocs-glightbox-0.5.0 (2025-09-03)</p>
<pre><code>* Updated glightbox to 3.3.1
* Migrated to uv and pyproject.toml for development and building
* Replaced regex with Selectolax to improve performance, availability
and maintainability
([#44](blueswen/mkdocs-glightbox#44),
[#56](blueswen/mkdocs-glightbox#56),
[#61](blueswen/mkdocs-glightbox#61))
* Updated tests and workflow
* Support auto themed
([#49](blueswen/mkdocs-glightbox#49))
</code></pre>
<p>mkdocs-glightbox-0.4.0 (2023-05-06)</p>
<pre><code>* Supported manual mode
([#29](blueswen/mkdocs-glightbox#29))
* Allow calling lightbox methods from other places
([#34](blueswen/mkdocs-glightbox#34))
* Added id to appended script tag
([#38](blueswen/mkdocs-glightbox#38))
* Access theme attribute directly
([#40](blueswen/mkdocs-glightbox#40))
* Better JavaScript Error Handling
([#36](blueswen/mkdocs-glightbox#36))
</code></pre>
<p>mkdocs-glightbox-0.3.7 (2023-01-24)</p>
<pre><code>* Supported custom background and shadow
([#27](blueswen/mkdocs-glightbox#27))
</code></pre>
<p>mkdocs-glightbox-0.3.6 (2023-12-30)</p>
<pre><code>* Modified width default to auto prevent zooming large image
bug ([#21](blueswen/mkdocs-glightbox#21))
* Supported only enable glightbox with on-glb class in given page
([#28](blueswen/mkdocs-glightbox#28))
</code></pre>
<p>mkdocs-glightbox-0.3.5 (2023-11-18)</p>
<pre><code>* Supported compatibility with the privacy plugin of Material
for MkDocs insiders
([#25](blueswen/mkdocs-glightbox#25))
</code></pre>
<p>mkdocs-glightbox-0.3.4 (2023-04-25)</p>
<pre><code>* Fixed regex bug: quote issue and empty alt issue
([#14](blueswen/mkdocs-glightbox#14)
[#19](blueswen/mkdocs-glightbox#19))
</code></pre>
<p>mkdocs-glightbox-0.3.3 (2023-04-20)</p>
<pre><code>* Refactored processing logic with regex
([#14](blueswen/mkdocs-glightbox#14))
</code></pre>
<p>mkdocs-glightbox-0.3.2 (2023-03-19)</p>
<pre><code>* Supported image without extension
([#13](blueswen/mkdocs-glightbox#13))
</code></pre>
<p>mkdocs-glightbox-0.3.1 (2022-11-22)</p>
<pre><code>* Supported lightbox slide effect customization
([#8](blueswen/mkdocs-glightbox#8))
* Supported synchronized lightbox caption dark mode with Material for
MkDocs ([#7](blueswen/mkdocs-glightbox#7))
* Supported glightbox built-in gallery feature
([#11](blueswen/mkdocs-glightbox#11))
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/694227f5a0e94679aa40d38a7b0277c586858547"><code>694227f</code></a>
Pin selectolax to 0.3.29 (<a
href="https://redirect.github.com/blueswen/mkdocs-glightbox/issues/63">#63</a>)</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/1fe19b3a131e071d1b4e888e6d8a6b93936fb0cc"><code>1fe19b3</code></a>
Fix workflow bug</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/1bfb43bb235f828262f51399d4e6ab34afb1008c"><code>1bfb43b</code></a>
Fix workflow bug and update doc</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/06c6fda0b30bdd313cd42f4103221066a6e273e3"><code>06c6fda</code></a>
Update workflow</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/f56ea6e9027b78431c14b9886da94f4668ce3321"><code>f56ea6e</code></a>
Update workflow</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/4aa9e2cb2cef88696d47774f24532c0d63005947"><code>4aa9e2c</code></a>
v0.5.0</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/46584c3663d4d23bd1e35b1e9479668a443a98d9"><code>46584c3</code></a>
Update workflow</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/5258122ff6fbf9ba20d56ef414f60a4c2a5fc2a8"><code>5258122</code></a>
Update doc</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/ef24e0723231a51ab7e9e2a1a7a5c7fb1a0f55dd"><code>ef24e07</code></a>
Build doc with action</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/78d2229e26c6a76722dd042697743adc90b6af10"><code>78d2229</code></a>
Update workflow</li>
<li>Additional commits viewable in <a
href="https://github.com/blueswen/mkdocs-glightbox/compare/v0.4.0...v0.5.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `mkdocs-material` from 9.6.18 to 9.6.21
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/releases">mkdocs-material's
releases</a>.</em></p>
<blockquote>
<h2>mkdocs-material-9.6.21</h2>
<ul>
<li>Updated Serbian translations</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8458">#8458</a>:
Temporary pin of click dependency</li>
</ul>
<h2>mkdocs-material-9.6.20</h2>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8446">#8446</a>:
Deprecation warning as of Python 3.14 in Emoji extension</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8440">#8440</a>:
<code>&amp;</code> character not escaped in search highlighting</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8439">#8439</a>:
FontAwesome icons color not set in social cards (regression)</li>
</ul>
<h2>mkdocs-material-9.6.19</h2>
<ul>
<li>Added support for Python 3.14</li>
<li>Updated Bahasa Malaysia translations</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-material-9.6.21 (2025-09-30)</p>
<ul>
<li>Updated Serbian translations</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8458">#8458</a>:
Temporary pin of click dependency</li>
</ul>
<p>mkdocs-material-9.6.20 (2025-09-15)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8446">#8446</a>:
Deprecation warning as of Python 3.14 in Emoji extension</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8440">#8440</a>:
<code>&amp;</code> character not escaped in search highlighting</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8439">#8439</a>:
FontAwesome icons color not set in social cards (regression)</li>
</ul>
<p>mkdocs-material-9.6.19 (2025-09-07)</p>
<ul>
<li>Added support for Python 3.14</li>
<li>Updated Bahasa Malaysia translations</li>
</ul>
<p>mkdocs-material-9.6.18 (2025-08-22)</p>
<ul>
<li>Updated Azerbaijani translations</li>
<li>Fixed last compat issues with [minijinja], now 100% compatible</li>
</ul>
<p>mkdocs-material-9.6.17 (2025-08-15)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8396">#8396</a>:
Videos do not autoplay when inside a content tab</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8394">#8394</a>:
Stroke width not effective in Mermaid.js diagrams</li>
<li>Fixed disappearing version selector when hiding page title</li>
</ul>
<p>mkdocs-material-9.6.16 (2025-07-26)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8349">#8349</a>:
Info plugin doesn't correctly detect virtualenv in some cases</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8334">#8334</a>:
Find-in-page detects matches in hidden search result list</li>
</ul>
<p>mkdocs-material-9.6.15 (2025-07-01)</p>
<ul>
<li>Updated Mongolian translations</li>
<li>Improved semantic markup of &quot;edit this page&quot; button</li>
<li>Improved info plugin virtual environment resolution</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8291">#8291</a>:
Large font size setting throws of breakpoints in JavaScript</li>
</ul>
<p>mkdocs-material-9.6.14 (2025-05-13)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8215">#8215</a>:
Social plugin crashes when CairoSVG is updated to 2.8</li>
</ul>
<p>mkdocs-material-9.6.13 (2025-05-10)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8204">#8204</a>:
Annotations showing list markers in print view</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8153">#8153</a>:
Improve style of cardinality symbols in Mermaid.js ER diagrams</li>
</ul>
<p>mkdocs-material-9.6.12 (2025-04-17)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/f7cacc0089c01e6c075512da06de949e769dad0e"><code>f7cacc0</code></a>
Prepare 9.6.21 release</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/6f715fbe063869d6fda139c0b9f06e371517d106"><code>6f715fb</code></a>
Unpinned click</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/97e275c953e5b8255ca24ca166ddd802e23d84b1"><code>97e275c</code></a>
Updated Serbian languages (<a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8445">#8445</a>)</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/f0b0b5931a386b670c19d3e3b78ecd41da144341"><code>f0b0b59</code></a>
Prepare 9.6.20 release</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/900981b6f82c51fdf4e78f1e5f9e48592bbb85c2"><code>900981b</code></a>
Fixed deprecation warning as of Python 3.14 in Emoji extension</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/ed0026322f5ff51df2e9c9f8489ba2e3ebc06fa5"><code>ed00263</code></a>
Documentation (<a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8443">#8443</a>)</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/a4f42bbfcdc816f7e69b2ab0c7ed87d58862939e"><code>a4f42bb</code></a>
Updated Premium sponsors</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/63d7e746be929737d7bbbca32d66f5d083ea253a"><code>63d7e74</code></a>
Fixed FontAwesome icons having fill attributes</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/ee678455e93a2a356d58bc7a1c57f1e3e171a8c4"><code>ee67845</code></a>
Fixed &amp; not escaped in search highlighting</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/2fe55eecfa0abe6004ea0adb8b5fbc527d788d5f"><code>2fe55ee</code></a>
Prepare 9.6.19 release</li>
<li>Additional commits viewable in <a
href="https://github.com/squidfunk/mkdocs-material/compare/9.6.18...9.6.21">compare
view</a></li>
</ul>
</details>
<br />


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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
lars-reimann pushed a commit that referenced this pull request Nov 4, 2025
Bumps the mkdocs group with 2 updates:
[mkdocs-glightbox](https://github.com/blueswen/mkdocs-glightbox) and
[mkdocs-material](https://github.com/squidfunk/mkdocs-material).

Updates `mkdocs-glightbox` from 0.5.1 to 0.5.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/blueswen/mkdocs-glightbox/releases">mkdocs-glightbox's
releases</a>.</em></p>
<blockquote>
<h2>mkdocs-glightbox-0.5.2</h2>
<ul>
<li>Updated selectolax dependency to &gt;=0.3.29 to support Python 3.14
(<a
href="https://redirect.github.com/blueswen/mkdocs-glightbox/issues/64">#64</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG">mkdocs-glightbox's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-glightbox-0.5.2 (2025-10-23)</p>
<pre><code>* Updated selectolax dependency to &gt;=0.3.29 to support
Python 3.14
([#64](blueswen/mkdocs-glightbox#64))
</code></pre>
<p>mkdocs-glightbox-0.5.1 (2025-09-04)</p>
<pre><code>* Pined selectolax to 0.3.29 to avoid missing binary wheel
issue on some platforms
([#63](blueswen/mkdocs-glightbox#63))
</code></pre>
<p>mkdocs-glightbox-0.5.0 (2025-09-03)</p>
<pre><code>* Updated glightbox to 3.3.1
* Migrated to uv and pyproject.toml for development and building
* Replaced regex with Selectolax to improve performance, availability
and maintainability
([#44](blueswen/mkdocs-glightbox#44),
[#56](blueswen/mkdocs-glightbox#56),
[#61](blueswen/mkdocs-glightbox#61))
* Updated tests and workflow
* Support auto themed
([#49](blueswen/mkdocs-glightbox#49))
</code></pre>
<p>mkdocs-glightbox-0.4.0 (2023-05-06)</p>
<pre><code>* Supported manual mode
([#29](blueswen/mkdocs-glightbox#29))
* Allow calling lightbox methods from other places
([#34](blueswen/mkdocs-glightbox#34))
* Added id to appended script tag
([#38](blueswen/mkdocs-glightbox#38))
* Access theme attribute directly
([#40](blueswen/mkdocs-glightbox#40))
* Better JavaScript Error Handling
([#36](blueswen/mkdocs-glightbox#36))
</code></pre>
<p>mkdocs-glightbox-0.3.7 (2023-01-24)</p>
<pre><code>* Supported custom background and shadow
([#27](blueswen/mkdocs-glightbox#27))
</code></pre>
<p>mkdocs-glightbox-0.3.6 (2023-12-30)</p>
<pre><code>* Modified width default to auto prevent zooming large image
bug ([#21](blueswen/mkdocs-glightbox#21))
* Supported only enable glightbox with on-glb class in given page
([#28](blueswen/mkdocs-glightbox#28))
</code></pre>
<p>mkdocs-glightbox-0.3.5 (2023-11-18)</p>
<pre><code>* Supported compatibility with the privacy plugin of Material
for MkDocs insiders
([#25](blueswen/mkdocs-glightbox#25))
</code></pre>
<p>mkdocs-glightbox-0.3.4 (2023-04-25)</p>
<pre><code>* Fixed regex bug: quote issue and empty alt issue
([#14](blueswen/mkdocs-glightbox#14)
[#19](blueswen/mkdocs-glightbox#19))
</code></pre>
<p>mkdocs-glightbox-0.3.3 (2023-04-20)</p>
<pre><code>* Refactored processing logic with regex
([#14](blueswen/mkdocs-glightbox#14))
</code></pre>
<p>mkdocs-glightbox-0.3.2 (2023-03-19)</p>
<pre><code>* Supported image without extension
([#13](blueswen/mkdocs-glightbox#13))
</code></pre>
<p>mkdocs-glightbox-0.3.1 (2022-11-22)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/c94b0616480e96a86939a2a248f18a6f57f80516"><code>c94b061</code></a>
v0.5.2</li>
<li><a
href="https://github.com/blueswen/mkdocs-glightbox/commit/1744655f5f8006c3929f076c9e066e2e56b63c04"><code>1744655</code></a>
Update selectolax dependency to &gt;=0.3.29 to support Python 3.14 (<a
href="https://redirect.github.com/blueswen/mkdocs-glightbox/issues/64">#64</a>)</li>
<li>See full diff in <a
href="https://github.com/blueswen/mkdocs-glightbox/compare/v0.5.1...v0.5.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `mkdocs-material` from 9.6.21 to 9.6.23
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/releases">mkdocs-material's
releases</a>.</em></p>
<blockquote>
<h2>mkdocs-material-9.6.23</h2>
<ul>
<li>Updated Burmese translation</li>
</ul>
<h2>mkdocs-material-9.6.22</h2>
<ul>
<li>Updated Georgian translation</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-material-9.6.23 (2025-11-01)</p>
<ul>
<li>Updated Burmese translation</li>
</ul>
<p>mkdocs-material-9.6.22 (2025-10-15)</p>
<ul>
<li>Updated Georgian translation</li>
</ul>
<p>mkdocs-material-9.6.21 (2025-09-30)</p>
<ul>
<li>Updated Serbian translations</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8458">#8458</a>:
Temporary pin of click dependency</li>
</ul>
<p>mkdocs-material-9.6.20 (2025-09-15)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8446">#8446</a>:
Deprecation warning as of Python 3.14 in Emoji extension</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8440">#8440</a>:
<code>&amp;</code> character not escaped in search highlighting</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8439">#8439</a>:
FontAwesome icons color not set in social cards (regression)</li>
</ul>
<p>mkdocs-material-9.6.19 (2025-09-07)</p>
<ul>
<li>Added support for Python 3.14</li>
<li>Updated Bahasa Malaysia translations</li>
</ul>
<p>mkdocs-material-9.6.18 (2025-08-22)</p>
<ul>
<li>Updated Azerbaijani translations</li>
<li>Fixed last compat issues with [minijinja], now 100% compatible</li>
</ul>
<p>mkdocs-material-9.6.17 (2025-08-15)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8396">#8396</a>:
Videos do not autoplay when inside a content tab</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8394">#8394</a>:
Stroke width not effective in Mermaid.js diagrams</li>
<li>Fixed disappearing version selector when hiding page title</li>
</ul>
<p>mkdocs-material-9.6.16 (2025-07-26)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8349">#8349</a>:
Info plugin doesn't correctly detect virtualenv in some cases</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8334">#8334</a>:
Find-in-page detects matches in hidden search result list</li>
</ul>
<p>mkdocs-material-9.6.15 (2025-07-01)</p>
<ul>
<li>Updated Mongolian translations</li>
<li>Improved semantic markup of &quot;edit this page&quot; button</li>
<li>Improved info plugin virtual environment resolution</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8291">#8291</a>:
Large font size setting throws of breakpoints in JavaScript</li>
</ul>
<p>mkdocs-material-9.6.14 (2025-05-13)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8215">#8215</a>:
Social plugin crashes when CairoSVG is updated to 2.8</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/54c7b79315b5ef5620efe16a1473d3368c8b8f52"><code>54c7b79</code></a>
Prepare 9.6.23 release</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/f0dbcb5b66aa5060eef3ebce04d241686505887c"><code>f0dbcb5</code></a>
Disabled dependabot</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/53d15f854d0479f01378023926e06a5cc857e28f"><code>53d15f8</code></a>
Updated dependencies</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/d9e4f7139274bb70743a076da8b80a898b1a1c14"><code>d9e4f71</code></a>
Updated Burmese translations</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/9b3247c9cdee7e2bd67c371a136c5de487f38f19"><code>9b3247c</code></a>
Updated changelog</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/8f9dcbdd68bd5746ed1dd712d6fd7d5fe0808292"><code>8f9dcbd</code></a>
Prepare 9.6.22 release</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/b29310f37dc9402ab9271ca8aaf356c44b046d78"><code>b29310f</code></a>
Updated dependencies</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/68bfd526e1dbb8db0c64dcca54780f0c2636d301"><code>68bfd52</code></a>
Documentation</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/c68fac7fb3071fa4f45cc823e2ca2ea82fd67b43"><code>c68fac7</code></a>
Updated Georgian translations</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/56bb56c0fed1217f0a58a660ccbefd73db671397"><code>56bb56c</code></a>
Bump actions/setup-node from 4 to 5 (<a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8471">#8471</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/squidfunk/mkdocs-material/compare/9.6.21...9.6.23">compare
view</a></li>
</ul>
</details>
<br />


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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

released Included in a release

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants