[PR #113] [CLOSED] Update mysqlclient requirement from <2.2.1 to <2.2.2 #113

Closed
opened 2026-02-27 11:09:25 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/modoboa/modoboa-postfix-autoreply/pull/113
Author: @dependabot[bot]
Created: 12/14/2023
Status: Closed

Base: masterHead: dependabot/pip/mysqlclient-lt-2.2.2


📝 Commits (1)

  • e1b17c7 Update mysqlclient requirement from <2.2.1 to <2.2.2

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 test-requirements.txt (+1 -1)

📄 Description

Updates the requirements on mysqlclient to permit the latest version.

Release notes

Sourced from mysqlclient's releases.

v2.2.1

What's Changed

  • Connection.ping() avoid using MYSQL_OPT_RECONNECT option until reconnect=True is specified. MySQL 8.0.33 start showing warning when the option is used. (#664)
  • Windows: Update MariaDB Connector/C to 3.3.8. (#665)
  • Windows: Build wheels for Python 3.12 (#644)

Merged pull requests

New Contributors

Full Changelog: https://github.com/PyMySQL/mysqlclient/compare/v2.2.0...v2.2.1

Changelog

Sourced from mysqlclient's changelog.

What's new in 2.2.1

Release: 2023-12-13

  • Connection.ping() avoid using MYSQL_OPT_RECONNECT option until reconnect=True is specified. MySQL 8.0.33 start showing warning when the option is used. (#664)
  • Windows: Update MariaDB Connector/C to 3.3.8. (#665)
  • Windows: Build wheels for Python 3.12 (#644)

====================== What's new in 2.2.0

Release: 2023-06-22

  • Use pkg-config instead of mysql_config (#586)
  • Raise ProgrammingError on -inf (#557)
  • Raise IntegrityError for ER_BAD_NULL. (#579)
  • Windows: Use MariaDB Connector/C 3.3.4 (#585)
  • Use pkg-config instead of mysql_config (#586)
  • Add collation option (#564)
  • Drop Python 3.7 support (#593)
  • Use pyproject.toml for build (#598)
  • Add Cursor.mogrify (#477)
  • Partial support of ssl_mode option with mariadbclient (#475)
  • Discard remaining results without creating Python objects (#601)
  • Fix executemany with binary prefix (#605)

====================== What's new in 2.1.1

Release: 2022-06-22

  • Fix qualname of exception classes. (#522)
  • Fix range check in MySQLdb._mysql.result.fetch_row(). Invalid how argument caused SEGV. (#538)
  • Fix docstring of _mysql.connect. (#540)
  • Windows: Binary wheels are updated. (#541)
    • Use MariaDB Connector/C 3.3.1.
    • Use cibuildwheel to build wheels.
    • Python 3.8-3.11

====================== What's new in 2.1.0

Release: 2021-11-17

... (truncated)

Commits

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

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)

Note

Automatic rebases have been disabled on this pull request as it has been open for over 30 days.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/modoboa/modoboa-postfix-autoreply/pull/113 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 12/14/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/pip/mysqlclient-lt-2.2.2` --- ### 📝 Commits (1) - [`e1b17c7`](https://github.com/modoboa/modoboa-postfix-autoreply/commit/e1b17c7f2bee683cb9c03711e760a30ee2e751b3) Update mysqlclient requirement from <2.2.1 to <2.2.2 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `test-requirements.txt` (+1 -1) </details> ### 📄 Description Updates the requirements on [mysqlclient](https://github.com/PyMySQL/mysqlclient) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/PyMySQL/mysqlclient/releases">mysqlclient's releases</a>.</em></p> <blockquote> <h2>v2.2.1</h2> <h2>What's Changed</h2> <ul> <li><code>Connection.ping()</code> avoid using <code>MYSQL_OPT_RECONNECT</code> option until <code>reconnect=True</code> is specified. MySQL 8.0.33 start showing warning when the option is used. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/664">#664</a>)</li> <li>Windows: Update MariaDB Connector/C to 3.3.8. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/665">#665</a>)</li> <li>Windows: Build wheels for Python 3.12 (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/644">#644</a>)</li> </ul> <h3>Merged pull requests</h3> <ul> <li>Add build dependency for <code>pkg-config</code> to documentation by <a href="https://github.com/hamarituc"><code>@​hamarituc</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/621">PyMySQL/mysqlclient#621</a></li> <li>Support pkg-config libmariadb by <a href="https://github.com/methane"><code>@​methane</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/631">PyMySQL/mysqlclient#631</a></li> <li>Update README.md by <a href="https://github.com/raceybe"><code>@​raceybe</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/633">PyMySQL/mysqlclient#633</a></li> <li>chore(python): add Python 3.12 in test matrix by <a href="https://github.com/stegayet"><code>@​stegayet</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/644">PyMySQL/mysqlclient#644</a></li> <li>Update actions/checkout action to v4 by <a href="https://github.com/renovate"><code>@​renovate</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/654">PyMySQL/mysqlclient#654</a></li> <li>Do not use MYSQL_OPT_RECONNECT as possible. by <a href="https://github.com/methane"><code>@​methane</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/664">PyMySQL/mysqlclient#664</a></li> <li>add bash syntax highlighting to <code>README.md</code> by <a href="https://github.com/Benjamin-Loison"><code>@​Benjamin-Loison</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/665">PyMySQL/mysqlclient#665</a></li> <li>use sphinx-rtd-theme by <a href="https://github.com/methane"><code>@​methane</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/668">PyMySQL/mysqlclient#668</a></li> <li>docs: Improve portability of brew prefix by <a href="https://github.com/davemcphee"><code>@​davemcphee</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/667">PyMySQL/mysqlclient#667</a></li> <li>chore(deps): update dependency sphinx-rtd-theme to v2 by <a href="https://github.com/renovate"><code>@​renovate</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/671">PyMySQL/mysqlclient#671</a></li> <li>chore(deps): update actions/setup-python action to v5 by <a href="https://github.com/renovate"><code>@​renovate</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/674">PyMySQL/mysqlclient#674</a></li> <li>win: update mariadb connector/c to 3.3.8 by <a href="https://github.com/methane"><code>@​methane</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/676">PyMySQL/mysqlclient#676</a></li> <li>Release v2.2.1 by <a href="https://github.com/methane"><code>@​methane</code></a> in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/679">PyMySQL/mysqlclient#679</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/hamarituc"><code>@​hamarituc</code></a> made their first contribution in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/621">PyMySQL/mysqlclient#621</a></li> <li><a href="https://github.com/raceybe"><code>@​raceybe</code></a> made their first contribution in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/633">PyMySQL/mysqlclient#633</a></li> <li><a href="https://github.com/stegayet"><code>@​stegayet</code></a> made their first contribution in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/644">PyMySQL/mysqlclient#644</a></li> <li><a href="https://github.com/Benjamin-Loison"><code>@​Benjamin-Loison</code></a> made their first contribution in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/665">PyMySQL/mysqlclient#665</a></li> <li><a href="https://github.com/davemcphee"><code>@​davemcphee</code></a> made their first contribution in <a href="https://redirect.github.com/PyMySQL/mysqlclient/pull/667">PyMySQL/mysqlclient#667</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/PyMySQL/mysqlclient/compare/v2.2.0...v2.2.1">https://github.com/PyMySQL/mysqlclient/compare/v2.2.0...v2.2.1</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PyMySQL/mysqlclient/blob/main/HISTORY.rst">mysqlclient's changelog</a>.</em></p> <blockquote> <h1>What's new in 2.2.1</h1> <p>Release: 2023-12-13</p> <ul> <li><code>Connection.ping()</code> avoid using <code>MYSQL_OPT_RECONNECT</code> option until <code>reconnect=True</code> is specified. MySQL 8.0.33 start showing warning when the option is used. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/664">#664</a>)</li> <li>Windows: Update MariaDB Connector/C to 3.3.8. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/665">#665</a>)</li> <li>Windows: Build wheels for Python 3.12 (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/644">#644</a>)</li> </ul> <h1>====================== What's new in 2.2.0</h1> <p>Release: 2023-06-22</p> <ul> <li>Use <code>pkg-config</code> instead of <code>mysql_config</code> (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/586">#586</a>)</li> <li>Raise ProgrammingError on -inf (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/557">#557</a>)</li> <li>Raise IntegrityError for ER_BAD_NULL. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/579">#579</a>)</li> <li>Windows: Use MariaDB Connector/C 3.3.4 (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/585">#585</a>)</li> <li>Use pkg-config instead of mysql_config (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/586">#586</a>)</li> <li>Add collation option (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/564">#564</a>)</li> <li>Drop Python 3.7 support (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/593">#593</a>)</li> <li>Use pyproject.toml for build (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/598">#598</a>)</li> <li>Add Cursor.mogrify (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/477">#477</a>)</li> <li>Partial support of ssl_mode option with mariadbclient (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/475">#475</a>)</li> <li>Discard remaining results without creating Python objects (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/601">#601</a>)</li> <li>Fix executemany with binary prefix (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/605">#605</a>)</li> </ul> <h1>====================== What's new in 2.1.1</h1> <p>Release: 2022-06-22</p> <ul> <li>Fix qualname of exception classes. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/522">#522</a>)</li> <li>Fix range check in <code>MySQLdb._mysql.result.fetch_row()</code>. Invalid <code>how</code> argument caused SEGV. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/538">#538</a>)</li> <li>Fix docstring of <code>_mysql.connect</code>. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/540">#540</a>)</li> <li>Windows: Binary wheels are updated. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/541">#541</a>) <ul> <li>Use MariaDB Connector/C 3.3.1.</li> <li>Use cibuildwheel to build wheels.</li> <li>Python 3.8-3.11</li> </ul> </li> </ul> <h1>====================== What's new in 2.1.0</h1> <p>Release: 2021-11-17</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/d82d0fd1e7e22bd03bdf417122302307d28ce946"><code>d82d0fd</code></a> Release v2.2.1 (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/679">#679</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/6831bc2f34271e518758b2bce6414e6df2809461"><code>6831bc2</code></a> win: update mariadb connector/c to 3.3.8 (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/676">#676</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/16017b73546522bc83787e8daf2fd43f37385bc4"><code>16017b7</code></a> chore(deps): update actions/setup-python action to v5 (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/674">#674</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/f82dac326f2344e306fa3885d425cabe33f502b4"><code>f82dac3</code></a> chore(deps): update dependency sphinx-rtd-theme to v2 (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/671">#671</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/3805b28abc24cc985ffe7c8a05dd4bd6530aefe8"><code>3805b28</code></a> docs: Improve portability of brew prefix (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/667">#667</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/2e86ccec70b7863922d192afc3167718e4fb8714"><code>2e86cce</code></a> use sphinx-rtd-theme (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/668">#668</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/cb236e9fefe211594a5f8e71eed26f0d36791105"><code>cb236e9</code></a> add bash syntax highlighting to <code>README.md</code> (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/665">#665</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/0d0fff7662abf6e46324d26415ef3f4cb70f77db"><code>0d0fff7</code></a> Do not use MYSQL_OPT_RECONNECT as possible. (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/664">#664</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/91c04282eac46ce2e5380be58e262d817faab566"><code>91c0428</code></a> Update actions/checkout action to v4 (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/654">#654</a>)</li> <li><a href="https://github.com/PyMySQL/mysqlclient/commit/a72b7aa707fb457ef80b613ba08e0872b51e6f30"><code>a72b7aa</code></a> ci: add Python 3.12 in test matrix (<a href="https://redirect.github.com/PyMySQL/mysqlclient/issues/644">#644</a>)</li> <li>Additional commits viewable in <a href="https://github.com/PyMySQL/mysqlclient/compare/MySQLdb-0.3.3...v2.2.1">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR 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> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 11:09:25 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/modoboa-postfix-autoreply-modoboa#113
No description provided.