fix(deps): update all non-major dependencies
This MR contains the following updates:
| Package | Change | Age | Confidence | Type | Update |
|---|---|---|---|---|---|
| @types/jest (source) | 29.5.1 -> 29.5.14 |
dependencies | patch | ||
| @types/node (source) | 18.16.6 -> 18.19.130 |
dependencies | minor | ||
| @types/react (source) | 18.2.6 -> 18.3.27 |
dependencies | minor | ||
| @types/react-dom (source) | 18.2.4 -> 18.3.7 |
dependencies | minor | ||
| black (changelog) |
25.1.0 -> 25.11.0
|
docs | minor | ||
| django (changelog) |
5.2 -> 5.2.9
|
dependencies | patch | ||
| django-cors-headers (changelog) |
4.7.0 -> 4.9.0
|
dependencies | minor | ||
| django-crispy-forms (changelog) |
2.3 -> 2.5
|
dependencies | minor | ||
| django-filter (changelog) |
25.1 -> 25.2
|
dependencies | minor | ||
| djangorestframework (source, changelog) |
3.16.0 -> 3.16.1
|
dependencies | patch | ||
| drf-spectacular |
^0.28.0 -> ^0.29.0
|
dependencies | minor | ||
| mkdocs-gen-files (changelog) |
^0.5.0 -> ^0.6.0
|
docs | minor | ||
| mkdocs-material (changelog) |
9.6.11 -> 9.7.0
|
docs | minor | ||
| mkdocstrings (changelog) |
^0.29.1 -> ^0.30.0
|
docs | minor | ||
| mkdocstrings-python (changelog) |
1.16.10 -> 1.19.0
|
docs | minor | ||
| oracledb (changelog) |
3.1.0 -> 3.4.1
|
dependencies | minor | ||
| poetry (changelog) |
2.1.2 -> 2.2.1
|
minor | |||
| pre-commit/mirrors-mypy |
v1.4.1 -> v1.19.0
|
repository | minor | ||
| pre-commit/pre-commit-hooks |
v4.4.0 -> v4.6.0
|
repository | minor | ||
| psf/black |
23.3.0 -> 23.12.1
|
repository | minor | ||
| psycopg (changelog) |
3.2.6 -> 3.3.1
|
dependencies | minor | ||
| python-poetry/poetry |
1.8.2 -> 1.8.5
|
repository | patch | ||
| pyyaml (source) |
6.0.2 -> 6.0.3
|
dependencies | patch | ||
| react (source) | 18.2.0 -> 18.3.1 |
dependencies | minor | ||
| react-dom (source) | 18.2.0 -> 18.3.1 |
dependencies | minor | ||
| social-auth-app-django (changelog) |
5.4.3 -> 5.6.0
|
dependencies | minor | ||
| timothycrosley/isort |
5.12.0 -> 5.13.2
|
repository | minor | ||
| tox (changelog) |
4.25.0 -> 4.32.0
|
minor | |||
| uis/devops/continuous-delivery/ci-templates |
v6.7.0 -> v6.15.0
|
repository | minor | ||
| whitenoise (changelog) |
6.9.0 -> 6.11.0
|
dependencies | minor |
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
psf/black (black)
v25.11.0
Highlights
- Enable base 3.14 support (#4804)
- Add support for the new Python 3.14 t-string syntax introduced by PEP 750 (#4805)
Stable style
- Fix bug where comments between
# fmt: offand# fmt: onwere reformatted (#4811) - Comments containing fmt directives now preserve their exact formatting instead of being normalized (#4811)
Preview style
- Move
multiline_string_handlingfrom--unstableto--preview(#4760) - Fix bug where module docstrings would be treated as normal strings if preceded by comments (#4764)
- Fix bug where python 3.12 generics syntax split line happens weirdly (#4777)
- Standardize type comments to form
# type: <value>(#4645) - Fix
fix_fmt_skip_in_one_linerspreview feature to respect# fmt: skipfor compound statements with semicolon-separated bodies (#4800)
Configuration
- Add
no_cacheoption to control caching behavior. (#4803)
Packaging
- Releases now include arm64 Linux binaries (#4773)
- Releases now include arm64 Windows binaries and wheels (#4814)
Output
- Write unchanged content to stdout when excluding formatting from stdin using pipes (#4610)
Blackd
- Implemented BlackDClient. This simple python client allows to easily send formatting requests to blackd (#4774)
Integrations
- Enable 3.14 base CI (#4804)
- Enhance GitHub Action
psf/blackto support therequired-versionmajor-version-only "stability" format when using pyproject.toml (#4770) - Improve error message for vim plugin users. It now handles independently vim version
- Vim: Warn on unsupported Vim and Python versions independently (#4772)
- Vim: Print the import paths when importing black fails (#4675)
- Vim: Fix handling of virtualenvs that have a different Python version (#4675)
v25.9.0
Highlights
- Remove support for pre-python 3.7
await/asyncas soft keywords/variable names (#4676)
Stable style
- Fix crash while formatting a long
delstatement containing tuples (#4628) - Fix crash while formatting expressions using the walrus operator in complex
withstatements (#4630) - Handle
# fmt: skipfollowed by a comment at the end of file (#4635) - Fix crash when a tuple appears in the
asclause of awithstatement (#4634) - Fix crash when tuple is used as a context manager inside a
withstatement (#4646) - Fix crash when formatting a
\followed by a\rfollowed by a comment (#4663) - Fix crash on a
\\r\n(#4673) - Fix crash on
await ...(where...is a literalEllipsis) (#4676) - Fix crash on parenthesized expression inside a type parameter bound (#4684)
- Fix crash when using line ranges excluding indented single line decorated items (#4670)
Preview style
- Fix a bug where one-liner functions/conditionals marked with
# fmt: skipwould still be formatted (#4552) - Improve
multiline_string_handlingwith ternaries and dictionaries (#4657) - Fix a bug where
string_processingwould not split f-strings directly after expressions (#4680) - Wrap the
inclause of comprehensions across lines if necessary (#4699) - Remove parentheses around multiple exception types in
exceptandexcept*withoutas. (#4720) - Add
\rstyle newlines to the potential newlines to normalize file newlines both from and to (#4710)
Parser
- Rewrite tokenizer to improve performance and compliance (#4536)
- Fix bug where certain unusual expressions (e.g., lambdas) were not accepted in type parameter bounds and defaults. (#4602)
Performance
- Avoid using an extra process when running with only one worker (#4734)
Integrations
- Fix the version check in the vim file to reject Python 3.8 (#4567)
- Enhance GitHub Action
psf/blackto read Black version from an additional section in pyproject.toml:[project.dependency-groups](#4606) - Build gallery docker image with python3-slim and reduce image size (#4686)
Documentation
- Add FAQ entry for windows emoji not displaying (#4714)
adamchainz/django-cors-headers (django-cors-headers)
v4.9.0
- Support Django 6.0.
v4.8.0
- Support Python 3.14.
django-crispy-forms/django-crispy-forms (django-crispy-forms)
v2.5
- Confirmed support for Python 3.14.
- Confirmed support for Django 6.0.
- Dropped support for Python 3.8.
v2.4
- Added support for Python 3.13.
- Confirmed support for Django 5.2.
carltongibson/django-filter (django-filter)
v25.2
-
Added testing for Django 6.0.
-
Dropped support for Django <5.2 LTS
-
Dropped support for Python 3.9.
encode/django-rest-framework (djangorestframework)
v3.16.1
This release fixes a few bugs, clean-up some old code paths for unsupported Python versions and improve translations.
Minor changes
- Cleanup optional
backports.zoneinfodependency and conditions on unsupported Python 3.8 and lower in #9681. Python versions prior to 3.9 were already unsupported so this isn't considered as a breaking change.
Bug fixes
- Fix regression in
unique_togethervalidation withSerializerMethodFieldin #9712 - Fix
UniqueTogetherValidatorto handle fields withsourceattribute in #9688 - Drop HTML line breaks on long headers in browsable API in #9438
Translations
- Add Kazakh locale support in #9713
- Update translations for Korean translations in #9571
- Update German translations in #9676
- Update Chinese translations in #9675
- Update Arabic translations-sal in #9595
- Update Persian translations in #9576
- Update Spanish translations in #9701
- Update Turkish Translations in #9749
- Fix some typos in Brazilian Portuguese translations in #9673
Documentation
- Removed reference to GitHub Issues and Discussions in #9660
- Add
drf-restwindand update outdated images inbrowsable-api.mdin #9680 - Updated funding page to represent current scope in #9686
- Fix broken Heroku JSON Schema link in #9693
- Update Django documentation links to use stable version in #9698
- Expand docs on unique constraints cause 'required=True' in #9725
- Revert extension back from
djangorestframework-guardian2todjangorestframework-guardianin #9734 - Add note to tutorial about required
requestin serializer context when usingHyperlinkedModelSerializerin #9732
Internal changes
- Update GitHub Actions to use Ubuntu 24.04 for testing in #9677
- Update test matrix to use Django 5.2 stable version in #9679
- Add
pyupgradetopre-commithooks in #9682 - Fix test with Django 5 when
pytzis available in #9715
New Contributors
- @araggohnxd made their first contribution in #9673
- @mbeijen made their first contribution in #9660
- @stefan6419846 made their first contribution in #9676
- @ren000thomas made their first contribution in #9675
- @ulgens made their first contribution in #9682
- @bukh-sal made their first contribution in #9595
- @rezatn0934 made their first contribution in #9576
- @Rohit10jr made their first contribution in #9693
- @kushibayev made their first contribution in #9713
- @alihassancods made their first contribution in #9732
- @kulikjak made their first contribution in #9715
- @Natgho made their first contribution in #9749
Full Changelog: https://github.com/encode/django-rest-framework/compare/3.16.0...3.16.1
tfranzel/drf-spectacular (drf-spectacular)
v0.29.0
- Add l18n handling for Decimal field
#​1466 <https://github.com/tfranzel/drf-spectacular/issues/1466>_ - Fix LogoutSerializer for JWT/dj_rest_auth
#​1392 <https://github.com/tfranzel/drf-spectacular/issues/1392>_ - fix: support token blacklist feature in rest_auth [Bart van Andel]
- [django-filter] Add null_label if set in ChoiceFilter (
#​1450 <https://github.com/tfranzel/drf-spectacular/issues/1450>_) [Enric Pou] - fix: camelize tuples/fixed length array (
#​1432 <https://github.com/tfranzel/drf-spectacular/issues/1432>_) [Chris Wesseling] - Fix items:False case in enum hook
#​1432 <https://github.com/tfranzel/drf-spectacular/issues/1432>_ - Add option to overwrite serializer description
#​1463 <https://github.com/tfranzel/drf-spectacular/issues/1463>_ - Fix
OpenApiViewExtensionnot providing view instance underself.target(#​1405 <https://github.com/tfranzel/drf-spectacular/issues/1405>_) [astro-stan] - Move list default fix to source of the problem
#​1436 <https://github.com/tfranzel/drf-spectacular/issues/1436>_ - Improve confusing doc
#​1461 <https://github.com/tfranzel/drf-spectacular/issues/1461>_ - Add assert to pagination test
#​1459 <https://github.com/tfranzel/drf-spectacular/issues/1459>_ - fix SafeString handling for picky CDumper (
#​1435 <https://github.com/tfranzel/drf-spectacular/issues/1435>_) - Remove EOL 3.7 from suite; pydantic not updated for <=3.8
- Fix DecimalField with decimal_places and max_digits equal. [keter2002]
- fix test for i18n changes on DRF (
#​1444 <https://github.com/tfranzel/drf-spectacular/issues/1444>_) - Improve to_filter_name support for django_filter [Matwey V. Kornilov]
- fixes prefix estimation on windows [Luis Nell]
- Fix default for array types [Stanislav Khlud]
- fix: use CSafeDumper for render yaml if available [florian]
- fix: sort list to produce same hash [florian]
- Add typing.Generic to default lib_doc_excludes [Max Howald]
- Add get_doc test for class that inherits from Generic [Max Howald]
- Add Django REST framework 3.16 support [Paolo Melchiorre]
- Fix memory leak [artemkucher]
- Fix python 3.11 slice index [Egor Litvinov]
- fix: correct port mapping for the container in README [Maksym Bieńkowski]
- Update docs [q0w]
- Allow setting callable for ENUM_NAME_OVERRIDES [q0w]
- Add allauth's DRF token auth
#​1401 <https://github.com/tfranzel/drf-spectacular/issues/1401>_ - update away from retired GH worker image
- add condition to check, that serializer Meta has model attribute [aliev_vt]
- Fix docs compile issue and update some old code (
#​1389 <https://github.com/tfranzel/drf-spectacular/issues/1389>_) [Mike Manger] - Fix location of @extend_schema_field [johnthagen]
- Remove reference to non-exposed lazy_serializer [johnthagen]
- Document how to lazily define a recursive SerializerMethod [johnthagen]
- Link to SerializerMethod docs [johnthagen]
- Document Django 5.1 support in README [johnthagen]
- Bump django from 4.2.11 to 4.2.18 in /requirements [dependabot[bot]]
- Enhance bug report template with instructions for better clarity [antoliny0919]
- add pydantic computed field to tests
#​1354 <https://github.com/tfranzel/drf-spectacular/issues/1354>_
Breaking changes / important additions:
- Finally fixed the memory leak thanks to @artKucher.
- Another performance improvement is the usage of the C versions of yaml, if available.
- Apart from that, there are a lot of small improvements and bugfixes.
oprypin/mkdocs-gen-files (mkdocs-gen-files)
v0.6.0
-
Compatibility with MkDocs 1.6 is improved - generated files don't have to have an
abs_src_path-7baa032 -
There was a bug: using
edit_uri_templatein MkDocs would preventset_edit_path()from working. This is now fixed - #37 - thanks to @frankkusters -
The MkDocs configuration file now can be
mkdocs.yaml, not onlymkdocs.yml. Thanks to @mgor in #39 -
MkDocs 1.4.1 is now the lowest supported version -
2e47124 -
Python 3.9 is now the lowest supported version.
-
The nav generator can support empty paths -
440b0bf
Full Changelog: https://github.com/oprypin/mkdocs-gen-files/compare/v0.5.0...v0.6.0
squidfunk/mkdocs-material (mkdocs-material)
v9.7.0: mkdocs-material-9.7.0
[!WARNING]
Material for MkDocs is now in maintenance mode
This is the last release of Material for MkDocs that will receive new features. Going forward, the Material for MkDocs team focuses on Zensical, a next-gen static site generator built from first principles. We will provide critical bug fixes and security updates for Material for MkDocs for 12 months at least.
→ Read the full announcement on our blog
This release includes all features that were previously exclusive to the Insiders edition. These features are now freely available to everyone.
Note on deprecated plugins: The projects and typeset plugins are included in this release, but must be considered deprecated. Both plugins proved unsustainable to maintain and represent architectural dead ends. They are provided as-is without ongoing support.
Changes:
- Added support for projects plugin (for compat, now deprecated)
- Added support for typeset plugin (for compat, now deprecated)
- Added support for pinned blog posts and author profiles
- Added support for customizing pagination for blog index pages
- Added support for customizing blog category sort order
- Added support for staying on page when switching languages
- Added support for disabling tags in table of contents
- Added support for nested tags and shadow tags
- Added support for footnote tooltips
- Added support for instant previews
- Added support for instant prefetching
- Added support for custom social card layouts
- Added support for custom social card background images
- Added support for selectable rangs in code blocks
- Added support for custom selectors for code annotations
- Added support for configurable log level in privacy plugin
- Added support for processing of external links in privacy plugin
- Added support for automatic image optimization via optimize plugin
- Added support for navigation paths (breadcrumbs)
- Fixed #8519: Vector accents do not render when using KaTeX
v9.6.23: mkdocs-material-9.6.23
- Updated Burmese translation
v9.6.22: mkdocs-material-9.6.22
- Updated Georgian translation
v9.6.21: mkdocs-material-9.6.21
- Updated Serbian translations
- Fixed #8458: Temporary pin of click dependency
v9.6.20: mkdocs-material-9.6.20
- Fixed #8446: Deprecation warning as of Python 3.14 in Emoji extension
- Fixed #8440:
&character not escaped in search highlighting - Fixed #8439: FontAwesome icons color not set in social cards (regression)
v9.6.19: mkdocs-material-9.6.19
- Added support for Python 3.14
- Updated Bahasa Malaysia translations
v9.6.18: mkdocs-material-9.6.18
- Updated Azerbaijani translations
- Fixed last compat issues with minijinja, now 100% compatible
v9.6.17: mkdocs-material-9.6.17
- Fixed #8396: Videos do not autoplay when inside a content tab
- Fixed #8394: Stroke width not effective in Mermaid.js diagrams
- Fixed disappearing version selector when hiding page title
v9.6.16: mkdocs-material-9.6.16
- Fixed #8349: Info plugin doesn't correctly detect virtualenv in some cases
- Fixed #8334: Find-in-page detects matches in hidden search result list
v9.6.15: mkdocs-material-9.6.15
- Updated Mongolian translations
- Improved semantic markup of "edit this page" button
- Improved info plugin virtual environment resolution
- Fixed #8291: Large font size setting throws of breakpoints in JavaScript
v9.6.14: mkdocs-material-9.6.14
- Fixed #8215: Social plugin crashes when CairoSVG is updated to 2.8
v9.6.13: mkdocs-material-9.6.13
- Fixed #8204: Annotations showing list markers in print view
- Fixed #8153: Improve style of cardinality symbols in Mermaid.js ER diagrams
v9.6.12: mkdocs-material-9.6.12
- Fixed #8158: Flip footnote back reference icon for right-to-left languages
mkdocstrings/mkdocstrings (mkdocstrings)
v0.30.1
Bug Fixes
- Create default SSL context in main thread before downloading inventories (eec7fb4 by Çağlar Kutlu). Issue-796, MR-797
v0.30.0
Features
mkdocstrings/python (mkdocstrings-python)
v1.19.0
Features
- Release scoped and relative cross-references (872afc5 by Timothée Mazzucotelli).
- Release
__all__ordering feature (84aaebc by Timothée Mazzucotelli). - Release public filter feature (3be14cc by Timothée Mazzucotelli).
- Release backlinks feature (ae7cc2d by Timothée Mazzucotelli).
- Release expression modernization feature (dbadd1e by Timothée Mazzucotelli).
- Release visually-lighter admonitions for source code blocks (fdaeb48 by Timothée Mazzucotelli).
- Release inheritance diagram features (669b42e by Timothée Mazzucotelli).
Code Refactoring
- Update code base for Python 3.10 (b696ed2 by Timothée Mazzucotelli).
v1.18.2
Bug Fixes
- Normalize spaces to underscores when passing object to rendering context using its kind as key (6f79be0 by Timothée Mazzucotelli). Issue-mkdocstrings-791
v1.18.1
Bug Fixes
- Don't show implementation signature of
__init__method whenoverloads_onlyis true and it is merged into the class (9ef620f by Timothée Mazzucotelli). Issue-308
v1.18.0
Features
- Support PEP 695 generics (dc8c3ad by Victor Westerhuis). MR-221, Co-authored-by: Timothée Mazzucotelli dev@pawamoy.fr
Bug Fixes
- Increase maximum recursion limit in case of deeply nested ASTs (rare occurrence) (6004ccf by Timothée Mazzucotelli). Issue-griffe-402
v1.17.0
Features
- Support new Griffe parsing options
warn_missing_typesandwarnings(0e3bdb8 by Timothée Mazzucotelli). Issue-mkdocstrings-437 - Add
skip_local_inventoryoption to prevent objects from being registered in the local objects inventory (e82c24f by Bartosz Sławecki). Issue-296, Issue-mkdocstrings-671, MR-297 - Support hiding attribute values (6cf34b9 by Bartosz Sławecki). Issue-292: #292, MR-293: #293
- Support hiding implementation signature (showing overload only) (d3b35e1 by Bartosz Sławecki). Issue-213, MR-286
Code Refactoring
v1.16.12
Bug Fixes
v1.16.11
Bug Fixes
- Fix highlighting for signature with known special names like
__init__(7f95686 by Timothée Mazzucotelli). Issue-mkdocstrings-757 - Use default font-size for parameter headings (0a35b20 by Timothée Mazzucotelli). Issue-mkdocstrings-697
- Prevent uppercasing H5 titles (by Material for MkDocs) (ba66969 by Timothée Mazzucotelli). Issue-mkdocstrings-697, Issue-276
- Use configured heading even when signature is not separated (096960a by Timothée Mazzucotelli). Issue-mkdocstrings-767, MR-278
- Render attribute names without full path in ToC (d4e618a by David Lee). Issue-271, MR-272
oracle/python-oracledb (oracledb)
v3.4.1
python-oracledb 3.4.1 is now released. This release addresses a number of issues. See the full release notes for all of the details.
v3.4.0
python-oracledb 3.4.0 is now released. This release has the following highlights:
- support for Direct Path Load in thin mode for fast data ingestion
- support for data frames is no longer considered a pre-release
- support for type mapping when querying with data frames
- support for ingesting more Apache Arrow data types
- support for ingesting Apache Arrow data frames containing multiple chunks
- support for cursor.executemany() operating on large input data in batches
- fine-grained control over LOB and number handling
- new optional install dependencies for plugins
See the full release notes for all of the details.
v3.3.0
python-oracledb 3.3.0 is now released. This release has the following highlights:
- support for sessionless transactions with Oracle Database 23ai
- support for ingestion of dataframes
- support for the ArrowArrayStream PyCapsule interface
- pre-built binaries for Python 3.14 (this version is in the release candidate phase currently)
See the full release notes for all of the details.
v3.2.0
python-oracledb 3.2.0 is now released. This release adds a number of new features and corrects a number of issues. Highlights are as follows:
- support for recipient lists in Oracle Advanced Queuing with thin mode
- support for fetching VECTOR columns in data frames
- support for Instance Principal authentication when using OCI Cloud Native Authentication
- support for Oracle Database 23ai multi-pool DRCP
See the full release notes for all of the details.
v3.1.1
python-oracledb 3.1.1 is now released. This release addresses a number of reported issues. See the full release notes for all of the details.
python-poetry/poetry (poetry)
v2.2.1
Fixed
- Fix an issue where
poetry self showfailed with a message about an invalid output format (#10560).
Docs
- Remove outdated statements about dependency groups (#10561).
poetry-core (2.2.1)
- Fix an issue where it was not possible to declare a PEP 735 dependency group as optional (#888).
v2.2.0
Added
- Add support for nesting dependency groups (#10166).
- Add support for PEP 735 dependency groups (#10130).
- Add support for PEP 639 license clarity (#10413).
- Add a
--formatoption topoetry showto alternatively output json format (#10487). - Add official support for Python 3.14 (#10514).
Changed
- Normalize dependency group names (#10387).
- Change
installer.no-binaryandinstaller.only-binaryso that explicit package names will take precedence over:all:(#10278). - Improve log output during
poetry installwhen a wheel is built from source (#10404). - Improve error message in case a file lock could not be acquired while cloning a git repository (#10535).
- Require
dulwich>=0.24.0(#10492). - Allow
virtualenv>=20.33again (#10506). - Allow
findpython>=0.7(#10510). - Allow
importlib-metadata>=8.7(#10511).
Fixed
- Fix an issue where
poetry newdid not create the project structure in an existing empty directory (#10431). - Fix an issue where a dependency that was required for a specific Python version was not installed into an environment of a pre-release Python version (#10516).
poetry-core (2.2.0)
- Deprecate table values and values that are not valid SPDX expressions for
[project.license](#870). - Fix an issue where explicitly included files that are in
.gitignorewere not included in the distribution (#874). - Fix an issue where marker operations could result in invalid markers (#875).
v2.1.4
Changed
- Require
virtualenv<20.33to work around an issue where Poetry uses the wrong Python version (#10491). - Improve the error messages for the validation of the
pyproject.tomlfile (#10471).
Fixed
- Fix an issue where project plugins were installed even though
poetry installwas called with--no-plugins(#10405). - Fix an issue where dependency resolution failed for self-referential extras with duplicate dependencies (#10488).
Docs
- Clarify how to include files that were automatically excluded via VCS ignore settings (#10442).
- Clarify the behavior of
poetry addif no version constraint is explicitly specified (#10445).
v2.1.3
Changed
- Require
importlib-metadata<8.7for Python 3.9 because of a breaking change in importlib-metadata 8.7 (#10374).
Fixed
- Fix an issue where re-locking failed for incomplete multiple-constraints dependencies with explicit sources (#10324).
- Fix an issue where the
--directoryoption did not work if a plugin, which accesses the poetry instance during its activation, was installed (#10352). - Fix an issue where
poetry env activate -vprinted additional information to stdout instead of stderr so that the output could not be used as designed (#10353). - Fix an issue where the original error was not printed if building a git dependency failed (#10366).
- Fix an issue where wheels for the wrong platform were installed in rare cases. (#10361).
poetry-core (2.1.3)
- Fix an issue where the union of specific inverse or partially inverse markers was not simplified (#858).
- Fix an issue where optional dependencies defined in the
projectsection were treated as non-optional when a source was defined for them in thetool.poetrysection (#857). - Fix an issue where markers with
===were not parsed correctly (#860). - Fix an issue where local versions with upper case letters caused an error (#859).
- Fix an issue where
extramarkers with a value starting with "in" were not validated correctly (#862).
pre-commit/mirrors-mypy (pre-commit/mirrors-mypy)
v1.19.0
v1.18.2
v1.18.1
v1.17.1
v1.17.0
v1.16.1
v1.16.0
v1.15.0
v1.14.1
v1.14.0
v1.13.0
v1.12.1
v1.12.0
v1.11.2
v1.11.1
v1.11.0
v1.10.1
v1.10.0
v1.9.0
v1.8.0
v1.7.1
v1.7.0
v1.6.1
v1.6.0
v1.5.1
v1.5.0
pre-commit/pre-commit-hooks (pre-commit/pre-commit-hooks)
v4.6.0: pre-commit-hooks v4.6.0
Features
-
requirements-txt-fixer: remove duplicate packages.- #1014 MR by @vhoulbreque-withings.
- #960 issue @csibe17.
Migrating
-
fix-encoding-pragma: deprecated -- will be removed in 5.0.0. use pyupgrade or some other tool.
v4.5.0: pre-commit-hooks v4.5.0
Features
-
requirements-txt-fixer: also sortconstraints.txtby default.- #857 MR by @lev-blit.
- #830 issue by @PLPeeters.
-
debug-statements: addbpdbdebugger.
Fixes
-
file-contents-sorter: fix sorting an empty file.- #944 MR by @RoelAdriaans.
- #935 issue by @paduszyk.
-
double-quote-string-fixer: don't rewrite inside f-strings in 3.12+.- #973 MR by @asottile.
- #971 issue by @XuehaiPan.
Migrating
- now requires python >= 3.8.
- #926 MR by @asottile.
- #927 MR by @asottile.
yaml/pyyaml (pyyaml)
v6.0.3
What's Changed
- Support for Python 3.14 and free-threading (experimental).
Full Changelog: https://github.com/yaml/pyyaml/compare/6.0.2...6.0.3
facebook/react (react)
v18.3.1
- Export
actfromreactf1338f
v18.3.0
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
- Allow writing to
this.refsto support string ref codemod 909071 - Warn for deprecated
findDOMNodeoutside StrictMode c3b283 - Warn for deprecated
test-utilsmethods d4ea75 - Warn for deprecated Legacy Context outside StrictMode 415ee0
- Warn for deprecated string refs outside StrictMode #25383
- Warn for deprecated
defaultPropsfor function components #25699 - Warn when spreading
key#25697 - Warn when using
actfromtest-utilsd4ea75
React DOM
python-social-auth/social-app-django (social-auth-app-django)
v5.6.0
Changed
- Fixed possibly unsafe account association (CVE-2025-61783)
- Storage now filters for active users
Added
- Django 6.0 and Python 3.14 compatibility
- Type annotations
- LoginRequiredMiddleware compatibility
-
RAISE_EXCEPTIONSandLOGIN_ERROR_URLcan be configured per backend
v5.5.1
Changed
- Fixed authentication with OpenID based services
v5.5.0
Changed
- Dropped support for older Django versions.
- Added non-empty constraind on
uid. - Added support for session restore with stricter SameSite cookie policy.
timothycrosley/isort (timothycrosley/isort)
v5.13.2
- Apply the bracket fix from issue #471 only for use_parentheses=True (#2184) @bp72
- Confine pre-commit to stages (#2213) @davidculley
- Fixed colors extras (#2212) @staticdev
v5.13.1
- Fixed integration tests (#2208) @bp72
- Fixed normalizing imports from more than one level of parent modules (issue/2152) (#2191) @bp72
- Remove optional dependencies without extras (#2207) @staticdev
v5.13.0
- Cleanup deprecated extras (#2089) @staticdev
- Fixed #1989: settings lookup when working in stream based mode
- Fixed 80 line length for wemake linter (#2183) @skatromb
- Add support for Python 3.12 (#2175) @hugovk
- Fixed: add newest version to pre-commit docs (#2190) @AzulGarza
- Fixed assertions in test_git_hook (#2196) @mgorny
- Removed check for include_trailing_comma for the Hanging Indent wrap mode (#2192) @bp72
- Use the standard library tomllib on sufficiently new python (#2202) @eli-schwartz
- Update pre-commit.md version number (#2197) @nicobako
- doc: Update black_compatibility.md (#2177) @JSS95
- Fixed safety sept 2023 (#2178) @staticdev
- docs: fix black profile documentation (#2163) @nijel
- Fixed typo: indended -> indented (#2161) @vadimkerr
- Docs(configuration/options.md): fix missing trailing spaces for hard linebreak (#2157) @JoeyTeng
- Update pre-commit.md (#2148) @godiard
- chore: move configurations to pyproject.toml (#2115) @SauravMaheshkar
- Fixed typo in README (#2112) @stefmolin
- Update version in pre-commit setup to avoid installation issue with poetry (#2103) @stefmolin
- Skip .pytype directory by default. (#2098) @manueljacob
- Fixed a tip block styling in the Config Files section (#2097) @Klavionik
- Do not cache configuration files (#1995) @kaste
- Derive settings_path from --filename (#1992) @kaste
- Fixed year of version 5.12.0 in CHANGELOG.md (#2082) @DjLegolas
tox-dev/tox (tox)
v4.32.0
What's Changed
- docs: Add Python 3.14 and 3.14t to config examples by @cclauss in #3626
- Fix broken log message (in that branch it did not match the arguments). by @ionelmc in #3634
- Allow braced range syntax in internal sections of tox.ini file by @marcosboger in #3631
- fix: ensure log folder is created before writing the execution logs by @ssbarnea in #3633
- TST: add weekly compatibility checks for CPython 3.15 by @neutrinoceros in #3629
New Contributors
- @ionelmc made their first contribution in #3634
- @marcosboger made their first contribution in #3631
- @neutrinoceros made their first contribution in #3629
Full Changelog: https://github.com/tox-dev/tox/compare/4.31.0...4.32.0
v4.31.0
What's Changed
- Address a type-conversion noted during doc builds by @kurtmckee in #3623
- Add 3.14, drop 3.9 and support | union style by @gaborbernat in #3624
Full Changelog: https://github.com/tox-dev/tox/compare/4.30.3...4.31.0
v4.30.3
What's Changed
- Isolate the test suite from any existing
DEFAULT_CONFIG_FILEfile by @kurtmckee in #3612 - Fix none config file issue 3611 by @kurtmckee in #3613
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3608
- Fix incorrect type annotations in PythonPathPackageWithDeps (fixes #3607) by @PreistlyPython in #3616
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3615
New Contributors
- @PreistlyPython made their first contribution in #3616
Full Changelog: https://github.com/tox-dev/tox/compare/4.30.2...4.30.3
v4.30.2
What's Changed
- Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 by @dependabot[bot] in #3603
- Ensure automatically provisioned environment is torn down by @vytas7 in #3601
- Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows by @dependabot[bot] in #3604
Full Changelog: https://github.com/tox-dev/tox/compare/4.30.1...4.30.2
v4.30.1
What's Changed
- Prevent Tox from hanging with
--installpkgsdist due to orphaned build backend by @vytas7 in #3530
New Contributors
Full Changelog: https://github.com/tox-dev/tox/compare/4.30.0...4.30.1
v4.30.0
What's Changed
- Pass through
CIas__TOX_ENVIRONMENT_VARIABLE_ORIGINAL_CIby @Liam-DeVoe in #3592 - [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3596
- Fix the built docs HTML path hint in
tox.tomlby @webknjaz in #3594 - Add a "version added" note for
tox_extend_envsby @webknjaz in #3595 - fix: provide clear messaging about config file loading by @ssbarnea in #3578
- Ensure
tox_extend_envslist can be read twice by @webknjaz in #3598
New Contributors
- @Liam-DeVoe made their first contribution in #3592
Full Changelog: https://github.com/tox-dev/tox/compare/4.29.0...4.30.0
v4.29.0
What's Changed
- Docs: environment variables contain strings by @hroncok in #3575
-
🐍 Fix sys_platform Fixture Leakage breaking the CI by @gaborbernat in #3589 - Expose a new
tox_extend_envshook in plugins API by @webknjaz in #3591
Full Changelog: https://github.com/tox-dev/tox/compare/4.28.4...4.29.0
v4.28.4
What's Changed
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3570
- Pass ssh-agent variables by default by @daniilgankov in #3572
New Contributors
- @daniilgankov made their first contribution in #3572
Full Changelog: https://github.com/tox-dev/tox/compare/4.28.3...4.28.4
v4.28.3
What's Changed
- Fix typo on cmd_build filter check expression by @gaborbernat in #3569
Full Changelog: https://github.com/tox-dev/tox/compare/4.28.2...4.28.3
v4.28.2
What's Changed
- Don't pass in the filter argument to tar.extractall on old Python versions by @gaborbernat in #3568
Full Changelog: https://github.com/tox-dev/tox/compare/4.28.1...4.28.2
v4.28.1
What's Changed
- Fix an issue number typo in changelog by @hroncok in #3563
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3564
- Only use tarfile.data_filter when it's available by @gaborbernat in #3566
Full Changelog: https://github.com/tox-dev/tox/compare/4.28.0...4.28.1
v4.28.0
What's Changed
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3548
- [docs] Document how to require a plugin by @stephenfin in #3552
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3554
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3558
- Add
[testenv] constraintsoption by @stephenfin in #3556 - [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #3562
- Allow disabling plugins on a one-off by @gaborbernat in #3560
Full Changelog: https://github.com/tox-dev/tox/compare/4.27.0...4.28.0
v4.27.0
What's Changed
- Feat: include free_threaded flag in result-json by @robsdedude in #3534
- Add security policy by @jugmac00 in #3535
- Fix dependency-group name normalization by @robsdedude in #3540
- Log environment variables sorted by key while redacting values of unsafe ones by @ssbarnea in #3543
Full Changelog: https://github.com/tox-dev/tox/compare/4.26.0...4.27.0
v4.26.0
What's Changed
- Add a missing quote in a TOML example @
config.rstby @webknjaz in #3509 - Add colour to GitHub Actions CI logs by @hugovk in #3525
- Fix using deprecated virtualenv option
--wheelby @robsdedude in #3528 - Fix custom HelpFormatter for Python 3.14 by @The-Compiler in #3524
- Drop support for EOL Python 3.8 by @hugovk in #3527
- Test with Python 3.14 by @edgarrmondragon in #3533
- Fix for tox4 regression issue with setenv file and substitutions (#2435) by @realitycheck in #3521
- Feat: free-threaded python support by @robsdedude in #3526
New Contributors
- @edgarrmondragon made their first contribution in #3533
- @realitycheck made their first contribution in #3521
Full Changelog: https://github.com/tox-dev/tox/compare/4.25.0...4.26.0
uis/devops/continuous-delivery/ci-templates (uis/devops/continuous-delivery/ci-templates)
v6.15.0
Changed
-
terraform-module.yml: Add support for Terraform testing with additional cleanup scripts.
Fixed
-
terraform-module.yml: Override thetflintjob so that theterraform_standard_module_structurerule is applied. -
terraform-module.yml: Override thepre-commitjob to avoid duplication of ourterraform-fmt,tflint, andtrivyjobs.
v6.14.2
v6.14.1
v6.14.0
v6.13.0
v6.12.3
v6.12.2
Fixed
- terraform-module: override .
test-job-rulesfromterraform-lint.ymlas theterraform-module.ymltemplate needs to support Auto-DevOps.
v6.12.1
v6.12.0
v6.11.0
Changed
-
terraform-lint: use customtflintdocker image for thetflintjob. This image includes the UIS DevOps customtflintruleset. -
terraform-lint: move default tflint arguments to a$TFLINT_ARGSvariable to allow repositories to override if required. -
terraform-module: enabletflintin our Terraform reusable module pipeline.
v6.10.0
Fixed
-
terraform-pipeline: Partially revert changes made in v5.1.0.- Plan jobs for branch push pipelines will be reverted.
- Manual apply jobs for the development environment will remain in the merge request pipelines.
v6.9.0
v6.8.1
v6.8.0
v6.7.3
v6.7.2
v6.7.1
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.