mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-18 02:44:51 +03:00
Merge pull request #43 from mabdullahadeel/cookiecutter-master-2022.05.18
update to upstream v`2022.05.18`
This commit is contained in:
commit
9497af65aa
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 -->
|
<!-- 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
|
## 2022.05.07
|
||||||
|
|
||||||
### Changed
|
### 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
|
use_docker [n]: n
|
||||||
database_engine: 1
|
database_engine: 1
|
||||||
Select database_version:
|
Select database_version:
|
||||||
1 - postgresql@14.1
|
1 - postgresql@14
|
||||||
2 - postgresql@13.5
|
2 - postgresql@13
|
||||||
3 - postgresql@12.9
|
3 - postgresql@12
|
||||||
4 - postgresql@11.14
|
4 - postgresql@11
|
||||||
5 - postgresql@10.19
|
5 - postgresql@10
|
||||||
Choose from 1, 2, 3, 4, 5 [1]: 1
|
Choose from 1, 2, 3, 4, 5 [1]: 1
|
||||||
Select cloud_provider:
|
Select cloud_provider:
|
||||||
1 - AWS
|
1 - AWS
|
||||||
|
|
|
@ -19,11 +19,11 @@
|
||||||
"use_docker": "n",
|
"use_docker": "n",
|
||||||
"database_engine": ["postgresql", "mysql"],
|
"database_engine": ["postgresql", "mysql"],
|
||||||
"database_version": [
|
"database_version": [
|
||||||
"postgresql@14.1",
|
"postgresql@14",
|
||||||
"postgresql@13.5",
|
"postgresql@13",
|
||||||
"postgresql@12.9",
|
"postgresql@12",
|
||||||
"postgresql@11.14",
|
"postgresql@11",
|
||||||
"postgresql@10.19",
|
"postgresql@10",
|
||||||
"mysql@8.0.28",
|
"mysql@8.0.28",
|
||||||
"mysql@8.0",
|
"mysql@8.0",
|
||||||
"mysql@5.7"
|
"mysql@5.7"
|
||||||
|
|
|
@ -70,11 +70,11 @@ database_version:
|
||||||
|
|
||||||
*Currently, following PostgreSQL versions are supported:*
|
*Currently, following PostgreSQL versions are supported:*
|
||||||
|
|
||||||
1. 14.1
|
1. 14
|
||||||
2. 13.5
|
2. 13
|
||||||
3. 12.9
|
3. 12
|
||||||
4. 11.14
|
4. 11
|
||||||
5. 10.19
|
5. 10
|
||||||
|
|
||||||
*Currently, following MySQL versions are supported:*
|
*Currently, following MySQL versions are supported:*
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ except ImportError:
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
# We use calendar versioning
|
# We use calendar versioning
|
||||||
version = "2022.05.07"
|
version = "2022.05.18"
|
||||||
|
|
||||||
with open("README.rst") as readme_file:
|
with open("README.rst") as readme_file:
|
||||||
long_description = readme_file.read()
|
long_description = readme_file.read()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
pytz==2022.1 # https://github.com/stub42/pytz
|
pytz==2022.1 # https://github.com/stub42/pytz
|
||||||
python-slugify==6.1.2 # https://github.com/un33k/python-slugify
|
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.frontend_pipeline == 'Django Compressor' %}
|
||||||
{%- if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %}
|
{%- if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %}
|
||||||
rcssmin==1.1.0 --install-option="--without-c-extensions" # https://github.com/ndparker/rcssmin
|
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 %}
|
{%- endif %}
|
||||||
argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi
|
argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi
|
||||||
{%- if cookiecutter.use_whitenoise == 'y' %}
|
{%- if cookiecutter.use_whitenoise == 'y' %}
|
||||||
whitenoise==6.0.0 # https://github.com/evansd/whitenoise
|
whitenoise==6.1.0 # https://github.com/evansd/whitenoise
|
||||||
{%- endif %}
|
{%- 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" %}
|
{%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %}
|
||||||
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|
||||||
{%- endif %}
|
{%- 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==4.0.1 # https://github.com/PyCQA/flake8
|
||||||
flake8-isort==4.1.1 # https://github.com/gforcada/flake8-isort
|
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
|
black==22.3.0 # https://github.com/psf/black
|
||||||
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
|
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
|
||||||
{%- if cookiecutter.use_celery == 'y' %}
|
{%- 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
|
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if cookiecutter.use_sentry == "y" %}
|
{%- 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 %}
|
{%- endif %}
|
||||||
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
|
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
|
||||||
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|
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
|
django-storages[google]==1.12.3 # https://github.com/jschneier/django-storages
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if cookiecutter.mail_service == 'Mailgun' %}
|
{%- 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' %}
|
{%- 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' %}
|
{%- 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' %}
|
{%- 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' %}
|
{%- 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' %}
|
{%- 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' %}
|
{%- 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' %}
|
{%- 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' %}
|
{%- 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 %}
|
{%- endif %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user