mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-17 18:34:52 +03:00
Merge branch 'master' of https://github.com/cookiecutter/cookiecutter-django into cookiecutter-master-2022.05.18
This commit is contained in:
commit
e158f64833
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -3,6 +3,26 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
|
|||
|
||||
<!-- GENERATOR_PLACEHOLDER -->
|
||||
|
||||
## 2022.05.18
|
||||
|
||||
### Updated
|
||||
- Update pillow to 9.1.1 ([#3714](https://github.com/cookiecutter/cookiecutter-django/pull/3714))
|
||||
|
||||
## 2022.05.16
|
||||
|
||||
### Changed
|
||||
- Update postgres versions ([#3712](https://github.com/cookiecutter/cookiecutter-django/pull/3712))
|
||||
### Updated
|
||||
- Update django-anymail to 8.6 ([#3713](https://github.com/cookiecutter/cookiecutter-django/pull/3713))
|
||||
|
||||
## 2022.05.14
|
||||
|
||||
### Updated
|
||||
- Update coverage to 6.3.3 ([#3709](https://github.com/cookiecutter/cookiecutter-django/pull/3709))
|
||||
- Update whitenoise to 6.1.0 ([#3707](https://github.com/cookiecutter/cookiecutter-django/pull/3707))
|
||||
- Update sentry-sdk to 1.5.12 ([#3706](https://github.com/cookiecutter/cookiecutter-django/pull/3706))
|
||||
- Update redis to 4.3.1 ([#3704](https://github.com/cookiecutter/cookiecutter-django/pull/3704))
|
||||
|
||||
## 2022.05.07
|
||||
|
||||
### Changed
|
||||
|
|
10
README.md
10
README.md
|
@ -123,11 +123,11 @@ Answer the prompts with your own desired [options](http://cookiecutter-django.re
|
|||
use_docker [n]: n
|
||||
database_engine: 1
|
||||
Select database_version:
|
||||
1 - postgresql@14.1
|
||||
2 - postgresql@13.5
|
||||
3 - postgresql@12.9
|
||||
4 - postgresql@11.14
|
||||
5 - postgresql@10.19
|
||||
1 - postgresql@14
|
||||
2 - postgresql@13
|
||||
3 - postgresql@12
|
||||
4 - postgresql@11
|
||||
5 - postgresql@10
|
||||
Choose from 1, 2, 3, 4, 5 [1]: 1
|
||||
Select cloud_provider:
|
||||
1 - AWS
|
||||
|
|
|
@ -19,11 +19,11 @@
|
|||
"use_docker": "n",
|
||||
"database_engine": ["postgresql", "mysql"],
|
||||
"database_version": [
|
||||
"postgresql@14.1",
|
||||
"postgresql@13.5",
|
||||
"postgresql@12.9",
|
||||
"postgresql@11.14",
|
||||
"postgresql@10.19",
|
||||
"postgresql@14",
|
||||
"postgresql@13",
|
||||
"postgresql@12",
|
||||
"postgresql@11",
|
||||
"postgresql@10",
|
||||
"mysql@8.0.28",
|
||||
"mysql@8.0",
|
||||
"mysql@5.7"
|
||||
|
|
|
@ -70,11 +70,11 @@ database_version:
|
|||
|
||||
*Currently, following PostgreSQL versions are supported:*
|
||||
|
||||
1. 14.1
|
||||
2. 13.5
|
||||
3. 12.9
|
||||
4. 11.14
|
||||
5. 10.19
|
||||
1. 14
|
||||
2. 13
|
||||
3. 12
|
||||
4. 11
|
||||
5. 10
|
||||
|
||||
*Currently, following MySQL versions are supported:*
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ except ImportError:
|
|||
from distutils.core import setup
|
||||
|
||||
# We use calendar versioning
|
||||
version = "2022.05.07"
|
||||
version = "2022.05.18"
|
||||
|
||||
with open("README.rst") as readme_file:
|
||||
long_description = readme_file.read()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
pytz==2022.1 # https://github.com/stub42/pytz
|
||||
python-slugify==6.1.2 # https://github.com/un33k/python-slugify
|
||||
Pillow==9.1.0 # https://github.com/python-pillow/Pillow
|
||||
Pillow==9.1.1 # https://github.com/python-pillow/Pillow
|
||||
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
|
||||
{%- if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %}
|
||||
rcssmin==1.1.0 --install-option="--without-c-extensions" # https://github.com/ndparker/rcssmin
|
||||
|
@ -10,9 +10,9 @@ rcssmin==1.1.0 # https://github.com/ndparker/rcssmin
|
|||
{%- endif %}
|
||||
argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi
|
||||
{%- if cookiecutter.use_whitenoise == 'y' %}
|
||||
whitenoise==6.0.0 # https://github.com/evansd/whitenoise
|
||||
whitenoise==6.1.0 # https://github.com/evansd/whitenoise
|
||||
{%- endif %}
|
||||
redis==4.2.2 # https://github.com/redis/redis-py
|
||||
redis==4.3.1 # https://github.com/redis/redis-py
|
||||
{%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %}
|
||||
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|
||||
{%- endif %}
|
||||
|
|
|
@ -35,7 +35,7 @@ sphinx-autobuild==2021.3.14 # https://github.com/GaretJax/sphinx-autobuild
|
|||
# ------------------------------------------------------------------------------
|
||||
flake8==4.0.1 # https://github.com/PyCQA/flake8
|
||||
flake8-isort==4.1.1 # https://github.com/gforcada/flake8-isort
|
||||
coverage==6.3.2 # https://github.com/nedbat/coveragepy
|
||||
coverage==6.3.3 # https://github.com/nedbat/coveragepy
|
||||
black==22.3.0 # https://github.com/psf/black
|
||||
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
|
||||
{%- if cookiecutter.use_celery == 'y' %}
|
||||
|
|
|
@ -12,7 +12,7 @@ mysqlclient==2.1.0 # https://github.com/PyMySQL/mysqlclient
|
|||
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
|
||||
{%- endif %}
|
||||
{%- if cookiecutter.use_sentry == "y" %}
|
||||
sentry-sdk==1.5.11 # https://github.com/getsentry/sentry-python
|
||||
sentry-sdk==1.5.12 # https://github.com/getsentry/sentry-python
|
||||
{%- endif %}
|
||||
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
|
||||
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|
||||
|
@ -26,21 +26,21 @@ django-storages[boto3]==1.12.3 # https://github.com/jschneier/django-storages
|
|||
django-storages[google]==1.12.3 # https://github.com/jschneier/django-storages
|
||||
{%- endif %}
|
||||
{%- if cookiecutter.mail_service == 'Mailgun' %}
|
||||
django-anymail[mailgun]==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail[mailgun]==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- elif cookiecutter.mail_service == 'Amazon SES' %}
|
||||
django-anymail[amazon_ses]==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail[amazon_ses]==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- elif cookiecutter.mail_service == 'Mailjet' %}
|
||||
django-anymail[mailjet]==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail[mailjet]==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- elif cookiecutter.mail_service == 'Mandrill' %}
|
||||
django-anymail[mandrill]==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail[mandrill]==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- elif cookiecutter.mail_service == 'Postmark' %}
|
||||
django-anymail[postmark]==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail[postmark]==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- elif cookiecutter.mail_service == 'Sendgrid' %}
|
||||
django-anymail[sendgrid]==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail[sendgrid]==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- elif cookiecutter.mail_service == 'SendinBlue' %}
|
||||
django-anymail[sendinblue]==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail[sendinblue]==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- elif cookiecutter.mail_service == 'SparkPost' %}
|
||||
django-anymail[sparkpost]==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail[sparkpost]==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- elif cookiecutter.mail_service == 'Other SMTP' %}
|
||||
django-anymail==8.5 # https://github.com/anymail/django-anymail
|
||||
django-anymail==8.6 # https://github.com/anymail/django-anymail
|
||||
{%- endif %}
|
||||
|
|
Loading…
Reference in New Issue
Block a user