Fellow Reports - August 2021

2021-08-23 Thread Mariusz Felisiak

Week ending August 8, 2021

*Triaged:*
    https://code.djangoproject.com/ticket/32981 - raw sql with postgres 
jsonb_array_elements no longer deserialises in Django 3.2.5. (duplicate)
    https://code.djangoproject.com/ticket/32975 - ModelAdmin for proxy 
model with InlineModelAdmin for proxy superclass reference results in 
admin.E202(accepted)
    https://code.djangoproject.com/ticket/32978 - Improve an error 
message on loaddata/dumpdata when PyYAML is not installed. (wontfix)
    https://code.djangoproject.com/ticket/32982 - Tighten up the check 
for status codes in HttpResponse (wontfix)
    https://code.djangoproject.com/ticket/32984 - Allow overriding of 
deletion widget in formsets (accepted)
    https://code.djangoproject.com/ticket/32985 - "O valor 
\"%(value)s\" tem um formato de data inválido. Deve ser no formato  " 
"YYY-MM-DD." (invalid)
    https://code.djangoproject.com/ticket/32986 - Possible dead or 
incorrect code in Lexer.create_token() related to 
TRANSLATOR_COMMENT_MARK (accepted)
    https://code.djangoproject.com/ticket/32988 - The number of test 
databases should not be greater than number of TestCases. (created)
    https://code.djangoproject.com/ticket/32987 - Warn user if they 
attempt to have mulitple templatetag libraries with the same name (accepted)
    https://code.djangoproject.com/ticket/27541 - Provide hooks to 
override manifest file storage in ManifestFilesMixin. (duplicate)
    https://code.djangoproject.com/ticket/32990 - Test the tag_re regex 
in template/base.py instead of evaluating it every time (accepted)
    https://code.djangoproject.com/ticket/32991 - Change in behavior of 
FileField.url between versions 2.2.16 -> 3.2.5; returned 'relative' 
value contains leading slash (invalid)
    https://code.djangoproject.com/ticket/32992 - Reverse time zone 
conversion in Trunc()/Extract() database functions. (accepted)
    https://code.djangoproject.com/ticket/32994 - Invoking runtests 
with a CLI prelude causes utils_tests failures (accepted)
    https://code.djangoproject.com/ticket/32995 - Incorrect GROUP BY in 
ORM query with Function (duplicate)
    https://code.djangoproject.com/ticket/32997 - Errors in 404 
templates are hard to debug (invalid)
    https://code.djangoproject.com/ticket/32998 - process_view() is not 
called on 404 (needsinfo)


*Reviewed/committed:*
    https://github.com/django/django/pull/14721 - Refs #32956 -- 
Corrected usage of "insure" and "assure".
    https://github.com/django/django/pull/14720 - Refs #32956 -- 
Corrected spelling of "gray".
    https://github.com/django/django/pull/13945 - Simplified 
serializing HTTP response headers.
    https://github.com/django/django/pull/14627 - Fixed #32919 -- 
Optimized lexing & parsing of templates.
    https://github.com/django/django/pull/14723 - Refs #32800 -- Added 
tests of more CSRF functions.
    https://github.com/django/django/pull/14614 - Fixed #31621 -- Added 
support for '--parallel auto' to test management command.
    https://github.com/django/django/pull/14733 - Fixed #32984 -- 
Allowed customizing a deletion field widget in formsets.
    https://github.com/django/django/pull/14732 - Refs #32074 -- Fixed 
CommandTests.test_subparser_invalid_option on Python 3.10+.
    https://github.com/django/django/pull/14727 - Fixed #29063 -- Fixed 
migrate crash when specifying a name of partially applied squashed 
migrations.
    https://github.com/django/django/pull/14743 - Fixed #32986 -- 
Removed unneeded str.find() call in Lexer.create_token().
    https://github.com/django/django/pull/12187 - Fixed #7590 -- 
Allowed customizing a manifest file storage in ManifestFilesMixin.
    https://github.com/django/django/pull/14745 - Fixed typo in regex 
for IPv6 literals in EmailValidator.
    https://github.com/django/django/pull/14719 - Refs #32956 -- 
Corrected spelling of daylight saving time.


*Authored:*
    https://github.com/django/django/pull/14744 - Fixed #32988 -- 
Prevented creation of more test databases than TestCases.
    https://github.com/django/djangoproject.com/pull/1108 - Added 
Coveralls to GitHub actions workflows.
    https://github.com/django/django/pull/14737 - Refs #31621 -- Fixed 
handling --parallel option in test management command and runtests.py.


Best,
Mariusz

--
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 django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/adb5cb19-7bc1-4e49-aaed-9d6e171e668c%40gmail.com.


Re: Fellow Reports - August 2021

2021-08-23 Thread Mariusz Felisiak
Week ending August 15, 2021 

*Triaged: *
   https://code.djangoproject.com/ticket/33002 - Make DebugLexer.tokenize() 
more similar to Lexer.tokenize() (accepted) 
   https://code.djangoproject.com/ticket/33003 - Micro-optimisation for 
QuerySet._chain (accepted) 
   https://code.djangoproject.com/ticket/33005 - Django is saving redundant 
or empty data in the SQLite database (invalid) 
   https://code.djangoproject.com/ticket/33004 - Inconsistent / Unexpected 
handling of assigning unsaved model to Generic Foreign Key (accepted) 
   https://code.djangoproject.com/ticket/33007 - `form_clean()` performance 
(accepted) 
   https://code.djangoproject.com/ticket/33009 - ./manage.py test --keepdb 
fails when DB permissions are not sufficient (invalid) 
   https://code.djangoproject.com/ticket/33010 - id to uuid type casting 
bug in Django 2.2 (wontfix) 

*Reviewed/committed: *
   https://github.com/django/django/pull/14748 - Fixed #32990 -- Simplified 
and optimized tag regex. 
   https://github.com/django/django/pull/14755 - Fixed #33003 -- Removed 
**kwargs from QuerySet._chain(). 
   https://github.com/django/django/pull/14753 - Fixed #33002 -- Made 
DebugLexer.tokenize() more closely parallel Lexer.tokenize(). 
   https://github.com/django/django/pull/14752 - Fixed #32993 -- Added 
AutocompleteJsonView.serialize_result() to allow customization. 
   https://github.com/django/django/pull/14738 - Refs #29205 -- Added 
MultiValueField test for rendering of optional subfields. 

*Authored: *
   https://github.com/django/django/pull/14760 - Refs #29898 -- Changed 
ProjectState.real_apps to set.

Best,
Mariusz

>

-- 
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 django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/60c3f96b-4f3b-4113-b7eb-d4722318d9e5n%40googlegroups.com.


Re: Fellow Reports - August 2021

2021-08-23 Thread Mariusz Felisiak
Week ending August 22, 2021 

*Triaged: *
   https://code.djangoproject.com/ticket/33034 - Change % to f-strings in 
django documentation. (wontfix) 
   https://code.djangoproject.com/ticket/33021 - Migration crashes when GIN 
index with gin_trgm_ops is used (invalid) 
   https://code.djangoproject.com/ticket/33032 - Document 
django.shortcuts.resolve_url (duplicate) 
   https://code.djangoproject.com/ticket/33036 - Custom tags with missing 
context param and no other params throw an unhelpful IndexError (accepted) 
   https://code.djangoproject.com/ticket/33037 - TruncDay error when using 
offset timezones on MySQL (duplicate) 
   https://code.djangoproject.com/ticket/33039 - Django to have conditional 
column based on another column (invalid) 
   https://code.djangoproject.com/ticket/33038 - Documentation for 
exception handling and transactions is misleading. (wontfix) 
   https://code.djangoproject.com/ticket/33040 - BaseModelForm.is_valid() 
should document how it modifies the BaseModelForm.instance (invalid) 

*Reviewed/committed: *
   https://github.com/django/django/pull/14779 - Fixed #33036 -- Made 
simple_tag()/inclusion_tag() with takes_context raise TemplateSyntaxError 
when function has no parameters. 
   https://github.com/django/django/pull/14772 - Fixed #32994 -- Fixed 
autoreloader tests when using 'python -m'. 
   https://github.com/django/django/pull/14765 - Fixed #33014 -- Made 
ProjectState raise exception when real_apps argument is not a set. 
   https://github.com/django/django/pull/14764 - Removed reference to 
non-existent collectstatic --exclude-dirs option. 
   https://github.com/django/django/pull/14769 - Fixed #33025 -- Avoided 
accessing the database connections in Query.build_lookup() when not 
necessary. 
   https://github.com/django/django/pull/14766 - Fixed #33017 -- Fixed 
storage engine introspection on MySQL.

Best,
Mariusz

>

-- 
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 django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/a602dc8e-6992-4ec1-b663-05d7f54bfe25n%40googlegroups.com.