| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-05-27 | Fixed #28222 -- Allowed settable properties in ↵ | Alex | |
| QuerySet.update_or_create()/get_or_create() defaults. | |||
| 2017-05-27 | Fixed #27922 -- Added ErrorDict.get_json_data(). | Tim Heap | |
| 2017-05-27 | Fixed #27881 -- Added diffsettings --output option. | Chris Lamb | |
| Thanks Haris Ibrahim K. V. for writng docs. | |||
| 2017-05-26 | Fixed #27978 -- Allowed loaddata to read data from stdin. | Pavel Kulikov | |
| Thanks Squareweave for the django-loaddata-stdin project from which this is adapted. | |||
| 2017-05-26 | Fixed #28017 -- Allowed customizing PasswordResetTokenGenerator's secret. | jannh | |
| 2017-05-25 | Fixed #28221 -- Fixed plural fallback translations in JavaScriptCatalog view | Claude Paroz | |
| Thanks Waldemar Kornewald for the report and initial patch. | |||
| 2017-05-25 | Fixed #28211 -- Prevented ORing an empty Q() from reducing query join ↵ | Tom | |
| efficiency. | |||
| 2017-05-25 | Refs #28211 -- Added a test for ANDing empty Q()'s. | Tim Graham | |
| This test passes to due some logic in Node.add(). | |||
| 2017-05-25 | Fixed #28224 -- Tested for SuspiciousOperation subclasses in Django's tests. | Rajesh Veeranki | |
| 2017-05-24 | Simplified schema.tests with ↵ | Mariusz Felisiak | |
| assertForeignKeyExists()/assertForeignKeyNotExists(). Thanks Tim Graham for the review. | |||
| 2017-05-24 | Refs #27804 -- Used subTest() in several tests. | Bruno Alla | |
| 2017-05-24 | Fixed #27860 -- Dropped varchar_pattern_ops/text_pattern_ops index before ↵ | Mariusz Felisiak | |
| altering char/text field in PostgreSQL. Thanks Tim Graham for the review. | |||
| 2017-05-23 | Fixed #27859 -- Ignored db_index for TextField/BinaryField on Oracle and MySQL. | Mariusz Felisiak | |
| Thanks Zubair Alam for the initial patch and Tim Graham for the review. | |||
| 2017-05-23 | Refs #27859 -- Added DatabaseWrapper.display_name. | Mariusz Felisiak | |
| Thanks Tim Graham for the review. | |||
| 2017-05-22 | Fixed #28112 -- Added 'time_zone' in GeoIP2.city() dict. | R3turnz | |
| 2017-05-22 | Refs #28207 -- Fixed contrib.auth.authenticate() if 'backend' is in the ↵ | Daniel Hahler | |
| credentials. Regression in 3008f30f194af386c354416be4c483f0f6b15f33. | |||
| 2017-05-22 | Fixed #28015 -- Added makemessages --add-location option. | Ling-Xiao Yang | |
| Thanks François Freitag for review. | |||
| 2017-05-20 | Fixed #28180 -- Numbered queries in assertNumQueries failure output | Claude Paroz | |
| Thanks Tim Graham for the test part. | |||
| 2017-05-19 | Fixed #28210 -- Fixed Model._state.adding on MTI parent model after saving ↵ | Tim Graham | |
| child model. Regression in 38575b007a722d6af510ea46d46393a4cda9ca29. | |||
| 2017-05-18 | Fixed #28206 -- Fixed RawQuerySet crash on a model with a mixed case ↵ | Mariusz Felisiak | |
| db_column pk on Oracle. Thanks Tim Graham for the review. | |||
| 2017-05-18 | Fixed #28203 -- Ignored connection configuration queries in assertNumQueries(). | François Freitag | |
| 2017-05-18 | Fixed #28152 -- Made migrations serialize sets as set literals rather than ↵ | Jon Dufresne | |
| set(). | |||
| 2017-05-18 | Fixed validity of test django_js.po files | Claude Paroz | |
| 2017-05-15 | Refs #27996 -- Skipped RandomUUID test on PostgreSQL 9.3. | Tim Graham | |
| 2017-05-15 | Fixed #28197 -- Fixed introspection of index field ordering on PostgreSQL. | Tim Schneider | |
| 2017-05-15 | Fixed #28207 -- Fixed contrib.auth.authenticate() if multiple auth backends ↵ | Tamas Szabo | |
| don't accept a request. | |||
| 2017-05-14 | Fixed #28195 -- Added OSMWidget.default_zoom attribute. | Danilo Bargen | |
| 2017-05-14 | Simplified test for OSMWidget.default_lon/lat. | Tim Graham | |
| 2017-05-12 | Improved test coverage for createsuperuser command. | Sławek Ehlert | |
| 2017-05-11 | Fixed #24254 -- Fixed queries using the __in lookup with querysets using ↵ | Simon Charette | |
| distinct() and order_by(). Thanks Tim for the review. | |||
| 2017-05-11 | Fixed #28188 -- Fixed crash when pickling model fields. | Tim Graham | |
| Regression in d2a26c1a90e837777dabdf3d67ceec4d2a70fb86. Thanks Adam Alton for the report and test, and Adam Johnson for suggesting the fix. | |||
| 2017-05-11 | Fixed #28107 -- Disabled grouping of selected primary keys for unmanaged models. | Simon Charette | |
| The grouping caused an issue with database views as PostgreSQL's query planer isn't smart enough to introspect primary keys through views. Django doesn't support database views but documents that unmanaged models should be used to query them. Thanks powderflask for the detailed report and investigation. | |||
| 2017-05-11 | Fixed #28129 -- Allowed custom template tags to use keyword-only arguments. | Alexander Allakhverdiyev | |
| 2017-05-10 | Complemented message storage test with explicit None extra_tags value | Claude Paroz | |
| 2017-05-10 | Decreased max_length for char fields unless absolutely needed. (#8485) | Florian Apolloner | |
| 2017-05-10 | Fixed db backend discovery in admin_scripts tests. | Florian Apolloner | |
| Not all backends have dots in them. | |||
| 2017-05-10 | Fixed #28142 -- Fixed is_safe_url() crash on invalid IPv6 URLs. | UmanShahzad | |
| 2017-05-09 | Refs #22397 -- Removed model in test cleanup | Markus Holtermann | |
| The test was failing when using --keepdb due to a pre-existing PonyStables model. Thanks Florian Apolloner for the report | |||
| 2017-05-09 | Fixed #28164 -- Improved float conversions in DecimalField.to_python | Claude Paroz | |
| Thanks Tim Graham and Adam Johnson for the reviews. | |||
| 2017-05-08 | Refs #27795 -- Stopped converting integer format settings to str in JS/JSON ↵ | Claude Paroz | |
| i18n views Thanks Tim Graham for the review. | |||
| 2017-05-08 | Renamed django.views.i18n test cases | Claude Paroz | |
| 2017-05-06 | Fixed #28089 -- Removed requirement to implement get_short_name() and ↵ | Josh Schneier | |
| get_full_name() in AbstractBaseUser subclasses. | |||
| 2017-05-06 | Fixed #28062 -- Added a setting to disable server-side cursors on PostgreSQL. | François Freitag | |
| When a connection pooler is set up in transaction pooling mode, queries relying on server-side cursors fail. The DISABLE_SERVER_SIDE_CURSORS setting in DATABASES disables server-side cursors for this use case. | |||
| 2017-05-05 | Refs #22654 -- Added additional tests and amended release note. | Raphael Michel | |
| 2017-05-05 | Fixed #28175 -- Fixed __in lookups on a foreign key when using the foreign ↵ | Tim Graham | |
| key's parent model as the lookup value. Thanks Simon Charette for review. | |||
| 2017-05-04 | Removed obsolete HAS_GEOS variable for test skipping. | Tim Graham | |
| 2017-05-04 | Fixed #28160 -- Prevented hiding GDAL exceptions when it's not installed. | Tim Graham | |
| 2017-05-04 | Made runtests.py run gis_tests only when using a GIS database backend. | Tim Graham | |
| This facilitates other changes like refs #28160. | |||
| 2017-05-04 | Refs #25546 -- Added detailed comments for prefetch_related test. | François Freitag | |
| 2017-05-04 | Fixed #27554 -- Fixed prefetch_related() crash when fetching relations in ↵ | François Freitag | |
| nested Prefetches. | |||
