summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2017-04-07Fixed #28038 -- Restored casting to text of builtin lookups on PostgreSQL.Simon Charette
Reverted 658f1e8 which broke code using __icontains's implicit cast to ::text on ArrayField. Thanks Peter J. Farrell for the report.
2017-04-07Refs #26605 -- Added migrations state test for a swappable model inheriting ↵Ingo Klöcker
an abstract model inheriting concrete model. Thanks Sébastien Diemer for the report and test.
2017-04-07Fixed #28051 -- Made migrations respect Index's name argument.Markus Holtermann
Thanks Marc Tamlyn for the report and Tim Graham for the review.
2017-04-07Fixed #27777 -- Made File.open() work with the with statement (#8310)Ingo Klöcker
Fixed #27777 -- Made File.open() work with the with statement
2017-04-07Fixed #23147 -- Disabled a limit/offset on a query with select_for_update on ↵Mariusz Felisiak
Oracle. Thanks Shai Berger and Tim Graham for the reviews.
2017-04-07Fixed #22654 -- Broken decimal validationRaphael Michel
2017-04-06Fixed #28006 -- Allowed using D with lookups on Distance annotations.Sergey Fedoseev
2017-04-06Fixed #28001 -- Updated comment and tested context popping in ForNode.render().kapil garg
2017-04-04Fixed #27912, CVE-2017-7233 -- Fixed is_safe_url() with numeric URLs.Tim Graham
This is a security fix.
2017-04-04Fixed CVE-2017-7234 -- Fixed open redirect vulnerability in ↵Tim Graham
views.static.serve(). This is a security fix.
2017-04-04Updated tests after French translation updateClaude Paroz
2017-04-03Fixed #27974 -- Kept resolved templates constant during one rendering cycle.kapil garg
Thanks Florian Apolloner for the initial patch.
2017-04-03Refs #27834 -- Removed Value wrapping from StrIndex's substring param.Adam Johnson
2017-04-02Refs #27025 -- Fixed "invalid escape sequence" warning in auth_tests on ↵Tim Graham
Python 3.6.
2017-04-02Fixed #27573 -- Made Distance on geodetic coordinates return a raw value on ↵Sergey Fedoseev
MySQL.
2017-04-02Fixed #27928 -- Avoided SET/DROP DEFAULT unless a field changes from null to ↵Simon Charette
non-null. Thanks Christophe Pettus, Matteo Pietro Russo for reports and Tim for review.
2017-04-02Fixed #11854 -- Added Azimuth GIS function. (#8286)Sergey Fedoseev
2017-04-02Removed unused code in i18n view_testsClaude Paroz
Unused since 2b20e4148f4f54431834e6a43af6c39dc75e6362.
2017-04-01Fixed #27954 -- Allowed keyboard interrupt to abort queries in PostgreSQL ↵Chris Sinchok
dbshell. Thanks Tim Martin for review.
2017-04-01Removed implicit default store_true/false argparse args.Jon Dufresne
argparse automatically sets the default value for store_true/false arguments to its opposite.
2017-04-01Fixed #27989 -- Preserved empty QueryDicts for form's data/files args.Stefan Wehrmeyer
2017-04-01Fixed #25874 -- Made GEOSGeometry read SRID from GeoJSON input.Sergey Fedoseev
2017-04-01Fixed #12410 -- Added LineLocatePoint GIS function.Sergey Fedoseev
2017-04-01Fixed #26967 -- Added MySQL support for AsGeoJSON, GeoHash, IsValid ↵Sergey Fedoseev
functions, and isvalid lookup.
2017-04-01Fixed #27848 -- Prevented crash when attaching a .eml file to a messageClaude Paroz
Thanks Sébastien Ramage for the report.
2017-04-01Fixed #25605 -- Made GIS DB functions accept geometric expressions, not only ↵Sergey Fedoseev
values, in all positions.
2017-04-01Fixed #27866 -- Made ChoiceWidget.format_value() return a listClaude Paroz
Thanks Tim Graham for the review.
2017-03-31Fixed #27359 -- Made Engine.get_default() return the first DjangoTemplates ↵Carlton Gibson
engine if multiple are defined.
2017-03-31Added tests for template's Engine.get_default().Carlton Gibson
2017-03-31Fixed #27993 -- Fixed model form default fallback for SelectMultiple.heathervm
2017-03-30Fixed #25873 -- Made GEOSGeometry handle the srid parameter more predictably.Sergey Fedoseev
2017-03-29Refs #18247 -- Fixed SQLite QuerySet filtering on decimal result of Least ↵Sergey Fedoseev
and Greatest.
2017-03-29Fixed #27973 -- Fixed GeoJSON representation of LinearRing and custom ↵Sergey Fedoseev
GEOSGeometry subclasses.
2017-03-29Made isvalid lookup use IsValid function to decrease code redundancy.Sergey Fedoseev
2017-03-29Fixed #25414 -- Fixed QuerySet.annotate() with pk in values() on MySQL.Mariusz Felisiak
Thanks Tim Graham and Simon Charette for the reviews.
2017-03-27Refs #27736 -- Used decorators for GIS lookup registration.Sergey Fedoseev
2017-03-27Fixed #21160 -- Fixed QuerySet.in_bulk() crash on SQLite when requesting ↵Mariusz Felisiak
more than 999 ids. Thanks Andrei Picus and Anssi Kääriäinen for the initial patch and Tim Graham for the review.
2017-03-25Fixed #27956 -- Fixed display of errors in an {% extends %} child.Tim Graham
Thanks Ling-Xiao Yang for the report and test, and Preston Timmons for the fix.
2017-03-24Refs #21160 -- Replaced DatabaseFeatures.supports_1000_query_parameters by a ↵Mariusz Felisiak
DatabaseFeatures.max_query_params.
2017-03-23Fixed #27962 -- Allowed lookups on Area annotations.Sergey Fedoseev
2017-03-23Fixed #27603 -- Fixed AsKML when queryset is evaluated more than once.Sergey Fedoseev
2017-03-23Fixed #27969 -- Fixed models.Field.formfield() setting 'disabled' for fields ↵Kapil Garg
with choices.
2017-03-22Fixed #27975 -- Fixed crash if ModelChoiceField's queryset=None.James Beith
Regression in 9153d8fbd6385db9f48793662de789fc3d686841.
2017-03-21Fixed #27966 -- Bumped required psycopg2 version to 2.5.4.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-03-21Fixed #27915 -- Allowed Meta.indexes to be defined in abstract models.Tim Graham
Thanks Markus Holtermann for review.
2017-03-21Fixed #27965 -- Fixed precision comparison in a geoforms test (refs #27939).Sergey Fedoseev
2017-03-20Fixed #27957 -- Removed technical terms from ↵Jon Dufresne
InlineForeignKeyField/ModelMultipleChoiceField error messages.
2017-03-20Fixed #27890 -- Fixed FileNotFoundError cleanup exception in runtests.py on ↵Tim Graham
Python 3.6+.
2017-03-18Fixed #27724 -- Fixed SelectDateWidget redisplay if a year isn't chosen.Adonys Alea Boffill
2017-03-18Added tests for SelectDateWidget.format_value().Adonys Alea Boffill