dependabot[bot] opened a new pull request, #2082:
URL: https://github.com/apache/incubator-pegasus/pull/2082

   Bumps [twisted](https://github.com/twisted/twisted) from 21.2.0 to 24.3.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/twisted/twisted/releases";>twisted's 
releases</a>.</em></p>
   <blockquote>
   <h1>Twisted 24.3.0 (2024-03-01)</h1>
   <p>This release supports PyPy v7.3.14.</p>
   <h2>Bugfixes</h2>
   <ul>
   <li>twisted.logger.formatEvent now honors dotted method names, not just
   flat function names, in format strings, as it has long been
   explicitly documented to do. So, you will now get the expected
   result from [formatEvent(&quot;here's the result of calling a method at
   log-format time: {obj.method()}&quot;, obj=...)]{.title-ref} (<a 
href="https://redirect.github.com/twisted/twisted/issues/9347";>#9347</a>)</li>
   <li>twisted.web.http.HTTPChannel now ignores the trailer headers
   provided in the last chunk of a chunked encoded response, rather
   than raising an exception. (<a 
href="https://redirect.github.com/twisted/twisted/issues/11997";>#11997</a>)</li>
   <li>twisted.protocols.tls.BufferingTLSTransport, used by default by
   twisted.protocols.tls.TLSMemoryBIOFactory, was refactored for
   improved performance when doing a high number of small writes.
   (<a 
href="https://redirect.github.com/twisted/twisted/issues/12011";>#12011</a>)</li>
   <li>twisted.python.failure.Failure now throws exception for generators
   without triggering a deprecation warnings on Python 3.12. (<a 
href="https://redirect.github.com/twisted/twisted/issues/12026";>#12026</a>)</li>
   <li>twisted.internet.process.Process, used by 
<code>reactor.spawnProcess</code>,
   now copies the parent environment when the [env=None]{.title-ref}
   argument is passed on Posix systems and <code>os.posix_spawnp</code> is used
   internally. (<a 
href="https://redirect.github.com/twisted/twisted/issues/12068";>#12068</a>)</li>
   <li>twisted.internet.defer.inlineCallbacks.returnValue's stack
   introspection was adjusted for the latest PyPy 7.3.14 release,
   allowing legacy <a 
href="https://github.com/inlineCallbacks";><code>@​inlineCallbacks</code></a> to 
run on new PyPY versions.
   (<a 
href="https://redirect.github.com/twisted/twisted/issues/12084";>#12084</a>)</li>
   </ul>
   <h2>Deprecations and Removals</h2>
   <ul>
   <li>twisted.trial.reporter.TestRun.startTest() is no longer called for
   tests with skip annotation or skip attribute for Python 3.12.1 or
   newer. This is the result of upstream Python <a 
href="https://redirect.github.com/twisted/twisted/issues/106584";>gh-106584</a> 
change. The
   behavior is not change in 3.12.0 or older. (<a 
href="https://redirect.github.com/twisted/twisted/issues/12052";>#12052</a>)</li>
   </ul>
   <h2>Misc</h2>
   <ul>
   <li><a 
href="https://redirect.github.com/twisted/twisted/issues/11902";>#11902</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12018";>#12018</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12023";>#12023</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12031";>#12031</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12032";>#12032</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12052";>#12052</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12056";>#12056</a>,
   <a 
href="https://redirect.github.com/twisted/twisted/issues/12067";>#12067</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12076";>#12076</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12078";>#12078</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12087";>#12087</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12095";>#12095</a></li>
   </ul>
   <h2>Conch</h2>
   <p>No significant changes.</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/twisted/twisted/blob/trunk/NEWS.rst";>twisted's 
changelog</a>.</em></p>
   <blockquote>
   <h1>Twisted 24.3.0 (2024-03-01)</h1>
   <p>This release supports PyPy v7.3.14.</p>
   <h2>Bugfixes</h2>
   <ul>
   <li>twisted.logger.formatEvent now honors dotted method names, not just flat
   function names, in format strings, as it has long been explicitly documented 
to
   do.  So, you will now get the expected result from 
<code>formatEvent(&quot;here's the result of calling a method at log-format 
time: {obj.method()}&quot;, obj=...)</code> (<a 
href="https://redirect.github.com/twisted/twisted/issues/9347";>#9347</a>)</li>
   <li>twisted.web.http.HTTPChannel now ignores the trailer headers provided in 
the last chunk of a chunked encoded response, rather than raising an exception. 
(<a 
href="https://redirect.github.com/twisted/twisted/issues/11997";>#11997</a>)</li>
   <li>twisted.protocols.tls.BufferingTLSTransport, used by default by 
twisted.protocols.tls.TLSMemoryBIOFactory, was refactored for improved 
performance when doing a high number of small writes. (<a 
href="https://redirect.github.com/twisted/twisted/issues/12011";>#12011</a>)</li>
   <li>twisted.python.failure.Failure now throws exception for generators 
without triggering a deprecation warnings on Python 3.12. (<a 
href="https://redirect.github.com/twisted/twisted/issues/12026";>#12026</a>)</li>
   <li>twisted.internet.process.Process, used by 
<code>reactor.spawnProcess</code>, now copies the parent environment when the 
<code>env=None</code> argument is passed on Posix systems and 
<code>os.posix_spawnp</code> is used internally. (<a 
href="https://redirect.github.com/twisted/twisted/issues/12068";>#12068</a>)</li>
   <li>twisted.internet.defer.inlineCallbacks.returnValue's stack introspection 
was adjusted for the latest PyPy 7.3.14 release, allowing legacy <a 
href="https://github.com/inlineCallbacks";><code>@​inlineCallbacks</code></a> to 
run on new PyPY versions. (<a 
href="https://redirect.github.com/twisted/twisted/issues/12084";>#12084</a>)</li>
   </ul>
   <h2>Deprecations and Removals</h2>
   <ul>
   <li>twisted.trial.reporter.TestRun.startTest() is no longer called for tests
   with skip annotation or skip attribute for Python 3.12.1 or newer.
   This is the result of upstream Python <a 
href="https://redirect.github.com/twisted/twisted/issues/106584";>gh-106584</a> 
change.
   The behavior is not change in 3.12.0 or older. (<a 
href="https://redirect.github.com/twisted/twisted/issues/12052";>#12052</a>)</li>
   </ul>
   <h2>Misc</h2>
   <ul>
   <li><a 
href="https://redirect.github.com/twisted/twisted/issues/11902";>#11902</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12018";>#12018</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12023";>#12023</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12031";>#12031</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12032";>#12032</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12052";>#12052</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12056";>#12056</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12067";>#12067</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12076";>#12076</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12078";>#12078</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12087";>#12087</a>, <a 
href="https://redirect.github.com/twisted/twisted/issues/12095";>#12095</a></li>
   </ul>
   <h2>Conch</h2>
   <p>No significant changes.</p>
   <h2>Web</h2>
   <p>Bugfixes</p>
   <pre><code>
   - The documentation for twisted.web.client.CookieAgent no longer references
     long-deprecated ``cookielib`` and ``urllib2`` standard library modules. 
([#12044](https://github.com/twisted/twisted/issues/12044))
   <p>&lt;/tr&gt;&lt;/table&gt;
   </code></pre></p>
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/twisted/twisted/commit/2e59e1fb322bc4b20009443f2252ecc6d7c79f80";><code>2e59e1f</code></a>
 Merge remote-tracking branch 'origin/release-24.2.0-12097' into 
release-24.2....</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/64a18eb6d8a71de2dafe6212482a680a12397e0b";><code>64a18eb</code></a>
 Prep for final release.</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/c33d114c83cc283376650defda0e253053c87ef3";><code>c33d114</code></a>
 Update NEWS.rst</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/d7c9b3d886d0f99fe86df2f8bfc9080063ab4b08";><code>d7c9b3d</code></a>
 Clarify and fix docs.</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/4ed1a5b8ad9aaa1e3c5adb13076a2d79ec4279f1";><code>4ed1a5b</code></a>
 Update copyright year.</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/a2ba6eb33011e75102f35a630cd594e0bab403c4";><code>a2ba6eb</code></a>
 Changelog for 24.2.0.</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/f2f1bc5d544efef89139a6a264d39ce0598e3b68";><code>f2f1bc5</code></a>
 New pre-release.</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/446ee139189440e890b26a29af256e9b9d0e8eba";><code>446ee13</code></a>
 Fix chat.py example (<a 
href="https://redirect.github.com/twisted/twisted/issues/12070";>#12070</a>)</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/d05599b21ad3ab3185ca73aa465be0d8dd79a98b";><code>d05599b</code></a>
 Merge branch 'trunk' into fix-chat-example</li>
   <li><a 
href="https://github.com/twisted/twisted/commit/234f3788b60f21ccdc51e7b865d244b9343877bf";><code>234f378</code></a>
 <a href="https://redirect.github.com/twisted/twisted/issues/11902";>#11902</a> 
- Fix type for twisted.web.server.Request.defaultContentType (<a 
href="https://redirect.github.com/twisted/twisted/issues/12101";>#12101</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/twisted/twisted/compare/twisted-21.2.0...twisted-24.3.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=twisted&package-manager=pip&previous-version=21.2.0&new-version=24.3.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 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)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/incubator-pegasus/network/alerts).
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to