This depends on the collation that is used <https://en.wikipedia.org/wiki/Unicode_collation_algorithm>. On a system sorting everything as if it was Turkish, "ı" and "i" would be considered two different letters, but I guess everywhere else they would be merged into "i".
On Wed, 18 Dec 2019 at 14:09, Dirk Groten <[email protected]> wrote: > > I've been looking in more detail into this issue, as some other Django > packages are affected also by this issue. Now, when I run the tests that are > provided with this fix using SQLite, the issue does not occur, whereas it > does happen for PostgreSQL (I haven't tested for MySQL). Is it correct that > in Postgres, `User.objects.filter(email__iexact='mı[email protected]')` will > match a user with email "[email protected]" but SQLite won't find a match? And > if so, why is that? Is it dependent on specific Postgres settings? > > On Wednesday, December 18, 2019 at 10:23:35 AM UTC+1, Mariusz Felisiak wrote: >> >> Details are available on the Django project weblog: >> >> https://www.djangoproject.com/weblog/2019/dec/18/security-releases/ >> > -- > You received this message because you are subscribed to the Google Groups > "Django developers (Contributions to Django itself)" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-developers/7ebbc544-c113-478b-9417-7f714fef783e%40googlegroups.com. -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/CACQ%3Drrco062GzUG_tavb1mVjtMJuh%3Dvth6%2Bi_UK6sAvmPPGZWg%40mail.gmail.com.
