Skip to content

More lazy objects#3403

Merged
EnricoMi merged 16 commits intomainfrom
more-lazy-objects
Nov 16, 2025
Merged

More lazy objects#3403
EnricoMi merged 16 commits intomainfrom
more-lazy-objects

Conversation

@EnricoMi
Copy link
Copy Markdown
Collaborator

@EnricoMi EnricoMi commented Nov 4, 2025

These GithubObjects can be retrieved lazily with Github(…, lazy=True):

  • AuthenticatedUser
  • CheckRun
  • CheckSuite
  • Commit
  • CommitComment
  • Deployment
  • Download
  • Environment
  • Gist
  • GistComment
  • GitRef
  • GitRelease
  • GitReleaseAsset
  • Hook
  • Issue
  • IssueComment
  • Label
  • Milestone
  • NamedUser
  • Organization
  • OrganizationSecret
  • OrganizationVariable
  • Project
  • PullRequest
  • PullRequestComment
  • Repository
  • RepositoryKey
  • Secret
  • Team
  • Variable
  • Workflow
  • WorkflowRun

@EnricoMi EnricoMi added this to the Version 2.9.0 milestone Nov 4, 2025
@github-actions
Copy link
Copy Markdown

github-actions bot commented Nov 4, 2025

Test Results

     7 files  ±  0       7 suites  ±0   2m 31s ⏱️ -9s
 1 065 tests + 34   1 065 ✅ + 34  0 💤 ±0  0 ❌ ±0 
11 760 runs  +238  11 759 ✅ +238  1 💤 ±0  0 ❌ ±0 

Results for commit 32a0e5b. ± Comparison against base commit c92f555.

♻️ This comment has been updated with latest results.

@EnricoMi EnricoMi merged commit e79d9bc into main Nov 16, 2025
24 checks passed
@EnricoMi EnricoMi deleted the more-lazy-objects branch November 16, 2025 17:15
github-merge-queue bot pushed a commit to RimSort/RimSort that referenced this pull request Mar 23, 2026
Bumps [pygithub](https://github.com/pygithub/pygithub) from 2.8.1 to
2.9.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.9.0</h2>
<h3>Notable changes</h3>
<h4>Lazy PyGithub objects</h4>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0. This release now makes all
<code>CompletableGithubObject</code>s optionally lazy (if useful). See
<a
href="https://redirect.github.com/PyGithub/PyGithub/pull/3403">PyGithub/PyGithub#3403</a>
for a complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API. Only accessing methods and properties sends the
necessary requests to the GitHub API:</p>
<pre lang="python"><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful). This
is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<h4>PyGithub objects with a paginated property</h4>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination. Fetching subsequent pages of that property means fetching
the entire object (with all other properties) and the specified page of
the paginated property. Iterating over the paginated property means
fetching all other properties multiple times. Fortunately, the allowed
size of each page (<code>per_page</code> is usually 300, in contrast to
the &quot;usual&quot; <code>per_page</code> maximum of 100).</p>
<p>Objects with paginated properties:</p>
<ul>
<li>Commit.files</li>
<li>Comparison.commits</li>
<li>EnterpriseConsumedLicenses.users</li>
</ul>
<p>This PR makes iterating those paginated properties use the configured
<code>per_page</code> setting.</p>
<p>It further allows to specify an individual <code>per_page</code> when
either retrieving such objects, or fetching paginated properties.</p>
<p>See <a
href="https://pygithub.readthedocs.io/en/stable/utilities.html#utilities-classes-with-paginated-properties">Classes
with paginated properties</a> for details.</p>
<h4>Drop Python 3.8 support due to End-of-Life</h4>
<p>Python 3.8 reached its end-of-life September 6, 2024. Support has
been removed with this release.</p>
<!-- 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.9.0 (March 22, 2026)</h2>
<p>Notable changes
^^^^^^^^^^^^^^^</p>
<p>Lazy PyGithub objects

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0.
This release now makes all <code>CompletableGithubObject</code>\s
optionally lazy (if useful).
See <code>[#3403](PyGithub/PyGithub#3403)
&lt;https://github.com/PyGithub/PyGithub/pull/3403&gt;</code>_ for a
complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API.
Only accessing methods and properties sends the necessary requests to
the GitHub API:</p>
<p>.. code-block:: python</p>
<pre><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful).
This is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<p>PyGithub objects with a paginated property

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination.
Fetching subsequent pages of that property means fetching the entire
object (with all other properties)
and the specified page of the paginated property. Iterating over the
paginated property means fetching
all other properties multiple times. Fortunately, the allowed size of
each page (<code>per_page</code> is usually 300,
in contrast to the &quot;usual&quot; <code>per_page</code> maximum of
100).</p>
<p>Objects with paginated properties:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3a17ecf4a5a4dc873f2632470a712497b38eea88"><code>3a17ecf</code></a>
Release 2.9.0 (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3465">#3465</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/b1a9b7e2a37b515b141e01091b7c964ff883fe1e"><code>b1a9b7e</code></a>
Consider per-page settings when iterating paginated properties (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3377">#3377</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/24305f6d60869a849dadd0d271b4753ceac3658d"><code>24305f6</code></a>
Update test key pair (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3453">#3453</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/f2540db50423aa124beaeb8c7bfba7098a549c82"><code>f2540db</code></a>
Deprecate <code>Reaction.delete</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3435">#3435</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/19e1c5032397a95c58fe25760723ffc24cbe0ec8"><code>19e1c50</code></a>
Add <code>throw</code> option to <code>Workflow.create_dispatch</code>
to raise exceptions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/2966">#2966</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/646190988f3dd18e790969868b9ffe3c71acf254"><code>6461909</code></a>
Add Secret Scanning Alerts and Improve Code Scan Alerts (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3307">#3307</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/95648db4780e977b5bad8c19f669ec3f8c2b1a49"><code>95648db</code></a>
Add Python 3.14 to CI and tox (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3429">#3429</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3716bab10b7a99445ef50d698d6b2d681620ac88"><code>3716bab</code></a>
Use <code>GET</code> url or <code>_links.self</code> as object url (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3421">#3421</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/61dcf49d30d6854849ab745c501cab8856267bdb"><code>61dcf49</code></a>
Allow for enterprise base url prefixed with <code>api.</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3419">#3419</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/ae23d6075071bb85367d5f1a708774c971f85d00"><code>ae23d60</code></a>
Restrict PyPi release workflow permissions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3418">#3418</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pygithub/pygithub/compare/v2.8.1...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pygithub&package-manager=uv&previous-version=2.8.1&new-version=2.9.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 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>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
lettuce-bot bot added a commit to lettuce-financial/github-bot-signed-commit that referenced this pull request Mar 24, 2026
This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [PyGithub](https://redirect.github.com/pygithub/pygithub) | `==2.8.1`
→ `==2.9.0` |
![age](https://developer.mend.io/api/mc/badges/age/pypi/pygithub/2.9.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pygithub/2.8.1/2.9.0?slim=true)
|
| [pygithub](https://redirect.github.com/pygithub/pygithub) | `==2.8.1`
→ `==2.9.0` |
![age](https://developer.mend.io/api/mc/badges/age/pypi/pygithub/2.9.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pygithub/2.8.1/2.9.0?slim=true)
|

---

### Release Notes

<details>
<summary>pygithub/pygithub (PyGithub)</summary>

###
[`v2.9.0`](https://redirect.github.com/PyGithub/PyGithub/releases/tag/v2.9.0)

[Compare
Source](https://redirect.github.com/pygithub/pygithub/compare/v2.8.1...v2.9.0)

##### Notable changes

##### Lazy PyGithub objects

The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0. This release now makes all `CompletableGithubObject`s
optionally lazy (if useful). See
[PyGithub/PyGithub#3403](https://redirect.github.com/PyGithub/PyGithub/pull/3403)
for a complete list.

In lazy mode, getting a PyGithub object does not send a request to the
GitHub API. Only accessing methods and properties sends the necessary
requests to the GitHub API:

```python

# Use lazy mode
g = Github(auth=auth, lazy=True)

# these method calls do not send requests to the GitHub API
user = g.get_user("PyGithub")    # get the user
repo = user.get_repo("PyGithub") # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue()          # turn the pull request into an issue

# these method and property calls send requests to Github API
issue.create_reaction("rocket")  # create a reaction
created = repo.created_at        # get property of lazy object repo

# once a lazy object has been fetched, all properties are available (no more requests)
licence = repo.license
```

All PyGithub classes that implement `CompletableGithubObject` support
lazy mode (if useful). This is only useful for classes that have methods
creating, changing, or getting objects.

By default, PyGithub objects are not lazy.

##### PyGithub objects with a paginated property

The GitHub API has the "feature" of paginated properties. Some objects
returned by the API have a property that allows for pagination. Fetching
subsequent pages of that property means fetching the entire object (with
all other properties) and the specified page of the paginated property.
Iterating over the paginated property means fetching all other
properties multiple times. Fortunately, the allowed size of each page
(`per_page` is usually 300, in contrast to the "usual" `per_page`
maximum of 100).

Objects with paginated properties:

- Commit.files
- Comparison.commits
- EnterpriseConsumedLicenses.users

This PR makes iterating those paginated properties use the configured
`per_page` setting.

It further allows to specify an individual `per_page` when either
retrieving such objects, or fetching paginated properties.

See [Classes with paginated
properties](https://pygithub.readthedocs.io/en/stable/utilities.html#utilities-classes-with-paginated-properties)
for details.

##### Drop Python 3.8 support due to End-of-Life

Python 3.8 reached its end-of-life September 6, 2024. Support has been
removed with this release.

##### Deprecations

- Method `delete` of `Reaction` is deprecated, use
`IssueComment.delete_reaction`,
`PullRequestComment.delete_reaction`, `CommitComment.delete_reaction` or
`Issue.delete_reaction` instead.
- Method `Issue.assignee` and parameter `Issue.edit(assignee=…)` are
deprecated,
  use `Issue.assignees` and `Issue.edit(assignees=…)` instead.
- Method `Organization.edit_hook` is deprecated, use
`Organization.get_hook(id).edit(…)` instead.
If you need to avoid `Organization.get_hook(id)` to fetch the `Hook`
object from Github API,
  use a lazy Github instance:

```python
Github(…, lazy=True).get_organization(…).get_hook(id).edit(…)
```

- Methods `Team.add_to_members` and `Team.remove_from_members` are
deprecated,
  use `Team.add_membership` or `Team.remove_membership` instead.

##### New Features

- Consider per-page settings when iterating paginated properties by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3377](https://redirect.github.com/PyGithub/PyGithub/pull/3377)
- Add Secret Scanning Alerts and Improve Code Scan Alerts by
[@&#8203;matt-davis27](https://redirect.github.com/matt-davis27) in
[PyGithub/PyGithub#3307](https://redirect.github.com/PyGithub/PyGithub/pull/3307)

##### Improvements

- More lazy objects by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3403](https://redirect.github.com/PyGithub/PyGithub/pull/3403)
- Allow for enterprise base url prefixed with `api.` by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3419](https://redirect.github.com/PyGithub/PyGithub/pull/3419)
- Add `throw` option to `Workflow.create_dispatch` to raise exceptions
by [@&#8203;dblanchette](https://redirect.github.com/dblanchette) in
[PyGithub/PyGithub#2966](https://redirect.github.com/PyGithub/PyGithub/pull/2966)
- Use `GET` url or `_links.self` as object url by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3421](https://redirect.github.com/PyGithub/PyGithub/pull/3421)
- Add support for `type` parameter to get\_issues by
[@&#8203;nrysk](https://redirect.github.com/nrysk) in
[PyGithub/PyGithub#3381](https://redirect.github.com/PyGithub/PyGithub/pull/3381)
- Align implemented paths with OpenAPI spec by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3413](https://redirect.github.com/PyGithub/PyGithub/pull/3413)
- Add suggested OpenAPI schemas by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3411](https://redirect.github.com/PyGithub/PyGithub/pull/3411)
- Apply OpenAPI schemas by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3412](https://redirect.github.com/PyGithub/PyGithub/pull/3412)

##### Bug Fixes

- Fix `PaginatedList.totalCount` returning 0 with GitHub deprecation
notices by
[@&#8203;odedperezcodes](https://redirect.github.com/odedperezcodes) in
[PyGithub/PyGithub#3382](https://redirect.github.com/PyGithub/PyGithub/pull/3382)
- Use default type if known type is not supported by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3365](https://redirect.github.com/PyGithub/PyGithub/pull/3365)

##### Maintenance

- Deprecate `Reaction.delete` by
[@&#8203;iarspider](https://redirect.github.com/iarspider) in
[PyGithub/PyGithub#3435](https://redirect.github.com/PyGithub/PyGithub/pull/3435)
- Deprecate `Issue.assignee` by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3366](https://redirect.github.com/PyGithub/PyGithub/pull/3366)
- Deprecate `Orginization.edit_hook` by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3404](https://redirect.github.com/PyGithub/PyGithub/pull/3404)
- Deprecate `Team.add_to_members` and `Team.remove_from_members` by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3368](https://redirect.github.com/PyGithub/PyGithub/pull/3368)
- Various minor OpenAPI fixes by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3375](https://redirect.github.com/PyGithub/PyGithub/pull/3375)
- Update test key pair by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3453](https://redirect.github.com/PyGithub/PyGithub/pull/3453)
- Pin CI lint Python version to 3.13 by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3406](https://redirect.github.com/PyGithub/PyGithub/pull/3406)
- Improve error message on replay data mismatch by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3385](https://redirect.github.com/PyGithub/PyGithub/pull/3385)
and
[PyGithub/PyGithub#3386](https://redirect.github.com/PyGithub/PyGithub/pull/3386)
- Disable sleeps in tests by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3383](https://redirect.github.com/PyGithub/PyGithub/pull/3383)
- Update autodoc defaults by
[@&#8203;Aidan-McNay](https://redirect.github.com/Aidan-McNay) in
[PyGithub/PyGithub#3369](https://redirect.github.com/PyGithub/PyGithub/pull/3369)
- Add Python 3.14 to CI and tox by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3429](https://redirect.github.com/PyGithub/PyGithub/pull/3429)
- Restrict PyPi release workflow permissions by
[@&#8203;JLLeitschuh](https://redirect.github.com/JLLeitschuh) in
[PyGithub/PyGithub#3418](https://redirect.github.com/PyGithub/PyGithub/pull/3418)
- Fix OpenApi workflow by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3389](https://redirect.github.com/PyGithub/PyGithub/pull/3389)
- Bump codecov/codecov-action from 3 to 5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[PyGithub/PyGithub#3284](https://redirect.github.com/PyGithub/PyGithub/pull/3284)
- Bump actions/setup-python from 5 to 6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[PyGithub/PyGithub#3370](https://redirect.github.com/PyGithub/PyGithub/pull/3370)
- Bump dawidd6/action-download-artifact from 3.0.0 to 3.1.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[PyGithub/PyGithub#3282](https://redirect.github.com/PyGithub/PyGithub/pull/3282)
- Bump github/codeql-action from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[PyGithub/PyGithub#3391](https://redirect.github.com/PyGithub/PyGithub/pull/3391)
- Bump actions/upload-artifact from 4 to 5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[PyGithub/PyGithub#3394](https://redirect.github.com/PyGithub/PyGithub/pull/3394)
- Bump actions/download-artifact from 5 to 6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in
[PyGithub/PyGithub#3393](https://redirect.github.com/PyGithub/PyGithub/pull/3393)
- Drop Python 3.8 support due to EOL by
[@&#8203;hugovk](https://redirect.github.com/hugovk) in
[PyGithub/PyGithub#3191](https://redirect.github.com/PyGithub/PyGithub/pull/3191)
- Merge changelog updates from v2.8 release branch by
[@&#8203;EnricoMi](https://redirect.github.com/EnricoMi) in
[PyGithub/PyGithub#3367](https://redirect.github.com/PyGithub/PyGithub/pull/3367)

#### New Contributors

- [@&#8203;odedperezcodes](https://redirect.github.com/odedperezcodes)
made their first contribution in
[PyGithub/PyGithub#3382](https://redirect.github.com/PyGithub/PyGithub/pull/3382)
- [@&#8203;Aidan-McNay](https://redirect.github.com/Aidan-McNay) made
their first contribution in
[PyGithub/PyGithub#3369](https://redirect.github.com/PyGithub/PyGithub/pull/3369)
- [@&#8203;nrysk](https://redirect.github.com/nrysk) made their first
contribution in
[PyGithub/PyGithub#3381](https://redirect.github.com/PyGithub/PyGithub/pull/3381)
- [@&#8203;matt-davis27](https://redirect.github.com/matt-davis27) made
their first contribution in
[PyGithub/PyGithub#3307](https://redirect.github.com/PyGithub/PyGithub/pull/3307)

**Full Changelog**:
<PyGithub/PyGithub@v2.8.0...v2.9.0>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/lettuce-financial/github-bot-signed-commit).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42Ni40IiwidXBkYXRlZEluVmVyIjoiNDMuNjYuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
MaciejKaras pushed a commit to mongodb/mongodb-kubernetes that referenced this pull request Mar 24, 2026
Bumps the pip-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [botocore](https://github.com/boto/botocore) | `1.42.71` | `1.42.74` |
| [boto3](https://github.com/boto/boto3) | `1.42.71` | `1.42.74` |
| [pygithub](https://github.com/pygithub/pygithub) | `2.8.1` | `2.9.0` |
|
[types-python-dateutil](https://github.com/typeshed-internal/stub_uploader)
| `2.9.0.20260305` | `2.9.0.20260323` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `7.0.0` |
`7.1.0` |

Updates `botocore` from 1.42.71 to 1.42.74
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/boto/botocore/commit/b18efcc6ebea715d94a859fecbcf741b031e32ce"><code>b18efcc</code></a>
Merge branch 'release-1.42.74'</li>
<li><a
href="https://github.com/boto/botocore/commit/50819a74d591b07b730832c32e97833af40ef359"><code>50819a7</code></a>
Bumping version to 1.42.74</li>
<li><a
href="https://github.com/boto/botocore/commit/0e17209772e1901a1cfbc774e7938e606c12bfa5"><code>0e17209</code></a>
Update to latest models</li>
<li><a
href="https://github.com/boto/botocore/commit/08d494afd2133bdf09ef84b83aeb374389f236af"><code>08d494a</code></a>
Merge branch 'release-1.42.73'</li>
<li><a
href="https://github.com/boto/botocore/commit/6de5cea495cc53461a182a336936a16d04603878"><code>6de5cea</code></a>
Merge branch 'release-1.42.73' into develop</li>
<li><a
href="https://github.com/boto/botocore/commit/15967c3e9918a503e2b1a2da8e78b1a89ac465a7"><code>15967c3</code></a>
Bumping version to 1.42.73</li>
<li><a
href="https://github.com/boto/botocore/commit/cd4cb60a1cf2d16d742c61a6d06fb6d830bbff06"><code>cd4cb60</code></a>
Update endpoints model</li>
<li><a
href="https://github.com/boto/botocore/commit/81d0826a2c41888b76188438811a5a3c981a65e3"><code>81d0826</code></a>
Update to latest models</li>
<li><a
href="https://github.com/boto/botocore/commit/b2e20b2d4e6ee92b7f46bbad73a5a9a7abe18b28"><code>b2e20b2</code></a>
Fix aws-chunked Content-Length handling for non-seekable S3 uploads (<a
href="https://redirect.github.com/boto/botocore/issues/3652">#3652</a>)</li>
<li><a
href="https://github.com/boto/botocore/commit/9a8fcce967d9c49ba4ef4ca68cf78778aa05d80a"><code>9a8fcce</code></a>
Merge branch 'release-1.42.72'</li>
<li>Additional commits viewable in <a
href="https://github.com/boto/botocore/compare/1.42.71...1.42.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `boto3` from 1.42.71 to 1.42.74
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/boto/boto3/commit/efb76df8dc38a5bf5211094547ab7671760bf34f"><code>efb76df</code></a>
Merge branch 'release-1.42.74'</li>
<li><a
href="https://github.com/boto/boto3/commit/8d8ff13febb16f2539043581fb59568cee7463f8"><code>8d8ff13</code></a>
Bumping version to 1.42.74</li>
<li><a
href="https://github.com/boto/boto3/commit/56e766922154a5fd62349fe8c0211834728bdda8"><code>56e7669</code></a>
Add changelog entries from botocore</li>
<li><a
href="https://github.com/boto/boto3/commit/3a06d635c79baf1597439dde9244d3f28f6b6eb2"><code>3a06d63</code></a>
Merge branch 'release-1.42.73'</li>
<li><a
href="https://github.com/boto/boto3/commit/04dfc51bfc4d6288ad581aa7dc8677e67bd0f762"><code>04dfc51</code></a>
Merge branch 'release-1.42.73' into develop</li>
<li><a
href="https://github.com/boto/boto3/commit/ca7b0438074715c38ede4b8c0ab4401700bddf70"><code>ca7b043</code></a>
Bumping version to 1.42.73</li>
<li><a
href="https://github.com/boto/boto3/commit/ef6697c5aad3cbbe962fb63c9335db0e0a705480"><code>ef6697c</code></a>
Add changelog entries from botocore</li>
<li><a
href="https://github.com/boto/boto3/commit/3c02c15e37930f95537d5b173c0ffc19b1201b16"><code>3c02c15</code></a>
Merge branch 'release-1.42.72'</li>
<li><a
href="https://github.com/boto/boto3/commit/b7e01e94ab81d564b365e55b0a60c3c5d1e889ab"><code>b7e01e9</code></a>
Merge branch 'release-1.42.72' into develop</li>
<li><a
href="https://github.com/boto/boto3/commit/fcc3fe3ff503eecbbd713678771e02654eb27c9a"><code>fcc3fe3</code></a>
Bumping version to 1.42.72</li>
<li>Additional commits viewable in <a
href="https://github.com/boto/boto3/compare/1.42.71...1.42.74">compare
view</a></li>
</ul>
</details>
<br />

Updates `pygithub` from 2.8.1 to 2.9.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.9.0</h2>
<h3>Notable changes</h3>
<h4>Lazy PyGithub objects</h4>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0. This release now makes all
<code>CompletableGithubObject</code>s optionally lazy (if useful). See
<a
href="https://redirect.github.com/PyGithub/PyGithub/pull/3403">PyGithub/PyGithub#3403</a>
for a complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API. Only accessing methods and properties sends the
necessary requests to the GitHub API:</p>
<pre lang="python"><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful). This
is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<h4>PyGithub objects with a paginated property</h4>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination. Fetching subsequent pages of that property means fetching
the entire object (with all other properties) and the specified page of
the paginated property. Iterating over the paginated property means
fetching all other properties multiple times. Fortunately, the allowed
size of each page (<code>per_page</code> is usually 300, in contrast to
the &quot;usual&quot; <code>per_page</code> maximum of 100).</p>
<p>Objects with paginated properties:</p>
<ul>
<li>Commit.files</li>
<li>Comparison.commits</li>
<li>EnterpriseConsumedLicenses.users</li>
</ul>
<p>This PR makes iterating those paginated properties use the configured
<code>per_page</code> setting.</p>
<p>It further allows to specify an individual <code>per_page</code> when
either retrieving such objects, or fetching paginated properties.</p>
<p>See <a
href="https://pygithub.readthedocs.io/en/stable/utilities.html#utilities-classes-with-paginated-properties">Classes
with paginated properties</a> for details.</p>
<h4>Drop Python 3.8 support due to End-of-Life</h4>
<p>Python 3.8 reached its end-of-life September 6, 2024. Support has
been removed with this release.</p>
<!-- 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.9.0 (March 22, 2026)</h2>
<p>Notable changes
^^^^^^^^^^^^^^^</p>
<p>Lazy PyGithub objects

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0.
This release now makes all <code>CompletableGithubObject</code>\s
optionally lazy (if useful).
See <code>[#3403](PyGithub/PyGithub#3403)
&lt;https://github.com/PyGithub/PyGithub/pull/3403&gt;</code>_ for a
complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API.
Only accessing methods and properties sends the necessary requests to
the GitHub API:</p>
<p>.. code-block:: python</p>
<pre><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful).
This is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<p>PyGithub objects with a paginated property

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination.
Fetching subsequent pages of that property means fetching the entire
object (with all other properties)
and the specified page of the paginated property. Iterating over the
paginated property means fetching
all other properties multiple times. Fortunately, the allowed size of
each page (<code>per_page</code> is usually 300,
in contrast to the &quot;usual&quot; <code>per_page</code> maximum of
100).</p>
<p>Objects with paginated properties:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3a17ecf4a5a4dc873f2632470a712497b38eea88"><code>3a17ecf</code></a>
Release 2.9.0 (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3465">#3465</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/b1a9b7e2a37b515b141e01091b7c964ff883fe1e"><code>b1a9b7e</code></a>
Consider per-page settings when iterating paginated properties (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3377">#3377</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/24305f6d60869a849dadd0d271b4753ceac3658d"><code>24305f6</code></a>
Update test key pair (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3453">#3453</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/f2540db50423aa124beaeb8c7bfba7098a549c82"><code>f2540db</code></a>
Deprecate <code>Reaction.delete</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3435">#3435</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/19e1c5032397a95c58fe25760723ffc24cbe0ec8"><code>19e1c50</code></a>
Add <code>throw</code> option to <code>Workflow.create_dispatch</code>
to raise exceptions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/2966">#2966</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/646190988f3dd18e790969868b9ffe3c71acf254"><code>6461909</code></a>
Add Secret Scanning Alerts and Improve Code Scan Alerts (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3307">#3307</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/95648db4780e977b5bad8c19f669ec3f8c2b1a49"><code>95648db</code></a>
Add Python 3.14 to CI and tox (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3429">#3429</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3716bab10b7a99445ef50d698d6b2d681620ac88"><code>3716bab</code></a>
Use <code>GET</code> url or <code>_links.self</code> as object url (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3421">#3421</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/61dcf49d30d6854849ab745c501cab8856267bdb"><code>61dcf49</code></a>
Allow for enterprise base url prefixed with <code>api.</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3419">#3419</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/ae23d6075071bb85367d5f1a708774c971f85d00"><code>ae23d60</code></a>
Restrict PyPi release workflow permissions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3418">#3418</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pygithub/pygithub/compare/v2.8.1...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `types-python-dateutil` from 2.9.0.20260305 to 2.9.0.20260323
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/typeshed-internal/stub_uploader/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `pytest-cov` from 7.0.0 to 7.1.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst">pytest-cov's
changelog</a>.</em></p>
<blockquote>
<h2>7.1.0 (2026-03-21)</h2>
<ul>
<li>
<p>Fixed total coverage computation to always be consistent, regardless
of reporting settings.
Previously some reports could produce different total counts, and
consequently can make --cov-fail-under behave different depending on
reporting options.
See <code>[#641](pytest-dev/pytest-cov#641)
&lt;https://github.com/pytest-dev/pytest-cov/issues/641&gt;</code>_.</p>
</li>
<li>
<p>Improve handling of ResourceWarning from sqlite3.</p>
<p>The plugin adds warning filter for sqlite3
<code>ResourceWarning</code> unclosed database (since 6.2.0).
It checks if there is already existing plugin for this message by
comparing filter regular expression.
When filter is specified on command line the message is escaped and does
not match an expected message.
A check for an escaped regular expression is added to handle this
case.</p>
<p>With this fix one can suppress <code>ResourceWarning</code> from
sqlite3 from command line::</p>
<p>pytest -W &quot;ignore:unclosed database in &lt;sqlite3.Connection
object at:ResourceWarning&quot; ...</p>
</li>
<li>
<p>Various improvements to documentation.
Contributed by Art Pelling in
<code>[#718](pytest-dev/pytest-cov#718)
&lt;https://github.com/pytest-dev/pytest-cov/pull/718&gt;</code>_ and
&quot;vivodi&quot; in
<code>[#738](pytest-dev/pytest-cov#738)
&lt;https://github.com/pytest-dev/pytest-cov/pull/738&gt;</code><em>.
Also closed
<code>[#736](pytest-dev/pytest-cov#736)
&lt;https://github.com/pytest-dev/pytest-cov/issues/736&gt;</code></em>.</p>
</li>
<li>
<p>Fixed some assertions in tests.
Contributed by in Markéta Machová in
<code>[#722](pytest-dev/pytest-cov#722)
&lt;https://github.com/pytest-dev/pytest-cov/pull/722&gt;</code>_.</p>
</li>
<li>
<p>Removed unnecessary coverage configuration copying (meant as a backup
because reporting commands had configuration side-effects before
coverage 5.0).</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/66c8a526b1246b5eb8fb1bc218878131bc628622"><code>66c8a52</code></a>
Bump version: 7.0.0 → 7.1.0</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/f7076624784332594aa4cb3585d4757d295db15e"><code>f707662</code></a>
Make the examples use pypy 3.11.</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/6049a7847872e3139e6c82e93787123df5dc8672"><code>6049a78</code></a>
Make context test use the old ctracer (seems the new sysmon tracer
behaves di...</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/8ebf20bbbc73478b3f8fd36d30237d9ea083f06b"><code>8ebf20b</code></a>
Update changelog.</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/861d30e60d571f97259c6b718b71c819d5dbc3b9"><code>861d30e</code></a>
Remove the backup context manager - shouldn't be needed since coverage
5.0, ...</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/fd4c956014035527f0c3c8d7faef3f8cfdadac7f"><code>fd4c956</code></a>
Pass the precision on the nulled total (seems that there's some caching
goion...</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/78c9c4ecb005faf4962fd86ff7bf9c9cce9554d6"><code>78c9c4e</code></a>
Only run the 3.9 on older deps.</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/4849a922e8be725c662a3d9175da571ace6545dc"><code>4849a92</code></a>
Punctuation.</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/197c35e2f37031fd1927715307ab6eed7cb3d2b7"><code>197c35e</code></a>
Update changelog and hopefully I don't forget to publish release again
:))</li>
<li><a
href="https://github.com/pytest-dev/pytest-cov/commit/14dc1c92d44108384e39803888635fdbfc578b7f"><code>14dc1c9</code></a>
Update examples to use 3.11 and make the adhoc layout example look a bit
more...</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest-cov/compare/v7.0.0...v7.1.0">compare
view</a></li>
</ul>
</details>
<br />


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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Evergreen <[email protected]>
github-actions bot pushed a commit to jmertic/lfx-landscape-tools that referenced this pull request Mar 26, 2026
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps the all group with 2 updates in the / directory:
[pygithub](https://github.com/pygithub/pygithub) and
[check-jsonschema](https://github.com/python-jsonschema/check-jsonschema).

Updates `pygithub` from 2.8.1 to 2.9.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.9.0</h2>
<h3>Notable changes</h3>
<h4>Lazy PyGithub objects</h4>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0. This release now makes all
<code>CompletableGithubObject</code>s optionally lazy (if useful). See
<a
href="https://redirect.github.com/PyGithub/PyGithub/pull/3403">PyGithub/PyGithub#3403</a>
for a complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API. Only accessing methods and properties sends the
necessary requests to the GitHub API:</p>
<pre lang="python"><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful). This
is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<h4>PyGithub objects with a paginated property</h4>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination. Fetching subsequent pages of that property means fetching
the entire object (with all other properties) and the specified page of
the paginated property. Iterating over the paginated property means
fetching all other properties multiple times. Fortunately, the allowed
size of each page (<code>per_page</code> is usually 300, in contrast to
the &quot;usual&quot; <code>per_page</code> maximum of 100).</p>
<p>Objects with paginated properties:</p>
<ul>
<li>Commit.files</li>
<li>Comparison.commits</li>
<li>EnterpriseConsumedLicenses.users</li>
</ul>
<p>This PR makes iterating those paginated properties use the configured
<code>per_page</code> setting.</p>
<p>It further allows to specify an individual <code>per_page</code> when
either retrieving such objects, or fetching paginated properties.</p>
<p>See <a
href="https://pygithub.readthedocs.io/en/stable/utilities.html#utilities-classes-with-paginated-properties">Classes
with paginated properties</a> for details.</p>
<h4>Drop Python 3.8 support due to End-of-Life</h4>
<p>Python 3.8 reached its end-of-life September 6, 2024. Support has
been removed with this release.</p>
<!-- 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.9.0 (March 22, 2026)</h2>
<p>Notable changes
^^^^^^^^^^^^^^^</p>
<p>Lazy PyGithub objects

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0.
This release now makes all <code>CompletableGithubObject</code>\s
optionally lazy (if useful).
See <code>[#3403](PyGithub/PyGithub#3403)
&lt;https://github.com/PyGithub/PyGithub/pull/3403&gt;</code>_ for a
complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API.
Only accessing methods and properties sends the necessary requests to
the GitHub API:</p>
<p>.. code-block:: python</p>
<pre><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful).
This is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<p>PyGithub objects with a paginated property

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination.
Fetching subsequent pages of that property means fetching the entire
object (with all other properties)
and the specified page of the paginated property. Iterating over the
paginated property means fetching
all other properties multiple times. Fortunately, the allowed size of
each page (<code>per_page</code> is usually 300,
in contrast to the &quot;usual&quot; <code>per_page</code> maximum of
100).</p>
<p>Objects with paginated properties:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3a17ecf4a5a4dc873f2632470a712497b38eea88"><code>3a17ecf</code></a>
Release 2.9.0 (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3465">#3465</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/b1a9b7e2a37b515b141e01091b7c964ff883fe1e"><code>b1a9b7e</code></a>
Consider per-page settings when iterating paginated properties (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3377">#3377</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/24305f6d60869a849dadd0d271b4753ceac3658d"><code>24305f6</code></a>
Update test key pair (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3453">#3453</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/f2540db50423aa124beaeb8c7bfba7098a549c82"><code>f2540db</code></a>
Deprecate <code>Reaction.delete</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3435">#3435</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/19e1c5032397a95c58fe25760723ffc24cbe0ec8"><code>19e1c50</code></a>
Add <code>throw</code> option to <code>Workflow.create_dispatch</code>
to raise exceptions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/2966">#2966</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/646190988f3dd18e790969868b9ffe3c71acf254"><code>6461909</code></a>
Add Secret Scanning Alerts and Improve Code Scan Alerts (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3307">#3307</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/95648db4780e977b5bad8c19f669ec3f8c2b1a49"><code>95648db</code></a>
Add Python 3.14 to CI and tox (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3429">#3429</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3716bab10b7a99445ef50d698d6b2d681620ac88"><code>3716bab</code></a>
Use <code>GET</code> url or <code>_links.self</code> as object url (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3421">#3421</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/61dcf49d30d6854849ab745c501cab8856267bdb"><code>61dcf49</code></a>
Allow for enterprise base url prefixed with <code>api.</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3419">#3419</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/ae23d6075071bb85367d5f1a708774c971f85d00"><code>ae23d60</code></a>
Restrict PyPi release workflow permissions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3418">#3418</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pygithub/pygithub/compare/v2.8.1...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `check-jsonschema` from 0.37.0 to 0.37.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/python-jsonschema/check-jsonschema/releases">check-jsonschema's
releases</a>.</em></p>
<blockquote>
<h2>0.37.1</h2>
<ul>
<li>Update vendored schemas: buildkite, circle-ci, dependabot,
github-workflows, gitlab-ci, mergify, readthedocs, renovate,
woodpecker-ci (2026-03-25)</li>
<li>Add Changie.dev schema and pre-commit hook. Thanks <a
href="https://github.com/edgarrmondragon"><code>@​edgarrmondragon</code></a>!
(<a
href="https://redirect.github.com/python-jsonschema/check-jsonschema/issues/662">#662</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python-jsonschema/check-jsonschema/blob/main/CHANGELOG.rst">check-jsonschema's
changelog</a>.</em></p>
<blockquote>
<h2>0.37.1</h2>
<ul>
<li>Update vendored schemas: buildkite, circle-ci, dependabot,
github-workflows,
gitlab-ci, mergify, readthedocs, renovate, woodpecker-ci
(2026-03-25)</li>
<li>Add Changie.dev schema and pre-commit hook. Thanks
:user:<code>edgarrmondragon</code>! (:pr:<code>662</code>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/13614ab716a3113145f1294ed259d9fbe5678ff3"><code>13614ab</code></a>
Fixup changelog</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/6de83738ccce3cdd1ccce0dfea73b91b6296c520"><code>6de8373</code></a>
Bump version for release</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/06bf7381f9cbf8d3ba6592ea2c252ac8c8b38fe5"><code>06bf738</code></a>
Merge pull request <a
href="https://redirect.github.com/python-jsonschema/check-jsonschema/issues/669">#669</a>
from sirosen/update-schemas</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/fe0873d206f90181bddc81202a7900a3f184e6cb"><code>fe0873d</code></a>
Update vendored schemas</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/4cec9aea9b0dd197127811e7d29bd48d761a9370"><code>4cec9ae</code></a>
Merge pull request <a
href="https://redirect.github.com/python-jsonschema/check-jsonschema/issues/667">#667</a>
from python-jsonschema/pre-commit-ci-update-config</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/6d10a75c590bcf874cee05b8bef445814b926029"><code>6d10a75</code></a>
[pre-commit.ci] pre-commit autoupdate</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/37118b7db56c3b81f823f7b119972886a2d97c5e"><code>37118b7</code></a>
Merge pull request <a
href="https://redirect.github.com/python-jsonschema/check-jsonschema/issues/660">#660</a>
from sirosen/switch-to-grouped-monthly-dependabot-gha</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/3846f7f77d2f736ff7db144d7d63df88d5bf9038"><code>3846f7f</code></a>
Merge pull request <a
href="https://redirect.github.com/python-jsonschema/check-jsonschema/issues/665">#665</a>
from python-jsonschema/pre-commit-ci-update-config</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/0bd4581ee10a2dafd7313560f81aea94d31c2d83"><code>0bd4581</code></a>
[pre-commit.ci] pre-commit autoupdate</li>
<li><a
href="https://github.com/python-jsonschema/check-jsonschema/commit/2a56caf7eb04c10cca799446725aa348fbf7e1d5"><code>2a56caf</code></a>
Merge pull request <a
href="https://redirect.github.com/python-jsonschema/check-jsonschema/issues/662">#662</a>
from edgarrmondragon/changie</li>
<li>Additional commits viewable in <a
href="https://github.com/python-jsonschema/check-jsonschema/compare/0.37.0...0.37.1">compare
view</a></li>
</ul>
</details>
<br />


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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
github-actions bot pushed a commit to jmertic/contrib_check that referenced this pull request Mar 26, 2026
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps the all group with 2 updates:
[coverage](https://github.com/coveragepy/coveragepy) and
[pygithub](https://github.com/pygithub/pygithub).

Updates `coverage` from 7.13.4 to 7.13.5
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst">coverage's
changelog</a>.</em></p>
<blockquote>
<h2>Version 7.13.5 — 2026-03-17</h2>
<ul>
<li>
<p>Fix: <code>issue 2138</code>_ describes a memory leak that happened
when repeatedly
using the Coverage API with in-memory data. This is now fixed.</p>
</li>
<li>
<p>Fix: the markdown-formatted coverage report didn't fully escape
special
characters in file paths (<code>issue 2141</code><em>). This would be
very unlikely to
cause a problem, but now it's done properly, thanks to <code>Ellie Ayla
&lt;pull 2142_&gt;</code></em>.</p>
</li>
<li>
<p>Fix: the C extension wouldn't build on VS2019, but now it does
(<code>issue 2145</code>_).</p>
</li>
</ul>
<p>.. _issue 2138: <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2138">coveragepy/coveragepy#2138</a>
.. _issue 2141: <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2141">coveragepy/coveragepy#2141</a>
.. _pull 2142: <a
href="https://redirect.github.com/coveragepy/coveragepy/pull/2142">coveragepy/coveragepy#2142</a>
.. _issue 2145: <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2145">coveragepy/coveragepy#2145</a></p>
<p>.. _changes_7-13-4:</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/c88da144eef8cf78424331e5cbbde3e002eef43f"><code>c88da14</code></a>
docs: sample HTML for 7.13.5</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/e2ac3e1ef644370101ff365acad3431d16076512"><code>e2ac3e1</code></a>
build: sample HTML shouldn't include the status.json file</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/910f8f336541c2dcb4e9ec468144c7eb4a7779ac"><code>910f8f3</code></a>
docs: prep for 7.13.5</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/3a4819c24d3d20cb2670b99141517812ffa3fab0"><code>3a4819c</code></a>
style: make workflows more uniform</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/2a53705f5fe588158b8a8d37ff3beee86388b9e4"><code>2a53705</code></a>
chore: bump the action-dependencies group across 1 directory with 4
updates (...</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/e7c878d201db819416b978150944d9a842d22b18"><code>e7c878d</code></a>
chore: make upgrade</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/ab4db406a9c35acf977cf3ddb94a78d696b77bc5"><code>ab4db40</code></a>
build: use --generate-hashes when pinning</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/a438753eef870441044cef588e29ce4b9a28adf1"><code>a438753</code></a>
chore: make upgrade</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/7b33457d2c6367dfd5a563239998b3980444e090"><code>7b33457</code></a>
refactor: some leftover pyupgrade 3.10 bits</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/2ff968db91a7cdafe6f6569ac7659a3a93a2da07"><code>2ff968d</code></a>
refactor: this type wasn't used anywhere</li>
<li>Additional commits viewable in <a
href="https://github.com/coveragepy/coveragepy/compare/7.13.4...7.13.5">compare
view</a></li>
</ul>
</details>
<br />

Updates `pygithub` from 2.8.1 to 2.9.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.9.0</h2>
<h3>Notable changes</h3>
<h4>Lazy PyGithub objects</h4>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0. This release now makes all
<code>CompletableGithubObject</code>s optionally lazy (if useful). See
<a
href="https://redirect.github.com/PyGithub/PyGithub/pull/3403">PyGithub/PyGithub#3403</a>
for a complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API. Only accessing methods and properties sends the
necessary requests to the GitHub API:</p>
<pre lang="python"><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful). This
is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<h4>PyGithub objects with a paginated property</h4>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination. Fetching subsequent pages of that property means fetching
the entire object (with all other properties) and the specified page of
the paginated property. Iterating over the paginated property means
fetching all other properties multiple times. Fortunately, the allowed
size of each page (<code>per_page</code> is usually 300, in contrast to
the &quot;usual&quot; <code>per_page</code> maximum of 100).</p>
<p>Objects with paginated properties:</p>
<ul>
<li>Commit.files</li>
<li>Comparison.commits</li>
<li>EnterpriseConsumedLicenses.users</li>
</ul>
<p>This PR makes iterating those paginated properties use the configured
<code>per_page</code> setting.</p>
<p>It further allows to specify an individual <code>per_page</code> when
either retrieving such objects, or fetching paginated properties.</p>
<p>See <a
href="https://pygithub.readthedocs.io/en/stable/utilities.html#utilities-classes-with-paginated-properties">Classes
with paginated properties</a> for details.</p>
<h4>Drop Python 3.8 support due to End-of-Life</h4>
<p>Python 3.8 reached its end-of-life September 6, 2024. Support has
been removed with this release.</p>
<!-- 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.9.0 (March 22, 2026)</h2>
<p>Notable changes
^^^^^^^^^^^^^^^</p>
<p>Lazy PyGithub objects

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0.
This release now makes all <code>CompletableGithubObject</code>\s
optionally lazy (if useful).
See <code>[#3403](PyGithub/PyGithub#3403)
&lt;https://github.com/PyGithub/PyGithub/pull/3403&gt;</code>_ for a
complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API.
Only accessing methods and properties sends the necessary requests to
the GitHub API:</p>
<p>.. code-block:: python</p>
<pre><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful).
This is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<p>PyGithub objects with a paginated property

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination.
Fetching subsequent pages of that property means fetching the entire
object (with all other properties)
and the specified page of the paginated property. Iterating over the
paginated property means fetching
all other properties multiple times. Fortunately, the allowed size of
each page (<code>per_page</code> is usually 300,
in contrast to the &quot;usual&quot; <code>per_page</code> maximum of
100).</p>
<p>Objects with paginated properties:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3a17ecf4a5a4dc873f2632470a712497b38eea88"><code>3a17ecf</code></a>
Release 2.9.0 (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3465">#3465</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/b1a9b7e2a37b515b141e01091b7c964ff883fe1e"><code>b1a9b7e</code></a>
Consider per-page settings when iterating paginated properties (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3377">#3377</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/24305f6d60869a849dadd0d271b4753ceac3658d"><code>24305f6</code></a>
Update test key pair (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3453">#3453</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/f2540db50423aa124beaeb8c7bfba7098a549c82"><code>f2540db</code></a>
Deprecate <code>Reaction.delete</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3435">#3435</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/19e1c5032397a95c58fe25760723ffc24cbe0ec8"><code>19e1c50</code></a>
Add <code>throw</code> option to <code>Workflow.create_dispatch</code>
to raise exceptions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/2966">#2966</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/646190988f3dd18e790969868b9ffe3c71acf254"><code>6461909</code></a>
Add Secret Scanning Alerts and Improve Code Scan Alerts (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3307">#3307</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/95648db4780e977b5bad8c19f669ec3f8c2b1a49"><code>95648db</code></a>
Add Python 3.14 to CI and tox (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3429">#3429</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3716bab10b7a99445ef50d698d6b2d681620ac88"><code>3716bab</code></a>
Use <code>GET</code> url or <code>_links.self</code> as object url (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3421">#3421</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/61dcf49d30d6854849ab745c501cab8856267bdb"><code>61dcf49</code></a>
Allow for enterprise base url prefixed with <code>api.</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3419">#3419</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/ae23d6075071bb85367d5f1a708774c971f85d00"><code>ae23d60</code></a>
Restrict PyPi release workflow permissions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3418">#3418</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pygithub/pygithub/compare/v2.8.1...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />


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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
eps-autoapprove-dependabot bot pushed a commit to NHSDigital/eps-repo-status that referenced this pull request Mar 27, 2026
Bumps [pygithub](https://github.com/pygithub/pygithub) from 2.8.1 to
2.9.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.9.0</h2>
<h3>Notable changes</h3>
<h4>Lazy PyGithub objects</h4>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0. This release now makes all
<code>CompletableGithubObject</code>s optionally lazy (if useful). See
<a
href="https://redirect.github.com/PyGithub/PyGithub/pull/3403">PyGithub/PyGithub#3403</a>
for a complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API. Only accessing methods and properties sends the
necessary requests to the GitHub API:</p>
<pre lang="python"><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful). This
is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<h4>PyGithub objects with a paginated property</h4>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination. Fetching subsequent pages of that property means fetching
the entire object (with all other properties) and the specified page of
the paginated property. Iterating over the paginated property means
fetching all other properties multiple times. Fortunately, the allowed
size of each page (<code>per_page</code> is usually 300, in contrast to
the &quot;usual&quot; <code>per_page</code> maximum of 100).</p>
<p>Objects with paginated properties:</p>
<ul>
<li>Commit.files</li>
<li>Comparison.commits</li>
<li>EnterpriseConsumedLicenses.users</li>
</ul>
<p>This PR makes iterating those paginated properties use the configured
<code>per_page</code> setting.</p>
<p>It further allows to specify an individual <code>per_page</code> when
either retrieving such objects, or fetching paginated properties.</p>
<p>See <a
href="https://pygithub.readthedocs.io/en/stable/utilities.html#utilities-classes-with-paginated-properties">Classes
with paginated properties</a> for details.</p>
<h4>Drop Python 3.8 support due to End-of-Life</h4>
<p>Python 3.8 reached its end-of-life September 6, 2024. Support has
been removed with this release.</p>
<!-- 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.9.0 (March 22, 2026)</h2>
<p>Notable changes
^^^^^^^^^^^^^^^</p>
<p>Lazy PyGithub objects

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0.
This release now makes all <code>CompletableGithubObject</code>\s
optionally lazy (if useful).
See <code>[#3403](PyGithub/PyGithub#3403)
&lt;https://github.com/PyGithub/PyGithub/pull/3403&gt;</code>_ for a
complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API.
Only accessing methods and properties sends the necessary requests to
the GitHub API:</p>
<p>.. code-block:: python</p>
<pre><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful).
This is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<p>PyGithub objects with a paginated property

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination.
Fetching subsequent pages of that property means fetching the entire
object (with all other properties)
and the specified page of the paginated property. Iterating over the
paginated property means fetching
all other properties multiple times. Fortunately, the allowed size of
each page (<code>per_page</code> is usually 300,
in contrast to the &quot;usual&quot; <code>per_page</code> maximum of
100).</p>
<p>Objects with paginated properties:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3a17ecf4a5a4dc873f2632470a712497b38eea88"><code>3a17ecf</code></a>
Release 2.9.0 (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3465">#3465</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/b1a9b7e2a37b515b141e01091b7c964ff883fe1e"><code>b1a9b7e</code></a>
Consider per-page settings when iterating paginated properties (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3377">#3377</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/24305f6d60869a849dadd0d271b4753ceac3658d"><code>24305f6</code></a>
Update test key pair (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3453">#3453</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/f2540db50423aa124beaeb8c7bfba7098a549c82"><code>f2540db</code></a>
Deprecate <code>Reaction.delete</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3435">#3435</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/19e1c5032397a95c58fe25760723ffc24cbe0ec8"><code>19e1c50</code></a>
Add <code>throw</code> option to <code>Workflow.create_dispatch</code>
to raise exceptions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/2966">#2966</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/646190988f3dd18e790969868b9ffe3c71acf254"><code>6461909</code></a>
Add Secret Scanning Alerts and Improve Code Scan Alerts (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3307">#3307</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/95648db4780e977b5bad8c19f669ec3f8c2b1a49"><code>95648db</code></a>
Add Python 3.14 to CI and tox (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3429">#3429</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3716bab10b7a99445ef50d698d6b2d681620ac88"><code>3716bab</code></a>
Use <code>GET</code> url or <code>_links.self</code> as object url (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3421">#3421</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/61dcf49d30d6854849ab745c501cab8856267bdb"><code>61dcf49</code></a>
Allow for enterprise base url prefixed with <code>api.</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3419">#3419</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/ae23d6075071bb85367d5f1a708774c971f85d00"><code>ae23d60</code></a>
Restrict PyPi release workflow permissions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3418">#3418</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pygithub/pygithub/compare/v2.8.1...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
eps-autoapprove-dependabot bot pushed a commit to NHSDigital/electronic-prescription-service-account-resources that referenced this pull request Mar 27, 2026
Bumps [pygithub](https://github.com/pygithub/pygithub) from 2.8.1 to
2.9.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.9.0</h2>
<h3>Notable changes</h3>
<h4>Lazy PyGithub objects</h4>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0. This release now makes all
<code>CompletableGithubObject</code>s optionally lazy (if useful). See
<a
href="https://redirect.github.com/PyGithub/PyGithub/pull/3403">PyGithub/PyGithub#3403</a>
for a complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API. Only accessing methods and properties sends the
necessary requests to the GitHub API:</p>
<pre lang="python"><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful). This
is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<h4>PyGithub objects with a paginated property</h4>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination. Fetching subsequent pages of that property means fetching
the entire object (with all other properties) and the specified page of
the paginated property. Iterating over the paginated property means
fetching all other properties multiple times. Fortunately, the allowed
size of each page (<code>per_page</code> is usually 300, in contrast to
the &quot;usual&quot; <code>per_page</code> maximum of 100).</p>
<p>Objects with paginated properties:</p>
<ul>
<li>Commit.files</li>
<li>Comparison.commits</li>
<li>EnterpriseConsumedLicenses.users</li>
</ul>
<p>This PR makes iterating those paginated properties use the configured
<code>per_page</code> setting.</p>
<p>It further allows to specify an individual <code>per_page</code> when
either retrieving such objects, or fetching paginated properties.</p>
<p>See <a
href="https://pygithub.readthedocs.io/en/stable/utilities.html#utilities-classes-with-paginated-properties">Classes
with paginated properties</a> for details.</p>
<h4>Drop Python 3.8 support due to End-of-Life</h4>
<p>Python 3.8 reached its end-of-life September 6, 2024. Support has
been removed with this release.</p>
<!-- 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.9.0 (March 22, 2026)</h2>
<p>Notable changes
^^^^^^^^^^^^^^^</p>
<p>Lazy PyGithub objects

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The notion of lazy objects has been added to some PyGithub classes in
version 2.6.0.
This release now makes all <code>CompletableGithubObject</code>\s
optionally lazy (if useful).
See <code>[#3403](PyGithub/PyGithub#3403)
&lt;https://github.com/PyGithub/PyGithub/pull/3403&gt;</code>_ for a
complete list.</p>
<p>In lazy mode, getting a PyGithub object does not send a request to
the GitHub API.
Only accessing methods and properties sends the necessary requests to
the GitHub API:</p>
<p>.. code-block:: python</p>
<pre><code># Use lazy mode
g = Github(auth=auth, lazy=True)
<h1>these method calls do not send requests to the GitHub API</h1>
<p>user = g.get_user(&quot;PyGithub&quot;)    # get the user
repo = user.get_repo(&quot;PyGithub&quot;) # get the user's repo
pull = repo.get_pull(3403)       # get a known pull request
issue = pull.as_issue() # turn the pull request into an issue</p>
<h1>these method and property calls send requests to Github API</h1>
<p>issue.create_reaction(&quot;rocket&quot;)  # create a reaction
created = repo.created_at        # get property of lazy object repo</p>
<h1>once a lazy object has been fetched, all properties are available
(no more requests)</h1>
<p>licence = repo.license
</code></pre></p>
<p>All PyGithub classes that implement
<code>CompletableGithubObject</code> support lazy mode (if useful).
This is only useful for classes that have methods creating, changing, or
getting objects.</p>
<p>By default, PyGithub objects are not lazy.</p>
<p>PyGithub objects with a paginated property

&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;</p>
<p>The GitHub API has the &quot;feature&quot; of paginated properties.
Some objects returned by the API have a property that allows for
pagination.
Fetching subsequent pages of that property means fetching the entire
object (with all other properties)
and the specified page of the paginated property. Iterating over the
paginated property means fetching
all other properties multiple times. Fortunately, the allowed size of
each page (<code>per_page</code> is usually 300,
in contrast to the &quot;usual&quot; <code>per_page</code> maximum of
100).</p>
<p>Objects with paginated properties:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3a17ecf4a5a4dc873f2632470a712497b38eea88"><code>3a17ecf</code></a>
Release 2.9.0 (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3465">#3465</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/b1a9b7e2a37b515b141e01091b7c964ff883fe1e"><code>b1a9b7e</code></a>
Consider per-page settings when iterating paginated properties (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3377">#3377</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/24305f6d60869a849dadd0d271b4753ceac3658d"><code>24305f6</code></a>
Update test key pair (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3453">#3453</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/f2540db50423aa124beaeb8c7bfba7098a549c82"><code>f2540db</code></a>
Deprecate <code>Reaction.delete</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3435">#3435</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/19e1c5032397a95c58fe25760723ffc24cbe0ec8"><code>19e1c50</code></a>
Add <code>throw</code> option to <code>Workflow.create_dispatch</code>
to raise exceptions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/2966">#2966</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/646190988f3dd18e790969868b9ffe3c71acf254"><code>6461909</code></a>
Add Secret Scanning Alerts and Improve Code Scan Alerts (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3307">#3307</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/95648db4780e977b5bad8c19f669ec3f8c2b1a49"><code>95648db</code></a>
Add Python 3.14 to CI and tox (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3429">#3429</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/3716bab10b7a99445ef50d698d6b2d681620ac88"><code>3716bab</code></a>
Use <code>GET</code> url or <code>_links.self</code> as object url (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3421">#3421</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/61dcf49d30d6854849ab745c501cab8856267bdb"><code>61dcf49</code></a>
Allow for enterprise base url prefixed with <code>api.</code> (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3419">#3419</a>)</li>
<li><a
href="https://github.com/PyGithub/PyGithub/commit/ae23d6075071bb85367d5f1a708774c971f85d00"><code>ae23d60</code></a>
Restrict PyPi release workflow permissions (<a
href="https://redirect.github.com/pygithub/pygithub/issues/3418">#3418</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pygithub/pygithub/compare/v2.8.1...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant