-
-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
closes #116: Add support for Django 4.2 #129
Conversation
Now django-redshift-backend maybe works with Django-4.2. |
aa064d4
to
6b940cd
Compare
UnitTest with Redshift has been completed by #134 . |
This comment was marked as outdated.
This comment was marked as outdated.
All tasks have been completed and I have also been able to confirm the operation of the install
prepare before migration
migration with redshift
after migration
create superuser
runserver
open http://127.0.0.1:8000/explorer So I will merge it shortly. |
from django.db import DEFAULT_DB_ALIAS, DatabaseError | ||
from django_redshift_backend._vendor.django40.db.backends import utils | ||
from django_redshift_backend._vendor.django40.db.backends.base.validation import BaseDatabaseValidation | ||
from django_redshift_backend._vendor.django40.db.backends.signals import connection_created |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shimizukawa
Creating a separate connection_created
signal will break signalling as the original singleton is the one every application depends on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, thanks! I'll fix it soon.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed the issue by #147
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zsombor-udvardy Thanks for your reporting!
Now fixed django-redshift-backend 4.1.1 has been released.
https://pypi.org/project/django-redshift-backend/4.1.1/
Feature or Bugfix
Purpose
Detail
Relates
TODO
Tasks