⬆️(project) upgrade python dependencies #40
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==1.7.9
->==1.8.2
==24.8.0
->==24.10.0
==3.3.0
->==3.3.3
==8.3.3
->==8.3.4
==5.0.0
->==6.0.0
==0.31.1
->==0.35.0
==0.25.3
->==0.25.6
==5.1.1
->==6.0.1
Release Notes
PyCQA/bandit (bandit)
v1.8.2
Compare Source
What's Changed
Full Changelog: PyCQA/bandit@1.8.1...1.8.2
v1.8.1
Compare Source
What's Changed
New Contributors
Full Changelog: PyCQA/bandit@1.8.0...1.8.1
v1.8.0
Compare Source
What's Changed
Full Changelog: PyCQA/bandit@1.7.10...1.8.0
v1.7.10
Compare Source
What's Changed
httpx
inB113
by @mkniewallner in https://github.com/PyCQA/bandit/pull/1060New Contributors
Full Changelog: PyCQA/bandit@1.7.9...1.7.10
psf/black (black)
v24.10.0
Compare Source
Highlights
mypyc-compiled wheels. (#4436) (#4449)
safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please
use Python 3.12.6 or Python 3.12.4 instead. (#4447)
Stable style
X | Y
style unions.(#4453)
%%
magic (#4462)Preview style
def fn(*args: *tuple[*Ts, T]) -> None: pass
) (#4440)Caching
--unstable
(#4466)Packaging
blackd
now requires a newer version of aiohttp. (#4451)Output
pylint-dev/pylint (pylint)
v3.3.3
Compare Source
What's new in Pylint 3.3.3?
Release date: 2024-12-23
False Positives Fixed
Fix false positives for
undefined-variable
for classes using Python 3.12generic type syntax.
Closes #9335
Fix a false positive for
use-implicit-booleaness-not-len
. No lint should be emitted forgenerators (
len
is not defined for generators).Refs #10100
Other Bug Fixes
Fix
Unable to import 'collections.abc' (import-error)
on Python 3.13.1.Closes #10112
v3.3.2
Compare Source
False Positives Fixed
Fix a false positive for
potential-index-error
when an indexed iterablecontains a starred element that evaluates to more than one item.
Closes #10076
Other Bug Fixes
Fixes the issue with --source-root option not working when the source files are in a subdirectory of the source root (e.g. when using a /src layout).
Closes #10026
v3.3.1
Compare Source
What's new in Pylint 3.3.1?
Release date: 2024-09-24
False Positives Fixed
Fix regression causing some f-strings to not be inferred as strings.
Closes #9947
pytest-dev/pytest (pytest)
v8.3.4
Compare Source
pytest 8.3.4 (2024-12-01)
Bug fixes
#12592: Fixed
KeyError
{.interpreted-text role="class"} crash when using--import-mode=importlib
in a directory layout where a directory contains a child directory with the same name.#12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the
AST
, like executing.#12849: ANSI escape codes for colored output now handled correctly in
pytest.fail
{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.#9353:
pytest.approx
{.interpreted-text role="func"} now uses strict equality when given booleans.Improved documentation
#10558: Fix ambiguous docstring of
pytest.Config.getoption
{.interpreted-text role="func"}.#10829: Improve documentation on the current handling of the
--basetemp
option and its lack of retention functionality (temporary directory location and retention
{.interpreted-text role="ref"}).#12866: Improved cross-references concerning the
recwarn
{.interpreted-text role="fixture"} fixture.#12966: Clarify
filterwarnings
{.interpreted-text role="ref"} docs on filter precedence/order when using multiple@pytest.mark.filterwarnings <pytest.mark.filterwarnings ref>
{.interpreted-text role="ref"} marks.Contributor-facing changes
pytest-dev/pytest-cov (pytest-cov)
v6.0.0
Compare Source
Now it will perform the check just like
coverage report
would.--cov-precision
cli option that can override the value set in your coverage configuration.Colin-b/pytest_httpx (pytest-httpx)
v0.35.0
Compare Source
Changed
httpx
==0.28.*v0.34.0
Compare Source
Added
is_optional
parameter is now available on responses and callbacks registration. Allowing to add optional responses while keeping other responses as mandatory. Refer to documentation for more details.is_reusable
parameter is now available on responses and callbacks registration. Allowing to add multi-match responses while keeping other responses as single-match. Refer to documentation for more details.Fixed
httpx_mock.get_request
will now also propose to refine filters if more than one request is found instead of only proposing to switch tohttpx_mock.get_requests
.v0.33.0
Compare Source
Added
3.13
.should_mock
option (callable returning a boolean) is now available, defaulting to always returningTrue
. Refer to documentation for more details.match_files
andmatch_data
parameters. Refer to documentation for more details.match_extensions
parameter. Refer to documentation for more details.Removed
non_mocked_hosts
option is not available anymore. Useshould_mock
instead as in the following sample:www.
depending on your usage.v0.32.0
Compare Source
Added
can_send_already_matched_responses
(boolean), defaulting toFalse
.httpx.TimeoutException
message issued in case of unmatched request is now linking documentation on how to reuse responses (in case some responses are already matched).Fixed
-
to highlight the fact that this is a list, preventing misapprehension in case only one element exists.-
to highlight the fact that this is a list, preventing misapprehension in case only one element exists.httpx.TimeoutException
message issued in case of unmatched request is now prefixing available responses with-
to highlight the fact that this is a list, preventing misapprehension in case only one element exists.httpx.TimeoutException
message issued in case of unmatched request is now listing unmatched responses (in registration order) before already matched one (still in registration order).httpx.TimeoutException
message issued in case of unmatched request or assertion failure message in case of unmatched responses at teardown) is now displaying if the response was already matched or not and less misleading in it's phrasing about what it can match (a single request by default).Changed
pytest.mark.httpx_mock(can_send_already_matched_responses=True)
option.HTTPXMock
class was only exposed for type hinting purpose. This is now explained in the class docstring.__init__
signature will be documented and considered a breaking change.__init__
now expects one parameter, the newly introduced (since [0.31.0]) options.HTTPXMockOptions
class was never intended to be exposed and is now marked as private.v0.31.2
Compare Source
Fixed
httpx_mock
marker can now be defined at different levels for a single test.getsentry/responses (responses)
v0.25.6
Compare Source
v0.25.5
Compare Source
pypa/twine (twine)
v6.0.1
Compare Source
v6.0.0
Compare Source
Configuration
📅 Schedule: Branch creation - "before 7am on monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.