FAQ | This is a LIVE service | Changelog

Skip to content

chore(deps): update all dependencies

This MR contains the following updates:

Package Type Update Change
coverage minor ==7.7.0 -> ==7.8.0
django-debug-toolbar (changelog) minor ==5.0.1 -> ==5.1.0
djangorestframework (source, changelog) minor ==3.15.2 -> ==3.16.0
faker (changelog) minor ==37.0.1 -> ==37.1.0
flake8 (changelog) minor ==7.1.2 -> ==7.2.0
mkdocs-material (changelog) patch ==9.6.9 -> ==9.6.10
mkdocstrings (changelog) patch ==0.29.0 -> ==0.29.1
mkdocstrings-python (changelog) patch ==1.16.6 -> ==1.16.8
poetry (changelog) patch ==2.1.1 -> ==2.1.2
poetry-core patch ==2.1.1 -> ==2.1.2
pycodestyle (changelog) minor ==2.12.1 -> ==2.13.0
pyflakes minor ==3.2.0 -> ==3.3.1
tox (changelog) minor ==4.24.2 -> ==4.25.0
uis/devops/continuous-delivery/ci-templates repository patch v6.7.2 -> v6.7.3

Release Notes

nedbat/coveragepy (coverage)

v7.8.0

Compare Source

  • Added a new source_dirs setting for symmetry with the existing source_pkgs setting. It's preferable to the existing source setting, because you'll get a clear error when directories don't exist. Fixes issue 1942. Thanks, Jeremy Fleischman <pull 1943_>.

  • Fix: the PYTHONSAFEPATH environment variable new in Python 3.11 is properly supported, closing issue 1696. Thanks, Philipp A. <pull 1700_>. This works properly except for a detail when using the coverage command on Windows. There you can use python -m coverage instead if you need exact emulation.

.. _issue 1696: https://github.com/nedbat/coveragepy/issues/1696 .. _pull 1700: https://github.com/nedbat/coveragepy/pull/1700 .. _issue 1942: https://github.com/nedbat/coveragepy/issues/1942 .. _pull 1943: https://github.com/nedbat/coveragepy/pull/1943

.. _changes_7-7-1:

v7.7.1

Compare Source

  • A few small tweaks to the sys.monitoring support for Python 3.14. Please test!

.. _changes_7-7-0:

django-commons/django-debug-toolbar (django-debug-toolbar)

v5.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/django-commons/django-debug-toolbar/compare/5.0.1...5.1.0

encode/django-rest-framework (djangorestframework)

v3.16.0

Compare Source

This release is considered a significant release to improve upstream support with Django and Python. Some of these may change the behaviour of existing features and pre-existing behaviour. Specifically, some fixes were added to around the support of UniqueConstraint with nullable fields which will improve built-in serializer validation.

Features

  • Add official support for Django 5.1 and its new LoginRequiredMiddleware in #​9514 and #​9657
  • Add official Django 5.2a1 support in #​9634
  • Add support for Python 3.13 in #​9527 and #​9556
  • Support Django 2.1+ test client JSON data automatically serialized in #​6511 and fix a regression in #​9615

Bug fixes

  • Fix unique together validator to respect condition's fields from UniqueConstraint in #​9360
  • Fix raising on nullable fields part of UniqueConstraint in #​9531
  • Fix unique_together validation with source in #​9482
  • Added protections to AttributeError raised within properties in #​9455
  • Fix get_template_context to handle also lists in #​9467
  • Fix "Converter is already registered" deprecation warning. in #​9512
  • Fix noisy warning and accept integers as min/max values of DecimalField in #​9515
  • Fix usages of open() in setup.py in #​9661

Translations

  • Add some missing Chinese translations in #​9505
  • Fix spelling mistakes in Farsi language were corrected in #​9521
  • Fixing and adding missing Brazilian Portuguese translations in #​9535

Removals

  • Remove support for Python 3.8 in #​9670
  • Remove long deprecated code from request wrapper in #​9441
  • Remove deprecated AutoSchema._get_reference method in #​9525

Documentation and internal changes

  • Provide tests for hashing of OperandHolder in #​9437
  • Update documentation: Add adrf third party package in #​9198
  • Update tutorials links in Community contributions docs in #​9476
  • Fix usage of deprecated Django function in example from docs in #​9509
  • Move path converter docs into a separate section in #​9524
  • Add test covering update view without queryset attribute in #​9528
  • Fix Transifex link in #​9541
  • Fix example httpie call in docs in #​9543
  • Fix example for serializer field with choices in docs in #​9563
  • Remove extra <> in validators example in #​9590
  • Update strftime link in the docs in #​9624
  • Switch to codecov GHA in #​9618
  • Add note regarding availability of the action attribute in 'Introspecting ViewSet actions' docs section in #​9633
  • Improved description of allowed throttling rates in documentation in #​9640
  • Add rest-framework-gm2m-relations package to the list of 3rd party libraries in #​9063
  • Fix a number of typos in the test suite in the docs in #​9662
  • Add django-pyoidc as a third party authentication library in #​9667

New Contributors

Full Changelog: https://github.com/encode/django-rest-framework/compare/3.15.2...3.16.0

joke2k/faker (faker)

v37.1.0

Compare Source

v37.0.2

Compare Source

  • Fix type annotiation
pycqa/flake8 (flake8)

v7.2.0

Compare Source

squidfunk/mkdocs-material (mkdocs-material)

v9.6.10: mkdocs-material-9.6.10

Compare Source

This version is a pure refactoring release, and does not contain new features or bug fixes. It strives to improve the compatibility of our templates with alternative Jinja-like template engines that we're currently exploring, including minijinja.

Additionally, it replaces several instances of Python function invocations with idiomatic use of template filters. All instances where variables have been mutated inside templates have been replaced. Most changes have been made in partials, and only a few in blocks, and all of them are fully backward compatible, so no changes to overrides are necessary.

Note that this release does not replace the Jinja template engine with minijinja. However, our templates are now 99% compatible with minijinja, which means we can explore alternative Jinja-compatible implementations. Additionally, immutability and removal of almost all Python function invocations means much more idiomatic templating.

mkdocstrings/mkdocstrings (mkdocstrings)

v0.29.1

Compare Source

Compare with 0.29.0

Dependencies
  • Remove unused typing-extensions dependency (ba98661 by Timothée Mazzucotelli).
Bug Fixes
  • Ignore invalid inventory lines (81caff5 by Josh Mitchell). MR-748
Code Refactoring
  • Rename loggers to "mkdocstrings" (1a98040 by Timothée Mazzucotelli).
mkdocstrings/python (mkdocstrings-python)

v1.16.8

Compare Source

Compare with 1.16.7

Bug Fixes
  • Prevent infinite recursion by detecting parent-member cycles (f3917e9 by Timothée Mazzucotelli). Issue-griffe-368
Code Refactoring
  • Prepare feature for ordering by __all__ value (bfb5b30 by Timothée Mazzucotelli). Issue-219
  • Sort objects without line numbers last instead of first (681afb1 by Timothée Mazzucotelli).

v1.16.7

Compare Source

Compare with 1.16.6

Code Refactoring
  • Prepare public filtering method feature (fde2019 by Timothée Mazzucotelli). Issue-78
python-poetry/poetry (poetry)

v2.1.2

Compare Source

Changed
  • Improve performance of locking dependencies (#​10275).
Fixed
  • Fix an issue where markers were not locked correctly (#​10240).
  • Fix an issue where the result of poetry lock was not deterministic (#​10276).
  • Fix an issue where poetry env activate returned the wrong command for tcsh (#​10243).
  • Fix an issue where poetry env activate returned the wrong command for pwsh on Linux (#​10256).
Docs
  • Update basic usage section to reflect new default layout (#​10203).
poetry-core (2.1.2)
  • Improve performance of marker operations (#​851).
  • Fix an issue where incorrect markers were calculated when removing parts covered by the project's Python constraint (#​841, #​846).
  • Fix an issue where extra markers were not simplified (#​842, #​845, #​847).
  • Fix an issue where the intersection and union of markers was not deterministic (#​843).
  • Fix an issue where the intersection of python_version markers was not recognized as empty (#​849).
  • Fix an issue where python_version markers were not simplified (#​848, #​851).
  • Fix an issue where Python constraints on a package were converted into invalid markers (#​853).
python-poetry/poetry-core (poetry-core)

v2.1.2

Compare Source

Changed
  • Improve performance of marker operations (#​851).
Fixed
  • Fix an issue where incorrect markers were calculated when removing parts covered by the project's Python constraint (#​841, #​846).
  • Fix an issue where extra markers were not simplified (#​842, #​845, #​847).
  • Fix an issue where the intersection and union of markers was not deterministic (#​843).
  • Fix an issue where the intersection of python_version markers was not recognized as empty (#​849).
  • Fix an issue where python_version markers were not simplified (#​848, #​851).
  • Fix an issue where Python constraints on a package were converted into invalid markers (#​853).
PyCQA/pyflakes (pyflakes)

v3.3.1

Compare Source

v3.3.0

Compare Source

tox-dev/tox (tox)

v4.25.0

Compare Source

What's Changed

Full Changelog: https://github.com/tox-dev/tox/compare/4.24.2...4.25.0

uis/devops/continuous-delivery/ci-templates (uis/devops/continuous-delivery/ci-templates)

v6.7.3

Compare Source


Configuration

📅 Schedule: Branch creation - "on sunday" in timezone Europe/London, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Edited by uis-devops-renovatebot

Merge request reports

Loading