Skip to content

Commit

Permalink
Bump the python-packages group in /backend with 2 updates (#29)
Browse files Browse the repository at this point in the history
Bumps the python-packages group in /backend with 2 updates:
[coverage](https://github.com/nedbat/coveragepy) and
[sqlalchemy](https://github.com/sqlalchemy/sqlalchemy).

Updates `coverage` from 7.6.0 to 7.6.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst">coverage's
changelog</a>.</em></p>
<blockquote>
<h2>Version 7.6.1 — 2024-08-04</h2>
<ul>
<li>
<p>Fix: coverage used to fail when measuring code using
:func:<code>runpy.run_path &lt;python:runpy.run_path&gt;</code> with a
:class:<code>Path &lt;python:pathlib.Path&gt;</code> argument.
This is now fixed, thanks to <code>Ask Hjorth Larsen &lt;pull
1819_&gt;</code>_.</p>
</li>
<li>
<p>Fix: backslashes preceding a multi-line backslashed string could
confuse the
HTML report. This is now fixed, thanks to <code>LiuYinCarl &lt;pull
1828_&gt;</code>_.</p>
</li>
<li>
<p>Now we publish wheels for Python 3.13, both regular and
free-threaded.</p>
</li>
</ul>
<p>.. _pull 1819: <a
href="https://redirect.github.com/nedbat/coveragepy/pull/1819">nedbat/coveragepy#1819</a>
.. _pull 1828: <a
href="https://redirect.github.com/nedbat/coveragepy/pull/1828">nedbat/coveragepy#1828</a></p>
<p>.. _changes_7-6-0:</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nedbat/coveragepy/commit/29f5898c571aac9d6380203179ba9d6c28195c62"><code>29f5898</code></a>
docs: sample HTML for 7.6.1</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/9b829f1dcb57e724054e153d2ab0a2fec5d52122"><code>9b829f1</code></a>
docs: prep for 7.6.1</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/ebbb6a2d334f67925b78200d9da2e5fb2b0e02fb"><code>ebbb6a2</code></a>
build: wheels for 3.13rc1</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/3872525ab8d0757b4b38f210c61977f319f094b3"><code>3872525</code></a>
chore: make upgrade</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/7a27f401d10a5a55ba46f4bc726cac261aa7708e"><code>7a27f40</code></a>
test: fix a test on free-threading, use abiflags to get site-packages
path co...</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/2b53664329903a80af78a1f5de1a40ecbd8f6cfb"><code>2b53664</code></a>
build: include gil/nogil in the version banner</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/da1682fdbedba7dd99d5b7c635c47e33ce8f207c"><code>da1682f</code></a>
docs: changelog and contributor for <a
href="https://redirect.github.com/nedbat/coveragepy/issues/1828">#1828</a></li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/dc819ff4d2333dfbf01c37406bb73ff1aceb8b3a"><code>dc819ff</code></a>
test: two tests for <a
href="https://redirect.github.com/nedbat/coveragepy/issues/1828">#1828</a></li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/9aaa404e9606e9f9784eac1400d3b2ce9ef2902d"><code>9aaa404</code></a>
fix: properly handle backslash before multi-line string (<a
href="https://redirect.github.com/nedbat/coveragepy/issues/1828">#1828</a>)</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/9c5027077e478d0996639445ea1e2554edaf3295"><code>9c50270</code></a>
chore: make upgrade</li>
<li>Additional commits viewable in <a
href="https://github.com/nedbat/coveragepy/compare/7.6.0...7.6.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `sqlalchemy` from 2.0.31 to 2.0.32
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sqlalchemy/sqlalchemy/releases">sqlalchemy's
releases</a>.</em></p>
<blockquote>
<h1>2.0.32</h1>
<p>Released: August 5, 2024</p>
<h2>general</h2>
<ul>
<li>
<p><strong>[general] [bug] [regression]</strong> Restored legacy class
names removed from
<code>sqlalalchemy.orm.collections.*</code>, including
<code>_orm.MappedCollection</code>,
<code>_orm.mapped_collection()</code>,
<code>_orm.column_mapped_collection()</code>,
<code>_orm.attribute_mapped_collection()</code>. Pull request courtesy
Takashi
Kajinami.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11435">#11435</a></p>
</li>
</ul>
<h2>orm</h2>
<ul>
<li>
<p><strong>[orm] [usecase]</strong> The <code>_orm.aliased.name</code>
parameter to <code>_orm.aliased()</code> may now
be combined with the <code>_orm.aliased.flat</code> parameter, producing
per-table names based on a name-prefixed naming convention. Pull request
courtesy Eric Atkin.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11575">#11575</a></p>
</li>
<li>
<p><strong>[orm] [bug] [regression]</strong> Fixed regression going back
to 1.4 where accessing a collection using the
&quot;dynamic&quot; strategy on a transient object and attempting to
query would
raise an internal error rather than the expected
<code>NoResultFound</code>
that occurred in 1.3.</p>
<p>This change is also <strong>backported</strong> to: 1.4.53</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11562">#11562</a></p>
</li>
<li>
<p><strong>[orm] [bug]</strong> Fixed issue where using the
<code>_orm.Query.enable_eagerloads()</code> and
<code>_orm.Query.yield_per()</code> methods at the same time, in order
to disable
eager loading that's configured on the mapper directly, would be
silently
ignored, leading to errors or unexpected eager population of
attributes.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/10834">#10834</a></p>
</li>
<li>
<p><strong>[orm] [bug] [regression]</strong> Fixed regression appearing
in 2.0.21 caused by <a
href="https://www.sqlalchemy.org/trac/ticket/10279">#10279</a> where
using
a <code>_sql.delete()</code> or <code>_sql.update()</code> against an
ORM class that is
the base of an inheritance hierarchy, while also specifying that
subclasses
should be loaded polymorphically, would leak the polymorphic joins into
the
UPDATE or DELETE statement as well creating incorrect SQL.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11625">#11625</a></p>
</li>
<li>
<p><strong>[orm] [bug] [regression]</strong> Fixed regression from
version 1.4 in</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/sqlalchemy/sqlalchemy/commits">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>
  • Loading branch information
dependabot[bot] authored Aug 6, 2024
1 parent 2d62fe5 commit 7dfbddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
coverage==7.6.0
coverage==7.6.1
Twisted==24.3.0
psycopg2-binary==2.9.9
pylint==3.2.6
SQLAlchemy==2.0.31
SQLAlchemy==2.0.32
price-parser==0.3.4
Scrapy==2.11.2
nltk==3.8.1
Expand Down

0 comments on commit 7dfbddc

Please sign in to comment.