Re: Password reset emails in combination with click tracking do not work with Intelligent Tracking Prevention on Safari for iOS 12 and macOS Mojave

2019-02-20 Thread Philip James
Mat, are you saying you're seeing Safari still blocking, even with click tracking turned off, because GMail itself is inserting a redirect? PJJ http://philipjohnjames.com On Wed, Feb 20, 2019 at 4:46 AM Mat Gadd wrote: > We're also now seeing Gmail users complain that the password reset links

Re: Fellow Reports - February 2019

2019-02-20 Thread Tim Graham
Week ending February 16, 2019 Reviewed/committed -- https://github.com/django/django/pull/10875 - Refs #15902 -- Deprecated storing current language in the session. https://github.com/django/django/pull/10877 - Fixed #22423 - Added support for MySQL operators on real

Re: Password reset emails in combination with click tracking do not work with Intelligent Tracking Prevention on Safari for iOS 12 and macOS Mojave

2019-02-20 Thread Mat Gadd
We're also now seeing Gmail users complain that the password reset links don't work, even after we disabled click tracking. It seems that Google are inserting their own click tracking into users' emails, which is… weird? The markup of links is transformed to the following (where … is our

Re: Add an defer=True option for model fields

2019-02-20 Thread Adam Johnson
Dan, as to solving your problem with the Django of today: if you don't mention a field in the Django model definition, Django won't select it. So, you can declare the table for two Django models, and use "vertical partitioning" so that when you query one, the other isn't selected, unless it is

Re: Add an defer=True option for model fields

2019-02-20 Thread Josh Smeaton
There is a ticket for this one already, filed 4 years ago by me :) https://code.djangoproject.com/ticket/24096 There are a few options described, but I think `defer=True` was winning out. I don't think we considered an `undefer`, but a `defer(None)` would fix that. Once that API is built, then

Re: Validation of m2m

2019-02-20 Thread Bernd Wechner
Ouch, I am not believing my eyes, but somewhat overjoyed with what I have found in my explorations over recent evenings empirically exploring transactions. The TLDR is this: I am puzzled that I haven't tested and found this to date, and that all the folk I read online asking for m2m ORM