Merge branch 'cookiecutter-master'

This commit is contained in:
Alejandro Franco 2025-06-03 09:22:52 -06:00
commit fdfeb3fb77
4 changed files with 18 additions and 5 deletions

View File

@ -3,6 +3,19 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
<!-- GENERATOR_PLACEHOLDER -->
## 2025.06.02
### Updated
- Update django-allauth to 65.9.0 ([#5879](https://github.com/cookiecutter/cookiecutter-django/pull/5879))
- Update uvicorn to 0.34.3 ([#5878](https://github.com/cookiecutter/cookiecutter-django/pull/5878))
- Update celery to 5.5.3 ([#5877](https://github.com/cookiecutter/cookiecutter-django/pull/5877))
- Update ruff to 0.11.12 ([#5872](https://github.com/cookiecutter/cookiecutter-django/pull/5872))
## 2025.05.28

View File

@ -1,6 +1,6 @@
[project]
name = "cookiecutter-django"
version = "2025.05.28"
version = "2025.06.02"
description = "A Cookiecutter template for creating production-ready Django projects quickly."
readme = "README.md"
keywords = [

View File

@ -182,7 +182,7 @@ wheels = [
[[package]]
name = "cookiecutter-django"
version = "2025.5.28"
version = "2025.6.2"
source = { virtual = "." }
dependencies = [
{ name = "binaryornot" },

View File

@ -16,14 +16,14 @@ redis==6.2.0 # https://github.com/redis/redis-py
hiredis==3.2.1 # https://github.com/redis/hiredis-py
{%- endif %}
{%- if cookiecutter.use_celery == "y" %}
celery==5.5.2 # pyup: < 6.0 # https://github.com/celery/celery
celery==5.5.3 # pyup: < 6.0 # https://github.com/celery/celery
django-celery-beat==2.8.1 # https://github.com/celery/django-celery-beat
{%- if cookiecutter.use_docker == 'y' %}
flower==2.0.1 # https://github.com/mher/flower
{%- endif %}
{%- endif %}
{%- if cookiecutter.use_async == 'y' %}
uvicorn[standard]==0.34.2 # https://github.com/encode/uvicorn
uvicorn[standard]==0.34.3 # https://github.com/encode/uvicorn
uvicorn-worker==0.3.0 # https://github.com/Kludex/uvicorn-worker
{%- endif %}
@ -32,7 +32,7 @@ uvicorn-worker==0.3.0 # https://github.com/Kludex/uvicorn-worker
django==5.1.9 # pyup: < 5.2 # https://www.djangoproject.com/
django-environ==0.12.0 # https://github.com/joke2k/django-environ
django-model-utils==5.0.0 # https://github.com/jazzband/django-model-utils
django-allauth[mfa]==65.8.1 # https://github.com/pennersr/django-allauth
django-allauth[mfa]==65.9.0 # https://github.com/pennersr/django-allauth
django-crispy-forms==2.4 # https://github.com/django-crispy-forms/django-crispy-forms
crispy-bootstrap5==2025.4 # https://github.com/django-crispy-forms/crispy-bootstrap5
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}