Skip to content

Commit

Permalink
chore(deps-dev): Bump the development-dependencies group with 2 updat…
Browse files Browse the repository at this point in the history
…es (#137)

Bumps the development-dependencies group with 2 updates:
[moto](https://github.com/getmoto/moto) and
[mypy](https://github.com/python/mypy).

Updates `moto` from 5.0.23 to 5.0.24
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getmoto/moto/blob/master/CHANGELOG.md">moto's
changelog</a>.</em></p>
<blockquote>
<h2>5.0.24</h2>
<p>Docker Digest for 5.0.24:
<em>sha256:68042b17e9a55c7a32347f802b7a02f2793201b4f1c788ca0e85084f5218c233</em></p>
<pre><code>Miscellaneous:
* EC2: Terminating instances will now release private ip addresses from
the NIC's attached to the interface
* S3: Fixes a bug in complete_multipart_upload() where it was no longer
possible to overwrite an earlier multipart upload (Broken in 5.0.23)
    * S3: get_object_cors() now correctly returns the ExposeHeader-value
</code></pre>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getmoto/moto/commit/b4b57248f46b5433d7bed458e5c5f06c8c6bb372"><code>b4b5724</code></a>
Pre-Release: Up Version Number</li>
<li><a
href="https://github.com/getmoto/moto/commit/db93058f89f600b89368f48babab6a347674b6c9"><code>db93058</code></a>
Core: Use internal server to test requests passthrough (<a
href="https://redirect.github.com/getmoto/moto/issues/8419">#8419</a>)</li>
<li><a
href="https://github.com/getmoto/moto/commit/08a85060fc4a7e2ac8e7e356ab1a930225625003"><code>08a8506</code></a>
S3: get_bucket_cors(): Fix <code>ExposeHeader</code> XML tag (<a
href="https://redirect.github.com/getmoto/moto/issues/8407">#8407</a>)</li>
<li><a
href="https://github.com/getmoto/moto/commit/6bf0cfcc20297241282b99778cd3fe515d61cfa6"><code>6bf0cfc</code></a>
S3: complete_multipart_upload() should be able to overwrite (<a
href="https://redirect.github.com/getmoto/moto/issues/8418">#8418</a>)</li>
<li><a
href="https://github.com/getmoto/moto/commit/f2e43c6bd3a914567f247955472856c69adea092"><code>f2e43c6</code></a>
EC2: Remove internal Network Interface traces from the Subnet after
deletion....</li>
<li><a
href="https://github.com/getmoto/moto/commit/3c4c72e1c9282e920022afaa7ad818472e9fbf50"><code>3c4c72e</code></a>
Bump ruby/setup-ruby from 1.203.0 to 1.204.0 (<a
href="https://redirect.github.com/getmoto/moto/issues/8411">#8411</a>)</li>
<li><a
href="https://github.com/getmoto/moto/commit/f215e38473bd4afe0d95b81cf55d898eb18a6c06"><code>f215e38</code></a>
Admin: Post-release steps</li>
<li>See full diff in <a
href="https://github.com/getmoto/moto/compare/5.0.23...5.0.24">compare
view</a></li>
</ul>
</details>
<br />

Updates `mypy` from 1.13.0 to 1.14.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's
changelog</a>.</em></p>
<blockquote>
<h1>Mypy Release Notes</h1>
<h2>Next release</h2>
<p>...</p>
<h2>Mypy 1.14</h2>
<p>We’ve just uploaded mypy 1.14 to the Python Package Index (<a
href="https://pypi.org/project/mypy/">PyPI</a>).
Mypy is a static type checker for Python. This release includes new
features and bug fixes.
You can install it as follows:</p>
<pre><code>python3 -m pip install -U mypy
</code></pre>
<p>You can read the full documentation for this release on <a
href="http://mypy.readthedocs.io">Read the Docs</a>.</p>
<h3>Change to Enum Membership Semantics</h3>
<p>As per the updated <a
href="https://typing.readthedocs.io/en/latest/spec/enums.html#defining-members">typing
specification for enums</a>,
enum members must be left unannotated.</p>
<pre lang="python"><code>class Pet(Enum):
    CAT = 1  # Member attribute
    DOG = 2  # Member attribute
<pre><code># New error: Enum members must be left unannotated
WOLF: int = 3

species: str  # Considered a non-member attribute
</code></pre>
<p></code></pre></p>
<p>In particular, the specification change can result in issues in type
stubs (<code>.pyi</code> files), since
historically it was common to leave the value absent:</p>
<pre lang="python"><code># In a type stub (.pyi file)
<p>class Pet(Enum):
# Change in semantics: previously considered members,
# now non-member attributes
CAT: int
DOG: int</p>
<pre><code># Mypy will now issue a warning if it detects this
# situation in type stubs:
# &amp;gt; Detected enum &amp;quot;Pet&amp;quot; in a type stub with
zero
# &amp;gt; members. There is a chance this is due to a recent
# &amp;gt; change in the semantics of enum membership. If so,
# &amp;gt; use `member = value` to mark an enum member,
</code></pre>
<p>&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python/mypy/commit/6f37859612cd8670724c2ee2df21aa691276a9dc"><code>6f37859</code></a>
Remove +dev from version for release 1.14</li>
<li><a
href="https://github.com/python/mypy/commit/5a6a7548a9ae25c79690108b1dc1aaec559a18de"><code>5a6a754</code></a>
Minor updates to 1.14 changelog (<a
href="https://redirect.github.com/python/mypy/issues/18310">#18310</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/9772d486ada2c198811c34f47be7d0bad44cdbf5"><code>9772d48</code></a>
Update changelog for release 1.14 (<a
href="https://redirect.github.com/python/mypy/issues/18301">#18301</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/92473c8bef8a2969e2a649c6c84b3165ba342b0c"><code>92473c8</code></a>
Warn about --follow-untyped-imports (<a
href="https://redirect.github.com/python/mypy/issues/18249">#18249</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/e6ce8be8a61a4a8c17523a828e800a76331ee4b5"><code>e6ce8be</code></a>
PEP 702 (<a
href="https://github.com/deprecated"><code>@​deprecated</code></a>):
descriptors (<a
href="https://redirect.github.com/python/mypy/issues/18090">#18090</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/5082a221f33e6f2ceb32830f733890a1b21061db"><code>5082a22</code></a>
[mypyc] Document optimized bytes ops and additional str ops (<a
href="https://redirect.github.com/python/mypy/issues/18242">#18242</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/ee19ea7d26ccdda3e0e79ef36aeb98cddb527903"><code>ee19ea7</code></a>
[mypyc] Add primitives and specialization for ord() (<a
href="https://redirect.github.com/python/mypy/issues/18240">#18240</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/cc45bec732d6ccf4f846c5fd40617fed9cc04e8d"><code>cc45bec</code></a>
[mypyc] Make exception type check in assertRaises test helper precise
(<a
href="https://redirect.github.com/python/mypy/issues/18241">#18241</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/f51090d053874aed0f3bfdb354e42f641296eaac"><code>f51090d</code></a>
Make &quot;deprecated&quot; Note a standard Error, disabled by default
(<a
href="https://redirect.github.com/python/mypy/issues/18192">#18192</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/242873a2e8a1d98762b30fcf7b28a699a230279d"><code>242873a</code></a>
Implement flag to allow typechecking of untyped modules (<a
href="https://redirect.github.com/python/mypy/issues/17712">#17712</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/python/mypy/compare/v1.13.0...v1.14.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 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 <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>
  • Loading branch information
dependabot[bot] authored Dec 30, 2024
1 parent 4b89a5a commit ad31519
Showing 1 changed file with 38 additions and 38 deletions.
76 changes: 38 additions & 38 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ad31519

Please sign in to comment.