dependabot[bot] opened a new pull request, #2754:
URL: https://github.com/apache/tinkerpop/pull/2754

   Bumps [yarl](https://github.com/aio-libs/yarl) from 1.9.4 to 1.9.7.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/aio-libs/yarl/releases";>yarl's releases</a>.</em></p>
   <blockquote>
   <h2>1.9.7</h2>
   <h2>Removals and backward incompatible breaking changes</h2>
   <ul>
   <li>
   <p>Removed support :rfc:<code>3986#section-3.2.3</code> port normalization 
when the scheme is not one of <code>http</code>, <code>https</code>, 
<code>wss</code>, or <code>ws</code> -- by :user:<code>bdraco</code>.</p>
   <p>Support for port normalization was recently added in <a 
href="https://redirect.github.com/aio-libs/yarl/issues/1033";>#1033</a> and 
contained code that would do blocking I/O if the scheme was not one of the four 
listed above. The code has been removed because this library is intended to be 
safe for usage with <code>asyncio</code>.</p>
   <p><em>Related issues and pull requests on GitHub:</em>
   <a 
href="https://redirect.github.com/aio-libs/yarl/issues/1076";>#1076</a>.</p>
   </li>
   </ul>
   <h2>Miscellaneous internal changes</h2>
   <ul>
   <li>
   <p>Improved performance of property caching -- by 
:user:<code>bdraco</code>.</p>
   <p>The <code>reify</code> implementation from <code>aiohttp</code> was 
adapted to replace the internal <code>cached_property</code> implementation.</p>
   <p><em>Related issues and pull requests on GitHub:</em>
   <a 
href="https://redirect.github.com/aio-libs/yarl/issues/1070";>#1070</a>.</p>
   </li>
   </ul>
   <hr />
   <h2>1.9.6</h2>
   <h2>Bug fixes</h2>
   <ul>
   <li>
   <p>Reverted :rfc:<code>3986</code> compatible :meth:<code>URL.join() 
&lt;yarl.URL.join&gt;</code> honoring empty segments which was introduced in <a 
href="https://redirect.github.com/aio-libs/yarl/issues/1039";>#1039</a>.</p>
   <p>This change introduced a regression handling query string parameters with 
joined URLs. The change was reverted to maintain compatibility with the 
previous behavior.</p>
   <p><em>Related issues and pull requests on GitHub:</em>
   <a 
href="https://redirect.github.com/aio-libs/yarl/issues/1067";>#1067</a>.</p>
   </li>
   </ul>
   <hr />
   <h2>1.9.5</h2>
   <h2>Bug fixes</h2>
   <ul>
   <li>
   <p>Joining URLs with empty segments has been changed
   to match :rfc:<code>3986</code>.</p>
   <p>Previously empty segments would be removed from path,
   breaking use-cases such as</p>
   <p>.. code-block:: python</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/aio-libs/yarl/blob/master/CHANGES.rst";>yarl's 
changelog</a>.</em></p>
   <blockquote>
   <h1>1.9.7</h1>
   <p><em>(2024-09-01)</em></p>
   <h2>Removals and backward incompatible breaking changes</h2>
   <ul>
   <li>
   <p>Removed support :rfc:<code>3986#section-3.2.3</code> port normalization 
when the scheme is not one of <code>http</code>, <code>https</code>, 
<code>wss</code>, or <code>ws</code> -- by :user:<code>bdraco</code>.</p>
   <p>Support for port normalization was recently added in 
:issue:<code>1033</code> and contained code that would do blocking I/O if the 
scheme was not one of the four listed above. The code has been removed because 
this library is intended to be safe for usage with 
:mod:<code>asyncio</code>.</p>
   <p><em>Related issues and pull requests on GitHub:</em>
   :issue:<code>1076</code>.</p>
   </li>
   </ul>
   <h2>Miscellaneous internal changes</h2>
   <ul>
   <li>
   <p>Improved performance of property caching -- by 
:user:<code>bdraco</code>.</p>
   <p>The <code>reify</code> implementation from <code>aiohttp</code> was 
adapted to replace the internal <code>cached_property</code> implementation.</p>
   <p><em>Related issues and pull requests on GitHub:</em>
   :issue:<code>1070</code>.</p>
   </li>
   </ul>
   <hr />
   <h1>1.9.6</h1>
   <p><em>(2024-08-30)</em></p>
   <h2>Bug fixes</h2>
   <ul>
   <li>
   <p>Reverted :rfc:<code>3986</code> compatible :meth:<code>URL.join() 
&lt;yarl.URL.join&gt;</code> honoring empty segments which was introduced in 
:issue:<code>1039</code>.</p>
   <p>This change introduced a regression handling query string parameters with 
joined URLs. The change was reverted to maintain compatibility with the 
previous behavior.</p>
   <p><em>Related issues and pull requests on GitHub:</em>
   :issue:<code>1067</code>.</p>
   </li>
   </ul>
   <hr />
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/845f017dc525151e2a02a0bc2e855d68d761d25a";><code>845f017</code></a>
 Release 1.9.7</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/7c1220bc0930afbfe52021d47b83a3ea9995df60";><code>7c1220b</code></a>
 Remove fallback to getservbyname in _get_default_port (<a 
href="https://redirect.github.com/aio-libs/yarl/issues/1076";>#1076</a>)</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/6339581f4fb2ad5d6d8a06470d7b09c69da0e8ef";><code>6339581</code></a>
 Adapt aiohttp reify implementation to replace internal cached_property (<a 
href="https://redirect.github.com/aio-libs/yarl/issues/1070";>#1070</a>)</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/2a3235ebd5c33c7ce8ea4de76e47d489a1be8d60";><code>2a3235e</code></a>
 Add additional coverage for joining urls (<a 
href="https://redirect.github.com/aio-libs/yarl/issues/1066";>#1066</a>)</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/94b6b518195adac8da9275e36535bea6a9be9aad";><code>94b6b51</code></a>
 🧪🚑 Fix coverage.py-included paths @ XML (<a 
href="https://redirect.github.com/aio-libs/yarl/issues/1074";>#1074</a>)</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/3d5ce652b5aab6cf3c5e1b42727420db1cd31298";><code>3d5ce65</code></a>
 🧪 Bump MyPy to v1.11.2</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/8aa3733b5cdda8658c1d30cdd627f577663a71ee";><code>8aa3733</code></a>
 🧪 Add a MyPy run against Python 3.13 code paths</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/cbf0b9ee12105cb15e02b012f2af1a699b7b2048";><code>cbf0b9e</code></a>
 🧪💅 Lower-case bools in MyPy config</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/b253381a87517a2cd78ffa56b8e539ce27478492";><code>b253381</code></a>
 🧪 Drop leftover MyPy checked paths from config</li>
   <li><a 
href="https://github.com/aio-libs/yarl/commit/a7f80077d2da94c2ddc597cc2afbdde4246931dd";><code>a7f8007</code></a>
 🧪 Stop auto-installing MyPy type stubs</li>
   <li>Additional commits viewable in <a 
href="https://github.com/aio-libs/yarl/compare/v1.9.4...v1.9.7";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=yarl&package-manager=pip&previous-version=1.9.4&new-version=1.9.7)](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>


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

Reply via email to