mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 09:37:55 -05:00
chore: bump aiosqlite from 0.19.0 to 0.22.1 (#200)
Bumps [aiosqlite](https://github.com/omnilib/aiosqlite) from 0.19.0 to 0.22.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/omnilib/aiosqlite/blob/main/CHANGELOG.md">aiosqlite's changelog</a>.</em></p> <blockquote> <h2>v0.22.1</h2> <p>Bug fix release</p> <p>NOTE: Starting with <code>v0.22.0</code>, the <code>aiosqlite.Connection</code> object no longer inherits from <code>threading.Thread</code>. If not using aiosqlite as a context manager, clients must <code>await connection.close()</code> or call <code>connection.stop()</code> to ensure the helper thread is completed and terminated correctly. A <code>ResourceWarning</code> will be emitted for any connection that is garbage collected without being closed or stopped.</p> <ul> <li>Added synchronous <code>stop()</code> method to <code>aiosqlite.Connection</code> to enable safe cleanup and termination of the background thread without dependence on having an active event loop (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/370">#370</a>)</li> </ul> <pre lang="text"><code>$ git shortlog -s v0.22.0...v0.22.1 2 Amethyst Reese </code></pre> <h2>v0.22.0</h2> <p>Feature release</p> <ul> <li>Support <code>set_authorizer</code> query access controls (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/349">#349</a>)</li> <li>Wait for transaction queue to complete when closing connection (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/305">#305</a>)</li> <li>Emit warning when connection goes out of scope without being closed (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/355">#355</a>)</li> <li>Remove dependency on <code>typing_extensions</code> (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/365">#365</a>)</li> </ul> <pre lang="text"><code>$ git shortlog -s v0.21.0...v0.22.0 1 Alec Berryman 1 Amethyst Reese 1 David Andreoletti 1 Markus Heidelberg 1 beerpsi 19 dependabot[bot] </code></pre> <h2>v0.21.0</h2> <p>Maintenance release</p> <ul> <li>Fix: close connection correctly when BaseException raised in connection (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/317">#317</a>)</li> <li>Metadata improvements</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="9b127cecc7"><code>9b127ce</code></a> Version bump v0.22.1</li> <li><a href="5c3f61c1ea"><code>5c3f61c</code></a> Improve stop semantics for connections (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/370">#370</a>)</li> <li><a href="a869d73678"><code>a869d73</code></a> Version bump v0.22.0</li> <li><a href="1cd60adcab"><code>1cd60ad</code></a> Emit warning if connection is deleted before it is closed (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/355">#355</a>)</li> <li><a href="611d7b4f29"><code>611d7b4</code></a> Add set_authorizer support for fine-grained access control (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/349">#349</a>)</li> <li><a href="81d00c8f16"><code>81d00c8</code></a> Bump actions/setup-python from 5 to 6 (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/357">#357</a>)</li> <li><a href="7a26722f7e"><code>7a26722</code></a> Bump coverage[toml] from 7.8.0 to 7.10.7 (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/358">#358</a>)</li> <li><a href="445754087e"><code>4457540</code></a> Bump flake8 from 7.2.0 to 7.3.0 (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/346">#346</a>)</li> <li><a href="b650dad318"><code>b650dad</code></a> Bump actions/checkout from 5 to 6 (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/366">#366</a>)</li> <li><a href="065ffdd129"><code>065ffdd</code></a> Bump mypy from 1.15.0 to 1.19.0 (<a href="https://redirect.github.com/omnilib/aiosqlite/issues/367">#367</a>)</li> <li>Additional commits viewable in <a href="https://github.com/omnilib/aiosqlite/compare/v0.19.0...v0.22.1">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 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>
This commit is contained in:
@@ -8,7 +8,7 @@ sqlalchemy==2.0.23
|
||||
alembic==1.12.1
|
||||
psycopg2-binary==2.9.11
|
||||
asyncpg==0.29.0
|
||||
aiosqlite==0.19.0
|
||||
aiosqlite==0.22.1
|
||||
|
||||
# Authentication & Security
|
||||
python-jose[cryptography]==3.5.0
|
||||
|
||||
Reference in New Issue
Block a user