Wonder

(wonderbeyond)

Most Active Role

N/A

Most Active Component

N/A

Activity Timeline

[No data in this time period]

Components

[No data in this time period]

Tickets

Trac Ticket (97) Reporter (1) Owner (0) Commenter (1) Summary Component
34699 34699 Filtering on annotated TruncSecond expression gives unexpected result. Database layer (models, ORM)
27029 27029 Make EmailValidator accept non-ASCII characters in local part Core (Other)
34262 34262 Queryset grouped by annotation with aggregates on another annotated expression crashes on MySQL with sql_mode=only_full_group_by. Database layer (models, ORM)
470 470 Add Field.db_default for defining database defaults Database layer (models, ORM)
27236 27236 Deprecate Model.Meta.index_together in favour of Model.Meta.indexes Database layer (models, ORM)
34856 34856 Running tests with historical migrations that contain index together fails with TypeError. Migrations
27452 27452 Add Postgres serial field to contrib.postgres contrib.postgres
34406 34406 Add support for curved geometries in GeoDjango GIS
34654 34654 Post-normalization performed on the Username field leading to the bypass of the whitespace stripping contrib.auth
34789 34789 `filter_horizontal` duplicates entries in "Chosen" column after instance is added via in another field using the "plus" JS action contrib.admin
34613 34613 add support for Partitioned cookies HTTP handling
34211 34211 Performance regression in ForeignKeyDeferredAttribute changes. Database layer (models, ORM)
14831 14831 Django Template Style Guide Documentation
34200 34200 Allow setting postgres role during connection setup Database layer (models, ORM)
27201 27201 Django 1.10 with STATICFILES_STORAGE breaks on absolute path in CSS with double slash contrib.staticfiles
34534 34534 Reduce index/constraints operations. Migrations
34961 34961 Add a max_length parameter to EmailValidator Core (Other)
27813 27813 BinaryField type inconsistent between sqlite3 (bytes) and postgresql (memoryview) Database layer (models, ORM)
34988 34988 Makemigrations shouldn't prompt for default values for non-nullable fields of other apps. Migrations
34968 34968 MultiPartParser silent large header fields size failures HTTP handling
34884 34884 Half bug/half enhancement : inconsistent behavior of get_or_create() regarding related attributes cache Database layer (models, ORM)
34930 34930 Parallel tests fail on Python 3.11+ when IsolatedAsyncioTestCase is used Testing framework
34798 34798 Subquery wrapping is required in QuerySet.aggregate() for aggregates referencing nested subquery. Database layer (models, ORM)
34840 34840 Django 4.2 casts text fields when testing IS NULL, preventing use of partial indexes Database layer (models, ORM)
34858 34858 Output field for combined PositiveIntegerField is not properly resolved. Database layer (models, ORM)
34210 34210 Show the duration of individual tests Testing framework
34760 34760 Drop support for SQLite < 3.27.0 Database layer (models, ORM)
34639 34639 MySQL 8.0 hangs indefinitely when using the admin search with a Foreign Key and Annotate contrib.admin
34666 34666 Mysql issue using afirst "The client was disconnected by the server because of inactivity" Database layer (models, ORM)
34570 34570 QuerySet.defer() raises an AttributeError when the field is ManyToManyField or GenericForeignKey Database layer (models, ORM)
34350 34350 WSGIRequest crashes when "wsgi.input" is None. Core (Other)
34552 34552 Delaying get_from_clause call as much as possible. Database layer (models, ORM)
34525 34525 index_together warning after migration to new style Database layer (models, ORM)
34438 34438 UserCreationForm.clean_username() crashes with a custom user model. contrib.auth
34352 34352 Unify terms in Signals docs. Documentation
34388 34388 Added support for direct usage of Choices classes on model fields Database layer (models, ORM)
34359 34359 Add setting to disable global thread_sensitive flag for Async ORM and Async cache Database layer (models, ORM)
34180 34180 Document that setting language in tests affects other tests Documentation
34255 34255 Annotation/group by with an expression on psycopg3 Database layer (models, ORM)
34296 34296 Formset validation does not consider UniqueConstraint with F() expressions. Database layer (models, ORM)
34063 34063 request.POST not populated for multipart/form-data via AsyncClient Testing framework
34165 34165 migrate management command does not respect database parameter when adding Permissions. contrib.auth
34099 34099 update_or_create() not saving data assigned in a model's save() method Database layer (models, ORM)
34131 34131 Postgres AutoField change from serial to identity Database layer (models, ORM)
34066 34066 Accessing UserAdmin via to_field leads to link to PasswordResetForm being broken (404) contrib.auth
34085 34085 Black shouldn't format non-Python files Core (Management commands)
34050 34050 Generated migration file is not detected by django because of the name of newly generated migration file Migrations
34049 34049 Admin - Scrollbar appears without overflowing content contrib.admin
34000 34000 Fix numberformat.py "string index out of range" when null Utilities
56 56 Primary key columns should be UNSIGNED Database layer (models, ORM)
27445 27445 RadioSelect widget does not work for NullBooleanField Documentation
27160 27160 Document that running the Django test suite requires creating the databases and, on PostgresQL, a superuser Documentation
27785 27785 Log request.body (or part of it) in the 500 debug content Error reporting
27086 27086 running servers.tests may hang in parallel mode on Mac OS X Core (Other)
27921 27921 Documentation of make_aware() with is_dst is misleading Documentation
14365 14365 Make template-rendering signals available also in DEBUG mode Testing framework
27998 27998 LogEntry messages do not list m2m fields that were changed when an object is changed via ModelAdmin contrib.admin
28543 28543 1 ModelForm.initial is affected while its bound instance's m2m field be set with new data Database layer (models, ORM)
27303 27303 Selecting multiple admin list_filters across relations return results that don't match both filters contrib.admin
27967 27967 The autogenerated OneToOneField on multi table inheritance breaks the InlineAdminForm given UUID pk contrib.admin
27751 27751 Teardown of a PG test database fails if it is an autogenerated test_MYDB database Testing framework
27836 27836 Add a way to delete directories through the file Storage API File uploads/storage
27722 27722 if a template context is an instance of get_template(), it will raise "TypeError: context must be a dict rather than RequestContext" Template system
27769 27769 createsuperuser command missing docs about no-input/interactive Documentation
27715 27715 [Tutorial - part 6.] Lack of saving created question into db Documentation
27593 27593 Template traceback, doesn't account for {% include ... %} tags. Template system
27088 27088 GEOSGeometry should accept Python 2.7 memoryview GIS
27213 27213 ArrayField with null throws ProgrammingError but not ValidationError on Psycopg < 2.6.1 contrib.postgres
27266 27266 assertFormError fails when trying to check a custom validation in an Admin form contrib.admin
27180 27180 Check for sql_mode fails during migration with special database connections Database layer (models, ORM)
27008 27008 Add manage.py test --debug option Testing framework
27010 27010 Argon2PasswordHasher.encode() decodes underlying hash as UTF-8 instead of ASCII contrib.auth
14030 14030 Use F() objects in aggregates(), annotates() and values() Database layer (models, ORM)
14286 14286 Support for BigAutoField Database layer (models, ORM)
901 901 Reload method for models Database layer (models, ORM)
23 23 Add support for ValidationWarning Forms
14195 14195 ContentType object fails to use cache, beats DB to death Uncategorized
14709 14709 staticfiles app seems forced upon me Contrib apps
14301 14301 django crashes on email address that passed validate_email() (utf8-tld) Core (Mail)
14910 14910 I18N locale per app resolving - documentation incorrect and bug Internationalization
14731 14731 [Patch] Change 14413 breaks old fixtures with permissions contrib.auth
14955 14955 URLField validation should use HEAD requet instead of GET Core (Other)
14348 14348 Paginator does not handle django.db.models.sql.datastructures.EmptyResultSet Database layer (models, ORM)
14608 14608 Adding a INPhoneNumberField to indian localflavor contrib.localflavor
14201 14201 Add a "security overview" page to the docs Documentation
14989 14989 Allow serializers to non ovewrite fixtures objects if they are marked as non overridable Core (Serialization)
14233 14233 Documentation for admin is has a reference to meta class Documentation
14078 14078 Template tag to set context variable to output from tag's rendered content Template system
14064 14064 Correct spelling of Argentinian Spanish in global_settings.py Core (Other)
313 313 PhoneNumberField should accept international format numbers Internationalization
541 541 [patch] Making generic views use other templates like Zope3 ZPT Generic views
149 149 Show latest comments on djangoproject.com Core (Cache system)
362 362 Anonymous sessions should try to prevent session-stealing Core (Other)
952 952 [patch] Allow for database client encoding configuration from project settings Database layer (models, ORM)
329 329 RSS framework needs an easier interface contrib.syndication
527 527 OneToOne relations are broken since new model style released Metasystem
894 894 [patch] Catch exceptions in response middleware Core (Other)