You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bump sqlalchemy[asyncio] from 2.0.23 to 2.0.30 (#433)
Bumps [sqlalchemy[asyncio]](https://github.com/sqlalchemy/sqlalchemy)
from 2.0.23 to 2.0.30.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sqlalchemy/sqlalchemy/releases">sqlalchemy[asyncio]'s
releases</a>.</em></p>
<blockquote>
<h1>2.0.30</h1>
<p>Released: May 5, 2024</p>
<h2>orm</h2>
<ul>
<li>
<p><strong>[orm] [bug]</strong> Added new attribute
<code>_orm.ORMExecuteState.is_from_statement</code> to
detect statements created using
<code>_sql.Select.from_statement()</code>, and
enhanced <code>FromStatement</code> to set
<code>_orm.ORMExecuteState.is_select</code>,
<code>_orm.ORMExecuteState.is_insert</code>,
<code>_orm.ORMExecuteState.is_update</code>, and
<code>_orm.ORMExecuteState.is_delete</code> according to the element
that is
sent to the <code>_sql.Select.from_statement()</code> method itself.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11220">#11220</a></p>
</li>
<li>
<p><strong>[orm] [bug]</strong> Fixed issue in
<code>_orm.selectin_polymorphic()</code> loader option where
attributes defined with <code>_orm.composite()</code> on a superclass
would cause
an internal exception on load.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11291">#11291</a></p>
</li>
<li>
<p><strong>[orm] [bug] [regression]</strong> Fixed regression from 1.4
where using <code>_orm.defaultload()</code> in
conjunction with a non-propagating loader like
<code>_orm.contains_eager()</code>
would nonetheless propagate the <code>_orm.contains_eager()</code> to a
lazy load
operation, causing incorrect queries as this option is only intended to
come from an original load.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11292">#11292</a></p>
</li>
<li>
<p><strong>[orm] [bug]</strong> Fixed issue in ORM Annotated Declarative
where typing issue where literals
defined using <a href="https://peps.python.org/pep-0695">PEP 695</a>
type aliases would not work with inference of
<code>Enum</code> datatypes. Pull request courtesy of Alc-Alc.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11305">#11305</a></p>
</li>
<li>
<p><strong>[orm] [bug]</strong> Fixed issue in
<code>_orm.selectin_polymorphic()</code> loader option where the
SELECT emitted would only accommodate for the child-most class among the
result rows that were returned, leading intermediary-class attributes to
be
unloaded if there were no concrete instances of that intermediary-class
present in the result. This issue only presented itself for multi-level
inheritance hierarchies.</p>
<p>References: <a
href="https://www.sqlalchemy.org/trac/ticket/11327">#11327</a></p>
</li>
<li>
<p><strong>[orm] [bug]</strong> Fixed issue in
<code>_orm.Session.bulk_save_objects()</code> where the form of the
identity key produced when using <code>return_defaults=True</code> would
be
incorrect. This could lead to an errors during pickling as well as
identity
map mismatches.</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 />
[](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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: requirements-common.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,6 @@ python-multipart==0.0.9 # a form data parser, as oauth flow requires
15
15
rapidfuzz==3.8.1 # Fuzzy String Matching
16
16
redis==5.0.4
17
17
requests==2.31.0
18
-
SQLAlchemy[asyncio]==2.0.23 # [asyncio] allows greenlet to be installed on Apple M1 devices. The my[py] plugin is required in devellopment but Dependabot fails to manage two versions of the same module.
18
+
SQLAlchemy[asyncio]==2.0.30 # [asyncio] allows greenlet to be installed on Apple M1 devices. The my[py] plugin is required in devellopment but Dependabot fails to manage two versions of the same module.
0 commit comments