[PR #2123] [CLOSED] Bump greenlet from 0.4.17 to 1.0.0 #2458

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

📋 Pull Request Information

Original PR: https://github.com/modoboa/modoboa/pull/2123
Author: @dependabot[bot]
Created: 1/14/2021
Status: Closed

Base: masterHead: dependabot/pip/greenlet-1.0.0


📝 Commits (1)

  • 4034167 Bump greenlet from 0.4.17 to 1.0.0

📊 Changes

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

View changed files

📝 requirements.txt (+1 -1)

📄 Description

Bumps greenlet from 0.4.17 to 1.0.0.

Changelog

Sourced from greenlet's changelog.

1.0.0 (2021-01-13)

  • Fix %s and %r formatting of a greenlet on Python 2. Previously it would result in a Unicode string instead of a native string. See issue 218 <https://github.com/python-greenlet/greenlet/issues/218>_.

  • Move continuous integration from Travis CI to Github Actions.

1.0a1 (2020-11-20)

  • Add the ability to set a greenlet's PEP 567 contextvars context directly, by assigning to the greenlet's gr_context attribute. This restores support for some patterns of using greenlets atop an async environment that became more challenging in 0.4.17. Thanks to Joshua Oreman, Mike bayer, and Fantix King, among others. See PR 198 <https://github.com/python-greenlet/greenlet/pull/198/>_.

  • The repr of greenlet objects now includes extra information about its state. This is purely informative and the details are subject to change. See issue 215 <https://github.com/python-greenlet/greenlet/issues/215>_.

  • The greenlet module is now a package. There are no API changes, so all existing imports, including from C code, should continue to work.

  • (C API) The undocumented GREENLET_VERSION macro that defined a string giving the greenlet version is now deprecated and will not be updated.

  • (Documentation) Publish the change log to https://greenlet.readthedocs.io

Supported Platforms

  • Drop support for Python 2.4, 2.5, 2.6, 3.0, 3.1, 3.2 and 3.4. The project metadata now includes the python_requires data to help installation tools understand supported versions.
  • Add partial support for AIX ppc64 and IBM i. Thanks to Jesse Gorzinski and Kevin Adler. See PR 197 <https://github.com/python-greenlet/greenlet/pull/197>_.

Packaging Changes

  • Require setuptools to build from source.
  • Stop asking setuptools to build both .tar.gz and .zip sdists. PyPI has standardized on .tar.gz for all platforms.

... (truncated)

Commits
  • c0e1626 Preparing release 1.0.0
  • 951b207 Merge pull request #228 from python-greenlet/github-actions
  • fa764ab Move to GitHub actions and away from Travis.
  • 28802e8 Merge pull request #226 from guillaumep/patch-1
  • 00dc6eb Fix typo
  • cdd0623 Merge pull request #221 from skoslowski/patch-1
  • 58a990a Correct Context Vars PEP citation
  • f005b37 Merge pull request #219 from python-greenlet/issue218
  • 9ed87d5 Use PyString_FromString in tp_repr on Py2.
  • d4bd918 Tweak CHANGES.rst [skip ci]
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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 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)

🔄 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/pull/2123 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/14/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/pip/greenlet-1.0.0` --- ### 📝 Commits (1) - [`4034167`](https://github.com/modoboa/modoboa/commit/4034167056567f1b5a59f1c1e0e89a7ffa376353) Bump greenlet from 0.4.17 to 1.0.0 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `requirements.txt` (+1 -1) </details> ### 📄 Description Bumps [greenlet](https://github.com/python-greenlet/greenlet) from 0.4.17 to 1.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python-greenlet/greenlet/blob/master/CHANGES.rst">greenlet's changelog</a>.</em></p> <blockquote> <h1>1.0.0 (2021-01-13)</h1> <ul> <li> <p>Fix %s and %r formatting of a greenlet on Python 2. Previously it would result in a Unicode string instead of a native string. See <code>issue 218 &lt;https://github.com/python-greenlet/greenlet/issues/218&gt;</code>_.</p> </li> <li> <p>Move continuous integration from Travis CI to Github Actions.</p> </li> </ul> <h1>1.0a1 (2020-11-20)</h1> <ul> <li> <p>Add the ability to set a greenlet's PEP 567 contextvars context directly, by assigning to the greenlet's <code>gr_context</code> attribute. This restores support for some patterns of using greenlets atop an async environment that became more challenging in 0.4.17. Thanks to Joshua Oreman, Mike bayer, and Fantix King, among others. See <code>PR 198 &lt;https://github.com/python-greenlet/greenlet/pull/198/&gt;</code>_.</p> </li> <li> <p>The repr of greenlet objects now includes extra information about its state. This is purely informative and the details are subject to change. See <code>issue 215 &lt;https://github.com/python-greenlet/greenlet/issues/215&gt;</code>_.</p> </li> <li> <p>The <code>greenlet</code> module is now a package. There are no API changes, so all existing imports, including from C code, should continue to work.</p> </li> <li> <p>(C API) The undocumented <code>GREENLET_VERSION</code> macro that defined a string giving the greenlet version is now deprecated and will not be updated.</p> </li> <li> <p>(Documentation) Publish the change log to <a href="https://greenlet.readthedocs.io">https://greenlet.readthedocs.io</a></p> </li> </ul> <h2>Supported Platforms</h2> <ul> <li>Drop support for Python 2.4, 2.5, 2.6, 3.0, 3.1, 3.2 and 3.4. The project metadata now includes the <code>python_requires</code> data to help installation tools understand supported versions.</li> <li>Add partial support for AIX ppc64 and IBM i. Thanks to Jesse Gorzinski and Kevin Adler. See <code>PR 197 &lt;https://github.com/python-greenlet/greenlet/pull/197&gt;</code>_.</li> </ul> <h2>Packaging Changes</h2> <ul> <li>Require setuptools to build from source.</li> <li>Stop asking setuptools to build both .tar.gz and .zip sdists. PyPI has standardized on .tar.gz for all platforms.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python-greenlet/greenlet/commit/c0e16261293cb401b643290adbb2d824c7200388"><code>c0e1626</code></a> Preparing release 1.0.0</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/951b2076acc757e93c16dbfd465292485b8f116d"><code>951b207</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/python-greenlet/greenlet/issues/228">#228</a> from python-greenlet/github-actions</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/fa764abe680a0a0aee138a75dabfa4e147cc9ce2"><code>fa764ab</code></a> Move to GitHub actions and away from Travis.</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/28802e8e40e5b9aa3b29d5a4c2611d7bb5e0a6e3"><code>28802e8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/python-greenlet/greenlet/issues/226">#226</a> from guillaumep/patch-1</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/00dc6ebdaa8833d447590ea3b8717fbb4853ce15"><code>00dc6eb</code></a> Fix typo</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/cdd06239a69cd785c4f62c399689056ff806efaf"><code>cdd0623</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/python-greenlet/greenlet/issues/221">#221</a> from skoslowski/patch-1</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/58a990acc27edbc972daa00c1a01d000b1acd7e1"><code>58a990a</code></a> Correct Context Vars PEP citation</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/f005b37e7ac32c617d279e4a692bba768d4ab358"><code>f005b37</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/python-greenlet/greenlet/issues/219">#219</a> from python-greenlet/issue218</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/9ed87d556f2a67c66027dfcf2acde2c690c20e62"><code>9ed87d5</code></a> Use PyString_FromString in tp_repr on Py2.</li> <li><a href="https://github.com/python-greenlet/greenlet/commit/d4bd91852f7062aa0bb92b58b37d4173712f4226"><code>d4bd918</code></a> Tweak CHANGES.rst [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/python-greenlet/greenlet/compare/0.4.17...1.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=greenlet&package-manager=pip&previous-version=0.4.17&new-version=1.0.0)](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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 12:11:08 +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-modoboa#2458
No description provided.