Bump the pip-deps group across 1 directory with 8 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 2
(about 1 month ago)
(29 days ago)
dependencies python skip-changelog
⚠️ Dependabot is rebasing this PR ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Bumps the pip-deps group with 8 updates in the / directory:
Package | From | To |
---|---|---|
pymongo | 4.13.2 |
4.14.0 |
pytest-asyncio | 1.0.0 |
1.1.0 |
cryptography | 45.0.5 |
45.0.6 |
gitpython | 3.1.44 |
3.1.45 |
botocore | 1.39.4 |
1.40.5 |
boto3 | 1.39.4 |
1.40.5 |
freezegun | 1.5.3 |
1.5.4 |
mypy | 1.17.0 |
1.17.1 |
Updates pymongo
from 4.13.2 to 4.14.0
Release notes
Sourced from pymongo's releases.
PyMongo 4.14.0
Community notes: https://www.mongodb.com/community/forums/t/pymongo-4-14-released/326906
Changelog
Sourced from pymongo's changelog.
Changes in Version 4.14.0 (2025/08/06)
.. warning:: PyMongo 4.14 drops support for MongoDB 4.0. PyMongo now supports MongoDB 4.2+.
PyMongo 4.14 brings a number of changes including:
Dropped support for MongoDB 4.0.
Added preliminary support for Python 3.14 and 3.14 with free-threading. We do not yet support the following with Python 3.14:
- Subinterpreters (
concurrent.interpreters
)- Free-threading with Encryption
- mod_wsgi
Removed experimental support for free-threading support in Python 3.13.
Added :attr:
bson.codec_options.TypeRegistry.codecs
and :attr:bson.codec_options.TypeRegistry.fallback_encoder
properties to allow users to directly access the type codecs and fallback encoder for a given :class:bson.codec_options.TypeRegistry
.Added :meth:
pymongo.asynchronous.mongo_client.AsyncMongoClient.append_metadata
and :meth:pymongo.mongo_client.MongoClient.append_metadata
to allow instantiated MongoClients to send client metadata on-demandImproved performance of selecting a server with the Primary selector.
Introduces a minor breaking change. When encoding :class:
bson.binary.BinaryVector
, aValueError
will be raised if the 'padding' metadata field is < 0 or > 7, or non-zero for any type other than PACKED_BIT.Changed :meth:
~pymongo.uri_parser.parse_uri
'soptions
return value to be typedict
instead of_CaseInsensitiveDictionary
.
Commits
6354d6c
Prepare 4.14.0 release (#2458)d7074ba
PYTHON-5454 & PYTHON-5455 Add preliminary python 3.14 support (#2451)d11cf20
Fix In-Use Encryption examples (#2457)baec1e0
Bump pyright from 1.1.392.post0 to 1.1.403 (#2455)003ff56
Bump the actions group with 2 updates (#2454)cbe1b9e
Update coverage requirement from <=7.5,>=5 to >=5,<=7.10.2 (#2453)0249a08
Bump mypy from 1.14.1 to 1.17.1 (#2452)bfaab82
[Spec Resync] 07-28-2025 (#2447)9f64dad
PYTHON-5473 - Better test assertions for booleans (#2450)9514a67
PYTHON-5441 - Unskip gridfs download chunk tests (#2449)- Additional commits viewable in compare view
Updates pytest-asyncio
from 1.0.0 to 1.1.0
Release notes
Sourced from pytest-asyncio's releases.
pytest-asyncio 1.1.0
Added
- Propagation of ContextVars from async fixtures to other fixtures and tests on Python 3.10 and older (#127)
- Cancellation of tasks when the
loop_scope
ends (#200)- Warning when the current event loop is closed by a test
Fixed
- Error about missing loop when calling functions requiring a loop in the
finally
clause of a task (#878)- An error that could cause duplicate warnings to be issued
Notes for Downstream Packagers
- Added runtime dependency on backports.asyncio.runner for use with Python 3.10 and older
pytest-asyncio 1.1.0a1
1.1.0a1 - 2025-06-30
Added
- Propagation of ContextVars from async fixtures to other fixtures and tests on Python 3.10 and older (#127)
- Cancellation of tasks when the loop_scope ends (#200)
- Warning when the current event loop is closed by a test
Fixed
- Error about missing loop when calling functions requiring a loop in the finally clause of a task (#878)
- An error that could cause duplicate warnings to be issued
Notes for Downstream Packagers
- Added runtime dependency on backports.asyncio.runner for use with Python 3.10 and older
Commits
ce06c07
chore: Prepare release of v1.1.0.d9a8dcc
ci: Workaround missing Tag annotation during release.d66e12f
[pre-commit.ci] pre-commit autoupdate9e5e25f
Build(deps): Bump certifi in /dependencies/docs0e63423
Build(deps): Bump hypothesis in /dependencies/defaultbd4551c
Build(deps): Bump ncipollo/release-action from 1.16.0 to 1.18.08e20305
Build(deps): Bump hypothesis in /dependencies/defaultb7a8ab5
Build(deps): Bump coverage from 7.9.1 to 7.9.2 in /dependencies/default8cc378d
Build(deps): Bump typing-extensions in /dependencies/defaultfb6bfbf
[pre-commit.ci] pre-commit autoupdate- Additional commits viewable in compare view
Updates cryptography
from 45.0.5 to 45.0.6
Changelog
Sourced from cryptography's changelog.
45.0.6 - 2025-08-05
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.2.
.. _v45-0-5:
Commits
66198c2
Bump for release (#13249)- See full diff in compare view
Updates gitpython
from 3.1.44 to 3.1.45
Release notes
Sourced from gitpython's releases.
3.1.45
What's Changed
- Fix various version-related CI breakages by
@EliahKagan
in gitpython-developers/GitPython#1987- Do some CI cleanup to make reports clearer and future changes easier by
@EliahKagan
in gitpython-developers/GitPython#1989- Affirm that gitdb and smmap advisories can also be created by
@EliahKagan
in gitpython-developers/GitPython#1991- Fix links to gitdb and smmap
SECURITY.md
files by@EliahKagan
in gitpython-developers/GitPython#1992- Test Python 3.13 regularly on Ubuntu and macOS on CI by
@EliahKagan
in gitpython-developers/GitPython#1990- Repo.rev_parse: Handle ^{commit} correctly by
@flichtenheld
in gitpython-developers/GitPython#1996- Fuzzing: Fix Broken Fuzz Test for Git Submodule Handling by
@DaveLak
in gitpython-developers/GitPython#1997- Work around Cygwin CI failure #2004, except for
test_installation
by@EliahKagan
in gitpython-developers/GitPython#2007- Mark
test_installation
xfail on Cygwin CI by@EliahKagan
in gitpython-developers/GitPython#2009IndexFile._to_relative_path
- fix case where absolute path gets stripped of trailing slash by@kamilkozik7
in gitpython-developers/GitPython#2012- Use WSL1 on CI by
@EliahKagan
in gitpython-developers/GitPython#2010- Test free-threaded Python (but only on Linux) by
@EliahKagan
in gitpython-developers/GitPython#2011- Use property decorator to support typing by
@Andrej730
in gitpython-developers/GitPython#2015- Fix some incorrect sphinx markups in the docstrings by
@koyuki7w
in gitpython-developers/GitPython#2018- replace quansight-labs/setup-python with actions/setup-python by
@ngoldbaum
in gitpython-developers/GitPython#2019- remove type assertions from util.py by
@gcmarx
in gitpython-developers/GitPython#2028- correctly handle
uname-cmd
that doesn't point to an executable file by@gcmarx
in gitpython-developers/GitPython#2026- Use newer ruff style by
@EliahKagan
in gitpython-developers/GitPython#2031- Have CodeQL scan GitHub Actions workflows as well as Python code by
@EliahKagan
in gitpython-developers/GitPython#2032- Specify explicit
contents: read
workflow permissions by@EliahKagan
in gitpython-developers/GitPython#2033- Fix GitConfigParser not removing quotes from values by
@betaboon
in gitpython-developers/GitPython#2035- Preserve quoted leading and trailing single-line config var whitespace by
@EliahKagan
in gitpython-developers/GitPython#2036- Refactor Git.{AutoInterrupt,CatFileContentStream} nesting by
@EliahKagan
in gitpython-developers/GitPython#2037- Fix Git.{AutoInterrupt,CatFileContentStream} static typing by
@EliahKagan
in gitpython-developers/GitPython#2039- Fix CI
mypy
command on free-threaded Python by@EliahKagan
in gitpython-developers/GitPython#2040- Split Cygwin CI into non-
performance
andperformance
test jobs by@EliahKagan
in gitpython-developers/GitPython#2042- Express conditional
setuptools
requirement statically by@EliahKagan
in gitpython-developers/GitPython#2043- Fix ambiguous
_safer_popen_windows
comment by@EliahKagan
in gitpython-developers/GitPython#2044- Clarify
USE_SHELL
warning helper signature by@EliahKagan
in gitpython-developers/GitPython#2045- Test
ConfigParser
with whitespace outside the value by@EliahKagan
in gitpython-developers/GitPython#2046- Remove explicit empty
""
handling in ConfigParser by@EliahKagan
in gitpython-developers/GitPython#2047- Various style improvements by
@EliahKagan
in gitpython-developers/GitPython#2049- Don't remove quotes if
\
or"
are present inside by@EliahKagan
in gitpython-developers/GitPython#2048- fix updating submodules with relative urls by
@david0
in gitpython-developers/GitPython#2051- Run
cat_file.py
fixture without site customizations by@EliahKagan
in gitpython-developers/GitPython#2052- Fix Cygwin installation on CI for
pip
by@EliahKagan
in gitpython-developers/GitPython#2053- Fail
test_installation
on warnings, and remove deprecated license classifier by@EliahKagan
in gitpython-developers/GitPython#2054- Add clearer error version for unsupported index error by
@tombedor
in gitpython-developers/GitPython#2055- Fix name collision by
@NMertsch
in gitpython-developers/GitPython#2060- Allow relative path url in submodules for submodule_update by
@t-webber
in gitpython-developers/GitPython#2062New Contributors
@flichtenheld
made their first contribution in gitpython-developers/GitPython#1996@kamilkozik7
made their first contribution in gitpython-developers/GitPython#2012@koyuki7w
made their first contribution in gitpython-developers/GitPython#2018@ngoldbaum
made their first contribution in gitpython-developers/GitPython#2019@gcmarx
made their first contribution in gitpython-developers/GitPython#2028@betaboon
made their first contribution in gitpython-developers/GitPython#2035
... (truncated)
Commits
6ba2c0a
Prepare a new releasebbb3d00
Merge pull request #2062 from t-webber/relative_path_submodules1ee1e78
Add test case for cloning submodules with relative pathec2e2c8
Allow relative path url in submodules for submodule_update4d529b7
Merge pull request #2060 from NMertsch/2023-fix-gitconfigparser-autodoc80fd2c1
Don't treat sphinx warnings as errorsa4aadb0
Fix name collision4c7778a
Merge pull request #2057 from gitpython-developers/dependabot/github_actions/...5033c3f
Merge pull request #2056 from gitpython-developers/dependabot/github_actions/...496392b
Bump cygwin/cygwin-install-action from 5 to 6- Additional commits viewable in compare view
Updates botocore
from 1.39.4 to 1.40.5
Commits
8a1acfd
Merge branch 'release-1.40.5'efd4d43
Bumping version to 1.40.5a61e933
Update to latest models3594ee3
Merge branch 'release-1.40.4'b6b8781
Merge branch 'release-1.40.4' into developef99ca6
Bumping version to 1.40.4160a948
Update endpoints modele81fe4f
Update to latest models21afbfc
Merge branch 'release-1.40.3'd95cbb2
Merge branch 'release-1.40.3' into develop- Additional commits viewable in compare view
Updates boto3
from 1.39.4 to 1.40.5
Commits
a91e94d
Merge branch 'release-1.40.5'4a3fa2d
Bumping version to 1.40.5fcb006f
Add changelog entries from botocoreb7bfc90
Merge branch 'release-1.40.4'4d4ddba
Merge branch 'release-1.40.4' into developa092acc
Bumping version to 1.40.48a912ef
Add changelog entries from botocorebeb14ee
Update set_credentials to no longer pass aws_account_id (#4586)8a46af6
Only pass aws_account_id to botocore when explicitly set (#4585)3868a64
Merge branch 'release-1.40.3'- Additional commits viewable in compare view
Updates freezegun
from 1.5.3 to 1.5.4
Changelog
Sourced from freezegun's changelog.
1.5.4
- Fix: Ability to yield fixtures (broken in 1.5.3)
Commits
Updates mypy
from 1.17.0 to 1.17.1
Changelog
Sourced from mypy's changelog.
Mypy 1.17.1
- Retain
None
as constraints bottom if no bottoms were provided (Stanislav Terliakov, PR 19485)- Fix "ignored exception in
hasattr
" in dmypy (Stanislav Terliakov, PR 19428)- Prevent a crash when InitVar is redefined with a method in a subclass (Stanislav Terliakov, PR 19453)
Acknowledgements
Thanks to all mypy contributors who contributed to this release:
- Alexey Makridenko
- Brian Schubert
- Chad Dombrova
- Chainfire
- Charlie Denton
- Charulata
- Christoph Tyralla
- CoolCat467
- Donal Burns
- Guy Wilson
- Ivan Levkivskyi
- johnthagen
- Jukka Lehtosalo
- Łukasz Kwieciński
- Marc Mueller
- Michael J. Sullivan
- Mikhail Golubev
- Sebastian Rittau
- Shantanu
- Stanislav Terliakov
- wyattscarpenter
I’d also like to thank my employer, Dropbox, for supporting mypy development.
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 </tr></table>
... (truncated)
Commits
acb2983
Bump version to 1.17.1933c913
RetainNone
as constraints bottom if no bottoms were provided (#19485)5f4428f
Fix "ignored exception inhasattr
" in dmypy (#19428)88fdeaa
Prevent a crash when InitVar is redefined with a method in a subclass (#19453)e44d14f
Bump version to 1.17.1+dev- 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
Pull Request Statistics
0
0
+0
-0
Package Dependencies
Technical Details
ID: | 4940442 |
UUID: | 3304332796 |
Node ID: | PR_kwDOOLckwc6iyBwq |
Host: | GitHub |
Repository: | mongodb/mongodb-kubernetes |