diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cc4f90..3413fc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## [2024.51] + ### Fixed - Removed `conn_max_age` argument when configuring database connection if Django version is greater than 5.1. In that case, we enable connection pooling and the `conn_max_age` setting causes the application to error with a `django.core.exceptions.ImproperlyConfigured: Pooling doesn't support persistent connections.` exception. @@ -649,7 +651,7 @@ Initial release! 🎉 - Josh Thomas (maintainer) -[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.50...HEAD +[unreleased]: https://github.com/westerveltco/django-twc-project/compare/v2024.51...HEAD [2024.1]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.1 [2024.2]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.2 [2024.3]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.3 @@ -700,3 +702,4 @@ Initial release! 🎉 [2024.48]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.48 [2024.49]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.49 [2024.50]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.50 +[2024.51]: https://github.com/westerveltco/django-twc-project/releases/tag/v2024.51 diff --git a/VERSION b/VERSION index 242fe47..e36de95 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2024.50 +2024.51 diff --git a/copier.yml b/copier.yml index 884c9d7..249e99c 100644 --- a/copier.yml +++ b/copier.yml @@ -13,7 +13,7 @@ _secret_questions: _subdirectory: src/django_twc_project template_version: - default: "2024.50" + default: "2024.51" when: false # ---------------------------------------------------------------------- diff --git a/examples/default/.copier/project.yml b/examples/default/.copier/project.yml index 7d93f37..7331344 100644 --- a/examples/default/.copier/project.yml +++ b/examples/default/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: d7c787a +_commit: v2024.50-5-g2d1c3fa _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/default/default/settings.py b/examples/default/default/settings.py index b5e47ef..cc8c930 100644 --- a/examples/default/default/settings.py +++ b/examples/default/default/settings.py @@ -261,7 +261,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="280ee5759441f775fd72de4a305a725f57610e7f8905ceb698bc61de36f7c691", + default="4e5b5f02f3604cacfb7f58da0c0f66c32846a6034fb56e1d07a03d9c22f73ff3", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD diff --git a/examples/postgis/.copier/project.yml b/examples/postgis/.copier/project.yml index 682ed16..a0c977e 100644 --- a/examples/postgis/.copier/project.yml +++ b/examples/postgis/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: 0d950bd +_commit: v2024.50-5-g4f19ea2 _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/postgis/default/settings.py b/examples/postgis/default/settings.py index a95e9c5..bc156ff 100644 --- a/examples/postgis/default/settings.py +++ b/examples/postgis/default/settings.py @@ -261,7 +261,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="141e1333747741663fa51214fbe83acb2ec4f18c2ac889d7935071b02ab8395c", + default="eac7987975fd8a0ecc81cc6f9afe9138bdcad4cbebdd80f27f7a1f140b9550a5", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD diff --git a/examples/with_vite/.copier/project.yml b/examples/with_vite/.copier/project.yml index 0a194a9..8d5d006 100644 --- a/examples/with_vite/.copier/project.yml +++ b/examples/with_vite/.copier/project.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: 4bed617 +_commit: v2024.50-5-g8b63f34 _src_path: . admin_email: admin@example.com author_email: jdoe@example.com diff --git a/examples/with_vite/with_vite/settings.py b/examples/with_vite/with_vite/settings.py index 2d36631..e847d6a 100644 --- a/examples/with_vite/with_vite/settings.py +++ b/examples/with_vite/with_vite/settings.py @@ -262,7 +262,7 @@ SECRET_KEY = env.str( "SECRET_KEY", - default="655d6be74bd2ecc1b0dfca6636cb8d124f6a99e71020b4497981582466534072", + default="2164c2f2347923f03d8234d274e6f913de88491be5f5dd9bfea13fc461312138", ) SECURE_HSTS_INCLUDE_SUBDOMAINS = PROD diff --git a/pyproject.toml b/pyproject.toml index d11cf5e..734a29c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ requires-python = ">= 3.9" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "2024.50" +current_version = "2024.51" push = false # set to false for CI tag = false version_pattern = "YYYY.INC1" diff --git a/tests/test_version.py b/tests/test_version.py index b5462c3..83e8f3f 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -10,4 +10,4 @@ def test_VERSION_version(): with open(file, encoding="utf-8") as f: version = f.read().strip() - assert version == "2024.50" + assert version == "2024.51"