Re: Advancing with the Triage & Review Team idea.

2020-10-06 Thread Carlton Gibson
OK, I've added Jon, Simon and Tim to Nick on the T&R team. That has GitHub's Triage permission, so you can do various Triage-y like things to PRs. (Possibly you already could given membership of other teams but...) I've also invited Hasan and David. They'll need to accept, as not already Dja

Re: Advancing with the Triage & Review Team idea.

2020-10-06 Thread Carlton Gibson
First pass at a PR to DEP 10 https://github.com/django/deps/pull/71 On Tuesday, 6 October 2020 at 10:43:53 UTC+2 Carlton Gibson wrote: > OK, I've added Jon, Simon and Tim to Nick on the T&R team. > > That has GitHub's Triage permission, so you can do various Triage-y like > things to PRs. > (P

Oddity found in password creation

2020-10-06 Thread Hélène Charpentier
Hi, When you create or modify a user account, the password has to be min. 8 characters long, not only numbers, not too simple. But is it normal that you can use 8 times the same character? E.g.: "", "" are not allowed as a password ; "", "" are allowed... Thank yo

Want to contribute to core Django

2020-10-06 Thread Hasanul Islam
Hi, I use django for a while. I think I can contribute to django. But, I have found all the easy picking tickets are already assigned. So, How can I start to be involved with django. -- You received this message because you are subscribed to the Google Groups "Django developers (Contributi

Re: Oddity found in password creation

2020-10-06 Thread Florian Apolloner
Seem to be expected behaviour (albeit somewhat suboptimal :D). The default validators are: https://github.com/django/django/blob/999cddd58d30469f3ee85278985313fdf528323d/django/conf/project_template/project_name/settings.py-tpl#L87-L100 and from the looks of it / is in the list

Re: Want to contribute to core Django

2020-10-06 Thread raj avinash Ghate
Start by making projects and read the document side by side. As you start you will have doubts and as you solve them you will learn On Tue, 6 Oct, 2020, 19:02 Hasanul Islam, wrote: > Hi, > I use django for a while. I think I can contribute to django. > But, I have found all the easy picking tick

Re: Oddity found in password creation

2020-10-06 Thread hcharpent...@gmail.com
I don't know if my thanks were sent - I'm looking for a "solved" button somewhere Anyway, thank you (again?) On Tuesday, October 6, 2020 at 4:30:34 PM UTC+2 f.apo...@gmail.com wrote: > Seem to be expected behaviour (albeit somewhat suboptimal :D). The default > validators are: > https://github.

Re: Oddity found in password creation

2020-10-06 Thread hcharpent...@gmail.com
Oh I see... Thank you! On Tuesday, October 6, 2020 at 4:30:34 PM UTC+2 f.apo...@gmail.com wrote: > Seem to be expected behaviour (albeit somewhat suboptimal :D). The default > validators are: > https://github.com/django/django/blob/999cddd58d30469f3ee85278985313fdf528323d/django/conf/project_te

Re: Oddity found in password creation

2020-10-06 Thread Florian Apolloner
So, I have been digging a little bit more and it seems there was a conscious decision to not include an entropy check or character classes: https://groups.google.com/g/django-developers/c/9GBhgGXmEKs/m/toKKgGhaqewJ -- But I have to admit that this is all I could find and I was rather surprised

Re: Oddity found in password creation

2020-10-06 Thread Adam Johnson
I recommend using https://pypi.org/project/pwned-passwords-django/ , which checks against the pwned passwords database and thus all known breached passwords. It's like the common passwords validator on steriods, but you do have to get your user communication right to explain how you know their reus

Async Django Cache - Redis Complete

2020-10-06 Thread Andrew Wang
Hi all, 1.5 weeks ago, I posted that I was interested in making Django's cache async. Just here to report that the package for django-async-redis is on pypi and the repo is here: https://github.com/Andrew-Chen-Wang/django-async-redis. Please test it out. I have only tested it on a local Django

Re: Fellow Reports - September 2020

2020-10-06 Thread Mariusz Felisiak
Week ending October 2, 2020. *Triaged:* https://code.djangoproject.com/ticket/32047 - Required mutually exclusive groups don't work with boolean arguments. (accepted) https://code.djangoproject.com/ticket/32051 - Animation issues with rocket on Congrats new project page. (accepted) h

Re: Oddity found in password creation

2020-10-06 Thread James Bennett
On Tue, Oct 6, 2020 at 9:07 AM Florian Apolloner wrote: > So, I have been digging a little bit more and it seems there was a conscious > decision to not include an entropy check or character classes: > https://groups.google.com/g/django-developers/c/9GBhgGXmEKs/m/toKKgGhaqewJ -- > But I have to