summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2017-05-30Refs #23804 -- Improved value validation in GDALRaster.geotransform setter.Adam Johnson
2017-05-30Fixed #28199 -- Fixed Subquery generating unnecessary/invalid CAST.Tim Graham
Thanks Simon Charette for the fix.
2017-05-29Fixed #26823 -- Prevented update_last_login signal receiver from crashing if ↵Linus Lewandowski
User model doesn't have last_login field.
2017-05-29Fixed #28248 -- Fixed password reset tokens being valid for 1 day longer ↵Nick Zaccardi
than PASSWORD_RESET_TIMEOUT_DAYS.
2017-05-27Added comments to contrib.sitemaps.index() view.Boris Burkov
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
iter(dict) is equivalent to iter(dict.keys()).
2017-05-27Fixed #28226 -- Replaced use of str.join() with concatenation.Tom
2017-05-27Replaced some map() and filter() calls with generators.Tom
2017-05-27Fixed #28222 -- Allowed settable properties in ↵Alex
QuerySet.update_or_create()/get_or_create() defaults.
2017-05-27Fixed #25006 -- Allowed custom time shortcuts in admin's time picker.Anton Samarchyan
2017-05-27Fixed #27922 -- Added ErrorDict.get_json_data().Tim Heap
2017-05-27Fixed #27881 -- Added diffsettings --output option.Chris Lamb
Thanks Haris Ibrahim K. V. for writng docs.
2017-05-26Fixed #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-26Fixed #28017 -- Allowed customizing PasswordResetTokenGenerator's secret.jannh
2017-05-25Fixed #28221 -- Fixed plural fallback translations in JavaScriptCatalog viewClaude Paroz
Thanks Waldemar Kornewald for the report and initial patch.
2017-05-25Made RegexValidator's inverse_match logic clearer.Edward D'Souza
2017-05-25Fixed #28211 -- Prevented ORing an empty Q() from reducing query join ↵Tom
efficiency.
2017-05-25Fixed docstring typo in django/contrib/admin/actions.py.Yuichi Fujikawa
2017-05-24Fixed #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-23Fixed #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-23Refs #27859 -- Added DatabaseWrapper.display_name.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-05-22Fixed #28112 -- Added 'time_zone' in GeoIP2.city() dict.R3turnz
2017-05-22Refs #28207 -- Fixed contrib.auth.authenticate() if 'backend' is in the ↵Daniel Hahler
credentials. Regression in 3008f30f194af386c354416be4c483f0f6b15f33.
2017-05-22Fixed #28015 -- Added makemessages --add-location option.Ling-Xiao Yang
Thanks François Freitag for review.
2017-05-20Refs #16850 -- Removed obsolete simplejson support in JSON serializer.Tim Graham
cpython's json version is 2.0.9 so this line is never used.
2017-05-20Fixed #28227 -- Allowed importing BaseRangeField/RangeWidget from ↵Tom
contrib.postgres.forms.
2017-05-20Fixed #28180 -- Numbered queries in assertNumQueries failure outputClaude Paroz
Thanks Tim Graham for the test part.
2017-05-20Refs #28221 -- Honor plural number in JavaScriptCatalogClaude Paroz
2017-05-19Fixed #28210 -- Fixed Model._state.adding on MTI parent model after saving ↵Tim Graham
child model. Regression in 38575b007a722d6af510ea46d46393a4cda9ca29.
2017-05-18Fixed #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-18Fixed #28203 -- Ignored connection configuration queries in assertNumQueries().François Freitag
2017-05-18Fixed #28152 -- Made migrations serialize sets as set literals rather than ↵Jon Dufresne
set().
2017-05-15Corrected cached_property.__get__() docstring.Simon Charette
2017-05-15Added a docstring to cached_property.__get__().Adam Alton
2017-05-15Fixed #28197 -- Fixed introspection of index field ordering on PostgreSQL.Tim Schneider
2017-05-15Fixed #28207 -- Fixed contrib.auth.authenticate() if multiple auth backends ↵Tamas Szabo
don't accept a request.
2017-05-14Fixed #28195 -- Added OSMWidget.default_zoom attribute.Danilo Bargen
2017-05-14Refs #28196 -- Removed mentions of bytestrings for EmailMessageClaude Paroz
With Python 3, there are no more reasons to special-case EmailMessage arguments which should be plain strings.
2017-05-14Refs #27859 -- Refactored BaseDatabaseValidation to use check_field_type().Mariusz Felisiak
Thanks Tim Graham for the review.
2017-05-11Fixed #24254 -- Fixed queries using the __in lookup with querysets using ↵Simon Charette
distinct() and order_by(). Thanks Tim for the review.
2017-05-11Fixed #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-11Fixed #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-11Fixed #28129 -- Allowed custom template tags to use keyword-only arguments.Alexander Allakhverdiyev
2017-05-10Refs #27795 -- Replaced force_text() with str() in contrib.messagesClaude Paroz
Thanks Tim Graham for the review.
2017-05-10Fixed #28142 -- Fixed is_safe_url() crash on invalid IPv6 URLs.UmanShahzad
2017-05-09Fixed #28081 -- Stopped setting Content-Length=0 in ↵João Silva
conditional_content_removal() per RFC 7230.
2017-05-09Pass type to sql_alter_column_* where it was missing.Florian Apolloner
This is a followup to 2b3a9414570af623853ca0f819c7d77d0511f22c
2017-05-09Fixed #28164 -- Improved float conversions in DecimalField.to_pythonClaude Paroz
Thanks Tim Graham and Adam Johnson for the reviews.
2017-05-08Refs #27795 -- Stopped converting integer format settings to str in JS/JSON ↵Claude Paroz
i18n views Thanks Tim Graham for the review.
2017-05-08Fixed #28178 -- Changed contrib.gis to raise ImproperlyConfigured if gdal ↵Tim Graham
isn't installed.