kopia lustrzana https://github.com/wagtail/wagtail
Relax django-taggit dependency to allow 5.0 (#11363)
rodzic
247b83030d
commit
b62d043f70
|
@ -81,6 +81,7 @@ Changelog
|
||||||
* Maintenance: Refactor form pages listing view to use generic IndexView (Sage Abdullah)
|
* Maintenance: Refactor form pages listing view to use generic IndexView (Sage Abdullah)
|
||||||
* Maintenance: Update Stylelint, our linting configuration, Sass, and related code changes (LB (Ben) Johnston)
|
* Maintenance: Update Stylelint, our linting configuration, Sass, and related code changes (LB (Ben) Johnston)
|
||||||
* Maintenance: Simplify browserslist and browser support documentation (Thibaud Colas)
|
* Maintenance: Simplify browserslist and browser support documentation (Thibaud Colas)
|
||||||
|
* Maintenance: Relax django-taggit dependency to allow 5.0 (Sylvain Fankhauser)
|
||||||
|
|
||||||
|
|
||||||
5.2.2 (06.12.2023)
|
5.2.2 (06.12.2023)
|
||||||
|
|
|
@ -112,6 +112,7 @@ The admin interface now supports right-to-left languages, such as Persian, Arabi
|
||||||
* Refactor form pages listing view to use generic IndexView (Sage Abdullah)
|
* Refactor form pages listing view to use generic IndexView (Sage Abdullah)
|
||||||
* Update Stylelint, our linting configuration, Sass, and related code changes (LB (Ben) Johnston)
|
* Update Stylelint, our linting configuration, Sass, and related code changes (LB (Ben) Johnston)
|
||||||
* Simplify browserslist and browser support documentation for maintainers (Thibaud Colas)
|
* Simplify browserslist and browser support documentation for maintainers (Thibaud Colas)
|
||||||
|
* Relax django-taggit dependency to allow 5.0 (Sylvain Fankhauser)
|
||||||
|
|
||||||
## Upgrade considerations - removal of deprecated features from Wagtail 4.2 - 5.1
|
## Upgrade considerations - removal of deprecated features from Wagtail 4.2 - 5.1
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -22,7 +22,7 @@ install_requires = [
|
||||||
"Django>=4.2,<6.0",
|
"Django>=4.2,<6.0",
|
||||||
"django-modelcluster>=6.1,<7.0",
|
"django-modelcluster>=6.1,<7.0",
|
||||||
"django-permissionedforms>=0.1,<1.0",
|
"django-permissionedforms>=0.1,<1.0",
|
||||||
"django-taggit>=2.0,<5.0",
|
"django-taggit>=2.0,<5.1",
|
||||||
"django-treebeard>=4.5.1,<5.0",
|
"django-treebeard>=4.5.1,<5.0",
|
||||||
"djangorestframework>=3.11.1,<4.0",
|
"djangorestframework>=3.11.1,<4.0",
|
||||||
"django-filter>=23.3,<24",
|
"django-filter>=23.3,<24",
|
||||||
|
|
Ładowanie…
Reference in New Issue