Skip to content

Latest commit

 

History

History
211 lines (175 loc) · 9.77 KB

CHANGELOG.md

File metadata and controls

211 lines (175 loc) · 9.77 KB

Change Log

All enhancements and patches to Cookiecutter Django will be documented in this file.

[2020-09-28]

Changed

  • Updated pytest to 6.1.0 - @luzfcb

[2020-09-24]

Changed

  • Added a small script to install Postgresql 13 on Ubuntu - @luzfcb

[2020-09-22]

Changed

  • Updated django-debug-toolbar to 3.1 - @luzfcb
  • Updated django-extensions to 3.0.9 - @luzfcb

[2020-09-16]

Changed

  • Updated coverage to 5.3 - @luzfcb
  • Removed the coverage workaround on config/settings/test.py. The coverage 5.3 fixed the issue - @luzfcb
  • Updated pytest-django to 3.10.0 - @luzfcb
  • Updated django-redis to 4.12.1 - @luzfcb

[2020-09-15]

Changed

  • Updated django-anymail to 8.0 - @luzfcb
  • Updated pytest to 6.0.2 - @luzfcb

[2020-09-11]

Changed

  • Updated factory-boy to 3.0.1 - @luzfcb
  • Updated project compatibility with factory-boy v3.0.1 - @luzfcb
  • Updated black to 20.8b1 - @luzfcb
  • Updated ipdb to 0.13.3 - @luzfcb
  • Updated psycopg2-binary to 2.8.6 - @luzfcb
  • Updated pytest to 6.0.1 - @luzfcb
  • Updated pytest-sugar to 0.9.4 - @luzfcb
  • Updated flake8 to 3.8.3 - @luzfcb
  • Updated coverage to 5.2.1 - @luzfcb
  • Updated pylint-django to 2.3.0 - @luzfcb
  • Updated pre-commit to 2.7.1 - @luzfcb
  • Updated django-extensions to 3.0.8 - @luzfcb

[2020-09-10]

Changed

  • Added a workaround on config/settings/test.py to fix the coverage.py + django_coverage_plugin "Can't add file tracer data for unmeasured file" warning message (feldroy/django-crash-course#329) - @luzfcb

[2020-09-09]

Changed

  • Removed env.sample file - @luzfcb
  • Updated basic instructions on the README.md - @luzfcb
  • Updated project to Django 3.1 - @luzfcb
  • Synced contrib/sites app 0001_initial migration to follow Django 3.1 changes - @luzfcb
  • Synced users app 0001_initial migration to follow Django 3.1 changes - @luzfcb
  • Updated black to 20.8b1 - @luzfcb
  • Updated project compatibility with black v20.8b1 - @luzfcb
  • Updated tox to 3.20.0 - @luzfcb
  • Updated pytest-xdist to 2.1.0 - @luzfcb
  • Updated pytest to 6.0.1 - @luzfcb
  • Updated psycopg2 to 2.8.6 - @luzfcb
  • Updated sh to 1.14.0 - @luzfcb

[2020-09-08]

Changed

  • Added env.sample.mac_or_linux and env.sample.windows files - @pydanny
  • Added .env file on gitignore - @pydanny

[2020-08-28]

Changed

  • Added basic instructions on the README.md - @luzfcb

[2020-08-10]

Changed

  • Updated whitenoise to 5.2.0 - @luzfcb
  • Updated tox to 3.19.0 - @luzfcb
  • Updated django-anymail to 7.2.1 - @luzfcb

[2020-08-03]

Changed

  • Updated Django to 3.0.9 - @luzfcb
  • Updated tox to 3.18.1 - @luzfcb
  • Updated pytest-xdist to 1.34.0 - @luzfcb

[2020-07-27]

Changed

  • Updated django-autoslug to 1.9.8 - @luzfcb
  • Updated tox to 3.18.0 - @luzfcb
  • Updated django-anymail to 7.2 - @luzfcb
  • Updated django-autoslug to 1.9.8 - @luzfcb

[2020-07-17]

Changed

  • Ignore sqlite database on git - @luzfcb

[2020-07-09]

Changed

  • Fix the Sqlite database filename when generate the project with windows=y - @luzfcb

[2020-07-08]

Changed

  • Explicitly define which settings variables should be included in the template context - @pydanny

[2020-07-06]

Changed

  • Automatically read an .env file, if it exists in the project's root path - @luzfcb
  • Updated tox to 3.16.1 - @luzfcb
  • Updated pillow to 7.2.0 - @luzfcb
  • Updated python-slugify to 4.0.1 - @luzfcb
  • Updated Django to 3.0.8 - @luzfcb

[2020-07-02]

Changed

[2020-06-29]

Changed

[2020-06-22]

Changed

[2020-06-18]

Changed

[2020-06-12]

Changed

  • Small fixes in the .coveragerc file - @pydanny

[2020-06-01]

Changed

  • Fixed the project generation when select database=SQLite and windows=n - @luzfcb
  • Applyed black formatting on production.py - @luzfcb
  • Small fixes in the project generation tests - @luzfcb
  • Updated pytest to 5.4.2 - @luzfcb
  • Updated flake8 to 3.8.2 - @luzfcb
  • Updated pylint-django to 2.0.15 - @luzfcb
  • Updated pre-commit to 2.4.0 - @luzfcb

[2020-05-09]

Changed

[2020-04-29]

Changed

  • Added a small batch script to install Chocolatey on Windows - @luzfcb
  • Fixed a small code style issue on UserDetailView @luzfcb
  • Added comments about slug_field and slug_url_kwarg usage on UserDetailView class - @pydanny
  • Updated mypy to 0.770 @luzfcb
  • Removed django-compressor to due install problems on Windows 10 @luzfcb

[2020-04-03]

Changed

  • Added a small script to install Visual Studio Code on Ubuntu @luzfcb
  • Added a small script to install Postgresql 12 on Ubuntu @luzfcb
  • Explained the behavior when DATABASE_URL is not found @luzfcb
  • Renamed ROOT_DIR to BASE_DIR to follow the django startproject nomenclature @luzfcb
  • Replaced the usage of ugettext_lazy by gettext_lazy @luzfcb
  • Added Django 3.0 asgi.py file @luzfcb
  • Added pyproject.toml to configure black @luzfcb
  • Formatted the code with black following the rules defined on pyproject.toml @luzfcb
  • Fixed some flake8 formatting issues @luzfcb
  • Fixed and improve the test suite @luzfcb
  • Updated .travis.yml to follow the new Travis cfg standard @luzfcb
  • Configured travis-ci to use Ubuntu 18.04 instead of 16.04 @luzfcb
  • Fixed formatting issues on DATABASES section to be able to generate project compliant with pep8 @luzfcb
  • Added Travis-ci Badge @luzfcb
  • Updated project configurations to use Python 3.8 @luzfcb
  • Updated django 3.0.4 @luzfcb
  • Updated pre-commit to 2.2.0 @luzfcb
  • Updated mypy to 0.661 @luzfcb
  • Updated werkzeug to 1.0.0 @luzfcb
  • Updated django-debug-toolbar to 2.2 @luzfcb
  • Updated pytest to 5.3.5 @luzfcb
  • Updated pylint-django to 2.0.14 @luzfcb
  • Updated django-crispy-forms to 1.9.0 @luzfcb
  • Updated django-debug-toolbar to 2.2 @luzfcb
  • Updated django-extensions to 2.2.8 @luzfcb
  • Updated ipdb to 0.13.2 @luzfcb
  • Updated collectfast to 2.1.0 @luzfcb

[2020-03-05]

Changed

  • Fixed misformatted unidecode version number - @luzfcb
  • Added a link to django-autoslug repository on the base.txt - @luzfcb
  • Added dependabot configuration file - @luzfcb
  • Removed PyUP configuration file - @luzfcb

[2020-02-18]

Changed

[2020-01-30]

Changed

  • Added missing imports, and got SQLite to run - @pydanny
  • Converted CONTRIBUTORS.rst to markdown - @pydanny
  • Removed bio from models - @edvm

[2020-01-28]

Changed

  • Hard fork of Cookiecutter-Django project - @pydanny

Before Hard Fork of CookiecutterDjango

Cookiecutter Django Changelog