Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PyMuPDF==1.24.0 will hanging when using page.get_text("text") #3357

Closed
xiaominghero opened this issue Apr 7, 2024 · 11 comments
Closed

PyMuPDF==1.24.0 will hanging when using page.get_text("text") #3357

xiaominghero opened this issue Apr 7, 2024 · 11 comments
Labels
fix developed release schedule to be determined upstream bug bug outside this package

Comments

@xiaominghero
Copy link

xiaominghero commented Apr 7, 2024

Description of the bug

os: linux Ubuntu 22.04 LTS
python 3.10.2

When I upload a PDF file, the program hangs for several hours without exiting When using get_text() method.

image

How to reproduce the bug

>>> import fitz as pymupdf
>>> pdf_path = '/data/dataset/book/pdf/bad/e4a0626f933941c6db3257f5cea4f3e5.pdf'
>>> def parse_test(pdf_path) -> str:
...     pymu_doc = pymupdf.open(pdf_path, filetype="pdf")
...     contents = []
...     try:
...         if not pymu_doc:
...             return contents
...         for _, page in enumerate(pymu_doc):
...             content = page.get_text("text")
...             contents.append(content.replace('\n', ' '))
...     except Exception:
...         contents = []
...     return '\n'.join(contents)
...
>>> a = parse_test(pdf_path)

e4a0626f933941c6db3257f5cea4f3e5.pdf

PyMuPDF version

1.24.0

Operating system

Linux

Python version

3.10

@JorjMcKie
Copy link
Collaborator

This is base library problem occurring on the first page - the second page works.
I will open a bug in MuPDF's issue system.

@JorjMcKie JorjMcKie added the upstream bug bug outside this package label Apr 7, 2024
@JorjMcKie
Copy link
Collaborator

When providing code snippets, please use properly indented code blocks using slash commands
image

@JorjMcKie
Copy link
Collaborator

Here is the reference to the MuPDF bug: https://bugs.ghostscript.com/show_bug.cgi?id=707721

@jan-benisek
Copy link

jan-benisek commented Apr 8, 2024

I encountered the same on Friday with 1.24.1. Rolling back to 1.23.14 "fixed" it.
Interestingly enough, it was triggered on a .pdf with the same first page as @xiaominghero shared (attached).
(❗ note that we encountered this on different files, not just this one)

import fitz
doc = fitz.open("I_break_things.pdf")
doc

I_break_things.pdf

@JorjMcKie
Copy link
Collaborator

Interestingly enough, it was triggered on a .pdf with the same first page as @xiaominghero shared (attached).

It is this one page that causes the problem - not any other.

@xiaominghero
Copy link
Author

@jan-benisek Unfortunately, Version 1.23.14 is not OK for me.

@JorjMcKie JorjMcKie added the fix developed release schedule to be determined label Apr 11, 2024
@JorjMcKie
Copy link
Collaborator

This has been fixed in v1.24.2.

@henriklaurentz
Copy link

Hi @JorjMcKie ,

I still run into the same issues on 1.24.2 while testing on the file (the first page) that @jan-benisek submitted.

That is,

import fitz

fitz.open("I_break_things.pdf")[0].get_text()

hangs, while working fine on 1.23.14.

@JorjMcKie
Copy link
Collaborator

Sorry - my bad. The required / developed MuPDF fix is not contained in this version yet.
I am re-opening the issue.

@JorjMcKie JorjMcKie reopened this Apr 19, 2024
@henriklaurentz
Copy link

No worries, and thanks a lot for all your work.

@julian-smith-artifex-com
Copy link
Collaborator

Fixed in 1.24.3.

github-merge-queue bot pushed a commit to microsoft/rag-experiment-accelerator that referenced this issue May 14, 2024
Bumps [pymupdf](https://github.com/pymupdf/pymupdf) from 1.24.2 to
1.24.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pymupdf/pymupdf/releases">pymupdf's
releases</a>.</em></p>
<blockquote>
<h2>PyMuPDF-1.24.3 released</h2>
<p>PyMuPDF-1.24.3 has been released.</p>
<p>Wheels for Windows, Linux and MacOS, and the sdist, are available on
pypi.org and can be installed in the usual way, for example:</p>
<pre><code>python -m pip install --upgrade pymupdf
</code></pre>
<p>[Linux-aarch64 wheels will be built and uploaded later.]</p>
<p><strong>Changes in version 1.24.3 (2024-05-09)</strong></p>
<ul>
<li>
<p>The Python module is now called <code>pymupdf</code>.
<code>fitz</code> is still supported for
backwards compatibility.</p>
</li>
<li>
<p>Use MuPDF-1.24.2.</p>
</li>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3357">#3357</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3376">#3376</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3379">#3379</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3381">#3381</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3402">#3402</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3414">#3414</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3430">#3430</a></li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>
<p>New/modified methods:</p>
<ul>
<li><code>Page.remove_rotation()</code>: new, set page rotation to zero
while keeping appearance.</li>
</ul>
</li>
<li>
<p>Fixed some problems when checking for PDF properties.</p>
</li>
<li>
<p>Fixed pip builds from sdist
(see discussion <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3360">#3360</a>).</p>
</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pymupdf/PyMuPDF/blob/main/changes.txt">pymupdf's
changelog</a>.</em></p>
<blockquote>
<h1>Change Log</h1>
<p><strong>Changes in version 1.24.3 (2024-05-09)</strong></p>
<ul>
<li>
<p>The Python module is now called <code>pymupdf</code>.
<code>fitz</code> is still supported for
backwards compatibility.</p>
</li>
<li>
<p>Use MuPDF-1.24.2.</p>
</li>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <code>3357
&lt;https://github.com/pymupdf/PyMuPDF/issues/3357&gt;</code>_:
PyMuPDF==1.24.0 will hanging when using
page.get_text(&quot;text&quot;)</li>
<li><strong>Fixed</strong> <code>3376
&lt;https://github.com/pymupdf/PyMuPDF/issues/3376&gt;</code>_:
Redacting results are not as expected in 1.24.x.</li>
<li><strong>Fixed</strong> <code>3379
&lt;https://github.com/pymupdf/PyMuPDF/issues/3379&gt;</code>_:
Documentation mismatch for get_text_blocks return value order.</li>
<li><strong>Fixed</strong> <code>3381
&lt;https://github.com/pymupdf/PyMuPDF/issues/3381&gt;</code>_: Contents
stream contains floats in scientific notation</li>
<li><strong>Fixed</strong> <code>3402
&lt;https://github.com/pymupdf/PyMuPDF/issues/3402&gt;</code>_: Cannot
add Widgets containing inter-field-calculation JavaScript</li>
<li><strong>Fixed</strong> <code>3414
&lt;https://github.com/pymupdf/PyMuPDF/issues/3414&gt;</code>_: missing
attribute set_dpi()</li>
<li><strong>Fixed</strong> <code>3430
&lt;https://github.com/pymupdf/PyMuPDF/issues/3430&gt;</code>_:
page.get_text() cause process freeze with certain pdf on v1.24.2</li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>
<p>New/modified methods:</p>
<ul>
<li><code>Page.remove_rotation()</code>: new, set page rotation to zero
while keeping appearance.</li>
</ul>
</li>
<li>
<p>Fixed some problems when checking for PDF properties.</p>
</li>
<li>
<p>Fixed pip builds from sdist
(see discussion <code>3360
&lt;https://github.com/pymupdf/PyMuPDF/discussions/3360&gt;</code>_:
Alpine linux docker build failing &quot;No matching distribution found
for pymupdfb==1.24.1&quot;).</p>
</li>
</ul>
</li>
</ul>
<p><strong>Changes in version 1.24.2 (2024-04-17)</strong></p>
<ul>
<li>
<p>Removed obsolete classic implementation from releases
(previously available as module <code>fitz_old</code>).</p>
</li>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <code>3331
&lt;https://github.com/pymupdf/PyMuPDF/issues/3331&gt;</code>_:
Document.pages() is incorrectly type-hinted</li>
<li><strong>Fixed</strong> <code>3354
&lt;https://github.com/pymupdf/PyMuPDF/issues/3354&gt;</code>_:
PyMuPDF==1.24.1: AttributeError: property 'metadata' of 'Document'
object has no setter</li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>
<p>New/modified methods:</p>
<ul>
<li><code>Document.bake()</code>: new, make annotations / fields
permanent content.</li>
<li><code>Page.cluster_drawings()</code>: new, identifies drawing
items</li>
</ul>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/5bcc16e6ee52877965df2fb0ad60b518e860b97d"><code>5bcc16e</code></a>
Updated release date for 1.24.3.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/762be9ebeaac1e9174e9f41a6a561b12262e4792"><code>762be9e</code></a>
scripts/gh_release.py: avoid problems when building macos-arm64
wheels.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/2d68701a16f58ab7c4c2c03cdd84485a2a33bc11"><code>2d68701</code></a>
.github/workflows/build_wheels.yml: use macos-13 and macos-14.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/b18d200407df544b75e6bb0d55fa6fdb56a2ed63"><code>b18d200</code></a>
Update changelog, version numbers and release dates for release
1.24.3.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/89f9b442c30141a51e9aec4e958487a7f8f3a802"><code>89f9b44</code></a>
tests/test_annots.py:test_1645(): fix confusing lack of indentation in
fn call.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/f8456bad93b872076f28f9c066a37981018a3522"><code>f8456ba</code></a>
tests/: update test_1645() to match recent mupdf master.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/2ceb2e1fec0b0e0564674b11aa399fb49ecc9e51"><code>2ceb2e1</code></a>
tests/: updated to match fixes in MuPDF-1.24.2.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/64159ac5d94dd2ce01bc783c526614e3c19d9791"><code>64159ac</code></a>
Add an additional check to test_q_count().</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/00d54f2770f7cfd0ebd0ea2fbb08825de5e01d9d"><code>00d54f2</code></a>
.github/workflows/build_wheels.yml: use scripts/gh_release.py to build
sdists.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/a4f7d6a8ec1aa8541d5dee42c8e26dd289a56bde"><code>a4f7d6a</code></a>
scripts/gh_release.py: Also build PyMuPDFb sdist.</li>
<li>Additional commits viewable in <a
href="https://github.com/pymupdf/pymupdf/compare/1.24.2...1.24.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pymupdf&package-manager=pip&previous-version=1.24.2&new-version=1.24.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
julien4215 pushed a commit to aeecleclair/Hyperion that referenced this issue May 17, 2024
Bumps the patch-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [bcrypt](https://github.com/pyca/bcrypt) | `4.1.2` | `4.1.3` |
| [icalendar](https://github.com/collective/icalendar) | `5.0.11` |
`5.0.12` |
| [pymupdf](https://github.com/pymupdf/pymupdf) | `1.24.2` | `1.24.3` |
| [psycopg[c]](https://github.com/psycopg/psycopg) | `3.1.18` | `3.1.19`
|
| [psycopg[binary]](https://github.com/psycopg/psycopg) | `3.1.18` |
`3.1.19` |

Updates `bcrypt` from 4.1.2 to 4.1.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pyca/bcrypt/commit/35e5a6f5a5131bef22f04dcc9bf401b6eab79642"><code>35e5a6f</code></a>
Bump version for 4.1.3 release (<a
href="https://redirect.github.com/pyca/bcrypt/issues/791">#791</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/d99d1e568d41c7248269bfd37295f65c74fb12bd"><code>d99d1e5</code></a>
Bump autocfg from 1.2.0 to 1.3.0 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/790">#790</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/0775d47c9a1436706932b1bf8911735881aec8e2"><code>0775d47</code></a>
allow testing with pytest 8.2.0 (<a
href="https://redirect.github.com/pyca/bcrypt/issues/786">#786</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/97d09ac5c190de343af145b61d0b4356950281c0"><code>97d09ac</code></a>
Bump base64 from 0.22.0 to 0.22.1 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/787">#787</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/ee4a9a8dd1b23d33da931022f2acbf156316f2fb"><code>ee4a9a8</code></a>
use ubuntu rolling in arm64 CI (<a
href="https://redirect.github.com/pyca/bcrypt/issues/784">#784</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/7d2474faa546a1a9daae5cac282977d34fe8aedd"><code>7d2474f</code></a>
Bump libc from 0.2.153 to 0.2.154 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/783">#783</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/7a252dde4d84dedfc9d8e04308234fea18c6fa45"><code>7a252dd</code></a>
Try blocking pytest 8.2.0 (<a
href="https://redirect.github.com/pyca/bcrypt/issues/785">#785</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/297a915720a64c15274cd927a2b6f0fef2e28772"><code>297a915</code></a>
Remove brew install rust from macOS CI (<a
href="https://redirect.github.com/pyca/bcrypt/issues/782">#782</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/6b3f99eff2447cc7cf9b0cd7bffb3e31871c3648"><code>6b3f99e</code></a>
Bump parking_lot_core from 0.9.9 to 0.9.10 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/778">#778</a>)</li>
<li><a
href="https://github.com/pyca/bcrypt/commit/c88b31007dfada537b9594540a4e12d49e08eca0"><code>c88b310</code></a>
Bump parking_lot from 0.12.1 to 0.12.2 in /src/_bcrypt (<a
href="https://redirect.github.com/pyca/bcrypt/issues/780">#780</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pyca/bcrypt/compare/4.1.2...4.1.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `icalendar` from 5.0.11 to 5.0.12
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/collective/icalendar/blob/master/CHANGES.rst">icalendar's
changelog</a>.</em></p>
<blockquote>
<h2>5.0.12 (2024-03-19)</h2>
<p>Minor changes:</p>
<ul>
<li>Analyse code coverage of test files</li>
<li>Added corpus to fuzzing directory</li>
<li>Added exclusion of fuzzing corpus in MANIFEST.in</li>
<li>Augmented fuzzer to optionally convert multiple calendars from a
source string</li>
<li>Add script to convert OSS FUZZ test cases to Python/pytest test
cases</li>
<li>Added additional exception handling of defined errors to fuzzer, to
allow fuzzer to explore deeper</li>
<li>Added more instrumentation to fuzz-harness</li>
<li>Rename &quot;contributor&quot; to &quot;collaborator&quot; in
documentation</li>
<li>Correct the outdated &quot;icalendar view myfile.ics&quot; command
in documentation. <a
href="https://redirect.github.com/collective/icalendar/issues/588">#588</a></li>
<li>Update GitHub Actions steps versions</li>
<li>Keep GitHub Actions up to date with GitHub's Dependabot</li>
</ul>
<p>Breaking changes:</p>
<ul>
<li>...</li>
</ul>
<p>New features:</p>
<ul>
<li>...</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>...</li>
<li>Fixed index error in cal.py when attempting to pop from an empty
stack</li>
<li>Fixed type error in prop.py when attempting to join strings into a
byte-string</li>
<li>Caught Wrong Date Format in ical_fuzzer to resolve fuzzing coverage
blocker</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/collective/icalendar/commit/72966e7610416cf718f6ad9575db4dab4c2d7d96"><code>72966e7</code></a>
try to set a body text of the release</li>
<li><a
href="https://github.com/collective/icalendar/commit/38fcd16a78c835ed0fb268ba5ba4302c28be2f27"><code>38fcd16</code></a>
modify release</li>
<li><a
href="https://github.com/collective/icalendar/commit/679ecab15fdd104ded84f6775c3f13cc895a99e5"><code>679ecab</code></a>
use different release action</li>
<li><a
href="https://github.com/collective/icalendar/commit/216452c616c983549ce5bd88be6f3f3cb14a7c9d"><code>216452c</code></a>
use github.token</li>
<li><a
href="https://github.com/collective/icalendar/commit/72c0d6daecf552f90d9a1bdca78d23c06e906b3f"><code>72c0d6d</code></a>
try other tag release method</li>
<li><a
href="https://github.com/collective/icalendar/commit/5551ad90619e9d06d76e12555212efdea85733a3"><code>5551ad9</code></a>
version 5.0.12</li>
<li><a
href="https://github.com/collective/icalendar/commit/f41772059a67007a5e394df23887bb294d6fbe83"><code>f417720</code></a>
Merge pull request <a
href="https://redirect.github.com/collective/icalendar/issues/602">#602</a>
from niccokunzmann/refactor-test-6</li>
<li><a
href="https://github.com/collective/icalendar/commit/b51fef6e9ad74c7990d872ded333db9ffa87f47c"><code>b51fef6</code></a>
Merge pull request <a
href="https://redirect.github.com/collective/icalendar/issues/599">#599</a>
from niccokunzmann/refactor-test-3</li>
<li><a
href="https://github.com/collective/icalendar/commit/fb0baf40648522336a6997119429baf08dcdf8da"><code>fb0baf4</code></a>
Merge pull request <a
href="https://redirect.github.com/collective/icalendar/issues/598">#598</a>
from niccokunzmann/refactor-test-2</li>
<li><a
href="https://github.com/collective/icalendar/commit/00a2d56f2e36413a035a498c8822471d96cca480"><code>00a2d56</code></a>
Merge pull request <a
href="https://redirect.github.com/collective/icalendar/issues/597">#597</a>
from niccokunzmann/refactor-test-1</li>
<li>Additional commits viewable in <a
href="https://github.com/collective/icalendar/compare/v5.0.11...v5.0.12">compare
view</a></li>
</ul>
</details>
<br />

Updates `pymupdf` from 1.24.2 to 1.24.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pymupdf/pymupdf/releases">pymupdf's
releases</a>.</em></p>
<blockquote>
<h2>PyMuPDF-1.24.3 released</h2>
<p>PyMuPDF-1.24.3 has been released.</p>
<p>Wheels for Windows, Linux and MacOS, and the sdist, are available on
pypi.org and can be installed in the usual way, for example:</p>
<pre><code>python -m pip install --upgrade pymupdf
</code></pre>
<p>[Linux-aarch64 wheels will be built and uploaded later.]</p>
<p><strong>Changes in version 1.24.3 (2024-05-09)</strong></p>
<ul>
<li>
<p>The Python module is now called <code>pymupdf</code>.
<code>fitz</code> is still supported for
backwards compatibility.</p>
</li>
<li>
<p>Use MuPDF-1.24.2.</p>
</li>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3357">#3357</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3376">#3376</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3379">#3379</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3381">#3381</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3402">#3402</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3414">#3414</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3430">#3430</a></li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>
<p>New/modified methods:</p>
<ul>
<li><code>Page.remove_rotation()</code>: new, set page rotation to zero
while keeping appearance.</li>
</ul>
</li>
<li>
<p>Fixed some problems when checking for PDF properties.</p>
</li>
<li>
<p>Fixed pip builds from sdist
(see discussion <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3360">#3360</a>).</p>
</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pymupdf/PyMuPDF/blob/main/changes.txt">pymupdf's
changelog</a>.</em></p>
<blockquote>
<h1>Change Log</h1>
<p><strong>Changes in version 1.24.3 (2024-05-09)</strong></p>
<ul>
<li>
<p>The Python module is now called <code>pymupdf</code>.
<code>fitz</code> is still supported for
backwards compatibility.</p>
</li>
<li>
<p>Use MuPDF-1.24.2.</p>
</li>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <code>3357
&lt;https://github.com/pymupdf/PyMuPDF/issues/3357&gt;</code>_:
PyMuPDF==1.24.0 will hanging when using
page.get_text(&quot;text&quot;)</li>
<li><strong>Fixed</strong> <code>3376
&lt;https://github.com/pymupdf/PyMuPDF/issues/3376&gt;</code>_:
Redacting results are not as expected in 1.24.x.</li>
<li><strong>Fixed</strong> <code>3379
&lt;https://github.com/pymupdf/PyMuPDF/issues/3379&gt;</code>_:
Documentation mismatch for get_text_blocks return value order.</li>
<li><strong>Fixed</strong> <code>3381
&lt;https://github.com/pymupdf/PyMuPDF/issues/3381&gt;</code>_: Contents
stream contains floats in scientific notation</li>
<li><strong>Fixed</strong> <code>3402
&lt;https://github.com/pymupdf/PyMuPDF/issues/3402&gt;</code>_: Cannot
add Widgets containing inter-field-calculation JavaScript</li>
<li><strong>Fixed</strong> <code>3414
&lt;https://github.com/pymupdf/PyMuPDF/issues/3414&gt;</code>_: missing
attribute set_dpi()</li>
<li><strong>Fixed</strong> <code>3430
&lt;https://github.com/pymupdf/PyMuPDF/issues/3430&gt;</code>_:
page.get_text() cause process freeze with certain pdf on v1.24.2</li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>
<p>New/modified methods:</p>
<ul>
<li><code>Page.remove_rotation()</code>: new, set page rotation to zero
while keeping appearance.</li>
</ul>
</li>
<li>
<p>Fixed some problems when checking for PDF properties.</p>
</li>
<li>
<p>Fixed pip builds from sdist
(see discussion <code>3360
&lt;https://github.com/pymupdf/PyMuPDF/discussions/3360&gt;</code>_:
Alpine linux docker build failing &quot;No matching distribution found
for pymupdfb==1.24.1&quot;).</p>
</li>
</ul>
</li>
</ul>
<p><strong>Changes in version 1.24.2 (2024-04-17)</strong></p>
<ul>
<li>
<p>Removed obsolete classic implementation from releases
(previously available as module <code>fitz_old</code>).</p>
</li>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <code>3331
&lt;https://github.com/pymupdf/PyMuPDF/issues/3331&gt;</code>_:
Document.pages() is incorrectly type-hinted</li>
<li><strong>Fixed</strong> <code>3354
&lt;https://github.com/pymupdf/PyMuPDF/issues/3354&gt;</code>_:
PyMuPDF==1.24.1: AttributeError: property 'metadata' of 'Document'
object has no setter</li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>
<p>New/modified methods:</p>
<ul>
<li><code>Document.bake()</code>: new, make annotations / fields
permanent content.</li>
<li><code>Page.cluster_drawings()</code>: new, identifies drawing
items</li>
</ul>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/5bcc16e6ee52877965df2fb0ad60b518e860b97d"><code>5bcc16e</code></a>
Updated release date for 1.24.3.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/762be9ebeaac1e9174e9f41a6a561b12262e4792"><code>762be9e</code></a>
scripts/gh_release.py: avoid problems when building macos-arm64
wheels.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/2d68701a16f58ab7c4c2c03cdd84485a2a33bc11"><code>2d68701</code></a>
.github/workflows/build_wheels.yml: use macos-13 and macos-14.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/b18d200407df544b75e6bb0d55fa6fdb56a2ed63"><code>b18d200</code></a>
Update changelog, version numbers and release dates for release
1.24.3.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/89f9b442c30141a51e9aec4e958487a7f8f3a802"><code>89f9b44</code></a>
tests/test_annots.py:test_1645(): fix confusing lack of indentation in
fn call.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/f8456bad93b872076f28f9c066a37981018a3522"><code>f8456ba</code></a>
tests/: update test_1645() to match recent mupdf master.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/2ceb2e1fec0b0e0564674b11aa399fb49ecc9e51"><code>2ceb2e1</code></a>
tests/: updated to match fixes in MuPDF-1.24.2.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/64159ac5d94dd2ce01bc783c526614e3c19d9791"><code>64159ac</code></a>
Add an additional check to test_q_count().</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/00d54f2770f7cfd0ebd0ea2fbb08825de5e01d9d"><code>00d54f2</code></a>
.github/workflows/build_wheels.yml: use scripts/gh_release.py to build
sdists.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/a4f7d6a8ec1aa8541d5dee42c8e26dd289a56bde"><code>a4f7d6a</code></a>
scripts/gh_release.py: Also build PyMuPDFb sdist.</li>
<li>Additional commits viewable in <a
href="https://github.com/pymupdf/pymupdf/compare/1.24.2...1.24.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `psycopg[c]` from 3.1.18 to 3.1.19
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/psycopg/psycopg/blob/master/docs/news.rst">psycopg[c]'s
changelog</a>.</em></p>
<blockquote>
<p>.. currentmodule:: psycopg</p>
<p>.. index::
single: Release notes
single: News</p>
<h1><code>psycopg</code> release notes</h1>
<h2>Future releases</h2>
<p>Psycopg 3.2 (unreleased)
^^^^^^^^^^^^^^^^^^^^^^^^</p>
<ul>
<li>Add support for integer, floating point, boolean <code>NumPy scalar
types</code>__

(:ticket:<code>[#332](https://github.com/psycopg/psycopg/issues/332)</code>).</li>
<li>Add <code>!timeout</code> and <code>!stop_after</code> parameters to
<code>Connection.notifies()</code>
(:ticket:<code>340</code>).</li>
<li>Add :ref:<code>raw-query-cursors</code> to execute queries using
placeholders in
PostgreSQL format (<code>$1</code>, <code>$2</code>...)
(:ticket:<code>[#560](https://github.com/psycopg/psycopg/issues/560)</code>).</li>
<li>Add <code>psycopg.capabilities</code> object to :ref:<code>inspect
the libpq capabilities &lt;capabilities&gt;</code>
(🎫<code>[#772](https://github.com/psycopg/psycopg/issues/772)</code>).</li>
<li>Add <code>~rows.scalar_row</code> to return scalar values from a
query
(:ticket:<code>[#723](https://github.com/psycopg/psycopg/issues/723)</code>).</li>
<li>Prepared statements are now :ref:<code>compatible with PgBouncer
&lt;pgbouncer&gt;</code>.

(🎫<code>[#589](https://github.com/psycopg/psycopg/issues/589)</code>).</li>
<li>Add <code>~Connection.set_autocommit()</code> on sync connections,
and similar
transaction control methods available on the async connections.</li>
<li>Add support for libpq functions to close prepared statements and
portals
introduced in libpq v17
(:ticket:<code>[#603](https://github.com/psycopg/psycopg/issues/603)</code>).</li>
<li>Add support for libpq encrypted and non-blocking query cancellation
functions introduced in libpq v17
(:ticket:<code>[#754](https://github.com/psycopg/psycopg/issues/754)</code>).</li>
<li>The <code>!context</code> parameter of <code>sql</code> objects
<code>~sql.Composable.as_string()</code> and
<code>~sql.Composable.as_bytes()</code> methods is now optional
(:ticket:<code>[#716](https://github.com/psycopg/psycopg/issues/716)</code>).</li>
<li>Disable receiving more than one result on the same cursor in
pipeline mode,
to iterate through <code>~Cursor.nextset()</code>. The behaviour was
different than
in non-pipeline mode and not totally reliable
(:ticket:<code>[#604](https://github.com/psycopg/psycopg/issues/604)</code>).
The <code>Cursor</code> now only preserves the results set of the last
<code>~Cursor.execute()</code>, consistently with non-pipeline
mode.</li>
<li>Add <code>~Connection.cancel_safe()</code> for encrypted and
non-blocking cancellation
If possible, use such method internally upon
<code>KeyboardInterrupt</code> and <code>Copy</code>
termination
(:ticket:<code>[#754](https://github.com/psycopg/psycopg/issues/754)</code>).</li>
<li>Add support for libpq function to retrieve results in chunks
introduced in
libpq v17
(:ticket:<code>[#793](https://github.com/psycopg/psycopg/issues/793)</code>).</li>
</ul>
<p>.. __: <a
href="https://numpy.org/doc/stable/reference/arrays.scalars.html#built-in-scalar-types">https://numpy.org/doc/stable/reference/arrays.scalars.html#built-in-scalar-types</a></p>
<h2>Current release</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/psycopg/psycopg/commit/780068d53685ab85c3fbb273596f562e6eeba297"><code>780068d</code></a>
chore: bump psycopg package version to 3.1.19</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/040489c648d5f3fb12342a55c02911e02f21aa6b"><code>040489c</code></a>
chore(crdb): upgrade types to v23.1</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/163f3665b11eab10d7de6d917162b660d4229774"><code>163f366</code></a>
ci(macos): test and build macOS packages on M1 runners</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/01d5dabde6a3d5250b33e6d53fea7789afdb6125"><code>01d5dab</code></a>
Merge branch 'fix-745' into maint-3.1</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/28fc73e5730d594d7340dbd2a686ce01894ba8e5"><code>28fc73e</code></a>
perf(copy): only flush at every row on copy on macOS</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/963c5f8a1b169eccee05fbf0b9738308df86706e"><code>963c5f8</code></a>
Improve performance of copy</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/c9486b3a9f22b1003705c59a0c6cc5248f6a2ec7"><code>c9486b3</code></a>
test(copy): add minimal copy benchmark framework</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/33989450c64dc2da93697183a8f4a61242b2bebd"><code>3398945</code></a>
Merge branch 'fix-734' into maint-3.1</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/cfc0782032f8fa86096a7b9f7fd83b6870ec7fe5"><code>cfc0782</code></a>
fix(c): solve undefined behaviour caused by unaligned access</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/611738ff3626e7f0d35d66c934653220a7248bbe"><code>611738f</code></a>
ci: add test to check for misaligned memory access</li>
<li>Additional commits viewable in <a
href="https://github.com/psycopg/psycopg/compare/3.1.18...3.1.19">compare
view</a></li>
</ul>
</details>
<br />

Updates `psycopg[binary]` from 3.1.18 to 3.1.19
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/psycopg/psycopg/blob/master/docs/news.rst">psycopg[binary]'s
changelog</a>.</em></p>
<blockquote>
<p>.. currentmodule:: psycopg</p>
<p>.. index::
single: Release notes
single: News</p>
<h1><code>psycopg</code> release notes</h1>
<h2>Future releases</h2>
<p>Psycopg 3.2 (unreleased)
^^^^^^^^^^^^^^^^^^^^^^^^</p>
<ul>
<li>Add support for integer, floating point, boolean <code>NumPy scalar
types</code>__

(:ticket:<code>[#332](https://github.com/psycopg/psycopg/issues/332)</code>).</li>
<li>Add <code>!timeout</code> and <code>!stop_after</code> parameters to
<code>Connection.notifies()</code>
(:ticket:<code>340</code>).</li>
<li>Add :ref:<code>raw-query-cursors</code> to execute queries using
placeholders in
PostgreSQL format (<code>$1</code>, <code>$2</code>...)
(:ticket:<code>[#560](https://github.com/psycopg/psycopg/issues/560)</code>).</li>
<li>Add <code>psycopg.capabilities</code> object to :ref:<code>inspect
the libpq capabilities &lt;capabilities&gt;</code>
(🎫<code>[#772](https://github.com/psycopg/psycopg/issues/772)</code>).</li>
<li>Add <code>~rows.scalar_row</code> to return scalar values from a
query
(:ticket:<code>[#723](https://github.com/psycopg/psycopg/issues/723)</code>).</li>
<li>Prepared statements are now :ref:<code>compatible with PgBouncer
&lt;pgbouncer&gt;</code>.

(🎫<code>[#589](https://github.com/psycopg/psycopg/issues/589)</code>).</li>
<li>Add <code>~Connection.set_autocommit()</code> on sync connections,
and similar
transaction control methods available on the async connections.</li>
<li>Add support for libpq functions to close prepared statements and
portals
introduced in libpq v17
(:ticket:<code>[#603](https://github.com/psycopg/psycopg/issues/603)</code>).</li>
<li>Add support for libpq encrypted and non-blocking query cancellation
functions introduced in libpq v17
(:ticket:<code>[#754](https://github.com/psycopg/psycopg/issues/754)</code>).</li>
<li>The <code>!context</code> parameter of <code>sql</code> objects
<code>~sql.Composable.as_string()</code> and
<code>~sql.Composable.as_bytes()</code> methods is now optional
(:ticket:<code>[#716](https://github.com/psycopg/psycopg/issues/716)</code>).</li>
<li>Disable receiving more than one result on the same cursor in
pipeline mode,
to iterate through <code>~Cursor.nextset()</code>. The behaviour was
different than
in non-pipeline mode and not totally reliable
(:ticket:<code>[#604](https://github.com/psycopg/psycopg/issues/604)</code>).
The <code>Cursor</code> now only preserves the results set of the last
<code>~Cursor.execute()</code>, consistently with non-pipeline
mode.</li>
<li>Add <code>~Connection.cancel_safe()</code> for encrypted and
non-blocking cancellation
If possible, use such method internally upon
<code>KeyboardInterrupt</code> and <code>Copy</code>
termination
(:ticket:<code>[#754](https://github.com/psycopg/psycopg/issues/754)</code>).</li>
<li>Add support for libpq function to retrieve results in chunks
introduced in
libpq v17
(:ticket:<code>[#793](https://github.com/psycopg/psycopg/issues/793)</code>).</li>
</ul>
<p>.. __: <a
href="https://numpy.org/doc/stable/reference/arrays.scalars.html#built-in-scalar-types">https://numpy.org/doc/stable/reference/arrays.scalars.html#built-in-scalar-types</a></p>
<h2>Current release</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/psycopg/psycopg/commit/780068d53685ab85c3fbb273596f562e6eeba297"><code>780068d</code></a>
chore: bump psycopg package version to 3.1.19</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/040489c648d5f3fb12342a55c02911e02f21aa6b"><code>040489c</code></a>
chore(crdb): upgrade types to v23.1</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/163f3665b11eab10d7de6d917162b660d4229774"><code>163f366</code></a>
ci(macos): test and build macOS packages on M1 runners</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/01d5dabde6a3d5250b33e6d53fea7789afdb6125"><code>01d5dab</code></a>
Merge branch 'fix-745' into maint-3.1</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/28fc73e5730d594d7340dbd2a686ce01894ba8e5"><code>28fc73e</code></a>
perf(copy): only flush at every row on copy on macOS</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/963c5f8a1b169eccee05fbf0b9738308df86706e"><code>963c5f8</code></a>
Improve performance of copy</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/c9486b3a9f22b1003705c59a0c6cc5248f6a2ec7"><code>c9486b3</code></a>
test(copy): add minimal copy benchmark framework</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/33989450c64dc2da93697183a8f4a61242b2bebd"><code>3398945</code></a>
Merge branch 'fix-734' into maint-3.1</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/cfc0782032f8fa86096a7b9f7fd83b6870ec7fe5"><code>cfc0782</code></a>
fix(c): solve undefined behaviour caused by unaligned access</li>
<li><a
href="https://github.com/psycopg/psycopg/commit/611738ff3626e7f0d35d66c934653220a7248bbe"><code>611738f</code></a>
ci: add test to check for misaligned memory access</li>
<li>Additional commits viewable in <a
href="https://github.com/psycopg/psycopg/compare/3.1.18...3.1.19">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>
github-merge-queue bot pushed a commit to microsoft/rag-experiment-accelerator that referenced this issue May 28, 2024
Bumps [pymupdf](https://github.com/pymupdf/pymupdf) from 1.24.3 to
1.24.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pymupdf/pymupdf/releases">pymupdf's
releases</a>.</em></p>
<blockquote>
<h2>PyMuPDF-1.24.4 released</h2>
<p>PyMuPDF-1.24.4 has been released.</p>
<p>Wheels for Windows, Linux and MacOS, and the sdist, are available on
pypi.org and can be installed in the usual way, for example:</p>
<pre><code>python -m pip install --upgrade pymupdf
</code></pre>
<p>[Linux-aarch64 wheels will be built and uploaded later.]</p>
<p><strong>Changes in version 1.24.4 (2024-05-16)</strong></p>
<ul>
<li>
<p><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3418">#3418</a></p>
</li>
<li>
<p>Other:</p>
<ul>
<li>Fixed sysinstall test failing to remove all of prior installation
before
new install.</li>
<li>Fixed <code>utils.do_links()</code> crash.</li>
<li>Correct <code>TextPage</code> creation Code.</li>
<li>Unified various diagnostics.</li>
<li>Fix bug in <code>page_merge()</code>.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pymupdf/PyMuPDF/blob/main/changes.txt">pymupdf's
changelog</a>.</em></p>
<blockquote>
<h1>Change Log</h1>
<p><strong>Changes in version 1.24.4 (2024-05-16)</strong></p>
<ul>
<li>
<p><strong>Fixed</strong> <code>3418
&lt;https://github.com/pymupdf/PyMuPDF/issues/3418&gt;</code>_:
Re-introduced bug, text align add_redact_annot</p>
</li>
<li>
<p>Other:</p>
<ul>
<li>Fixed sysinstall test failing to remove all of prior installation
before
new install.</li>
<li>Fixed <code>utils.do_links()</code> crash.</li>
<li>Correct <code>TextPage</code> creation Code.</li>
<li>Unified various diagnostics.</li>
<li>Fix bug in <code>page_merge()</code>.</li>
</ul>
</li>
</ul>
<p><strong>Changes in version 1.24.3 (2024-05-09)</strong></p>
<ul>
<li>
<p>The Python module is now called <code>pymupdf</code>.
<code>fitz</code> is still supported for
backwards compatibility.</p>
</li>
<li>
<p>Use MuPDF-1.24.2.</p>
</li>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <code>3357
&lt;https://github.com/pymupdf/PyMuPDF/issues/3357&gt;</code>_:
PyMuPDF==1.24.0 will hanging when using
page.get_text(&quot;text&quot;)</li>
<li><strong>Fixed</strong> <code>3376
&lt;https://github.com/pymupdf/PyMuPDF/issues/3376&gt;</code>_:
Redacting results are not as expected in 1.24.x.</li>
<li><strong>Fixed</strong> <code>3379
&lt;https://github.com/pymupdf/PyMuPDF/issues/3379&gt;</code>_:
Documentation mismatch for get_text_blocks return value order.</li>
<li><strong>Fixed</strong> <code>3381
&lt;https://github.com/pymupdf/PyMuPDF/issues/3381&gt;</code>_: Contents
stream contains floats in scientific notation</li>
<li><strong>Fixed</strong> <code>3402
&lt;https://github.com/pymupdf/PyMuPDF/issues/3402&gt;</code>_: Cannot
add Widgets containing inter-field-calculation JavaScript</li>
<li><strong>Fixed</strong> <code>3414
&lt;https://github.com/pymupdf/PyMuPDF/issues/3414&gt;</code>_: missing
attribute set_dpi()</li>
<li><strong>Fixed</strong> <code>3430
&lt;https://github.com/pymupdf/PyMuPDF/issues/3430&gt;</code>_:
page.get_text() cause process freeze with certain pdf on v1.24.2</li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>
<p>New/modified methods:</p>
<ul>
<li><code>Page.remove_rotation()</code>: new, set page rotation to zero
while keeping appearance.</li>
</ul>
</li>
<li>
<p>Fixed some problems when checking for PDF properties.</p>
</li>
<li>
<p>Fixed pip builds from sdist
(see discussion <code>3360
&lt;https://github.com/pymupdf/PyMuPDF/discussions/3360&gt;</code>_:
Alpine linux docker build failing &quot;No matching distribution found
for pymupdfb==1.24.1&quot;).</p>
</li>
</ul>
</li>
</ul>
<p><strong>Changes in version 1.24.2 (2024-04-17)</strong></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/74a368b4261fa30bcefa52508ac21fde17fbb8e4"><code>74a368b</code></a>
Update changelog, version numbers and release dates for release
1.24.4.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/73bdc3b0cd28875690f2c01a7fbeb98b737adcfa"><code>73bdc3b</code></a>
src/<strong>init</strong>.py:page_merge(): fixed bug.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/2f48b97a69f2fee9f5508041964ee80c8c95faa8"><code>2f48b97</code></a>
src/: use message() for all diagnostics.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/fecacd37220191fb968850c5d2d7416376626b83"><code>fecacd3</code></a>
some code cleaning</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/7d8d41cd2d9b45e3b52af5e0405debcc621f2ab1"><code>7d8d41c</code></a>
Correct TextPage creation Code</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/2067826105c58c68942839aed95ae4e7909ee341"><code>2067826</code></a>
Fixed utils.do_links() crash.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/d46413390cbdbae7c3ea6a9030a9f3e71ecc42ff"><code>d464133</code></a>
Documentation: Fixes up more Japanese translation, edit to rag.rst.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/e6e1daa0e14cb08e15f1caab2d6bc794276d6909"><code>e6e1daa</code></a>
scripts/sysinstall.py: fix test failure after recent rename
fitz-&gt;pymupdf.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/290649c22132c545c0a8496410112336e6dc63af"><code>290649c</code></a>
tests/test_balance_count.py: update expectations with mupdf 1.24.0 and
1.24.1.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/109708054ae76560560318a9e749db5cf845fe0b"><code>1097080</code></a>
tests/: updated expectations to match latest MuPDF master.</li>
<li>Additional commits viewable in <a
href="https://github.com/pymupdf/pymupdf/compare/1.24.3...1.24.4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pymupdf&package-manager=pip&previous-version=1.24.3&new-version=1.24.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julia Meshcheryakova <juliame@microsoft.com>
armanddidierjean pushed a commit to aeecleclair/Hyperion that referenced this issue Jun 24, 2024
…474)

Bumps the patch-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pymupdf](https://github.com/pymupdf/pymupdf) | `1.24.3` | `1.24.5` |
| [redis](https://github.com/redis/redis-py) | `5.0.4` | `5.0.5` |
| [requests](https://github.com/psf/requests) | `2.32.0` | `2.32.3` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) |
`0.23.6` | `0.23.7` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.0` | `8.2.2` |
| [ruff](https://github.com/astral-sh/ruff) | `0.4.4` | `0.4.8` |


Updates `pymupdf` from 1.24.3 to 1.24.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pymupdf/pymupdf/releases">pymupdf's
releases</a>.</em></p>
<blockquote>
<h2>PyMuPDF-1.24.5 released</h2>
<p>PyMuPDF-1.24.5 has been released.</p>
<p>Wheels for Windows, Linux and MacOS, and the sdist, are available on
pypi.org and can be installed in the usual way, for example:</p>
<pre><code>python -m pip install --upgrade pymupdf
</code></pre>
<p>[Linux-aarch64 wheels will be built and uploaded later.]</p>
<p><strong>Changes in version 1.24.5 (2024-05-30)</strong></p>
<ul>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3479">#3479</a></li>
<li><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3488">#3488</a></li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>Some more fixes to use MuPDF floating formatting.</li>
<li>Removed/disabled some unnecessary diagnostics.</li>
<li>Fixed utils.do_links() crash.</li>
<li>Experimental new functions <code>pymupdf.apply_pages()</code> and
<code>pymupdf.get_text()</code>.</li>
<li>Addresses wrong label generation for label styles &quot;a&quot; and
&quot;A&quot;.</li>
</ul>
</li>
</ul>
<h2>PyMuPDF-1.24.4 released</h2>
<p>PyMuPDF-1.24.4 has been released.</p>
<p>Wheels for Windows, Linux and MacOS, and the sdist, are available on
pypi.org and can be installed in the usual way, for example:</p>
<pre><code>python -m pip install --upgrade pymupdf
</code></pre>
<p>[Linux-aarch64 wheels will be built and uploaded later.]</p>
<p><strong>Changes in version 1.24.4 (2024-05-16)</strong></p>
<ul>
<li>
<p><strong>Fixed</strong> <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3418">#3418</a></p>
</li>
<li>
<p>Other:</p>
<ul>
<li>Fixed sysinstall test failing to remove all of prior installation
before
new install.</li>
<li>Fixed <code>utils.do_links()</code> crash.</li>
<li>Correct <code>TextPage</code> creation Code.</li>
<li>Unified various diagnostics.</li>
<li>Fix bug in <code>page_merge()</code>.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pymupdf/PyMuPDF/blob/main/changes.txt">pymupdf's
changelog</a>.</em></p>
<blockquote>
<h1>Change Log</h1>
<p><strong>Changes in version 1.24.5 (2024-05-30)</strong></p>
<ul>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <code>3479
&lt;https://github.com/pymupdf/PyMuPDF/issues/3479&gt;</code>_:
regression: fill_textbox: IndexError: pop from empty list</li>
<li><strong>Fixed</strong> <code>3488
&lt;https://github.com/pymupdf/PyMuPDF/issues/3488&gt;</code>_: set_toc
method error</li>
</ul>
</li>
<li>
<p>Other:</p>
<ul>
<li>Some more fixes to use MuPDF floating formatting.</li>
<li>Removed/disabled some unnecessary diagnostics.</li>
<li>Fixed utils.do_links() crash.</li>
<li>Experimental new functions <code>pymupdf.apply_pages()</code> and
<code>pymupdf.get_text()</code>.</li>
<li>Addresses wrong label generation for label styles &quot;a&quot; and
&quot;A&quot;.</li>
</ul>
</li>
</ul>
<p><strong>Changes in version 1.24.4 (2024-05-16)</strong></p>
<ul>
<li>
<p><strong>Fixed</strong> <code>3418
&lt;https://github.com/pymupdf/PyMuPDF/issues/3418&gt;</code>_:
Re-introduced bug, text align add_redact_annot</p>
</li>
<li>
<p><strong>Fixed</strong> <code>3472
&lt;https://github.com/pymupdf/PyMuPDF/issues/3472&gt;</code>_:
insert_pdf gives SystemError</p>
</li>
<li>
<p>Other:</p>
<ul>
<li>Fixed sysinstall test failing to remove all of prior installation
before
new install.</li>
<li>Fixed <code>utils.do_links()</code> crash.</li>
<li>Correct <code>TextPage</code> creation Code.</li>
<li>Unified various diagnostics.</li>
<li>Fix bug in <code>page_merge()</code>.</li>
</ul>
</li>
</ul>
<p><strong>Changes in version 1.24.3 (2024-05-09)</strong></p>
<ul>
<li>
<p>The Python module is now called <code>pymupdf</code>.
<code>fitz</code> is still supported for
backwards compatibility.</p>
</li>
<li>
<p>Use MuPDF-1.24.2.</p>
</li>
<li>
<p>Fixed issues:</p>
<ul>
<li><strong>Fixed</strong> <code>3357
&lt;https://github.com/pymupdf/PyMuPDF/issues/3357&gt;</code>_:
PyMuPDF==1.24.0 will hanging when using
page.get_text(&quot;text&quot;)</li>
<li><strong>Fixed</strong> <code>3376
&lt;https://github.com/pymupdf/PyMuPDF/issues/3376&gt;</code>_:
Redacting results are not as expected in 1.24.x.</li>
<li><strong>Fixed</strong> <code>3379
&lt;https://github.com/pymupdf/PyMuPDF/issues/3379&gt;</code>_:
Documentation mismatch for get_text_blocks return value order.</li>
<li><strong>Fixed</strong> <code>3381
&lt;https://github.com/pymupdf/PyMuPDF/issues/3381&gt;</code>_: Contents
stream contains floats in scientific notation</li>
<li><strong>Fixed</strong> <code>3402
&lt;https://github.com/pymupdf/PyMuPDF/issues/3402&gt;</code>_: Cannot
add Widgets containing inter-field-calculation JavaScript</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/ec4497b150189d5747c1b47aa4076d24a3c27874"><code>ec4497b</code></a>
Update changelog, version numbers and release dates for release
1.24.5.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/8ec240783f66a227446d38d1afe732663d44b555"><code>8ec2407</code></a>
Documentation: Updates for more file support.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/f26b6737fb94d885bef16ec5b61101c6d08c79dc"><code>f26b673</code></a>
Addresses wrong label generation</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/036f9a90bb478f5b0fa979bf323269b2ad1d6023"><code>036f9a9</code></a>
.github/workflows/test_pyodide.yml: default to hard-coded mupdf, not
master.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/a799bde6d431825dca3bbeec2b7cf6ceb68bad96"><code>a799bde</code></a>
Add support for concurrent processing of pages.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/838d8f142a50f46686d58c9bcf4e54ba34f5707a"><code>838d8f1</code></a>
scripts/test.py: fixed naming of -f value to be 'fitz'.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/df1c280105146a9e36fa94eed5930fad782b1036"><code>df1c280</code></a>
src/extra.i: removed some unused code.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/d7228b97ed68f6d2322263464fc6779f6724f890"><code>d7228b9</code></a>
changes.txt: mark <a
href="https://redirect.github.com/pymupdf/pymupdf/issues/3472">#3472</a>
fixed in 1.24.4.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/03a802d24dc095022bd6c7294ddf4e87b9a3d6d8"><code>03a802d</code></a>
Fixed utils.do_links() crash.</li>
<li><a
href="https://github.com/pymupdf/PyMuPDF/commit/b4068db737963d43e0327688091ce3f2cd272701"><code>b4068db</code></a>
src/utils.py: disable various expected calls to
pymupdf.exception_info().</li>
<li>Additional commits viewable in <a
href="https://github.com/pymupdf/pymupdf/compare/1.24.3...1.24.5">compare
view</a></li>
</ul>
</details>
<br />

Updates `redis` from 5.0.4 to 5.0.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/redis/redis-py/releases">redis's
releases</a>.</em></p>
<blockquote>
<h2>5.0.5</h2>
<h1>Changes</h1>
<h2>🐛 Bug Fixes</h2>
<ul>
<li>Fix parsing of INFO response (<a
href="https://redirect.github.com/redis/redis-py/issues/3265">#3265</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/redis/redis-py/commit/6f55c0286ccc444204a23e8738117f43c182bf9b"><code>6f55c02</code></a>
Bump version to 5.0.5 (<a
href="https://redirect.github.com/redis/redis-py/issues/3267">#3267</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/26d2d13edcf3f29a381df4850c5926cb285d3584"><code>26d2d13</code></a>
Fix parsing of INFO response (<a
href="https://redirect.github.com/redis/redis-py/issues/3264">#3264</a>)</li>
<li>See full diff in <a
href="https://github.com/redis/redis-py/compare/v5.0.4...v5.0.5">compare
view</a></li>
</ul>
</details>
<br />

Updates `requests` from 2.32.0 to 2.32.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/psf/requests/releases">requests's
releases</a>.</em></p>
<blockquote>
<h2>v2.32.3</h2>
<h2>2.32.3 (2024-05-29)</h2>
<p><strong>Bugfixes</strong></p>
<ul>
<li>Fixed bug breaking the ability to specify custom SSLContexts in
sub-classes of
HTTPAdapter. (<a
href="https://redirect.github.com/psf/requests/issues/6716">#6716</a>)</li>
<li>Fixed issue where Requests started failing to run on Python versions
compiled
without the <code>ssl</code> module. (<a
href="https://redirect.github.com/psf/requests/issues/6724">#6724</a>)</li>
</ul>
<h2>v2.32.2</h2>
<h2>2.32.2 (2024-05-21)</h2>
<p><strong>Deprecations</strong></p>
<ul>
<li>
<p>To provide a more stable migration for custom HTTPAdapters impacted
by the CVE changes in 2.32.0, we've renamed <code>_get_connection</code>
to
a new public API, <code>get_connection_with_tls_context</code>. Existing
custom
HTTPAdapters will need to migrate their code to use this new API.
<code>get_connection</code> is considered deprecated in all versions of
Requests&gt;=2.32.0.</p>
<p>A minimal (2-line) example has been provided in the linked PR to ease
migration, but we strongly urge users to evaluate if their custom
adapter
is subject to the same issue described in CVE-2024-35195. (<a
href="https://redirect.github.com/psf/requests/issues/6710">#6710</a>)</p>
</li>
</ul>
<h2>v2.32.1</h2>
<h2>2.32.1 (2024-05-20)</h2>
<p><strong>Bugfixes</strong></p>
<ul>
<li>Add missing test certs to the sdist distributed on PyPI.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/psf/requests/blob/main/HISTORY.md">requests's
changelog</a>.</em></p>
<blockquote>
<h2>2.32.3 (2024-05-29)</h2>
<p><strong>Bugfixes</strong></p>
<ul>
<li>Fixed bug breaking the ability to specify custom SSLContexts in
sub-classes of
HTTPAdapter. (<a
href="https://redirect.github.com/psf/requests/issues/6716">#6716</a>)</li>
<li>Fixed issue where Requests started failing to run on Python versions
compiled
without the <code>ssl</code> module. (<a
href="https://redirect.github.com/psf/requests/issues/6724">#6724</a>)</li>
</ul>
<h2>2.32.2 (2024-05-21)</h2>
<p><strong>Deprecations</strong></p>
<ul>
<li>
<p>To provide a more stable migration for custom HTTPAdapters impacted
by the CVE changes in 2.32.0, we've renamed <code>_get_connection</code>
to
a new public API, <code>get_connection_with_tls_context</code>. Existing
custom
HTTPAdapters will need to migrate their code to use this new API.
<code>get_connection</code> is considered deprecated in all versions of
Requests&gt;=2.32.0.</p>
<p>A minimal (2-line) example has been provided in the linked PR to ease
migration, but we strongly urge users to evaluate if their custom
adapter
is subject to the same issue described in CVE-2024-35195. (<a
href="https://redirect.github.com/psf/requests/issues/6710">#6710</a>)</p>
</li>
</ul>
<h2>2.32.1 (2024-05-20)</h2>
<p><strong>Bugfixes</strong></p>
<ul>
<li>Add missing test certs to the sdist distributed on PyPI.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/psf/requests/commit/0e322af87745eff34caffe4df68456ebc20d9068"><code>0e322af</code></a>
v2.32.3</li>
<li><a
href="https://github.com/psf/requests/commit/e18879932287c2bf4bcee4ddf6ccb8a69b6fc656"><code>e188799</code></a>
Don't create default SSLContext if ssl module isn't present (<a
href="https://redirect.github.com/psf/requests/issues/6724">#6724</a>)</li>
<li><a
href="https://github.com/psf/requests/commit/145b5399486b56e00250204f033441f3fdf2f3c9"><code>145b539</code></a>
Merge pull request <a
href="https://redirect.github.com/psf/requests/issues/6716">#6716</a>
from sigmavirus24/bug/6715</li>
<li><a
href="https://github.com/psf/requests/commit/b1d73ddb509a3a2d3e10744e85f9cdebdbde90f0"><code>b1d73dd</code></a>
Don't use default SSLContext with custom poolmanager kwargs</li>
<li><a
href="https://github.com/psf/requests/commit/6badbac6e0d6b5a53872f26401761ad37a9002b8"><code>6badbac</code></a>
Update HISTORY.md</li>
<li><a
href="https://github.com/psf/requests/commit/a62a2d35d918baa8e793f7aa4fb41527644dfca5"><code>a62a2d3</code></a>
Allow for overriding of specific pool key params</li>
<li><a
href="https://github.com/psf/requests/commit/88dce9d854797c05d0ff296b70e0430535ef8aaf"><code>88dce9d</code></a>
v2.32.2</li>
<li><a
href="https://github.com/psf/requests/commit/c98e4d133ef29c46a9b68cd783087218a8075e05"><code>c98e4d1</code></a>
Merge pull request <a
href="https://redirect.github.com/psf/requests/issues/6710">#6710</a>
from nateprewitt/api_rename</li>
<li><a
href="https://github.com/psf/requests/commit/92075b330a30b9883f466a43d3f7566ab849f91b"><code>92075b3</code></a>
Add deprecation warning</li>
<li><a
href="https://github.com/psf/requests/commit/aa1461b68aa73e2f6ec0e78c8853b635c76fd099"><code>aa1461b</code></a>
Move _get_connection to get_connection_with_tls_context</li>
<li>Additional commits viewable in <a
href="https://github.com/psf/requests/compare/v2.32.0...v2.32.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `pytest-asyncio` from 0.23.6 to 0.23.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest-asyncio/releases">pytest-asyncio's
releases</a>.</em></p>
<blockquote>
<h2>pytest-asyncio 0.23.7</h2>
<h1>0.23.7 (2024-05-19)</h1>
<ul>
<li>Silence deprecation warnings about unclosed event loops that
occurred with certain CPython patch releases <a
href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/817">#817</a></li>
</ul>
<h2>Known issues</h2>
<p>As of v0.23, pytest-asyncio attaches an asyncio event loop to each
item of the test suite (i.e. session, packages, modules, classes,
functions) and allows tests to be run in those loops when marked
accordingly. Pytest-asyncio currently assumes that async fixture scope
is correlated with the new event loop scope. This prevents fixtures from
being evaluated independently from the event loop scope and breaks some
existing test suites (see <a
href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/706">#706</a>).
For example, a test suite may require all fixtures and tests to run in
the same event loop, but have async fixtures that are set up and torn
down for each module. If you're affected by this issue, please continue
using the v0.21 release, until it is resolved.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/eb63d5ad0ca21041726ada3d5c00211d36418a9b"><code>eb63d5a</code></a>
docs: Prepared for release of v0.23.7.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/da04a7a645bdd46d0533c727e85cf2c0e13c7def"><code>da04a7a</code></a>
Build(deps): Bump exceptiongroup in /dependencies/default</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/00c667ad80571fc8e937f4422267b135f55ec6e6"><code>00c667a</code></a>
Build(deps): Bump pytest from 8.1.1 to 8.2.0 in
/dependencies/default</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/3bd9cd885b5cc78ce4a73a03c878ac93e0a1840f"><code>3bd9cd8</code></a>
[docs] Add changelog entry.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/15544f0ee29152086b14e63cb040836f33b0b416"><code>15544f0</code></a>
Revert GitHub Actions and Tox changes.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/6316b285c1ee8f6d300916e531ff1d320bec8d6b"><code>6316b28</code></a>
Deduplicate simplefilter snippet.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/3ffdfc5607a112a9a2cb933a6af044eaf47e0227"><code>3ffdfc5</code></a>
asyncio.run(port_afinalizer())</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/0107fd7ae7e42d399b5be9af6f3ee4427e16ea7d"><code>0107fd7</code></a>
Remove extra space.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/3bf700a80cb12354fbe0a9295be9fbd4317c8d8f"><code>3bf700a</code></a>
Fix GH Action mapping.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/d15dc31f7459810af824b5e9e903f914140ceb2c"><code>d15dc31</code></a>
Fix 3109/3108 typo.</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.23.6...v0.23.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `pytest` from 8.2.0 to 8.2.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest/releases">pytest's
releases</a>.</em></p>
<blockquote>
<h2>8.2.2</h2>
<h1>pytest 8.2.2 (2024-06-04)</h1>
<h2>Bug Fixes</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12355">#12355</a>:
Fix possible catastrophic performance slowdown on a certain
parametrization pattern involving many higher-scoped parameters.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12367">#12367</a>:
Fix a regression in pytest 8.2.0 where unittest class instances (a fresh
one is created for each test) were not released promptly on test
teardown but only on session teardown.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12381">#12381</a>:
Fix possible &quot;Directory not empty&quot; crashes arising from
concurent cache dir (<code>.pytest_cache</code>) creation. Regressed in
pytest 8.2.0.</li>
</ul>
<h2>Improved Documentation</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12290">#12290</a>:
Updated Sphinx theme to use Furo instead of Flask, enabling Dark mode
theme.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12356">#12356</a>:
Added a subsection to the documentation for debugging flaky tests to
mention
lack of thread safety in pytest as a possible source of flakyness.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12363">#12363</a>:
The documentation webpages now links to a canonical version to reduce
outdated documentation in search engine results.</li>
</ul>
<h2>8.2.1</h2>
<h1>pytest 8.2.1 (2024-05-19)</h1>
<h2>Improvements</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12334">#12334</a>:
Support for Python 3.13 (beta1 at the time of writing).</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12120">#12120</a>:
Fix [PermissionError]{.title-ref} crashes arising from directories which
are not selected on the command-line.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12191">#12191</a>:
Keyboard interrupts and system exits are now properly handled during the
test collection.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12300">#12300</a>:
Fixed handling of 'Function not implemented' error under squashfuse_ll,
which is a different way to say that the mountpoint is read-only.</li>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12308">#12308</a>:
Fix a regression in pytest 8.2.0 where the permissions of
automatically-created <code>.pytest_cache</code> directories became
<code>rwx------</code> instead of the expected
<code>rwxr-xr-x</code>.</li>
</ul>
<h2>Trivial/Internal Changes</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12333">#12333</a>:
pytest releases are now attested using the recent <a
href="https://github.blog/2024-05-02-introducing-artifact-attestations-now-in-public-beta/">Artifact
Attestation</a> support from GitHub, allowing users to verify the
provenance of pytest's sdist and wheel artifacts.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pytest/commit/329d3712146e69c471be3e30883d54bdde2f76cb"><code>329d371</code></a>
Prepare release version 8.2.2</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/214d098fcce88940f5ce9353786b3cc8f0bd3938"><code>214d098</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/12414">#12414</a>
from bluetech/backport-12409</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/153a436bc40c9e89d90d62255ef5a89e9a762dca"><code>153a436</code></a>
[8.2.x] fixtures: fix catastrophic performance problem in
<code>reorder_items</code></li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/b41d5a52bbb808780ab310456d71e5ce509fd402"><code>b41d5a5</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/12412">#12412</a>
from pytest-dev/backport-12408-to-8.2.x</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/9bb73d734ff40f52d7bbebd708b5e3ab1ba20798"><code>9bb73d7</code></a>
[8.2.x] cacheprovider: fix &quot;Directory not empty&quot; crash from
cache directory c...</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/4569a01e3d20d64811d48b0b09539596520ea5a6"><code>4569a01</code></a>
[8.2.x] doc: Update trainings/events (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/12402">#12402</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/1d103e5cdc1cb08f332e61a5b20fb205fa5228e7"><code>1d103e5</code></a>
[8.2.x] Clarify pytest_ignore_collect docs (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/12386">#12386</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/240a252d34fff26efad5b3a92e62be4c9af94b70"><code>240a252</code></a>
[8.2.x] Add html_baseurl to sphinx conf.py (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/12372">#12372</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/a5ee3c41268199c2c0af59c33050326b1c4a342e"><code>a5ee3c4</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/12370">#12370</a>
from pytest-dev/backport-12368-to-8.2.x</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/f7358aec2884720b4de4594ffd0811b46316514c"><code>f7358ae</code></a>
[8.2.x] unittest: fix class instances no longer released on test
teardown sin...</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest/compare/8.2.0...8.2.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `ruff` from 0.4.4 to 0.4.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/ruff/releases">ruff's
releases</a>.</em></p>
<blockquote>
<h2>v0.4.8</h2>
<h2>Changes</h2>
<h3>Performance</h3>
<ul>
<li>Linter performance has been improved by around 10% on some
microbenchmarks by refactoring the lexer and parser to maintain
synchronicity between them (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11457">#11457</a>)</li>
</ul>
<h3>Preview features</h3>
<ul>
<li>[<code>flake8-bugbear</code>] Implement
<code>return-in-generator</code> (<code>B901</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11644">#11644</a>)</li>
<li>[<code>flake8-pyi</code>] Implement <code>PYI063</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11699">#11699</a>)</li>
<li>[<code>pygrep_hooks</code>] Check blanket ignores via file-level
pragmas (<code>PGH004</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11540">#11540</a>)</li>
</ul>
<h3>Rule changes</h3>
<ul>
<li>[<code>pyupgrade</code>] Update <code>UP035</code> for Python 3.13
and the latest version of <code>typing_extensions</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11693">#11693</a>)</li>
<li>[<code>numpy</code>] Update <code>NPY001</code> rule for NumPy 2.0
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/11735">#11735</a>)</li>
</ul>
<h3>Server</h3>
<ul>
<li>Formatting a document with syntax problems no longer spams a visible
error popup (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11745">#11745</a>)</li>
</ul>
<h3>CLI</h3>
<ul>
<li>Add RDJson support for <code>--output-format</code> flag (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11682">#11682</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>[<code>pyupgrade</code>] Write empty string in lieu of panic when
fixing <code>UP032</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11696">#11696</a>)</li>
<li>[<code>flake8-simplify</code>] Simplify double negatives in
<code>SIM103</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11684">#11684</a>)</li>
<li>Ensure the expression generator adds a newline before
<code>type</code> statements (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11720">#11720</a>)</li>
<li>Respect per-file ignores for blanket and redirected noqa rules (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11728">#11728</a>)</li>
</ul>
<h2>Contributors</h2>
<ul>
<li><a
href="https://github.com/AlexWaygood"><code>@​AlexWaygood</code></a></li>
<li><a
href="https://github.com/MichaReiser"><code>@​MichaReiser</code></a></li>
<li><a
href="https://github.com/MichaelOultram-pexip"><code>@​MichaelOultram-pexip</code></a></li>
<li><a
href="https://github.com/ajesipow"><code>@​ajesipow</code></a></li>
<li><a href="https://github.com/carljm"><code>@​carljm</code></a></li>
<li><a
href="https://github.com/charliermarsh"><code>@​charliermarsh</code></a></li>
<li><a
href="https://github.com/dhruvmanila"><code>@​dhruvmanila</code></a></li>
<li><a
href="https://github.com/github-actions"><code>@​github-actions</code></a></li>
<li><a href="https://github.com/mtsokol"><code>@​mtsokol</code></a></li>
<li><a
href="https://github.com/renovate"><code>@​renovate</code></a></li>
<li><a
href="https://github.com/snowsignal"><code>@​snowsignal</code></a></li>
<li><a
href="https://github.com/tobb10001"><code>@​tobb10001</code></a></li>
<li><a
href="https://github.com/tusharsadhwani"><code>@​tusharsadhwani</code></a></li>
</ul>
<h2>v0.4.7</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's
changelog</a>.</em></p>
<blockquote>
<h2>0.4.8</h2>
<h3>Performance</h3>
<ul>
<li>Linter performance has been improved by around 10% on some
microbenchmarks by refactoring the lexer and parser to maintain
synchronicity between them (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11457">#11457</a>)</li>
</ul>
<h3>Preview features</h3>
<ul>
<li>[<code>flake8-bugbear</code>] Implement
<code>return-in-generator</code> (<code>B901</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11644">#11644</a>)</li>
<li>[<code>flake8-pyi</code>] Implement <code>PYI063</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11699">#11699</a>)</li>
<li>[<code>pygrep_hooks</code>] Check blanket ignores via file-level
pragmas (<code>PGH004</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11540">#11540</a>)</li>
</ul>
<h3>Rule changes</h3>
<ul>
<li>[<code>pyupgrade</code>] Update <code>UP035</code> for Python 3.13
and the latest version of <code>typing_extensions</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11693">#11693</a>)</li>
<li>[<code>numpy</code>] Update <code>NPY001</code> rule for NumPy 2.0
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/11735">#11735</a>)</li>
</ul>
<h3>Server</h3>
<ul>
<li>Formatting a document with syntax problems no longer spams a visible
error popup (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11745">#11745</a>)</li>
</ul>
<h3>CLI</h3>
<ul>
<li>Add RDJson support for <code>--output-format</code> flag (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11682">#11682</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>[<code>pyupgrade</code>] Write empty string in lieu of panic when
fixing <code>UP032</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11696">#11696</a>)</li>
<li>[<code>flake8-simplify</code>] Simplify double negatives in
<code>SIM103</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11684">#11684</a>)</li>
<li>Ensure the expression generator adds a newline before
<code>type</code> statements (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11720">#11720</a>)</li>
<li>Respect per-file ignores for blanket and redirected noqa rules (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11728">#11728</a>)</li>
</ul>
<h2>0.4.7</h2>
<h3>Preview features</h3>
<ul>
<li>[<code>flake8-pyi</code>] Implement <code>PYI064</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11325">#11325</a>)</li>
<li>[<code>flake8-pyi</code>] Implement <code>PYI066</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11541">#11541</a>)</li>
<li>[<code>flake8-pyi</code>] Implement <code>PYI057</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11486">#11486</a>)</li>
<li>[<code>pyflakes</code>] Enable <code>F822</code> in
<code>__init__.py</code> files by default (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11370">#11370</a>)</li>
</ul>
<h3>Formatter</h3>
<ul>
<li>Fix incorrect placement of trailing stub function comments (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11632">#11632</a>)</li>
</ul>
<h3>Server</h3>
<ul>
<li>Respect file exclusions in <code>ruff server</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11590">#11590</a>)</li>
<li>Add support for documents not exist on disk (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11588">#11588</a>)</li>
<li>Add Vim and Kate setup guide for <code>ruff server</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/11615">#11615</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/astral-sh/ruff/commit/a8cf7096ff1acbccf3af3aa37cd6e2170f1b1bc5"><code>a8cf709</code></a>
Bump version to v0.4.8 (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11755">#11755</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/895eb3ef485836a75225e2534b638b98eaf30977"><code>895eb3e</code></a>
[red-knot] refactor CFG outside of symbol table (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11746">#11746</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/2e0a9755e07cfe7ee30683b65bbc1d9b5aa8b141"><code>2e0a975</code></a>
Disallow access to <code>Parsed</code> output, use the API instead (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11741">#11741</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/b021b5babec5d88804cd67e03a946e1da0e1c0be"><code>b021b5b</code></a>
Use <code>Tokens</code> from parsed type annotation or parsed source (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11740">#11740</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/eed6d784dfab61d0f1b1ebd95a7de7b1c6371149"><code>eed6d78</code></a>
Update type annotation parsing API to return <code>Parsed</code> (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11739">#11739</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/8338db6c1247a22e0e42ab1b24acc45ae4837149"><code>8338db6</code></a>
<code>ruff server</code>: Formatting a document with syntax problems no
longer spams a v...</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/d056d09547c5fe7ff5e787ada19fc37a73d9b444"><code>d056d09</code></a>
[red-knot] add if-statement support to FlowGraph (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11673">#11673</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/1645be018d208271bbc82b9b965eaef0e727c32a"><code>1645be0</code></a>
Update <code>NPY001</code> rule for NumPy 2.0 (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11735">#11735</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/2c865023acb0593a9c367c43c46893c83ded25ba"><code>2c86502</code></a>
CI: add job to run tests under minimum supported rust version (msrv) (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11737">#11737</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/2567e14b7a550074c37fc5695e85510b5120a37a"><code>2567e14</code></a>
Lexer should consider BOM for the start offset (<a
href="https://redirect.github.com/astral-sh/ruff/issues/11732">#11732</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/astral-sh/ruff/compare/v0.4.4...v0.4.8">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
fix developed release schedule to be determined upstream bug bug outside this package
Projects
None yet
Development

No branches or pull requests

5 participants