Pull-request-codecommit

Latest version: v0.5.15

Safety actively analyzes 706259 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 5

0.5.7

Chore

* chore: add built command ([`67a4ca4`](https://github.com/conijnio/pull-request-codecommit/commit/67a4ca47fe81d03ffbf2ca32d5f605533aa3f07c))

0.5.6

Chore

* chore: implement pypi publishing ([`de39102`](https://github.com/conijnio/pull-request-codecommit/commit/de391027ae9f739a4c217d2ecd6e6854bd968db8))

0.5.5

Chore

* chore: tweak release ([`5f3f5a4`](https://github.com/conijnio/pull-request-codecommit/commit/5f3f5a40a1107ee2ef00908dac65c23fb93cfdc9))

* chore: remove built command ([`d6fd3ec`](https://github.com/conijnio/pull-request-codecommit/commit/d6fd3ece0bfdcb8f3e3c1f594b5ebd2daff7e093))

0.5.4

Chore

* chore: tweak semantic release config ([`5e916b9`](https://github.com/conijnio/pull-request-codecommit/commit/5e916b95f9522c115941684dac08949365864b02))

* chore: move repository to organization

I want to manage the open source repos that I maintain from an organization. ([`81f22ba`](https://github.com/conijnio/pull-request-codecommit/commit/81f22ba47a72c2682f6baa70923a38659a5b69e7))

* chore(deps-dev): bump pytest from 8.0.2 to 8.1.0 (189)

Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.0.2 to
8.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href=&34;https://github.com/pytest-dev/pytest/releases">pytest&39;s
releases</a>.</em></p>
<blockquote>
<h2>8.1.0</h2>
<h1>pytest 8.1.0 (2024-03-03)</h1>
<h2>Features</h2>
<ul>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11475">11475</a>:
Added the new <code>consider_namespace_packages</code>{.interpreted-text
role="confval"} configuration option, defaulting to
<code>False</code>.</p>
<p>If set to <code>True</code>, pytest will attempt to identify modules
that are part of <a
href=&34;https://packaging.python.org/en/latest/guides/packaging-namespace-packages">namespace
packages</a> when importing modules.</p>
</li>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11653">11653</a>:
Added the new <code>verbosity_test_cases</code>{.interpreted-text
role="confval"} configuration option for fine-grained control
of test execution verbosity.
See <code>Fine-grained verbosity
<pytest.fine_grained_verbosity></code>{.interpreted-text
role="ref"} for more details.</p>
</li>
</ul>
<h2>Improvements</h2>
<ul>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/10865">10865</a>:
<code>pytest.warns</code>{.interpreted-text role="func"} now
validates that <code>warnings.warn</code>{.interpreted-text
role="func"} was called with a [str]{.title-ref} or a
[Warning]{.title-ref}.
Currently in Python it is possible to use other types, however this
causes an exception when
<code>warnings.filterwarnings</code>{.interpreted-text
role="func"} is used to filter those warnings (see [CPython <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/103577">103577</a>](<a
href=&34;https://redirect.github.com/python/cpython/issues/103577">python/cpython103577</a>)
for a discussion).
While this can be considered a bug in CPython, we decided to put guards
in pytest as the error message produced without this check in place is
confusing.</p>
</li>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11311">11311</a>:
When using <code>--override-ini</code> for paths in invocations without
a configuration file defined, the current working directory is used
as the relative directory.</p>
<p>Previoulsy this would raise an
<code>AssertionError</code>{.interpreted-text
role="class"}.</p>
</li>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11475">11475</a>:
<code>--import-mode=importlib
<import-mode-importlib></code>{.interpreted-text
role="ref"} now tries to import modules using the standard
import mechanism (but still without changing
:py<code>sys.path</code>{.interpreted-text role="data"}),
falling back to importing modules directly only if that fails.</p>
<p>This means that installed packages will be imported under their
canonical name if possible first, for example
<code>app.core.models</code>, instead of having the module name always
be derived from their path (for example
<code>.env310.lib.site_packages.app.core.models</code>).</p>
</li>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11801">11801</a>:
Added the <code>iter_parents()
<_pytest.nodes.Node.iter_parents></code>{.interpreted-text
role="func"} helper method on nodes.
It is similar to <code>listchain
<_pytest.nodes.Node.listchain></code>{.interpreted-text
role="func"}, but goes from bottom to top, and returns an
iterator, not a list.</p>
</li>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11850">11850</a>:
Added support for <code>sys.last_exc</code>{.interpreted-text
role="data"} for post-mortem debugging on Python>=3.12.</p>
</li>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11962">11962</a>:
In case no other suitable candidates for configuration file are found, a
<code>pyproject.toml</code> (even without a
<code>[tool.pytest.ini_options]</code> table) will be considered as the
configuration file and define the <code>rootdir</code>.</p>
</li>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11978">11978</a>:
Add <code>--log-file-mode</code> option to the logging plugin, enabling
appending to log-files. This option accepts either
<code>"w"</code> or <code>"a"</code> and defaults to
<code>"w"</code>.</p>
<p>Previously, the mode was hard-coded to be <code>"w"</code>
which truncates the file before logging.</p>
</li>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12047">12047</a>:
When multiple finalizers of a fixture raise an exception, now all
exceptions are reported as an exception group.
Previously, only the first exception was reported.</p>
</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11904">11904</a>:
Fixed a regression in pytest 8.0.0 that would cause test collection to
fail due to permission errors when using <code>--pyargs</code>.</p>
<p>This change improves the collection tree for tests specified using
<code>--pyargs</code>, see <code>12043</code>{.interpreted-text
role="pull"} for a comparison with pytest 8.0 and <8.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/b9a167f9bbbd6eda4f0360c5bf5b7f5af50f2bc4"><code>b9a167f</code></a>
Prepare release version 8.1.0</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/00043f7f1047b29fdaeb18e169fe9d6146988cb8"><code>00043f7</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12038">12038</a>
from bluetech/fixtures-rm-arg2index</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/f4e10251a4a003495b5228cea421d4de5fa0ce89"><code>f4e1025</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12048">12048</a>
from bluetech/fixture-teardown-excgroup</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/43492f5707b38dab9b62dfb829bb41a13579629f"><code>43492f5</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12051">12051</a>
from jakkdl/test_debugging_pythonbreakpoint</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/82fe28dae4eec900123175cee87245f37b964e5c"><code>82fe28d</code></a>
[automated] Update plugin list (<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12049">12049</a>)</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/5e2ee7175c145f84ff9882be9496abb56e6e56f2"><code>5e2ee71</code></a>
monkeypatch.delenv PYTHONBREAKPOINT in two tests that previously
failed/skipped</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/89ee4493ccbcd118349082cd78eb52a761683120"><code>89ee449</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11997">11997</a>
from nicoddemus/11475-importlib</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/8248946a552635f5751a58c7a6dfd24e98db7404"><code>8248946</code></a>
Do not collect symlinked tests under Windows (<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12050">12050</a>)</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/434282e17f5f1f4fcc1464a0a0921cf19804bdd7"><code>434282e</code></a>
fixtures: use exception group when multiple finalizers raise in fixture
teardown</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/d6134bc21e27efee7a2e264bd089e6c223515904"><code>d6134bc</code></a>
doc: document consider_namespace_packages option</li>
<li>Additional commits viewable in <a
href=&34;https://github.com/pytest-dev/pytest/compare/8.0.2...8.1.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pytest&package-manager=pip&previous-version=8.0.2&new-version=8.1.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&39;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>

Signed-off-by: dependabot[bot] <supportgithub.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]users.noreply.github.com> ([`72d03b9`](https://github.com/conijnio/pull-request-codecommit/commit/72d03b9ae610218a836456f15205a469d5cdb2e5))

* chore(deps-dev): bump pytest from 8.0.1 to 8.0.2 (188)

Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.0.1 to
8.0.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href=&34;https://github.com/pytest-dev/pytest/releases">pytest&39;s
releases</a>.</em></p>
<blockquote>
<h2>8.0.2</h2>
<h1>pytest 8.0.2 (2024-02-24)</h1>
<h2>Bug Fixes</h2>
<ul>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11895">11895</a>:
Fix collection on Windows where initial paths contain the short version
of a path (for example <code>c:\PROGRA~1\tests</code>).</li>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11953">11953</a>:
Fix an <code>IndexError</code> crash raising from
<code>getstatementrange_ast</code>.</li>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12021">12021</a>:
Reverted a fix to [--maxfail]{.title-ref} handling in pytest 8.0.0
because it caused a regression in pytest-xdist whereby session fixture
teardowns may get executed multiple times when the max-fails is
reached.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/31afeeb0df0e8bdab1325b5992a2cc733e981e82"><code>31afeeb</code></a>
Prepare release version 8.0.2</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/1b00a2f4fba7859c31dab4f5afdd9e1f07cbdd1e"><code>1b00a2f</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12025">12025</a>
from pytest-dev/backport-12022-to-8.0.x</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/ff2f66d84affb0fbcbf841b1897c7599026730bc"><code>ff2f66d</code></a>
[8.0.x] Revert "Fix teardown error reporting when
<code>--maxfail=1</code> (<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11721">11721</a>)"</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/8a8eed609c3c20da452446e1686df41ebda96d11"><code>8a8eed6</code></a>
[8.0.x] Fix collection of short paths on Windows (<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12024">12024</a>)</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/74346f027c205e5daffe66801094293744e8d85f"><code>74346f0</code></a>
[8.0.x] Allow Sphinx 7.x (<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12005">12005</a>)</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/b7657b4d6b69ee26e00d9a71c4d208506f644462"><code>b7657b4</code></a>
[8.0.x] Disallow Sphinx 6 and 7 (<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/12001">12001</a>)</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/feb7c5e12ee3374b2c7c773614d76811ad21a4f4"><code>feb7c5e</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11999">11999</a>
from pytest-dev/backport-11996-to-8.0.x</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/090965574ece50c6be955719ced2a9cf8daaee17"><code>0909655</code></a>
[8.0.x] code: fix <code>IndexError</code> crash in
<code>getstatementrange_ast</code></li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/68524d48586e7f8d070fc1146e5ff90e770d0382"><code>68524d4</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11993">11993</a>
from pytest-dev/release-8.0.1</li>
<li>See full diff in <a
href=&34;https://github.com/pytest-dev/pytest/compare/8.0.1...8.0.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pytest&package-manager=pip&previous-version=8.0.1&new-version=8.0.2)](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&39;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>

Signed-off-by: dependabot[bot] <supportgithub.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]users.noreply.github.com> ([`f6cc25b`](https://github.com/conijnio/pull-request-codecommit/commit/f6cc25b6ab8b9c606e3a8ddf77ea7eee9c768ddc))

* chore(deps-dev): bump cryptography from 42.0.2 to 42.0.4 (187)

Bumps [cryptography](https://github.com/pyca/cryptography) from 42.0.2
to 42.0.4.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href=&34;https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography&39;s
changelog</a>.</em></p>
<blockquote>
<p>42.0.4 - 2024-02-20</p>
<pre><code>
* Fixed a null-pointer-dereference and segfault that could occur when
creating
a PKCS12 bundle. Credit to **Alexander-Programming** for reporting the
issue. **CVE-2024-26130**
* Fixed ASN.1 encoding for PKCS7/SMIME signed messages. The fields
``SMIMECapabilities``
and ``SignatureAlgorithmIdentifier`` should now be correctly encoded
according to the
definitions in :rfc:`2633` :rfc:`3370`.
<p>.. _v42-0-3:</p>
<p>42.0.3 - 2024-02-15
</code></pre></p>
<ul>
<li>Fixed an initialization issue that caused key loading failures for
some
users.</li>
</ul>
<p>.. _v42-0-2:</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/fe18470f7d05f963e7267e34fdf985d81ea6ceea"><code>fe18470</code></a>
Bump for 42.0.4 release (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10445">10445</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/aaa2dd06ed470695de818405a982d4c459869803"><code>aaa2dd0</code></a>
Fix ASN.1 issues in PKCS7 and S/MIME signing (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10373">10373</a>)
(<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10442">10442</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/7a4d012991061974da5d9cb7614de65eac94f49b"><code>7a4d012</code></a>
Fixes <a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10422">10422</a>
-- don&39;t crash when a PKCS12 key and cert don&39;t match (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10423">10423</a>)
...</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/df314bb182bdfd661333969a94325e4680d785f6"><code>df314bb</code></a>
backport actions m1 switch to 42.0.x (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10415">10415</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/c49a7a5271178c6e8ef36fa1c499f62c63ec19b9"><code>c49a7a5</code></a>
changelog and version bump for 42.0.3 (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10396">10396</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/396bcf64c5be826ec00e7d7f45838c858c049cbc"><code>396bcf6</code></a>
fix provider loading take two (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10390">10390</a>)
(<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10395">10395</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/0e0e46f5f73f477b8ee9682738c42129d5d60177"><code>0e0e46f</code></a>
backport: initialize openssl&39;s legacy provider in rust (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10323">10323</a>)
(<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10333">10333</a>)</li>
<li>See full diff in <a
href=&34;https://github.com/pyca/cryptography/compare/42.0.2...42.0.4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cryptography&package-manager=pip&previous-version=42.0.2&new-version=42.0.4)](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&39;t
alter it yourself. You can also trigger a rebase manually by commenting
`dependabot rebase`.

[//]: (dependabot-automerge-start)
[//]: (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `dependabot rebase` will rebase this PR
- `dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `dependabot merge` will merge this PR after your CI passes on it
- `dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `dependabot reopen` will reopen this PR if it is closed
- `dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/Nr18/pull-request-codecommit/network/alerts).

</details>

Signed-off-by: dependabot[bot] <supportgithub.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]users.noreply.github.com> ([`45ebaa7`](https://github.com/conijnio/pull-request-codecommit/commit/45ebaa73b5382289112fa8b172b020c9d6185253))

* chore(deps-dev): bump pytest from 8.0.0 to 8.0.1 (186)

Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.0.0 to
8.0.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href=&34;https://github.com/pytest-dev/pytest/releases">pytest&39;s
releases</a>.</em></p>
<blockquote>
<h2>8.0.1</h2>
<h1>pytest 8.0.1 (2024-02-16)</h1>
<h2>Bug Fixes</h2>
<ul>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11875">11875</a>:
Correctly handle errors from
<code>getpass.getuser</code>{.interpreted-text role="func"} in
Python 3.13.</li>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11879">11879</a>:
Fix an edge case where <code>ExceptionInfo._stringify_exception</code>
could crash <code>pytest.raises</code>{.interpreted-text
role="func"}.</li>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11906">11906</a>:
Fix regression with <code>pytest.warns</code>{.interpreted-text
role="func"} using custom warning subclasses which have more
than one parameter in their [__init__]{.title-ref}.</li>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11907">11907</a>:
Fix a regression in pytest 8.0.0 whereby calling
<code>pytest.skip</code>{.interpreted-text role="func"} and
similar control-flow exceptions within a
<code>pytest.warns()</code>{.interpreted-text role="func"}
block would get suppressed instead of propagating.</li>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11929">11929</a>:
Fix a regression in pytest 8.0.0 whereby autouse fixtures defined in a
module get ignored by the doctests in the module.</li>
<li><a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11937">11937</a>:
Fix a regression in pytest 8.0.0 whereby items would be collected in
reverse order in some circumstances.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/d7d320a15a1f8dae909e0aa71f20ab5daeaa42d3"><code>d7d320a</code></a>
Prepare release version 8.0.1</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/93699166dc3d90676b126d2b1615fbd41cf0be4d"><code>9369916</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11992">11992</a>
from bluetech/backport-11991</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/a232abd56cd7ddc0d6dbeefd851c538ec547ab06"><code>a232abd</code></a>
[8.0.x] recwarn: fix pytest.warns handling of Warnings with multiple
arguments</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/92203d2b78135446510ec70d46452937effcb1d9"><code>92203d2</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11990">11990</a>
from bluetech/backport-11920</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/f1aa9226ac5b1962fdad442652765d5e589c7137"><code>f1aa922</code></a>
[8.0.x] recwarn: let base exceptions propagate through
<code>pytest.warns</code> again</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/d86d08156337b40ad0cf6e4bfe38ecfa0e5eb5bd"><code>d86d081</code></a>
[8.0.x] Added <code>logot</code> to the plugin list (<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11977">11977</a>)</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/c554c3d200747f9f56b4054619ba4fb6f8910bb5"><code>c554c3d</code></a>
Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11968">11968</a>
from pytest-dev/backport-11957-to-8.0.x</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/a6851e3459159f94387debf0b357c9b6481a2f48"><code>a6851e3</code></a>
[8.0.x] main: fix reversed collection order in Session</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/e6f6be3bc9e876f1853fdea68ec49cfc1c4c246d"><code>e6f6be3</code></a>
[8.0.x] Improve error message when using <a
href=&34;https://github.com/pytest"><code>​pytest</code></a>.fixture twice
(<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11958">11958</a>)</li>
<li><a
href=&34;https://github.com/pytest-dev/pytest/commit/23b91d12de9bcbd0ce965bebefcbcc53a588b438"><code>23b91d1</code></a>
[8.0.x] Merge pull request <a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11941">11941</a>
from bluetech/doctest-parsefactories (<a
href=&34;https://redirect.github.com/pytest-dev/pytest/issues/11948">11948</a>)</li>
<li>Additional commits viewable in <a
href=&34;https://github.com/pytest-dev/pytest/compare/8.0.0...8.0.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pytest&package-manager=pip&previous-version=8.0.0&new-version=8.0.1)](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&39;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>

Signed-off-by: dependabot[bot] <supportgithub.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]users.noreply.github.com> ([`cd8b9f3`](https://github.com/conijnio/pull-request-codecommit/commit/cd8b9f37d5960f22f70e45abbf72f41d7980df04))

* chore(deps-dev): bump cryptography from 42.0.0 to 42.0.2 (185)

Bumps [cryptography](https://github.com/pyca/cryptography) from 42.0.0
to 42.0.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href=&34;https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography&39;s
changelog</a>.</em></p>
<blockquote>
<p>42.0.2 - 2024-01-30</p>
<pre><code>
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL
3.2.1.
* Fixed an issue that prevented the use of Python buffer protocol
objects in
``sign`` and ``verify`` methods on asymmetric keys.
* Fixed an issue with incorrect keyword-argument naming with
``EllipticCurvePrivateKey``

:meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey.exchange`,
``X25519PrivateKey``

:meth:`~cryptography.hazmat.primitives.asymmetric.x25519.X25519PrivateKey.exchange`,
``X448PrivateKey``

:meth:`~cryptography.hazmat.primitives.asymmetric.x448.X448PrivateKey.exchange`,
and ``DHPrivateKey``

:meth:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey.exchange`.
<p>.. _v42-0-1:</p>
<p>42.0.1 - 2024-01-24
</code></pre></p>
<ul>
<li>Fixed an issue with incorrect keyword-argument naming with
<code>EllipticCurvePrivateKey</code>

:meth:<code>~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey.sign</code>.</li>
<li>Resolved compatibility issue with loading certain RSA public keys in

:func:<code>~cryptography.hazmat.primitives.serialization.load_pem_public_key</code>.</li>
</ul>
<p>.. _v42-0-0:</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/2202123b50de1b8788f909a3e5afe350c56ad81e"><code>2202123</code></a>
changelog and version bump 42.0.2 (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10268">10268</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/f7032bdd409838f67fc2b93343f897fb5f397d80"><code>f7032bd</code></a>
bump openssl in CI (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10298">10298</a>)
(<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10299">10299</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/002e886f16d8857151c09b11dc86b35f2ac9aec3"><code>002e886</code></a>
Fixes <a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10294">10294</a>
-- correct accidental change to exchange kwarg (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10295">10295</a>)
(<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10296">10296</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/92fa9f2f606caea5d499c825e832be5bac6f0c23"><code>92fa9f2</code></a>
support bytes-like consistently across our asym sign/verify APIs (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10260">10260</a>)
(<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/1">1</a>...</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/6478f7e28be54b51931277235de01b249ceabd96"><code>6478f7e</code></a>
explicitly support bytes-like for signature/data in RSA sign/verify (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10259">10259</a>)
...</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/4bb8596ae02d95bb054dbcf55e8771379dbe0c19"><code>4bb8596</code></a>
fix the release script (<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10233">10233</a>)
(<a
href=&34;https://redirect.github.com/pyca/cryptography/issues/10254">10254</a>)</li>
<li><a
href=&34;https://github.com/pyca/cryptography/commit/337437dc2e62772bde4ad5544f4b1db9ee7572d9"><code>337437d</code></a>

0.5.3

Chore

* chore(deps): bump click from 8.1.3 to 8.1.4 (143)

Bumps [click](https://github.com/pallets/click) from 8.1.3 to 8.1.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href=&34;https://github.com/pallets/click/releases">click&39;s
releases</a>.</em></p>
<blockquote>
<h2>8.1.4</h2>
<p>This is a fix release for the 8.1.x feature branch.</p>
<ul>
<li>Changes: <a
href=&34;https://click.palletsprojects.com/en/8.1.x/changes/#version-8-1-4&34;>https://click.palletsprojects.com/en/8.1.x/changes/#version-8-1-4</a></li>
<li>Milestone: <a
href=&34;https://github.com/pallets/click/milestone/19?closed=1">https://github.com/pallets/click/milestone/19?closed=1</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href=&34;https://github.com/pallets/click/blob/main/CHANGES.rst">click&39;s
changelog</a>.</em></p>
<blockquote>
<h2>Version 8.1.4</h2>
<p>Released 2023-07-06</p>
<ul>
<li>Replace all <code>typing.Dict</code> occurrences to
<code>typing.MutableMapping</code> for
parameter hints. :issue:<code>2255</code></li>
<li>Improve type hinting for decorators and give all generic types
parameters.
:issue:<code>2398</code></li>
<li>Fix return value and type signature of
<code>shell_completion.add_completion_class</code>
function. :pr:<code>2421</code></li>
<li>Bash version detection doesn&39;t fail on Windows.
:issue:<code>2461</code></li>
<li>Completion works if there is a dot (<code>.</code>) in the program
name. :issue:<code>2166</code></li>
<li>Improve type annotations for pyright type checker.
:issue:<code>2268</code></li>
<li>Improve responsiveness of <code>click.clear()</code>.
:issue:<code>2284</code></li>
<li>Improve command name detection when using Shiv or PEX.
:issue:<code>2332</code></li>
<li>Avoid showing empty lines if command help text is empty.
:issue:<code>2368</code></li>
<li>ZSH completion script works when loaded from <code>fpath</code>.
:issue:<code>2344</code>.</li>
<li><code>EOFError</code> and <code>KeyboardInterrupt</code> tracebacks
are not suppressed when
<code>standalone_mode</code> is disabled. :issue:<code>2380</code></li>
<li><code>group.command</code> does not fail if the group was created
with a custom
<code>command_class</code>. :issue:<code>2416</code></li>
<li><code>multiple=True</code> is allowed for flag options again and
does not require
setting <code>default=()</code>. :issue:<code>2246, 2292,
2295</code></li>
<li>Make the decorators returned by <code>argument()</code> and
<code>option()</code> reusable when the
<code>cls</code> parameter is used. :issue:<code>2294</code></li>
<li>Don&39;t fail when writing filenames to streams with strict errors.
Replace invalid
bytes with the replacement character (<code>�</code>).
:issue:<code>2395</code></li>
<li>Remove unnecessary attempt to detect MSYS2 environment.
:issue:<code>2355</code></li>
<li>Remove outdated and unnecessary detection of App Engine environment.
:pr:<code>2554</code></li>
<li><code>echo()</code> does not fail when no streams are attached, such
as with <code>pythonw</code> on
Windows. :issue:<code>2415</code></li>
<li>Argument with <code>expose_value=False</code> do not cause
completion to fail. :issue:<code>2336</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href=&34;https://github.com/pallets/click/commit/3d873a3f567d1bbcb6fb25f0fbe3c3128488d99d"><code>3d873a3</code></a>
release version 8.1.4</li>
<li><a
href=&34;https://github.com/pallets/click/commit/dd691da8028a090657f081b584ce1efb1bb149d2"><code>dd691da</code></a>
use pypi trusted publisher auth</li>
<li><a
href=&34;https://github.com/pallets/click/commit/b67fe5f70a8c88bf54d6c7058b1154a81d32815c"><code>b67fe5f</code></a>
completion doesn&39;t fail with <code>expose_value=False</code> (<a
href=&34;https://redirect.github.com/pallets/click/issues/2556">2556</a>)</li>
<li><a
href=&34;https://github.com/pallets/click/commit/4cf7c6cdb10e441da775b4a3a7ee55caec83249e"><code>4cf7c6c</code></a>
completion works for expose_value=False</li>
<li><a
href=&34;https://github.com/pallets/click/commit/549947111c4af2191dd4b245e1de2c25d20c36d6"><code>5499471</code></a>
echo doesn&39;t fail with no streams (<a
href=&34;https://redirect.github.com/pallets/click/issues/2555">2555</a>)</li>
<li><a
href=&34;https://github.com/pallets/click/commit/ecb99836a44367bad62960045d586e31e4a95766"><code>ecb9983</code></a>
echo doesn&39;t fail with no streams</li>
<li><a
href=&34;https://github.com/pallets/click/commit/9a536eebd958558c2cd24c17fb66fac112f1ac91"><code>9a536ee</code></a>
remove msys2 and app engine detection (<a
href=&34;https://redirect.github.com/pallets/click/issues/2554">2554</a>)</li>
<li><a
href=&34;https://github.com/pallets/click/commit/daca3cfce4dcc98451362da0785e4db5fd2b1d8a"><code>daca3cf</code></a>
remove app engine detection</li>
<li><a
href=&34;https://github.com/pallets/click/commit/8f019ba54eb6838c182c8bfe9310a8d526602071"><code>8f019ba</code></a>
remove msys2 detection</li>
<li><a
href=&34;https://github.com/pallets/click/commit/af1e8d44d64181484a60dd63044da706bcc13439"><code>af1e8d4</code></a>
<code>format_filename</code> replaces invalid bytes (<a
href=&34;https://redirect.github.com/pallets/click/issues/2553">2553</a>)</li>
<li>Additional commits viewable in <a
href=&34;https://github.com/pallets/click/compare/8.1.3...8.1.4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=click&package-manager=pip&previous-version=8.1.3&new-version=8.1.4)](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&39;t
alter it yourself. You can also trigger a rebase manually by commenting
`dependabot rebase`.

[//]: (dependabot-automerge-start)
[//]: (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `dependabot rebase` will rebase this PR
- `dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `dependabot merge` will merge this PR after your CI passes on it
- `dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `dependabot reopen` will reopen this PR if it is closed
- `dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details> ([`2cfbe3d`](https://github.com/conijnio/pull-request-codecommit/commit/2cfbe3dc1359c0aceae6ba930028903ea960c382))

* chore(deps): bump click from 8.1.3 to 8.1.4

Bumps [click](https://github.com/pallets/click) from 8.1.3 to 8.1.4.
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/click/compare/8.1.3...8.1.4)

---
updated-dependencies:
- dependency-name: click
dependency-type: direct:production
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`54a4da0`](https://github.com/conijnio/pull-request-codecommit/commit/54a4da03cb3e3662bc8488208b3ec946ed70a90b))

* chore(deps-dev): bump black from 23.3.0 to 23.7.0

Bumps [black](https://github.com/psf/black) from 23.3.0 to 23.7.0.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](https://github.com/psf/black/compare/23.3.0...23.7.0)

---
updated-dependencies:
- dependency-name: black
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`8018305`](https://github.com/conijnio/pull-request-codecommit/commit/80183053deaa0c8494d8bdbb047735dba7cb54eb))

* chore(deps): bump click from 8.1.3 to 8.1.4

Bumps [click](https://github.com/pallets/click) from 8.1.3 to 8.1.4.
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/click/compare/8.1.3...8.1.4)

---
updated-dependencies:
- dependency-name: click
dependency-type: direct:production
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`8c07d89`](https://github.com/conijnio/pull-request-codecommit/commit/8c07d891837da847236bf857deea40c8b9bdae7c))

* chore(deps-dev): bump mypy from 1.4.0 to 1.4.1

Bumps [mypy](https://github.com/python/mypy) from 1.4.0 to 1.4.1.
- [Commits](https://github.com/python/mypy/compare/v1.4.0...v1.4.1)

---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:development
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`934f6d0`](https://github.com/conijnio/pull-request-codecommit/commit/934f6d0189c2cad4c444ed790ecbde335bd5b690))

* chore(deps-dev): bump pytest from 7.3.2 to 7.4.0

Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.3.2 to 7.4.0.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/7.3.2...7.4.0)

---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`e99f1ec`](https://github.com/conijnio/pull-request-codecommit/commit/e99f1ecef0123471a6e66d53dd7eec174979af16))

Fix

* fix: ignore click decorator and remove unused main() call ([`c523046`](https://github.com/conijnio/pull-request-codecommit/commit/c523046e263fbf9b2ce394fe8d9c022342526547))

Unknown

* Merge pull request 144 from Nr18/dependabot/pip/black-23.7.0 ([`1d8c04f`](https://github.com/conijnio/pull-request-codecommit/commit/1d8c04f6cf61bc3785ec4a57a7956da4a8bbe167))

* Merge pull request 142 from Nr18/dependabot/pip/click-8.1.4 ([`8424ce9`](https://github.com/conijnio/pull-request-codecommit/commit/8424ce99948db45e01d796ac3ec2072fa90ef185))

* Merge pull request 140 from Nr18/dependabot/pip/pytest-7.4.0 ([`5f0ade0`](https://github.com/conijnio/pull-request-codecommit/commit/5f0ade0a124074a28100a2226ecbe22ef1b59437))

* Merge pull request 141 from Nr18/dependabot/pip/mypy-1.4.1 ([`045a15a`](https://github.com/conijnio/pull-request-codecommit/commit/045a15a580a93c7d2430ec00849feae4bff4d7ec))

* Merge pull request 139 from Nr18/develop

release: develop to main branch ([`fc7ee5c`](https://github.com/conijnio/pull-request-codecommit/commit/fc7ee5c5ac4214eb5e4a24bbf38aaafddcd317e8))

0.5.2

Chore

* chore(deps-dev): bump mypy from 1.3.0 to 1.4.0

Bumps [mypy](https://github.com/python/mypy) from 1.3.0 to 1.4.0.
- [Commits](https://github.com/python/mypy/compare/v1.3.0...v1.4.0)

---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`bb365b0`](https://github.com/conijnio/pull-request-codecommit/commit/bb365b00c09433020ec2666af7bb45d57e5deee8))

* chore(deps-dev): bump pytest from 7.3.1 to 7.3.2

Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.3.1 to 7.3.2.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/7.3.1...7.3.2)

---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:development
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`5c66e83`](https://github.com/conijnio/pull-request-codecommit/commit/5c66e83221b53ed38da5c79c54baaf096facfffa))

* chore(deps): bump cryptography from 39.0.2 to 41.0.0

Bumps [cryptography](https://github.com/pyca/cryptography) from 39.0.2 to 41.0.0.
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/39.0.2...41.0.0)

---
updated-dependencies:
- dependency-name: cryptography
dependency-type: indirect
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`b974d3f`](https://github.com/conijnio/pull-request-codecommit/commit/b974d3f33817ba81bcc022bedc8b4c4fac8f33df))

* chore(deps-dev): bump pytest-cov from 4.0.0 to 4.1.0

Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 4.0.0 to 4.1.0.
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest-cov/compare/v4.0.0...v4.1.0)

---
updated-dependencies:
- dependency-name: pytest-cov
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`2e92050`](https://github.com/conijnio/pull-request-codecommit/commit/2e920502c686af569a94943ad1c4853a8f484594))

* chore(deps): bump requests from 2.28.2 to 2.31.0

Bumps [requests](https://github.com/psf/requests) from 2.28.2 to 2.31.0.
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](https://github.com/psf/requests/compare/v2.28.2...v2.31.0)

---
updated-dependencies:
- dependency-name: requests
dependency-type: indirect
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`a4c04e2`](https://github.com/conijnio/pull-request-codecommit/commit/a4c04e2209beaca637de35940cb4bd6050d89fa8))

* chore(deps-dev): bump mypy from 1.2.0 to 1.3.0

Bumps [mypy](https://github.com/python/mypy) from 1.2.0 to 1.3.0.
- [Commits](https://github.com/python/mypy/compare/v1.2.0...v1.3.0)

---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`e4cb645`](https://github.com/conijnio/pull-request-codecommit/commit/e4cb645c3ec10d993af336d57a8d23900e588146))

* chore(deps-dev): bump pytest from 7.3.0 to 7.3.1

Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.3.0 to 7.3.1.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/7.3.0...7.3.1)

---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:development
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`601d84d`](https://github.com/conijnio/pull-request-codecommit/commit/601d84df5f8e17528edf0ddbe04841700b31ab43))

* chore(deps-dev): bump pytest from 7.2.2 to 7.3.0

Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.2.2 to 7.3.0.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/7.2.2...7.3.0)

---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`61336c0`](https://github.com/conijnio/pull-request-codecommit/commit/61336c00704f2d641e58f40e9c937ed91bdd01b7))

* chore(deps-dev): bump mypy from 1.1.1 to 1.2.0

Bumps [mypy](https://github.com/python/mypy) from 1.1.1 to 1.2.0.
- [Release notes](https://github.com/python/mypy/releases)
- [Commits](https://github.com/python/mypy/compare/v1.1.1...v1.2.0)

---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`aaf2d67`](https://github.com/conijnio/pull-request-codecommit/commit/aaf2d67b8a3298530c2fc34106b52cf7a7b9d45e))

* chore(deps-dev): bump mypy from 1.0.1 to 1.1.1

Bumps [mypy](https://github.com/python/mypy) from 1.0.1 to 1.1.1.
- [Release notes](https://github.com/python/mypy/releases)
- [Commits](https://github.com/python/mypy/compare/v1.0.1...v1.1.1)

---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`a035d50`](https://github.com/conijnio/pull-request-codecommit/commit/a035d5097e44dd582874c9286ca4cd5924899589))

* chore(deps-dev): bump types-toml from 0.10.8.5 to 0.10.8.6

Bumps [types-toml](https://github.com/python/typeshed) from 0.10.8.5 to 0.10.8.6.
- [Release notes](https://github.com/python/typeshed/releases)
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: types-toml
dependency-type: direct:development
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`a5057dc`](https://github.com/conijnio/pull-request-codecommit/commit/a5057dc802148b6e346ae72d09d162f1330dbef8))

* chore(deps-dev): bump black from 23.1.0 to 23.3.0

Bumps [black](https://github.com/psf/black) from 23.1.0 to 23.3.0.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](https://github.com/psf/black/compare/23.1.0...23.3.0)

---
updated-dependencies:
- dependency-name: black
dependency-type: direct:development
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <supportgithub.com> ([`f5ac630`](https://github.com/conijnio/pull-request-codecommit/commit/f5ac6308ffa83ea1b0d1a74a5527d814dd2ce22f))

Fix

* fix: semantic versioning ([`8c49d5f`](https://github.com/conijnio/pull-request-codecommit/commit/8c49d5f37cf00b8f0762d26a07da62ec6306c848))

* fix: make target ([`a7c9f8e`](https://github.com/conijnio/pull-request-codecommit/commit/a7c9f8e061c5e8581692b61a6be6c009964daa5d))

Unknown

* 0.5.1 ([`abc504f`](https://github.com/conijnio/pull-request-codecommit/commit/abc504f14c79aab892759068d69408e9a4b0ac29))

* Merge pull request 138 from Nr18/dependabot/pip/mypy-1.4.0

chore(deps-dev): bump mypy from 1.3.0 to 1.4.0 ([`91a49de`](https://github.com/conijnio/pull-request-codecommit/commit/91a49de388cc2a40fecfbe571daad97145c87bca))

* Merge pull request 137 from Nr18/dependabot/pip/pytest-7.3.2 ([`32623e9`](https://github.com/conijnio/pull-request-codecommit/commit/32623e932a0f110fa24164a1db229d6e6bff53bb))

* Merge pull request 136 from Nr18/dependabot/pip/cryptography-41.0.0 ([`7f5c383`](https://github.com/conijnio/pull-request-codecommit/commit/7f5c383799ba6f23b892decee86292ccd33d4827))

* Merge pull request 135 from Nr18/dependabot/pip/pytest-cov-4.1.0 ([`64f756f`](https://github.com/conijnio/pull-request-codecommit/commit/64f756f75ff5c973a30f16187d3048644b82ca28))

* Merge pull request 134 from Nr18/dependabot/pip/requests-2.31.0 ([`a18b802`](https://github.com/conijnio/pull-request-codecommit/commit/a18b8022199bc11833e64b45d4d4f038c76bc64f))

* Merge pull request 133 from Nr18/dependabot/pip/mypy-1.3.0

chore(deps-dev): bump mypy from 1.2.0 to 1.3.0 ([`7ad5f06`](https://github.com/conijnio/pull-request-codecommit/commit/7ad5f0611baf92cc0d8bb810bcb8a5c03689566a))

* Merge pull request 132 from Nr18/dependabot/pip/pytest-7.3.1 ([`e321b85`](https://github.com/conijnio/pull-request-codecommit/commit/e321b857a0ac9ed501949c82f8ef59181decef64))

* Merge pull request 131 from Nr18/dependabot/pip/pytest-7.3.0 ([`238eb04`](https://github.com/conijnio/pull-request-codecommit/commit/238eb0478bbd941a254eb7ee5f174fe1adee8a09))

* Merge pull request 130 from Nr18/dependabot/pip/mypy-1.2.0 ([`9eff046`](https://github.com/conijnio/pull-request-codecommit/commit/9eff046c9e8e08c3245f4a7029b1dc2f2ed3547b))

* Merge pull request 127 from Nr18/dependabot/pip/mypy-1.1.1 ([`acf0a29`](https://github.com/conijnio/pull-request-codecommit/commit/acf0a29f094e1e89e822e1393044b1befcdcd1b4))

* Merge branch &39;develop&39; into dependabot/pip/mypy-1.1.1 ([`12c3abb`](https://github.com/conijnio/pull-request-codecommit/commit/12c3abbb3ce17f77ef181179474a45ce36c83864))

* Merge pull request 129 from Nr18/dependabot/pip/types-toml-0.10.8.6 ([`5173bc6`](https://github.com/conijnio/pull-request-codecommit/commit/5173bc6254192cfa4768d2b900de090809cc4663))

* Merge branch &39;develop&39; into dependabot/pip/types-toml-0.10.8.6 ([`3ffe0c1`](https://github.com/conijnio/pull-request-codecommit/commit/3ffe0c16883de436e27110d8a67a36c3a12624a3))

* Merge pull request 128 from Nr18/dependabot/pip/black-23.3.0 ([`9903add`](https://github.com/conijnio/pull-request-codecommit/commit/9903add5a60f3c53dfe1d2f982a25e6c5bf08a09))

Page 3 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.