Re: Fellow Reports -- February 2020

2020-03-01 Thread Carlton Gibson
Hi all, Calendar Week 8 -- ending 23 February. Triaged: https://code.djangoproject.com/ticket/31150 -- Subquery annotations are omitted in group by query section if multiple annotation are declared (Accepted) https://code.djangoproject.com/ticket/31290 -- Unable to runserver - python

Re: ngettext_lazy and ngettext

2020-03-04 Thread Carlton Gibson
HI Uri. Yes, we know. :) Please don't bump. It's just adds noise. (If you MUST bump, a comment on the PR is more than enough, so not everyone of the thousands on this list needs a notification.) Thanks. Ref backport: it's a possibility but you should phrase it more like, "this is serious

Re: GSOC 2020

2020-03-04 Thread Carlton Gibson
Well, hang on... that might be a bit quick. I'm just thinking about putting together a call for Mentors this year. I'm looking to do it via the Forum, which seems to be working well, and we should be able to spread the load. But we will need people formally in the Mentor role, and the number

Re: ngettext_lazy and ngettext

2020-03-04 Thread Carlton Gibson
2019), since then there is a problem with Django > 2.2, and I noticed you released recently a new Django version. I think you > (the Django developers) should take this issue seriously and not like "That > one user has a bug". > > אורי > u...@speedy.net > > > On We

Re: ngettext_lazy and ngettext

2020-03-04 Thread Carlton Gibson
ge I'm > using is not the most popular language Django users are using, but it is a > regression. It's also not documented in the release notes, as I would > expect it to be documented there. > אורי > u...@speedy.net > > > On Wed, Mar 4, 2020 at 7:22 PM Carlton Gib

Review needed: Proposed behavior change in Field.contribute_to_class()

2020-03-04 Thread Carlton Gibson
Hi all. Especially from those with long memories, can I request thoughts on a proposed adjustment to `Field.contribute_to_class()`, which affects the manner in which fields override attributes from parent classes? The entails a breaking change. As such...  — but I think it's acceptable and

Re: help For GSoC Proposal (Improve Admin Filters)

2020-02-25 Thread Carlton Gibson
Hi all. Yes, as Adam says, there's a good amount of info on the Wiki page to get you started. See the Contributing docs and the Advice for new contributors to begin. https://docs.djangoproject.com/en/dev/internals/contributing/

Re: extension for arangodb

2020-01-29 Thread Carlton Gibson
Hi. The database docs list some available third-party backends. https://docs.djangoproject.com/en/3.0/ref/databases/ I seem to recall a post or two about CockroachDB just announcing one too... If you look at those (and the built in backends) you should see what you need do. I don’t think

Re: start contributing to django

2020-02-05 Thread Carlton Gibson
Hi Rishabh. Check out the contributing guide to begin: https://docs.djangoproject.com/en/dev/internals/contributing/ The Advice for new contributors is good: https://docs.djangoproject.com/en/dev/internals/contributing/new-contributors/ Kind Regards, Carlton On Wed, 5 Feb 2020 at 13:30,

Re: Beginner-friendly issue to start contributing to codebase

2020-02-06 Thread Carlton Gibson
Hi Vibhu Take a look at: https://code.djangoproject.com/ticket/29446 Create a venv. Install your checkout of Django (with `pip install -e path/to/django`) Create a test project with a simple template view. Pass a callable that raises an error to the template. See the debug view. It should show

Re: Guidance for GSoC

2020-02-06 Thread Carlton Gibson
Hi. Auth is a long way from the ORM. :) I guess first make sure you understand contrib.auth. Maybe look at some auth tickets. https://code.djangoproject.com/query?status=assigned=new=contrib.auth=id=summary=status=owner=type=component=version=1=id Then for 2fa, there's not a concrete proposal

Re: Use "raise from" where appropriate, all over the codebase

2020-02-06 Thread Carlton Gibson
> +1 on chaining exceptions. I think the information is useful. Absolutely. But exceptions are **already** chained, regardless of whether we use the `from` syntax. Without the from clause exceptions are "implicitly" chained. With the from claus it's "explicit". Just the same tracebacks are

Django security releases issued: 3.0.3, 2.2.10 and 1.11.28

2020-02-03 Thread Carlton Gibson
Today the Django team issued 3.0.3, 2.2.10 and 1.11.28 as part of our security process. These releases address a security issue, and we encourage all users to upgrade as soon as possible: https://www.djangoproject.com/weblog/2020/feb/03/security-releases/

Re: Fellow Reports -- January 2020

2020-02-03 Thread Carlton Gibson
Hi all. Calendar Week 5 -- ending 02 February. Triaged: https://code.djangoproject.com/ticket/31216 -- Support terminal color output on Windows via colorama (Accepted) https://code.djangoproject.com/ticket/31201 -- Atomic Transaction Roll Back File Upload (wontfix) Reviewed:

Re: Where to post to ask questions about solving a Django ticket

2020-02-03 Thread Carlton Gibson
Grrr. Auto-correct. Sorry about that Ahmad. On Mon, 3 Feb 2020 at 18:42, Carlton Gibson wrote: > Hi Ahmed. > > There’s a mentoring topic on forum.djangoproject.com. You can post there. > > Please try to provide as much detail as possible.  > > Kind regards, > Carlto

Re: Where to post to ask questions about solving a Django ticket

2020-02-03 Thread Carlton Gibson
Hi Ahmed. There’s a mentoring topic on forum.djangoproject.com. You can post there. Please try to provide as much detail as possible.  Kind regards, Carlton On Mon, 3 Feb 2020 at 18:23, Ahmad A. Hussein wrote: > I'm currently stuck on solving a Django ticket I assigned to myself, and I >

Re: Use "raise from" where appropriate, all over the codebase

2020-02-07 Thread Carlton Gibson
not to is, in general, a good policy. I know I'm -1 on this particular change, for the reasons in this thread, but thank you for your efforts nonetheless. :) Kind Regards, Carlton On Friday, 7 February 2020 12:17:11 UTC+1, Ram Rachum wrote: > > > > On Fri, Feb 7, 2020 at 12:23 PM Ca

Re: Use "raise from" where appropriate, all over the codebase

2020-02-07 Thread Carlton Gibson
> I'm basing it on the fact that Carlton approved this PR for the style guide: https://github.com/django/django/pull/12350 No. I don't think we should merge that change. (It's "approved" qua itself before reviewing, and dependent on the main PR.) To be clear. I think the default implicit

Re: Beginner-friendly issue to start contributing to codebase

2020-02-07 Thread Carlton Gibson
. > I'm looking into this issue now and I'll try to submit a patch asap :) > > Should I claim this ticket? > > > On Thursday, February 6, 2020 at 2:25:08 PM UTC+5:30, Carlton Gibson wrote: >> >> Hi Vibhu >> >> Take a look at: https://code.djangoproject.com/ticket/2

Re: Fellow Reports -- January 2020

2020-01-29 Thread Carlton Gibson
Hi all Calendar Week 3 -- ending 19 January. Triaged: https://code.djangoproject.com/ticket/28217 -- nested calls to functions decorated with sensitive_post_parameters produces unexpected results which parameters are considered sensitive (wontfix)

CrossDB JSONField — Testing needed.

2020-01-30 Thread Carlton Gibson
Hi all. >From GSoC last year, Sage has a CrossDB JSONField for us: https://github.com/django/django/pull/12392 We still have a bit more close review to do but... *We need people to give it an outing, to find issues/regressions and so on. * PostgreSQL: Clone your DB etc. Change your

Fellow Reports -- February 2020

2020-02-19 Thread Carlton Gibson
Hi All, Calendar Week 6 -- ending 09 February. Triaged: https://code.djangoproject.com/ticket/31229 -- Add setting to allow flexible session saving based on response codes (wontfix) https://code.djangoproject.com/ticket/31232 -- Add secure default SECURE_REFERRER_POLICY / Referrer-policy

Re: Consider renaming `mark_safe` to `dangerously_trust_html` (etc)

2020-02-19 Thread Carlton Gibson
I've just closed the ticket as wontfix, because I'm not seeing a consensus for the change here. I'm seeing a few Yeahs and a few Mehs. That doesn't mean we can't have it, but the procedure is generally agree here before a ticket. So can I ask, those wanting this, to make the case here, then we

Fellow Reports -- January 2020

2020-01-15 Thread Carlton Gibson
Hi all. Calendar Week 2 -- ending 12 January. Triaged: https://code.djangoproject.com/ticket/31156 -- Updated seo content not showing on google page when served with django templating (Invalid) https://code.djangoproject.com/ticket/31151 -- Automatically create a database from database

Re: How to Start for GSOC 2020 in Django org.

2020-01-13 Thread Carlton Gibson
Hi. I created a Wiki page for GSoC 2020 https://code.djangoproject.com/wiki/SummerOfCode2020 Check it out. Read over the Project Ideas and the notes for students. Then I suggest getting involved — now's a great time. :) Kind Regards, Carlton On Monday, 13 January 2020 13:56:13 UTC+1,

Re: Fellow Reports -- December 2019

2020-01-02 Thread Carlton Gibson
Hi all. Calendar Week 51 -- ending 22 December. Triaged: https://code.djangoproject.com/ticket/31103 -- Pagination documentation is missing some important detail (Accepted) https://code.djangoproject.com/ticket/31102 -- Bug: Saving on a ModelAdmin with TabularInlines sometimes duplicates

Re: Sounding out for GSoC 2020.

2020-01-02 Thread Carlton Gibson
ts yet that are > of *low *complexity as I'm unable to judge the complexity of the proposed > projects here. If so, please let me know so that I could start working on > them ASAP. > > Also, you gave a great presentation at DjangoCon US :-) > > Regards, > > Aaryan >

Re: IRC Chat

2020-03-10 Thread Carlton Gibson
Hi José. Welcome. Just first, please see https://heyguys.cc — Not everyone is a guy so we try to use other greetings. Thanks. Then, yes, the IRC is still around. (I'm terrible at IRC. I can barely use it myself, but others do so a lot.) Also there's https://forum.djangoproject.com/ which

Re: Widget Media Class

2020-04-10 Thread Carlton Gibson
Hi David. Right... ummm... That's all a bit speculative. The best answer is more that likely that there are no current opinions on the issue.  Rather, folks will have to go and have a read and a think and come up with opinions (or remember old ones.) That's OK, but it's asking for work,

Re: Making the admin more navigable

2020-04-15 Thread Carlton Gibson
Do we know anyone who's a *Design/CSS/UX specialist* that can offer some input here? Hi Tom. Thanks for this PR. https://github.com/django/django/pull/12159 I think it's a good addition. It's perhaps not perfect, but we can take it as an incremental change and then improve it over time.

Technical Board statement on type hints for Django

2020-04-14 Thread Carlton Gibson
Hi all. The question of using typing, or type hints, or type checking, in (or with) Django has come up several times. Whether we would add inline annotations, or use stub files, or what? Most recently, this resulted in a draft DEP[0] to try and formalize the situation, followed by a PR[1]

Fellow Reports -- April 2020

2020-04-21 Thread Carlton Gibson
Hi all. Calendar Week 14 -- ending 05 April. Triaged: https://code.djangoproject.com/ticket/31418 -- ValueError when FileBasedCache is used in Python 2.7 (invalid) https://code.djangoproject.com/ticket/31411 -- Use RENAME COLUMN on MariaDB 10.5.2+. (Accepted)

Re: New Merger nomination.

2020-03-13 Thread Carlton Gibson
Seconded. Claude is one of the few existing committers who still uses and needs his commit access. He handles the translation updates for each release, and we’d be (not lost but) lost without that help. Kind Regards, Carlton On Fri, 13 Mar 2020 at 20:30, Mariusz Felisiak wrote: > I

Django bugfix releases: 3.0.5 and 2.2.12.

2020-04-01 Thread Carlton Gibson
Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2020/apr/01/bugfix-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

Re: GSoC Mentors

2020-03-26 Thread Carlton Gibson
Hi David. Thanks. That makes a few folks that have put their hands up so  On Thu, 26 Mar 2020 at 13:47, David Smith wrote: > Hi Carlton, > > I'm happy to help out with 1), if you think I would be helpful. > > I will not be of much help with 2) :-) > > David > > -- > You received this message

Re: GSoC Mentors

2020-03-26 Thread Carlton Gibson
Thanks Simon, super. On Wednesday, 25 March 2020 19:25:27 UTC+1, charettes wrote: > > I confirm my willingness to be a mentor for ORM and Migrations related > work. > > Simon > > Le mercredi 25 mars 2020 04:43:49 UTC-4, Carlton Gibson a écrit : >> >> Hi a

Re: GSoC proposal research - type hinting

2020-03-28 Thread Carlton Gibson
/django-stubs>), and it's being discussed as > DEP 65. This seems to be quite nice solution, but a few months ago Carlton > Gibson described it as "work around" > (https://github.com/django/deps/pull/65#issuecomment-539505849 > <https://github.com/django/deps/pull/65#issue

Re: GSoC proposal research - type hinting

2020-03-30 Thread Carlton Gibson
Hi Nikita. Thanks for the follow up. C. On Mon, 30 Mar 2020 at 13:56, Никита Соболев wrote: > Hi everyone, > > I am one of the django-stubs core-devs (https://github.com/sobolevn). > > I would love to mentor Kacper and help with anything django-stubs related. > You can count me in! > > Best

Re: Fellow Reports -- March 2020

2020-03-30 Thread Carlton Gibson
Hi All. Calendar Week 12 -- ending 22 March. Triaged: https://code.djangoproject.com/ticket/30311 -- Cant replace global admin actions with specialized ones per-admin (Accepted) https://code.djangoproject.com/ticket/31380 -- Deploy system check that DJANGO_ALLOW_ASYNC_UNSAFE is not set

i18n + Sitemaps (Testing Needed)

2020-04-02 Thread Carlton Gibson
Hiya, Are you using i18n + contrib.sitemaps? There's a PR here to add alternate hreflang links to sitemaps: https://github.com/django/django/pull/11937 Google docs on the subject: https://support.google.com/webmasters/answer/189077 The idea is that if Sitemap.i18n is True, each URL will

Re: Discuss ticket 20264: URLValidator should allow underscores in local hostname

2020-03-26 Thread Carlton Gibson
> By all means add a lenient=False flag which can be turned to True to enable lenient parsing... I don't think we should even allow this. The extra API surface area complicates the matter for all users, almost all of whom are never going to set the new flag to anything but the default. (Of

Re: GSoC Proposal to extend the parallel test runner to Windows and macOS and to support Oracle parallel test running

2020-03-26 Thread Carlton Gibson
Hi Tom. (I was wondering if you might fancy mentoring on this project? ) On Thursday, 26 March 2020 12:35:34 UTC+1, Tom Forbes wrote: > > > incompatible in macOS due to a recent update > > Can you elaborate on this a bit? How has a recent update made forking > incompatible on MacOS? > macOS

GSoC Mentors

2020-03-25 Thread Carlton Gibson
Hi all. We're reaching the end of the application period for GSoC. In order to know how many students we might accept, we need to know how many prospective mentors we have. This falls into two kinds of job: 1. General project management help: communicating with students to help them set

Re: Proposal: FileSystemFinder and AppDirectoriesFinder shall serve unminimized assets in DEBUG mode

2020-04-23 Thread Carlton Gibson
It seems this thread ties in with the current discussion about static assets. For instance if we were to include a compression step, you’d always just reference the raw assets, these being processed, with source maps if we had that, for production. -- You received this message because you are

Re: Proposal: FileSystemFinder and AppDirectoriesFinder shall serve unminimized assets in DEBUG mode

2020-04-25 Thread Carlton Gibson
> On 25 Apr 2020, at 21:59, Jacob Rief wrote: > > So unless Django embraces npm in order to execute the > compile/compress/concatenate/uglify-steps, I don't see a lot of possibilities > other than referring to the processed, aka *.min.xyz file. Well, see the other thread

Re: Management of static assets

2020-04-22 Thread Carlton Gibson
Hi David. Wowser. Good work! (A cup of tea indeed — I should have replied to the first question better ) (Inter alia) You raised five questions. These were the last three: - Should there be better support for front end JS frameworks - Should we have support for webpack - We should support

Re: New Merger nomination.

2020-04-23 Thread Carlton Gibson
Hi all, thanks. I think that's everyone, so I'll add Claude to the team.  Kind Regards, Carlton -- 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

Re: Fellow Reports -- April 2020

2020-04-29 Thread Carlton Gibson
Hi all. Calendar Week 17 -- ending 26 April. Triaged: https://code.djangoproject.com/ticket/31509 -- Enable faulthandler automatically during tests (Accepted) https://code.djangoproject.com/ticket/31412 -- Database timing attack against sessions. (wontfix)

Django Version 3.2 Roadmap

2020-05-13 Thread Carlton Gibson
Hi all. I've prepared a draft of the Roadmap for Django 3.2 here: https://code.djangoproject.com/wiki/Version3.2Roadmap Following the established release cadence, Django 3.2 will be due in April 2021. The key dates are these. =

Selected projects for Google Summer of Code 2020

2020-05-06 Thread Carlton Gibson
student German University in Cairo, will work to extend the parallel test runner to Windows, macOS, and add Oracle support. His primary mentors are Tom Forbes and Adam Johnson. Additional mentors are Shai Berger, Simon Charette, Sage Abdullah, David Smith, Mariusz Felisiak, and Carlton Gibson. (I

Re: Rename request.GET and POST, and lowercase COOKIES, FILES, and META

2020-05-06 Thread Carlton Gibson
Hmmm. I have to say I think there are areas where we could get a better ROI on our time than this. I always took the capitalisation of GET to come from HTTP — I'd say that's where PHP took it from too but 路‍♀️ That they're a bit "unpythonic"

Re: GSoC 2020

2020-05-06 Thread Carlton Gibson
Yes, absolutely. Thank you both. We do hope you'll continue to be part of the community! Kind Regards, Carlton On Wednesday, 6 May 2020 00:44:03 UTC+2, Adam Johnson wrote: > > Thank you both for writing proposals and contributing to the community! > > On Mon, 4 May 2020 at 19:14, Abhijeet

Re: Removing url() ?

2020-05-06 Thread Carlton Gibson
Hi Uri. > On 6 May 2020, at 08:32, ⁨אורי⁩ <⁨u...@speedy.net⁩> wrote: > > Although I'm not sure why it was deprecated and renamed to re_path(). It was part of the effort to simplify the URL routing, as part of Django 2.0

Re: GSoC 2020

2020-05-08 Thread Carlton Gibson
Hi Abhirav. I think this is an interesting project. It would be nice if we had a story for handling sensitive values that went (in principle) from "use environment variables" (or a file) to the various Vault-like options. The trick is making that compelling as a feature for Django, but such a

Re: Django Version 3.2 Roadmap

2020-05-13 Thread Carlton Gibson
I’d probably just push it for the 6th in this case, after the weekend. (I obviously live a sheltered life: April fools never occurred to me... ) On Thu, 14 May 2020 at 00:02, Florian Apolloner wrote: > On Wednesday, May 13, 2020 at 4:40:55 PM UTC+2, Adam Johnson wrote: >> >> This looks good

Re: Django Version 3.2 Roadmap

2020-05-15 Thread Carlton Gibson
OK, thanks thus far all. I've bumped the final release date to April 6 2021. (I left the other dates as were: a handful of extra days over the weekend there will be a nice to have when they arrive :) C. -- You received this message because you are subscribed to the Google Groups "Django

Re: Django Version 3.2 Roadmap

2020-05-13 Thread Carlton Gibson
> On 13 May 2020, at 16:40, Adam Johnson wrote: > > I edited the wiki page slightly to rename "committer" to "merger" in > accordance with DEP 10. Ah, yes. Good catch. Thank you! -- You received this message because you are subscribed to the Google Groups "Django developers

Re: Rename request.GET and POST, and lowercase COOKIES, FILES, and META

2020-05-08 Thread Carlton Gibson
> On 7 May 2020, at 22:03, Florian Apolloner wrote: > > forms with method="GET" are legitimate and wouldn't end up in `form_data` > forms with method="GET" are legitimate and wouldn't end up in `form_data` > which is imo quite confusing. Do we have any other options? Would there be an issue

Re: Request to reconsider #30311 -- allow overriding site-wide admin actions

2020-03-18 Thread Carlton Gibson
Hi Shai. I triaged that, and was involved in the change in #29917 that led to your issue. https://code.djangoproject.com/ticket/29917 The proposal to change it was made on the list here: https://groups.google.com/d/topic/django-developers/-OWoYL_zryM/discussion I’ll have another review of

Re: Request to reconsider #30311 -- allow overriding site-wide admin actions

2020-03-18 Thread Carlton Gibson
OK, thanks both. Seems reasonable. Let me have a look at it in the morning. One question is whether we handle this for just delete_selected or any action which an AdminSite declares. The example from #30311 was `expect_inquisition` (Nice) Do we want to handle that too? 樂 Cheers. C. On

Re: New Merger nomination.

2020-03-19 Thread Carlton Gibson
I don't know if this got blocked in the now-obsolete use of cognates of "commit"? > The Merger role is not just a new name for "committer". If Claude is > appointed a Merger, he will be forbidden to do what you are saying -- > a Merger cannot push their own contributions directly into Django!

Re: Request to reconsider #30311 -- allow overriding site-wide admin actions

2020-03-19 Thread Carlton Gibson
OK, reopened and accepted. Thanks for bringing it to the list Shai! C. -- 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

Fellow Reports -- March 2020

2020-03-19 Thread Carlton Gibson
Hi all. Calendar Week 10 -- ending 08 March. Triaged: https://code.djangoproject.com/ticket/31342 -- Default manager vs Base manager for RelatedManager (Accepted) https://github.com/django/asgiref/issues/147 -- Is it possibile to call obj.save() inside an event loop? #147 (worksforme)

Proposal to deprecate NullBooleanField (and remove in Django 4.0)

2020-03-17 Thread Carlton Gibson
Hi all. https://code.djangoproject.com/ticket/31369 Proposes to deprecate NullBooleanField. https://code.djangoproject.com/ticket/29227 Allowed BooleanField to be null=True. Introduced in Django 2.1. I'm inclined to Accept. Wonder if folks consider it a little too fast? (We could

Re: Proposal to deprecate NullBooleanField (and remove in Django 4.0)

2020-03-17 Thread Carlton Gibson
ic Augustin < >> aymeric.augus...@polytechnique.org> wrote: >> >>> Hello, >>> >>> I'm inclined to Accept as well. >>> >>> -- >>> Aymeric. >>> >>> >>> >>> On 17 Mar 2020, at 08:49, Carlton Gibson >&g

Re: Fellow Reports -- April 2020

2020-05-03 Thread Carlton Gibson
Hi all. Calendar Week 18 -- ending 03 May. Triaged: https://code.djangoproject.com/ticket/31527 -- Admindocs View index assumes settings.ROOT_URLCONF is an import string (Accepted) https://code.djangoproject.com/ticket/31526 -- Include Admin model views as Generic Views (Accepted)

Re: Suggestion for starting contribution to Django

2020-09-03 Thread Carlton Gibson
Hi Hasan. Welcome. Let’s see if we can get you started. Begin with the Contributing Guide: https://docs.djangoproject.com/en/3.1/internals/contributing/ You don’t have to read it all to start.  Checkout the Advice for New Contributors, and then see if you can get set-up with the Unit

Re: Suggestion for starting contribution to Django

2020-09-03 Thread Carlton Gibson
> Here’s a link to the issue tracker, showing the open tickets for contrib.staticfiles. Of course I then fail to paste the link.  Here’s the link: https://code.djangoproject.com/query?status=assigned=new=contrib.staticfiles=id=summary=status=component=owner=type=version=1=id C. -- You

Django security releases issued: 3.1.1, 3.0.10 and 2.2.16

2020-09-01 Thread Carlton Gibson
Today the Django team issued 3.1.1, 3.0.10 and 2.2.16 as part of our security process. These releases address two security issues, and we encourage all users to upgrade as soon as possible: https://www.djangoproject.com/weblog/2020/sep/01/security-releases/ -- You received this message

Re: 2020 edition of core.files.storages.Storage.copy method

2020-09-02 Thread Carlton Gibson
Hi Lorenzo. You’re asking folks to do quite a lot of homework there. Any chance you could summarise the previous discussions and explain at least, why this might be a good feature, and why (presumably) it was a no-go last time? I think there’s more chance of positive input that way.  Kind

Fellow Reports -- September 2020

2020-09-08 Thread Carlton Gibson
Hi all. Calendar Week 36 -- ending 06 September. Released Django versions 3.1.1, 3.0.10 and 2.2.16. Triaged: https://code.djangoproject.com/ticket/30952 -- KeyError: _password_reset_token during password reset. (needsinfo) https://code.djangoproject.com/ticket/31974 -- SplitDateTimeWidget

Re: Admin accessibility

2020-09-14 Thread Carlton Gibson
Hi All. Thanks for this. I'd be happy to play *Shepherd *if you need someone to put their hand up. I think that means I need to nag about getting it done. So...  Who's going to be on the team to do the first review, and then subsequent work? Answer that and you have the Implementation Team.

Re: Logging in from one browser logs me out from other browsers (after any change in PBKDF2PasswordHasher.iterations)

2020-09-03 Thread Carlton Gibson
> On 3 Sep 2020, at 10:57, Tom Forbes wrote: > > You might have a point regarding the frequency of bumping the PBKDF iteration > setting. Is bumping it 5 times in 13 months really required? It was more like 40 months. For 1.11: May 20, 2016

Re: Fellow Reports -- August 2020

2020-08-31 Thread Carlton Gibson
with thread_sensiti… Kind Regards, Carlton On Wednesday, 19 August 2020 at 12:37:20 UTC+2 Carlton Gibson wrote: > Hi all. > > > Calendar Week 32 -- ending 09 August. > > > Triaged: > > https://code.djangoproject.com/ticket/31864 -- Session data cannot be > decoded durin

Re: Proposal: Drop dependency on pytz in favor of zoneinfo

2020-10-07 Thread Carlton Gibson
Hi Paul. Thanks for the input here, and for your patience > I am fairly certain this is going to be a tricky migration and will inevitably come with *some* user pain. I don't think this will be Python 2 → 3 style pain, but some users who have been doing the "right thing" with pytz will need

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 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

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 team. > > That has GitHub's Triage permission, so you can do various Triage-y like > t

Re: Small feature addition

2020-10-12 Thread Carlton Gibson
Hi. Welcome aboard! Check out the contributing guide. https://docs.djangoproject.com/en/3.1/internals/contributing/ It should have all you need to know to get going. Kind regards, Carlton On Sun, 11 Oct 2020 at 18:29, sudhansh...@gmail.com < sudhanshuraj8...@gmail.com> wrote: > Hi,communiyt ;

Fellow Reports -- October 2020

2020-10-13 Thread Carlton Gibson
Hi all. Calendar Week 40 -- ending 04 October. Triaged: https://code.djangoproject.com/ticket/32069 -- Admin change form layout broken at narrower browser widths in 3.1.2 (Accepted) https://code.djangoproject.com/ticket/32059 -- Issue when counting a model extending auth_user by month

Re: Fellow Reports -- October 2020

2020-10-20 Thread Carlton Gibson
Hi All. Calendar Week 42 -- ending 18 October. Triaged: https://code.djangoproject.com/ticket/32088 -- Django Database Sessions - Cant Retrieve expire_date from request.session (SessionStore) (wontfix) https://code.djangoproject.com/ticket/32106 -- Redirect following in test client does

Re: Updating the documentation search

2020-10-10 Thread Carlton Gibson
Hi Paolo, Thank you for this! Absolutely super that you’ve taken this on. I’ve noted your PRs and they’re on my list to look at, hopefully next week. (Others please do too! )  Kind regards, Carlton -- You received this message because you are subscribed to the Google Groups "Django

Re: Proposal: Drop dependency on pytz in favor of zoneinfo

2020-10-09 Thread Carlton Gibson
The reason I suggested going with Paul's shim is that it allows folks to update without having to stop there and then to make code changes. Yes, they'll need to review the deprecation warnings, and there's the issue with datetimes over offset changes, but we can call that out in the release

Re: Advancing with the Triage & Review Team idea.

2020-10-05 Thread Carlton Gibson
Thanks Simon. There are two parts to this: * the team, with the Triage and Review permission. * Whether they can approve Mariusz’ PRs over the weekend. (And other times…) I could take the previous discussion for a Yes on the first part, and just invite more people. (I should probably just

Re: Cache framework

2020-08-18 Thread Carlton Gibson
I think we SHOULD bring a redis cache backend into core. The recent survey showed 70% of our users using redis for caching, with 20%+ using memcached. Nick is working on https://github.com/django/django/pull/13310 now. This’ll give us three memcached backends and zero for redis. That

Re: Cache framework

2020-08-19 Thread Carlton Gibson
May I ask where that survey was conducted? I totally missed it. > > LP, > Jure > > On 18/08/2020 15:33, Carlton Gibson wrote: >> I think we SHOULD bring a redis cache backend into core. >> >> The recent survey showed 70% of our users using redis for caching, with

Re: Cache framework

2020-08-18 Thread Carlton Gibson
> On 19 Aug 2020, at 00:11, René Fleschenberg wrote: > > Or would the built-in cache backend > just not expose those APIs? That one. All I’m proposing is a backend with the current API. Over time that API has grown slightly, so maybe there’d be a case for additional methods, but that

Re: include_block template tag

2020-08-19 Thread Carlton Gibson
>From the thread, I’d suggest collaboration with Curtis if the ideas are >similar enough. Also from the thread: the idea seems to fit between include as we have it now, and a custom tag. Maybe that gap hasn’t been wide enough to grasp sufficient interest? I think the standard path for

Re: include_block template tag

2020-08-19 Thread Carlton Gibson
e but for others (like this) I think it should be > developed though consensus in the core framework. > > Reusable template components are still an unsolved problem that would be > lovely to solve. > > Thanks! > Sam > On Wednesday, August 19, 2020 at 1:05:15 PM UTC+1

Re: Italic

2020-08-27 Thread Carlton Gibson
I think it means that the ticket recently changed state, so that it no longer matches the query. (I’m not sure of the underlying mechanism there…) > On 27 Aug 2020, at 08:05, ⁨אורי⁩ <⁨u...@speedy.net⁩> wrote: > > Hi, > > I queried tickets from https://code.djangoproject.com/ >

Re: Making max_length argument optional

2020-08-17 Thread Carlton Gibson
that PR adds more stuff to CharField.__init__(). > > I think it's time we had something in Django, whatever that ends up being. > > On Sun, 16 Aug 2020 at 20:28, Carlton Gibson > wrote: > >> Reading the history, I see an awful lot of -1s to the idea of a default. >

Re: Cache framework

2020-08-17 Thread Carlton Gibson
> On 17 Aug 2020, at 11:32, Adam Johnson wrote: > > Channels can use other layers backends - I'm not sure of existing > alternatives, but they could use e.g. Postgres' NOTIFY, Google PubSub, AWS > SNS, etc. The only other active channel layer backend that I’m aware of is for RabbitMQ:

Fellow Reports -- August 2020

2020-08-19 Thread Carlton Gibson
Hi all. Calendar Week 32 -- ending 09 August. Triaged: https://code.djangoproject.com/ticket/31864 -- Session data cannot be decoded during the transition to Django 3.1. (Accepted) https://code.djangoproject.com/ticket/31862 -- Add ArrayField for all supported databases - not only postgres

Re: Fellow Reports -- September 2020

2020-09-27 Thread Carlton Gibson
Hi all. Calendar Week 39 -- ending 27 September. Triaged: https://code.djangoproject.com/ticket/32040 -- django.test encoding does not match utf-8 (needsinfo) https://code.djangoproject.com/ticket/32036 -- stack overflow on admin save (invalid) https://code.djangoproject.com/ticket/32035

Re: Fellow Reports -- September 2020

2020-09-22 Thread Carlton Gibson
Hi all. Calendar Week 37 -- ending 13 September. Triaged: https://github.com/django/djangoproject.com/issues/972 -- Keep https://code.djangoproject.com/ login (wontfix) https://code.djangoproject.com/ticket/31993 -- Improve Django admin change/view titles to more unique per object

Re: runserver MIME types on Windows

2020-09-25 Thread Carlton Gibson
Hi Peter. There's a note already for this exact issue in the staticfiles docs. https://docs.djangoproject.com/en/3.1/ref/contrib/staticfiles/#django.contrib.staticfiles.views.serve It mentions Red-Hat and Debian, but it would be reasonable to add a pointer for Windows users too. Beyond that

Advancing with the Triage & Review Team idea.

2020-10-03 Thread Carlton Gibson
Hi all. With the new Technical Board elected (Well done to everyone there!) we have an important workflow that’s not covered by DEP 10. Specifically, this scenario: - An issue comes in covering some esoteric corner of the ORM — generation of column aliases for group by clauses say. -

Fellow Reports -- May 2020

2020-05-27 Thread Carlton Gibson
Hi all. Calendar Week 19 -- ending 10 May. Triaged: https://code.djangoproject.com/ticket/31547 -- A bug in Django3.0.6 about the function of include (invalid) https://code.djangoproject.com/ticket/31540 -- i18n URLs are not matched against the fallback language. (Accepted)

Re: GSoD - Google Season of Docs

2020-05-27 Thread Carlton Gibson
Hi Aksh. Thanks for your interest. It'll be good to hear your ideas. There's some discussion over on the forum. https://forum.djangoproject.com/c/internals/mentorship/10 Then the other thing worth checking out is the Season of Docs Technical Writers Guide:

Re: Should the docs suggest namespace packages?

2020-05-20 Thread Carlton Gibson
As far as I can see, standard packages are what users want in almost every case. So +1. (Q:What is the use-case for namespace packages?) > On 20 May 2020, at 12:44, René Fleschenberg wrote: > > Hi, > > https://github.com/django/django/pull/12939 > > My opinion on this is not particularly

Re: Fellow Reports -- May 2020

2020-06-02 Thread Carlton Gibson
Hi all. Calendar Week 22 -- ending 31 May. Preparation for 2.2.13 and 3.0.7 releases. Triaged: https://code.djangoproject.com/ticket/31635 -- SameSite cookie except on a URL (wontfix) Reviewed: https://github.com/django/django/pull/12978 -- Refs #31040, Refs #31224 -- Prevented

<    1   2   3   4   5   6   7   8   >