fix(deps): update all non-major dependencies
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
coverage | dev | patch |
7.6.9 -> 7.6.10
|
faker (changelog) | dependencies | minor |
33.1.0 -> 33.3.0
|
google-auth | dependencies | minor |
2.36.0 -> 2.37.0
|
google-cloud-kms (source) | dependencies | minor |
3.1.1 -> 3.2.1
|
google-cloud-secret-manager (source) | dependencies | minor |
2.21.1 -> 2.22.0
|
pre-commit/mirrors-mypy | repository | minor |
v1.13.0 -> v1.14.1
|
pydantic (changelog) | dependencies | patch |
2.10.3 -> 2.10.4
|
pydantic-settings (changelog) | dependencies | minor |
2.6.1 -> 2.7.1
|
uis/devops/continuous-delivery/ci-templates | repository | minor |
v6.2.0 -> v6.4.4
|
Note: The pre-commit
manager in Renovate is not supported by the pre-commit
maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.
Release Notes
nedbat/coveragepy (coverage)
v7.6.10
-
Fix: some descriptions of missing branches in HTML and LCOV reports were incorrect when multi-line statements were involved (
issue 1874
_ andissue 1875
_). These are now fixed. -
Fix: Python 3.14
defers evaluation of annotations <pep649_>
_ by moving them into separate code objects. That code is rarely executed, so coverage.py would mark them as missing, as reported inissue 1908
_. Now they are ignored by coverage automatically. -
Fixed an obscure and mysterious problem on PyPy 3.10 seemingly involving mocks, imports, and trace functions:
issue 1902
_. To be honest, I don't understand the problem or the solution, butgit bisect
helped find it, and now it's fixed. -
Docs: re-wrote the :ref:
subprocess
page to put multiprocessing first and to highlight the correct use of :class:multiprocessing.Pool <python:multiprocessing.pool.Pool>
.
.. _issue 1874: https://github.com/nedbat/coveragepy/issues/1874 .. _issue 1875: https://github.com/nedbat/coveragepy/issues/1875 .. _issue 1902: https://github.com/nedbat/coveragepy/issues/1902 .. _issue 1908: https://github.com/nedbat/coveragepy/issues/1908 .. _pep649: https://docs.python.org/3.14/whatsnew/3.14.html#pep-649-deferred-evaluation-of-annotations
.. _changes_7-6-9:
joke2k/faker (faker)
v33.3.0
- Add support for Zulu (
zu_ZA
) address provider and corresponding tests. Thanks @AliYmn.
v33.2.0
- Add currency provider for
uk_UA
. Thanks @SaulTigh.
v33.1.3
- Fix type annotation on Python 3.8.
v33.1.2
- Fix
ru_RU
passport provider. Thanks @denisSurkov.
v33.1.1
- Fix address number output issue in
ko_KR
address provider. Thanks @semi-yu.
googleapis/google-cloud-python (google-cloud-kms)
v3.2.1
: google-cloud-kms: v3.2.1
Documentation
v3.2.0
: google-cloud-kms: v3.2.0
Features
- Add support for opt-in debug logging (feb5c03)
Bug Fixes
- Fix typing issue with gRPC metadata when key ends in -bin (feb5c03)
Documentation
pydantic/pydantic (pydantic)
v2.10.4
What's Changed
Packaging
- Bump
pydantic-core
to v2.27.2 by @davidhewitt in #11138
Fixes
- Fix for comparison of
AnyUrl
objects by @alexprabhat99 in #11082 - Properly fetch PEP 695 type params for functions, do not fetch annotations from signature by @Viicos in #11093
- Include JSON Schema input core schema in function schemas by @Viicos in #11085
- Add
len
to_BaseUrl
to avoid TypeError by @Kharianne in #11111 - Make sure the type reference is removed from the seen references by @Viicos in #11143
New Contributors
- @FyZzyss made their first contribution in #10789
- @tamird made their first contribution in #10948
- @felixxm made their first contribution in #11077
- @alexprabhat99 made their first contribution in #11082
- @Kharianne made their first contribution in #11111
pydantic/pydantic-settings (pydantic-settings)
v2.7.1
v2.7.0
What's Changed
- Fix
test_protected_namespace_defaults
with -Wdefault by @CyberTailor in https://github.com/pydantic/pydantic-settings/pull/462 - Make tests more robust to the running environment by @CyberTailor in https://github.com/pydantic/pydantic-settings/pull/464
- Fix rendering of annotations in code example by @Viicos in https://github.com/pydantic/pydantic-settings/pull/470
- Fix alias resolution for default settings source. by @kschwab in https://github.com/pydantic/pydantic-settings/pull/468
- Use the class name in the
__repr__
implementations by @dlax in https://github.com/pydantic/pydantic-settings/pull/465 - Fix default help text for union of submodels. by @kschwab in https://github.com/pydantic/pydantic-settings/pull/472
- Add support for CliMutuallyExclusiveGroup. by @kschwab in https://github.com/pydantic/pydantic-settings/pull/473
- Disable abbreviations on internal parser. by @kschwab in https://github.com/pydantic/pydantic-settings/pull/477
- Fix Secret field parsing by @hramezani in https://github.com/pydantic/pydantic-settings/pull/478
- Fix alias resolution to use preferred key. by @kschwab in https://github.com/pydantic/pydantic-settings/pull/481
- Strip annotated when getting submodels during CLI parsing. by @kschwab in https://github.com/pydantic/pydantic-settings/pull/490
- Removing return type from the function in test by @hramezani in https://github.com/pydantic/pydantic-settings/pull/491
- Relax default protected_namespaces by @hramezani in https://github.com/pydantic/pydantic-settings/pull/483
- Add support for CLI kebab case flag. by @kschwab in https://github.com/pydantic/pydantic-settings/pull/489
- Change reference of default values validation in documentation by @Viicos in https://github.com/pydantic/pydantic-settings/pull/496
- Improve field value parsing by adding
NoDecode
andForceDecode
annotations by @hramezani in https://github.com/pydantic/pydantic-settings/pull/492 - Fix attribute error on Python 3.9 with typing.Sequence by @hramezani in https://github.com/pydantic/pydantic-settings/pull/497
- Prepare release 2.7.0 by @hramezani in https://github.com/pydantic/pydantic-settings/pull/499
New Contributors
- @CyberTailor made their first contribution in https://github.com/pydantic/pydantic-settings/pull/462
- @dlax made their first contribution in https://github.com/pydantic/pydantic-settings/pull/465
Full Changelog: https://github.com/pydantic/pydantic-settings/compare/v2.6.1...v2.7.0
uis/devops/continuous-delivery/ci-templates (uis/devops/continuous-delivery/ci-templates)
v6.4.4
v6.4.3
v6.4.2
v6.4.1
v6.4.0
v6.3.0
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.
Merge request reports
Activity
mentioned in issue #37
added 1 commit
- 4f91fd8d - chore(deps): update dependency uis/devops/continuous-delivery/ci-templates to v6.4.1
added 1 commit
- 55ff7c34 - fix(deps): update all non-major dependencies
added 1 commit
- db02e2dc - fix(deps): update all non-major dependencies
added 1 commit
- ef6aca20 - fix(deps): update all non-major dependencies
added 1 commit
- 214b9262 - fix(deps): update all non-major dependencies
added 1 commit
- 1af01113 - fix(deps): update all non-major dependencies
added 1 commit
- f0b2f2ca - fix(deps): update all non-major dependencies
added 1 commit
- f264ceb1 - fix(deps): update all non-major dependencies
added 1 commit
- dfe1f83d - fix(deps): update all non-major dependencies
added 1 commit
- 48a0d538 - fix(deps): update all non-major dependencies
added 1 commit
- d0ebb12d - fix(deps): update all non-major dependencies