Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the pip group across 1 directory with 6 updates #402

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2024

Bumps the pip group with 6 updates in the / directory:

Package From To
mypy 1.11.2 1.12.0
boto3-stubs-lite[iam,s3,sts] 1.35.33 1.35.40
boto3 1.35.33 1.35.40
botocore 1.35.33 1.35.40
distlib 0.3.8 0.3.9
mkdocs-material 9.5.39 9.5.40

Updates mypy from 1.11.2 to 1.12.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Mypy 1.12

We’ve just uploaded mypy 1.12 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements 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.

Support Python 3.12 Syntax for Generics (PEP 695)

Support for the new type parameter syntax introduced in Python 3.12 is now enabled by default, documented, and no longer experimental. It was available through a feature flag in mypy 1.11 as an experimental feature.

This example demonstrates the new syntax:

# Generic function
def f[T](https://github.com/python/mypy/blob/master/x: T) -> T: ...
reveal_type(f(1))  # Revealed type is 'int'
Generic class
class C[T]:
def init(self, x: T) -> None:
self.x = x
c = C('a')
reveal_type(c.x)  # Revealed type is 'str'
Type alias
type A[T] = C[list[T]]

For more information, refer to the documentation.

These improvements are included:

  • Document Python 3.12 type parameter syntax (Jukka Lehtosalo, PR 17816)
  • Further documentation updates (Jukka Lehtosalo, PR 17826)
  • Allow Self return types with contravariance (Jukka Lehtosalo, PR 17786)
  • Enable new type parameter syntax by default (Jukka Lehtosalo, PR 17798)
  • Generate error if new-style type alias used as base class (Jukka Lehtosalo, PR 17789)
  • Inherit variance if base class has explicit variance (Jukka Lehtosalo, PR 17787)

... (truncated)

Commits

Updates boto3-stubs-lite[iam,s3,sts] from 1.35.33 to 1.35.40

Commits

Updates boto3 from 1.35.33 to 1.35.40

Commits
  • 8c407d1 Merge branch 'release-1.35.40'
  • cc0487e Bumping version to 1.35.40
  • b1f3f73 Add changelog entries from botocore
  • f2b18d3 Merge branch 'release-1.35.39' into develop
  • 9dd723f Merge branch 'release-1.35.39'
  • dff7abc Bumping version to 1.35.39
  • b29280c Add changelog entries from botocore
  • c92c039 Merge branch 'release-1.35.38' into develop
  • b03916d Merge branch 'release-1.35.38'
  • c2a060e Bumping version to 1.35.38
  • Additional commits viewable in compare view

Updates botocore from 1.35.33 to 1.35.40

Commits
  • 41d910f Merge branch 'release-1.35.40'
  • de00677 Bumping version to 1.35.40
  • d7b78f0 Update endpoints model
  • 1b6d6fa Update to latest models
  • 35ed03b Merge branch 'release-1.35.39'
  • 5efce9e Merge branch 'release-1.35.39' into develop
  • 4c97570 Bumping version to 1.35.39
  • 46b2c87 Update to latest models
  • 2352cb2 Merge branch 'release-1.35.38'
  • 003ebdb Merge branch 'release-1.35.38' into develop
  • Additional commits viewable in compare view

Updates distlib from 0.3.8 to 0.3.9

Changelog

Sourced from distlib's changelog.

0.3.9


Released: 2024-10-09
  • scripts

    • Merge #215: preload script wrappers on Windows to assist with a pip issue (thanks, Paul Moore).

    • Fix #220: Remove duplicated newline in shebang of windows launcher (thanks. A2uria).

    • Fix #230: Add handling for cross-compilation environments (thanks, Russell Keith-Magee).

  • util

    • Fix #224: Do not use the absolute path to cache wheel extensions (thanks, Stewart Miles).
  • wheel

    • Fix #222: Support mounting wheels that use extensions without an EXTENSIONS file (thanks, Stewart Miles).

    • Fix #225: Add support for wheel compatibility with the limited API (thanks, Stewart Miles).

Commits
  • fab584e Changes for 0.3.9.
  • 148fa95 Remove duplicated newline in shebang of windows launcher (#221)
  • d1f40d6 Fix whitespace at end of file.
  • 2c4d2fa Add support for wheel compatibility with the limited API. (#228)
  • fac84c7 Do not use the absolute path to cache wheel extensions. (#226)
  • 6fbadf1 Add wheel with a C extension to test mounting (#229)
  • a16423f Add handling for cross-compilation environments. (#231)
  • cbd4ae1 Upgrade codecov workflow to v4 (#232)
  • 5235013 Ignore .vscode project files. (#223)
  • 888c48b Preload script wrappers at import time (#215)
  • Additional commits viewable in compare view

Updates mkdocs-material from 9.5.39 to 9.5.40

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.5.40

  • Updated Latvian translations
  • Fixed #7597: Social cards not using site name on home page

Thanks go to @​pekkaklarck and @​klejejs for their contributions

Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.5.40 (2024-10-10)

  • Updated Latvian translations
  • Fixed #7597: Social cards not using site name on home page

mkdocs-material-9.5.39+insiders-4.53.14 (2024-09-29)

  • Fixed #7567: Empty headlines when using typeset plugin with anchorlinks

mkdocs-material-9.5.39 (2024-09-29)

  • Fixed #7226: not staying on page when using mike's canonical versioning

mkdocs-material-9.5.38 (2024-09-26)

  • Added Albanian translations

mkdocs-material-9.5.37 (2024-09-25)

  • Added 4th and 5th level ordered list styles
  • Fixed #7548: Tags have no spacing in search

mkdocs-material-9.5.36 (2024-09-21)

  • Fixed #7544: Social cards incorrectly rendering HTML entities
  • Fixed #7542: Improved support for setting custom list styles

mkdocs-material-9.5.35 (2024-09-18)

  • Fixed #7498: Search not showing for Vietnamese language

mkdocs-material-9.5.34+insiders-4.53.13 (2024-09-14)

  • Fixed #7520: Social plugin errors for generated files (MkDocs 1.6+)

mkdocs-material-9.5.34 (2024-08-31)

  • Updated Mermaid.js to version 11 (latest)

mkdocs-material-9.5.33 (2024-08-23)

  • Fixed #7453: Incorrect position of tooltip when sorting table

mkdocs-material-9.5.32 (2024-08-19)

  • Fixed RXSS vulnerability via deep link in search results
  • Added support for fetching latest release from GitLab

mkdocs-material-9.5.31+insiders-4.53.12 (2024-08-02)

... (truncated)

Commits

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 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [mypy](https://github.com/python/mypy) | `1.11.2` | `1.12.0` |
| [boto3-stubs-lite[iam,s3,sts]](https://github.com/youtype/mypy_boto3_builder) | `1.35.33` | `1.35.40` |
| [boto3](https://github.com/boto/boto3) | `1.35.33` | `1.35.40` |
| [botocore](https://github.com/boto/botocore) | `1.35.33` | `1.35.40` |
| [distlib](https://github.com/pypa/distlib) | `0.3.8` | `0.3.9` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.39` | `9.5.40` |



Updates `mypy` from 1.11.2 to 1.12.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11.2...v1.12.0)

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

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

Updates `botocore` from 1.35.33 to 1.35.40
- [Commits](boto/botocore@1.35.33...1.35.40)

Updates `distlib` from 0.3.8 to 0.3.9
- [Release notes](https://github.com/pypa/distlib/releases)
- [Changelog](https://github.com/pypa/distlib/blob/master/CHANGES.rst)
- [Commits](pypa/distlib@0.3.8...0.3.9)

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

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: boto3-stubs-lite[iam,s3,sts]
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: distlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependency-updates For automated dependency updates python Contribution requires python labels Oct 14, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 21, 2024

Superseded by #403.

@dependabot dependabot bot closed this Oct 21, 2024
@dependabot dependabot bot deleted the dependabot/pip/pip-e6449e58a5 branch October 21, 2024 20:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency-updates For automated dependency updates python Contribution requires python
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants