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

chore(deps-dev): bump the development-dependencies group in /backend with 17 updates #981

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 21, 2024

Bumps the development-dependencies group in /backend with 17 updates:

Package From To
bandit 1.7.8 1.7.9
black 24.4.2 24.8.0
coverage 7.3.1 7.6.1
flake8 7.0.0 7.1.1
mypy-protobuf 3.5.0 3.6.0
pep8-naming 0.13.3 0.14.1
pytest-django 4.5.2 4.8.0
pytest-xdist[psutil] 3.2.1 3.6.1
pytest 7.2.0 8.3.2
responses 0.21.0 0.25.3
flake8-bugbear 24.4.26 24.8.19
factory-boy 3.3.0 3.3.1
mypy 1.11.0 1.11.1
djangorestframework-stubs 1.8.0 3.15.0
django-stubs 1.14.0 5.0.4
docker 6.1.3 7.1.0
towncrier 23.11.0 24.7.1

Updates bandit from 1.7.8 to 1.7.9

Release notes

Sourced from bandit's releases.

1.7.9

What's Changed

New Contributors

Full Changelog: PyCQA/bandit@1.7.8...1.7.9

Commits

Updates black from 24.4.2 to 24.8.0

Release notes

Sourced from black's releases.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Changelog

Sourced from black's changelog.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Commits
  • b965c2a Prepare release 24.8.0 (#4426)
  • 9ccf279 Document find_project_root ignoring pyproject.toml without [tool.black]...
  • 14b6e61 fix: Enhace black efficiently to skip directories listed in .gitignore (#4415)
  • b1c4dd9 fix: respect braces better in f-string parsing (#4422)
  • 4b4ae43 Fix incorrect linenos on fstring tokens with escaped newlines (#4423)
  • 7fa1faf docs: fix the installation command of extra for blackd (#4413)
  • 8827acc Bump sphinx from 7.3.7 to 7.4.0 in /docs (#4404)
  • b0da11d Bump furo from 2024.5.6 to 2024.7.18 in /docs (#4409)
  • 721dff5 fix: avoid formatting backslash strings inside f-strings (#4401)
  • 7e2afc9 Update actions/checkout to v4 to stop node deprecation warnings (#4379)
  • Additional commits viewable in compare view

Updates coverage from 7.3.1 to 7.6.1

Changelog

Sourced from coverage's changelog.

Version 7.6.1 — 2024-08-04

  • Fix: coverage used to fail when measuring code using :func:runpy.run_path <python:runpy.run_path> with a :class:Path <python:pathlib.Path> argument. This is now fixed, thanks to Ask Hjorth Larsen <pull 1819_>_.

  • Fix: backslashes preceding a multi-line backslashed string could confuse the HTML report. This is now fixed, thanks to LiuYinCarl <pull 1828_>_.

  • Now we publish wheels for Python 3.13, both regular and free-threaded.

.. _pull 1819: nedbat/coveragepy#1819 .. _pull 1828: nedbat/coveragepy#1828

.. _changes_7-6-0:

Version 7.6.0 — 2024-07-11

  • Exclusion patterns can now be multi-line, thanks to Daniel Diniz <pull 1807_>. This enables many interesting exclusion use-cases, including those requested in issues 118 <issue 118_> (entire files), 996 <issue 996_>_ (multiple lines only when appearing together), 1741 <issue 1741_>_ (remainder of a function), and 1803 <issue 1803_>_ (arbitrary sequence of marked lines). See the :ref:multi_line_exclude section of the docs for more details and examples.

  • The JSON report now includes per-function and per-class coverage information. Thanks to Daniel Diniz <pull 1809_>_ for getting the work started. This closes issue 1793_ and issue 1532_.

  • Fixed an incorrect calculation of "(no class)" lines in the HTML classes report.

  • Python 3.13.0b3 is supported.

.. _issue 118: nedbat/coveragepy#118 .. _issue 996: nedbat/coveragepy#996 .. _issue 1532: nedbat/coveragepy#1532 .. _issue 1741: nedbat/coveragepy#1741 .. _issue 1793: nedbat/coveragepy#1793 .. _issue 1803: nedbat/coveragepy#1803 .. _pull 1807: nedbat/coveragepy#1807 .. _pull 1809: nedbat/coveragepy#1809

.. _changes_7-5-4:

Version 7.5.4 — 2024-06-22

... (truncated)

Commits
  • 29f5898 docs: sample HTML for 7.6.1
  • 9b829f1 docs: prep for 7.6.1
  • ebbb6a2 build: wheels for 3.13rc1
  • 3872525 chore: make upgrade
  • 7a27f40 test: fix a test on free-threading, use abiflags to get site-packages path co...
  • 2b53664 build: include gil/nogil in the version banner
  • da1682f docs: changelog and contributor for #1828
  • dc819ff test: two tests for #1828
  • 9aaa404 fix: properly handle backslash before multi-line string (#1828)
  • 9c50270 chore: make upgrade
  • Additional commits viewable in compare view

Updates flake8 from 7.0.0 to 7.1.1

Commits

Updates mypy-protobuf from 3.5.0 to 3.6.0

Changelog

Sourced from mypy-protobuf's changelog.

3.6.0

  • Remove 3.7 compatibility for typing_extensions.final/Literal
  • Bump protobuf to 4.25.3
Commits

Updates pep8-naming from 0.13.3 to 0.14.1

Release notes

Sourced from pep8-naming's releases.

0.14.1

  • Require Python 3.8 or later.

0.14.0

  • Drop support for Python 3.7.
  • Add support for Python 3.12.
  • Ignore methods decorated by @typing.override.
  • Perform case-sensitive ignore-names globbing on all platforms.
Changelog

Sourced from pep8-naming's changelog.

0.14.1 - 2024-05-17

  • Require Python 3.8 or later.

0.14.0 - 2024-05-16

  • Drop support for Python 3.7.
  • Add support for Python 3.12.
  • Ignore methods decorated by @typing.override.
  • Perform case-sensitive ignore-names globbing on all platforms.
Commits
  • f0edf20 Prepare the 0.14.1 release
  • b652e8f Merge pull request #231 from PyCQA/sigmavirus24-patch-1
  • a960999 Fix python_version
  • 9451737 Update setup.py
  • c0bcb7f Prepare the 0.14.0 release
  • 975beed Refactor FunctionArgNamesCheck (N803,N804,N805)
  • 01df3f3 Pass 'parents' as a parameter when walking the tree
  • de0963c Merge Python 3.8+ tests into main test modules
  • 0ddfcea Remove Python 3.7 compatibility code
  • 0e8f745 Drop support for Python 3.7
  • Additional commits viewable in compare view

Updates pytest-django from 4.5.2 to 4.8.0

Release notes

Sourced from pytest-django's releases.

4.8.0

https://pytest-django.readthedocs.io/en/latest/changelog.html#v4-8-0-2024-01-30

4.7.0

https://pytest-django.readthedocs.io/en/latest/changelog.html#v4-7-0-2023-11-08

4.6.0

https://pytest-django.readthedocs.io/en/latest/changelog.html#v4-6-0-2023-10-30

Changelog

Sourced from pytest-django's changelog.

v4.8.0 (2024-01-30)

Improvements ^^^^^^^^^^^^

  • Added pytest_django.asserts.assertMessages() to mimic the behaviour of the :meth:~django.contrib.messages.test.MessagesTestMixin.assertMessages method for Django versions >= 5.0.

Bugfixes ^^^^^^^^

  • Fix --help/--version crash in a partially configured app.

v4.7.0 (2023-11-08)

Compatibility ^^^^^^^^^^^^^

  • Official Django 5.0 support.

  • Official Python 3.12 support.

Improvements ^^^^^^^^^^^^

  • The Django test tags from the previous release now works on any :class:~django.test.SimpleTestCase (i.e. any Django test framework test class), not just :class:~django.test.TransactionTestCase classes.

  • Some improvements for those of us who like to type their tests:

    • Add pytest_django.DjangoAssertNumQueries for typing :fixture:django_assert_num_queries and :fixture:django_assert_max_num_queries.

    • Add pytest_django.DjangoCaptureOnCommitCallbacks for typing :fixture:django_capture_on_commit_callbacks.

    • Add pytest_django.DjangoDbBlocker for typing :fixture:django_db_blocker.

v4.6.0 (2023-10-30)

Compatibility

... (truncated)

Commits
  • 49b98d1 Release 4.8.0
  • 7c04917 django_username_field example should use create_user not create
  • 0b42a93 Added assertMessages() from django.contrib.messages. (#1109)
  • 5283aa4 Fix --help/--version crash in a partially configured app
  • d0d22ba Remove redundant _setup_django call in django_test_environment
  • 6cf63b6 Upgrade GitHub Action setup-python (#1103)
  • 523c8d5 Remove MANIFEST.in file
  • 72080ad tests: make it possible to run without setting PYTHONPATH=$(pwd)
  • b17b7bc tests: make variable faithful to its name
  • 12cf877 Avoid mutable global state in SettingsWrapper
  • Additional commits viewable in compare view

Updates pytest-xdist[psutil] from 3.2.1 to 3.6.1

Changelog

Sourced from pytest-xdist[psutil]'s changelog.

pytest-xdist 3.6.1 (2024-04-28)

Bug Fixes

  • [#1071](https://github.com/pytest-dev/pytest-xdist/issues/1071) <https://github.com/pytest-dev/pytest-xdist/issues/1071>_: Add backward compatibility for deadlock issue with the execnet new main_thread_only "execmodel" triggered when pytest-cov accesses rinfo.

pytest-xdist 3.6.0 (2024-04-19)

This release was YANKED due to a regression fixed in 3.6.1.

Features

  • [#1027](https://github.com/pytest-dev/pytest-xdist/issues/1027) <https://github.com/pytest-dev/pytest-xdist/pull/1027>_:pytest-xdist workers now always execute the tests in the main thread. Previously some tests might end up executing in a separate thread other than main in the workers, due to some internal execnet`` details. This can cause problems specially with async frameworks where the event loop is running in the ``main`` thread (for example #620 pytest-dev/pytest-xdist#620`__).

Bug Fixes

  • [#1024](https://github.com/pytest-dev/pytest-xdist/issues/1024) <https://github.com/pytest-dev/pytest-xdist/issues/1024>_: Added proper handling of shouldstop (such as set by --max-fail) and shouldfail conditions in workers. Previously, a worker might have continued executing further tests before the controller could terminate the session.

  • [#1028](https://github.com/pytest-dev/pytest-xdist/issues/1028) <https://github.com/pytest-dev/pytest-xdist/issues/1028>_: Fixed compatibility issue between looponfail and editable installs.

  • [#620](https://github.com/pytest-dev/pytest-xdist/issues/620) <https://github.com/pytest-dev/pytest-xdist/issues/620>_: Use the new main_thread_only execnet "execmodel" so that code which expects to only run in the main thread will now work as expected.

  • [#937](https://github.com/pytest-dev/pytest-xdist/issues/937) <https://github.com/pytest-dev/pytest-xdist/issues/937>_: Fixed a bug where plugin would raise an incompatibility error with --pdb despite using -n0.

Removals

  • [#1053](https://github.com/pytest-dev/pytest-xdist/issues/1053) <https://github.com/pytest-dev/pytest-xdist/issues/1053>_: Dropped support for Python 3.7.

  • [#1057](https://github.com/pytest-dev/pytest-xdist/issues/1057) <https://github.com/pytest-dev/pytest-xdist/issues/1057>_: pytest>=7.0.0 is now required.

    execnet>=2.1.0 is now required.

Trivial Changes

  • [#1020](https://github.com/pytest-dev/pytest-xdist/issues/1020) <https://github.com/pytest-dev/pytest-xdist/issues/1020>_: pytest-xdist's setup.py file is removed.

    If you relied on this file, e.g. to install pytest using setup.py install, please see Why you shouldn't invoke setup.py directly <https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html#summary>_ for alternatives.

... (truncated)

Commits
  • 4dd2978 Release 3.6.1
  • b397288 Merge pull request #1072 from zmedico/gateway-cache-rinfo
  • 12b3cce Cache execnet gateway rinfo during WorkerController setup
  • c93a106 build(deps): bump hynek/build-and-inspect-python-package (#1066)
  • 52e2022 [pre-commit.ci] pre-commit autoupdate (#1073)
  • 699f939 Merge pull request #1070 from pytest-dev/release-3.6.0
  • 80bc0b8 Release 3.6.0
  • 20e3ac7 Use execnet main_thread_only execmodel (#1027)
  • 0a4238f Merge pull request #1067 from pytest-dev/pre-commit-ci-update-config
  • 0686279 [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates pytest from 7.2.0 to 8.3.2

Release notes

Sourced from pytest's releases.

8.3.2

pytest 8.3.2 (2024-07-24)

Bug fixes

  • #12652: Resolve regression [conda]{.title-ref} environments where no longer being automatically detected.

    -- by RonnyPfannschmidt{.interpreted-text role="user"}

8.3.1

pytest 8.3.1 (2024-07-20)

The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes.

8.3.0

pytest 8.3.0 (2024-07-20)

New features

  • #12231: Added [--xfail-tb]{.title-ref} flag, which turns on traceback output for XFAIL results.

    • If the [--xfail-tb]{.title-ref} flag is not given, tracebacks for XFAIL results are NOT shown.
    • The style of traceback for XFAIL is set with [--tb]{.title-ref}, and can be [auto|long|short|line|native|no]{.title-ref}.
    • Note: Even if you have [--xfail-tb]{.title-ref} set, you won't see them if [--tb=no]{.title-ref}.

    Some history:

    With pytest 8.0, [-rx]{.title-ref} or [-ra]{.title-ref} would not only turn on summary reports for xfail, but also report the tracebacks for xfail results. This caused issues with some projects that utilize xfail, but don't want to see all of the xfail tracebacks.

    This change detaches xfail tracebacks from [-rx]{.title-ref}, and now we turn on xfail tracebacks with [--xfail-tb]{.title-ref}. With this, the default [-rx]{.title-ref}/ [-ra]{.title-ref} behavior is identical to pre-8.0 with respect to xfail tracebacks. While this is a behavior change, it brings default behavior back to pre-8.0.0 behavior, which ultimately was considered the better course of action.

  • #12281: Added support for keyword matching in marker expressions.

    Now tests can be selected by marker keyword arguments. Supported values are int{.interpreted-text role="class"}, (unescaped) str{.interpreted-text role="class"}, bool{.interpreted-text role="class"} & None{.interpreted-text role="data"}.

    See marker examples <marker_keyword_expression_example>{.interpreted-text role="ref"} for more information.

    -- by lovetheguitar{.interpreted-text role="user"}

  • #12567: Added --no-fold-skipped command line option.

    If this option is set, then skipped tests in short summary are no longer grouped by reason but all tests are printed individually with their nodeid in the same way as other statuses.

    -- by pbrezina{.interpreted-text role="user"}

... (truncated)

Commits
  • bbcec9c Prepare release version 8.3.2
  • 78fe8b6 Merge pull request #12657 from pytest-dev/patchback/backports/8.3.x/6c806b499...
  • 238bad2 Merge pull request #12656 from RonnyPfannschmidt/fix-12652-detect-conda-env
  • ae6034a Merge pull request #12641 from pytest-dev/patchback/backports/8.3.x/c03989cee...
  • 31337ab Merge pull request #12640 from pytest-dev/update-user
  • ca3070b Merge pull request #12637 from pytest-dev/release-8.3.1
  • de98446 Prepare release version 8.3.1
  • bd0a042 Merge pull request #12636 from pytest-dev/update-release-notes
  • 664325b doc/changelog: update 8.3.0 notes
  • 19d225d Merge pull request #12635 from pytest-dev/release-8.3.0
  • Additional commits viewable in compare view

Updates responses from 0.21.0 to 0.25.3

Release notes

Sourced from responses's releases.

0.25.3

  • Fixed recorder not saving and loading response headers with yaml files. See #715

0.25.2

  • Mulligan on 0.25.1 to run release pipeline correctly.
  • Added matchers.body_matcher for matching string request bodies. See #717

Responses 0.25.1

What's Changed

New Contributors

Full Changelog: getsentry/responses@0.25.0...0.25.1

0.25.0

  • Added support for Python 3.12
  • Fixed matchers.header_matcher not failing when a matched header is missing from the request. See #702

0.24.1

  • Reverted overloads removal
  • Added typing to Call attributes.
  • Fix socket issues (see #693)

0.24.0

  • Added BaseResponse.calls to access calls data of a separate mocked request. See #664
  • Added real_adapter_send parameter to RequestsMock that will allow users to set through which function they would like to send real requests
  • Added support for re.Pattern based header matching.
  • Added support for gzipped response bodies to json_params_matcher.
  • Fix Content-Type headers issue when the header was duplicated. See #644
  • Moved types-pyyaml dependency to tests_requires
  • Removed Python3.7 support

0.23.3

  • Allow urllib3>=1.25.10

0.23.2

This release is the last to support Python 3.7

  • Updated dependency to urllib3>=2 and requests>=2.30.0. See #635
  • Fixed issue when custom adapters were sending only positional args. See #642
  • Expose unbound_on_send method in RequestsMock class. This method returns new function that is called by RequestsMock instead of original send method defined by any adapter.

0.23.1

... (truncated)

Changelog

Sourced from responses's changelog.

0.25.3

  • Fixed recorder not saving and loading response headers with yaml files. See #715

0.25.2

  • Mulligan on 0.25.1 to run release pipeline correctly.
  • Added matchers.body_matcher for matching string request bodies. See #717

0.25.1

  • Fixed tests failures during RPM package builds. See #706
  • Fix mocked HEAD responses that have Content-Length set. See #712
  • Fixed error messages when matches fail: inputs are not sorted or reformatted. See #704

0.25.0

  • Added support for Python 3.12
  • Fixed matchers.header_matcher not failing when a matched header is missing from the request. See #702

0.24.1

  • Reverted overloads removal
  • Added typing to Call attributes.
  • Fix socket issues (see #693)

0.24.0

  • Added BaseResponse.calls to access calls data of a separate mocked request. See #664
  • Added real_adapter_send parameter to RequestsMock that will allow users to set through which function they would like to send real requests
  • Added support for re.Pattern based header matching.
  • Added support for gzipped response bodies to json_params_matcher.
  • Fix Content-Type headers issue when the header was duplicated. See #644
  • Moved types-pyyaml dependency to tests_requires
  • Removed Python3.7 support

0.23.3

  • Allow urllib3>=1.25.10

... (truncated)

Commits

Updates flake8-bugbear from 24.4.26 to 24.8.19

Release notes

Sourced from flake8-bugbear's releases.

24.8.19

  • B910: implement to suggest using Counter() instead of defaultdict(int) (#489)
  • B901: Do not trigger with explicit Generator return type (#481)
  • B008: add some comments, rename b008_extend_immutable_calls (#476)
  • B040: exception with note added not reraised or used (#477)
  • B039, Add ContextVar with mutable literal or function call as default
  • B040: Add Exception with added note not reraised. (#474)
  • Run tests in Python 3.13
  • Type annotated code (#481 + #483)
  • Replace hash with unsafe_hash (#486)
Commits
  • 2f4e42f Update CHANGES + move to version 24.8.19 to release
  • c50e9dc [pre-commit.ci] pre-commit autoupdate (#487)
  • f0eeda8 Replace hash with unsafe_hash (#486)
  • 5939910 Implemented #323: Added new check B910 to suggest using Counter() instead of ...
  • 33993a4 [pre-commit.ci] pre-commit autoupdate (#484)
  • 5ccce79 More types (#483)
  • cfda1e8 Do not trigger B901 with explicit Generator return type (#481)
  • b15feed Set up mypy (#482)
  • 3157b89 add b040: exception with note added not reraised or used (#477)
  • 188eab8 Merge pull request #476 from jakkdl/contextvar_mutable_or_call_default
  • Additional commits viewable in compare view

Updates factory-boy from 3.3.0 to 3.3.1

Changelog

Sourced from factory-boy's changelog.

3.3.1 (2024-08-18)

New:

  • Add support for Django 4.2
  • Add support for Django 5.1
  • Add support for Python 3.12
  • :issue:903: Add basic typing annotations
  • Run the test suite against mongomock instead of an actual MongoDB server

Bugfix:

  • :issue:1031: Do not require :attr:~factory.alchemy.SQLAlchemyOptions.sqlalchemy_session when :attr:~factory.alchemy.SQLAlchemyOptions.sqlalchemy_session_factory is provided.

Removed:

  • Stop advertising and verifying support for Django 3.2, 4.0, 4.1
Commits
  • c38732f Preparing release 3.3.1
  • 0ee3c9d Enable "nitpicky" mode on Sphinx
  • a7d06b9 Target Django 5.x tests at version 5.1
  • ce39114 Stop testing for Django 3.2
  • c2188f7 Stop testing against PostgreSQL
  • 819acce Run the test suite against Mongomock
  • f8456f5 Remove various (obsolete) warning exemption flags
  • 8aaa29b Improve readability of alchemy checker
  • d6349de Call evaluate_pre() instead of evaluate() on Maybe decider
  • 01c0a73 test: add regression test for #965
  • Additional commits viewable in compare view

Updates mypy from 1.11.0 to 1.11.1

Commits

Updates djangorestframework-stubs from 1.8.0 to 3.15.0

Release notes

Sourced from djangorestframework-stubs's releases.

3.15.0

djangorestframework 3.15 support

Bumps the development-dependencies group in /backend with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [bandit](https://github.com/PyCQA/bandit) | `1.7.8` | `1.7.9` |
| [black](https://github.com/psf/black) | `24.4.2` | `24.8.0` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.3.1` | `7.6.1` |
| [flake8](https://github.com/pycqa/flake8) | `7.0.0` | `7.1.1` |
| [mypy-protobuf](https://github.com/nipunn1313/mypy-protobuf) | `3.5.0` | `3.6.0` |
| [pep8-naming](https://github.com/PyCQA/pep8-naming) | `0.13.3` | `0.14.1` |
| [pytest-django](https://github.com/pytest-dev/pytest-django) | `4.5.2` | `4.8.0` |
| [pytest-xdist[psutil]](https://github.com/pytest-dev/pytest-xdist) | `3.2.1` | `3.6.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.2.0` | `8.3.2` |
| [responses](https://github.com/getsentry/responses) | `0.21.0` | `0.25.3` |
| [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) | `24.4.26` | `24.8.19` |
| [factory-boy](https://github.com/FactoryBoy/factory_boy) | `3.3.0` | `3.3.1` |
| [mypy](https://github.com/python/mypy) | `1.11.0` | `1.11.1` |
| [djangorestframework-stubs](https://github.com/typeddjango/djangorestframework-stubs) | `1.8.0` | `3.15.0` |
| [django-stubs](https://github.com/typeddjango/django-stubs) | `1.14.0` | `5.0.4` |
| [docker](https://github.com/docker/docker-py) | `6.1.3` | `7.1.0` |
| [towncrier](https://github.com/twisted/towncrier) | `23.11.0` | `24.7.1` |


Updates `bandit` from 1.7.8 to 1.7.9
- [Release notes](https://github.com/PyCQA/bandit/releases)
- [Commits](PyCQA/bandit@1.7.8...1.7.9)

Updates `black` from 24.4.2 to 24.8.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@24.4.2...24.8.0)

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

Updates `flake8` from 7.0.0 to 7.1.1
- [Commits](PyCQA/flake8@7.0.0...7.1.1)

Updates `mypy-protobuf` from 3.5.0 to 3.6.0
- [Changelog](https://github.com/nipunn1313/mypy-protobuf/blob/main/CHANGELOG.md)
- [Commits](nipunn1313/mypy-protobuf@v3.5.0...v3.6.0)

Updates `pep8-naming` from 0.13.3 to 0.14.1
- [Release notes](https://github.com/PyCQA/pep8-naming/releases)
- [Changelog](https://github.com/PyCQA/pep8-naming/blob/main/CHANGELOG.rst)
- [Commits](PyCQA/pep8-naming@0.13.3...0.14.1)

Updates `pytest-django` from 4.5.2 to 4.8.0
- [Release notes](https://github.com/pytest-dev/pytest-django/releases)
- [Changelog](https://github.com/pytest-dev/pytest-django/blob/main/docs/changelog.rst)
- [Commits](pytest-dev/pytest-django@v4.5.2...v4.8.0)

Updates `pytest-xdist[psutil]` from 3.2.1 to 3.6.1
- [Release notes](https://github.com/pytest-dev/pytest-xdist/releases)
- [Changelog](https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-xdist@v3.2.1...v3.6.1)

Updates `pytest` from 7.2.0 to 8.3.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.2.0...8.3.2)

Updates `responses` from 0.21.0 to 0.25.3
- [Release notes](https://github.com/getsentry/responses/releases)
- [Changelog](https://github.com/getsentry/responses/blob/master/CHANGES)
- [Commits](getsentry/responses@0.21.0...0.25.3)

Updates `flake8-bugbear` from 24.4.26 to 24.8.19
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases)
- [Commits](PyCQA/flake8-bugbear@24.4.26...24.8.19)

Updates `factory-boy` from 3.3.0 to 3.3.1
- [Changelog](https://github.com/FactoryBoy/factory_boy/blob/master/docs/changelog.rst)
- [Commits](FactoryBoy/factory_boy@3.3.0...3.3.1)

Updates `mypy` from 1.11.0 to 1.11.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11...v1.11.1)

Updates `djangorestframework-stubs` from 1.8.0 to 3.15.0
- [Release notes](https://github.com/typeddjango/djangorestframework-stubs/releases)
- [Commits](typeddjango/djangorestframework-stubs@1.8.0...3.15.0)

Updates `django-stubs` from 1.14.0 to 5.0.4
- [Release notes](https://github.com/typeddjango/django-stubs/releases)
- [Commits](typeddjango/django-stubs@1.14.0...5.0.4)

Updates `docker` from 6.1.3 to 7.1.0
- [Release notes](https://github.com/docker/docker-py/releases)
- [Commits](docker/docker-py@6.1.3...7.1.0)

Updates `towncrier` from 23.11.0 to 24.7.1
- [Release notes](https://github.com/twisted/towncrier/releases)
- [Changelog](https://github.com/twisted/towncrier/blob/trunk/NEWS.rst)
- [Commits](twisted/towncrier@23.11.0...24.7.1)

---
updated-dependencies:
- dependency-name: bandit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: flake8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: mypy-protobuf
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: pep8-naming
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: pytest-django
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: pytest-xdist[psutil]
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: responses
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: flake8-bugbear
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: factory-boy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: djangorestframework-stubs
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: django-stubs
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: docker
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: towncrier
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner August 21, 2024 09:40
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 21, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 28, 2024

Superseded by #984.

@dependabot dependabot bot closed this Aug 28, 2024
@dependabot dependabot bot deleted the dependabot/pip/backend/development-dependencies-824342f26f branch August 28, 2024 12:28
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 Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants