Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 1, 2025

Bumps the pip group with 9 updates:

Package From To
coverage 7.8.0 7.8.2
mypy[faster-cache] 1.15.0 1.16.0
boto3-stubs-lite[iam,s3,sts] 1.38.7 1.38.27
types-pyyaml 6.0.12.20250402 6.0.12.20250516
boto3 1.38.7 1.38.27
botocore 1.38.7 1.38.27
mkdocs-material 9.6.12 9.6.14
mkdocstrings-python 1.16.10 1.16.11
mkdocstrings-python-legacy 0.2.6 0.2.7

Updates coverage from 7.8.0 to 7.8.2

Changelog

Sourced from coverage's changelog.

Version 7.8.2 — 2025-05-23

  • Wheels are provided for Windows ARM64 on Python 3.11, 3.12, and 3.13. Thanks, Finn Womack <pull 1972_>_.

.. _issue 1971: nedbat/coveragepy#1971 .. _pull 1972: nedbat/coveragepy#1972

.. _changes_7-8-1:

Version 7.8.1 — 2025-05-21

  • A number of EncodingWarnings were fixed that could appear if you've enabled PYTHONWARNDEFAULTENCODING, fixing issue 1966. Thanks, Henry Schreiner <pull 1967_>.

  • Fixed a race condition when using sys.monitoring with free-threading Python, closing issue 1970_.

.. _issue 1966: nedbat/coveragepy#1966 .. _pull 1967: nedbat/coveragepy#1967 .. _issue 1970: nedbat/coveragepy#1970

.. _changes_7-8-0:

Commits
  • 51ab2e5 build: have to keep expected dist counts in sync
  • be7bbf2 docs: sample HTML for 7.8.2
  • 3cee850 docs: prep for 7.8.2
  • 39bc6b0 docs: provide more details if the kit matrix is edited.
  • a608fb3 build: add support for Windows arm64 (#1972)
  • 2fe6225 build: run tox lint if actions have changed
  • 3d93a78 docs: docs need scriv for making github releases
  • 0c443a2 build: bump version to 7.8.2
  • ed98b87 docs: sample HTML for 7.8.1
  • b98bc9b docs: prep for 7.8.1
  • Additional commits viewable in compare view

Updates mypy[faster-cache] from 1.15.0 to 1.16.0

Changelog

Sourced from mypy[faster-cache]'s changelog.

Mypy Release Notes

Next Release

Mypy 1.16

We’ve just uploaded mypy 1.16 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Different Property Getter and Setter Types

Mypy now supports using different types for a property getter and setter:

class A:
    _value: int
@property
def foo(self) -&gt; int:
    return self._value
@foo.setter
def foo(self, x: str | int) -&gt; None:
try:
self._value = int(x)
except ValueError:
raise Exception(f&quot;'{x}' is not a valid value for 'foo'&quot;)

This was contributed by Ivan Levkivskyi (PR 18510).

Flexible Variable Redefinitions (Experimental)

Mypy now allows unannotated variables to be freely redefined with different types when using the experimental --allow-redefinition-new flag. You will also need to enable --local-partial-types. Mypy will now infer a union type when different types are assigned to a variable:

# mypy: allow-redefinition-new, local-partial-types
def f(n: int, b: bool) -> int | str:
if b:
x = n
else:
</tr></table>

... (truncated)

Commits
  • 9e72e96 Update version to 1.16.0
  • 8fe719f Add changelog for 1.16 (#19138)
  • 2a036e7 Revert "Infer correct types with overloads of Type[Guard | Is] (#19161)
  • b6da4fc Allow enum members to have type objects as values (#19160)
  • 334469f [mypyc] Improve documentation of native and non-native classes (#19154)
  • a499d9f Document --allow-redefinition-new (#19153)
  • 96525a2 Merge commit '9e45dadcf6d8dbab36f83d9df94a706c0b4f9207' into release-1.16
  • 9e45dad Clear more data in TypeChecker.reset() instead of asserting (#19087)
  • 772cd0c Add --strict-bytes to --strict (#19049)
  • 0b65f21 Admit that Final variables are never redefined (#19083)
  • Additional commits viewable in compare view

Updates boto3-stubs-lite[iam,s3,sts] from 1.38.7 to 1.38.27

Release notes

Sourced from boto3-stubs-lite[iam,s3,sts]'s releases.

8.8.0 - Python 3.8 runtime is back

Changed

  • [services] install_requires section is calculated based on dependencies in use, so typing-extensions version is set properly
  • [all] Replaced typing imports with collections.abc with a fallback to typing for Python <3.9
  • [all] Added aliases for builtins.list, builtins.set, builtins.dict, and builtins.type, so Python 3.8 runtime should work as expected again (reported by @​YHallouard in #340 and @​Omri-Ben-Yair in #336)
  • [all] Unions use the same type annotations as the rest of the structures due to proper fallbacks

Fixed

  • [services] Universal input/output shapes were not replaced properly in service subresources
  • [docs] Simplified doc links rendering for services
  • [services] Cleaned up unnecessary imports in client.pyi
  • [builder] Import records with fallback are always rendered
Commits

Updates types-pyyaml from 6.0.12.20250402 to 6.0.12.20250516

Commits

Updates boto3 from 1.38.7 to 1.38.27

Commits
  • ccacc66 Merge branch 'release-1.38.27'
  • 531a41c Bumping version to 1.38.27
  • 47419ec Add changelog entries from botocore
  • 173e2b4 Merge branch 'release-1.38.26'
  • 62b7d27 Merge branch 'release-1.38.26' into develop
  • 99ba763 Bumping version to 1.38.26
  • 1133430 Add changelog entries from botocore
  • 3797b9c Merge branch 'release-1.38.25'
  • f84d4e8 Merge branch 'release-1.38.25' into develop
  • 42157c8 Bumping version to 1.38.25
  • Additional commits viewable in compare view

Updates botocore from 1.38.7 to 1.38.27

Commits
  • 994a156 Merge branch 'release-1.38.27'
  • ff2e580 Bumping version to 1.38.27
  • 9ac3725 Update endpoints model
  • 261a369 Update to latest models
  • 24cc629 Merge branch 'release-1.38.26'
  • bc32256 Merge branch 'release-1.38.26' into develop
  • bc937ec Bumping version to 1.38.26
  • 8cb37cd Update to latest models
  • 7e73993 Merge branch 'release-1.38.25'
  • bd41487 Merge branch 'release-1.38.25' into develop
  • Additional commits viewable in compare view

Updates mkdocs-material from 9.6.12 to 9.6.14

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.6.14

  • Fixed #8215: Social plugin crashes when CairoSVG is updated to 2.8

mkdocs-material-9.6.13

  • Fixed #8204: Annotations showing list markers in print view
  • Fixed #8153: Improve style of cardinality symbols in Mermaid.js ER diagrams
Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.6.14 (2025-05-13)

  • Fixed #8215: Social plugin crashes when CairoSVG is updated to 2.8

mkdocs-material-9.6.13 (2025-05-10)

  • Fixed #8204: Annotations showing list markers in print view
  • Fixed #8153: Improve style of cardinality symbols in Mermaid.js ER diagrams

mkdocs-material-9.6.12 (2025-04-17)

  • Fixed #8158: Flip footnote back reference icon for right-to-left languages

mkdocs-material-9.6.11 (2025-04-01)

  • Updated Docker image to latest Alpine Linux
  • Bump required Jinja version to 3.1
  • Fixed #8133: Jinja filter items not available (9.6.10 regression)
  • Fixed #8128: Search plugin not entirely disabled via enabled setting

mkdocs-material-9.6.10 (2025-03-30)

This version is a pure refactoring release, and does not contain new features or bug fixes. It strives to improve the compatibility of our templates with alternative Jinja-like template engines that we're currently exploring, including minijinja.

Additionally, it replaces several instances of Python function invocations with idiomatic use of template filters. All instances where variables have been mutated inside templates have been replaced. Most changes have been made in partials, and only a few in blocks, and all of them are fully backward compatible, so no changes to overrides are necessary.

Note that this release does not replace the Jinja template engine with minijinja. However, our templates are now 99% compatible with minijinja, which means we can explore alternative Jinja-compatible implementations. Additionally, immutability and removal of almost all Python function invocations means much more idiomatic templating.

mkdocs-material-9.6.9 (2025-03-17)

  • Updated Serbo-Croatian translations
  • Fixed #8086: Custom SVG icons containing hashes break rendering
  • Fixed #8067: Drawer has gap on right side in Firefox on some OSs

mkdocs-material-9.6.8+insiders-4.53.16 (2025-03-13)

  • Fixed #8019: Tooltips have precedence over instant previews

mkdocs-material-9.6.8 (2025-03-13)

... (truncated)

Commits

Updates mkdocstrings-python from 1.16.10 to 1.16.11

Release notes

Sourced from mkdocstrings-python's releases.

1.16.11

1.16.11 - 2025-05-24

Compare with 1.16.10

Bug Fixes

Changelog

Sourced from mkdocstrings-python's changelog.

1.16.11 - 2025-05-24

Compare with 1.16.10

Bug Fixes

Commits
  • 5d2ba0a chore: Prepare release 1.16.11
  • 7f95686 fix: Fix highlighting for signature with known special names like __init__
  • 0a35b20 fix: Use default font-size for parameter headings
  • ba66969 fix: Prevent uppercasing H5 titles (by Material for MkDocs)
  • 096960a fix: Use configured heading even when signature is not separated
  • d4e618a fix: Render attribute names without full path in ToC
  • bb36fa1 chore: Template upgrade
  • See full diff in compare view

Updates mkdocstrings-python-legacy from 0.2.6 to 0.2.7

Release notes

Sourced from mkdocstrings-python-legacy's releases.

0.2.7

0.2.7 - 2025-05-22

Compare with 0.2.6

Bug Fixes

Changelog

Sourced from mkdocstrings-python-legacy's changelog.

0.2.7 - 2025-05-22

Compare with 0.2.6

Bug Fixes

Commits
  • 79e1516 chore: Prepare release 0.2.7
  • 92a1acb chore: Template upgrade
  • d607389 fix: Write paths as strings, not Path instances in sys.path.insert commands
  • See full diff in compare view

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 commands and options

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

Bumps the pip group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [coverage](https://github.com/nedbat/coveragepy) | `7.8.0` | `7.8.2` |
| [mypy[faster-cache]](https://github.com/python/mypy) | `1.15.0` | `1.16.0` |
| [boto3-stubs-lite[iam,s3,sts]](https://github.com/youtype/mypy_boto3_builder) | `1.38.7` | `1.38.27` |
| [types-pyyaml](https://github.com/typeshed-internal/stub_uploader) | `6.0.12.20250402` | `6.0.12.20250516` |
| [boto3](https://github.com/boto/boto3) | `1.38.7` | `1.38.27` |
| [botocore](https://github.com/boto/botocore) | `1.38.7` | `1.38.27` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.6.12` | `9.6.14` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.16.10` | `1.16.11` |
| [mkdocstrings-python-legacy](https://github.com/mkdocstrings/python-legacy) | `0.2.6` | `0.2.7` |


Updates `coverage` from 7.8.0 to 7.8.2
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](coveragepy/coveragepy@7.8.0...7.8.2)

Updates `mypy[faster-cache]` from 1.15.0 to 1.16.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.15.0...v1.16.0)

Updates `boto3-stubs-lite[iam,s3,sts]` from 1.38.7 to 1.38.27
- [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
- [Commits](https://github.com/youtype/mypy_boto3_builder/commits)

Updates `types-pyyaml` from 6.0.12.20250402 to 6.0.12.20250516
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `boto3` from 1.38.7 to 1.38.27
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.38.7...1.38.27)

Updates `botocore` from 1.38.7 to 1.38.27
- [Commits](boto/botocore@1.38.7...1.38.27)

Updates `mkdocs-material` from 9.6.12 to 9.6.14
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.6.12...9.6.14)

Updates `mkdocstrings-python` from 1.16.10 to 1.16.11
- [Release notes](https://github.com/mkdocstrings/python/releases)
- [Changelog](https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/python@1.16.10...1.16.11)

Updates `mkdocstrings-python-legacy` from 0.2.6 to 0.2.7
- [Release notes](https://github.com/mkdocstrings/python-legacy/releases)
- [Changelog](https://github.com/mkdocstrings/python-legacy/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/python-legacy@0.2.6...0.2.7)

---
updated-dependencies:
- dependency-name: coverage
  dependency-version: 7.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mypy[faster-cache]
  dependency-version: 1.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: boto3-stubs-lite[iam,s3,sts]
  dependency-version: 1.38.27
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: types-pyyaml
  dependency-version: 6.0.12.20250516
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: boto3
  dependency-version: 1.38.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: botocore
  dependency-version: 1.38.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mkdocs-material
  dependency-version: 9.6.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mkdocstrings-python
  dependency-version: 1.16.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mkdocstrings-python-legacy
  dependency-version: 0.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Contribution requires python labels Jun 1, 2025
@gruebel gruebel merged commit 4b87293 into master Jun 1, 2025
13 checks passed
@gruebel gruebel deleted the dependabot/pip/pip-97d37233f3 branch June 1, 2025 20:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Contribution requires python

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants