dependabot[bot] opened a new pull request, #15031: URL: https://github.com/apache/lucene/pull/15031
Bumps [pygithub](https://github.com/pygithub/pygithub) from 2.6.1 to 2.7.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pygithub/pygithub/releases">pygithub's releases</a>.</em></p> <blockquote> <h2>v2.7.0</h2> <h2>What's Changed</h2> <h3>Breaking Changes</h3> <ul> <li>Method <code>Github.get_rate_limit()</code> now returns <code>RateLimitOverview</code> rather than <code>RateLimit</code> (<a href="https://redirect.github.com/PyGithub/PyGithub/pull/3205">PyGithub/PyGithub#3205</a>).</li> </ul> <p>Code like</p> <pre lang="python"><code>gh.get_rate_limit().core.remaining </code></pre> <p>should be replaced with</p> <pre lang="python"><code>gh.get_rate_limit().resources.core.remaining </code></pre> <ul> <li>Method <code>GitTag.verification</code> now returns <code>GitCommitVerification</code> rather than <code>dict[str, Any]</code> (<a href="https://redirect.github.com/PyGithub/PyGithub/pull/3226">PyGithub/PyGithub#3226</a>).</li> </ul> <p>Code like</p> <pre lang="python"><code>tag.verification["reason"] tag.verification.get("reason") </code></pre> <p>should be replaced with</p> <pre lang="python"><code>tag.verification.reason </code></pre> <h3>New Features</h3> <ul> <li>Add getting list of self-hosted runners of organization by <a href="https://github.com/climbfuji"><code>@climbfuji</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3190">PyGithub/PyGithub#3190</a></li> <li>Apply OpenAPI spec by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3317">PyGithub/PyGithub#3317</a></li> <li>Add support for Sub-Issues by <a href="https://github.com/e7217"><code>@e7217</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3258">PyGithub/PyGithub#3258</a></li> </ul> <h3>Improvement</h3> <ul> <li>Refactor search results into separate classes by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3204">PyGithub/PyGithub#3204</a></li> <li>Add <code>OrganizationInvitation</code> by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3207">PyGithub/PyGithub#3207</a></li> <li>Add and apply missing schemas by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3209">PyGithub/PyGithub#3209</a></li> <li>Sync <code>RepositoryAdvisory</code> tests with OpenAPI spec by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3215">PyGithub/PyGithub#3215</a></li> <li>Sync <code>ProjectColumn</code> and <code>ProjectCard</code> tests with OpenAPI spec by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3216">PyGithub/PyGithub#3216</a></li> <li>Sync <code>CopilotSeat</code> class with API spec by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3232">PyGithub/PyGithub#3232</a></li> <li>Sync <code>HookDeliverySummary</code> class with API spec by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3233">PyGithub/PyGithub#3233</a></li> <li>Sync <code>RequiredPullRequestReviews</code> class with API spec by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3234">PyGithub/PyGithub#3234</a></li> <li>Sync <code>RequiredStatusChecks</code> class with API spec by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3236">PyGithub/PyGithub#3236</a></li> <li>Sync <code>Team</code> class with API spec by <a href="https://github.com/EnricoMi"><code>@EnricoMi</code></a> in <a href="https://redirect.github.com/PyGithub/PyGithub/pull/3237">PyGithub/PyGithub#3237</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PyGithub/PyGithub/blob/main/doc/changes.rst">pygithub's changelog</a>.</em></p> <blockquote> <h2>Version 2.7.0 (July 31, 2025)</h2> <p>Breaking Changes ^^^^^^^^^^^^^^^^</p> <ul> <li> <p>Method <code>Github.get_rate_limit()</code> now returns <code>RateLimitOverview</code> rather than <code>RateLimit</code> (<code>[#3205](https://github.com/pygithub/pygithub/issues/3205) <https://github.com/PyGithub/PyGithub/pull/3205></code><em>) (<code>56ee057a <https://github.com/PyGithub/PyGithub/commit/56ee057a></code></em>).</p> <p>Code like</p> <p>.. code-block:: python</p> <p>gh.get_rate_limit().core.remaining</p> <p>should be replaced with</p> <p>.. code-block:: python</p> <p>gh.get_rate_limit().resources.core.remaining</p> </li> <li> <p>Method <code>GitTag.verification</code> now returns <code>GitCommitVerification</code> rather than <code>dict[str, Any]</code> (<code>[#3226](https://github.com/pygithub/pygithub/issues/3226) <https://github.com/PyGithub/PyGithub/pull/3226></code><em>) (<code>850932cc <https://github.com/PyGithub/PyGithub/commit/850932cc></code></em>).</p> <p>Code like</p> <p>.. code-block:: python</p> <p>tag.verification["reason"] tag.verification.get("reason")</p> <p>should be replaced with</p> <p>.. code-block:: python</p> <p>tag.verification.reason</p> </li> </ul> <p>Deprecations ^^^^^^^^^^^^</p> <ul> <li>Methods <code>dismissal_users</code> and <code>dismissal_teams</code> of <code>RequiredPullRequestReviews</code> are deprecated, use <code>dismissal_restrictions.users</code> and <code>dismissal_restrictions.teams</code> instead.</li> </ul> <p>New Features ^^^^^^^^^^^^</p> <ul> <li>Add getting list of self-hosted runners of organization (<code>[#3190](https://github.com/pygithub/pygithub/issues/3190) <https://github.com/PyGithub/PyGithub/pull/3190></code><em>) (<code>b4092b5d <https://github.com/PyGithub/PyGithub/commit/b4092b5d></code></em>)</li> <li>Apply OpenAPI spec (<code>[#3317](https://github.com/pygithub/pygithub/issues/3317) <https://github.com/PyGithub/PyGithub/pull/3317></code><em>) (<code>858b9e5b <https://github.com/PyGithub/PyGithub/commit/858b9e5b></code></em>)</li> <li>Add support for Sub-Issues (<code>[#3258](https://github.com/pygithub/pygithub/issues/3258) <https://github.com/PyGithub/PyGithub/pull/3258></code><em>) (<code>c7858c85 <https://github.com/PyGithub/PyGithub/commit/c7858c85></code></em>)</li> </ul> <p>Improvement ^^^^^^^^^^^</p> <ul> <li>Refactor search results into separate classes (<code>[#3204](https://github.com/pygithub/pygithub/issues/3204) <https://github.com/PyGithub/PyGithub/pull/3204></code><em>) (<code>938f80b1 <https://github.com/PyGithub/PyGithub/commit/938f80b1></code></em>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyGithub/PyGithub/commit/bccc5aa1b02dc2135196c993e795bcb7795d9c72"><code>bccc5aa</code></a> Release 2.7.0 (<a href="https://redirect.github.com/pygithub/pygithub/issues/3323">#3323</a>)</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/cb4281510da5a9c924b916ec6b50edc52b1fae34"><code>cb42815</code></a> Add <code>delete_self_hosted_runner</code> to <code>Organization</code> (<a href="https://redirect.github.com/pygithub/pygithub/issues/3306">#3306</a>)</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/01196d67452e726a1ef6a26312e50e428b6a705d"><code>01196d6</code></a> Normalize App ID to String & Enhance JWT Issuer Verification (<a href="https://redirect.github.com/pygithub/pygithub/issues/3272">#3272</a>)</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/c7858c85a1f1912e668f60f0f8de6ab2e75220bc"><code>c7858c8</code></a> Add support for Sub-Issues (<a href="https://redirect.github.com/pygithub/pygithub/issues/3258">#3258</a>)</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/131949b3c12a89534874526bb812acdcd75c9db7"><code>131949b</code></a> Make <code>TimingData.run_duration_ms</code> optional (<a href="https://redirect.github.com/pygithub/pygithub/issues/3268">#3268</a>)</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/0378cceedd9cd6f16514d7e1117d1b15d9e32824"><code>0378cce</code></a> Fix side-effect when removing Authorization key from headers (<a href="https://redirect.github.com/pygithub/pygithub/issues/3313">#3313</a>)</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/da73fc8ac3d73341c971f881c773275ad19ba2ee"><code>da73fc8</code></a> Fix url encoding of strings with slashes in URLs (<a href="https://redirect.github.com/pygithub/pygithub/issues/3263">#3263</a>)</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/f51a3f487e2e6493a29101a29908d8805fddc674"><code>f51a3f4</code></a> Adds <code>multi_select</code> and <code>true_false</code> options to <code>CustomProperty.value_type</code> (...</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/e7110bf41038ba0433bc04a048c73a8ecd26a32f"><code>e7110bf</code></a> Relax 404 condition in <code>Requester</code> exception handling (<a href="https://redirect.github.com/pygithub/pygithub/issues/3299">#3299</a>)</li> <li><a href="https://github.com/PyGithub/PyGithub/commit/95f015c8b46e62a853051ae98c1bff843765aa1f"><code>95f015c</code></a> Support built-in <code>reversed()</code> on <code>PaginatedList</code> (<a href="https://redirect.github.com/pygithub/pygithub/issues/3260">#3260</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pygithub/pygithub/compare/v2.6.1...v2.7.0">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 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: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org