summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2016-12-14Fixed #27599 -- Fixed Field.__str__() crash for fields not attached to models.Morgan Aubert
2016-12-14Fixed #27598 -- Allowed specifying directories for a filesystem template loader.Tim Graham
Thanks Carl Meyer for review.
2016-12-14Fixed #27594 -- Fixed select_related() with reverse self-referential ↵Daniel Hillier
OneToOneField. Fixed definition of `klass_info['from_parent']` so that two models aren't considered from a parent class if the model classes are the same.
2016-12-13Removed an unnecessary, discouraging sentence on the "It worked!" page.Merrin Macleod
2016-12-12Fixed #27588 -- Removed unneeded colon in makemigrations output.Tim Graham
2016-12-10Fixed #27310 -- Stopped rendering apps in RenameModel.state_forwards.Simon Charette
Thanks Tim for the review.
2016-12-09Fixed #27583 -- Fixed MultiValueDict.getlist() crash when values for key is ↵Mariusz Felisiak
None. Restored the behavior before 727d7ce6cba21363470aaefb2dc5353017531be3.
2016-12-08Fixed #27472 -- Fixed GEOSGeometry('POINT EMPTY').transform crash.Sergey Fedoseev
2016-12-08Refs #27472 -- Fixed OGRGeometry('POINT EMPTY').geos crash.Sergey Fedoseev
2016-12-08Refs #27472 -- Fixed GEOSGeometry('POINT EMPTY').ogr crash.Sergey Fedoseev
2016-12-08Fixed #13312 -- Allowed specifying the order of null fields in queries.Yohann Gabory
Thanks Mariusz Felisiak for finishing the patch.
2016-12-08Simplified Transform GIS function by setting output_field.Sergey Fedoseev
2016-12-08Added period in BaseFormView docstring.Collederas
2016-12-07Fixed #17002 -- Allowed using a ManyToManyField through model that inherits ↵InvalidInterrupt
another.
2016-12-07Fixed #27579 -- Added aliases for Python 3's assertion names in SimpleTestCase.Tim Graham
2016-12-07Fixed #25708 -- Fixed annotations with geometry values.Sergey Fedoseev
2016-12-07Refs #17235 -- Made MultiPartParser leave request.POST immutable.Vinay Karanam
2016-12-06Fixed #26789 -- Fixed handling of empty geometries in ↵Sergey Fedoseev
BaseSpatialField.get_db_prep_save().
2016-12-06Refs #26789 -- Fixed output of WKBWriter for empty points and polygons.Sergey Fedoseev
2016-12-06Fixed #27416 -- Prevented ModelFormSet from creating objects for invalid PKs ↵Hiroki Kiyohara
in data.
2016-12-06Fixed #27567 -- Fixed crash in the debug view when request.user errors.Andreas Pelme
2016-12-06Fixed #18729 -- Made admin changelist not use distinct() if a list_filter ↵nmhung89
doesn't require it.
2016-12-06Fixed #26494 -- Made Archive.extract() preserve file permissions.Anton Samarchyan
2016-12-05Refs #27025 -- Fixed Python 3.6 deprecation warning for empty model super() ↵Tim Graham
calls. https://bugs.python.org/issue23722 Thanks Nick Coghlan for advice and review.
2016-12-05Refs #27324 -- Optimized DatabaseIntrospection.get_constraints() for foreign ↵Mariusz Felisiak
keys on Oracle.
2016-12-02Fixed #27561 -- Added Oracle support for binary "or" operator.Mariusz Felisiak
Removed DatabaseFeatures.supports_bitwise_or feature (unused, always True).
2016-12-02Fixed #27563 -- Moved "apply limit_choices_to" code from BaseModelForm to ↵Jon Dufresne
fields_for_model().
2016-12-01Fixed #27119 -- Cached BaseFormSet.management_form propertyClaude Paroz
Thanks Tim Graham for the review.
2016-12-01Fixed #27542 -- Made Client.force_login() skip auth backends without get_user().Anton Samarchyan
2016-12-01Refs #27505 -- Made Paginator's exception messsages translatable.Anton Bazhanov
2016-12-01Fixed #27546 -- Removed hardcoded class names in __repr__() methods.Keda87
2016-11-30Fixed #27557 -- Casted GEOSGeometry only when necessaryClaude Paroz
Thanks Pete Flugstad for the report, and Tim Graham for the review.
2016-11-30Fixed #27556 -- Added Oracle support for IsValid function and isvalid lookup.Sergey Fedoseev
2016-11-30Refs #24245 -- Added introspection for database defaults on Oracle.Mariusz Felisiak
2016-11-30Removed unneeded GeoAggregate.convert_value() & ↵Sergey Fedoseev
DatabaseOperations.convert_geom().
2016-11-30Refs #27358 -- Fixed system check crash with an empty FileField.upload_to.Lex Berezhny
2016-11-30Refs #16859 -- Allowed storing CSRF tokens in sessions.Raphael Michel
Major thanks to Shai for helping to refactor the tests, and to Shai, Tim, Florian, and others for extensive and helpful review.
2016-11-30Fixed #27552 -- Added docs/test for GEOSGeometry.normalize().Sergey Fedoseev
2016-11-29Fixed #27507 -- Used SchemaEditor.execute() to run deferred_sql in migrate's ↵Lex Berezhny
sync_apps().
2016-11-29Fixed #27555 -- Removed django.utils.functional.lazy_property.Adam Chainz
2016-11-29Fixed #27181 -- Allowed contrib.sites to match domains with trailing ".".Anton Samarchyan
2016-11-29Fixed #27358 -- Added a system check to prevent FileField's upload_to from ↵Henry Dang
starting with a slash. Thanks Frank Bijlsma for the initial patch.
2016-11-29Fixed #27402 -- Fixed incorrect LocaleMiddleware redirects with ↵Krzysztof Urbaniak
prefix_default_language=False.
2016-11-29Fixed #27544 -- Fixed QuerySet.update(dt=F('dt') + timedelta) crash on SQLite.Andrew Nester
2016-11-28Quoted group name in django/contrib/auth/models.py docstring.Nik Nyby
2016-11-28Fixed #27321 -- Added detection for table case name sensitivity on MySQL.Adam Chainz
2016-11-28Refs #26327 -- Renamed JsonAgg to JSONBAgg.Mads Jensen
Thanks to Christian von Roques for the report.
2016-11-25Fixed #27532 -- Deprecated Model._meta.has_auto_fieldAdam Chainz
2016-11-25Fixed #25966 -- Made get_user_model() work at import time.Aymeric Augustin
This makes it equivalent to: `from django.contrib.auth.models import User`. Thanks Aymeric Augustin for the initial patch and Tim Graham for the review.
2016-11-25Fixed grammar in sqlite's DatabaseOperations.bulk_batch_size()'s docstring.Daniel Hahler